blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a3348495d14ee1714907c25cbae2d67892eea91b | 9f5480e5140c45fc1b231ff54712942aa9c3bcf0 | /student.h | ab76b78201e39e2896c3ff7a50155a6b99118201 | [] | no_license | MEmanuela/university | d5e7b4b4e78fed6c1acfad8b6d6b4f311792ff79 | c34f166c5294b2fa638ce102b35a689c8e79aa45 | refs/heads/master | 2020-08-16T06:48:58.653983 | 2020-02-28T09:52:20 | 2020-02-28T09:52:20 | 215,469,970 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 856 | h | student.h | #pragma once
#include <string>
#include <iostream>
using namespace std;
class StudentAC : public PersoanaAC
{
int m_ianStudiu;
int m_inotaP2;
public:
StudentAC();
StudentAC(string cnp, string nume, string adresa, int
anStudiu, int notaP2);
~StudentAC();
void afisareProfil()
{
PersoanaAC::afisareProfil();
cout << "An studiu: " << m_ianStudiu << endl;
cout << "Nota P2: " << m_inotaP2 << endl;
}
void inscriereAnStudiu(int anStudiuNou)
{
this->m_ianStudiu = anStudiuNou;
}
StudentAC* comparN(StudentAC* s2);
int getNota()
{
return this->m_inotaP2;
}
string getCNP()
{
return this->m_sCnp;
}
string getNume()
{
return this->m_sNume;
}
string getAdresa()
{
return this->m_sAdresa;
}
int getAn()
{
return this->m_ianStudiu;
}
};
void afisareProfil(StudentAC *s2); |
fa0cfb2502c9ce92ea0b09574eb6e91649490ae7 | 0b9cbe14237343a4fdd9077ab9ad506ff73008e9 | /source/enemy/nbuttfly.cpp | 63858c199f4a3b83d82eff9a9364b3c2c7d44936 | [] | no_license | aicreed/SBSPSS | 9cdfa219f67875db2f971142277732c00955abb8 | 6782909006153f2cba8d80d8e9339ee5fc39d71c | refs/heads/master | 2021-01-04T13:36:22.014724 | 2020-03-06T14:37:45 | 2020-03-06T14:37:45 | 240,575,228 | 0 | 0 | null | 2020-02-14T18:36:51 | 2020-02-14T18:36:50 | null | UTF-8 | C++ | false | false | 2,342 | cpp | nbuttfly.cpp | /*=========================================================================
nbuttfly.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NBUTTFLY_H__
#include "enemy\nbuttfly.h"
#endif
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
#ifndef __VID_HEADER_
#include "system\vid.h"
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcButterflyBackgroundEnemy::processMovementModifier(int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange)
{
Pos.vx += distX;
Pos.vy += distY;
if ( !m_animPlaying )
{
m_animPlaying = true;
m_frame = 0;
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcButterflyBackgroundEnemy::render()
{
SprFrame = NULL;
if ( m_isActive )
{
CEnemyThing::render();
if (canRender())
{
DVECTOR &renderPos=getRenderPos();
SprFrame = CGameScene::getSpriteBank()->printFT4(FRM_BUTTERFLY_FLAP01 + ( m_frame >> 8 ),renderPos.vx,renderPos.vy,!m_reversed,0,15);
setRGB0( SprFrame, 255, 128, 255 ); // Let me know if these change! ALso ket me know when the different coloured ones go in pls! (pkg)
// get xmax, xmin, ymax, ymin
s32 XMax;
s32 XMin;
s32 YMax;
s32 YMin;
XMin=SprFrame->x0;
if (XMin>SprFrame->x1) XMin=SprFrame->x1;
if (XMin>SprFrame->x2) XMin=SprFrame->x2;
if (XMin>SprFrame->x3) XMin=SprFrame->x3;
XMax=SprFrame->x0;
if (XMax<SprFrame->x1) XMax=SprFrame->x1;
if (XMax<SprFrame->x2) XMax=SprFrame->x2;
if (XMax<SprFrame->x3) XMax=SprFrame->x3;
YMin=SprFrame->y0;
if (YMin>SprFrame->y1) YMin=SprFrame->y1;
if (YMin>SprFrame->y2) YMin=SprFrame->y2;
if (YMin>SprFrame->y3) YMin=SprFrame->y3;
YMax=SprFrame->y0;
if (YMax<SprFrame->y1) YMax=SprFrame->y1;
if (YMax<SprFrame->y2) YMax=SprFrame->y2;
if (YMax<SprFrame->y3) YMax=SprFrame->y3;
XMax -= renderPos.vx;
XMin -= renderPos.vx;
YMax -= renderPos.vy;
YMin -= renderPos.vy;
setCollisionSize( ( XMax - XMin ), ( YMax - YMin ) );
setCollisionCentreOffset( ( XMax + XMin ) >> 1, ( YMax + YMin ) >> 1 );
}
}
} |
a4d8c4b6dc413e8341b325dff244fb2e3791a2aa | 1240cab345c126566291f8e461d063cb6430396f | /src/openms/include/OpenMS/ANALYSIS/MAPMATCHING/FeatureGroupingAlgorithmKD.h | 68fd364196b9440eae159f513ff93b446d6b73c4 | [
"BSD-3-Clause",
"BSL-1.0"
] | permissive | OpenMS/OpenMS | 05cd6c9a2b8f3004ef47755305711a6631c13340 | 15e8641e9b6fad76e8314448a808d68231a93088 | refs/heads/develop | 2023-08-18T03:44:50.273261 | 2023-08-17T19:45:27 | 2023-08-17T19:45:27 | 15,763,403 | 443 | 312 | NOASSERTION | 2023-09-14T13:29:36 | 2014-01-09T10:15:13 | C++ | UTF-8 | C++ | false | false | 8,354 | h | FeatureGroupingAlgorithmKD.h | // --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universitaet Berlin 2002-2023.
//
// This software is released under a three-clause BSD license:
// * 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 any author or any participating institution
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
// For a full list of authors, refer to the file AUTHORS.
// --------------------------------------------------------------------------
// 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 ANY OF THE AUTHORS OR THE CONTRIBUTING
// INSTITUTIONS 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.
//
// --------------------------------------------------------------------------
// $Maintainer: Johannes Veit $
// $Authors: Johannes Veit $
// --------------------------------------------------------------------------
#pragma once
#include <OpenMS/ANALYSIS/MAPMATCHING/FeatureGroupingAlgorithm.h>
#include <OpenMS/ANALYSIS/QUANTITATION/KDTreeFeatureMaps.h>
#include <OpenMS/ANALYSIS/MAPMATCHING/FeatureDistance.h>
#include <OpenMS/CONCEPT/ProgressLogger.h>
namespace OpenMS
{
///
/**
@brief Proxy for a (potential) cluster.
Proxy for a (potential) cluster. Instead of storing the entire cluster,
this stores only its size, average distance to center, and the index of
the center point. Objects of this class are kept in a sorted binary search
tree (aka std::set) and operator< is defined in such a way that the first
element of the set is always a cluster proxy for a cluster of current
maximum size and smallest intra-cluster distance. The actual cluster points
are then retrieved again from the kd-tree and a consensus feature is added
to the output consensus map.
*/
class OPENMS_DLLAPI ClusterProxyKD
{
public:
/// Default constructor
ClusterProxyKD() :
size_(0), // => isValid() returns false
avg_distance_(0),
center_index_(0)
{
}
/// Constructor
ClusterProxyKD(Size size, double avg_distance, Size center_index) :
size_(size),
avg_distance_(avg_distance),
center_index_(center_index)
{
}
/// Copy constructor
ClusterProxyKD(const ClusterProxyKD& rhs) :
size_(rhs.size_),
avg_distance_(rhs.avg_distance_),
center_index_(rhs.center_index_)
{
}
/// Destructor (non-virtual to save memory)
~ClusterProxyKD()
{
}
/// Assignment operator
ClusterProxyKD& operator=(const ClusterProxyKD& rhs)
{
size_ = rhs.size_;
avg_distance_ = rhs.avg_distance_;
center_index_ = rhs.center_index_;
return *this;
}
/// Less-than operator for sorting / equality check in std::set. We use the ordering in std::set as a "priority queue", hence a < b means cluster a will be preferred over b.
bool operator<(const ClusterProxyKD& rhs) const
{
if (size_ > rhs.size_) return true;
if (size_ < rhs.size_) return false;
if (avg_distance_ < rhs.avg_distance_) return true;
if (avg_distance_ > rhs.avg_distance_) return false;
// arbitrary, but required for finding unambiguous elements in std::set
if (center_index_ > rhs.center_index_) return true;
if (center_index_ < rhs.center_index_) return false;
// they are equal
return false;
}
/// Inequality operator
bool operator!=(const ClusterProxyKD& rhs) const
{
return *this < rhs || rhs < *this;
}
/// Equality operator
bool operator==(const ClusterProxyKD& rhs) const
{
return !(*this != rhs);
}
/// Cluster size
Size getSize() const
{
return size_;
}
/// Valid?
bool isValid() const
{
return size_;
}
/// Average distance to center
double getAvgDistance() const
{
return avg_distance_;
}
/// Index of center point
Size getCenterIndex() const
{
return center_index_;
}
private:
/// Cluster size
Size size_;
/// Average distance to center
double avg_distance_;
/// Index of center point
Size center_index_;
};
/**
@brief A feature grouping algorithm for unlabeled data.
The algorithm takes a number of feature or consensus maps and searches
for corresponding (consensus) features across different maps.
@htmlinclude OpenMS_FeatureGroupingAlgorithmKD.parameters
@ingroup FeatureGrouping
*/
class OPENMS_DLLAPI FeatureGroupingAlgorithmKD :
public FeatureGroupingAlgorithm,
public ProgressLogger
{
public:
/// Default constructor
FeatureGroupingAlgorithmKD();
/// Destructor
~FeatureGroupingAlgorithmKD() override;
/**
@brief Applies the algorithm to feature maps
@exception IllegalArgument is thrown if less than two input maps are given.
*/
void group(const std::vector<FeatureMap>& maps, ConsensusMap& out) override;
/**
@brief Applies the algorithm to consensus maps
@exception IllegalArgument is thrown if less than two input maps are given.
*/
void group(const std::vector<ConsensusMap>& maps,
ConsensusMap& out) override;
/// Creates a new instance of this class (for Factory)
static FeatureGroupingAlgorithm* create()
{
return new FeatureGroupingAlgorithmKD();
}
/// Returns the product name (for the Factory)
static String getProductName()
{
return "unlabeled_kd";
}
private:
/// Copy constructor intentionally not implemented -> private
FeatureGroupingAlgorithmKD(const FeatureGroupingAlgorithmKD&);
/// Assignment operator intentionally not implemented -> private
FeatureGroupingAlgorithmKD& operator=(const FeatureGroupingAlgorithmKD&);
/**
@brief Applies the algorithm to feature or consensus maps
@exception IllegalArgument is thrown if less than two input maps are given.
*/
template <typename MapType>
void group_(const std::vector<MapType>& input_maps, ConsensusMap& out);
/// Run the actual clustering algorithm
void runClustering_(const KDTreeFeatureMaps& kd_data, ConsensusMap& out);
/// Update maximum possible sizes of potential consensus features for indices specified in @p update_these
void updateClusterProxies_(std::set<ClusterProxyKD>& potential_clusters, std::vector<ClusterProxyKD>& cluster_for_idx, const std::set<Size>& update_these, const std::vector<Int>& assigned, const KDTreeFeatureMaps& kd_data);
/// Compute the current best cluster with center index @p i (mutates @p proxy and @p cf_indices)
ClusterProxyKD computeBestClusterForCenter_(Size i, std::vector<Size>& cf_indices, const std::vector<Int>& assigned, const KDTreeFeatureMaps& kd_data) const;
/// Construct consensus feature and add to out map
void addConsensusFeature_(const std::vector<Size>& indices, const KDTreeFeatureMaps& kd_data, ConsensusMap& out) const;
/// Current progress for logging
SignedSize progress_;
/// RT tolerance
double rt_tol_secs_;
/// m/z tolerance
double mz_tol_;
/// m/z unit ppm?
bool mz_ppm_;
/// Feature distance functor
FeatureDistance feature_distance_;
};
} // namespace OpenMS
|
5301cd6a91caa2413453aa464bad98b33f01efe6 | 226f5e2a38269ce056ec7e8f458548cdde4ad97c | /MIXTURES.cpp | fb02df4408457dfd3b2f41182c7f550bf756186e | [] | no_license | naganath/SPOJ | 4b4051ee2abc4f8f1afccebc9674013b5dc6bdd9 | b149340fab7e609237908b5bb1a0ce4a7516a544 | refs/heads/master | 2020-05-02T20:35:51.212318 | 2014-06-27T08:44:24 | 2014-06-27T08:44:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 648 | cpp | MIXTURES.cpp | #include<iostream>
#include<stdio.h>
using namespace std;
int b[100],a[100][100];
int sum(int,int);
int mix(int i,int j)
{
if(i==j)
return 0;
if(a[i][j]!=-1)
return a[i][j];
int g,k,min=1000000;
for(k=i;k<j;k++)
{ g= mix(i,k) + mix(k+1,j);
g+=sum(i,k) * sum(k+1,j);
if(g<min)
min=g;
}
a[i][j] = min;
return min;
}
int sum(int i,int k)
{
int ac,sum;
for(ac=i;ac<=k;ac++)
sum+=b[ac];
return sum%100;
}
int main()
{
int t;
while(scanf("%d",&t)!=EOF)
{
int i,j,k;
for(i=0;i<t;i++)
cin>>b[i];
for(i=0;i<t;i++)
{ for(j=0;j<t;j++)
a[i][j]=-1;
a[i][i]=0;
}
cout<<mix(0,t-1)<<"\n";
}
return 0;
}
|
17b32d25d5d2da8fedd5d169cc43eb10723ee676 | e843e237fe5a45b2a09b834038b2556979076d2a | /data/src/client/network/netConnector.h | 433c1cdbd6dd83469e364d78fad3597efdaaac1e | [] | no_license | HeightsHeights/TeamGame | d4b816b31d00f2bb3bfea6e25dc2c445837924af | 8c945e1d9bb67cf879c1b37e40092907f065e56f | refs/heads/master | 2020-04-02T21:43:45.909494 | 2019-02-04T05:43:19 | 2019-02-04T05:43:19 | 154,810,079 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 455 | h | netConnector.h |
#pragma once
#include <netdb.h>
/******************************************************************************
* class NetConnector
* 機能1:
******************************************************************************/
class NetConnector
{
private:
int gSocket;
sockaddr_in server;
static bool isConnected;
public:
NetConnector();
NetConnector(int gSocket, sockaddr_in server);
bool connectServer();
void disconnectServer();
};
|
db38635169c274f41250837b84ae34e2c0925164 | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/InnerDetector/InDetEventCnv/InDetEventAthenaPool/InDetEventAthenaPool/InDetRawDataContainer_p1.h | 444bc7b6b71d4a7c370fb01409ca0d140439f3e5 | [] | no_license | rushioda/PIXELVALID_athena | 90befe12042c1249cbb3655dde1428bb9b9a42ce | 22df23187ef85e9c3120122c8375ea0e7d8ea440 | refs/heads/master | 2020-12-14T22:01:15.365949 | 2020-01-19T03:59:35 | 2020-01-19T03:59:35 | 234,836,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,181 | h | InDetRawDataContainer_p1.h | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef INDETRAWDATACONTAINER_P1_H
#define INDETRAWDATACONTAINER_P1_H
/*
Persistent represenation of an IndetRawDataContainer.
This is used for all the RDO conainers with base RDO objects.
The converter will take care of creating TRT/SCT/Pixel
RDO containers out of it.
The assumption is that objects contained in a container
are all of the same type, eg containers are hompgeneous.
This persistent container should only be used for objects
that contain InDetRawData_p1.
Author: Davide Costanzo
*/
#include <vector>
#include <string>
#include "InDetEventAthenaPool/InDetRawData_p1.h"
#include "InDetEventAthenaPool/InDetRawDataCollection_p1.h"
class InDetRawDataContainer_p1
{
public:
/// Default constructor
InDetRawDataContainer_p1 ();
friend class TRT_LoLumRawDataContainerCnv_p1;
friend class SCT1_RawDataContainerCnv_p1;
friend class Pixel1RawDataContainerCnv_p1;
private:
std::vector<InDetRawDataCollection_p1> m_collections;
std::vector<InDetRawData_p1> m_rawdata;
};
// inlines
inline
InDetRawDataContainer_p1::InDetRawDataContainer_p1 () {}
#endif
|
291b46db6d3a996e349e72c4db61185a90d995cb | 095c9239f24081ed5f8f8228e815acb7dcc7f6a1 | /92.HelloWorldWithoutSemicolon.cpp | e485607e5779246f3863eac68b7769f4bc97079b | [] | no_license | asthajain99/CampusTechPrep | 1144241f48455e523960c12513c1bc19d33f5d0b | d23706db1c99a9f67ee80a8a65e45f46f780dc2a | refs/heads/master | 2022-07-02T17:27:48.834145 | 2020-05-11T10:18:29 | 2020-05-11T10:18:29 | 255,821,119 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 324 | cpp | 92.HelloWorldWithoutSemicolon.cpp | //Write a program to print hello world without using semicolon
#include<iostream>
using namespace std;
int main()
{
if(cout<<"Hello World")
{}
return 0;
}
//OUTPUT
//Hello World
//--------------------------------
//Process exited after 0.1492 seconds with return value 0
//Press any key to continue . . .
|
d670ac183773d1b8ade9149c8d529c7d438e3f11 | d5467f3e5f275e5c40cb115c7d2f88fbcf424d95 | /CGame/src/Utility.cpp | 6bcdcda82c399f5111144e8f9af732c1ae30cff3 | [] | no_license | qzi/cgame | 0f5c181fe93e100183a1cbff3e2e317edb053bc3 | d5fa33d81f1fe98b7f613da3f12633d37698daa4 | refs/heads/master | 2021-01-19T04:13:39.762855 | 2011-05-21T06:25:23 | 2011-05-21T06:25:23 | 1,774,026 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,372 | cpp | Utility.cpp | #include "Utility.h"
/* definition */
GLfloat gCameraPos[3] = { 0.0f, -92.0f, 5.0f };
GLfloat gViewPos[3] = {0.0f, -92.5f, 0.0f };
GLfloat gUpPos[3] = { 0.0f, 1.0f, 0.0f };
/*CCamera gCamera;*/
CCamera gCamera;
/* roam below */
//GLfloat gFovX = 90.0f;
FILE * pFileLog = NULL;
float gSpeed = 10.2;
DirectMode gDirectMode;
CPageMgr gPageMgr;
/* roam above */
/* cspirites */
CSpirit * gSpirites[3];
CSpiriteMgr * gSpiritMgr = NULL;
CBullet gBullet;
bool flag = false;
/* font */
CFont gFont;
/* cgui */
CEGUI::CGUI gGUI;
void GLUTRenderScene( void ){
// render the scene
RenderScene();
// swap the offscene buffers
glutSwapBuffers();
}
void GLUTReshape(int w, int h)
{
glViewport( 0, 0, (GLsizei) w , (GLsizei) h );
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective( 45.f , (GLfloat) w/ (GLfloat) h, NEAR_CLIP, FAR_CLIP );
glMatrixMode(GL_MODELVIEW);
}
void RenderScene()
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glClearColor (1.0f, 1.0f, 1.0f, 0.0f);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
//////////////////////////////////////////////////////////////////////////
// fps
CTimer::GetInstance()->Update();
//////////////////////////////////////////////////////////////////////////
// camera
gCamera.setLook();
// Set the camera
//glPushMatrix(); // the camera
//glMultMatrixf(gCamera.matrixCamera);
//////////////////////////////////////////////////////////////////////////
// spirites manager
glPushMatrix();
CVector3 viewVector = gCamera.getView() -gCamera.getPosition();
viewVector.Normalize();
gSpirites[0] = NewCSpirit( gSpirites[0], "./data/models/", "gl-14.3ds" );
gSpirites[0]->SetPosition( gCamera.getPosition().x + 5 * viewVector.x,
gCamera.getPosition().y + 5 * viewVector.y,gCamera.getPosition().z + 5 * viewVector.z );
gSpirites[0]->SetRotate( -90.f, 0.f, 1.f, 0.f );
//gSpirites[0]->SetScale( 1.2f );
/*gSpirites[1] = NewCSpirit( gSpirites[1], "./TEST/", "gl-14c.3ds");
gSpirites[1]->SetPosition( 0.0f,-360.0f,-30.0f);
gSpirites[2] = NewCSpirit( gSpirites[2], "./TEST/", "cannon1.3ds");
gSpirites[2]->SetPosition( 2.0f,-350.0f,-30.0f );
gSpirites[2]->SetScale( 0.2f );*/
gSpiritMgr->AddSpirit( gSpirites[0] );
//gSpiritMgr->AddSpirit( gSpirites[1] );
//gSpiritMgr->AddSpirit( gSpirites[2] );
//gSpiriteMgr->DeleteSpirit( gSpirit[1] ); // without clean the memory
gSpiritMgr->UpdateSprites();
glPopMatrix();
//////////////////////////////////////////////////////////////////////////
// bullet
glPushMatrix();
if ( !flag )
{
gBullet.SetPosition( gCamera.getPosition().x + 5 * viewVector.x,
gCamera.getPosition().y + 5 * viewVector.y,gCamera.getPosition().z + 5 * viewVector.z );
flag = true;
}
gBullet.SetVelocity( 0.f, 0.f, -0.5f );
//gBullet.SetVelocity( viewVector.x, viewVector.y, viewVector.z );
gBullet.DrawBullet();
glPopMatrix();
////////////////////////////////////////////////////////////////////////
// paging roam system
glPushMatrix();
glTranslatef( 0.0f, -200.0f, 0.0f );
gPageMgr.SetCameraPos( gCamera.getPosition().x,
gCamera.getPosition().y, gCamera.getPosition().z );
gPageMgr.SetViewPos( gCamera.getView().x,
gCamera.getView().y, gCamera.getView().z );
gPageMgr.Render();
glPopMatrix();
//////////////////////////////////////////////////////////////////////////
// font
#pragma warning(disable:4996)
glPushAttrib( GL_CURRENT_BIT );
glColor3f( 0.f ,0.f, 0.f );
int SrcWidth = glutGet( GLUT_WINDOW_WIDTH );
int SrcHeight = glutGet( GLUT_WINDOW_HEIGHT );
char PosX[20];
sprintf( PosX, "PosX : %5.2f\0",gCamera.getPosition().x );
gFont.PrintText( PosX, -4.f, 3.f );
char PosY[20];
sprintf( PosY, "PoxY : %5.2f\0",gCamera.getPosition().y );
gFont.PrintText( PosY, -4.f, 2.75f );
char PosZ[20];
sprintf( PosZ, "PoxZ : %5.2f\0",gCamera.getPosition().z );
gFont.PrintText( PosZ, -4.f, 2.5f );
char fps[20];
sprintf( fps, "Fps : %5.2f\0",CTimer::GetInstance()->GetFps() );
gFont.PrintText( fps, -4.f, 2.25f );
glPopAttrib();
#pragma warning(default:4996)
//////////////////////////////////////////////////////////////////////////
// cegui
//gGUI.GUIRender();
}
void KeyUp()
{
gCamera.moveCamera( 5.0f );
}
void KeyDown()
{
gCamera.moveCamera( -5.0f );
}
void KeyLeft()
{
gCamera.yawCamera( -3.0f );
}
void KeyRight()
{
gCamera.yawCamera( 3.0f );
}
void GLUTSpecial( int key, int x, int y ){
switch( key )
{
case GLUT_KEY_LEFT:
gDirectMode = LEFT;
KeyLeft();
glutPostRedisplay();
break;
case GLUT_KEY_RIGHT:
gDirectMode = RIGHT;
KeyRight();
glutPostRedisplay();
break;
case GLUT_KEY_UP:
gDirectMode = UP;
KeyUp();
glutPostRedisplay();
break;
case GLUT_KEY_DOWN:
gDirectMode = DOWN;
KeyDown();
glutPostRedisplay();
break;
}
}
void GLUTKeyboard(unsigned char key, int x, int y)
{
switch (key) {
case 27:
exit(0);
break;
case 'w':
case 'W':
gCamera.pitchCamera( 1.0f );
glutPostRedisplay();
break;
case 's':
case 'S':
gCamera.pitchCamera( -1.0f );
glutPostRedisplay();
break;
case 'a':
case 'A':
gCamera.rollCamera( -1.0f );
glutPostRedisplay();
break;
case 'D':
case 'd':
gCamera.rollCamera( 1.0f );
glutPostRedisplay();
break;
}
}
void InitScene( void )
{
glClearColor (0.0, 0.0, 0.0, 0.0);
glShadeModel(GL_FLAT);
glEnable(GL_DEPTH_TEST);
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
glEnable(GL_TEXTURE_2D);
//glEnable(GL_LIGHTING);
//glEnable(GL_LIGHT0);
//float lightpos[] = { 0.0f, 1000.0f, 0.0f };
//float lightcolor[] = { 1.0, 1.0, 1.0, 1.0 };
//glLightfv( GL_LIGHT0, GL_POSITION, lightpos );
//glLightfv( GL_LIGHT0, GL_DIFFUSE, lightcolor );
//glLightfv( GL_LIGHT0, GL_SPECULAR, lightcolor );
// load the terrain
loadTerrain(MAP_SIZE, &gHeightMap);
// initial the camera
gCamera.setCamera( gCameraPos[0],gCameraPos[1],gCameraPos[2],
gViewPos[0],gViewPos[1],gViewPos[2],
gUpPos[0],gUpPos[1],gUpPos[2]);
// initial the spirites
gSpiritMgr = new CSpiriteMgr();
//////////////////////////////////////////////////////////////////////////
// font
gFont.InitFont();
//////////////////////////////////////////////////////////////////////////
//cegui
gGUI.GUIInitialize();
}
void UnInitScene( void )
{
delete gSpiritMgr;
gSpiritMgr = NULL;
freeTerrain();
}
|
3381efa2059efc56fb884cf254ef4650f9092a3f | 9c5cf31c2a48835f209a67ff3b76dbf362a5ebac | /Gadget.h | a098abe7eb00aca70bd34ca07f54ecc3ed6b2595 | [] | no_license | tjostrowski/MScEngine | 873fe822e7f14b7ef1a948a4d6445f8bb52f2a8a | c77c9945ed728247baab794f03a0cadf4608dc5d | refs/heads/master | 2020-03-29T12:36:33.906739 | 2016-08-08T16:04:35 | 2016-08-08T16:04:35 | 65,218,528 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,857 | h | Gadget.h | #ifndef __GADGET_H__
#define __GADGET_H__
#include "common_header.h"
extern string G_CATAPULT;
extern string G_CANNON;
extern string G_POWERUP;
struct GTmplParams
{
string strClass;
int reqUnitsNum;
float width;
float height;
uint gTxtID;
};
extern GTmplParams tblTmplParams[];
class Gadget : public CtrlObject, public Idxable, public BulletThrowable, public PlaceableObj
{
public:
// width & height in cells
Gadget(cpt3f& a_pos);
inline virtual ~Gadget() {}
inline static cstring& getClass() { return strClass; }
inline static int getReqOpUnitsNum() { return numReqOpUnits; }
int getOpUnitsNum();
inline bool isAnyAssigned() { return (v_vAssUnits.size() > 0); }
inline bool isFullyAssigned() { return (getReqOpUnitsNum() == v_vAssUnits.size()); }
inline bool isOperated() { return (getReqOpUnitsNum() == getOpUnitsNum()); }
void assignUnit(BasicObject* a_pObj);
void deassignUnit(BasicObject* a_pObj);
inline int getAssUnitsNum() { return v_vAssUnits.size(); }
virtual void m_update() = 0;
virtual void m_draw(int a_nUserId, BITMAP* a_pDestBmp) = 0;
bool objFarOutsideGadget(BasicObject* a_pObj);
virtual cpt3f m_getNewPosForObj(BasicObject* a_pObj) = 0;
inline cpt3f m_getPos() { return v_pos; }
inline cfloat m_getWidth() { return width; }
inline cfloat m_getHeight() { return height; }
inline bool m_exists() { return (!v_tbDestroyed); }
protected:
static bool sinit();
static string strClass;
static int numReqOpUnits;
static float width;
static float height;
static uint gTxtID;
pt3f v_pos;
UNITS_VEC v_vAssUnits;
TextureObject v_gTxtObj;
bool v_tbDestroyed;
};
/*class CatapultGadget : public Gadget
{
}; */
// na razie tylko tego FIUTA bedziemy wykorzystywac
class CannonGadget : public Gadget
{
public:
CannonGadget(cpt3f& a_pos, cvec3f& a_dir, cfloat& a_rng);
virtual ~CannonGadget();
void m_update();
inline void setCanShoot(bool a_can) { v_canShoot = a_can; }
inline bool canShoot() { return v_canShoot; }
// Tekstury mamy kierunkowo takie:
// | / -
// rotujemy od wektora aktualnego do zadanego
// zakladamy ze kazdorazowo mozna sie obrocic o 1 stopien (/ 360)
inline void setDestDir(cvec3f& a_destDir) { destDir = a_destDir.normalize(); }
inline cvec3f& getDir() { return dir; }
void m_draw(int a_nUserId, BITMAP* a_pDestBmp);
inline void setShootDelay(const uint& a_delay) { shootDelay = a_delay; }
virtual cpt3f m_getNewPosForObj(BasicObject* a_pObj);
protected:
static bool _sinitOK;
static bool sinit();
protected:
vec3f dir;
vec3f destDir;
float rng;
bool v_canShoot;
uint shootDelay;
ulong lastShoot;
BITMAP* tmpBmp;
};
/* class PowerupGadget : public Gadget
{
};*/
#endif // __GADGET_H__
|
70340e5aa8da93cab31313d4ef0334c316dc3d69 | a54f0bfe0390899df576a2dc964c18cdf83b24a3 | /CubeEngine/EngineSrc/Math/Matrix44.cpp | 74fb63f2b1a2ccd710e026c31d92fc70844535dd | [
"MIT"
] | permissive | SkillCampAlan/Cube-Engine | e226c82a86042f283764a3ee418e228fa04f2e49 | aa76db88fdace41b09cbfc51e5959a9686cca3f3 | refs/heads/master | 2022-12-26T07:41:22.954039 | 2020-10-10T11:45:11 | 2020-10-10T11:45:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,707 | cpp | Matrix44.cpp | #include "Matrix44.h"
#include "string.h"
#include <cmath>
#define MATH_TOLERANCE 2e-37f
#define MATH_EPSILON 0.000001f
#include "Engine/EngineDef.h"
namespace tzw {
Matrix44::Matrix44()
{
setToIdentity();
}
void Matrix44::setToIdentity()
{
memset(m_data,0,sizeof(m_data));
m_data[0] = 1;
m_data[5] = 1;
m_data[10] = 1;
m_data[15] = 1;
}
void Matrix44::setTranslate(vec3 offset)
{
m_data[12] = offset.x;
m_data[13] = offset.y;
m_data[14] = offset.z;
}
void Matrix44::setScale(vec3 scaleFactor)
{
m_data[0] = scaleFactor.x;
m_data[5] = scaleFactor.y;
m_data[10] = scaleFactor.z;
}
void Matrix44::setRotation(const Quaternion &q)
{
float x2 = q.x + q.x;
float y2 = q.y + q.y;
float z2 = q.z + q.z;
float xx2 = q.x * x2;
float yy2 = q.y * y2;
float zz2 = q.z * z2;
float xy2 = q.x * y2;
float xz2 = q.x * z2;
float yz2 = q.y * z2;
float wx2 = q.w * x2;
float wy2 = q.w * y2;
float wz2 = q.w * z2;
m_data[0] = 1.0f - yy2 - zz2;
m_data[1] = xy2 + wz2;
m_data[2] = xz2 - wy2;
m_data[3] = 0.0f;
m_data[4] = xy2 - wz2;
m_data[5] = 1.0f - xx2 - zz2;
m_data[6] = yz2 + wx2;
m_data[7] = 0.0f;
m_data[8] = xz2 + wy2;
m_data[9] = yz2 - wx2;
m_data[10] = 1.0f - xx2 - yy2;
m_data[11] = 0.0f;
m_data[12] = 0.0f;
m_data[13] = 0.0f;
m_data[14] = 0.0f;
m_data[15] = 1.0f;
}
Matrix44 Matrix44::operator *(const Matrix44 &other) const
{
Matrix44 dest;
auto mat2 = other.m_data;
// Cache the matrix values (makes for huge speed increases!)
float a00 = m_data[0], a01 = m_data[1], a02 = m_data[2], a03 = m_data[3],
a10 = m_data[4], a11 = m_data[5], a12 = m_data[6], a13 = m_data[7],
a20 = m_data[8], a21 = m_data[9], a22 = m_data[10], a23 = m_data[11],
a30 = m_data[12], a31 = m_data[13], a32 = m_data[14], a33 = m_data[15],
b00 = mat2[0], b01 = mat2[1], b02 = mat2[2], b03 = mat2[3],
b10 = mat2[4], b11 = mat2[5], b12 = mat2[6], b13 = mat2[7],
b20 = mat2[8], b21 = mat2[9], b22 = mat2[10], b23 = mat2[11],
b30 = mat2[12], b31 = mat2[13], b32 = mat2[14], b33 = mat2[15];
dest.m_data[0] = b00 * a00 + b01 * a10 + b02 * a20 + b03 * a30;
dest.m_data[1] = b00 * a01 + b01 * a11 + b02 * a21 + b03 * a31;
dest.m_data[2] = b00 * a02 + b01 * a12 + b02 * a22 + b03 * a32;
dest.m_data[3] = b00 * a03 + b01 * a13 + b02 * a23 + b03 * a33;
dest.m_data[4] = b10 * a00 + b11 * a10 + b12 * a20 + b13 * a30;
dest.m_data[5] = b10 * a01 + b11 * a11 + b12 * a21 + b13 * a31;
dest.m_data[6] = b10 * a02 + b11 * a12 + b12 * a22 + b13 * a32;
dest.m_data[7] = b10 * a03 + b11 * a13 + b12 * a23 + b13 * a33;
dest.m_data[8] = b20 * a00 + b21 * a10 + b22 * a20 + b23 * a30;
dest.m_data[9] = b20 * a01 + b21 * a11 + b22 * a21 + b23 * a31;
dest.m_data[10] = b20 * a02 + b21 * a12 + b22 * a22 + b23 * a32;
dest.m_data[11] = b20 * a03 + b21 * a13 + b22 * a23 + b23 * a33;
dest.m_data[12] = b30 * a00 + b31 * a10 + b32 * a20 + b33 * a30;
dest.m_data[13] = b30 * a01 + b31 * a11 + b32 * a21 + b33 * a31;
dest.m_data[14] = b30 * a02 + b31 * a12 + b32 * a22 + b33 * a32;
dest.m_data[15] = b30 * a03 + b31 * a13 + b32 * a23 + b33 * a33;
return dest;
}
vec4 Matrix44::operator *(const vec4 &other) const
{
vec4 result;
float x = other.x, y = other.y, z = other.z,w = other.w;
auto mat = m_data;
result.x = mat[0] * x + mat[4] * y + mat[8] * z + mat[12] * w;
result.y = mat[1] * x + mat[5] * y + mat[9] * z + mat[13] * w;
result.z = mat[2] * x + mat[6] * y + mat[10] * z + mat[14] * w;
result.w = mat[3] * x + mat[7] * y + mat[11] * z + mat[15] * w;
return result;
}
void Matrix44::ortho(float left, float right, float bottom, float top, float near, float far)
{
//m_data[0] = 2.0f/(right - left); m_data[4] = 0.0f; m_data[8] = 0.0f; m_data[12] = -(right + left)/(right - left);
//m_data[1] = 0.0f; m_data[5] = 2.0f/(top - bottom); m_data[9] = 0.0f; m_data[13] = -(top + bottom)/(top - bottom);
//m_data[2] = 0.0f; m_data[6] = 0.0f; m_data[10] = -2.0f/(far - near); m_data[14] = -(far + near)/(far - near);
//m_data[3] = 0.0f; m_data[7] = 0.0f; m_data[11] = 0.0f; m_data[15] = 1.0;
float lr = 1 / (left - right);
float bt = 1 / (bottom - top);
float nf = 1 / (near - far);
if(EngineDef::isUseVulkan)
{
m_data[0] = -2 * lr;
m_data[1] = 0;
m_data[2] = 0;
m_data[3] = 0;
m_data[4] = 0;
m_data[5] = 2 * bt;
m_data[6] = 0;
m_data[7] = 0;
m_data[8] = 0;
m_data[9] = 0;
m_data[10] = 1 * nf;
m_data[11] = 0;
m_data[12] = (left + right) * lr;
m_data[13] = -(top + bottom) * bt;
m_data[14] = (near) * nf;
m_data[15] = 1;
}
else
{
m_data[0] = -2 * lr;
m_data[1] = 0;
m_data[2] = 0;
m_data[3] = 0;
m_data[4] = 0;
m_data[5] = -2 * bt;
m_data[6] = 0;
m_data[7] = 0;
m_data[8] = 0;
m_data[9] = 0;
m_data[10] = 2 * nf;
m_data[11] = 0;
m_data[12] = (left + right) * lr;
m_data[13] = (top + bottom) * bt;
m_data[14] = (far + near) * nf;
m_data[15] = 1;
}
}
#define M_PI 3.141592654
#define ToRadian(x) (float)(((x) * M_PI / 180.0f))
void Matrix44::perspective(float fovy, float aspect, float near, float far)
{
fovy = ToRadian(fovy);
float f = 1.0 / tan(fovy / 2);
float nf = 1.0 / (near - far);
if(EngineDef::isUseVulkan)
{
m_data[0] = f / aspect;
m_data[1] = 0;
m_data[2] = 0;
m_data[3] = 0;
m_data[4] = 0;
m_data[5] = -f;
m_data[6] = 0;
m_data[7] = 0;
m_data[8] = 0;
m_data[9] = 0;
m_data[10] = (far) * nf;
m_data[11] = -1;
m_data[12] = 0;
m_data[13] = 0;
m_data[14] = (far * near) * nf;
m_data[15] = 0;
}
else{
m_data[0] = f / aspect;
m_data[1] = 0;
m_data[2] = 0;
m_data[3] = 0;
m_data[4] = 0;
m_data[5] = f;
m_data[6] = 0;
m_data[7] = 0;
m_data[8] = 0;
m_data[9] = 0;
m_data[10] = (far + near) * nf;
m_data[11] = -1;
m_data[12] = 0;
m_data[13] = 0;
m_data[14] = (2 * far * near) * nf;
m_data[15] = 0;
}
}
Matrix44 Matrix44::inverted(bool *invertible)
{
auto mat = m_data;
Matrix44 result;
float a00 = mat[0], a01 = mat[1], a02 = mat[2], a03 = mat[3],
a10 = mat[4], a11 = mat[5], a12 = mat[6], a13 = mat[7],
a20 = mat[8], a21 = mat[9], a22 = mat[10], a23 = mat[11],
a30 = mat[12], a31 = mat[13], a32 = mat[14], a33 = mat[15],
b00 = a00 * a11 - a01 * a10,
b01 = a00 * a12 - a02 * a10,
b02 = a00 * a13 - a03 * a10,
b03 = a01 * a12 - a02 * a11,
b04 = a01 * a13 - a03 * a11,
b05 = a02 * a13 - a03 * a12,
b06 = a20 * a31 - a21 * a30,
b07 = a20 * a32 - a22 * a30,
b08 = a20 * a33 - a23 * a30,
b09 = a21 * a32 - a22 * a31,
b10 = a21 * a33 - a23 * a31,
b11 = a22 * a33 - a23 * a32,
d = (b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06),
invDet;
// Calculate the determinant
if (!d )
{
if (invertible) {(*invertible) = false;}
return result;
}
else
{
if (invertible) {(*invertible) = true;}
}
invDet = 1 / d;
result.m_data[0] = (a11 * b11 - a12 * b10 + a13 * b09) * invDet;
result.m_data[1] = (-a01 * b11 + a02 * b10 - a03 * b09) * invDet;
result.m_data[2] = (a31 * b05 - a32 * b04 + a33 * b03) * invDet;
result.m_data[3] = (-a21 * b05 + a22 * b04 - a23 * b03) * invDet;
result.m_data[4] = (-a10 * b11 + a12 * b08 - a13 * b07) * invDet;
result.m_data[5] = (a00 * b11 - a02 * b08 + a03 * b07) * invDet;
result.m_data[6] = (-a30 * b05 + a32 * b02 - a33 * b01) * invDet;
result.m_data[7] = (a20 * b05 - a22 * b02 + a23 * b01) * invDet;
result.m_data[8] = (a10 * b10 - a11 * b08 + a13 * b06) * invDet;
result.m_data[9] = (-a00 * b10 + a01 * b08 - a03 * b06) * invDet;
result.m_data[10] = (a30 * b04 - a31 * b02 + a33 * b00) * invDet;
result.m_data[11] = (-a20 * b04 + a21 * b02 - a23 * b00) * invDet;
result.m_data[12] = (-a10 * b09 + a11 * b07 - a12 * b06) * invDet;
result.m_data[13] = (a00 * b09 - a01 * b07 + a02 * b06) * invDet;
result.m_data[14] = (-a30 * b03 + a31 * b01 - a32 * b00) * invDet;
result.m_data[15] = (a20 * b03 - a21 * b01 + a22 * b00) * invDet;
return result;
}
Matrix44 Matrix44::transpose()
{
Matrix44 result;
auto dest = result.m_data;
auto mat = m_data;
dest[0] = mat[0];
dest[1] = mat[4];
dest[2] = mat[8];
dest[3] = mat[12];
dest[4] = mat[1];
dest[5] = mat[5];
dest[6] = mat[9];
dest[7] = mat[13];
dest[8] = mat[2];
dest[9] = mat[6];
dest[10] = mat[10];
dest[11] = mat[14];
dest[12] = mat[3];
dest[13] = mat[7];
dest[14] = mat[11];
dest[15] = mat[15];
return result;
}
vec4 Matrix44::operator *(const vec4 &v)
{
vec4 dst;
auto m = m_data;
dst.x = v.x * m[0] + v.y * m[4] + v.z * m[8] + v.w * m[12];
dst.y = v.x * m[1] + v.y * m[5] + v.z * m[9] + v.w * m[13];
dst.z = v.x * m[2] + v.y * m[6] + v.z * m[10] + v.w * m[14];
dst.w = v.x * m[3] + v.y * m[7] + v.z * m[11] + v.w * m[15];
return dst;
}
vec3 Matrix44::transformVec3(vec3 v)
{
auto result = *this * vec4(v, 1.0f);
return vec3(result.x, result.y, result.z);
}
vec4 Matrix44::transofrmVec4(vec4 v)
{
return *this * v;
}
void Matrix44::frustum(float left, float right, float bottom, float top, float near, float far)
{
float rl = (right - left),
tb = (top - bottom),
fn = (far - near);
m_data[0] = (near * 2) / rl;
m_data[1] = 0;
m_data[2] = 0;
m_data[3] = 0;
m_data[4] = 0;
m_data[5] = (near * 2) / tb;
m_data[6] = 0;
m_data[7] = 0;
m_data[8] = (right + left) / rl;
m_data[9] = (top + bottom) / tb;
m_data[10] = -(far + near) / fn;
m_data[11] = -1;
m_data[12] = 0;
m_data[13] = 0;
m_data[14] = -(far * near * 2) / fn;
m_data[15] = 0;
}
float *Matrix44::data()
{
return m_data;
}
void Matrix44::getRowData(float* data)
{
data[0] = m_data[0];
data[1] = m_data[4];
data[2] = m_data[8];
data[3] = m_data[12];
data[4] = m_data[1];
data[5] = m_data[5];
data[6] = m_data[9];
data[7] = m_data[13];
data[8] = m_data[2];
data[9] = m_data[6];
data[10] = m_data[10];
data[11] = m_data[14];
data[12] = m_data[3];
data[13] = m_data[7];
data[14] = m_data[11];
data[15] = m_data[15];
}
void Matrix44::copyFromArray(float* data)
{
for (int i = 0; i < 16; i++)
{
m_data[i] = data[i];
}
}
vec3 Matrix44::up()
{
return vec3(m_data[4], m_data[5], m_data[6]);
}
vec3 Matrix44::forward()
{
return -vec3(m_data[8], m_data[9], m_data[10]);
}
vec3 Matrix44::right()
{
return vec3(m_data[0], m_data[1], m_data[2]);
}
void Matrix44::stripScale()
{
auto x = vec3(m_data[0], m_data[1], m_data[2]);
auto y = vec3(m_data[4], m_data[5], m_data[6]);
auto z = vec3(m_data[8], m_data[9], m_data[10]);
x.normalize();
y.normalize();
z.normalize();
m_data[0] = x.x;
m_data[1] = x.y;
m_data[2] = x.z;
m_data[4] = y.x;
m_data[5] = y.y;
m_data[6] = y.z;
m_data[8] = z.x;
m_data[9] = z.y;
m_data[10] = z.z;
}
vec3 Matrix44::getTranslation()
{
return vec3(m_data[12], m_data[13], m_data[14]);
}
float Matrix44::determinant() const
{
auto m = m_data;
float a0 = m[0] * m[5] - m[1] * m[4];
float a1 = m[0] * m[6] - m[2] * m[4];
float a2 = m[0] * m[7] - m[3] * m[4];
float a3 = m[1] * m[6] - m[2] * m[5];
float a4 = m[1] * m[7] - m[3] * m[5];
float a5 = m[2] * m[7] - m[3] * m[6];
float b0 = m[8] * m[13] - m[9] * m[12];
float b1 = m[8] * m[14] - m[10] * m[12];
float b2 = m[8] * m[15] - m[11] * m[12];
float b3 = m[9] * m[14] - m[10] * m[13];
float b4 = m[9] * m[15] - m[11] * m[13];
float b5 = m[10] * m[15] - m[11] * m[14];
// Calculate the determinant.
return (a0 * b5 - a1 * b4 + a2 * b3 + a3 * b2 - a4 * b1 + a5 * b0);
}
bool Matrix44::decompose(vec3* scale, Quaternion* rotation, vec3* translation) const
{
auto m = m_data;
if (translation)
{
// Extract the translation.
translation->x = m[12];
translation->y = m[13];
translation->z = m[14];
}
// Nothing left to do.
if (scale == nullptr && rotation == nullptr)
return true;
// Extract the scale.
// This is simply the length of each axis (row/column) in the matrix.
vec3 xaxis(m[0], m[1], m[2]);
float scaleX = xaxis.length();
vec3 yaxis(m[4], m[5], m[6]);
float scaleY = yaxis.length();
vec3 zaxis(m[8], m[9], m[10]);
float scaleZ = zaxis.length();
// Determine if we have a negative scale (true if determinant is less than zero).
// In this case, we simply negate a single axis of the scale.
float det = determinant();
if (det < 0)
scaleZ = -scaleZ;
if (scale)
{
scale->x = scaleX;
scale->y = scaleY;
scale->z = scaleZ;
}
// Nothing left to do.
if (rotation == nullptr)
return true;
// Scale too close to zero, can't decompose rotation.
if (scaleX < MATH_TOLERANCE || scaleY < MATH_TOLERANCE || std::abs(scaleZ) < MATH_TOLERANCE)
return false;
float rn;
// Factor the scale out of the matrix axes.
rn = 1.0f / scaleX;
xaxis.x *= rn;
xaxis.y *= rn;
xaxis.z *= rn;
rn = 1.0f / scaleY;
yaxis.x *= rn;
yaxis.y *= rn;
yaxis.z *= rn;
rn = 1.0f / scaleZ;
zaxis.x *= rn;
zaxis.y *= rn;
zaxis.z *= rn;
// Now calculate the rotation from the resulting matrix (axes).
float trace = xaxis.x + yaxis.y + zaxis.z + 1.0f;
if (trace > MATH_EPSILON)
{
float s = 0.5f / std::sqrt(trace);
rotation->w = 0.25f / s;
rotation->x = (yaxis.z - zaxis.y) * s;
rotation->y = (zaxis.x - xaxis.z) * s;
rotation->z = (xaxis.y - yaxis.x) * s;
}
else
{
// Note: since xaxis, yaxis, and zaxis are normalized,
// we will never divide by zero in the code below.
if (xaxis.x > yaxis.y && xaxis.x > zaxis.z)
{
float s = 0.5f / std::sqrt(1.0f + xaxis.x - yaxis.y - zaxis.z);
rotation->w = (yaxis.z - zaxis.y) * s;
rotation->x = 0.25f / s;
rotation->y = (yaxis.x + xaxis.y) * s;
rotation->z = (zaxis.x + xaxis.z) * s;
}
else if (yaxis.y > zaxis.z)
{
float s = 0.5f / std::sqrt(1.0f + yaxis.y - xaxis.x - zaxis.z);
rotation->w = (zaxis.x - xaxis.z) * s;
rotation->x = (yaxis.x + xaxis.y) * s;
rotation->y = 0.25f / s;
rotation->z = (zaxis.y + yaxis.z) * s;
}
else
{
float s = 0.5f / std::sqrt(1.0f + zaxis.z - xaxis.x - yaxis.y);
rotation->w = (xaxis.y - yaxis.x ) * s;
rotation->x = (zaxis.x + xaxis.z ) * s;
rotation->y = (zaxis.y + yaxis.z ) * s;
rotation->z = 0.25f / s;
}
}
return true;
}
bool Matrix44::getRotation(Quaternion* q)
{
return decompose(nullptr, q, nullptr);
}
void Matrix44::getScale(vec3* scale) const
{
decompose(scale, nullptr, nullptr);
}
} // namespace tzw
|
10c29b48dcaf40e69d545a0095df43dc939c5d9d | 9de326c64c8a344b0012b06131e644ae2b2f1534 | /include/type_checks.h | ef32b609f8a5bd3fdea4bc71f10145344f0e08c8 | [
"MIT"
] | permissive | mit-pdos/mcqc | a951fb6df8cc60d7c93ca54c89592b2d4ace4656 | eb5ab15b8bcc3c5c6a76e40f2e3bcbc2fc39e32e | refs/heads/master | 2021-06-12T10:57:09.332167 | 2021-04-05T00:49:56 | 2021-04-05T00:49:56 | 147,993,349 | 37 | 6 | MIT | 2021-04-05T00:49:56 | 2018-09-09T04:37:07 | Haskell | UTF-8 | C++ | false | false | 1,911 | h | type_checks.h | #ifndef TYPE_CHECKS_H
#define TYPE_CHECKS_H
#include <type_traits>
#include <utility>
#include <string>
#include <memory>
// Checks if type is callable by decltype magic
template<class T, class...Args>
struct is_callable
{
template<class U> static auto test(U*p) -> decltype((*p)(std::declval<Args>()...), void(), std::true_type());
template<class U> static auto test(...) -> decltype(std::false_type());
static constexpr auto value = decltype(test<T>(nullptr))::value;
};
// Is the type A the same as B, regardless of const and references
template <typename A, typename B>
struct is_same_kind {
static constexpr auto value = std::is_same_v<std::remove_cv_t<std::remove_reference_t<A>>,
std::remove_cv_t<std::remove_reference_t<B>>>;
};
template <typename A, typename B>
static constexpr auto is_same_kind_v = is_same_kind<A,B>::value;
template <typename T>
static constexpr auto is_constr_v = std::is_const_v<typename std::remove_reference<T>::type>;
#define FWD(a) std::forward<decltype(a)>(a)
// Checks if type is callable with by more magic
template<class T, class...Args>
static constexpr auto CallableWith = is_callable<std::remove_reference_t<T>, Args...>::value;
// Print template type
template <class T>
std::string
type_name()
{
typedef typename std::remove_reference<T>::type TR;
std::unique_ptr<char, void(*)(void*)> own
(
nullptr,
std::free
);
std::string r = own != nullptr ? own.get() : typeid(TR).name();
if (std::is_const<TR>::value)
r += " const";
if (std::is_volatile<TR>::value)
r += " volatile";
if (std::is_lvalue_reference<T>::value)
r += "&";
else if (std::is_rvalue_reference<T>::value)
r += "&&";
return r;
}
#define SHOWTYPE(x) (type_name<decltype(x)>())
#define SHOWTEMP(t) (type_name<t>)
#endif
|
7cf1abf0432e4cde256cc48afe7c7c4f8ece474a | 3de331ba23d6d1f44bef306ce9ac8a34da208618 | /binary_search_tree/binary_search_tree.cpp | 364376cd82abc1416e894e9f26b0561529073e0c | [] | no_license | JohnnyJ5/LeetCode | 19b5a3d9a971190c487a8c4f2e2a5ed60ad92c4c | 991348446dafcd6397fe7ad3406b24534c20a951 | refs/heads/master | 2021-01-13T22:51:36.002284 | 2020-02-29T18:21:49 | 2020-02-29T18:21:49 | 242,520,045 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,893 | cpp | binary_search_tree.cpp | #include <iostream>
#include <map>
#include <string>
#include <memory>
#include <algorithm>
#include <sstream>
struct TreeNode
{
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
void printAnswer(TreeNode *result, int val)
{
std::stringstream ss;
if (result)
{
ss << "Searching for " << val << " and result is " << result->val;
}
else
{
ss << "Searching for " << val << " and result is NULL";
}
std::cout << ss.str() << std::endl;
}
TreeNode *searchBSTRecursion(TreeNode *root, int val)
{
if (root == NULL)
{
return NULL;
}
if (root->val == val)
{
return root;
}
if (val < root->val)
{
return searchBSTRecursion(root->left, val);
}
else
{
return searchBSTRecursion(root->right, val);
}
}
TreeNode *searchBSTIteration(TreeNode *root, int val)
{
while (root != NULL)
{
if (root->val == val)
{
return root;
}
else if (val < root->val)
{
root = root->left;
}
else
{
root = root->right;
}
}
return root;
}
void RunRecursion(TreeNode *root, const int val)
{
TreeNode *result = searchBSTRecursion(root, val);
printAnswer(result, val);
}
void RunIteration(TreeNode *root, const int val)
{
TreeNode *result = searchBSTIteration(root, val);
printAnswer(result, val);
}
int main(int argc, char *argv[])
{
TreeNode four(4);
TreeNode two(2);
TreeNode seven(7);
TreeNode one(1);
TreeNode three(3);
four.left = &two;
four.right = &seven;
two.left = &one;
two.right = &three;
TreeNode *root = &four;
RunRecursion(root, 2);
RunRecursion(root, 5);
RunIteration(root, 2);
RunIteration(root, 5);
return 0;
} |
4e00f16eb84c9f200d74fc6fb9d8cd207b9a2c12 | 08808ed982d5e09ca0d7b7910956b45231898557 | /LeapMotionClientSources/HandDetector.h | e0791adcfa748733c8ba48948f6e6e2b194475e0 | [
"MIT",
"Apache-2.0"
] | permissive | gurbela/HoloLens-and-Leap-Motion | c4c97d72ce69daad93a88583308fa2b7f7053745 | b0c37d67a6c083cb58f0426c1dc60bda1a70cd89 | refs/heads/master | 2020-04-07T17:17:49.969374 | 2018-05-26T08:32:49 | 2018-05-26T08:32:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,884 | h | HandDetector.h | #pragma once
#include "stdafx.h"
#include <thread>
#include "opencv2\core.hpp"
#include "opencv2\highgui.hpp"
#include "opencv2\imgproc\imgproc.hpp"
using namespace std;
using namespace cv;
using namespace concurrency;
#define RESULT_FILE_NAME_BASE "calibration_data"
#define AVERAGING_KERNEL_SIZE 15
class HandDetector
{
public:
HandDetector() {}
Mat DetectHands(Mat* target_image, bool do_filtering)
{
Mat target = *target_image;
// Read the result of skin sample training
string line;
ifstream result_file;
result_file.open(MakeTrainingFileName());
getline(result_file, line);
result_file.close();
// Read each object into its own string
string sample_dim_str, cluster_count_str;
stringstream ss(line);
getline(ss, sample_dim_str, ';');
getline(ss, cluster_count_str, ';');
int sample_dim = stoi(sample_dim_str);
int cluster_count = stoi(cluster_count_str);
// Read each cluster
vector<double> mah_lower_thresholds, mah_upper_thresholds;
vector<Mat> means;
vector<Mat> inv_covars;
for (int i = 0; i < cluster_count; ++i)
{
string mah_mean_str, mah_std_dev_str, mean_str, inv_covar_str;
getline(ss, mah_mean_str, ';');
getline(ss, mah_std_dev_str, ';');
getline(ss, mean_str, ';');
getline(ss, inv_covar_str, ';');
mah_lower_thresholds.push_back(0.0);
mah_upper_thresholds.push_back(stod(mah_mean_str) + mah_std_dev_margin * stod(mah_std_dev_str));
Mat mean(Size(sample_dim, 1), CV_64F);
stringstream mean_ss(mean_str);
for (int j = 0; j < sample_dim; ++j)
{
string comp_mean_str;
getline(mean_ss, comp_mean_str, ',');
double comp_mean = stod(comp_mean_str);
mean.at<double>(0, j) = comp_mean;
}
means.push_back(mean);
Mat inv_covar(Size(sample_dim, sample_dim), CV_64F);
stringstream inv_covar_ss(inv_covar_str);
for (int row = 0; row < sample_dim; ++row)
{
for (int col = 0; col < sample_dim; ++col)
{
string entry_str;
getline(inv_covar_ss, entry_str, ',');
double entry = stod(entry_str);
inv_covar.at<double>(row, col) = entry;
}
}
inv_covars.push_back(inv_covar);
}
// Convert the target image to the required color spaces
Mat YCrCb, HSV, CIELab;
Mat blurred_RGB, blurred_YCrCb, blurred_HSV, blurred_CIELab;
GaussianBlur(target, target, Size(5, 5), 0.0);
cvtColor(target, YCrCb, CV_BGR2YCrCb);
cvtColor(target, HSV, CV_BGR2HSV);
cvtColor(target, CIELab, CV_BGR2Lab);
Mat surround_average_kernel = getStructuringElement(MORPH_ELLIPSE, Size(AVERAGING_KERNEL_SIZE, AVERAGING_KERNEL_SIZE));
surround_average_kernel.at<uchar>(AVERAGING_KERNEL_SIZE / 2, AVERAGING_KERNEL_SIZE / 2) = 0;
int kernel_sum = countNonZero(surround_average_kernel);
surround_average_kernel.convertTo(surround_average_kernel, CV_32FC1);
surround_average_kernel = surround_average_kernel / (float)kernel_sum;
filter2D(target, blurred_RGB, -1, surround_average_kernel);
cvtColor(blurred_RGB, blurred_YCrCb, CV_BGR2YCrCb);
cvtColor(blurred_RGB, blurred_HSV, CV_BGR2HSV);
cvtColor(blurred_RGB, blurred_CIELab, CV_BGR2Lab);
target_rows = target.rows;
target_cols = target.cols;
// Calculate the Mahalanobis distance for each pixel to each cluster
Mat initial_guess = Mat::zeros(target.size(), CV_8U);
parallel_for(0, target_rows, [&](int row)
{
parallel_for(0, target_cols, [&](int col)
{
Vec3b rgb_pixel = target.at<Vec3b>(row, col);
Vec3b ycrcb_pixel = YCrCb.at<Vec3b>(row, col);
Vec3b hsv_pixel = HSV.at<Vec3b>(row, col);
Vec3b cielab_pixel = CIELab.at<Vec3b>(row, col);
Vec3b blurred_rgb_pixel = blurred_RGB.at<Vec3b>(row, col);
Vec3b blurred_ycrcb_pixel = blurred_YCrCb.at<Vec3b>(row, col);
Vec3b blurred_hsv_pixel = blurred_HSV.at<Vec3b>(row, col);
Vec3b blurred_cielab_pixel = blurred_CIELab.at<Vec3b>(row, col);
double rgb_sum = rgb_pixel[0] + rgb_pixel[1] + rgb_pixel[2];
// Normalized RGB
double nr, ng;
if (rgb_sum > 0.0)
{
nr = ((double)rgb_pixel[2] / rgb_sum) * 255.0;
ng = ((double)rgb_pixel[1] / rgb_sum) * 255.0;
}
else
{
nr = 0.0;
ng = 0.0;
}
// Opponent colors
int RG = rgb_pixel[2] - rgb_pixel[1];
int YB = (2 * rgb_pixel[0] - rgb_pixel[2] + rgb_pixel[1]) / 4;
double blurred_rgb_sum = blurred_rgb_pixel[0] + blurred_rgb_pixel[1] + blurred_rgb_pixel[2];
// Blurred normalized RGB
double blurred_nr, blurred_ng;
if (blurred_rgb_sum > 0.0)
{
blurred_nr = ((double)blurred_rgb_pixel[2] / blurred_rgb_sum) * 255.0;
blurred_ng = ((double)blurred_rgb_pixel[1] / blurred_rgb_sum) * 255.0;
}
else
{
blurred_nr = 0.0;
blurred_ng = 0.0;
}
// Blurred opponent colors
int blurred_RG = blurred_rgb_pixel[2] - blurred_rgb_pixel[1];
int blurred_YB = (2 * blurred_rgb_pixel[0] - blurred_rgb_pixel[2] + blurred_rgb_pixel[1]) / 4;
int target_col = 0;
Mat transformed_pixel(Size(sample_dim, 1), CV_64F);
// RGB
transformed_pixel.at<double>(0, target_col++) = rgb_pixel[2];
transformed_pixel.at<double>(0, target_col++) = rgb_pixel[1];
transformed_pixel.at<double>(0, target_col++) = rgb_pixel[0];
// Normalized RGB
transformed_pixel.at<double>(0, target_col++) = nr;
transformed_pixel.at<double>(0, target_col++) = ng;
// Opponent colors
transformed_pixel.at<double>(0, target_col++) = RG;
transformed_pixel.at<double>(0, target_col++) = YB;
// YCrCb
transformed_pixel.at<double>(0, target_col++) = (double)ycrcb_pixel[0];
transformed_pixel.at<double>(0, target_col++) = (double)ycrcb_pixel[1];
transformed_pixel.at<double>(0, target_col++) = (double)ycrcb_pixel[2];
// HSV
transformed_pixel.at<double>(0, target_col++) = (double)hsv_pixel[0];
transformed_pixel.at<double>(0, target_col++) = (double)hsv_pixel[1];
transformed_pixel.at<double>(0, target_col++) = (double)hsv_pixel[2];
// CIELab
transformed_pixel.at<double>(0, target_col++) = (double)cielab_pixel[0];
transformed_pixel.at<double>(0, target_col++) = (double)cielab_pixel[1];
transformed_pixel.at<double>(0, target_col++) = (double)cielab_pixel[2];
// Blurred RGB
transformed_pixel.at<double>(0, target_col++) = blurred_rgb_pixel[2];
transformed_pixel.at<double>(0, target_col++) = blurred_rgb_pixel[1];
transformed_pixel.at<double>(0, target_col++) = blurred_rgb_pixel[0];
// Blurred normalized RGB
transformed_pixel.at<double>(0, target_col++) = blurred_nr;
transformed_pixel.at<double>(0, target_col++) = blurred_ng;
// Blurred opponent colors
transformed_pixel.at<double>(0, target_col++) = blurred_RG;
transformed_pixel.at<double>(0, target_col++) = blurred_YB;
// Blurred YCrCb
transformed_pixel.at<double>(0, target_col++) = (double)blurred_ycrcb_pixel[0];
transformed_pixel.at<double>(0, target_col++) = (double)blurred_ycrcb_pixel[1];
transformed_pixel.at<double>(0, target_col++) = (double)blurred_ycrcb_pixel[2];
// Blurred HSV
transformed_pixel.at<double>(0, target_col++) = (double)blurred_hsv_pixel[0];
transformed_pixel.at<double>(0, target_col++) = (double)blurred_hsv_pixel[1];
transformed_pixel.at<double>(0, target_col++) = (double)blurred_hsv_pixel[2];
// Blurred CIELab
transformed_pixel.at<double>(0, target_col++) = (double)blurred_cielab_pixel[0];
transformed_pixel.at<double>(0, target_col++) = (double)blurred_cielab_pixel[1];
transformed_pixel.at<double>(0, target_col++) = (double)blurred_cielab_pixel[2];
for (int i = 0; i < cluster_count && initial_guess.at<uchar>(row, col) != 255; ++i)
{
double mah_distance = Mahalanobis(transformed_pixel, means[i], inv_covars[i]);
if (mah_distance >= mah_lower_thresholds[i] && mah_distance <= mah_upper_thresholds[i])
{
initial_guess.at<uchar>(row, col) = 255;
}
}
});
});
if (!do_filtering) return initial_guess;
Mat filtered_image(initial_guess.size(), CV_8U);
int corner_offset = 4;
parallel_for (0, target_rows, [&](int row)
{
parallel_for (0, target_cols, [&](int col)
{
// Calculate corner coordinates to use
// Corner 1
int c1row = max(row - corner_offset, 0);
int c1col = max(col - corner_offset, 0);
// Corner 2
int c2row = max(row - corner_offset, 0);
int c2col = min(col + corner_offset, target_cols - 1);
// Corner 3
int c3row = min(row + corner_offset, target_rows - 1);
int c3col = min(col + corner_offset, target_cols - 1);
// Corner 4
int c4row = min(row + corner_offset, target_rows - 1);
int c4col = max(col - corner_offset, 0);
// If all values are the same, we leave the pixel's value.
// Otherwise we check all the pixels in the area to determine the value
if (initial_guess.at<uchar>(row, col) != initial_guess.at<uchar>(c1row, c1col) ||
initial_guess.at<uchar>(row, col) != initial_guess.at<uchar>(c2row, c2col) ||
initial_guess.at<uchar>(row, col) != initial_guess.at<uchar>(c3row, c3col) ||
initial_guess.at<uchar>(row, col) != initial_guess.at<uchar>(c4row, c4col))
{
int total_area = (c3row - c1row + 1) * (c2col - c1col + 1);
int amount_under_threshold = 0;
for (int i = c1row; i <= c3row; ++i)
{
for (int j = c1col; j <= c2col; ++j)
{
if (initial_guess.at<uchar>(i, j))
{
++amount_under_threshold;
}
}
}
float ratio = (float)amount_under_threshold / (float)total_area;
filtered_image.at<uchar>(row, col) = ratio > area_threshold ? 255 : 0;
}
else
{
filtered_image.at<uchar>(row, col) = initial_guess.at<uchar>(row, col);
}
});
});
Mat closing_kernel = Mat::ones(Size(11, 11), CV_8U);
morphologyEx(filtered_image, filtered_image, MORPH_CLOSE, closing_kernel, Point(-1, -1), 1);
// Find all the connected areas in the image
Mat labels;
Mat stats;
Mat centroids;
int number_of_labels = connectedComponentsWithStats(filtered_image, labels, stats, centroids);
// Find the two largest areas in the image
int largest_label = 0;
int largest_area = 0;
int second_largest_label = 0;
int second_largest_area = 0;
for (int label = 1; label < number_of_labels; ++label)
{
int label_area = stats.at<int>(label, CC_STAT_AREA);
if (label_area > largest_area)
{
second_largest_label = largest_label;
second_largest_area = largest_area;
largest_label = label;
largest_area = label_area;
}
else if (label_area > second_largest_area)
{
second_largest_label = label;
second_largest_area = label_area;
}
}
for (int row = 0; row < target_rows; ++row)
{
for (int col = 0; col < target_cols; ++col)
{
int label = labels.at<int>(row, col);
bool keep_pixel = label == largest_label || label == second_largest_label;
if (!keep_pixel) filtered_image.at<uchar>(row, col) = 0;
}
}
// Draw the areas as filled contours
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
findContours(filtered_image, contours, hierarchy, RETR_EXTERNAL, CHAIN_APPROX_NONE, Point(0, 0));
Mat result = Mat::zeros(initial_guess.size(), CV_8U);
for (size_t i = 0; i< contours.size(); i++)
{
Scalar color = Scalar(255);
drawContours(result, contours, (int)i, color, -1, 8, hierarchy, 0, Point());
}
blur(result, result, Size(11, 11));
threshold(result, result, 255.0 * 0.6, 255.0, THRESH_BINARY);
Mat dilation_kernel = Mat::ones(Size(9, 9), CV_8U);
morphologyEx(result, result, MORPH_DILATE, dilation_kernel, Point(-1, -1), 1);
return result;
}
private:
int target_rows = 0;
int target_cols = 0;
const double max_rgb_sum = 765.0;
const double mah_std_dev_margin = 0.6;
const float area_threshold = 0.6f;
string MakeTrainingFileName()
{
return string(RESULT_FILE_NAME_BASE) + ".txt";
}
};
|
b9e02ac256e1b6c5783330cee2a358ee64880f5f | 8c477ac85f226d98c21faeaa54c5bfde1598ac72 | /zadanie liczby2/main.cpp | 40562fabfa018a1810cb32520af61410aac42da2 | [] | no_license | kubpica/CppZadania | b70145a2049f9becaf08219dcd608ce12c8f2d1e | 80a3363532854fe4ba24125cb47418cf46d4da4d | refs/heads/master | 2020-04-12T13:37:04.211975 | 2018-12-20T05:15:29 | 2018-12-20T05:15:29 | 162,527,012 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 872 | cpp | main.cpp | #include <iostream>
#include <fstream>
#include <cmath>
using namespace std;
int zmiananadec(int liczba){
int wynik = 0;
int power = 0;
while(liczba != 0){
wynik += liczba%10 * pow(8, power);
liczba /= 10;
power++;
}
return wynik;
}
int ostatniacyfra(int liczba){
while(liczba >= 10){
liczba /= 10;
}
return liczba;
}
int pierwszacyfra(int liczba){
return liczba % 10;
}
int main()
{
ifstream liczby;
ofstream wynik;
liczby.open("liczby.txt");
wynik.open("wynik.txt");
int liczba;
int ile = 0;
while(liczby >> liczba){
int liczba_dec = zmiananadec(liczba);
if(pierwszacyfra(liczba_dec) == ostatniacyfra(liczba_dec)) ile++;
}
wynik << ile;
liczby.close();
wynik.close();
return 0;
}
|
0574781d98f1c07eba38e377711b8fb00619eb51 | 48b4b39b814c2b8c13549148de4fd98fb9c10e79 | /functions/markdownToHTML/getMarkDownPath/GetMarkDownPath.h | 8ddb2239dac881c9fbfbe23decbddcf89549338b | [
"Apache-2.0"
] | permissive | liupengzhouyi/dataPipeline | 4afdd7c00d0f3a093bd5496b7d50a73477610e2d | 1c83d139cef2c12faaf149963d374345cdc8d545 | refs/heads/master | 2023-04-16T23:30:40.618914 | 2021-04-30T07:24:12 | 2021-04-30T07:24:12 | 329,004,544 | 0 | 0 | Apache-2.0 | 2021-01-12T14:28:04 | 2021-01-12T14:01:16 | CMake | UTF-8 | C++ | false | false | 410 | h | GetMarkDownPath.h | //
// Created by 刘鹏 on 08/03/2021.
//
#ifndef DATAPIPELINE_GETMARKDOWNPATH_H
#define DATAPIPELINE_GETMARKDOWNPATH_H
#include <iostream>
#include <string>
class GetMarkDownPath {
private:
std::string markDownPath;
public:
const std::string &getMarkDownPath() const;
void setMarkDownPath(const std::string &markDownPath);
bool isNoPath();
};
#endif //DATAPIPELINE_GETMARKDOWNPATH_H
|
9210e7b1784303539c4b396763eed1c8a7405dac | 5d50719d6059359ea632a67e0bb880d78f325058 | /OP1Vezbe/Domaci6Custom/Domaci6Custom.h | 0cabb78ed145a078598bb288ea94aad954270ca6 | [] | no_license | rasko-lazic/ClionVISER | 354a9bc23e7ba4299d4df27e24548e695864a6d7 | 04751a0fcea949b32d2fcfea8848b9b219dadb65 | refs/heads/master | 2021-01-21T04:50:35.943125 | 2016-06-13T10:19:37 | 2016-06-13T10:19:37 | 53,660,639 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 243 | h | Domaci6Custom.h | //
// Created by rasko-lazic on 4/27/2016.
//
#ifndef OP1VEZBE_DOMACI6CUSTOM_H
#define OP1VEZBE_DOMACI6CUSTOM_H
#include "../Vezbe.h"
class Domaci6Custom : public Vezba {
public:
int execute(void);
};
#endif //OP1VEZBE_DOMACI6CUSTOM_H
|
69de0cdac460cb8d622860abaaaa666be6398500 | 31ec4050bfc52793af7a3e49a8b3f98811d1828a | /OOP_HomeWork-6.cpp | 233dbe3bf5439bf3923aab33d90e7709b49b4367 | [] | no_license | Hedarius/OOP_HomeWork-1 | 9030fcde4fbe8c58d9f2c652cae341ccb494454a | d8b9e597648ade207eb861eac9e9ae5c3eaad5f7 | refs/heads/main | 2023-07-17T17:04:11.827588 | 2021-08-23T13:57:40 | 2021-08-23T13:57:40 | 390,360,315 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 630 | cpp | OOP_HomeWork-6.cpp | #include <iostream>
class Car {
private:
std::string car1;
};
std::ostream& endll(std::ostream &stream) {
std::cout << std::endl << std::endl;
return stream;
}
int main() {
int num;
std::cout << "Enter number : ";
while(!(std::cin >> num) || std::cin.get() != '\n') {
std::cin.clear();
std::cin.ignore(9999, '\n');
std::cin.sync();
std::cout << "Incorrect input!"<< std::endl << "Enter number : ";
std::cin >> num;
}
std::cout << endll << "Hello my dear Friend" << endll << "How are you?";
return 0;
}
// Задания по игре сделаю в следующем дз |
a89262bf9397240c7c207370a2802e18d2f368b5 | dfeebff812ee66a1a4bfc8dae6f7eebab25c7c17 | /C++/Algorithms/Graphs/floodfill.cpp | 53c38988f69f93783bf9405a111ba220ddc72051 | [] | no_license | kushnayak/competitive-programming | ee7c709969bd69cb31837a0639af661c672c504d | 785a03323b956fdb0618e92dd54db9b141191205 | refs/heads/master | 2023-03-21T01:54:33.813007 | 2021-03-17T18:54:53 | 2021-03-17T18:54:53 | 277,401,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 802 | cpp | floodfill.cpp | #include <bits/stdc++.h>
#define forn(i,n) for(int i=0;i<n;i++)
#define nl '\n'
using namespace std;
const int maxN=255, dy[]={1,0,-1,0}, dx[]={0,1,0,-1};
int grid[maxN][maxN];
int N, M;
bool visited[maxN][maxN];
int cursize = 0;
void floodfill(int r, int c, int color){
if(r<0 || r>=N || c<0 || c >=M) return; // if outside grid
if(grid[r][c] != color) return; // wrong color
if(visited[r][c]) return; // already visited this square
visited[r][c] = true; // mark current square as visited
cursize++; // increment the size for each square we visit
// recursively call floodfill for neighboring squares
forn(i,4)
ff(r+dy[i],c+dx[i],color);
}
int main() {
forn(i,N)
forn(j,N)
if(!visited[i][j]){
cursize=0; // size of each connected component
ff(i,j,grid[i][j]);
}
}
|
242ed02648ca390ee239860e80ca8a70a2c43b55 | 935e7a128530bd1879ffc8372413eff71c8f212f | /lesson02/D_is_pow_of_two.cpp | c3ae1ec9ed217d5e6cc832cacd8b0bd6c6aba837 | [] | no_license | romanwrites/mipt_cpp | a6db2d30ac6605c68a28be0330b3380f51c9c92b | ef25e731aa61ff99593298281e3813b5120c4b04 | refs/heads/master | 2023-03-09T10:44:14.685546 | 2020-11-04T19:40:20 | 2020-11-04T19:40:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 456 | cpp | D_is_pow_of_two.cpp | #include <iostream>
bool is_pow(long long int *powers, long long int n)
{
int i = 0;
while (powers[i] != 0)
{
if (n == powers[i])
return true;
i++;
}
return false;
}
int main()
{
long long int n;
long long int powers[100] = {0};
int i = 0;
long long int pow = 2;
std::cin >> n;
while (pow <= n)
{
powers[i] = pow;
i++;
pow *= 2;
}
if (is_pow(powers, n))
std::cout << "YES";
else
{
std::cout << "NO";
}
return (0);
}
|
b3dcef4ef40036eaa414b44bbf7ce18f2ab720e3 | 921abfe8a10a4c0edc3035e8abc4a33d51625c1d | /Programmers/Level2/후보키.cpp | d91f21898f76fdb0edf5670450c98e68a9e7f05d | [] | no_license | gudwnsgur/Algorithm | 760fcff3b1e930bf1f8cf047c26253449b52cae9 | 016f6db056d821c918ea620d5517b00a387eff9a | refs/heads/master | 2023-05-01T03:28:17.003101 | 2023-04-18T14:08:05 | 2023-04-18T14:08:05 | 230,247,085 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,723 | cpp | 후보키.cpp | #include <string>
#include <vector>
#include <set>
#include <iostream>
using namespace std;
int cnt = 0;
vector<int> rel, arr;
vector<bool> visited;
vector<string> result;
vector<vector<string>> relations;
// 0 1 2 3
bool minimality(string str) {
// result(이전까지 모은 속성) 와 str 비교
for (int i = 0; i < result.size(); i++) {
// result[i] == AB str == AC ABC ADE ABCD DE
int cnt = 0;
for (int j = 0; j < result[i].size(); j++) {
for (int k = 0; k < str.size(); k++) {
if (result[i][j] == str[k]) cnt++;
}
}
if (cnt == result[i].size()) return false;
}
return true;
}
bool uniqueness() {
set<vector<string>> s;
vector<string> tmp;
for (int i = 0; i < relations.size(); i++) {
tmp.clear();
for (int j = 0; j < arr.size(); j++) {
tmp.push_back(relations[i][arr[j]]);
}
if (s.find(tmp) != s.end()) return false;
s.insert(tmp);
}
return true;
}
void dfs(int length, int n, int m) {
if (length == m) {
if (!uniqueness()) return;
string str = "";
for (int i = 0; i < arr.size(); i++) str.push_back(arr[i] + 65);
if (result.empty() || minimality(str)) {
cout << str << ' ';
cnt++;
result.push_back(str);
}
return;
}
for (int i = 0; i < n; i++) {
if (!visited[i]) {
if (length == 0 || (length != 0 && arr[length - 1] < rel[i])) {
arr[length] = rel[i];
visited[i] = true;
dfs(length + 1, n, m);
visited[i] = false;
}
}
}
}
int solution(vector<vector<string>> relation) {
relations = relation;
for (int i = 0; i < relation[0].size(); i++) rel.push_back(i);
for (int i = 1; i <= rel.size() ; i++) {
arr = vector<int>(i);
visited = vector<bool>(rel.size(), false);
dfs(0, rel.size(), i);
}
return cnt;
}
|
1d63b38b43d77062df37883e77838fe07c66214d | 46f7cb7150697037d4b5f434dde423a1eeb8e422 | /ncnn-20210525-full-source/src/pipeline.cpp | efdaec80bdeda06a00769486e75f7d41671eae61 | [
"MIT",
"BSD-3-Clause",
"Zlib",
"BSD-2-Clause"
] | permissive | MirrorYuChen/ncnn_example | d856f732e031b0e069fed7e30759e1c6c7947aaf | 82a84d79c96e908f46b7e7cac6c8365c83b0f896 | refs/heads/master | 2023-08-18T06:31:06.113775 | 2022-05-14T17:38:01 | 2022-05-14T17:38:01 | 183,336,202 | 362 | 108 | MIT | 2022-06-22T04:17:14 | 2019-04-25T01:53:37 | C++ | UTF-8 | C++ | false | false | 14,812 | cpp | pipeline.cpp | // Tencent is pleased to support the open source community by making ncnn available.
//
// Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
//
// Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
//
// https://opensource.org/licenses/BSD-3-Clause
//
// 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 "pipeline.h"
#include "layer_shader_type.h"
#include "mat.h"
#include "pipelinecache.h"
#include "option.h"
#include <math.h>
#if __ANDROID_API__ >= 26
#include <android/hardware_buffer.h>
#endif // __ANDROID_API__ >= 26
namespace ncnn {
#if NCNN_VULKAN
class PipelinePrivate
{
public:
VkShaderModule shader_module;
VkDescriptorSetLayout descriptorset_layout;
VkPipelineLayout pipeline_layout;
VkPipeline pipeline;
VkDescriptorUpdateTemplateKHR descriptor_update_template;
ShaderInfo shader_info;
uint32_t local_size_x;
uint32_t local_size_y;
uint32_t local_size_z;
};
Pipeline::Pipeline(const VulkanDevice* _vkdev)
: vkdev(_vkdev), d(new PipelinePrivate)
{
d->shader_module = 0;
d->descriptorset_layout = 0;
d->pipeline_layout = 0;
d->pipeline = 0;
d->descriptor_update_template = 0;
d->local_size_x = 1;
d->local_size_y = 1;
d->local_size_z = 1;
}
Pipeline::~Pipeline()
{
delete d;
}
Pipeline::Pipeline(const Pipeline&)
: d(0)
{
}
Pipeline& Pipeline::operator=(const Pipeline&)
{
return *this;
}
void Pipeline::set_optimal_local_size_xyz(int w, int h, int c)
{
set_optimal_local_size_xyz(Mat(w, h, c, (void*)0));
}
void Pipeline::set_optimal_local_size_xyz(const Mat& local_size_xyz)
{
int w = local_size_xyz.w;
int h = local_size_xyz.h;
int c = local_size_xyz.c;
if (w == 0 && h == 0 && c == 0)
{
// fallback to the common and safe 4x4x4
w = 4;
h = 4;
c = 4;
}
w = std::min(w, (int)vkdev->info.max_workgroup_size_x());
h = std::min(h, (int)vkdev->info.max_workgroup_size_y());
c = std::min(c, (int)vkdev->info.max_workgroup_size_z());
if (w * h * c <= (int)vkdev->info.max_workgroup_invocations())
{
return set_local_size_xyz(w, h, c);
}
int max_local_size_xy = (int)vkdev->info.max_workgroup_invocations() / c;
int wh_max = std::max(1, (int)sqrt(max_local_size_xy));
while (w * h >= wh_max)
{
w = std::max(1, w / 2);
h = std::max(1, h / 2);
}
set_local_size_xyz(w, h, c);
}
void Pipeline::set_local_size_xyz(int w, int h, int c)
{
d->local_size_x = w;
d->local_size_y = h;
d->local_size_z = c;
// NCNN_LOGE("local size = %d %d %d", local_size_x, local_size_y, local_size_z);
}
int Pipeline::create(const uint32_t* spv_data, size_t spv_data_size, const std::vector<vk_specialization_type>& specializations)
{
const PipelineCache* pipeline_cache = vkdev->get_pipeline_cache();
// get from pipeline cache
return pipeline_cache->get_pipeline(spv_data, spv_data_size, specializations, d->local_size_x, d->local_size_y, d->local_size_z,
&d->shader_module, &d->descriptorset_layout, &d->pipeline_layout, &d->pipeline, &d->descriptor_update_template,
d->shader_info);
}
int Pipeline::create(int shader_type_index, const Option& opt, const std::vector<vk_specialization_type>& specializations)
{
const PipelineCache* pipeline_cache = opt.pipeline_cache ? opt.pipeline_cache : vkdev->get_pipeline_cache();
// get from pipeline cache
return pipeline_cache->get_pipeline(shader_type_index, opt, specializations, d->local_size_x, d->local_size_y, d->local_size_z,
&d->shader_module, &d->descriptorset_layout, &d->pipeline_layout, &d->pipeline, &d->descriptor_update_template,
d->shader_info);
}
VkShaderModule Pipeline::shader_module() const
{
return d->shader_module;
}
VkDescriptorSetLayout Pipeline::descriptorset_layout() const
{
return d->descriptorset_layout;
}
VkPipelineLayout Pipeline::pipeline_layout() const
{
return d->pipeline_layout;
}
VkPipeline Pipeline::pipeline() const
{
return d->pipeline;
}
VkDescriptorUpdateTemplateKHR Pipeline::descriptor_update_template() const
{
return d->descriptor_update_template;
}
const ShaderInfo& Pipeline::shader_info() const
{
return d->shader_info;
}
uint32_t Pipeline::local_size_x() const
{
return d->local_size_x;
}
uint32_t Pipeline::local_size_y() const
{
return d->local_size_y;
}
uint32_t Pipeline::local_size_z() const
{
return d->local_size_z;
}
void Pipeline::set_shader_module(VkShaderModule shader_module)
{
d->shader_module = shader_module;
}
void Pipeline::set_descriptorset_layout(VkDescriptorSetLayout descriptorset_layout)
{
d->descriptorset_layout = descriptorset_layout;
}
void Pipeline::set_pipeline_layout(VkPipelineLayout pipeline_layout)
{
d->pipeline_layout = pipeline_layout;
}
void Pipeline::set_pipeline(VkPipeline pipeline)
{
d->pipeline = pipeline;
}
void Pipeline::set_descriptor_update_template(VkDescriptorUpdateTemplateKHR descriptor_update_template)
{
d->descriptor_update_template = descriptor_update_template;
}
void Pipeline::set_shader_info(const ShaderInfo& shader_info)
{
d->shader_info = shader_info;
}
#if NCNN_PLATFORM_API
#if __ANDROID_API__ >= 26
ImportAndroidHardwareBufferPipeline::ImportAndroidHardwareBufferPipeline(const VulkanDevice* _vkdev)
: Pipeline(_vkdev)
{
sampler = 0;
}
ImportAndroidHardwareBufferPipeline::~ImportAndroidHardwareBufferPipeline()
{
destroy();
}
int ImportAndroidHardwareBufferPipeline::create(VkAndroidHardwareBufferImageAllocator* ahb_im_allocator, int _type_to, int _rotate_from, const Option& opt)
{
int target_width;
int target_height;
if (rotate_from < 5) // 1 2 3 4
{
target_width = ahb_im_allocator->width();
target_height = ahb_im_allocator->height();
}
else // 5 6 7 8
{
target_width = ahb_im_allocator->height();
target_height = ahb_im_allocator->width();
}
return create(ahb_im_allocator, _type_to, _rotate_from, target_width, target_height, opt);
}
int ImportAndroidHardwareBufferPipeline::create(VkAndroidHardwareBufferImageAllocator* ahb_im_allocator, int _type_to, int _rotate_from, int target_width, int target_height, const Option& opt)
{
int w = ahb_im_allocator->width();
int h = ahb_im_allocator->height();
type_to = _type_to;
rotate_from = _rotate_from;
need_resize = false;
if (rotate_from < 5) // 1 2 3 4
{
if (target_width != w || target_height != h)
need_resize = true;
}
else // 5 6 7 8
{
if (target_width != h || target_height != w)
need_resize = true;
}
// if (type_to == 1 || type_to == 2)
// {
// outc = 3;
// out_elemsize = vkdev->info.support_fp16_storage() && opt.use_fp16_storage ? 2u : 4u;
// out_elempack = 1;
// }
// else if (type_to == 3)
// {
// outc = 1;
// out_elemsize = vkdev->info.support_fp16_storage() && opt.use_fp16_storage ? 2u : 4u;
// out_elempack = 1;
// }
// else // if (type_to == 4 || type_to == 5)
// {
// outc = 1;
// out_elemsize = ((vkdev->info.support_fp16_packed() && opt.use_fp16_packed) || (vkdev->info.support_fp16_storage() && opt.use_fp16_storage)) ? 8u : 16u;
// out_elempack = 4;
// }
set_local_size_xyz(8, 8, 1);
std::vector<vk_specialization_type> specializations(7);
specializations[0].i = ahb_im_allocator->width();
specializations[1].i = ahb_im_allocator->height();
specializations[2].i = target_width;
specializations[3].i = target_height;
specializations[4].i = type_to;
specializations[5].i = rotate_from;
specializations[6].i = need_resize;
create_shader_module(opt);
const ShaderInfo& _shader_info = shader_info();
if ((int)specializations.size() != _shader_info.specialization_count)
{
NCNN_LOGE("pipeline convert_ycbcr specialization count mismatch, expect %d but got %d", _shader_info.specialization_count, (int)specializations.size());
return -1;
}
create_sampler(ahb_im_allocator);
create_descriptorset_layout();
VkPipelineLayout pipeline_layout = 0;
VkPipeline pipeline = 0;
VkDescriptorUpdateTemplateKHR descriptor_update_template = 0;
vkdev->create_pipeline_layout(_shader_info.push_constant_count, descriptorset_layout(), &pipeline_layout);
vkdev->create_pipeline(shader_module(), pipeline_layout, specializations, &pipeline);
if (vkdev->info.support_VK_KHR_descriptor_update_template())
{
vkdev->create_descriptor_update_template(_shader_info.binding_count, _shader_info.binding_types, descriptorset_layout(), pipeline_layout, &descriptor_update_template);
}
set_pipeline_layout(pipeline_layout);
set_pipeline(pipeline);
set_descriptor_update_template(descriptor_update_template);
return 0;
}
void ImportAndroidHardwareBufferPipeline::destroy()
{
if (sampler)
{
vkDestroySampler(vkdev->vkdevice(), sampler, 0);
sampler = 0;
}
}
int ImportAndroidHardwareBufferPipeline::create_shader_module(const Option& opt)
{
int shader_type_index = LayerShaderType::convert_ycbcr;
std::vector<uint32_t> spirv;
int retc = compile_spirv_module(shader_type_index, opt, spirv);
if (retc != 0)
{
NCNN_LOGE("compile_spirv_module failed %d", retc);
return -1;
}
const uint32_t* spv_data = spirv.data();
size_t spv_data_size = spirv.size() * 4;
ShaderInfo shader_info;
int ret = resolve_shader_info(spv_data, spv_data_size, shader_info);
if (ret != 0)
{
NCNN_LOGE("resolve_shader_info failed %d", ret);
return -1;
}
set_shader_info(shader_info);
VkShaderModule shader_module = vkdev->compile_shader_module(spv_data, spv_data_size, local_size_x(), local_size_y(), local_size_z());
set_shader_module(shader_module);
return 0;
}
int ImportAndroidHardwareBufferPipeline::create_sampler(VkAndroidHardwareBufferImageAllocator* ahb_im_allocator)
{
VkResult ret;
VkExternalFormatANDROID externalFormatANDROID;
externalFormatANDROID.sType = VK_STRUCTURE_TYPE_EXTERNAL_FORMAT_ANDROID;
externalFormatANDROID.pNext = 0;
externalFormatANDROID.externalFormat = ahb_im_allocator->external_format();
VkSamplerYcbcrConversionInfoKHR samplerYcbcrConversionInfo;
samplerYcbcrConversionInfo.sType = VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO_KHR;
samplerYcbcrConversionInfo.pNext = &externalFormatANDROID;
samplerYcbcrConversionInfo.conversion = ahb_im_allocator->samplerYcbcrConversion;
VkSamplerCreateInfo samplerCreateInfo;
samplerCreateInfo.sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO;
samplerCreateInfo.pNext = &samplerYcbcrConversionInfo;
samplerCreateInfo.magFilter = need_resize ? VK_FILTER_LINEAR : VK_FILTER_NEAREST;
samplerCreateInfo.minFilter = need_resize ? VK_FILTER_LINEAR : VK_FILTER_NEAREST;
samplerCreateInfo.mipmapMode = VK_SAMPLER_MIPMAP_MODE_NEAREST;
samplerCreateInfo.addressModeU = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE;
samplerCreateInfo.addressModeV = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE;
samplerCreateInfo.addressModeW = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE;
samplerCreateInfo.mipLodBias = 0.0f;
samplerCreateInfo.anisotropyEnable = VK_FALSE;
samplerCreateInfo.maxAnisotropy = 1;
samplerCreateInfo.compareEnable = VK_FALSE;
samplerCreateInfo.compareOp = VK_COMPARE_OP_NEVER;
samplerCreateInfo.minLod = 0.0f;
samplerCreateInfo.maxLod = 0.0f;
samplerCreateInfo.borderColor = VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK; //VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE; FIXME
samplerCreateInfo.unnormalizedCoordinates = VK_TRUE; //VK_FALSE; FIXME ?
ret = vkCreateSampler(vkdev->vkdevice(), &samplerCreateInfo, 0, &sampler);
if (ret != VK_SUCCESS)
{
NCNN_LOGE("vkCreateSampler failed %d", ret);
return -1;
}
return 0;
}
int ImportAndroidHardwareBufferPipeline::create_descriptorset_layout()
{
VkDescriptorSetLayoutBinding descriptorSetLayoutBindings[3];
descriptorSetLayoutBindings[0].binding = 0;
descriptorSetLayoutBindings[0].descriptorType = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER;
descriptorSetLayoutBindings[0].descriptorCount = 1;
descriptorSetLayoutBindings[0].stageFlags = VK_SHADER_STAGE_COMPUTE_BIT;
descriptorSetLayoutBindings[0].pImmutableSamplers = &sampler;
descriptorSetLayoutBindings[1].binding = 1;
descriptorSetLayoutBindings[1].descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER;
descriptorSetLayoutBindings[1].descriptorCount = 1;
descriptorSetLayoutBindings[1].stageFlags = VK_SHADER_STAGE_COMPUTE_BIT;
descriptorSetLayoutBindings[1].pImmutableSamplers = 0;
descriptorSetLayoutBindings[2].binding = 2;
descriptorSetLayoutBindings[2].descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER;
descriptorSetLayoutBindings[2].descriptorCount = 1;
descriptorSetLayoutBindings[2].stageFlags = VK_SHADER_STAGE_COMPUTE_BIT;
descriptorSetLayoutBindings[2].pImmutableSamplers = 0;
VkDescriptorSetLayoutCreateInfo descriptorSetLayoutCreateInfo;
descriptorSetLayoutCreateInfo.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO;
descriptorSetLayoutCreateInfo.pNext = 0;
descriptorSetLayoutCreateInfo.flags = 0;
descriptorSetLayoutCreateInfo.bindingCount = 3;
descriptorSetLayoutCreateInfo.pBindings = descriptorSetLayoutBindings;
if (vkdev->info.support_VK_KHR_push_descriptor())
{
descriptorSetLayoutCreateInfo.flags |= VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR;
}
VkDescriptorSetLayout descriptorset_layout = 0;
VkResult ret = vkCreateDescriptorSetLayout(vkdev->vkdevice(), &descriptorSetLayoutCreateInfo, 0, &descriptorset_layout);
if (ret != VK_SUCCESS)
{
NCNN_LOGE("vkCreateDescriptorSetLayout failed %d", ret);
return -1;
}
set_descriptorset_layout(descriptorset_layout);
return 0;
}
#endif // __ANDROID_API__ >= 26
#endif // NCNN_PLATFORM_API
#endif // NCNN_VULKAN
} // namespace ncnn
|
35ce8fab8adf3e8365d120409d048283716bc8a5 | ca72ec1f7de3920ff29f294f68e0585fe4d8e121 | /Lightning/LightningViews/Lightning_View.cpp | 8df67e095767833126f348f5ffe785b3e6428ac4 | [] | no_license | mgood7123/Lightning | f36181a308630620e51aabae949ec1061aa785b9 | 4e062fcf0792d58952b1cd1f1bf760b32263d460 | refs/heads/main | 2023-08-14T23:37:02.391692 | 2021-10-22T08:40:00 | 2021-10-22T08:40:00 | 419,646,357 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,530 | cpp | Lightning_View.cpp | #include "Lightning_View.h"
float Lightning_View::MATCH_PARENT = -1.0;
float Lightning_View::WRAP_CONTENT = -2.0;
Lightning_View::Lightning_View()
{
}
Lightning_View::~Lightning_View() {
delete layoutParams;
}
void Lightning_View::resize(float w, float h)
{
}
void Lightning_View::onDraw(LightningEngine & engine)
{
}
void Lightning_View::draw(LightningEngine &engine) {
onDraw(*engine.subEngine(className(), absoluteCoordinates));
}
Lightning_View::VISIBILITY Lightning_View::getVisibility() const
{
return visibility;
}
void Lightning_View::setVisibility(VISIBILITY newVisibility)
{
visibility = newVisibility;
}
void Lightning_View::setAlwaysDraw(bool enabled) {
alwaysDraw = enabled;
}
bool Lightning_View::getAlwaysDraw() const {
return alwaysDraw;
}
void Lightning_View::invalidate() {
invalidated = true;
if (parent != nullptr) {
parent->invalidate();
}
}
void Lightning_View::setTag(const QString & name) {
tag = name;
}
QString Lightning_View::getTag() const {
return tag;
}
Lightning_View::LayoutParams *Lightning_View::getLayoutParams() const {
return layoutParams;
}
void Lightning_View::setLayoutParams(LayoutParams *params) {
// important optimization:
// if params are self, then
// do not delete layoutParams
// it will invalidate/corrupt the passed params
// since it points to layoutParams, resulting in use-after-free
//
// avoid this useless assignment:
// LayoutParams * params = layoutParams;
// layoutParams = params;
if (params != layoutParams) {
delete layoutParams;
layoutParams = params;
}
}
void Lightning_View::measure(float width, float height)
{
if (visibility == GONE) return;
calledSetMeasuredDimensions = false;
onMeasure(width, height);
if (!calledSetMeasuredDimensions) {
qFatal("invalid measurement, did you forget to call `setMeasuredDimensions(const QSizeF &);` or `setMeasuredDimensions(float, float)` ?");
}
}
void Lightning_View::setMeasuredDimensions(float width, float height)
{
setMeasuredDimensions({width, height});
}
void Lightning_View::setMeasuredDimensions(const QSizeF &size)
{
if (size.width() == MATCH_PARENT || size.height() == MATCH_PARENT) {
qFatal("cannot set measured dimensions to MATCH_PARENT");
} else if (size.width() == WRAP_CONTENT || size.height() == WRAP_CONTENT) {
qFatal("cannot set measured dimensions to WRAP_CONTENT");
}
calledSetMeasuredDimensions = true;
canDraw = !size.isEmpty();
if (measuredDimensions != size) {
measuredDimensions = size;
invalidate();
}
}
QSizeF Lightning_View::getMeasuredDimensions()
{
return measuredDimensions;
}
float Lightning_View::getMeasuredWidth()
{
return measuredDimensions.width();
}
float Lightning_View::getMeasuredHeight()
{
return measuredDimensions.height();
}
void Lightning_View::onMeasure(float width, float height)
{
LayoutParams * params = getLayoutParams();
QSizeF measuredDimensions = QSizeF{params->width, params->height};
if (params->width == MATCH_PARENT) {
measuredDimensions.setWidth(width);
} else if (params->width == WRAP_CONTENT) {
measuredDimensions.setWidth(0);
}
if (params->height == MATCH_PARENT) {
measuredDimensions.setHeight(height);
} else if (params->height == WRAP_CONTENT) {
measuredDimensions.setHeight(0);
}
setMeasuredDimensions(measuredDimensions);
}
void Lightning_View::onAddedToLayout()
{
// startAnimation();
}
void Lightning_View::onRemovedFromLayout()
{
// stopAnimation();
}
bool Lightning_View::isLayout() const {
return false;
}
void Lightning_View::buildCoordinates(const QRectF &relativeCoordinates) {
this->relativeCoordinates = relativeCoordinates;
if (parent == nullptr) {
absoluteCoordinates = this->relativeCoordinates;
} else {
float atlx = parent->absoluteCoordinates.topLeftX + this->relativeCoordinates.topLeftX;
float atly = parent->absoluteCoordinates.topLeftY + this->relativeCoordinates.topLeftY;
float abrx = parent->absoluteCoordinates.topLeftX + this->relativeCoordinates.bottomRightX;
float abry = parent->absoluteCoordinates.topLeftY + this->relativeCoordinates.bottomRightY;
absoluteCoordinates = CoordinateInfo(atlx, atly, abrx, abry);
}
}
Lightning_View::LayoutParams::LayoutParams(float width, float height) : width(width), height(height) {}
|
5a8d7be4708e16f33a43e5e030f3c637993eb9d4 | 9ea0f3015d2e7a6dc6ada68f624ccf6e0b9fdfbd | /src/Cube.cpp | fb2f73bf366b849101838d5dcd4c718ef792a251 | [] | no_license | LilliJane/Bomberman | 2fc7a1775bbc821228ce7703f1c7a51bfd201e95 | 9fa1a25c0eaa6d904f807806352e8a1256b64a34 | refs/heads/master | 2021-01-15T13:18:29.228513 | 2019-10-29T08:04:28 | 2019-10-29T08:04:28 | 37,992,934 | 1 | 1 | null | 2019-10-29T08:04:30 | 2015-06-24T15:24:14 | C | UTF-8 | C++ | false | false | 5,408 | cpp | Cube.cpp | //
// Cube.cpp for in /home/sabour_f/rendu/cpp_bomberman/src
//
// Made by Florian SABOURIN
// Login <sabour_f@epitech.net>
//
// Started on Wed May 27 10:07:34 2015 Florian SABOURIN
// Last update Wed May 27 10:07:39 2015 Florian SABOURIN
//
#include <stdexcept>
#include "Cube.hh"
#include "OpenGL.hh"
gdl::Geometry Cube::_base_geometry;
bool Cube::_is_geometry_init = false;
Cube::Cube() :
ADrawable(),
_txid(0),
_w(1.f), _h(1.f), _d(1.f),
_matrix(1.f)
{
this->checkGeometry();
this->updateMatrix();
}
Cube::Cube(float x, float y, float z) :
ADrawable(x, y, z),
_txid(0),
_w(1.f), _h(1.f), _d(1.f),
_matrix(1.f)
{
this->checkGeometry();
this->updateMatrix();
}
Cube::Cube(float x, float y, float z,
float w, float h, float d) :
ADrawable(x, y, z),
_txid(0),
_w(w), _h(h), _d(d),
_matrix(1.f)
{
this->checkGeometry();
this->updateMatrix();
}
Cube::~Cube()
{
}
/*
** Attach a texture to the cube
** Mandatory for drawing
** = true on success, false otherwise
*/
bool Cube::setTexture(const std::string &name)
{
id_t id;
id = ResourceManager::GetInstance()->LoadTexture(name);
if (!id)
return (false);
this->_txid = id;
return (true);
}
/*
** Sets the position of the cube
** Automatically updates the matrix
*/
void Cube::move(float x, float y, float z)
{
ADrawable::move(x, y, z);
this->updateMatrix();
}
void Cube::setSize(float w, float h, float d)
{
this->_w = w;
this->_h = h;
this->_d = d;
this->updateMatrix();
}
float Cube::getWidth() const
{
return (this->_w);
}
float Cube::getHeight() const
{
return (this->_h);
}
float Cube::getDepth() const
{
return (this->_d);
}
id_t Cube::getTxid() const
{
return (this->_txid);
}
void Cube::bindTx() const
{
ResourceManager::GetInstance()->GetTexture(this->_txid).bind();
}
/*
** Draws the cube
** Does nothing if no texture was set
** May throw std::out_of_range if texture was deleted in the meantime
*/
void Cube::draw(Time const &time) const
{
(void)time;
if (this->_txid)
_base_geometry.draw(ResourceManager::GetInstance()->GetShader(),
this->_matrix,
GL_QUADS);
}
/*
** Updates the matrix of the cube (sets position + scale)
*/
void Cube::updateMatrix()
{
glm::mat4 mat(1.f);
mat = glm::translate(mat, glm::vec3(-this->_x, -this->_y, -this->_z));
mat = glm::scale(mat, glm::vec3(this->_w, this->_h, this->_d));
this->_matrix = mat;
}
/*
** Checks if the gdl::Geometry associated with any cube has been built or not
** If not, it is built
** It's a (1;1;1) size cube in (0;0;0)
*/
void Cube::checkGeometry()
{
if (!_is_geometry_init)
{
_base_geometry.pushUv(glm::vec2(0.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 0.f, -1.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 0.f, -1.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 1.f, -1.f));
_base_geometry.pushVertex(glm::vec3(0.f, 1.f, -1.f));
_base_geometry.pushUv(glm::vec2(0.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 0.f, 0.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 0.f, 0.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 1.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 1.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 0.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 0.f, 0.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 0.f, -1.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 1.f, -1.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 1.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 0.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 0.f, -1.f));
_base_geometry.pushVertex(glm::vec3(0.f, 1.f, -1.f));
_base_geometry.pushVertex(glm::vec3(0.f, 1.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 1.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 1.f, -1.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 1.f, -1.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 1.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 0.f));
_base_geometry.pushUv(glm::vec2(0.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 1.f));
_base_geometry.pushUv(glm::vec2(1.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 0.f, 0.f));
_base_geometry.pushVertex(glm::vec3(0.f, 0.f, -1.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 0.f, -1.f));
_base_geometry.pushVertex(glm::vec3(-1.f, 0.f, 0.f));
if (!_base_geometry.build())
throw std::runtime_error("Cannot build cube geometry");
_is_geometry_init = true;
}
}
|
568ecc33615d6d750f5fa50d68b184bd3a48257f | 036150fcc2a013c4467738501680cfcc34fc66bb | /filters/autocontrast.h | 845fa385fc25808f38a4f46e82e768521c50eaa6 | [] | no_license | einzige/Multichannel-noise-generator | 37d66d923e34324920742ca00c05362724317619 | 4755d6840b59c82a4a3a2143ca49994fed496e83 | refs/heads/master | 2021-01-01T16:19:54.021139 | 2011-05-07T11:25:48 | 2011-05-07T11:25:48 | 1,635,692 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 324 | h | autocontrast.h | #ifndef AUTOCONTRAST_H
#define AUTOCONTRAST_H
#include "../ifilter.h"
class AutoContrast : public IFilter
{
int min;
int max;
public:
AutoContrast(int min, int max);
void setMin(int);
void setMax(int);
int getMin();
int getMax();
QImage apply(QImage) const;
};
#endif // AUTOCONTRAST_H
|
90525c4a176a1bb4720a91c87403a7b894216584 | 30715e3a1402a8b562cd45fa9359a90a559197cd | /dev/examples/src/GraphTest.h | d47994175a2fa1034abe64877c37e1f4c2844837 | [] | no_license | phenix1021/PhenixGameDevKit | e3c508177e8a6af6d6a17faedb8d7763a3475168 | c4bdd0604c01c9f583e1bc6b906d667fa792fedc | refs/heads/master | 2021-01-18T22:43:50.969129 | 2019-02-02T13:43:16 | 2019-02-02T13:43:16 | 23,654,418 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,585 | h | GraphTest.h | #include <Phenix/Graph/UndirectedGraph.h>
#include <Phenix/Graph/DirectedGraph.h>
#include <Phenix/Graph/MinPath.h>
/*
用例说明:图的有关操作
*/
using namespace Phenix::Graph;
// 无向图
void buildUndirectedGraph()
{
/*
1<=>2 好友度10
1<=>3 好友度15
2<=>4 好友度20
3<=>5 好友度30
*/
UndirectedGraph<Phenix::Int32, Phenix::Int32> ug;
ug.addEdge(1,2,10);
ug.addEdge(1,3,15);
ug.addEdge(2,4,20);
ug.addEdge(3,5,30);
Phenix::Int32 w = 0;
if (ug.getWeight(2,4,w) && w == 20)
{
std::cout<<"2-4:yes"<<w<<std::endl;
}
if (ug.getWeight(4,2,w) && w == 20)
{
std::cout<<"4-2:yes"<<w<<std::endl;
}
if (ug.getWeight(3,1,w) && w == 15)
{
std::cout<<"3-1:yes"<<w<<std::endl;
}
if (!ug.getWeight(1,5,w))
{
std::cout<<"1-5:no"<<std::endl;
}
if (!ug.getWeight(2,3,w))
{
std::cout<<"2-3:no"<<std::endl;
}
ug.removeEdge(3,1);
if (!ug.getWeight(1,3,w))
{
std::cout<<"1-3:no"<<std::endl;
}
ug.removeNode(2);
if (!ug.getWeight(1,2,w))
{
std::cout<<"1-2:no"<<std::endl;
}
if (!ug.getWeight(2,4,w))
{
std::cout<<"4-2:no"<<std::endl;
}
}
// 有向图
void buildDirectedGraph()
{
/*
1=>2 好友度10
2=>1 好友度5
1=>3 好友度15
3=>2 好友度1
2=>4 好友度20
3=>5 好友度30
*/
DirectedGraph<Phenix::Int32, Phenix::Int32> dg;
dg.addEdge(1,2,10);
dg.addEdge(2,1,5);
dg.addEdge(1,3,15);
dg.addEdge(3,2,1);
dg.addEdge(2,4,20);
dg.addEdge(3,5,30);
Phenix::Int32 w = 0;
if (dg.getWeight(2,4,w) && w == 20)
{
std::cout<<"2-4:yes"<<std::endl;
}
if (!dg.getWeight(4,2,w))
{
std::cout<<"4-2:yes"<<std::endl;
}
if (dg.getWeight(1,3,w) && w == 15)
{
std::cout<<"3-1:yes"<<std::endl;
}
if (!dg.getWeight(1,5,w))
{
std::cout<<"1-5:yes"<<std::endl;
}
if (dg.getWeight(1,2,w) && w == 10)
{
std::cout<<"1-2:yes"<<std::endl;
}
if (dg.getWeight(2,1,w) && w == 5)
{
std::cout<<"2-1:yes"<<std::endl;
}
dg.removeEdge(3,1);
if (dg.getWeight(1,3,w) && w == 15 && !dg.getWeight(3,1,w))
{
std::cout<<"remove 3-1:yes"<<std::endl;
}
dg.removeNode(2);
if (!dg.getWeight(1,2,w) && !dg.getWeight(2,1,w) && !dg.getWeight(3,2,w) && !dg.getWeight(2,4,w))
{
std::cout<<"remove 2:yes"<<std::endl;
}
}
void minPath()
{
std::map<Phenix::Int32, Path<Phenix::Int32, Phenix::Int32>> paths;
// 无向图
UndirectedGraph<Phenix::Int32, Phenix::Int32> ug;
ug.addEdge(1,2,1);
ug.addEdge(2,3,2);
ug.addEdge(1,4,10);
ug.addEdge(2,4,8);
ug.addEdge(3,4,3);
Dijkstra<Phenix::Int32, Phenix::Int32> udik(ug);
udik(1, paths);
udik(2, paths);
udik(3, paths);
udik(4, paths);
std::map<Phenix::Int32, std::map<Phenix::Int32, Path<Phenix::Int32, Phenix::Int32>>> allPaths;
Floyd<Phenix::Int32, Phenix::Int32> ufloyd(ug);
ufloyd(allPaths);
// 有向图
DirectedGraph<Phenix::Int32, Phenix::Int32> dg;
dg.addEdge(1,2,1);
dg.addEdge(2,3,2);
dg.addEdge(3,2,1);
dg.addEdge(1,4,10);
dg.addEdge(2,4,8);
dg.addEdge(3,4,3);
Dijkstra<Phenix::Int32, Phenix::Int32> ddik(dg);
ddik(1, paths);
ddik(2, paths);
ddik(3, paths);
ddik(4, paths);
Floyd<Phenix::Int32, Phenix::Int32> dfloyd(dg);
dfloyd(allPaths);
}
void isConnected()
{
// 无向图
UndirectedGraph<Phenix::Int32, Phenix::Int32> ug;
ug.addEdge(1,2,1);
ug.addEdge(2,3,2);
ug.addEdge(1,4,10);
ug.addEdge(2,4,8);
ug.addEdge(3,4,3);
if (ug.isConnected())
{
std::cout<<"yes"<<std::endl;
}
ug.addEdge(5,6,3);
if (!ug.isConnected())
{
std::cout<<"yes"<<std::endl;
}
}
void graphTest(int argc, char* argv[])
{
//buildUndirectedGraph();
//buildDirectedGraph();
//minPath();
isConnected();
}
|
47bdc153ae632eb63c909fbab48fd6bd91e7e33f | a1a6b1d4c38e6c391c69793de50ce2cc695dc090 | /inhaler_sound_mark1/qt/audio/vocabulary_kind.hpp | 0b546e5b6ea6733a72523108803d03687faee610 | [] | no_license | KieronAllsop/inhalersound | 9b9f6dd9b6b430e12c360bbfc345ac0304f1b7a3 | 50a5f8893a8a823ffd406d7d8eabb379bb93b056 | refs/heads/master | 2021-03-24T13:09:44.551692 | 2015-09-21T20:26:10 | 2015-09-21T20:26:10 | 38,211,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,849 | hpp | vocabulary_kind.hpp | // G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G
#ifndef QT_AUDIO_VOCABULARY_KIND_HPP_INCLUDED
#define QT_AUDIO_VOCABULARY_KIND_HPP_INCLUDED
// G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G
// I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I
// None
// I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I I
// n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n
namespace qt {
namespace audio {
// n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n
enum class vocabulary_kind
{
silence,
word
};
//! \class vocabulary_kind.hpp
//! \author Kieron Allsop
//!
//! \brief To define the "type" of vocabulary for use in labelling
//!
class labelled_vocabulary
{
public:
labelled_vocabulary( const std::string& Label, std::size_t Start, std::size_t End )
: Kind_( vocabulary_kind::word )
, Label_( Label )
, Start_( Start )
, End_( End )
{
}
labelled_vocabulary( std::size_t Start, std::size_t End )
: Kind_( vocabulary_kind::silence )
, Start_( Start )
{
}
// Observers here
const std::string& label_name() const
{
return Label_;
}
const std::size_t& label_start() const
{
return Start_;
}
const std::size_t& label_end() const
{
return End_;
}
private:
vocabulary_kind Kind_;
std::string Label_;
std::size_t Start_;
std::size_t End_;
};
// n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n
} // audio
} // qt
// n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n n
// G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G G
#endif // QT_AUDIO_VOCABULARY_KIND_HPP_INCLUDED
|
d5f1faab2b018e56771eb2a307aaaa995e8e31b1 | 927a85a994a8cae01ce6a79ee0782daef3c00fed | /Project-Bank/DailyAtmActionsReport.cpp | f7dd62dd292175c3ec5c7c384cad7ab2d0cff9b3 | [] | no_license | dsrikantreddy/HIT-projects | 210d3fdf580fd1ae0ef67cf016b36c1c0df2e45e | caf392602d87e4aa64af5df45546b2600c2765ee | refs/heads/master | 2021-01-18T02:20:23.477171 | 2014-05-15T18:16:50 | 2014-05-15T18:16:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 141 | cpp | DailyAtmActionsReport.cpp | #include "DailyAtmActionsReport.h"
DailyAtmActionsReport::DailyAtmActionsReport(vector<Operation> operations)
:operations(operations)
{ }; |
feb1843ad48bc660e957405aaa8e2d2ea95a27b8 | 1095cfe2e29ddf4e4c5e12d713bd12f45c9b6f7d | /src/sim/ticked_object.cc | a9ee2c84ba7193cb24d7c996f7bf784505c5ca32 | [
"BSD-3-Clause",
"LicenseRef-scancode-proprietary-license",
"LGPL-2.0-or-later",
"MIT"
] | permissive | gem5/gem5 | 9ec715ae036c2e08807b5919f114e1d38d189bce | 48a40cf2f5182a82de360b7efa497d82e06b1631 | refs/heads/stable | 2023-09-03T15:56:25.819189 | 2023-08-31T05:53:03 | 2023-08-31T05:53:03 | 27,425,638 | 1,185 | 1,177 | BSD-3-Clause | 2023-09-14T08:29:31 | 2014-12-02T09:46:00 | C++ | UTF-8 | C++ | false | false | 4,713 | cc | ticked_object.cc | /*
* Copyright (c) 2013-2014, 2017 ARM Limited
* All rights reserved
*
* The license below extends only to copyright in the software and shall
* not be construed as granting a license to any other intellectual
* property including but not limited to intellectual property relating
* to a hardware implementation of the functionality of the software
* licensed hereunder. You may use the software subject to the license
* terms below provided that you ensure that this notice is replicated
* unmodified and in its entirety in all distributions of the software,
* modified or unmodified, in source code or in binary form.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution;
* neither the name of the copyright holders nor the names of 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.
*/
#include "sim/ticked_object.hh"
#include "params/TickedObject.hh"
#include "sim/clocked_object.hh"
#include "sim/serialize.hh"
namespace gem5
{
Ticked::Ticked(ClockedObject &object_,
statistics::Scalar *imported_num_cycles,
Event::Priority priority) :
object(object_),
event([this]{ processClockEvent(); }, object_.name(), false, priority),
running(false),
lastStopped(0),
/* Allocate numCycles if an external stat wasn't passed in */
numCyclesLocal((imported_num_cycles ? NULL : new statistics::Scalar)),
numCycles((imported_num_cycles ? *imported_num_cycles :
*numCyclesLocal))
{ }
void
Ticked::processClockEvent() {
++tickCycles;
++numCycles;
countCycles(Cycles(1));
evaluate();
if (running)
object.schedule(event, object.clockEdge(Cycles(1)));
}
void
Ticked::regStats()
{
if (numCyclesLocal) {
numCycles
.name(object.name() + ".totalTickCycles")
.desc("Number of cycles that the object ticked or was stopped");
}
tickCycles
.name(object.name() + ".tickCycles")
.desc("Number of cycles that the object actually ticked");
idleCycles
.name(object.name() + ".idleCycles")
.desc("Total number of cycles that the object has spent stopped");
idleCycles = numCycles - tickCycles;
}
void
Ticked::serialize(CheckpointOut &cp) const
{
uint64_t lastStoppedUint = lastStopped;
paramOut(cp, "lastStopped", lastStoppedUint);
}
void
Ticked::unserialize(CheckpointIn &cp)
{
uint64_t lastStoppedUint = 0;
/* lastStopped is optional on checkpoint restore as this object may be
* being restored from one which has a common base (and so possibly
* many common checkpointed values) but where Ticked is used in the
* checkpointed object but not this one.
* An example would be a CPU model using Ticked restores from a
* simple CPU without without Ticked */
optParamIn(cp, "lastStopped", lastStoppedUint);
lastStopped = Cycles(lastStoppedUint);
}
TickedObject::TickedObject(const TickedObjectParams ¶ms,
Event::Priority priority) :
ClockedObject(params),
/* Make numCycles in Ticked */
Ticked(*this, NULL, priority)
{ }
void
TickedObject::regStats()
{
Ticked::regStats();
ClockedObject::regStats();
}
void
TickedObject::serialize(CheckpointOut &cp) const
{
Ticked::serialize(cp);
ClockedObject::serialize(cp);
}
void
TickedObject::unserialize(CheckpointIn &cp)
{
Ticked::unserialize(cp);
ClockedObject::unserialize(cp);
}
} // namespace gem5
|
5c492b2f53ceb9e9a99c15937e0eaab2e77ae527 | 15fd495f617071de89a066f7d13199a0eca45be5 | /old2/test.cpp | 487502c11b992de5300687a1225a3a1a74c77943 | [] | no_license | V-Italy/optical_flow | 5176f221a4822398cacc0ce98cc968970a3955e3 | 5b07f43a5e76136283ab471b85d29fc351725042 | refs/heads/master | 2021-01-16T19:33:58.171269 | 2015-05-15T17:30:36 | 2015-05-15T17:30:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 761 | cpp | test.cpp | #include <iostream>
#include <cmath>
#include <opencv2/core/core.hpp>
#include <unordered_map>
int main(){
std::unordered_map<std::string, double> parameters;
parameters.insert(std::make_pair<std::string, double>("alpha", 2.3));
parameters.insert(std::make_pair<std::string, double>("beta", 1.3));
cv::FileStorage test("test.xml", cv::FileStorage::READ);
cv::FileNode p = test["parameters"];
cv::FileNodeIterator it = p.begin(), it_end = p.end();
for ( ; it != it_end; ++it) {
std::cout << (*it).name() << " " << (double)(*it)["aa"] << std::endl;
}
/*test << "parameters" << "{";
for (auto i:parameters){
test << i.first << "{" << "asdf" << 1 << "aa" << i.second << "}";
}
test << "}";*/
test.release();
return 0;
}
|
47200bb397812062b7b9f612373fd95f896907f0 | 2bc222c4afd9db25917d5469db0ff5da0a076797 | /src/memory/sink_rubber.cxx | 10beacabb26e574a108ff974661b89742ec44908 | [] | permissive | CM4all/beng-proxy | 27fd1a1908810cb10584d8ead388fbdf21f15ba9 | 4b870c9f81d5719fd5b0007c2094c1d5dd94a9c4 | refs/heads/master | 2023-08-31T18:43:31.463121 | 2023-08-30T14:03:31 | 2023-08-30T14:03:31 | 96,917,990 | 43 | 12 | BSD-2-Clause | 2023-09-11T10:00:43 | 2017-07-11T17:13:52 | C++ | UTF-8 | C++ | false | false | 5,247 | cxx | sink_rubber.cxx | // SPDX-License-Identifier: BSD-2-Clause
// Copyright CM4all GmbH
// author: Max Kellermann <mk@cm4all.com>
#include "sink_rubber.hxx"
#include "Rubber.hxx"
#include "istream/Sink.hxx"
#include "istream/UnusedPtr.hxx"
#include "pool/pool.hxx"
#include "pool/LeakDetector.hxx"
#include "net/SocketDescriptor.hxx"
#include "util/Cancellable.hxx"
#include <assert.h>
#include <stdint.h>
#include <string.h>
#include <unistd.h>
class RubberSink final : IstreamSink, Cancellable, PoolLeakDetector {
RubberAllocation allocation;
const std::size_t max_size;
std::size_t position = 0;
RubberSinkHandler &handler;
public:
template<typename I>
RubberSink(struct pool &_pool, RubberAllocation &&_a, std::size_t _max_size,
RubberSinkHandler &_handler,
I &&_input,
CancellablePointer &cancel_ptr) noexcept
:IstreamSink(std::forward<I>(_input)),
PoolLeakDetector(_pool),
allocation(std::move(_a)),
max_size(_max_size),
handler(_handler)
{
input.SetDirect(FD_ANY);
cancel_ptr = *this;
}
void Read() noexcept {
input.Read();
}
private:
void Destroy() noexcept {
this->~RubberSink();
}
void FailTooLarge() noexcept;
void DestroyEof() noexcept;
/* virtual methods from class Cancellable */
void Cancel() noexcept override;
/* virtual methods from class IstreamHandler */
std::size_t OnData(std::span<const std::byte> src) noexcept override;
IstreamDirectResult OnDirect(FdType type, FileDescriptor fd,
off_t offset, std::size_t max_length,
bool then_eof) noexcept override;
void OnEof() noexcept override;
void OnError(std::exception_ptr ep) noexcept override;
};
static ssize_t
fd_read(FdType type, FileDescriptor fd, off_t offset,
void *p, std::size_t size) noexcept
{
return IsAnySocket(type)
? SocketDescriptor::FromFileDescriptor(fd).Read(p, size)
: (IstreamHandler::HasOffset(offset)
? fd.ReadAt(offset, p, size)
: fd.Read(p, size));
}
void
RubberSink::FailTooLarge() noexcept
{
allocation = {};
auto &_handler = handler;
Destroy();
_handler.RubberTooLarge();
}
void
RubberSink::DestroyEof() noexcept
{
if (position == 0) {
/* the stream was empty; remove the object from the rubber
allocator */
allocation = {};
} else
allocation.Shrink(position);
auto &_handler = handler;
auto _allocation = std::move(allocation);
auto _position = position;
Destroy();
_handler.RubberDone(std::move(_allocation), _position);
}
/*
* istream handler
*
*/
std::size_t
RubberSink::OnData(std::span<const std::byte> src) noexcept
{
assert(position <= max_size);
if (position + src.size() > max_size) {
/* too large, abort and invoke handler */
FailTooLarge();
return 0;
}
std::byte *p = (std::byte *)allocation.Write();
std::copy(src.begin(), src.end(), p + position);
position += src.size();
return src.size();
}
IstreamDirectResult
RubberSink::OnDirect(FdType type, FileDescriptor fd, off_t offset,
std::size_t max_length,
[[maybe_unused]] bool then_eof) noexcept
{
assert(position <= max_size);
std::size_t length = max_size - position;
if (length == 0) {
/* already full, see what the file descriptor says */
uint8_t dummy;
ssize_t nbytes = fd_read(type, fd, offset,
&dummy, sizeof(dummy));
if (nbytes > 0) {
input.ConsumeDirect(nbytes);
FailTooLarge();
return IstreamDirectResult::CLOSED;
}
if (nbytes == 0) {
DestroyEof();
return IstreamDirectResult::CLOSED;
}
return IstreamDirectResult::ERRNO;
}
if (length > max_length)
length = max_length;
uint8_t *p = (uint8_t *)allocation.Write();
p += position;
ssize_t nbytes = fd_read(type, fd, offset, p, length);
if (nbytes <= 0)
return nbytes < 0
? IstreamDirectResult::ERRNO
: IstreamDirectResult::END;
input.ConsumeDirect(nbytes);
position += (std::size_t)nbytes;
return IstreamDirectResult::OK;
}
void
RubberSink::OnEof() noexcept
{
assert(input.IsDefined());
input.Clear();
DestroyEof();
}
void
RubberSink::OnError(std::exception_ptr ep) noexcept
{
assert(input.IsDefined());
input.Clear();
auto &_handler = handler;
Destroy();
_handler.RubberError(ep);
}
/*
* async operation
*
*/
void
RubberSink::Cancel() noexcept
{
Destroy();
}
/*
* constructor
*
*/
RubberSink *
sink_rubber_new(struct pool &pool, UnusedIstreamPtr input,
Rubber &rubber, std::size_t max_size,
RubberSinkHandler &handler,
CancellablePointer &cancel_ptr) noexcept
{
const off_t available = input.GetAvailable(true);
if (available > (off_t)max_size) {
input.Clear();
handler.RubberTooLarge();
return nullptr;
}
const off_t size = input.GetAvailable(false);
assert(size == -1 || size >= available);
assert(size <= (off_t)max_size);
if (size == 0) {
input.Clear();
handler.RubberDone({}, 0);
return nullptr;
}
const std::size_t allocate = size == -1
? max_size
: (std::size_t)size;
unsigned rubber_id = rubber.Add(allocate);
if (rubber_id == 0) {
input.Clear();
handler.RubberOutOfMemory();
return nullptr;
}
return NewFromPool<RubberSink>(pool, pool,
RubberAllocation(rubber, rubber_id),
allocate,
handler,
std::move(input), cancel_ptr);
}
void
sink_rubber_read(RubberSink &sink) noexcept
{
sink.Read();
}
|
80268ccb5432df344611d0ff436a0170dc331286 | 072f95c801d870308d5f6eb300626320bc7cded8 | /ncltech/Spring.h | de7ab706d3d1b1365e65c2673e3d77e09aedadfd | [] | no_license | pieran/Cloth_Simulation | fbb1b2a2632d5a284e6fd61024425078420bb7ec | b76da76ecdc54287d6d305a0c49568cd67093b4c | refs/heads/master | 2023-01-30T23:55:56.320326 | 2017-04-03T23:56:02 | 2017-04-03T23:56:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,382 | h | Spring.h |
#pragma once
#include "NCLDebug.h"
#include "PhysicsEngine.h"
class Spring
{
public:
Spring(PhysicsObject* objA, PhysicsObject* objB,
const Vector3& globalOnA, const Vector3& globalOnB)
{
this->objA = objA;
this->objB = objB;
Vector3 ab = globalOnB - globalOnA;
this->distance = ab.Length();
k_stiffness = 0.001f;
k_damping = 0.01f;
Vector3 r1 = (globalOnA - objA->GetPosition());
Vector3 r2 = (globalOnB - objB->GetPosition());
this->localOnA = Matrix3::Transpose(objA->GetOrientation().ToMatrix3()) * r1;
this->localOnB = Matrix3::Transpose(objB->GetOrientation().ToMatrix3()) * r2;
}
void ApplyForce()
{
Vector3 globalOnA = objA->GetWorldSpaceTransform() * localOnA;
Vector3 globalOnB = objB->GetWorldSpaceTransform() * localOnB;
Vector3 ab = globalOnB - globalOnA;
Vector3 abn = ab;
abn.Normalise();
Vector3 r1 = objA->GetOrientation().ToMatrix3() * localOnA;
Vector3 r2 = objB->GetOrientation().ToMatrix3() * localOnB;
Vector3 globalOnA = r1 + objA->GetPosition();
Vector3 globalOnB = r2 + objB->GetPosition();
Vector3 ab = globalOnB - globalOnA;
Vector3 abn = ab;
abn.Normalise();
this->j1 = -abn;
this->j2 = Vector3::Cross(-r1, abn);
this->j3 = abn;
this->j4 = Vector3::Cross(r2, abn);
//Baumgarte Offset (Adds energy to the system to counter slight solving errors that accumulate over time - known as 'constraint drift')
{
float distance_offset = distance - ab.Length();
float baumgarte_scalar = 0.1f;
b = -(baumgarte_scalar / PhysicsEngine::Instance()->GetDeltaTime()) * distance_offset;
}
delta = 0.0f;
//J * M(-1) * J(t)
float contstraint_mass = objA->GetInverseMass() * Vector3::Dot(j1, j1)
+ Vector3::Dot(j2, (objA->GetInverseInertia() * j2))
+ objB->GetInverseMass() * Vector3::Dot(j3, j3)
+ Vector3::Dot(j4, (objB->GetInverseInertia() * j4))
+ softness;
if (contstraint_mass > 0.00001f)
{
//JV
float jv = Vector3::Dot(j1, objA->GetLinearVelocity())
+ Vector3::Dot(j2, objA->GetAngularVelocity())
+ Vector3::Dot(j3, objB->GetLinearVelocity())
+ Vector3::Dot(j4, objB->GetAngularVelocity());
float denom = -(jv + b);
delta = denom / contstraint_mass;
}
float oldImpulseSum = impulseSum;
impulseSum = min(max(impulseSum + delta, impulseSumMin), impulseSumMax);
float realDelta = impulseSum - oldImpulseSum;
objA->SetLinearVelocity(objA->GetLinearVelocity() + (j1 * realDelta) * objA->GetInverseMass());
objA->SetAngularVelocity(objA->GetAngularVelocity() + objA->GetInverseInertia() * (j2 * realDelta));
objB->SetLinearVelocity(objB->GetLinearVelocity() + (j3 * realDelta) * objB->GetInverseMass());
objB->SetAngularVelocity(objB->GetAngularVelocity() + objB->GetInverseInertia() * (j4 * realDelta));
}
virtual void DebugDraw() const
{
Vector3 globalOnA = objA->GetOrientation().ToMatrix3() * localOnA + objA->GetPosition();
Vector3 globalOnB = objB->GetOrientation().ToMatrix3() * localOnB + objB->GetPosition();
NCLDebug::DrawThickLine(globalOnA, globalOnB, 0.02f, Vector4(0.0f, 0.0f, 0.0f, 1.0f));
NCLDebug::DrawPoint(globalOnA, 0.05f, Vector4(1.0f, 0.8f, 1.0f, 1.0f));
NCLDebug::DrawPoint(globalOnB, 0.05f, Vector4(1.0f, 0.8f, 1.0f, 1.0f));
}
protected:
PhysicsObject* objA;
PhysicsObject* objB;
float distance;
float k_stiffness;
float k_damping;
Vector3 localOnA, localOnB;
}; |
a20329250d3673bcb24fa3a431991f7bf659aa09 | e9cd533c0c0c0ecad9de76cdb7fe64d88544af54 | /src/Render/Utils/Color.cc | 7c6b381a387f81b64c88d61900bf8826f52820cc | [] | no_license | nanaki1984/Framework | a9293bc744a5c77880509b5ec16310fcbed20bc0 | bac6fc409dcd5dc3df928e2af097d123ab23aa56 | refs/heads/master | 2021-07-04T16:21:50.768846 | 2017-09-26T15:59:42 | 2017-09-26T15:59:42 | 103,669,033 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,195 | cc | Color.cc | #include "Render/Utils/Color.h"
#include "Core/Debug.h"
#include "Math/Math.h"
namespace Framework {
const Color Color::Black = Color(0.0f, 0.0f, 0.0f);
const Color Color::White = Color(1.0f, 1.0f, 1.0f);
const Color Color::Red = Color(1.0f, 0.0f, 0.0f);
const Color Color::Green = Color(0.0f, 1.0f, 0.0f);
const Color Color::Blue = Color(0.0f, 0.0f, 1.0f);
const Color Color::Yellow = Color(1.0f, 1.0f, 0.0f);
const Color Color::Magenta = Color(1.0f, 0.0f, 1.0f);
const Color Color::Cyan = Color(0.0f, 1.0f, 1.0f);
Color::Color()
{ }
Color::Color(float _r, float _g, float _b)
: r(_r),
g(_g),
b(_b),
a(1.0f)
{ }
Color::Color(float _r, float _g, float _b, float _a)
: r(_r),
g(_g),
b(_b),
a(_a)
{ }
Color::Color(const float *_rgba)
{
r = *(_rgba++);
g = *(_rgba++);
b = *(_rgba++);
a = *(_rgba);
}
Color::Color(uint32_t _argb)
{
r = ((_argb & 0x00ff0000) >> 16) / 255.0f;
g = ((_argb & 0x0000ff00) >> 8) / 255.0f;
b = ((_argb & 0x000000ff) >> 0) / 255.0f;
a = ((_argb & 0xff000000) >> 24) / 255.0f;
}
Color::operator uint32_t()
{
return ((uint32_t)ceilf(a * 255.0f) << 24) |
((uint32_t)ceilf(r * 255.0f) << 16) |
((uint32_t)ceilf(g * 255.0f) << 8) |
((uint32_t)ceilf(b * 255.0f) << 0);
}
float&
Color::operator [](unsigned int i)
{
assert(i < 4);
return rgba[i];
}
const float&
Color::operator [](unsigned int i) const
{
assert(i < 4);
return rgba[i];
}
Color
Color::operator -() const
{
return Color(-r, -g, -b, -a);
}
Color
Color::operator *(float s) const
{
return Color(r * s, g * s, b * s, a * s);
}
Color&
Color::operator *=(float s)
{
r *= s;
g *= s;
b *= s;
a *= s;
return (*this);
}
Color
Color::operator /(float s) const
{
return this->operator*(1.0f / s);
}
Color&
Color::operator /=(float s)
{
return this->operator*=(1.0f / s);
}
Color
Color::operator +(const Color &c) const
{
return Color(r + c.r, g + c.g, b + c.b, a + c.a);
}
Color&
Color::operator +=(const Color &c)
{
r += c.r;
g += c.g;
b += c.b;
a += c.a;
return (*this);
}
Color
Color::operator -(const Color &c) const
{
return Color(r - c.r, g - c.g, b - c.b, a - c.a);
}
Color&
Color::operator -=(const Color &c)
{
r -= c.r;
g -= c.g;
b -= c.b;
a -= c.a;
return (*this);
}
bool
Color::operator ==(const Color &c) const
{
return fabs(r - c.r) <= Math::Epsilon &&
fabs(g - c.g) <= Math::Epsilon &&
fabs(b - c.b) <= Math::Epsilon &&
fabs(a - c.a) <= Math::Epsilon;
}
bool
Color::operator !=(const Color &c) const
{
return fabs(r - c.r) > Math::Epsilon ||
fabs(g - c.g) > Math::Epsilon ||
fabs(b - c.b) > Math::Epsilon ||
fabs(a - c.a) > Math::Epsilon;
}
void
Color::PremultiplyAlpha()
{
r *= a;
g *= a;
b *= a;
a = 0.0f;
}
void
Color::Saturate()
{
r = Math::Clamp01(r);
g = Math::Clamp01(g);
b = Math::Clamp01(b);
a = Math::Clamp01(a);
}
Color
Color::GetSaturated() const
{
return Color(Math::Clamp01(r), Math::Clamp01(g), Math::Clamp01(b), Math::Clamp01(a));
}
} // namespace Framework
|
a764e24965635606f34bdce94d1f3f6b7a54570e | 202b96b76fc7e3270b7a4eec77d6e1fd7d080b12 | /modules/bookmarks/bookmark_ini_storage.cpp | 6446776ab3187e38d295926b930da04daf0902d7 | [] | no_license | prestocore/browser | 4a28dc7521137475a1be72a6fbb19bbe15ca9763 | 8c5977d18f4ed8aea10547829127d52bc612a725 | refs/heads/master | 2016-08-09T12:55:21.058966 | 1995-06-22T00:00:00 | 1995-06-22T00:00:00 | 51,481,663 | 98 | 66 | null | null | null | null | UTF-8 | C++ | false | false | 25,446 | cpp | bookmark_ini_storage.cpp | /* -*- Mode: c++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4; c-file-style:"stroustrup" -*-
**
** Copyright (C) 2000-2008 Opera Software ASA. All rights reserved.
**
** This file is part of the Opera web browser. It may not be distributed
** under any circumstances.
*/
#include "core/pch.h"
#ifdef CORE_BOOKMARKS_SUPPORT
#include "modules/util/opfile/opsafefile.h"
#include "modules/prefsfile/prefsfile.h"
#include "modules/prefs/prefsmanager/collections/pc_core.h"
#include "modules/prefsfile/prefsentry.h"
#include "modules/prefsfile/prefssection.h"
#include "modules/util/opstring.h"
#include "modules/formats/uri_escape.h"
#include "modules/bookmarks/bookmark_ini_storage.h"
#include "modules/bookmarks/bookmark_manager.h"
BookmarkIniStorage::BookmarkIniStorage(BookmarkManager *manager) :
::BookmarkStorageProvider(manager),
m_filename(NULL),
m_folder(OPFILE_FOLDER_COUNT),
m_bookmark_file(NULL),
m_bookmark_prefs(NULL),
m_current_section(0),
m_index(0),
m_listener(NULL)
{
}
BookmarkIniStorage::~BookmarkIniStorage()
{
Close();
op_free(m_filename);
m_filename = NULL;
BookmarkListElm *elm = static_cast<BookmarkListElm*>(m_pool.First());
while (elm)
{
BookmarkItem *bookmark = elm->GetBookmark();
OP_DELETE(bookmark);
elm = static_cast<BookmarkListElm*>(elm->Suc());
}
m_pool.Clear();
}
OP_STATUS BookmarkIniStorage::UseFormat(BookmarkFormatType format)
{
if (!(format == BOOKMARK_VERBOSE || format == BOOKMARK_BINARY || format == BOOKMARK_BINARY_COMPRESSED))
return OpStatus::ERR;
m_format = format;
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::OpenLoad(const uni_char *filename, OpFileFolder folder)
{
OP_MEMORY_VAR OP_STATUS ret = OpStatus::OK;
BOOL flag;
m_sections.Resize(0);
m_current_section = 0;
if (m_filename && filename)
{
if (uni_strcmp(m_filename, filename) != 0)
{
op_free(m_filename);
m_filename = uni_strdup(filename);
if (!m_filename)
return OpStatus::ERR_NO_MEMORY;
m_folder = folder;
}
if (m_folder != folder)
m_folder = folder;
}
else if (filename)
{
m_filename = uni_strdup(filename);
if (!m_filename)
return OpStatus::ERR_NO_MEMORY;
m_folder = folder;
}
else if (!m_filename)
return OpStatus::ERR_NULL_POINTER;
Close();
m_bookmark_file = OP_NEW(OpFile, ());
if (!m_bookmark_file)
return OpStatus::ERR_NO_MEMORY;
ret = m_bookmark_file->Construct(filename, folder);
if (ret != OpStatus::OK)
{
OP_DELETE(m_bookmark_file);
m_bookmark_file = NULL;
return ret;
}
m_bookmark_prefs = OP_NEW(PrefsFile, (PREFS_STD));
if (!m_bookmark_prefs)
{
OP_DELETE(m_bookmark_file);
m_bookmark_file = NULL;
return OpStatus::ERR_NO_MEMORY;
}
TRAP(ret, m_bookmark_prefs->ConstructL());
if (ret != OpStatus::OK)
{
OP_DELETE(m_bookmark_file);
OP_DELETE(m_bookmark_prefs);
m_bookmark_file = NULL;
m_bookmark_prefs = NULL;
return ret;
}
m_bookmark_file->Exists(flag);
if (!flag)
{
OP_DELETE(m_bookmark_file);
OP_DELETE(m_bookmark_prefs);
m_bookmark_file = NULL;
m_bookmark_prefs = NULL;
return OpStatus::ERR_FILE_NOT_FOUND;
}
TRAP(ret, m_bookmark_prefs->SetFileL(m_bookmark_file));
if (ret != OpStatus::OK)
{
OP_DELETE(m_bookmark_file);
OP_DELETE(m_bookmark_prefs);
m_bookmark_file = NULL;
m_bookmark_prefs = NULL;
return ret;
}
TRAP(ret, m_bookmark_prefs->LoadAllL());
if (ret != OpStatus::OK)
{
OP_DELETE(m_bookmark_file);
OP_DELETE(m_bookmark_prefs);
m_bookmark_file = NULL;
m_bookmark_prefs = NULL;
return ret;
}
TRAP(ret, m_bookmark_prefs->ReadAllSectionsL(m_sections));
if (ret != OpStatus::OK)
{
OP_DELETE(m_bookmark_file);
OP_DELETE(m_bookmark_prefs);
m_bookmark_file = NULL;
m_bookmark_prefs = NULL;
m_sections.Resize(0);
return ret;
}
m_pool.Clear();
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::CheckIfExists(const uni_char *filename, OpFileFolder folder)
{
OpFile bookmark_file;
BOOL flag;
RETURN_IF_ERROR(bookmark_file.Construct(filename, folder));
RETURN_IF_ERROR(bookmark_file.Exists(flag));
if (!flag)
{
RETURN_IF_ERROR(bookmark_file.Open(OPFILE_WRITE));
bookmark_file.Close();
}
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::OpenSave(const uni_char *filename, OpFileFolder folder)
{
OP_STATUS ret;
OP_MEMORY_VAR UINT32 i=0;
UINT32 number_of_sections;
uni_char section_name[24]; // ARRAY OK 2007-08-14 adame
if (m_filename && filename)
{
if (uni_strcmp(m_filename, filename) != 0)
{
op_free(m_filename);
m_filename = uni_strdup(filename);
if (!m_filename)
return OpStatus::ERR_NO_MEMORY;
m_folder = folder;
}
if (m_folder != folder)
m_folder = folder;
}
else if (filename)
{
m_filename = uni_strdup(filename);
if (!m_filename)
return OpStatus::ERR_NO_MEMORY;
m_folder = folder;
}
else if (!m_filename)
return OpStatus::ERR_NULL_POINTER;
Close();
RETURN_IF_ERROR(CheckIfExists(filename, folder));
RETURN_IF_ERROR(OpenLoad(filename, folder));
// Delete old bookmarks
number_of_sections = m_sections.Count();
for (i=0; i<number_of_sections; i++)
{
uni_snprintf(section_name, 24, UNI_L("Bookmark %d"), i);
TRAP(ret, m_bookmark_prefs->DeleteSectionL(section_name));
if (!OpStatus::IsSuccess(ret))
{
OP_DELETE(m_bookmark_file);
OP_DELETE(m_bookmark_prefs);
m_bookmark_file = NULL;
m_bookmark_prefs = NULL;
return ret;
}
}
m_current_section = 0;
m_sections.Resize(0);
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::Close()
{
OP_STATUS ret = OpStatus::OK;
if (m_bookmark_prefs)
{
TRAP(ret, m_bookmark_prefs->CommitL());
if (OpStatus::IsError(ret))
return ret;
OP_DELETE(m_bookmark_prefs);
m_bookmark_prefs = NULL;
m_sections.Resize(0);
m_index = 0;
}
if (m_bookmark_file)
{
ret = m_bookmark_file->Close();
OP_DELETE(m_bookmark_file);
m_bookmark_file = NULL;
}
return ret;
}
OP_STATUS BookmarkIniStorage::SaveAttribute(BookmarkAttributeType attribute, const uni_char *section_name, const uni_char *entry_name, BookmarkItem *bookmark)
{
BookmarkAttribute attr;
OpString tmp;
OP_STATUS ret = OpStatus::OK;
RETURN_IF_ERROR(bookmark->GetAttribute(attribute, &attr));
RETURN_IF_ERROR(attr.GetTextValue(tmp));
if (tmp.HasContent())
{
int len = UriEscape::GetEscapedLength(tmp.CStr(), UriEscape::Ctrl | UriEscape::Equals | UriEscape::Percent);
uni_char *escaped = OP_NEWA(uni_char, len+1);
if (!escaped)
return OpStatus::ERR_NO_MEMORY;
UriEscape::Escape(escaped, tmp.CStr(), UriEscape::Ctrl | UriEscape::Equals | UriEscape::Percent);
TRAP(ret, m_bookmark_prefs->WriteStringL(section_name, entry_name, escaped));
OP_DELETEA(escaped);
}
return ret;
}
OP_STATUS BookmarkIniStorage::SaveIntAttribute(BookmarkAttributeType attribute, const uni_char *section_name, const uni_char *entry_name, BookmarkItem *bookmark)
{
BookmarkAttribute attr;
OpString tmp;
OP_STATUS ret = OpStatus::OK;
RETURN_IF_ERROR(bookmark->GetAttribute(attribute, &attr));
int int_val = attr.GetIntValue();
RETURN_IF_ERROR(tmp.AppendFormat(UNI_L("%d"), int_val));
TRAP(ret, m_bookmark_prefs->WriteStringL(section_name, entry_name, tmp.CStr()));
return ret;
}
OP_STATUS BookmarkIniStorage::SaveBookmark(BookmarkItem *bookmark)
{
OpString tmp;
OP_STATUS ret;
uni_char section_name[24]; // ARRAY OK 2007-06-26 adame
if (!m_bookmark_prefs)
{
if (m_filename)
RETURN_IF_ERROR(OpenSave(m_filename, m_folder));
else
return OpStatus::ERR;
}
if (!bookmark)
return OpStatus::OK;
uni_snprintf(section_name, 24, UNI_L("Bookmark %d"), m_current_section);
m_current_section++;
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_URL, section_name, UNI_L("URL"), bookmark));
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_TITLE, section_name, UNI_L("Title"), bookmark));
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_DESCRIPTION, section_name, UNI_L("Description"), bookmark));
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_SHORTNAME, section_name, UNI_L("Shortname"), bookmark));
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_FAVICON_FILE, section_name, UNI_L("Favicon file"), bookmark));
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_THUMBNAIL_FILE, section_name, UNI_L("Thumbnail file"), bookmark));
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_CREATED, section_name, UNI_L("Created"), bookmark));
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_VISITED, section_name, UNI_L("Visited"), bookmark));
RETURN_IF_ERROR(SaveAttribute(BOOKMARK_TARGET, section_name, UNI_L("Target"), bookmark));
// int
BookmarkAttribute* attr;
#ifdef BOOKMARKS_PERSONAL_BAR
attr = bookmark->GetAttribute(BOOKMARK_PERSONALBAR_POS);
if (attr && attr->GetIntValue() != -1)
RETURN_IF_ERROR(SaveIntAttribute(BOOKMARK_PERSONALBAR_POS, section_name, UNI_L("Personalbar pos"), bookmark));
attr = bookmark->GetAttribute(BOOKMARK_PANEL_POS);
if (attr && attr->GetIntValue() != -1)
RETURN_IF_ERROR(SaveIntAttribute(BOOKMARK_PANEL_POS, section_name, UNI_L("Panel pos"), bookmark));
#endif
attr = bookmark->GetAttribute(BOOKMARK_ACTIVE);
if (attr && attr->GetIntValue() != FALSE)
RETURN_IF_ERROR(SaveIntAttribute(BOOKMARK_ACTIVE, section_name, UNI_L("Active"), bookmark));
attr = bookmark->GetAttribute(BOOKMARK_EXPANDED);
if (attr && attr->GetIntValue() != FALSE)
RETURN_IF_ERROR(SaveIntAttribute(BOOKMARK_EXPANDED, section_name, UNI_L("Expanded"), bookmark));
attr = bookmark->GetAttribute(BOOKMARK_SMALLSCREEN);
if (attr && attr->GetIntValue() != FALSE)
RETURN_IF_ERROR(SaveIntAttribute(BOOKMARK_SMALLSCREEN, section_name, UNI_L("Small screen"), bookmark));
#ifdef CORE_SPEED_DIAL_SUPPORT
if (bookmark->GetParentFolder()->GetFolderType() == FOLDER_SPEED_DIAL_FOLDER)
{
RETURN_IF_ERROR(SaveIntAttribute(BOOKMARK_SD_RELOAD_ENABLED, section_name, UNI_L("Reload enabled"), bookmark));
RETURN_IF_ERROR(SaveIntAttribute(BOOKMARK_SD_RELOAD_INTERVAL, section_name, UNI_L("Reload interval"), bookmark));
RETURN_IF_ERROR(SaveIntAttribute(BOOKMARK_SD_RELOAD_EXPIRED, section_name, UNI_L("Reload only if expired"), bookmark));
}
#endif // CORE_SPEED_DIAL_SUPPORT
if (bookmark->GetFolderType() != FOLDER_NO_FOLDER)
RETURN_IF_ERROR(SaveTargetFolderValues(section_name, bookmark));
RETURN_IF_ERROR(tmp.Set(bookmark->GetUniqueId()));
TRAP(ret, m_bookmark_prefs->WriteStringL(section_name, UNI_L("UUID"), tmp));
if (OpStatus::IsError(ret))
return ret;
switch (bookmark->GetFolderType())
{
case FOLDER_NORMAL_FOLDER:
TRAP(ret, m_bookmark_prefs->WriteStringL(section_name, UNI_L("Folder type"), UNI_L("Normal")));
if (OpStatus::IsError(ret))
return ret;
break;
case FOLDER_TRASH_FOLDER:
TRAP(ret, m_bookmark_prefs->WriteStringL(section_name, UNI_L("Folder type"), UNI_L("Trash")));
if (OpStatus::IsError(ret))
return ret;
break;
#ifdef CORE_SPEED_DIAL_SUPPORT
case FOLDER_SPEED_DIAL_FOLDER:
TRAP(ret, m_bookmark_prefs->WriteStringL(section_name, UNI_L("Folder type"), UNI_L("SpeedDial")));
if (OpStatus::IsError(ret))
return ret;
break;
#endif // CORE_SPEED_DIAL_SUPPORT
case FOLDER_SEPARATOR_FOLDER:
TRAP(ret, m_bookmark_prefs->WriteStringL(section_name, UNI_L("Folder type"), UNI_L("Separator")));
if (OpStatus::IsError(ret))
return ret;
break;
}
if (bookmark->GetParentFolder() && bookmark->GetParentFolder() != m_manager->GetRootFolder())
{
RETURN_IF_ERROR(tmp.Set(bookmark->GetParentFolder()->GetUniqueId()));
TRAP(ret, m_bookmark_prefs->WriteStringL(section_name, UNI_L("Parent folder"), tmp));
if (OpStatus::IsError(ret))
return ret;
}
if (m_listener)
m_listener->BookmarkIsSaved(bookmark, OpStatus::OK);
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::ClearStorage()
{
if (!m_bookmark_prefs)
if (m_filename)
RETURN_IF_ERROR(OpenSave(m_filename, m_folder));
if (m_listener)
m_listener->BookmarkIsSaved(NULL, OpStatus::OK);
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::LoadAttribute(BookmarkAttributeType attribute, const PrefsSection *section, const uni_char *entry, BookmarkItem *bookmark)
{
BookmarkAttribute attr;
const uni_char *value = NULL;
value = section->Get(entry);
if (value)
{
int len = uni_strlen(value);
uni_char *unescaped = OP_NEWA(uni_char, len+1);
if (!unescaped)
return OpStatus::ERR_NO_MEMORY;
UriUnescape::Unescape(unescaped, value, UriUnescape::All);
OP_STATUS res = attr.SetTextValue(unescaped);
OP_DELETEA(unescaped);
RETURN_IF_ERROR(res);
RETURN_IF_ERROR(bookmark->SetAttribute(attribute, &attr));
}
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::LoadIntAttribute(BookmarkAttributeType attribute, const PrefsSection *section, const uni_char *entry, BookmarkItem *bookmark)
{
BookmarkAttribute attr;
const uni_char *value = NULL;
value = section->Get(entry);
if (value)
{
int int_val = uni_atoi(value);
attr.SetIntValue(int_val);
RETURN_IF_ERROR(bookmark->SetAttribute(attribute, &attr));
}
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::LoadBookmark(BookmarkItem *bookmark)
{
PrefsSection * OP_MEMORY_VAR section=NULL;
OpStringC section_name;
OpStringC parent_folder_id, folder_type, uuid;
BookmarkAttribute attr;
OP_STATUS ret;
if (!m_bookmark_prefs)
{
if (m_filename)
RETURN_IF_ERROR(OpenLoad(m_filename, m_folder));
else
return OpStatus::ERR;
}
if (m_current_section >= m_sections.Count())
return OpStatus::ERR;
section_name = m_sections.Item(m_current_section);
m_current_section++;
TRAP_AND_RETURN(ret, (section = m_bookmark_prefs->ReadSectionL(section_name.CStr())));
OpAutoPtr<PrefsSection> ap_sec(section);
if (section)
{
ret = LoadAttribute(BOOKMARK_URL, section, UNI_L("URL"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadAttribute(BOOKMARK_TITLE, section, UNI_L("Title"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadAttribute(BOOKMARK_DESCRIPTION, section, UNI_L("Description"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadAttribute(BOOKMARK_SHORTNAME, section, UNI_L("Shortname"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadAttribute(BOOKMARK_FAVICON_FILE, section, UNI_L("Favicon file"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadAttribute(BOOKMARK_THUMBNAIL_FILE, section, UNI_L("Thumbnail file"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadAttribute(BOOKMARK_CREATED, section, UNI_L("Created"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadAttribute(BOOKMARK_VISITED, section, UNI_L("Visited"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadAttribute(BOOKMARK_TARGET, section, UNI_L("Target"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
#ifdef BOOKMARKS_PERSONAL_BAR
ret = LoadIntAttribute(BOOKMARK_PERSONALBAR_POS, section, UNI_L("Personalbar pos"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadIntAttribute(BOOKMARK_PANEL_POS, section, UNI_L("Panel pos"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
#endif
ret = LoadIntAttribute(BOOKMARK_ACTIVE, section, UNI_L("Active"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadIntAttribute(BOOKMARK_EXPANDED, section, UNI_L("Expanded"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadIntAttribute(BOOKMARK_SMALLSCREEN, section, UNI_L("Small screen"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
#ifdef CORE_SPEED_DIAL_SUPPORT
ret = LoadIntAttribute(BOOKMARK_SD_RELOAD_ENABLED, section, UNI_L("Reload enabled"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadIntAttribute(BOOKMARK_SD_RELOAD_INTERVAL, section, UNI_L("Reload interval"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
ret = LoadIntAttribute(BOOKMARK_SD_RELOAD_EXPIRED, section, UNI_L("Reload only if expired"), bookmark);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
RETURN_IF_ERROR(ret);
#endif // CORE_SPEED_DIAL_SUPPORT
TRAP_AND_RETURN(ret, (uuid = m_bookmark_prefs->ReadStringL(section_name, UNI_L("UUID"), UNI_L(""))));
if (uuid.CStr())
{
BOOL old_format = TRUE;
const uni_char *tmp = uuid.CStr();
// Check if uid is in format with dashes
unsigned i;
if (uni_strlen(tmp) != 36)
old_format = FALSE;
for (i=0; i<36 && old_format; i++)
{
if (i == 8 || i == 13 || i == 18 || i == 23)
{
if (tmp[i] != '-')
old_format = FALSE;
}
else if (!uni_isxdigit(tmp[i]) || !uni_isdigit(tmp[i]) && !uni_islower(tmp[i]))
old_format = FALSE;
}
uni_char *uid = OP_NEWA(uni_char, uuid.Length() + 1);
if (!uid)
return OpStatus::ERR_NO_MEMORY;
uni_strcpy(uid, uuid.CStr());
if (old_format)
{
// Remove all dashes and make all letters uppercase.
int offset=0, i;
for (i=0; i<36; i++)
{
uid[i-offset] = Unicode::ToUpper(uid[i]);
if (uid[i] == '-')
offset++;
}
uid[32] = 0;
}
bookmark->SetUniqueId(uid);
}
else
{
m_index++;
return OpStatus::ERR_OUT_OF_RANGE;
}
TRAP_AND_RETURN(ret, (folder_type = m_bookmark_prefs->ReadStringL(section_name, UNI_L("Folder type"), UNI_L(""))));
if (folder_type.HasContent())
{
if (uni_stricmp(folder_type.CStr(), "normal") == 0)
bookmark->SetFolderType(FOLDER_NORMAL_FOLDER);
else if (uni_stricmp(folder_type.CStr(), "trash") == 0)
bookmark->SetFolderType(FOLDER_TRASH_FOLDER);
#ifdef CORE_SPEED_DIAL_SUPPORT
else if (uni_stricmp(folder_type.CStr(), "speeddial") == 0)
bookmark->SetFolderType(FOLDER_SPEED_DIAL_FOLDER);
#endif // CORE_SPEED_DIAL_SUPPORT
else if (uni_stricmp(folder_type.CStr(), "separator") == 0)
bookmark->SetFolderType(FOLDER_SEPARATOR_FOLDER);
else
bookmark->SetFolderType(FOLDER_NORMAL_FOLDER);
LoadTargetFolderValues(section, bookmark);
}
else if (folder_type.CStr())
bookmark->SetFolderType(FOLDER_NO_FOLDER);
else
{
m_index++;
return OpStatus::ERR_OUT_OF_RANGE;
}
TRAP_AND_RETURN(ret, (parent_folder_id = m_bookmark_prefs->ReadStringL(section_name, UNI_L("Parent folder"), UNI_L(""))));
if (parent_folder_id.HasContent())
{
BOOL old_format = TRUE;
const uni_char *tmp = parent_folder_id.CStr();
// Check if uid is in format with dashes
unsigned i;
if (uni_strlen(tmp) != 36)
old_format = FALSE;
for (i=0; i<36 && old_format; i++)
{
if (i == 8 || i == 13 || i == 18 || i == 23)
{
if (tmp[i] != '-')
old_format = FALSE;
}
else if (!uni_isxdigit(tmp[i]) || !uni_isdigit(tmp[i]) && !uni_islower(tmp[i]))
old_format = FALSE;
}
uni_char *uid = OP_NEWA(uni_char, uni_strlen(parent_folder_id.CStr()) + 1);
RETURN_OOM_IF_NULL(uid);
uni_strcpy(uid, parent_folder_id.CStr());
if (old_format)
{
// Remove all dashes and make all letters uppercase.
int offset=0, i;
for (i=0; i<36; i++)
{
uid[i-offset] = Unicode::ToUpper(uid[i]);
if (uid[i] == '-')
offset++;
}
uid[32] = 0;
}
// Find out which parent has which id.
BookmarkItem *parent = m_manager->FindId(uid);
BookmarkListElm *elm = FetchParentFromPool(uid);
if (!parent && !elm)
{
// Parent has not been read in yet, put the child on hold.
bookmark->SetParentUniqueId(uid);
elm = OP_NEW(BookmarkListElm, ());
if (!elm)
return OpStatus::ERR_NO_MEMORY;
elm->SetBookmark(bookmark);
AddToPool(elm);
}
else if (!parent && elm)
{
OP_DELETEA(uid);
#ifdef SUPPORT_DATA_SYNC
bookmark->SetAdded(TRUE);
#endif // SUPPORT_DATA_SYNC
ret = m_manager->AddBookmark(bookmark, elm->GetBookmark());
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
else if (ret == OpStatus::ERR)
ret = OpStatus::OK; // Invalid bookmark, just ignore.
RETURN_IF_ERROR(ret);
}
else
{
OP_DELETEA(uid);
#ifdef SUPPORT_DATA_SYNC
bookmark->SetAdded(TRUE);
#endif // SUPPORT_DATA_SYNC
ret = m_manager->AddBookmark(bookmark, parent);
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
else if (ret == OpStatus::ERR)
ret = OpStatus::OK; // Invalid bookmark, just ignore.
RETURN_IF_ERROR(ret);
}
}
else
{
#ifdef SUPPORT_DATA_SYNC
bookmark->SetAdded(TRUE);
#endif // SUPPORT_DATA_SYNC
ret = m_manager->AddBookmark(bookmark, m_manager->GetRootFolder());
if (ret == OpStatus::ERR_OUT_OF_RANGE)
m_index++;
else if (ret == OpStatus::ERR)
ret = OpStatus::OK; // Invalid bookmark, just ignore.
RETURN_IF_ERROR(ret);
}
if (bookmark->GetFolderType() != FOLDER_NO_FOLDER)
{
BookmarkListElm *elm;
while ((elm = FetchFromPool(bookmark->GetUniqueId())))
{
BookmarkItem *item = elm->GetBookmark();
#ifdef SUPPORT_DATA_SYNC
item->SetAdded(TRUE);
#endif // SUPPORT_DATA_SYNC
ret = m_manager->AddBookmark(item, bookmark);
RemoveFromPool(bookmark->GetUniqueId());
if (OpStatus::IsError(ret))
{
OP_DELETE(item);
if (ret != OpStatus::ERR_OUT_OF_RANGE)
return ret;
}
}
}
}
m_index++;
if (m_listener)
m_listener->BookmarkIsLoaded(bookmark, OpStatus::OK);
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::FolderBegin(BookmarkItem *folder)
{
if (folder->GetFolderType() == FOLDER_NO_FOLDER)
return OpStatus::ERR;
m_current_folder = folder;
return OpStatus::OK;
}
OP_STATUS BookmarkIniStorage::FolderEnd(BookmarkItem *folder)
{
m_current_folder = folder->GetParentFolder();
return OpStatus::OK;
}
BOOL BookmarkIniStorage::MoreBookmarks()
{
if (!m_bookmark_prefs)
{
m_index = 0;
if (m_filename)
OpenLoad(m_filename, m_folder);
else
return FALSE;
}
return m_sections.Count() - m_index ? TRUE : FALSE;
}
void BookmarkIniStorage::RegisterListener(BookmarkStorageListener *l)
{
m_listener = l;
}
void BookmarkIniStorage::UnRegisterListener(BookmarkStorageListener *l)
{
if (m_listener != l)
return;
m_listener = NULL;
}
void BookmarkIniStorage::AddToPool(BookmarkListElm *elm)
{
elm->Into(&m_pool);
}
void BookmarkIniStorage::RemoveFromPool(uni_char *uid)
{
BookmarkListElm *elm = FetchFromPool(uid);
if (elm)
{
elm->Out();
OP_DELETE(elm);
}
}
BookmarkListElm* BookmarkIniStorage::FetchFromPool(uni_char *uid)
{
BookmarkListElm *elm;
uni_char *puid;
if (!uid)
return NULL;
for (elm = (BookmarkListElm*) m_pool.First(); elm; elm = (BookmarkListElm*) elm->Suc())
{
puid = elm->GetBookmark()->GetParentUniqueId();
if (puid && uni_strcmp(puid, uid) == 0)
return elm;
}
return NULL;
}
BookmarkListElm* BookmarkIniStorage::FetchParentFromPool(uni_char *puid)
{
BookmarkListElm *elm;
uni_char *uid;
if (!puid)
return NULL;
for (elm = (BookmarkListElm*) m_pool.First(); elm; elm = (BookmarkListElm*) elm->Suc())
{
uid = elm->GetBookmark()->GetUniqueId();
if (uid && uni_strcmp(uid, puid) == 0)
return elm;
}
return NULL;
}
OP_STATUS BookmarkIniStorage::SaveTargetFolderValues(const uni_char *section_name, BookmarkItem *bookmark)
{
OpString tmp;
unsigned int max_count = bookmark->GetMaxCount();
if (max_count != ~0u)
{
RETURN_IF_ERROR(tmp.AppendFormat(UNI_L("%u"), max_count));
RETURN_IF_LEAVE(m_bookmark_prefs->WriteStringL(section_name, UNI_L("Max count"), tmp.CStr()));
tmp.Empty();
}
BOOL flag = bookmark->SubFoldersAllowed();
if (!flag)
{
RETURN_IF_ERROR(tmp.AppendFormat(UNI_L("%u"), flag));
RETURN_IF_LEAVE(m_bookmark_prefs->WriteStringL(section_name, UNI_L("Subfolders allowed"), tmp.CStr()));
tmp.Empty();
}
flag = bookmark->Deletable();
if (!flag)
{
RETURN_IF_ERROR(tmp.AppendFormat(UNI_L("%u"), flag));
RETURN_IF_LEAVE(m_bookmark_prefs->WriteStringL(section_name, UNI_L("Deletable"), tmp.CStr()));
tmp.Empty();
}
flag = bookmark->MoveIsCopy();
if (flag)
{
RETURN_IF_ERROR(tmp.AppendFormat(UNI_L("%u"), flag));
RETURN_IF_LEAVE(m_bookmark_prefs->WriteStringL(section_name, UNI_L("Move is copy"), tmp.CStr()));
tmp.Empty();
}
flag = bookmark->SeparatorsAllowed();
if (!flag)
{
RETURN_IF_ERROR(tmp.AppendFormat(UNI_L("%u"), flag));
RETURN_IF_LEAVE(m_bookmark_prefs->WriteStringL(section_name, UNI_L("Separators allowed"), tmp.CStr()));
tmp.Empty();
}
return OpStatus::OK;
}
void BookmarkIniStorage::LoadTargetFolderValues(const PrefsSection *section, BookmarkItem *bookmark)
{
BOOL flag;
const uni_char *value;
value = section->Get(UNI_L("Max count"));
if (value)
{
unsigned int max_count = uni_atoi(value);
bookmark->SetMaxCount(max_count);
}
value = section->Get(UNI_L("Subfolders allowed"));
if (value)
{
flag = uni_atoi(value) != 0;
bookmark->SetSubFoldersAllowed(flag);
}
value = section->Get(UNI_L("Deletable"));
if (value)
{
flag = uni_atoi(value) != 0;
bookmark->SetDeletable(flag);
}
value = section->Get(UNI_L("Move is copy"));
if (value)
{
flag = uni_atoi(value) != 0;
bookmark->SetMoveIsCopy(flag);
}
value = section->Get(UNI_L("Separators allowed"));
if (value)
{
flag = uni_atoi(value) != 0;
bookmark->SetSeparatorsAllowed(flag);
}
}
#endif // CORE_BOOKMARKS_SUPPORT
|
d82e9db2b9c0d3faff2cd821556b89a9c1824daf | 8950f9a18234aef8fb145c6bb5681bc1c9cd385d | /BunnymodXT/patterns.hpp | eaad649478a5c762fd3374dd546d4f31a486aca0 | [] | no_license | DanielOaks/BunnymodXT | 5e45e02ccc021dacdc409663e7143abaf0ec8407 | 5c3f964c534cf5ff2cf122bdab39690523e1d71a | refs/heads/master | 2021-01-09T09:38:21.439923 | 2014-12-24T08:55:49 | 2014-12-24T08:55:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,536 | hpp | patterns.hpp | #pragma once
#include <SPTLib/MemUtils.hpp>
namespace Patterns
{
// Shared patterns.
const MemUtils::ptnvec ptnsPMJump =
{
{
"HL-SteamPipe",
{
0x51, 0xA1, '?', '?', '?', '?', 0x53, 0x56, 0x8B, 0x88, 0xD0, 0x00, 0x00, 0x00, 0x85, 0xC9, 0x74, 0x13, 0x8B, 0x88, 0xC8, 0x00, 0x00, 0x00, 0x5E, 0x83, 0xC9, 0x02, 0x5B, 0x89, 0x88, 0xC8, 0x00, 0x00, 0x00, 0x59, 0xC3, 0x8D, 0x88, 0xF0, 0xF3, 0x04, 0x00, 0x68
},
"xx????xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"gunman",
{
0x51, 0xA1, '?', '?', '?', '?', 0x53, 0x8B, 0x88, 0xD0, 0x00, 0x00, 0x00, 0x85, 0xC9, 0x74, 0x12, 0x8B, 0x88, 0xC8, 0x00, 0x00, 0x00, 0x5B, 0x83, 0xC9, 0x02, 0x89, 0x88, 0xC8, 0x00, 0x00, 0x00, 0x59, 0xC3, 0x8D, 0x88, 0xF0, 0xF3, 0x04, 0x00, 0x68
},
"xx????xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"AG-Server",
{
0x51, 0x8B, 0x0D, '?', '?', '?', '?', 0x53, 0x8B, 0x81, 0xD0, 0x00, 0x00, 0x00, 0x85, 0xC0, 0x74, 0x11, 0x8B, 0x81, 0xC8, 0x00, 0x00, 0x00, 0x5B, 0x0C, 0x02, 0x89, 0x81, 0xC8, 0x00, 0x00, 0x00, 0x59, 0xC3, 0xD9, 0x81, 0xCC, 0x00, 0x00, 0x00, 0xD8, 0x1D
},
"xxx????xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
{
"AG-Client",
{
0x51, 0x8B, 0x0D, '?', '?', '?', '?', 0x8B, 0x81, 0xD0, 0x00, 0x00, 0x00, 0x85, 0xC0, 0x74, 0x09, 0x83, 0x89, 0xC8, 0x00, 0x00, 0x00, 0x02, 0x59, 0xC3, 0xD9, 0x05, '?', '?', '?', '?', 0xD9, 0x81, 0xCC, 0x00, 0x00, 0x00, 0xDA, 0xE9
},
"xxx????xxxxxxxxxxxxxxxxxxxxx????xxxxxxxx"
}
};
const MemUtils::ptnvec ptnsPMPreventMegaBunnyJumping =
{
{
"HL-SteamPipe",
{
0x51, 0x8B, 0x0D, '?', '?', '?', '?', 0xD9, 0x81, '?', '?', '?', '?', 0xD8, 0x0D, '?', '?', '?', '?', 0xD9, 0x54, 0x24, 0x00, 0xD8, 0x1D, '?', '?', '?', '?', 0xDF, 0xE0, 0xF6, 0xC4, 0x41, 0x7B, 0x3B, 0x83, 0xC1
},
"xxx????xx????xx????xxxxxx????xxxxxxxxx"
}
};
const MemUtils::ptnvec ptnsBhopcap =
{
{
"HL-SteamPipe",
{
0xD9, 0x05, '?', '?', '?', '?', 0xBA, 0xFF, 0xFF, 0xFF, 0xFF, 0xD8, 0x89, '?', '?', '?', '?', 0xD9, 0xC9, 0x89, 0x91, '?', '?', '?', '?', 0xDF, 0xE9, 0x0F, 0x82
},
"xx????xxxxxxx????xxxx????xxxx"
}
};
const MemUtils::ptnvec ptnsPMPlayerMove =
{
{
"HL-SteamPipe",
{
0xA1, '?', '?', '?', '?', 0x8B, 0x4C, 0x24, 0x04, 0x55, 0x57, 0x33, 0xFF, 0x89, 0x48, 0x04, 0xE8, '?', '?', '?', '?', 0x8B, 0x15, '?', '?', '?', '?', 0x33, 0xC9, 0x89, 0xBA, 0x8C, 0x54, 0x04, 0x00, 0xA1, '?', '?', '?', '?', 0x8A, 0x88, 0x5A, 0x54, 0x04, 0x00, 0x89
},
"x????xxxxxxxxxxxx????xx????xxxxxxxxx????xxxxxxx"
}
};
}
|
4996ab1d7effbf916213e3e3803c7b2e421863c0 | e7b5ca38f4d5b0e1ea8f8c5c7b7a280f99175ac8 | /a01_Ficha1/p04_ArraysVectorsStringsStructsFiles/4.05.cpp | a4ed8d98c10e1de3e28d1b239d8ea54ac99337a5 | [
"MIT"
] | permissive | FEUP-MIEIC/PROG | 18e62cb73bc7de4deeb03779f51eaf6dedce7be2 | 06976fde1ae93867b3189f0259ddab1228e846d5 | refs/heads/master | 2021-01-11T14:28:01.062647 | 2017-03-22T09:33:41 | 2017-03-22T09:33:41 | 81,431,682 | 2 | 2 | null | 2017-02-16T20:51:26 | 2017-02-09T09:13:52 | C++ | UTF-8 | C++ | false | false | 4,571 | cpp | 4.05.cpp | #include <iostream>
#include <iomanip>
using namespace std;
struct Fraction {
int numerator;
int denominator;
};
Fraction readFracc();
Fraction reduceFracc(Fraction f);
void writeFracc(Fraction f);
Fraction AddFraction(Fraction f1, Fraction f2);
Fraction SubFraction(Fraction f1, Fraction f2);
Fraction MultFraction (Fraction f1, Fraction f2);
Fraction DivFraction (Fraction f1, Fraction f2);
int gcdEuclidean(int a, int b);
int main()
{
int i = 1;
char op;
cout << setw(100) << setfill('*') << " \n";
cout << "Operação #" << i << " (use CTRL-D/Z para terminar OU outra tecla para continuar)";
cin.get();
while (!cin.eof())
{
Fraction f1, f2, fr;
/* Reads first fraction */
f1 = readFracc();
/* Reads second fraction */
f2 = readFracc();
/* Asks for operation */
cout << "Operação (+ - * /) ? ";
while(!(cin >> op))
{
cout << "Operação inválida! Introduza novamente (+ - / *) ? ";
}
/* Calculate and prints the result */
cout << "Resultado : ";
switch (op)
{
case '+':
writeFracc(AddFraction(f1, f2));
break;
case '-':
writeFracc(SubFraction(f1, f2));
break;
case '*':
writeFracc(MultFraction(f1, f2));
break;
case '/':
writeFracc(DivFraction(f1, f2));
break;
}
/* Prepares next iteration and cleans buffer */
i++;
cin.ignore(1000, '\n');
cout << setw(100) << setfill('*') << " \n";
cout << "Operação #" << i << " (use CTRL-D/Z para terminar OU outra tecla para continuar)";
cin.get();
}
}
/* Reads a fraction from input stream and returns struct Fraction */
Fraction readFracc()
{
char op;
Fraction f;
cout << "Introduza uma fração (N/D) ? ";
while (!(cin >> f.numerator >> op >> f.denominator) || f.numerator >= f.denominator || f.denominator == 0 || op != '/')
{
if (cin.fail())
{
cin.clear();
cin.ignore(1000, '\n');
cout << "Input inválido\n";
}
else if (f.numerator >= f.denominator || f.denominator == 0)
cout << "Fração inválida ou syntaxe incorreta. Uma fração não pode ter numerador superior ou igual ao denominador, e o denominador não pode ser zero!\n";
else if (op != '/')
cout << "Syntaxe incorreta. Deve usar N/D, sendo que N -> numerador e D -> denominador, ambos valores inteiros.\n";
else return f;
cout << "Introduza uma fração (N/D) ? ";
}
return f;
}
/* Prints a fraction (N/D) */
void writeFracc(Fraction f)
{
if(f.numerator == f.denominator)
cout << 1 << endl;
else if(f.numerator == 0)
cout << 0 << endl;
else
cout << f.numerator << '/' << f.denominator << endl;
}
/* Reduces a fraction */
Fraction reduceFracc(Fraction f)
{
Fraction fr = f;
int gcd = gcdEuclidean(fr.numerator, fr.denominator);
fr.numerator /= gcd;
fr.denominator /= gcd;
return fr;
}
/* Find and return the greatest common divisor for 'a' and 'b' */
int gcdEuclidean(int a, int b)
{
int aux;
while (b != 0)
{
aux = b;
b = a % b;
a = aux;
}
return a;
}
/* Gets two fractions, adds them, reduces the result and returns the resultant fraction .
F3 = reduceFracc(F1+F2) */
Fraction AddFraction(Fraction f1, Fraction f2)
{
Fraction fr;
if (f1.denominator == f2.denominator)
{
fr.denominator = f1.denominator;
fr.numerator = f1.numerator + f2.numerator;
return reduceFracc(fr);
}
else
{
/* num1 * den2 + num2 * den1 */
fr.numerator = f1.numerator*f2.denominator + f2.numerator*f1.denominator;
fr.denominator = f1.denominator * f2.denominator;
return reduceFracc(fr);
}
}
/* Gets two fractions, subtracts and reduces the result.
F1 = reduceFracc(F1-F2) */
Fraction SubFraction (Fraction f1, Fraction f2)
{
Fraction fr;
if (f1.denominator == f2.denominator)
{
fr.denominator = f1.denominator;
fr.numerator = f1.numerator - f2.numerator;
return reduceFracc(fr);
}
else
{
fr.numerator = f1.numerator*f2.denominator - f2.numerator*f1.denominator;
fr.denominator = f1.denominator * f2.denominator;
return reduceFracc(fr);
}
}
/* Gets two fractions, F1 and F2, multiples and reduces the resultant fraction.
F1 = readFracc(F1*F2) */
Fraction MultFraction (Fraction f1, Fraction f2)
{
f1.numerator *= f2.numerator;
f1.denominator *= f2.denominator;
return reduceFracc(f1);
}
Fraction DivFraction (Fraction f1, Fraction f2)
{
f1.numerator *= f2.denominator;
f1.denominator *= f2.numerator;
return reduceFracc(f1);
} |
8a309f848af7f776a358b384d9f8e8a064b2e221 | d428004facd0efa1c52f052e248e64c35e5123bc | /rhino/sceneTileMap.h | b155087c697a8ae6884b51fde52488e0f9eb7d10 | [] | no_license | ccsdu2004/rhinogame | c6ca60f004347ef597280c61ead97f9c12019b69 | a54929d2fdb241825fac2c1ee9923e160f4dd384 | refs/heads/master | 2020-06-11T06:19:26.593710 | 2019-06-28T09:34:53 | 2019-06-28T09:34:53 | 193,874,050 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,076 | h | sceneTileMap.h | #ifndef RHINO_SCENETILEMAP_H
#define RHINO_SCENETILEMAP_H
#include <memory>
#include <QVector>
#include <QImage>
#include <QMap>
#include "rhino.h"
#include "sprite.h"
#include "drawable.h"
class RHINO_EXPORT SceneTileMap : public Drawable
{
public:
static std::shared_ptr<SceneTileMap> createTileMap(int type);
#define SceneMap_Tile_NA -1
#define SceneMap_Tile_DEF 0
#define SceneMap_Tile_SEA 1
#define SceneMap_Tile_ROAD 2
#define SceneMap_Tile_CITY 3
#define SceneMap_Tile_GRASS 4
#define SceneMap_Tile_SNOW 5
public:
SceneTileMap();
virtual ~SceneTileMap() = default;
public:
virtual bool loadTileMapFromCSV(const QString& file,bool fromtop = false) = 0;
bool setDefaultTileImage(std::shared_ptr<QImage> tile);
bool addTileImage(int id, std::shared_ptr<QImage> tile);
virtual int getTileIDByTilePos(int x,int y) = 0;
void clear();
public:
virtual void glDraw() = 0;
protected:
int col,row;
std::shared_ptr<Sprite> defSprite;
QMap<int,std::shared_ptr<Sprite>> tileSprites;
QVector<int> terrain;
};
#endif |
7c45ef8a471cc740a1e2fb491ca479c46c0bf554 | bd96fe1bfbf98236d8457a5929433a2aae333fe1 | /Cpp/Submit Records/763. Partition Labels.cpp | 57cf7201c868bcb0f8d87e7f99e01cbbe4d8a7be | [] | no_license | Alfeim/njuee_LeetCode_Solutions | 1879c99c8c999f08d97980acf10490da5ebeaaea | ed1a8f4dd90739c6359c71a1278efd811bafe354 | refs/heads/master | 2020-06-13T12:05:46.521182 | 2020-01-11T07:14:38 | 2020-01-11T07:14:38 | 194,647,358 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,068 | cpp | 763. Partition Labels.cpp | /********************************************
作者:Alfeim
题目:划分字母区间
时间消耗:12ms
解题思路:
先遍历一次所有字符,记录每个字符最后出现的位置
然后每次划分新片段时,找到当前位置字母的最后位置,每次选取其和next
中最大的作为next(表示结束位置).如果当前位置恰好等于next,则划分完
了一个片段
********************************************/
class Solution {
public:
vector<int> partitionLabels(string S) {
vector<int> last(26,0);
vector<int> res;
int n = S.size();
for(int i = 0 ; i < n ; ++i) last[S[i]-'a'] = i;
int pos = 0,next = -1,last_pos = 0;
while(pos < n){
if(next < pos){
next = last[S[pos] - 'a'];
last_pos = pos;
}
if(pos == next){
res.push_back(pos - last_pos + 1);
}
next = max(next,last[S[pos] - 'a']);
pos++;
}
return res;
}
};
|
f022e5e79ddbe239aadba22fb3bb1c1b3d67841b | a4cb82478a101042213e650e213c3981ca9dc0ff | /Checking if a number is a power of two or not.cpp | 554abd4e905aaabaea04e93deff589ab3ee3a8a4 | [] | no_license | prakharR534/Programming-hub- | 9b2595f81f4b9df3ffda8a5e1c1998e973b4ffca | 6d0503fffb8eb0be64ac713b26eb5c91f817cc45 | refs/heads/master | 2023-02-11T21:51:22.699619 | 2020-12-29T16:04:49 | 2020-12-29T16:04:49 | 265,275,442 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 261 | cpp | Checking if a number is a power of two or not.cpp | #include<bits/stdc++.h>
using namespace std;
bool isPowerofTwo(int n){
return (ceil(log2(n)) == floor(log2(n)));
}
//only for integer values
int main(){
int n;
cin>>n;
if( isPowerofTwo(n)){
cout<<"YES";
}
else
cout<<"NO";
}
|
ba4b31e5442f02d6e18a1f5b83a100ba9790bb50 | 688a51f4072cc7816ab1beba6252f037cff1bf55 | /Overload/SSSEngine/Include/Component/DirectionalLight.h | 33feeaf575c001eabe9e5ed3026cbc060e6eb943 | [] | no_license | wognl0439/D3D_Overload | f0c19c2c7a4ab2c950d3a97adb6195738c67280a | 7af41388591f2f60aa124d215084c72e9797eb86 | refs/heads/master | 2023-07-17T17:29:25.754980 | 2021-09-01T10:07:27 | 2021-09-01T10:07:27 | 401,966,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 536 | h | DirectionalLight.h | #pragma once
#include "Light.h"
SSS_BEGIN
class SSS_DLL CDirectionalLight :
public CLight
{
friend class CGameObject;
protected:
CDirectionalLight();
CDirectionalLight(const CDirectionalLight& light);
virtual ~CDirectionalLight();
public:
bool Initialize() override;
void Start() override;
int Update(float fTime) override;
int LateUpdate(float fTime) override;
void Render(float fTime) override;
CDirectionalLight* Clone() const override;
bool Save(FILE* pFile) override;
bool Load(FILE* pFile) override;
};
SSS_END
|
788da2b4f125cdfa1d0b6424ab75b0988430129e | 1ae6e34add44d9b6e72c6e68bd07c82aa0a270f7 | /Aufgabe 2/firmware/tests/pc/UARTCommunication.cpp | 230981a7a862c7431d1bfcecd4e8c532e0d78e72 | [] | no_license | Lightning252/Robot-Design-Lab-G6 | 9dbcf431b91bf51644486a12f4b529dccebab366 | d0789a4364cb0bb8ae36fd94e95833899f12b342 | refs/heads/master | 2021-01-19T12:46:09.584174 | 2017-05-08T20:48:31 | 2017-05-08T20:48:31 | 88,044,431 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,427 | cpp | UARTCommunication.cpp | #include "UARTCommunication.hpp"
#include <fstream>
#include <fcntl.h>
#include <iostream>
#include <vector>
#include <stdlib.h>
#include <unistd.h>
#include <termios.h>
#include <stdexcept>
UARTCommunication::UARTCommunication(const std::string &device)
{
memset(&tio,0,sizeof(tio));
tio.c_iflag=0;
tio.c_oflag=0;
tio.c_cflag=CS8|CREAD|CLOCAL; // 8n1, see termios.h for more information
tio.c_lflag=0;
tio.c_cc[VMIN]=1;
tio.c_cc[VTIME]=5;
tty_fd=open(device.c_str(), O_RDWR | O_NONBLOCK | O_SYNC);
cfsetospeed(&tio,B921600); // 115200 baud
cfsetispeed(&tio,B921600); // 115200 baud
tcsetattr(tty_fd,TCSANOW,&tio);
if(tty_fd < 0)
throw std::runtime_error("Error opening tty " + device);
};
UARTCommunication::~UARTCommunication() {
if(close(tty_fd))
std::cout << "Warning, could not close tty" << std::endl;
std::cout << "Closed tty" << std::endl;
}
int UARTCommunication::read(unsigned char* buffer, size_t buffersize)
{
int ret = 0;
ssize_t recvd;
if(0 >= (recvd = ::read(tty_fd,buffer + ret, sizeof(char))))
{
return 0;
}
ret += recvd;
return ret;
}
int UARTCommunication::write(const unsigned char* data, size_t size)
{
int ret = ::write(tty_fd, data, size);
if(tcdrain(tty_fd) < 0)
{
perror("TCDrain failed");
}
return ret;
} |
22834f92eb9897ed75bfe76a439337bf47c9d115 | 0b8b209586e4e951bb40542073567fe0708cbcf7 | /src/test/Balise.h | ee472c850c118e53305b9ecf0ebd5306516f8103 | [] | no_license | benaisc/workflow | 95118ed00300ce172ea545a730cbd1cd1f1e80f6 | e1fd4021777b2fcb3274b8108f48e01b64e2c7d2 | refs/heads/master | 2021-06-16T16:22:01.450268 | 2017-05-22T14:53:26 | 2017-05-22T14:53:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 657 | h | Balise.h | /*! \file Balise.h
\brief A Documented template file.
+Xtra Details.
*/
#ifndef __Balise_H__
#define __Balise_H__
#include "hashmap.h"
/*! \class Balise
\brief A Balise class.
A detailed description.
*/
class Balise{
private:
/*! \var name
\brief name of balise
*/
char* name;
/*! \var attributs
\brief attributes of the balise (i.e: id="1234")
*/
Hashmap<String, String>* attributs;
/*! \var name
\brief name of balise
*/
Balise* fils;
public:
/*! \fn void getName()
\brief return the name of the balise as a string
\return Balise.name
*/
char* getName();
int addChild(Balise);
};
#endif
|
407bf6d9d46802f7df99393e2a91dfef269afcf9 | 225e3cdefcdcb8d57374b74f94b0053a17230d92 | /Trie.h | 04cbeca9df1e091bc832f78f848a02cb3451bd19 | [] | no_license | Matei94/T9-Dictionary | 7d97134472cf46e45cfc47f87c528bfa4984fc20 | 0a7d30539677a87005dbceaa4b1cc8acaedadc06 | refs/heads/master | 2021-03-12T23:21:35.076640 | 2014-06-25T08:00:01 | 2014-06-25T08:00:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,487 | h | Trie.h | // Autor: Matei Razvan Madalin, 313CA
// UPB, Facultatea de Automatica si Calculatoare
#include "Treap.h"
#include <iostream>
using namespace std;
// Get coresponding position.
int POZ(char *s) {
char poz = *s - 'a';
if ( 0 <= poz && poz <= 2) return 0;
if ( 3 <= poz && poz <= 5) return 1;
if ( 6 <= poz && poz <= 8) return 2;
if ( 9 <= poz && poz <= 11) return 3;
if (12 <= poz && poz <= 14) return 4;
if (15 <= poz && poz <= 18) return 5;
if (19 <= poz && poz <= 21) return 6;
if (22 <= poz && poz <= 25) return 7;
}
struct Trie {
char are_treap;
Treap<struct elem> *treap;
Trie *fiu[8];
// Constructor
Trie() {
treap = NULL;
are_treap = 0;
memset( fiu, 0, sizeof( fiu ) );
}
// Destructor
~Trie() {
int i;
for(i=0; i<8; i++) {
delete fiu[i];
fiu[i] = NULL;
}
delete treap;
treap = NULL;
}
};
Trie *T = new Trie;
Trie *aux;
// Insert element in trie.
void ins( Trie *&nod, char *s, elem e ) {
if( *s == '\0' ) {
// The treap in the trie structure is
// allocated only at end of words.
// are_treap keeps track of that.
if(nod->are_treap == 0) {
nod->treap = new Treap<elem>;
nod->are_treap = 1;
}
// Insert element in coresponding treap.
nod->treap->insert(nod->treap, e, rand() % 1000);
return;
}
if( nod->fiu[ POZ(s) ] == 0 ) {
nod->fiu[ POZ(s) ] = new Trie;
}
ins(nod->fiu[ POZ(s) ], s+1, e);
}
|
646c6255da82c680f42a3c7b1862072432ce4532 | 3d40eaaa6be158c54d0d5a148d698fd3e285ac41 | /C++98中内置内型和自定义类型元素的比较/C++98中内置内型和自定义类型元素的比较/源.cpp | ae6c08d13126d3744994912702f2b22b659d72b7 | [] | no_license | yi1978045947/Hide-on-library | a7c9a5da45efea5306d195f9ce366dedb2c41fb9 | ce3730309669c0955fa16ad8fade148d63a45cc2 | refs/heads/master | 2023-09-04T02:40:10.545014 | 2021-10-20T15:48:29 | 2021-10-20T15:48:29 | 312,789,626 | 3 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,502 | cpp | 源.cpp | #define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<functional>
#include<algorithm>
using namespace std;
template<class T>
struct Greater
{
bool operator()(const T& x1, const T& x2)
{
return x1 > x2;
}
};
template<class T>
bool g2(const T& x1, const T& x2)
{
return x1 > x2;
}
int x1()
{
int array[] = { 4, 1, 8, 5, 3, 7, 0, 9, 2, 6 };
std::sort(array, array + sizeof(array) / sizeof(array[0]));
for (auto e : array)
{
cout << e << " ";
}
cout << endl;
std::sort(array, array + sizeof(array) / sizeof(array[0]), Greater<int>());
Greater<int> g1;
cout << g1(1, 2) << endl; //g1是一个对象,这里调用的是operator()实现的比较
cout << g2(1, 2) << endl; //g2是一个函数指针,这里调用他指向的函数
//两者完全不同的对象,但是他们用起来一样
for (auto e : array)
{
cout << e << " ";
}
cout << endl;
return 0;
}
struct Goods
{
string _name; //名字
double _price; //价格
int _num; //数量
};
struct ComPriceGreater
{
bool operator()(const Goods& g1, const Goods& g2)
{
return g1._price > g2._price;
}
};
struct ComNumGreater
{
bool operator()(const Goods& g1, const Goods& g2)
{
return g1._num > g2._num;
}
};
int main()
{
Goods goods[] = { { "苹果", 2.1 }, { "相交", 3 }, { "橙子", 2.2 }, { "菠萝", 1.5 } };
std::sort(goods, goods + sizeof(goods) / sizeof(goods[0]), ComPriceGreater());
std::sort(goods, goods + sizeof(goods) / sizeof(goods[0]), ComNumGreater());
return 0;
} |
e4e22cb0178ab01b52e62f6def8f51e410d7de82 | 80d81bcdfc9932a595c1fd0999492abf32a438dc | /Meteoros/main.cpp | 9a48758ede304e121bec10aaa0fe30ffea1a28a1 | [] | no_license | NeliocmSampaio/SPC | 9d1a1a1d214a3b8f4acc3891b8a65f63cb46ac83 | 31c6899f62c07f2eab274236f501ab1f22264729 | refs/heads/master | 2021-03-22T03:39:50.641474 | 2018-09-19T12:58:59 | 2018-09-19T12:58:59 | 86,104,189 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 828 | cpp | main.cpp | /*
* Nome: Nélio Cezar Muniz Sampaio
* Matricula: 2015042150
* Codigo do Problema: METEORO Problema: Meteoros
*
* O algoritmo le as coordenadas dos pontos e compara as coordenadas x e y de cada um
* com as coordenadas dos cantos do retângulo.
* */
#include <iostream>
using namespace std;
int main() {
int x1, y1, x2, y2;
int n;
int x, y;
int cont;
int j;
cont = 0;
j = 0;
cin >> x1 >> y1 >> x2 >> y2;
while(x1!=0 || x2!=0 || y1!=0 || y2!=0 )
{
cin >> n;
for(int i=0; i<n; i++)
{
cin >> x >> y;
if(x1<=x && x<=x2)
{
if(y1>=y && y>=y2)
{
cont ++;
}//if
}//if
}//for
j++;
cout << "Teste " << j << endl;
cout << cont << endl << endl;
cont = 0;
cin >> x1 >> y1 >> x2 >> y2;
}//while
return 0;
} |
450130018a83da065670ecb290c4029693b536f5 | 2f557f60fc609c03fbb42badf2c4f41ef2e60227 | /CondTools/L1Trigger/interface/L1ConfigOnlineProdBase.h | 60397c082f53bbd099eb0f0a796f2dd6eeacf551 | [
"Apache-2.0"
] | permissive | CMS-TMTT/cmssw | 91d70fc40a7110832a2ceb2dc08c15b5a299bd3b | 80cb3a25c0d63594fe6455b837f7c3cbe3cf42d7 | refs/heads/TMTT_1060 | 2020-03-24T07:49:39.440996 | 2020-03-04T17:21:36 | 2020-03-04T17:21:36 | 142,576,342 | 3 | 5 | Apache-2.0 | 2019-12-05T21:16:34 | 2018-07-27T12:48:13 | C++ | UTF-8 | C++ | false | false | 7,263 | h | L1ConfigOnlineProdBase.h | #ifndef CondTools_L1Trigger_L1ConfigOnlineProdBase_h
#define CondTools_L1Trigger_L1ConfigOnlineProdBase_h
// -*- C++ -*-
//
// Package: L1Trigger
// Class : L1ConfigOnlineProdBase
//
/**\class L1ConfigOnlineProdBase L1ConfigOnlineProdBase.h CondTools/L1Trigger/interface/L1ConfigOnlineProdBase.h
Description: Abstract templated base class for producers that reads OMDS to
retrieve configuration data for a given key and generates the corresponding
C++ objects.
Usage:
<usage>
*/
//
// Original Author: Werner Sun
// Created: Tue Sep 2 22:48:15 CEST 2008
// $Id: L1ConfigOnlineProdBase.h,v 1.9 2010/02/16 21:55:43 wsun Exp $
//
// system include files
#include <memory>
// user include files
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Framework/interface/ModuleFactory.h"
#include "FWCore/Framework/interface/ESProducer.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "CondFormats/L1TObjects/interface/L1TriggerKeyList.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyListRcd.h"
#include "CondFormats/L1TObjects/interface/L1TriggerKey.h"
#include "CondFormats/DataRecord/interface/L1TriggerKeyRcd.h"
#include "CondTools/L1Trigger/interface/OMDSReader.h"
#include "CondTools/L1Trigger/interface/DataWriter.h"
#include "CondTools/L1Trigger/interface/Exception.h"
#include "FWCore/Utilities/interface/typelookup.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "CondCore/CondDB/interface/Session.h"
#include "CondCore/CondDB/interface/ConnectionPool.h"
// forward declarations
template< class TRcd, class TData >
class L1ConfigOnlineProdBase : public edm::ESProducer {
public:
L1ConfigOnlineProdBase(const edm::ParameterSet&);
~L1ConfigOnlineProdBase() override;
virtual std::unique_ptr< TData > produce(const TRcd& iRecord);
virtual std::unique_ptr< TData > newObject(
const std::string& objectKey ) = 0 ;
private:
// ----------member data ---------------------------
protected:
l1t::OMDSReader m_omdsReader ;
bool m_forceGeneration ;
// Called from produce methods.
// bool is true if the object data should be made.
// If bool is false, produce method should throw
// DataAlreadyPresentException.
bool getObjectKey( const TRcd& record,
std::string& objectKey ) ;
// For reading object directly from a CondDB w/o PoolDBOutputService
cond::persistency::Session m_dbSession ;
bool m_copyFromCondDB ;
};
template< class TRcd, class TData >
L1ConfigOnlineProdBase<TRcd, TData>::L1ConfigOnlineProdBase(const edm::ParameterSet& iConfig)
: m_omdsReader(),
m_forceGeneration( iConfig.getParameter< bool >( "forceGeneration" ) ),
m_dbSession(),
m_copyFromCondDB( false )
{
//the following line is needed to tell the framework what
// data is being produced
setWhatProduced(this);
//now do what ever other initialization is needed
if( iConfig.exists( "copyFromCondDB" ) )
{
m_copyFromCondDB = iConfig.getParameter< bool >( "copyFromCondDB" ) ;
if( m_copyFromCondDB )
{
cond::persistency::ConnectionPool connectionPool;
// Connect DB Session
connectionPool.setAuthenticationPath(
iConfig.getParameter< std::string >( "onlineAuthentication" ) ) ;
connectionPool.configure() ;
m_dbSession = connectionPool.createSession( iConfig.getParameter< std::string >( "onlineDB" ) ) ;
}
}
else
{
m_omdsReader.connect(
iConfig.getParameter< std::string >( "onlineDB" ),
iConfig.getParameter< std::string >( "onlineAuthentication" ) ) ;
}
}
template< class TRcd, class TData >
L1ConfigOnlineProdBase<TRcd, TData>::~L1ConfigOnlineProdBase()
{
// do anything here that needs to be done at desctruction time
// (e.g. close files, deallocate resources etc.)
}
template< class TRcd, class TData >
std::unique_ptr< TData >
L1ConfigOnlineProdBase<TRcd, TData>::produce( const TRcd& iRecord )
{
std::unique_ptr< TData > pData ;
// Get object key and check if already in ORCON
std::string key ;
if( getObjectKey( iRecord, key ) || m_forceGeneration )
{
if( m_copyFromCondDB )
{
// Get L1TriggerKeyList from EventSetup
const L1TriggerKeyListRcd& keyListRcd =
iRecord.template getRecord< L1TriggerKeyListRcd >() ;
edm::ESHandle< L1TriggerKeyList > keyList ;
keyListRcd.get( keyList ) ;
// Find payload token
std::string recordName = edm::typelookup::className<TRcd>();
std::string dataType = edm::typelookup::className<TData>();
std::string payloadToken =
keyList->token( recordName, dataType, key ) ;
edm::LogVerbatim( "L1-O2O" )
<< "Copying payload for " << recordName
<< "@" << dataType << " obj key " << key
<< " from CondDB." ;
edm::LogVerbatim( "L1-O2O" )
<< "TOKEN " << payloadToken ;
// Get object from POOL
// Copied from l1t::DataWriter::readObject()
if( !payloadToken.empty() )
{
m_dbSession.transaction().start() ;
pData = m_dbSession.fetchPayload<TData>( payloadToken ) ;
m_dbSession.transaction().commit ();
}
}
else
{
pData = newObject( key ) ;
}
// if( pData.get() == 0 )
if( pData == std::unique_ptr< TData >() )
{
std::string dataType = edm::typelookup::className<TData>();
throw l1t::DataInvalidException( "Unable to generate " +
dataType + " for key " + key +
"." ) ;
}
}
else
{
std::string dataType = edm::typelookup::className<TData>();
throw l1t::DataAlreadyPresentException( dataType +
" for key " + key + " already in CondDB." ) ;
}
return pData ;
}
template< class TRcd, class TData >
bool
L1ConfigOnlineProdBase<TRcd, TData>::getObjectKey(
const TRcd& record,
std::string& objectKey )
{
// Get L1TriggerKey
const L1TriggerKeyRcd& keyRcd =
record.template getRecord< L1TriggerKeyRcd >() ;
// Explanation of funny syntax: since record is dependent, we are not
// expecting getRecord to be a template so the compiler parses it
// as a non-template. http://gcc.gnu.org/ml/gcc-bugs/2005-11/msg03685.html
// If L1TriggerKey is invalid, then all configuration objects are
// already in ORCON.
edm::ESHandle< L1TriggerKey > key ;
try
{
keyRcd.get( key ) ;
}
catch( l1t::DataAlreadyPresentException& ex )
{
objectKey = std::string() ;
return false ;
}
// Get object key from L1TriggerKey
std::string recordName = edm::typelookup::className<TRcd>();
std::string dataType = edm::typelookup::className<TData>();
objectKey = key->get( recordName, dataType ) ;
/* edm::LogVerbatim( "L1-O2O" ) */
/* << "L1ConfigOnlineProdBase record " << recordName */
/* << " type " << dataType << " obj key " << objectKey ; */
// Get L1TriggerKeyList
L1TriggerKeyList keyList ;
l1t::DataWriter dataWriter ;
if( !dataWriter.fillLastTriggerKeyList( keyList ) )
{
edm::LogError( "L1-O2O" )
<< "Problem getting last L1TriggerKeyList" ;
}
// If L1TriggerKeyList does not contain object key, token is empty
return
keyList.token( recordName, dataType, objectKey ).empty() ;
}
#endif
|
9e6a2f6adf31fc62b4bbf6cb95b3959cf6e5beac | f83ef53177180ebfeb5a3e230aa29794f52ce1fc | /cairo/cairo-1.14.8/test/close-path-current-point.c | 35f8d423bd8393a7b9b3cf7ba8badda28b7e7c84 | [
"LicenseRef-scancode-public-domain",
"MIT",
"MPL-1.1",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"LicenseRef-scancode-other-permissive",
"MPL-1.0",
"LGPL-2.1-or-later",
"Apache-2.0"
] | 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 | 3,186 | c | close-path-current-point.c | /*
* Copyright © 2009 Nis Martensen
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear in
* supporting documentation, and that the name of the copyright holder
* not be used in advertising or publicity pertaining to distribution of
* the software without specific, written prior permission. The
* copyright holder makes no representations about the suitability of
* this software for any purpose. It is provided "as is" without
* express or implied warranty.
*
* THE COPYRIGHT HOLDER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
* SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Author: Nis Martensen <nis.martensen@web.de>
*/
#include "cairo-test.h"
#define SIZE 20
static cairo_test_status_t
draw (cairo_t *cr, int width, int height)
{
/* We draw in the default black, so paint white first. */
cairo_save (cr);
cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); /* white */
cairo_paint (cr);
cairo_restore (cr);
/* subpath starts with cairo_move_to */
cairo_new_sub_path (cr);
cairo_move_to (cr, SIZE, SIZE);
cairo_rel_line_to (cr, SIZE, 0);
cairo_rel_line_to (cr, 0, SIZE);
cairo_close_path (cr);
cairo_rel_line_to (cr, 0.5 * SIZE, SIZE);
/* subpath starts with cairo_line_to */
cairo_new_sub_path (cr);
cairo_line_to (cr, SIZE, 3 * SIZE);
cairo_rel_line_to (cr, SIZE, 0);
cairo_rel_line_to (cr, 0, SIZE);
cairo_close_path (cr);
cairo_rel_line_to (cr, 0, SIZE);
/* subpath starts with cairo_curve_to */
cairo_new_sub_path (cr);
cairo_curve_to (cr,
SIZE, 5 * SIZE,
1.5 * SIZE, 6 * SIZE,
2 * SIZE, 5 * SIZE);
cairo_rel_line_to (cr, 0, SIZE);
cairo_close_path (cr);
cairo_rel_line_to (cr, -0.5 * SIZE, SIZE);
/* subpath starts with cairo_arc */
cairo_new_sub_path (cr);
cairo_arc (cr,
1.5 * SIZE, 7 * SIZE,
0.5 * SIZE,
M_PI, 2 * M_PI);
cairo_rel_line_to (cr, 0, SIZE);
cairo_close_path (cr);
cairo_rel_line_to (cr, -0.7 * SIZE, 0.7 * SIZE);
/* subpath starts with cairo_arc_negative */
cairo_new_sub_path (cr);
cairo_arc_negative (cr,
1.5 * SIZE, 9 * SIZE,
0.5 * SIZE,
M_PI, 2 * M_PI);
cairo_rel_line_to (cr, 0, SIZE);
cairo_close_path (cr);
cairo_rel_line_to (cr, -0.8 * SIZE, 0.3 * SIZE);
cairo_stroke (cr);
return CAIRO_TEST_SUCCESS;
}
CAIRO_TEST (close_path_current_point,
"Test some corner cases related to cairo path operations and the current point",
"path", /* keywords */
NULL, /* requirements */
3 * SIZE, 11 * SIZE,
NULL, draw)
|
a5a706dec913f77c35825d27995048817aafa1ec | 33035c05aad9bca0b0cefd67529bdd70399a9e04 | /src/boost_spirit_home_karma_directive_upper_lower_case.hpp | d275696e4f30228e458d03dd07633c7df893a0c7 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | elvisbugs/BoostForArduino | 7e2427ded5fd030231918524f6a91554085a8e64 | b8c912bf671868e2182aa703ed34076c59acf474 | refs/heads/master | 2023-03-25T13:11:58.527671 | 2021-03-27T02:37:29 | 2021-03-27T02:37:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 66 | hpp | boost_spirit_home_karma_directive_upper_lower_case.hpp | #include <boost/spirit/home/karma/directive/upper_lower_case.hpp>
|
80ff7b4a1756d94d34139eb76ff3af1c8490516a | d17a8870ff8ac77b82d0d37e20c85b23aa29ca74 | /lite/kernels/arm/reduce_compute.cc | 4877040a667e175817d53fe5df19e38b91d9eeb8 | [
"Apache-2.0"
] | permissive | PaddlePaddle/Paddle-Lite | 4ab49144073451d38da6f085a8c56822caecd5b2 | e241420f813bd91f5164f0d9ee0bc44166c0a172 | refs/heads/develop | 2023-09-02T05:28:14.017104 | 2023-09-01T10:32:39 | 2023-09-01T10:32:39 | 104,208,128 | 2,545 | 1,041 | Apache-2.0 | 2023-09-12T06:46:10 | 2017-09-20T11:41:42 | C++ | UTF-8 | C++ | false | false | 7,491 | cc | reduce_compute.cc | // Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
//
// 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 "lite/kernels/arm/reduce_compute.h"
#include <string>
#include "lite/backends/arm/math/funcs.h"
#include "lite/backends/arm/math/reduce.h"
#include "lite/core/op_registry.h"
namespace paddle {
namespace lite {
namespace kernels {
namespace arm {
template <typename T, paddle::lite::arm::math::ReduceProcessType OpType>
void ReduceCompute<T, OpType>::Run() {
auto& param = Param<operators::ReduceParam>();
const T* input = param.X->template data<T>();
auto x_dims = param.X->dims();
int x_rank = x_dims.size();
T* output = param.Out->template mutable_data<T>();
auto out_dims = param.Out->dims();
auto dim = param.dim;
bool reduce_all = param.reduce_all;
bool keep_dim = param.keep_dim;
auto vec_xdims = x_dims.Vectorize();
auto vec_odims = out_dims.Vectorize();
CHECK(x_rank <= 6) << "Only support input_dim <= 6 for now.";
param.Out->set_precision(param.X->precision());
if (!dim.empty()) {
for (int i = 0; i < dim.size(); i++) {
if (dim[i] < 0) {
dim[i] += x_rank;
}
}
}
lite::arm::math::ReduceImpl<T>(
input, vec_xdims, output, vec_odims, dim, reduce_all, OpType);
}
} // namespace arm
} // namespace kernels
} // namespace lite
} // namespace paddle
using int64_reduce_mean = paddle::lite::kernels::arm::
ReduceCompute<int64_t, paddle::lite::arm::math::ReduceProcessType::mean>;
REGISTER_LITE_KERNEL(reduce_mean, kARM, kFloat, kNCHW, int64_reduce_mean, i64)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.Finalize();
using int32_reduce_mean = paddle::lite::kernels::arm::
ReduceCompute<int, paddle::lite::arm::math::ReduceProcessType::mean>;
REGISTER_LITE_KERNEL(reduce_mean, kARM, kFloat, kNCHW, int32_reduce_mean, i32)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.Finalize();
using float_reduce_mean = paddle::lite::kernels::arm::
ReduceCompute<float, paddle::lite::arm::math::ReduceProcessType::mean>;
REGISTER_LITE_KERNEL(reduce_mean, kARM, kFloat, kNCHW, float_reduce_mean, def)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM))})
.Finalize();
#ifdef LITE_BUILD_EXTRA
using float_reduce_max = paddle::lite::kernels::arm::
ReduceCompute<float, paddle::lite::arm::math::ReduceProcessType::max>;
REGISTER_LITE_KERNEL(reduce_max, kARM, kFloat, kNCHW, float_reduce_max, def)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM))})
.Finalize();
using int64_reduce_max = paddle::lite::kernels::arm::
ReduceCompute<int64_t, paddle::lite::arm::math::ReduceProcessType::max>;
REGISTER_LITE_KERNEL(reduce_max, kARM, kFloat, kNCHW, int64_reduce_max, i64)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.Finalize();
using int32_reduce_max = paddle::lite::kernels::arm::
ReduceCompute<int, paddle::lite::arm::math::ReduceProcessType::max>;
REGISTER_LITE_KERNEL(reduce_max, kARM, kFloat, kNCHW, int32_reduce_max, i32)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.Finalize();
using float_reduce_min = paddle::lite::kernels::arm::
ReduceCompute<float, paddle::lite::arm::math::ReduceProcessType::min>;
REGISTER_LITE_KERNEL(reduce_min, kARM, kFloat, kNCHW, float_reduce_min, def)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM))})
.Finalize();
using int64_reduce_min = paddle::lite::kernels::arm::
ReduceCompute<int64_t, paddle::lite::arm::math::ReduceProcessType::min>;
REGISTER_LITE_KERNEL(reduce_min, kARM, kFloat, kNCHW, int64_reduce_min, i64)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.Finalize();
using int32_reduce_min = paddle::lite::kernels::arm::
ReduceCompute<int, paddle::lite::arm::math::ReduceProcessType::min>;
REGISTER_LITE_KERNEL(reduce_min, kARM, kFloat, kNCHW, int32_reduce_min, i32)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.Finalize();
using float_reduce_sum = paddle::lite::kernels::arm::
ReduceCompute<float, paddle::lite::arm::math::ReduceProcessType::sum>;
REGISTER_LITE_KERNEL(reduce_sum, kARM, kFloat, kNCHW, float_reduce_sum, def)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM))})
.Finalize();
using int64_reduce_sum = paddle::lite::kernels::arm::
ReduceCompute<int64_t, paddle::lite::arm::math::ReduceProcessType::sum>;
REGISTER_LITE_KERNEL(reduce_sum, kARM, kFloat, kNCHW, int64_reduce_sum, i64)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.Finalize();
using int32_reduce_sum = paddle::lite::kernels::arm::
ReduceCompute<int, paddle::lite::arm::math::ReduceProcessType::sum>;
REGISTER_LITE_KERNEL(reduce_sum, kARM, kFloat, kNCHW, int32_reduce_sum, i32)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.Finalize();
using float_reduce_prod = paddle::lite::kernels::arm::
ReduceCompute<float, paddle::lite::arm::math::ReduceProcessType::prod>;
REGISTER_LITE_KERNEL(reduce_prod, kARM, kFloat, kNCHW, float_reduce_prod, def)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM))})
.Finalize();
using int64_reduce_prod = paddle::lite::kernels::arm::
ReduceCompute<int64_t, paddle::lite::arm::math::ReduceProcessType::prod>;
REGISTER_LITE_KERNEL(reduce_prod, kARM, kFloat, kNCHW, int64_reduce_prod, i64)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt64))})
.Finalize();
using int32_reduce_prod = paddle::lite::kernels::arm::
ReduceCompute<int, paddle::lite::arm::math::ReduceProcessType::prod>;
REGISTER_LITE_KERNEL(reduce_prod, kARM, kFloat, kNCHW, int32_reduce_prod, i32)
.BindInput("X", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kARM), PRECISION(kInt32))})
.Finalize();
#endif // LITE_BUILD_EXTRA
|
fd6057beb05a338cfc16f50361a40d94ba73508a | f75bdb3ecda01d63c2abebb299562ea3f951cf0b | /Scheduler/Scheduler/scheduler.h | c97e5a7f9f4610352ba766a897eb7d1790037020 | [] | no_license | Riandy/cs2103aug12-f09-1c | a7558ba26593efb03de3505aa821085b30af583d | 5cba5aace3716f441c30fcbea0e6c8e0680d083c | refs/heads/master | 2020-04-18T20:34:49.680008 | 2012-11-12T15:40:22 | 2012-11-12T15:40:22 | 32,462,167 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,371 | h | scheduler.h | #ifndef SCHEDULER_H
#define SCHEDULER_H
#include "calender.h"
#include <map>
#include <sstream>
#include "Action.h"
// Ensure that this error is synchronous with the errors sent from Intellisense.
static string ERROR_NOT_FOUND = "Error - The item does not exist.";
static string ERROR_INTELLISENSE_CHECK = "Error - The system failed to process your request. Please try again";
static string ADD_SUCCESS = "Your event was added successfully.";
static string DELETE_SUCCESS = "Your event was deleted successfully";
static string EDIT_SUCCESS = "Your event was edited successfully";
static string UNDO_SUCCESS = "Undo operation was successful";
static string UNDO_FAILURE = "There is nothing to undo";
static string REDO_SUCCESS = "Redo operation was successful";
static string REDO_FAILURE = "There is nothing to redo";
class scheduler
{
private:
static bool instanceFlag;
static scheduler *_scheduler;
scheduler();
vector<string> _result;
vector<task> taskVector;
calender eventCalender;
void convertToString(vector<task> taskVector);
void updateGUI(vector<task> taskVector);
void generalError();
string convertToDate(tm _date);
public:
static scheduler* getInstance();
~scheduler();
vector<string> executeCommand(Action newaction);
//pass in action
};
#endif
|
566989f84d6a68f7c82944b218e1cd8886c2d554 | 3f76b10fc3c54fabe008caef3c01bc26e1af2776 | /touch/KeyDisabler.cpp | 2a0062a7b6307e4da8d17bdef5c2bac14a42ec2c | [] | no_license | LineageOS/android_device_leeco_s2 | 3dff4aa20cd02ff584104ab6cecccbe9e731cfce | 1c12856e5c8d70e756aa48f91d1ad9066ddd9fd0 | refs/heads/lineage-18.1 | 2023-01-08T07:57:25.999697 | 2019-11-11T23:13:51 | 2021-05-26T13:39:47 | 77,757,964 | 49 | 140 | null | 2022-10-02T20:03:36 | 2016-12-31T22:24:48 | C++ | UTF-8 | C++ | false | false | 1,755 | cpp | KeyDisabler.cpp | /*
* Copyright (C) 2019 The LineageOS 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 <fstream>
#include <android-base/logging.h>
#include <utils/Errors.h>
#include "KeyDisabler.h"
namespace vendor {
namespace lineage {
namespace touch {
namespace V1_0 {
namespace implementation {
const static std::string kControlPath = "/proc/touchpanel/capacitive_keys_enable";
// Methods from ::vendor::lineage::touch::V1_0::IKeyDisabler follow.
Return<bool> KeyDisabler::isEnabled() {
int value;
std::ifstream file(kControlPath);
if (!file.is_open()) {
LOG(ERROR) << "Failed to open " << kControlPath << ", error=" << errno
<< " (" << strerror(errno) << ")";
return false;
}
file >> value;
return value == 0;
}
Return<bool> KeyDisabler::setEnabled(bool enabled) {
std::ofstream file(kControlPath);
if (!file.is_open()) {
LOG(ERROR) << "Failed to open " << kControlPath << ", error=" << errno
<< " (" << strerror(errno) << ")";
return false;
}
file << (enabled ? "0" : "1");
return true;
}
} // namespace implementation
} // namespace V1_0
} // namespace touch
} // namespace lineage
} // namespace vendor
|
50472bd4ab5b607bc88a206b2bce1246f018863c | 68d976d941f113d7b20702707559efa5f4e1ae2e | /lectures/09/hands-on/solution/01/Vector.h | 67b9329ea8f3992f7cde8e71ae3094dc52b2d9d6 | [] | no_license | Harvard-IACS/c_cpp_primer | 4b425ec88639021f448b4bb94a393ec1d2f2e5b6 | 29ea56af5dc729e1568811ac728cf70cd380af91 | refs/heads/master | 2022-09-14T10:02:32.402412 | 2022-08-26T15:10:14 | 2022-08-26T15:23:30 | 415,667,469 | 20 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 1,081 | h | Vector.h | // File : Vector.h
// Description: Generic vector class
// Copyright 2021 Harvard University. All Rights Reserved.
#include <cassert>
template <typename T>
class Vector
{
public:
Vector(const int n) : size_(n), data_(new T[n]) {}
~Vector() { free_(); }
int size() const { return size_; }
void resize(const int n)
{
T *tmp = new T[n];
for (int i = 0; i < n; ++i) {
tmp[i] = 0;
}
const int preserve = (n < size_) ? n : size_;
for (int i = 0; i < preserve; ++i) {
tmp[i] = data_[i];
}
free_();
size_ = n;
data_ = tmp;
}
T &operator[](const int i)
{
assert(i >= 0);
assert(i < size_);
return data_[i];
}
const T &operator[](const int i) const
{
assert(i >= 0);
assert(i < size_);
return data_[i];
}
private:
void free_()
{
if (data_) {
delete[] data_;
size_ = 0;
data_ = nullptr;
}
}
int size_;
T *data_;
};
|
71a2eef49d28b1266ab2e523584fcee37ebad462 | 050b70762c3e52f435740698ef264707fb871747 | /module06/ex02/Base.cpp | c004cc5579d11ef671341e641ea17ae6d92a255b | [] | no_license | jciglesias/piscine-cpp | c1546a820a5a2760d46e2ab39d635cfffd666e31 | 1bf6c74a9dd394245fe251fe0f5be57ef2e2e4b3 | refs/heads/main | 2023-08-14T22:02:12.611157 | 2021-09-30T15:03:01 | 2021-09-30T15:03:01 | 375,332,434 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 930 | cpp | Base.cpp | // ************************************************************************** //
// //
// ::: :::::::: //
// Base.cpp :+: :+: :+: //
// +:+ +:+ +:+ //
// By: jiglesia <jiglesia@student.42.fr> +#+ +:+ +#+ //
// +#+#+#+#+#+ +#+ //
// Created: 2021/09/28 13:13:02 by jiglesia #+# #+# //
// Updated: 2021/09/28 13:14:26 by jiglesia ### ########.fr //
// //
// ************************************************************************** //
#include "Base.hpp"
Base::~Base()
{}
|
8088e551d1f76ad33bd3746c1d1553f5910d486f | dd5b5e5ee5476d1eeffc4987e1aeec94e047e6dd | /testCase/cavity/0.055/p | 51fc08adbbfd7997ae9c149730569bb8f1468fed | [] | no_license | Cxb1993/IBM-3D | 5d4feca0321090d570089259a558585a67a512ec | 2fceceb2abf1fc9e80cb2c449cc14a8d54e41b89 | refs/heads/master | 2020-05-24T01:14:02.684839 | 2018-10-23T13:15:20 | 2018-10-23T13:15:20 | 186,721,487 | 1 | 0 | null | 2019-05-15T00:39:55 | 2019-05-15T00:39:55 | null | UTF-8 | C++ | false | false | 585,791 | p | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.055";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
64000
(
-3.44991e-06
-0.107284
-0.217748
-0.262563
-0.314138
-0.354389
-0.389968
-0.429075
-0.456615
-0.499561
-0.513616
-0.569365
-0.591102
-0.637581
-0.657787
-0.697639
-0.678634
-0.750507
-0.637456
-0.893702
-0.552827
-0.937158
-0.765264
-0.90989
-0.774029
-0.751256
-0.666194
-0.585203
-0.602758
-0.536671
-0.611413
-0.618646
-0.711063
-0.742477
-0.805366
-0.814904
-0.856489
-0.850943
-0.87338
-0.867763
-0.106913
-0.205263
-0.275718
-0.280025
-0.322441
-0.355025
-0.387067
-0.42138
-0.445833
-0.483342
-0.498409
-0.533697
-0.549015
-0.567568
-0.577083
-0.586973
-0.641053
-0.697061
-0.595932
-0.790235
-0.500013
-0.843104
-0.724028
-0.839305
-0.706548
-0.681223
-0.609427
-0.550912
-0.549389
-0.532787
-0.583474
-0.586471
-0.677377
-0.707922
-0.772906
-0.782614
-0.827571
-0.832002
-0.863181
-0.862703
-0.240624
-0.275931
-0.314345
-0.309344
-0.330251
-0.360221
-0.385132
-0.41234
-0.43676
-0.47097
-0.500888
-0.539298
-0.554738
-0.628005
-0.673158
-0.727271
-0.724767
-0.792418
-0.704706
-0.925857
-0.702076
-1.07418
-1.03875
-1.19357
-1.11524
-1.1184
-1.07601
-1.01776
-0.997337
-0.918077
-0.919039
-0.863831
-0.884379
-0.840162
-0.84754
-0.837478
-0.858591
-0.858235
-0.879595
-0.879324
-0.315379
-0.324471
-0.342022
-0.333497
-0.342013
-0.362935
-0.397336
-0.425997
-0.467073
-0.494607
-0.519648
-0.588842
-0.671309
-0.739757
-0.779258
-0.827853
-0.864979
-0.956747
-0.912376
-1.15446
-0.9737
-1.35729
-1.37877
-1.55543
-1.5076
-1.52217
-1.48102
-1.42035
-1.36974
-1.27307
-1.20669
-1.09363
-1.03444
-0.971149
-0.922315
-0.886266
-0.911807
-0.885481
-0.90572
-0.903421
-0.362066
-0.351707
-0.380674
-0.371575
-0.37163
-0.375599
-0.417063
-0.427161
-0.493342
-0.563729
-0.698926
-0.821054
-0.867913
-0.965792
-1.0192
-1.09696
-1.13794
-1.21984
-1.1792
-1.42191
-1.2806
-1.64481
-1.70997
-1.87873
-1.8674
-1.87558
-1.84287
-1.76724
-1.71778
-1.60281
-1.52266
-1.3903
-1.26695
-1.12402
-0.994353
-0.957742
-0.944428
-0.932713
-0.941841
-0.939192
-0.398064
-0.391195
-0.40224
-0.438721
-0.437287
-0.446312
-0.475916
-0.614897
-0.769501
-0.907335
-0.981144
-1.05221
-1.11583
-1.17692
-1.22681
-1.30892
-1.30504
-1.44105
-1.41333
-1.63608
-1.51922
-1.86759
-1.93961
-2.08933
-2.07031
-2.07571
-2.03047
-1.968
-1.8947
-1.8022
-1.69309
-1.57851
-1.44216
-1.35898
-1.14044
-1.03838
-1.01414
-0.978618
-0.987431
-0.985234
-0.457321
-0.467401
-0.47395
-0.536672
-0.621926
-0.663426
-0.874194
-0.923548
-1.04069
-1.10922
-1.20539
-1.28699
-1.3563
-1.43119
-1.47686
-1.53426
-1.55891
-1.62035
-1.59244
-1.78075
-1.72094
-1.95048
-2.0919
-2.19276
-2.20376
-2.19576
-2.1654
-2.10837
-2.05363
-1.96488
-1.85443
-1.71757
-1.56475
-1.42973
-1.24264
-1.08354
-1.04694
-1.01148
-1.03072
-1.02734
-0.496457
-0.482524
-0.524902
-0.609277
-0.699868
-0.812244
-1.0108
-1.07342
-1.21785
-1.31522
-1.41144
-1.48893
-1.55929
-1.60858
-1.66366
-1.70655
-1.72082
-1.77326
-1.71285
-1.88134
-1.87857
-1.92393
-2.18326
-2.24809
-2.27944
-2.26527
-2.2422
-2.20296
-2.15862
-2.08216
-1.98524
-1.85184
-1.70985
-1.54839
-1.40071
-1.16756
-1.11298
-1.06816
-1.07726
-1.08246
-0.54733
-0.528546
-0.584534
-0.694257
-0.816071
-1.00865
-1.15182
-1.25328
-1.37246
-1.48017
-1.58213
-1.6611
-1.73359
-1.78495
-1.83445
-1.86811
-1.87607
-1.90103
-1.84122
-1.91518
-1.95323
-1.91015
-2.15718
-2.26604
-2.29988
-2.31811
-2.29604
-2.28319
-2.26014
-2.19871
-2.0993
-1.96546
-1.82108
-1.63113
-1.49034
-1.25541
-1.15178
-1.11698
-1.12052
-1.13361
-0.579373
-0.569853
-0.655772
-0.776798
-0.966098
-1.13268
-1.28779
-1.38586
-1.51425
-1.60434
-1.73552
-1.79642
-1.86409
-1.90513
-1.94504
-1.96732
-1.97491
-1.95638
-1.87143
-1.96941
-1.98942
-1.93513
-1.95833
-2.2579
-2.27564
-2.33342
-2.32905
-2.34106
-2.33608
-2.27535
-2.21113
-2.07879
-1.93541
-1.76083
-1.60576
-1.38802
-1.23482
-1.19115
-1.18112
-1.20034
-0.647634
-0.638028
-0.729352
-0.892423
-1.10649
-1.2635
-1.41308
-1.52862
-1.64845
-1.74754
-1.83299
-1.89499
-1.98814
-2.00066
-2.03231
-2.03746
-2.0564
-1.96895
-1.9268
-1.89291
-1.82452
-1.7423
-1.59043
-2.10837
-2.22082
-2.34194
-2.35745
-2.40098
-2.39804
-2.37279
-2.29214
-2.18878
-2.03143
-1.84248
-1.66495
-1.49131
-1.2997
-1.24637
-1.23389
-1.26018
-0.711112
-0.703388
-0.82431
-1.01737
-1.21414
-1.37742
-1.52471
-1.64254
-1.75858
-1.84314
-1.92828
-1.98794
-2.02471
-2.07912
-2.08352
-2.09354
-2.11061
-1.95417
-2.05328
-1.89543
-1.66866
-1.35748
-1.24296
-1.78412
-2.13952
-2.29673
-2.39669
-2.42925
-2.45677
-2.43447
-2.38847
-2.26539
-2.14081
-1.96906
-1.77555
-1.59863
-1.3913
-1.32684
-1.29974
-1.32921
-0.772231
-0.782837
-0.914281
-1.09741
-1.29689
-1.46687
-1.61933
-1.73481
-1.85278
-1.93254
-2.00678
-2.0469
-2.09353
-2.09339
-2.12318
-2.1353
-2.17004
-2.02413
-2.14344
-1.95288
-1.49885
-0.961379
-1.0694
-1.58954
-2.00467
-2.3195
-2.41844
-2.49827
-2.51126
-2.50843
-2.45179
-2.39303
-2.24733
-2.09533
-1.88801
-1.71226
-1.4866
-1.40186
-1.36851
-1.39899
-0.895219
-0.899364
-1.02451
-1.19921
-1.39172
-1.58115
-1.71186
-1.81972
-1.90823
-1.96931
-2.02287
-2.06181
-2.09236
-2.12526
-2.13749
-2.1834
-2.16618
-2.05893
-2.19744
-1.82538
-1.27134
-1.04721
-1.09485
-1.4604
-1.86117
-2.34419
-2.46103
-2.53514
-2.56418
-2.559
-2.54524
-2.46009
-2.34089
-2.17398
-1.99439
-1.79745
-1.60022
-1.473
-1.43944
-1.4778
-0.88339
-0.903024
-1.03526
-1.2042
-1.40102
-1.5683
-1.72105
-1.82339
-1.93505
-2.00117
-2.06328
-2.08993
-2.13453
-2.1134
-2.10181
-2.12349
-2.11996
-2.14915
-1.97321
-1.59684
-1.38734
-1.31885
-1.29302
-1.38873
-1.69569
-2.09859
-2.43731
-2.48115
-2.59913
-2.62279
-2.61349
-2.56905
-2.45721
-2.3223
-2.1185
-1.93965
-1.73962
-1.58595
-1.51331
-1.54598
-1.13693
-1.1219
-1.2318
-1.37985
-1.55885
-1.70991
-1.83477
-1.92048
-1.98449
-1.99359
-1.99307
-1.99195
-2.03729
-2.0568
-2.10701
-2.1116
-2.05084
-1.82987
-1.6449
-1.48958
-1.47337
-1.42757
-1.40725
-1.42702
-1.57256
-1.90743
-2.39107
-2.4859
-2.59989
-2.62453
-2.61653
-2.58133
-2.4978
-2.37467
-2.20482
-2.00915
-1.82293
-1.72678
-1.62401
-1.66597
-0.787152
-0.847462
-0.987599
-1.15161
-1.34486
-1.49563
-1.65964
-1.74536
-1.85445
-1.94648
-2.01546
-2.0719
-2.10087
-1.99348
-1.82841
-1.55419
-1.49661
-1.27636
-1.27778
-1.29289
-1.35513
-1.35558
-1.38317
-1.40523
-1.46986
-1.72642
-1.97534
-2.42064
-2.52951
-2.61644
-2.69058
-2.68346
-2.61308
-2.50723
-2.33543
-2.1524
-1.94053
-1.77801
-1.66216
-1.66991
-1.26848
-1.23548
-1.30014
-1.40154
-1.54372
-1.66637
-1.79485
-1.88564
-1.96364
-1.84574
-1.60973
-1.37576
-1.22431
-1.06069
-1.04259
-1.04804
-1.1354
-1.12645
-1.17135
-1.21611
-1.26479
-1.29909
-1.3395
-1.38955
-1.43891
-1.72731
-1.99249
-2.18698
-2.41262
-2.378
-2.51562
-2.56256
-2.56354
-2.53784
-2.43579
-2.26199
-2.08941
-1.9895
-1.89307
-1.92492
-0.171641
-0.210498
-0.336166
-0.463127
-0.66865
-0.8068
-0.980287
-0.951451
-0.850985
-0.827267
-0.888346
-0.950126
-0.999293
-0.9978
-0.998158
-0.988262
-1.01716
-1.00825
-1.06778
-1.10841
-1.20568
-1.23052
-1.28779
-1.34604
-1.38444
-1.61455
-1.83203
-2.08253
-2.13773
-2.47566
-2.63814
-2.61215
-2.55577
-2.44192
-2.26208
-2.1461
-2.00064
-1.79876
-1.76982
-1.72791
-0.649559
-0.510224
-0.501941
-0.50245
-0.584263
-0.642838
-0.724018
-0.807053
-0.89544
-0.929752
-0.94662
-0.936664
-0.919255
-0.8983
-0.90178
-0.901882
-0.925079
-0.941344
-0.985032
-1.03223
-1.12655
-1.18723
-1.25319
-1.29208
-1.36841
-1.55786
-1.83623
-2.02908
-2.06903
-2.03882
-1.97259
-2.15668
-2.50483
-2.8159
-2.82949
-2.7225
-2.5655
-2.42657
-2.19561
-2.16095
-0.269001
-0.25467
-0.278131
-0.32307
-0.436149
-0.522836
-0.628045
-0.69547
-0.777735
-0.834867
-0.87689
-0.893773
-0.88497
-0.868257
-0.856016
-0.858547
-0.872182
-0.877846
-0.925461
-0.982249
-1.04781
-1.15781
-1.15278
-1.27374
-1.359
-1.54337
-1.75808
-1.93256
-2.02089
-2.02984
-2.0402
-1.97797
-1.87333
-1.70413
-1.77426
-1.81807
-1.84431
-1.83137
-1.85979
-1.71945
-0.439979
-0.388314
-0.396187
-0.408219
-0.486926
-0.556765
-0.636737
-0.719252
-0.807344
-0.860744
-0.894802
-0.895642
-0.875552
-0.861039
-0.842854
-0.838976
-0.845068
-0.864588
-0.920594
-0.950787
-1.06074
-1.091
-1.23143
-1.26101
-1.37215
-1.52585
-1.69581
-1.85119
-1.95794
-2.00201
-2.01554
-2.0117
-2.07679
-2.02098
-1.97662
-1.84089
-1.74426
-1.6225
-1.6111
-1.74992
-0.383711
-0.369333
-0.374508
-0.396145
-0.469838
-0.54212
-0.623837
-0.715501
-0.810965
-0.878619
-0.91396
-0.914344
-0.901117
-0.887861
-0.872593
-0.865117
-0.856048
-0.83831
-0.893487
-0.926188
-1.01587
-1.11979
-1.1783
-1.31783
-1.35836
-1.51224
-1.63366
-1.7523
-1.85429
-1.90258
-1.95985
-1.94158
-1.95235
-1.86533
-1.87876
-1.79468
-1.75406
-1.6171
-1.58452
-1.69174
-0.437399
-0.406789
-0.431354
-0.439703
-0.517094
-0.577647
-0.660124
-0.745039
-0.835128
-0.905933
-0.944924
-0.954252
-0.947331
-0.944173
-0.928383
-0.896841
-0.885229
-0.854957
-0.956919
-0.96615
-1.07279
-1.08903
-1.2421
-1.29864
-1.4292
-1.52655
-1.63722
-1.72358
-1.83029
-1.87713
-1.96808
-1.96983
-2.05283
-2.00587
-2.05693
-1.95498
-1.94014
-1.7761
-1.70582
-1.7878
-0.462845
-0.435209
-0.469169
-0.47442
-0.551803
-0.607805
-0.698682
-0.786318
-0.884086
-0.955805
-0.995112
-1.01124
-1.00923
-1.01448
-0.992981
-0.967054
-0.967941
-0.947185
-1.05689
-0.966014
-1.09234
-1.1392
-1.23351
-1.32882
-1.4184
-1.54663
-1.62624
-1.6948
-1.77095
-1.80573
-1.87366
-1.8464
-1.8981
-1.8162
-1.86222
-1.75544
-1.77442
-1.65041
-1.64917
-1.77364
-0.491662
-0.452709
-0.498112
-0.502624
-0.578132
-0.639128
-0.717562
-0.794009
-0.88058
-0.959985
-1.02043
-1.0524
-1.0816
-1.0897
-1.0811
-1.06699
-1.08428
-1.05407
-1.14626
-0.966128
-1.12881
-1.13571
-1.2765
-1.34505
-1.46872
-1.54275
-1.67262
-1.74126
-1.8225
-1.83921
-1.97536
-1.98365
-2.11342
-2.04297
-2.13083
-1.98285
-1.99052
-1.79465
-1.72563
-1.68195
-0.536023
-0.503329
-0.539514
-0.554021
-0.621302
-0.689312
-0.771318
-0.865631
-0.960763
-1.03303
-1.08336
-1.12553
-1.13787
-1.16429
-1.18168
-1.16512
-1.19992
-1.15807
-1.24937
-1.03756
-1.18813
-1.20121
-1.30376
-1.37928
-1.48989
-1.56798
-1.69011
-1.79278
-1.86933
-1.95679
-2.07774
-2.06249
-2.18189
-2.11414
-2.25493
-2.1609
-2.2746
-2.13736
-2.17184
-2.1586
-0.547077
-0.523406
-0.529647
-0.568715
-0.625539
-0.698337
-0.776964
-0.872731
-0.959896
-1.03963
-1.10476
-1.16072
-1.20305
-1.23398
-1.26031
-1.26769
-1.30899
-1.23735
-1.2926
-1.0663
-1.21901
-1.22136
-1.32149
-1.37527
-1.52053
-1.54246
-1.74272
-1.7708
-1.92216
-1.93126
-2.04331
-1.96144
-2.08324
-1.94207
-2.10103
-1.92458
-2.06414
-1.85232
-1.90763
-1.81285
-0.605217
-0.58885
-0.588322
-0.613279
-0.689735
-0.756532
-0.852377
-0.937094
-1.02258
-1.0959
-1.15915
-1.219
-1.26985
-1.30506
-1.36119
-1.33547
-1.43195
-1.26875
-1.42584
-1.13406
-1.26815
-1.26296
-1.34246
-1.37741
-1.51079
-1.43777
-1.70156
-1.68794
-1.96001
-1.8717
-2.00383
-1.89186
-2.02979
-1.85891
-2.01556
-1.80231
-1.92321
-1.64454
-1.63986
-1.52588
-0.586858
-0.573003
-0.566109
-0.564298
-0.659379
-0.696133
-0.815394
-0.899299
-0.996007
-1.0726
-1.14968
-1.20994
-1.27384
-1.31824
-1.37664
-1.38616
-1.45448
-1.37938
-1.46308
-1.18066
-1.27209
-1.27373
-1.33644
-1.3338
-1.51138
-1.33356
-1.7864
-1.70989
-1.98596
-1.84568
-2.03969
-1.84311
-2.03292
-1.78218
-2.01812
-1.67971
-1.8567
-1.4706
-1.46465
-1.30701
-0.66389
-0.654161
-0.653171
-0.634111
-0.71433
-0.784766
-0.879722
-0.95796
-1.05062
-1.12816
-1.20712
-1.27243
-1.34426
-1.37146
-1.47592
-1.40108
-1.5425
-1.40971
-1.53907
-1.21281
-1.25376
-1.28157
-1.34023
-1.30098
-1.52642
-1.21295
-1.96389
-1.60913
-2.03269
-1.79947
-2.04764
-1.83489
-2.01585
-1.73042
-1.93757
-1.58644
-1.74699
-1.29827
-1.2298
-0.955171
-0.607391
-0.586776
-0.606472
-0.546191
-0.601495
-0.687411
-0.786316
-0.859538
-0.963098
-1.04374
-1.14605
-1.21606
-1.30649
-1.35425
-1.41942
-1.39491
-1.53517
-1.40997
-1.56446
-1.27147
-1.24943
-1.24164
-1.30319
-1.22926
-1.51429
-1.09658
-2.03521
-1.57644
-2.05601
-1.75966
-2.08967
-1.76119
-2.07989
-1.64266
-1.9594
-1.40629
-1.68624
-1.06912
-0.999879
-0.540603
-0.710965
-0.71249
-0.696074
-0.690394
-0.660027
-0.7588
-0.85281
-0.911787
-1.0068
-1.08502
-1.18531
-1.26631
-1.36962
-1.38351
-1.51508
-1.46379
-1.62728
-1.49676
-1.63655
-1.34752
-1.23878
-1.23354
-1.28292
-1.18135
-1.50006
-1.00174
-2.07672
-1.58049
-2.16579
-1.72779
-2.1441
-1.75482
-2.08064
-1.66096
-1.95433
-1.37327
-1.57922
-0.895801
-0.706556
-0.0478004
-0.598153
-0.576875
-0.591734
-0.542114
-0.543648
-0.545726
-0.707351
-0.733234
-0.859654
-0.934478
-1.07516
-1.14383
-1.27661
-1.33042
-1.47437
-1.44001
-1.62661
-1.49167
-1.63147
-1.33754
-1.14583
-1.14087
-1.18267
-1.05993
-1.41369
-0.894246
-2.01647
-1.62728
-2.1344
-1.73888
-2.17231
-1.68729
-2.11763
-1.50489
-1.97461
-1.17136
-1.49263
-0.443601
-0.330564
0.751527
-0.743367
-0.757311
-0.732797
-0.70375
-0.70074
-0.614889
-0.788002
-0.781837
-0.897519
-0.958992
-1.0706
-1.17654
-1.31511
-1.37274
-1.54061
-1.50409
-1.71186
-1.58577
-1.70556
-1.42298
-1.11024
-1.1123
-1.13441
-0.962243
-1.32024
-0.801006
-1.97451
-1.65215
-2.27414
-1.75773
-2.24908
-1.71366
-2.20144
-1.51299
-2.01633
-1.21794
-1.49484
-0.240299
0.0686321
1.65646
-0.614416
-0.538256
-0.59235
-0.465445
-0.524474
-0.377208
-0.571662
-0.544019
-0.680899
-0.754557
-0.924923
-1.02427
-1.21086
-1.27872
-1.48736
-1.47048
-1.69228
-1.58514
-1.68136
-1.36789
-0.971993
-0.942749
-0.951557
-0.744267
-1.14593
-0.693508
-1.88417
-1.6766
-2.3172
-1.79965
-2.31745
-1.59794
-2.22158
-1.38605
-1.89246
-0.925761
-1.27873
0.432774
0.894974
3.47335
-0.773799
-0.848159
-0.749535
-0.733767
-0.650416
-0.550307
-0.621412
-0.588984
-0.702532
-0.772051
-0.916791
-1.03106
-1.21189
-1.3046
-1.52573
-1.54028
-1.76923
-1.68228
-1.75422
-1.40043
-0.965948
-0.821747
-0.83362
-0.558619
-0.973836
-0.594161
-1.81932
-1.67848
-2.41674
-1.88973
-2.46549
-1.69388
-2.33062
-1.35113
-2.14734
-0.903983
-1.47728
0.765618
1.47882
5.26418
-1.04464
-0.594401
-0.708052
-0.347878
-0.44456
-0.208284
-0.348523
-0.326849
-0.468525
-0.539911
-0.720307
-0.838865
-1.05748
-1.17192
-1.43026
-1.48147
-1.73621
-1.69271
-1.71905
-1.30937
-0.819046
-0.538773
-0.558897
-0.286625
-0.7087
-0.500981
-1.75728
-1.6805
-2.46381
-1.91329
-2.4888
-1.67773
-2.21955
-1.21944
-1.83595
-0.345425
-0.811888
1.92591
3.56008
9.94687
-0.874854
-1.138
-0.945392
-0.888625
-0.485869
-0.401599
-0.357202
-0.337989
-0.446385
-0.515862
-0.665219
-0.784568
-0.996688
-1.11859
-1.38813
-1.46312
-1.76831
-1.77294
-1.80509
-1.26457
-0.821318
-0.378242
-0.358055
-0.0696891
-0.527642
-0.423056
-1.70933
-1.64082
-2.58203
-2.00964
-2.59891
-1.7383
-2.33727
-1.331
-2.01303
-0.676917
-1.06442
2.53716
4.60141
13.5299
-3.37869
-0.624983
-0.947072
-0.451612
-0.37126
-0.124015
-0.200137
-0.185814
-0.32324
-0.404641
-0.584485
-0.704403
-0.928372
-1.05864
-1.34293
-1.45906
-1.83119
-1.89016
-1.78879
-1.15012
-0.771128
-0.102821
-0.057472
0.162803
-0.421867
-0.490083
-1.79357
-1.74062
-2.72965
-2.03324
-2.55689
-1.63161
-2.17996
-1.17364
-1.64197
0.0222763
0.581039
6.39181
11.6022
25.7498
-0.108621
-0.216521
-0.262027
-0.284047
-0.321606
-0.359592
-0.395878
-0.433574
-0.469246
-0.504463
-0.533299
-0.579054
-0.605217
-0.64328
-0.672595
-0.703962
-0.697365
-0.745468
-0.72345
-0.924248
-0.644964
-0.952502
-0.87846
-0.987851
-0.865595
-0.843021
-0.768678
-0.708826
-0.698253
-0.661205
-0.697215
-0.688878
-0.763113
-0.776965
-0.826119
-0.82646
-0.861177
-0.856362
-0.880037
-0.86906
-0.222798
-0.271794
-0.305026
-0.303938
-0.329671
-0.360048
-0.388322
-0.425566
-0.438361
-0.481793
-0.488388
-0.555089
-0.56011
-0.580889
-0.587275
-0.621885
-0.63881
-0.704639
-0.620733
-0.819841
-0.655914
-0.938858
-0.875278
-0.993791
-0.882483
-0.879481
-0.821955
-0.776093
-0.766891
-0.718771
-0.745878
-0.736873
-0.750758
-0.759624
-0.811328
-0.809866
-0.847908
-0.842897
-0.868747
-0.858364
-0.290707
-0.311135
-0.330605
-0.310443
-0.330826
-0.356889
-0.383504
-0.404434
-0.458531
-0.49025
-0.519433
-0.545423
-0.566421
-0.614171
-0.67224
-0.757212
-0.757075
-0.823369
-0.76033
-0.977261
-0.881858
-1.20578
-1.23693
-1.39512
-1.33026
-1.34164
-1.3033
-1.25319
-1.2246
-1.1334
-1.07288
-0.979914
-0.954233
-0.909558
-0.880147
-0.855291
-0.877152
-0.869319
-0.886868
-0.879388
-0.34932
-0.359885
-0.366494
-0.353933
-0.35817
-0.365495
-0.400544
-0.440789
-0.467799
-0.496374
-0.518888
-0.579573
-0.669197
-0.75257
-0.802612
-0.885889
-0.910791
-1.0109
-0.980612
-1.22461
-1.19287
-1.54669
-1.60909
-1.77941
-1.72353
-1.73304
-1.68398
-1.61023
-1.55198
-1.42866
-1.3418
-1.18463
-1.09212
-0.995622
-0.951282
-0.904706
-0.932407
-0.896023
-0.914435
-0.906051
-0.38058
-0.36732
-0.378583
-0.368286
-0.390541
-0.377501
-0.429658
-0.437392
-0.506364
-0.57744
-0.715995
-0.835565
-0.905233
-0.978386
-1.04788
-1.14062
-1.17468
-1.27605
-1.27051
-1.47364
-1.44653
-1.77789
-1.88529
-2.02595
-1.99483
-1.99752
-1.95994
-1.89245
-1.81292
-1.67693
-1.56934
-1.43036
-1.28915
-1.13023
-1.00058
-0.965799
-0.957036
-0.939838
-0.945175
-0.942668
-0.411743
-0.422509
-0.431615
-0.456129
-0.415864
-0.454733
-0.471703
-0.61467
-0.779047
-0.917067
-0.992867
-1.06593
-1.136
-1.19926
-1.2603
-1.34872
-1.37835
-1.48612
-1.46942
-1.67696
-1.6562
-1.96904
-2.0766
-2.21435
-2.18577
-2.16972
-2.12171
-2.02592
-1.97652
-1.83631
-1.7311
-1.59872
-1.46428
-1.35126
-1.13872
-1.06004
-1.033
-0.997704
-0.997277
-0.995727
-0.48521
-0.471449
-0.506346
-0.541976
-0.60977
-0.619955
-0.830913
-0.945102
-1.04791
-1.12327
-1.22265
-1.30417
-1.38113
-1.44875
-1.52128
-1.5684
-1.60198
-1.66127
-1.64159
-1.76593
-1.76861
-2.0239
-2.1566
-2.27401
-2.26626
-2.25043
-2.21695
-2.14479
-2.06543
-1.95205
-1.84567
-1.69683
-1.54922
-1.41483
-1.24192
-1.09767
-1.05711
-1.02772
-1.02875
-1.03229
-0.505166
-0.518204
-0.566232
-0.634171
-0.716804
-0.790624
-1.02298
-1.0978
-1.23104
-1.33057
-1.42161
-1.50931
-1.57832
-1.6518
-1.70154
-1.73864
-1.74748
-1.77755
-1.75112
-1.82116
-1.84655
-1.93846
-2.21332
-2.29664
-2.33016
-2.3098
-2.30102
-2.23049
-2.18931
-2.06394
-1.96389
-1.83806
-1.68643
-1.54097
-1.3816
-1.19915
-1.13868
-1.09754
-1.09212
-1.09608
-0.569571
-0.580514
-0.618349
-0.730157
-0.826887
-0.993486
-1.1553
-1.269
-1.39382
-1.49406
-1.5983
-1.67471
-1.7537
-1.82653
-1.87359
-1.89744
-1.89471
-1.88817
-1.84492
-1.86054
-1.87608
-1.88274
-2.12964
-2.28687
-2.33656
-2.36338
-2.36145
-2.31772
-2.25032
-2.16566
-2.06484
-1.9427
-1.80567
-1.59821
-1.46417
-1.24126
-1.16962
-1.12642
-1.12808
-1.13844
-0.612143
-0.62705
-0.718195
-0.819356
-0.985389
-1.10638
-1.30426
-1.39127
-1.52143
-1.63841
-1.72361
-1.81786
-1.88087
-1.95554
-2.00125
-2.02263
-2.01846
-1.98123
-1.92275
-1.90348
-1.89299
-1.83355
-1.92184
-2.26486
-2.33561
-2.39926
-2.43002
-2.36413
-2.35104
-2.24324
-2.19158
-2.10132
-1.97289
-1.82242
-1.61144
-1.38902
-1.2523
-1.21811
-1.1976
-1.21249
-0.679174
-0.694107
-0.782275
-0.937226
-1.14484
-1.25395
-1.41806
-1.52188
-1.64662
-1.7641
-1.85216
-1.92956
-1.99418
-2.04775
-2.11106
-2.12339
-2.1246
-2.06133
-1.99247
-1.86324
-1.73942
-1.59495
-1.54817
-2.04489
-2.28269
-2.41305
-2.46306
-2.45835
-2.3923
-2.38332
-2.31705
-2.1814
-2.03669
-1.84306
-1.69033
-1.46825
-1.28707
-1.2631
-1.24306
-1.26359
-0.75192
-0.76818
-0.888316
-1.08414
-1.25934
-1.38936
-1.52166
-1.64803
-1.75582
-1.84359
-1.93551
-2.01558
-2.0587
-2.11923
-2.18093
-2.19548
-2.19817
-2.12903
-2.08823
-1.86527
-1.50682
-1.18451
-1.15869
-1.70865
-2.19708
-2.39535
-2.49467
-2.4688
-2.51331
-2.48394
-2.37997
-2.31518
-2.18509
-2.04927
-1.86787
-1.66096
-1.37559
-1.3249
-1.31353
-1.33647
-0.828362
-0.85442
-0.998275
-1.18085
-1.35965
-1.49898
-1.64215
-1.72312
-1.87272
-1.93758
-2.02541
-2.05524
-2.14644
-2.15389
-2.23633
-2.24524
-2.26367
-2.20069
-2.185
-1.87411
-1.30251
-0.837619
-0.931563
-1.47442
-1.98272
-2.38236
-2.476
-2.58395
-2.60223
-2.55714
-2.55271
-2.43575
-2.28872
-2.09677
-1.9065
-1.75148
-1.53372
-1.36664
-1.38483
-1.40292
-0.954351
-0.978766
-1.11461
-1.2891
-1.46685
-1.62237
-1.74772
-1.84135
-1.92286
-1.97864
-2.06492
-2.11614
-2.1579
-2.24092
-2.28574
-2.28542
-2.27059
-2.23581
-2.16627
-1.70434
-1.16238
-0.873458
-0.91716
-1.34213
-1.82611
-2.39977
-2.51212
-2.63818
-2.63205
-2.68195
-2.59742
-2.51293
-2.37091
-2.21415
-1.98467
-1.80711
-1.63505
-1.47304
-1.42165
-1.49315
-0.959584
-0.99287
-1.13062
-1.30049
-1.48493
-1.65671
-1.8072
-1.88959
-1.99428
-2.05452
-2.13751
-2.15199
-2.24056
-2.2009
-2.25319
-2.23721
-2.25578
-2.20438
-1.92366
-1.54019
-1.25186
-1.13822
-1.09085
-1.26288
-1.64952
-2.02782
-2.4766
-2.48833
-2.68787
-2.68045
-2.66841
-2.6062
-2.4912
-2.33706
-2.12868
-1.91895
-1.73562
-1.64365
-1.46804
-1.56608
-1.15735
-1.17787
-1.30759
-1.4597
-1.63606
-1.80898
-1.91039
-1.99383
-2.07158
-2.09676
-2.11817
-2.10424
-2.14306
-2.11443
-2.20932
-2.19514
-2.06939
-1.81214
-1.55966
-1.38695
-1.33233
-1.32816
-1.29046
-1.30207
-1.55303
-1.93105
-2.46715
-2.70843
-2.69286
-2.7202
-2.68995
-2.64927
-2.55023
-2.41355
-2.21821
-2.0281
-1.81089
-1.73311
-1.59851
-1.66251
-0.920971
-0.991787
-1.12763
-1.31013
-1.4962
-1.64687
-1.77914
-1.86836
-1.96352
-2.03121
-2.07852
-2.08651
-2.08914
-1.92737
-1.78376
-1.62994
-1.4837
-1.29908
-1.26559
-1.24853
-1.28449
-1.31989
-1.32928
-1.31008
-1.48813
-1.71364
-2.00857
-2.47769
-2.66424
-2.72046
-2.75675
-2.74411
-2.67366
-2.56328
-2.37492
-2.17976
-1.95508
-1.78993
-1.68824
-1.65662
-1.26492
-1.23211
-1.31057
-1.43249
-1.59012
-1.71094
-1.83108
-1.90069
-1.95664
-1.8506
-1.65233
-1.4353
-1.28051
-1.11204
-1.09644
-1.07437
-1.09188
-1.08728
-1.1175
-1.14812
-1.19881
-1.26155
-1.29914
-1.32413
-1.44727
-1.74376
-1.94156
-2.12637
-2.39905
-2.56372
-2.66448
-2.69709
-2.66338
-2.59751
-2.48108
-2.31628
-2.09839
-1.95786
-1.95202
-1.91335
-0.322693
-0.415058
-0.504528
-0.666063
-0.798378
-0.96403
-1.07822
-1.07189
-0.963418
-0.928559
-0.92657
-0.953674
-0.955982
-0.93592
-0.933778
-0.937011
-0.955484
-0.95697
-1.00738
-1.04939
-1.11536
-1.18858
-1.24551
-1.30413
-1.36991
-1.64036
-1.83851
-1.99553
-2.08549
-2.26595
-2.49051
-2.61955
-2.65459
-2.6396
-2.54643
-2.34604
-2.08321
-1.8804
-1.79074
-1.79294
-0.517338
-0.464012
-0.47958
-0.516618
-0.588736
-0.668397
-0.753098
-0.807689
-0.853576
-0.865851
-0.872453
-0.857627
-0.837484
-0.821959
-0.828313
-0.837654
-0.881246
-0.873416
-0.930411
-0.96939
-1.04734
-1.11653
-1.19805
-1.2279
-1.36448
-1.59076
-1.81216
-1.94777
-2.00366
-2.01626
-2.00905
-2.08839
-2.32751
-2.61766
-2.71429
-2.57043
-2.41106
-2.2587
-2.15958
-2.15481
-0.333312
-0.265597
-0.274242
-0.31084
-0.374829
-0.463687
-0.533456
-0.640699
-0.710247
-0.767048
-0.804585
-0.82502
-0.815489
-0.804035
-0.787439
-0.793878
-0.799993
-0.823065
-0.87318
-0.927931
-0.977142
-1.07019
-1.15437
-1.2278
-1.33264
-1.52695
-1.73932
-1.89434
-1.95555
-1.95339
-1.96026
-1.93132
-1.89364
-1.78222
-1.80774
-1.81057
-1.80973
-1.76509
-1.7976
-1.95535
-0.43469
-0.366698
-0.370336
-0.384181
-0.454192
-0.510042
-0.582978
-0.681917
-0.769768
-0.820219
-0.84677
-0.839638
-0.810708
-0.788007
-0.764635
-0.755817
-0.752928
-0.775631
-0.832716
-0.897821
-1.01243
-1.01105
-1.14865
-1.22629
-1.34522
-1.50327
-1.679
-1.82794
-1.93286
-1.94834
-1.967
-1.9512
-1.99318
-1.93112
-1.8953
-1.78811
-1.71717
-1.58396
-1.53666
-1.633
-0.403731
-0.348702
-0.357745
-0.378045
-0.459891
-0.512105
-0.600202
-0.692063
-0.782813
-0.844613
-0.872401
-0.864104
-0.835179
-0.806972
-0.77274
-0.757477
-0.768318
-0.782568
-0.841629
-0.883516
-0.96917
-1.06761
-1.1287
-1.23519
-1.34094
-1.47945
-1.60487
-1.72604
-1.82797
-1.87271
-1.92448
-1.8935
-1.89186
-1.8007
-1.81153
-1.7263
-1.69035
-1.55376
-1.48027
-1.63306
-0.435113
-0.402985
-0.413514
-0.427829
-0.50579
-0.558414
-0.646702
-0.735819
-0.824471
-0.888294
-0.916474
-0.91042
-0.881074
-0.85186
-0.828893
-0.824027
-0.812983
-0.795836
-0.885981
-0.916517
-1.0152
-1.06267
-1.19682
-1.28438
-1.38061
-1.48594
-1.60339
-1.68985
-1.80138
-1.8463
-1.93958
-1.93221
-2.00803
-1.95695
-2.01918
-1.92682
-1.92004
-1.73851
-1.61531
-1.74126
-0.453359
-0.43812
-0.447714
-0.461888
-0.537661
-0.598891
-0.693966
-0.781258
-0.870689
-0.9382
-0.973318
-0.976955
-0.955547
-0.936976
-0.92407
-0.904495
-0.90377
-0.911208
-1.00347
-0.942651
-1.03449
-1.10048
-1.18189
-1.30728
-1.39208
-1.52796
-1.56736
-1.66647
-1.73641
-1.76273
-1.8299
-1.79691
-1.85071
-1.76167
-1.81688
-1.70556
-1.72957
-1.58783
-1.55571
-1.67279
-0.484596
-0.463329
-0.490838
-0.503568
-0.571904
-0.634576
-0.72534
-0.811122
-0.900575
-0.973639
-1.022
-1.04408
-1.04594
-1.04428
-1.0399
-1.03575
-1.07095
-1.06153
-1.12744
-0.974064
-1.08077
-1.10357
-1.25302
-1.32645
-1.45213
-1.50585
-1.64801
-1.69177
-1.78516
-1.79677
-1.93714
-1.92762
-2.06253
-1.98625
-2.09426
-1.95228
-1.97944
-1.8049
-1.71577
-1.65638
-0.541432
-0.514192
-0.532732
-0.55642
-0.624148
-0.692307
-0.782181
-0.875667
-0.969472
-1.04551
-1.10219
-1.14101
-1.15784
-1.17203
-1.17979
-1.17451
-1.20792
-1.15102
-1.21869
-1.02428
-1.14041
-1.15261
-1.2536
-1.36088
-1.46785
-1.55861
-1.64581
-1.77797
-1.81433
-1.9092
-2.03734
-2.02446
-2.15896
-2.07884
-2.2255
-2.10871
-2.2219
-2.0774
-2.05925
-2.07732
-0.550513
-0.52954
-0.535981
-0.564663
-0.630251
-0.695042
-0.788452
-0.888984
-0.983875
-1.0684
-1.141
-1.19891
-1.23845
-1.26566
-1.28911
-1.28577
-1.32802
-1.24416
-1.30254
-1.06779
-1.17265
-1.18261
-1.28705
-1.34083
-1.48856
-1.52222
-1.70639
-1.74038
-1.88036
-1.88631
-2.04886
-1.96916
-2.11915
-1.97244
-2.15222
-1.96923
-2.11995
-1.89044
-1.8949
-1.80271
-0.611549
-0.594179
-0.596394
-0.61149
-0.693018
-0.75579
-0.854147
-0.935351
-1.03571
-1.12223
-1.20455
-1.27186
-1.32095
-1.35005
-1.38622
-1.36901
-1.43638
-1.32695
-1.4205
-1.11444
-1.23568
-1.1968
-1.30944
-1.32378
-1.4579
-1.43356
-1.64193
-1.72874
-1.94291
-1.8687
-2.00516
-1.89708
-2.07097
-1.89359
-2.07439
-1.85373
-2.00091
-1.68923
-1.71121
-1.51375
-0.59484
-0.574364
-0.578285
-0.562947
-0.660698
-0.71221
-0.822539
-0.910564
-0.995627
-1.0795
-1.17247
-1.25158
-1.31909
-1.35271
-1.39752
-1.38185
-1.45888
-1.37062
-1.46781
-1.18833
-1.24797
-1.2382
-1.31167
-1.28179
-1.4473
-1.31253
-1.75691
-1.72921
-1.99415
-1.82194
-2.05582
-1.85069
-2.054
-1.82108
-2.09027
-1.74397
-1.9839
-1.55292
-1.54444
-1.26512
-0.67256
-0.659106
-0.660313
-0.641689
-0.712644
-0.791736
-0.887567
-0.969162
-1.06059
-1.13293
-1.214
-1.28792
-1.3644
-1.40208
-1.47106
-1.43868
-1.53838
-1.43865
-1.51996
-1.24499
-1.23259
-1.23079
-1.30734
-1.24377
-1.44668
-1.22909
-1.88401
-1.70145
-2.02657
-1.80271
-2.0348
-1.83661
-2.07145
-1.75285
-2.01621
-1.68631
-1.91675
-1.45013
-1.39182
-1.01501
-0.614125
-0.593827
-0.604574
-0.558378
-0.60465
-0.691151
-0.794573
-0.864795
-0.973033
-1.05245
-1.14826
-1.22083
-1.31202
-1.34933
-1.44131
-1.41837
-1.54371
-1.40833
-1.56664
-1.27254
-1.25231
-1.17996
-1.2741
-1.17198
-1.42402
-1.13501
-1.94498
-1.69367
-2.05619
-1.77585
-2.07224
-1.76977
-2.08303
-1.72429
-2.04462
-1.50775
-1.93725
-1.29342
-1.31497
-0.73445
-0.719595
-0.72076
-0.698538
-0.693392
-0.670621
-0.759566
-0.859581
-0.921198
-1.02196
-1.09901
-1.20266
-1.27543
-1.38458
-1.42501
-1.55669
-1.52225
-1.65501
-1.54693
-1.63616
-1.35173
-1.23667
-1.16572
-1.25195
-1.12078
-1.40152
-1.05842
-1.96087
-1.68955
-2.13666
-1.76276
-2.13742
-1.72516
-2.14453
-1.66054
-2.09024
-1.52297
-1.85688
-1.25209
-1.25186
-0.423194
-0.605687
-0.583432
-0.607843
-0.527736
-0.557899
-0.53723
-0.713097
-0.739963
-0.866931
-0.947775
-1.07998
-1.16557
-1.31935
-1.3563
-1.50573
-1.48732
-1.67178
-1.53988
-1.66807
-1.36061
-1.16019
-1.06562
-1.1523
-0.996406
-1.30917
-0.960318
-1.90855
-1.70937
-2.22407
-1.79834
-2.17004
-1.697
-2.12542
-1.54878
-2.05165
-1.33986
-1.91672
-0.873955
-1.10523
0.15965
-0.750927
-0.766382
-0.746226
-0.728383
-0.676636
-0.629901
-0.789511
-0.800227
-0.915704
-0.987017
-1.12128
-1.22453
-1.34262
-1.40792
-1.57711
-1.52261
-1.76914
-1.65539
-1.75471
-1.47142
-1.16871
-1.01765
-1.09827
-0.896369
-1.22096
-0.866944
-1.86838
-1.70341
-2.30548
-1.82844
-2.289
-1.71861
-2.22812
-1.55412
-2.10656
-1.35375
-1.91367
-0.946807
-0.815685
0.813289
-0.606834
-0.556221
-0.616788
-0.47034
-0.565661
-0.351865
-0.585079
-0.563584
-0.71975
-0.78867
-0.966102
-1.04581
-1.24603
-1.31557
-1.54315
-1.5223
-1.78542
-1.66071
-1.7483
-1.4023
-1.04625
-0.840447
-0.907118
-0.684489
-1.04681
-0.73328
-1.79383
-1.69878
-2.37166
-1.86688
-2.38485
-1.66966
-2.23924
-1.40814
-2.04224
-1.03979
-1.68093
-0.281028
-0.448355
2.49775
-0.765509
-0.863451
-0.776391
-0.765451
-0.690025
-0.569706
-0.646692
-0.646585
-0.759104
-0.832146
-0.969009
-1.09125
-1.2674
-1.36294
-1.58512
-1.60621
-1.8751
-1.83001
-1.86765
-1.50242
-1.08819
-0.753128
-0.80424
-0.532356
-0.908314
-0.623584
-1.74594
-1.68166
-2.47123
-1.94223
-2.52109
-1.76726
-2.36962
-1.48361
-2.20125
-1.10762
-1.77737
-0.00401418
0.00793763
4.31959
-0.970105
-0.564437
-0.71448
-0.384207
-0.474888
-0.264229
-0.378813
-0.370236
-0.529993
-0.603218
-0.795804
-0.910816
-1.137
-1.26352
-1.53665
-1.63541
-1.88527
-1.86926
-1.90233
-1.41398
-0.94312
-0.517693
-0.545224
-0.234996
-0.661263
-0.497787
-1.693
-1.6755
-2.53313
-1.98175
-2.59649
-1.73155
-2.31835
-1.34174
-2.00603
-0.67174
-1.14248
1.22926
2.42601
9.603
-0.639522
-1.08717
-0.975753
-0.951995
-0.679264
-0.437396
-0.454163
-0.42251
-0.524406
-0.592877
-0.74669
-0.884626
-1.11014
-1.23486
-1.53221
-1.62438
-1.97708
-2.00966
-2.03917
-1.51141
-1.06188
-0.430149
-0.3649
-0.0328539
-0.480235
-0.37649
-1.65323
-1.63014
-2.64118
-2.08355
-2.66891
-1.75843
-2.35592
-1.34741
-2.03654
-0.780072
-1.17702
2.1387
4.80412
15.8227
-3.21608
-0.497008
-0.814536
-0.370611
-0.335037
-0.141384
-0.213038
-0.206793
-0.360347
-0.450826
-0.628302
-0.744863
-0.981029
-1.15699
-1.48568
-1.65893
-2.03
-2.1284
-2.04147
-1.36823
-0.920738
-0.120176
-0.0389466
0.231628
-0.338846
-0.417733
-1.71589
-1.72733
-2.80625
-2.10039
-2.61249
-1.65144
-2.19074
-1.15051
-1.62983
0.0873918
0.73716
6.6142
14.5243
32.2134
-0.236727
-0.280126
-0.293565
-0.29798
-0.329562
-0.361375
-0.396685
-0.433798
-0.459966
-0.508173
-0.537001
-0.584355
-0.610092
-0.665441
-0.680564
-0.722153
-0.746312
-0.799522
-0.698196
-0.907333
-0.594845
-1.00832
-0.920475
-1.04325
-0.912572
-0.865667
-0.775234
-0.68964
-0.669187
-0.608172
-0.669751
-0.656321
-0.70961
-0.754954
-0.816549
-0.829407
-0.868855
-0.847872
-0.871171
-0.864183
-0.292225
-0.311188
-0.320828
-0.305295
-0.333109
-0.354631
-0.384483
-0.411283
-0.440261
-0.494953
-0.49808
-0.53007
-0.546748
-0.571721
-0.586191
-0.647429
-0.662677
-0.72332
-0.629897
-0.833192
-0.673067
-1.00479
-1.00759
-1.15045
-1.039
-1.00336
-0.932924
-0.869633
-0.851289
-0.812488
-0.806368
-0.803396
-0.823742
-0.770495
-0.815755
-0.803063
-0.840284
-0.836232
-0.860228
-0.852514
-0.321209
-0.327366
-0.334747
-0.314197
-0.332901
-0.340532
-0.391807
-0.405709
-0.43437
-0.462503
-0.495511
-0.531841
-0.560911
-0.632167
-0.732592
-0.812928
-0.810096
-0.876206
-0.805041
-1.05111
-0.973521
-1.37348
-1.44443
-1.6311
-1.56775
-1.55285
-1.49158
-1.41243
-1.36182
-1.25324
-1.20721
-1.08448
-1.05818
-0.948967
-0.909236
-0.864431
-0.878991
-0.868664
-0.88148
-0.874834
-0.356148
-0.352176
-0.351064
-0.334199
-0.355689
-0.363875
-0.381092
-0.411743
-0.447787
-0.47919
-0.508199
-0.581511
-0.691931
-0.807274
-0.902698
-0.957998
-0.992489
-1.08518
-1.06971
-1.33468
-1.34769
-1.71841
-1.8399
-2.02464
-1.97394
-1.95578
-1.88049
-1.78452
-1.71286
-1.56952
-1.44696
-1.26478
-1.16802
-1.0669
-0.944629
-0.910836
-0.90712
-0.893861
-0.8996
-0.894328
-0.358883
-0.353867
-0.376017
-0.352872
-0.375228
-0.363528
-0.403173
-0.416965
-0.485522
-0.570838
-0.729583
-0.874501
-0.951475
-1.06069
-1.15886
-1.23401
-1.27693
-1.37262
-1.37454
-1.64061
-1.67529
-2.02731
-2.14175
-2.30826
-2.29631
-2.26281
-2.1794
-2.05722
-1.95605
-1.7898
-1.67196
-1.49461
-1.32706
-1.13971
-1.02347
-0.963092
-0.958127
-0.937992
-0.939674
-0.939004
-0.389875
-0.395222
-0.38396
-0.405401
-0.400758
-0.424959
-0.450961
-0.587649
-0.788789
-0.945745
-1.02982
-1.11454
-1.18832
-1.28408
-1.37679
-1.42952
-1.51414
-1.5874
-1.59378
-1.81434
-1.81876
-2.11638
-2.253
-2.39198
-2.37008
-2.36047
-2.27534
-2.19834
-2.08845
-1.95855
-1.8226
-1.65573
-1.48862
-1.3235
-1.1188
-1.03496
-1.00225
-0.975874
-0.978562
-0.979644
-0.437943
-0.4253
-0.458227
-0.486804
-0.538552
-0.587147
-0.803849
-0.964534
-1.06924
-1.15819
-1.25961
-1.35533
-1.43149
-1.54046
-1.60209
-1.65684
-1.68077
-1.75253
-1.73692
-1.88977
-1.90306
-2.19287
-2.31897
-2.43218
-2.43757
-2.4272
-2.37698
-2.28323
-2.21497
-2.07408
-1.97465
-1.82344
-1.61143
-1.48864
-1.22469
-1.10173
-1.05249
-1.02733
-1.02387
-1.02988
-0.457217
-0.470505
-0.517646
-0.59491
-0.686726
-0.839056
-1.03246
-1.14018
-1.26545
-1.37375
-1.46636
-1.55283
-1.65612
-1.72901
-1.78944
-1.82621
-1.84247
-1.85199
-1.82412
-1.8772
-1.90843
-1.99395
-2.29522
-2.38836
-2.4482
-2.44986
-2.43853
-2.38446
-2.26375
-2.18872
-2.07837
-1.94334
-1.76915
-1.58381
-1.42453
-1.14623
-1.10491
-1.06322
-1.07011
-1.07691
-0.507509
-0.524196
-0.583576
-0.688663
-0.825897
-1.03583
-1.19765
-1.3209
-1.42948
-1.5417
-1.64533
-1.73763
-1.83521
-1.91502
-1.96205
-1.98944
-1.98263
-1.9668
-1.90863
-1.90726
-1.88755
-1.87158
-2.15678
-2.33777
-2.44103
-2.48248
-2.53017
-2.45335
-2.43665
-2.2991
-2.18024
-2.052
-1.90201
-1.70225
-1.51055
-1.29768
-1.13657
-1.13778
-1.12086
-1.13671
-0.564706
-0.586289
-0.670185
-0.795933
-0.997663
-1.19038
-1.34291
-1.47225
-1.58403
-1.69133
-1.78275
-1.87432
-1.97613
-2.05465
-2.10325
-2.12816
-2.12794
-2.08389
-2.00711
-1.93385
-1.84485
-1.70114
-1.79476
-2.26815
-2.42706
-2.51734
-2.58774
-2.61437
-2.5068
-2.41513
-2.30785
-2.15193
-1.99961
-1.80136
-1.64729
-1.38523
-1.25172
-1.174
-1.18134
-1.19508
-0.646151
-0.670375
-0.760924
-0.922514
-1.15645
-1.31936
-1.47059
-1.60356
-1.72311
-1.81921
-1.91477
-1.99918
-2.1012
-2.1783
-2.22533
-2.24538
-2.24798
-2.19493
-2.09696
-1.90779
-1.7029
-1.4568
-1.46748
-2.01773
-2.38203
-2.59708
-2.67457
-2.6859
-2.65137
-2.56363
-2.45681
-2.30795
-2.11493
-1.88191
-1.69191
-1.50216
-1.30536
-1.20287
-1.24037
-1.25771
-0.745956
-0.770119
-0.869743
-1.10015
-1.27983
-1.44201
-1.58435
-1.71805
-1.8319
-1.937
-2.02488
-2.10635
-2.19967
-2.2767
-2.30975
-2.32745
-2.33482
-2.28706
-2.19593
-1.88202
-1.43776
-1.1012
-1.12065
-1.64355
-2.30564
-2.5292
-2.73737
-2.76837
-2.74241
-2.68797
-2.59231
-2.43786
-2.24952
-2.01678
-1.76743
-1.60753
-1.38922
-1.32967
-1.28347
-1.33069
-0.851621
-0.854091
-1.03321
-1.21117
-1.3872
-1.53997
-1.69188
-1.81358
-1.94298
-2.03616
-2.13517
-2.21403
-2.3038
-2.34507
-2.36895
-2.3883
-2.40216
-2.36555
-2.26973
-1.83217
-1.22642
-0.864163
-0.960881
-1.46225
-1.9113
-2.56689
-2.72081
-2.82386
-2.80428
-2.76644
-2.6588
-2.53719
-2.35825
-2.15987
-1.86742
-1.69289
-1.4776
-1.39127
-1.34765
-1.40543
-0.985964
-1.0281
-1.14159
-1.33658
-1.5033
-1.69683
-1.79465
-1.91942
-2.02623
-2.12163
-2.20673
-2.29157
-2.36804
-2.4028
-2.41648
-2.42486
-2.40943
-2.38755
-2.1734
-1.62601
-1.12583
-0.897732
-0.959772
-1.42777
-1.93719
-2.60684
-2.79213
-2.83959
-2.85492
-2.79111
-2.71903
-2.60678
-2.45681
-2.25773
-2.03148
-1.75701
-1.59627
-1.45249
-1.41168
-1.47418
-1.00489
-1.05605
-1.20009
-1.35605
-1.56541
-1.72499
-1.86444
-1.98015
-2.14225
-2.20434
-2.31794
-2.38155
-2.41671
-2.39843
-2.38183
-2.38327
-2.37885
-2.25803
-1.86196
-1.44287
-1.16598
-1.01605
-1.0139
-1.33545
-1.76859
-2.19896
-2.709
-2.79811
-2.83203
-2.82437
-2.77012
-2.70072
-2.57194
-2.40765
-2.16693
-1.94367
-1.67895
-1.58094
-1.52497
-1.54755
-1.1903
-1.23425
-1.36725
-1.53047
-1.69533
-1.8294
-1.97822
-2.11088
-2.19895
-2.25214
-2.3181
-2.28565
-2.31752
-2.30987
-2.32317
-2.28413
-2.08105
-1.75643
-1.45367
-1.28464
-1.1833
-1.11661
-1.09365
-1.30084
-1.65435
-1.92844
-2.37048
-2.73425
-2.81245
-2.81785
-2.79237
-2.74089
-2.63669
-2.48454
-2.27386
-2.03555
-1.81371
-1.66758
-1.61713
-1.67936
-0.991476
-1.06509
-1.22263
-1.40235
-1.61306
-1.75797
-1.89445
-1.97785
-2.07033
-2.14213
-2.18818
-2.23554
-2.23216
-2.07568
-1.89487
-1.65038
-1.41801
-1.25683
-1.20361
-1.17206
-1.15393
-1.14061
-1.14856
-1.26023
-1.55034
-1.76821
-2.00321
-2.37601
-2.69757
-2.82066
-2.85027
-2.83139
-2.75543
-2.63286
-2.42992
-2.19194
-1.9348
-1.78038
-1.67043
-1.68613
-1.25625
-1.23475
-1.32501
-1.46561
-1.64457
-1.7819
-1.89934
-1.97108
-2.01088
-1.9465
-1.75047
-1.50608
-1.44718
-1.19939
-1.14972
-1.07617
-1.05649
-1.03866
-1.05957
-1.07887
-1.09433
-1.10992
-1.16657
-1.21078
-1.50231
-1.72531
-1.89616
-2.07056
-2.2974
-2.55963
-2.73393
-2.79393
-2.75819
-2.65971
-2.51351
-2.28522
-2.10104
-1.96687
-1.88156
-1.99344
-0.381894
-0.454644
-0.571033
-0.727701
-0.940701
-1.05848
-1.17861
-1.17718
-1.08636
-1.00729
-0.970561
-0.960572
-0.976913
-0.953457
-0.895857
-0.880307
-0.886994
-0.898273
-0.945452
-0.978102
-1.02698
-1.05623
-1.15579
-1.21167
-1.44004
-1.6605
-1.82333
-1.9445
-2.05009
-2.18545
-2.40682
-2.59786
-2.73145
-2.725
-2.57543
-2.36928
-2.14333
-1.90924
-1.80347
-1.82307
-0.450878
-0.415977
-0.452702
-0.509927
-0.635101
-0.702075
-0.79638
-0.845738
-0.875559
-0.866754
-0.85458
-0.830637
-0.808853
-0.801683
-0.792504
-0.771557
-0.774556
-0.795492
-0.845023
-0.885783
-0.955424
-0.996886
-1.08551
-1.18884
-1.38198
-1.62497
-1.78675
-1.89969
-1.96261
-1.99595
-2.02492
-2.07027
-2.25541
-2.53129
-2.71998
-2.63637
-2.49753
-2.35506
-2.27263
-2.40051
-0.295652
-0.231307
-0.248828
-0.290845
-0.406965
-0.472433
-0.582755
-0.645445
-0.709355
-0.753913
-0.78376
-0.793558
-0.776224
-0.750979
-0.723967
-0.727803
-0.713243
-0.713385
-0.755037
-0.811263
-0.893249
-0.963855
-1.05838
-1.17945
-1.33057
-1.54423
-1.74294
-1.84687
-1.91026
-1.92657
-1.95446
-1.94368
-1.93551
-1.84374
-1.83113
-1.84764
-1.84225
-1.79963
-1.80673
-1.93563
-0.391871
-0.327409
-0.334158
-0.356887
-0.452099
-0.514338
-0.608151
-0.689554
-0.771136
-0.815324
-0.836131
-0.823117
-0.770422
-0.731614
-0.682235
-0.653971
-0.640689
-0.671842
-0.717047
-0.773676
-0.855652
-0.943574
-1.07539
-1.19509
-1.33215
-1.50472
-1.68218
-1.82062
-1.90535
-1.91368
-1.95201
-1.9487
-2.00259
-1.97251
-1.93771
-1.86502
-1.8006
-1.67975
-1.60595
-1.6666
-0.386051
-0.324408
-0.338781
-0.363482
-0.460358
-0.526146
-0.633809
-0.710658
-0.795734
-0.855322
-0.874611
-0.848068
-0.790546
-0.726358
-0.654682
-0.604687
-0.58911
-0.618918
-0.701352
-0.754473
-0.886021
-0.974592
-1.05137
-1.19104
-1.32745
-1.46503
-1.60496
-1.71544
-1.82251
-1.86625
-1.92542
-1.89792
-1.90001
-1.81275
-1.83454
-1.78228
-1.76438
-1.61909
-1.56017
-1.64255
-0.436067
-0.375963
-0.396181
-0.416121
-0.510335
-0.579072
-0.686537
-0.761342
-0.847643
-0.905929
-0.925033
-0.897531
-0.8319
-0.755184
-0.673425
-0.642827
-0.657316
-0.672117
-0.778142
-0.820946
-0.933724
-0.993043
-1.14325
-1.24668
-1.38681
-1.47559
-1.59626
-1.68728
-1.79883
-1.84519
-1.94229
-1.94439
-2.02568
-1.99247
-2.07075
-2.01186
-2.01856
-1.84145
-1.78618
-1.79278
-0.469407
-0.415077
-0.434793
-0.451131
-0.543436
-0.619685
-0.72265
-0.80474
-0.897046
-0.959903
-0.986911
-0.967574
-0.911033
-0.838624
-0.789668
-0.784221
-0.797927
-0.83477
-0.932286
-0.874848
-0.964839
-1.03524
-1.12593
-1.25967
-1.40263
-1.49065
-1.62471
-1.63622
-1.74816
-1.76106
-1.83856
-1.79996
-1.85468
-1.77291
-1.83458
-1.73633
-1.77739
-1.66152
-1.63062
-1.67137
-0.494071
-0.455732
-0.478978
-0.490793
-0.573568
-0.649406
-0.750027
-0.837917
-0.931666
-1.00282
-1.04658
-1.05651
-1.03771
-1.01255
-1.00392
-1.02515
-1.09717
-1.08198
-1.12985
-0.941551
-1.02436
-1.06022
-1.19126
-1.30569
-1.42477
-1.54167
-1.63682
-1.70541
-1.83612
-1.81096
-1.95214
-1.94999
-2.08632
-2.01588
-2.12458
-1.97992
-2.02824
-1.78874
-1.75172
-1.68385
-0.533629
-0.50407
-0.53167
-0.560803
-0.633368
-0.704391
-0.807286
-0.904673
-1.00557
-1.08476
-1.14642
-1.18587
-1.20629
-1.22886
-1.25891
-1.28514
-1.32457
-1.27066
-1.28991
-1.01379
-1.07305
-1.09154
-1.19436
-1.32593
-1.44921
-1.53141
-1.68621
-1.74993
-1.89011
-1.94078
-2.06254
-2.03721
-2.1737
-2.09606
-2.22898
-2.13028
-2.24172
-2.10951
-2.09292
-2.09122
-0.555768
-0.521347
-0.532197
-0.566559
-0.641
-0.7153
-0.820236
-0.92349
-1.02994
-1.12116
-1.20426
-1.27177
-1.32412
-1.36642
-1.39926
-1.40029
-1.42333
-1.3226
-1.36099
-1.06027
-1.12759
-1.11491
-1.22161
-1.30218
-1.44835
-1.50119
-1.68053
-1.74193
-1.9475
-1.9774
-2.05973
-1.97615
-2.13465
-1.97709
-2.15529
-1.95134
-2.0799
-1.8485
-1.86599
-1.7971
-0.615596
-0.589322
-0.594081
-0.614123
-0.705967
-0.770666
-0.877858
-0.994743
-1.09775
-1.19379
-1.28132
-1.35684
-1.41403
-1.45076
-1.48705
-1.46996
-1.52326
-1.41444
-1.46433
-1.14055
-1.19417
-1.15344
-1.2408
-1.28081
-1.42442
-1.41651
-1.65493
-1.75481
-1.97868
-1.91221
-2.0524
-1.91544
-2.06472
-1.91693
-2.06844
-1.84381
-1.95793
-1.66873
-1.59649
-1.47409
-0.597847
-0.568638
-0.574322
-0.560064
-0.671696
-0.729121
-0.840453
-0.936764
-1.05267
-1.15348
-1.2534
-1.32986
-1.39795
-1.43319
-1.47907
-1.46285
-1.53854
-1.44532
-1.51938
-1.19825
-1.22006
-1.16149
-1.2258
-1.24097
-1.40428
-1.33089
-1.75031
-1.7549
-2.01905
-1.89626
-2.074
-1.85496
-2.0892
-1.8169
-2.09239
-1.74987
-1.9613
-1.56898
-1.54465
-1.25846
-0.678125
-0.658257
-0.65884
-0.636449
-0.720484
-0.804013
-0.900971
-0.988511
-1.07555
-1.1752
-1.27452
-1.3564
-1.42816
-1.46438
-1.53486
-1.50758
-1.61295
-1.49843
-1.59753
-1.28425
-1.25312
-1.1924
-1.22785
-1.20349
-1.40852
-1.26041
-1.85395
-1.74872
-2.05196
-1.86275
-2.06449
-1.83985
-2.03437
-1.81408
-1.98032
-1.68233
-1.89301
-1.48634
-1.46141
-1.05976
-0.617375
-0.58909
-0.598556
-0.553215
-0.600452
-0.699981
-0.800726
-0.872068
-0.978791
-1.05099
-1.16407
-1.24589
-1.34818
-1.40006
-1.50546
-1.48363
-1.61642
-1.49511
-1.61575
-1.3095
-1.22732
-1.14895
-1.22502
-1.13009
-1.36933
-1.15849
-1.88224
-1.72832
-2.08944
-1.83366
-2.10716
-1.76975
-2.09091
-1.65908
-2.03252
-1.54402
-1.85319
-1.33148
-1.35581
-0.816076
-0.729315
-0.71697
-0.706186
-0.682776
-0.67097
-0.753284
-0.860836
-0.919074
-1.01736
-1.09487
-1.18789
-1.28097
-1.38696
-1.44018
-1.57433
-1.55859
-1.71592
-1.59495
-1.70757
-1.40584
-1.25793
-1.14052
-1.20658
-1.07443
-1.34173
-1.06861
-1.91697
-1.73533
-2.19439
-1.83688
-2.16697
-1.77056
-2.10895
-1.65868
-1.99525
-1.47276
-1.81417
-1.21302
-1.20844
-0.524271
-0.609603
-0.584002
-0.589532
-0.529602
-0.535439
-0.525053
-0.698198
-0.731489
-0.856926
-0.931449
-1.0695
-1.15725
-1.29933
-1.36429
-1.52647
-1.51231
-1.71709
-1.60227
-1.72176
-1.35828
-1.17319
-1.03623
-1.08921
-0.940224
-1.23943
-0.934891
-1.87534
-1.72668
-2.22591
-1.85534
-2.21682
-1.71168
-2.14366
-1.52997
-1.98618
-1.25117
-1.65789
-0.832548
-0.899633
0.0642048
-0.772213
-0.77263
-0.753549
-0.692025
-0.673016
-0.596351
-0.757082
-0.776792
-0.892309
-0.965893
-1.09394
-1.20773
-1.35931
-1.42249
-1.59857
-1.59213
-1.81579
-1.724
-1.83509
-1.50645
-1.1791
-1.00657
-1.10654
-0.84121
-1.16214
-0.831786
-1.86064
-1.74014
-2.35787
-1.91046
-2.34449
-1.76207
-2.23991
-1.57117
-2.06409
-1.26496
-1.62769
-0.643763
-0.595916
0.818737
-0.599524
-0.550969
-0.60085
-0.473606
-0.474678
-0.346007
-0.512679
-0.541115
-0.687783
-0.774477
-0.949355
-1.06261
-1.25241
-1.32994
-1.5468
-1.54286
-1.82481
-1.73706
-1.84286
-1.48255
-1.06866
-0.827427
-0.886981
-0.613101
-0.975606
-0.755216
-1.79875
-1.74138
-2.37702
-1.9107
-2.40754
-1.70725
-2.24721
-1.42582
-1.99995
-1.00923
-1.38421
-0.00935552
0.275676
2.57901
-0.777056
-0.855469
-0.777915
-0.72584
-0.676385
-0.479358
-0.570577
-0.597808
-0.719943
-0.808741
-0.972154
-1.09746
-1.29548
-1.39728
-1.63988
-1.67059
-1.96018
-1.90515
-1.98064
-1.57259
-1.07347
-0.717279
-0.776598
-0.415856
-0.908916
-0.589022
-1.74748
-1.71661
-2.50585
-2.00751
-2.54056
-1.80883
-2.38762
-1.50182
-2.16578
-1.07664
-1.55323
0.285991
0.92403
4.84974
-0.979064
-0.568325
-0.691775
-0.341151
-0.392303
-0.187773
-0.289688
-0.321158
-0.489446
-0.591828
-0.792896
-0.932468
-1.17307
-1.31168
-1.60576
-1.68794
-1.99116
-1.96564
-1.98949
-1.51061
-0.983772
-0.527231
-0.502476
-0.156375
-0.602824
-0.462851
-1.68384
-1.69928
-2.58802
-2.01032
-2.55451
-1.74204
-2.28396
-1.31318
-1.9016
-0.655925
-0.938365
1.52935
3.4537
10.4671
-0.600405
-1.04513
-0.942902
-0.902257
-0.572058
-0.391867
-0.344386
-0.364573
-0.486812
-0.591081
-0.774425
-0.916089
-1.15879
-1.31653
-1.64386
-1.76725
-2.08522
-2.10582
-2.11205
-1.54669
-1.07208
-0.436204
-0.358608
0.0145388
-0.377789
-0.310749
-1.61197
-1.66311
-2.70666
-2.14681
-2.7234
-1.81988
-2.34441
-1.31183
-1.93963
-0.678575
-0.975716
2.3969
5.96281
17.0922
-3.19806
-0.412633
-0.676551
-0.211436
-0.153466
0.0101058
-0.0793743
-0.11113
-0.297639
-0.420909
-0.626567
-0.770243
-1.03336
-1.22987
-1.61158
-1.80349
-2.14326
-2.16829
-2.04512
-1.35113
-0.865575
-0.0965965
0.0329822
0.36528
-0.11787
-0.269614
-1.65363
-1.76066
-2.89438
-2.21516
-2.74429
-1.65307
-2.14057
-1.08137
-1.47545
0.237719
1.10719
7.03471
16.1743
34.2571
-0.320191
-0.335553
-0.333268
-0.328048
-0.347473
-0.376586
-0.40929
-0.439429
-0.480417
-0.522856
-0.561361
-0.606475
-0.651
-0.678856
-0.738235
-0.748235
-0.744464
-0.790451
-0.690451
-0.860626
-0.644795
-0.902131
-0.878413
-0.96718
-0.817813
-0.758888
-0.648265
-0.542043
-0.491531
-0.420208
-0.520284
-0.530104
-0.687864
-0.716861
-0.798647
-0.824036
-0.874504
-0.869634
-0.883419
-0.86678
-0.350288
-0.355375
-0.350714
-0.336329
-0.34703
-0.369074
-0.386354
-0.438249
-0.456761
-0.48707
-0.5053
-0.540976
-0.565003
-0.58856
-0.628105
-0.700296
-0.683439
-0.741591
-0.641596
-0.851411
-0.736396
-1.00665
-1.00284
-1.15209
-1.05073
-1.04302
-0.950741
-0.863653
-0.814265
-0.748782
-0.758031
-0.744725
-0.811113
-0.828679
-0.829682
-0.822177
-0.856784
-0.851596
-0.870118
-0.857956
-0.359364
-0.356875
-0.347499
-0.339286
-0.341224
-0.369652
-0.384766
-0.402753
-0.440573
-0.472821
-0.513816
-0.552358
-0.597589
-0.692148
-0.81342
-0.859223
-0.847949
-0.908831
-0.844968
-1.07725
-1.05726
-1.37067
-1.49821
-1.68362
-1.60787
-1.56617
-1.48806
-1.40558
-1.35194
-1.24472
-1.2015
-1.06765
-1.03392
-0.951015
-0.952844
-0.874823
-0.893291
-0.878221
-0.887563
-0.877942
-0.375557
-0.368941
-0.349398
-0.373117
-0.365789
-0.365942
-0.376691
-0.416962
-0.45592
-0.490149
-0.528831
-0.612971
-0.763997
-0.925027
-0.969062
-1.02712
-1.04286
-1.14458
-1.12141
-1.4012
-1.40896
-1.77104
-1.88564
-2.06772
-1.99515
-1.97106
-1.89216
-1.81016
-1.73213
-1.60575
-1.50557
-1.33472
-1.18576
-1.0351
-1.01509
-0.934047
-0.936899
-0.906904
-0.909771
-0.903014
-0.372985
-0.366632
-0.366573
-0.363226
-0.366082
-0.359104
-0.40082
-0.421835
-0.497663
-0.595411
-0.786619
-0.945766
-1.05675
-1.1696
-1.22864
-1.29649
-1.32891
-1.41919
-1.41364
-1.65396
-1.70369
-2.02628
-2.18086
-2.32139
-2.29107
-2.23716
-2.16474
-2.06333
-1.97313
-1.82536
-1.7229
-1.5474
-1.39219
-1.11981
-0.986227
-0.957791
-0.948477
-0.934987
-0.934218
-0.93719
-0.365667
-0.384587
-0.383684
-0.391183
-0.387174
-0.411396
-0.438822
-0.58265
-0.819233
-0.997066
-1.09024
-1.17411
-1.28147
-1.38028
-1.43487
-1.50831
-1.53734
-1.65653
-1.63497
-1.8425
-1.89269
-2.14665
-2.31865
-2.43373
-2.41511
-2.40075
-2.3278
-2.25667
-2.15527
-2.02445
-1.89797
-1.74341
-1.5749
-1.34858
-1.10605
-1.04144
-1.0213
-0.993077
-0.989658
-0.990682
-0.394274
-0.401832
-0.427799
-0.440248
-0.484396
-0.536922
-0.778976
-0.995872
-1.10727
-1.20603
-1.31973
-1.41189
-1.52159
-1.60192
-1.6782
-1.72669
-1.74429
-1.7998
-1.7775
-1.91008
-1.90027
-2.28226
-2.28319
-2.48608
-2.49384
-2.4975
-2.46969
-2.37201
-2.2799
-2.11949
-2.02375
-1.83495
-1.66993
-1.50378
-1.21828
-1.07985
-0.989838
-1.00327
-1.00791
-1.0188
-0.405286
-0.445853
-0.498865
-0.582924
-0.67741
-0.845129
-1.04882
-1.16918
-1.30435
-1.41663
-1.51714
-1.60348
-1.70665
-1.76985
-1.82796
-1.87609
-1.88353
-1.89624
-1.85324
-1.86178
-1.85365
-1.87142
-2.29051
-2.43049
-2.56985
-2.57566
-2.58739
-2.51756
-2.42478
-2.28271
-2.10178
-1.99403
-1.78007
-1.63457
-1.38546
-1.17225
-1.13492
-1.08947
-1.07895
-1.08807
-0.440831
-0.485936
-0.556488
-0.678429
-0.82492
-1.04155
-1.21027
-1.34911
-1.47247
-1.58236
-1.69793
-1.79621
-1.89026
-1.96509
-2.01559
-2.04563
-2.03914
-2.01213
-1.94504
-1.89705
-1.81114
-1.71647
-2.15787
-2.30597
-2.54631
-2.64716
-2.67073
-2.63037
-2.53366
-2.3859
-2.23681
-2.04001
-1.91482
-1.66375
-1.53604
-1.20803
-1.14211
-1.05486
-1.10434
-1.12149
-0.503424
-0.556266
-0.649314
-0.798286
-1.01602
-1.20129
-1.36368
-1.48048
-1.61921
-1.73008
-1.83432
-1.94698
-2.03515
-2.10542
-2.15185
-2.18352
-2.18622
-2.14614
-2.05971
-1.92507
-1.76794
-1.48361
-1.57757
-2.44651
-2.5929
-2.73711
-2.76738
-2.72195
-2.64285
-2.52034
-2.37948
-2.22316
-2.02354
-1.83734
-1.62531
-1.40384
-1.20505
-1.22457
-1.1731
-1.20624
-0.584678
-0.639245
-0.744555
-0.936191
-1.17375
-1.33722
-1.48085
-1.62499
-1.74315
-1.86274
-1.97249
-2.08953
-2.17801
-2.24122
-2.2859
-2.31316
-2.32218
-2.28388
-2.1628
-1.92357
-1.64746
-1.333
-1.6252
-2.10319
-2.5769
-2.73543
-2.82665
-2.7843
-2.7152
-2.62529
-2.51707
-2.36012
-2.17135
-1.9276
-1.69916
-1.48974
-1.26251
-1.22679
-1.20735
-1.2462
-0.699239
-0.758352
-0.885057
-1.11811
-1.31981
-1.47394
-1.62432
-1.74454
-1.86418
-1.97839
-2.08713
-2.21186
-2.28711
-2.34798
-2.38175
-2.40703
-2.42746
-2.39369
-2.25759
-1.89179
-1.4462
-1.14667
-1.26497
-1.73636
-2.48136
-2.75101
-2.84529
-2.8369
-2.78775
-2.72551
-2.61547
-2.49072
-2.30822
-2.10099
-1.83393
-1.6435
-1.36112
-1.28189
-1.2896
-1.31874
-0.814632
-0.868433
-1.03623
-1.26553
-1.44767
-1.59072
-1.73781
-1.85427
-1.98182
-2.09445
-2.21334
-2.31913
-2.38836
-2.42213
-2.4566
-2.48588
-2.51186
-2.47709
-2.30551
-1.8101
-1.25907
-1.02825
-1.08596
-1.55051
-2.11985
-2.72758
-2.84043
-2.89759
-2.85437
-2.79363
-2.71709
-2.59496
-2.42773
-2.21555
-1.96378
-1.69741
-1.50472
-1.34215
-1.38457
-1.37683
-0.966601
-1.0389
-1.22053
-1.41785
-1.59415
-1.7394
-1.87679
-1.98659
-2.10466
-2.20855
-2.31016
-2.39343
-2.44345
-2.48022
-2.5138
-2.52839
-2.52986
-2.48658
-2.15138
-1.60181
-1.19336
-1.03933
-1.0244
-1.42327
-1.90349
-2.61171
-2.88427
-2.91453
-2.90954
-2.86273
-2.78107
-2.68494
-2.52801
-2.33863
-2.07895
-1.85121
-1.57425
-1.44576
-1.41319
-1.48106
-1.04163
-1.09995
-1.28729
-1.48578
-1.66944
-1.82133
-1.97455
-2.08963
-2.21726
-2.32072
-2.41131
-2.46008
-2.49686
-2.481
-2.49364
-2.497
-2.49748
-2.26213
-1.79238
-1.39553
-1.18909
-1.06666
-1.0202
-1.34164
-1.70833
-2.12336
-2.75788
-2.90463
-2.91994
-2.91219
-2.85517
-2.77129
-2.64031
-2.46717
-2.2239
-1.9758
-1.73856
-1.57158
-1.46646
-1.56071
-1.21216
-1.27491
-1.47766
-1.61496
-1.81409
-1.98334
-2.11766
-2.22012
-2.32917
-2.39114
-2.4201
-2.40077
-2.40972
-2.39922
-2.43447
-2.36888
-2.09152
-1.67697
-1.38565
-1.2523
-1.15524
-1.06468
-1.02612
-1.30368
-1.61091
-1.90595
-2.28268
-2.80987
-2.93312
-2.92347
-2.88618
-2.83176
-2.71707
-2.56052
-2.3376
-2.0946
-1.84079
-1.70857
-1.57868
-1.66044
-1.05061
-1.17505
-1.31807
-1.52653
-1.7382
-1.87469
-1.99741
-2.11149
-2.19475
-2.27552
-2.31352
-2.308
-2.28971
-2.16907
-1.98332
-1.65609
-1.36928
-1.21868
-1.16893
-1.13717
-1.10053
-1.04241
-1.02739
-1.25028
-1.54526
-1.75049
-1.97465
-2.27893
-2.72724
-2.9282
-2.94575
-2.90361
-2.81882
-2.69672
-2.48798
-2.25149
-1.97386
-1.8134
-1.66733
-1.70906
-1.25341
-1.25414
-1.37658
-1.50744
-1.69083
-1.8075
-1.95344
-2.01753
-2.10481
-2.09325
-1.97089
-1.70527
-1.50972
-1.28549
-1.13353
-1.04508
-1.00092
-0.987867
-1.00721
-1.02056
-1.02375
-1.00605
-1.00491
-1.2003
-1.49905
-1.70576
-1.85706
-2.01788
-2.20972
-2.51104
-2.80613
-2.90798
-2.86647
-2.74622
-2.58787
-2.37472
-2.10205
-1.97246
-1.90687
-2.01882
-0.494355
-0.570831
-0.669443
-0.83969
-1.01457
-1.16523
-1.24458
-1.31601
-1.18969
-1.13674
-1.00202
-1.0183
-0.949229
-0.90934
-0.849807
-0.82015
-0.812891
-0.826512
-0.867913
-0.896381
-0.943932
-0.952038
-1.0034
-1.14848
-1.43566
-1.64338
-1.78704
-1.90029
-2.00417
-2.12023
-2.28698
-2.50638
-2.76975
-2.83222
-2.69446
-2.45375
-2.16745
-1.95183
-1.81128
-1.77571
-0.379933
-0.376334
-0.422127
-0.496807
-0.61668
-0.704199
-0.806386
-0.846084
-0.865204
-0.868538
-0.860143
-0.825524
-0.748906
-0.748846
-0.696063
-0.687966
-0.682761
-0.694125
-0.739222
-0.782225
-0.862694
-0.899725
-1.00472
-1.11785
-1.36643
-1.5931
-1.74253
-1.84782
-1.91843
-1.96818
-2.02073
-2.0528
-2.15606
-2.38022
-2.6707
-2.57899
-2.48938
-2.36563
-2.34389
-2.55439
-0.284769
-0.211959
-0.22772
-0.275642
-0.382159
-0.47191
-0.567798
-0.640623
-0.676893
-0.723452
-0.734227
-0.758695
-0.735057
-0.695617
-0.616863
-0.611303
-0.581315
-0.595069
-0.646386
-0.694503
-0.802106
-0.853375
-0.96895
-1.10245
-1.28703
-1.52591
-1.68374
-1.78923
-1.85662
-1.88968
-1.92822
-1.92876
-1.9453
-1.86818
-1.8351
-1.83805
-1.8604
-1.78921
-1.81656
-1.95134
-0.35392
-0.291408
-0.298499
-0.325868
-0.421925
-0.494012
-0.600775
-0.66678
-0.747115
-0.792683
-0.808436
-0.785478
-0.717384
-0.649395
-0.58595
-0.56652
-0.504693
-0.512163
-0.567399
-0.631855
-0.759323
-0.834832
-0.978906
-1.12087
-1.28618
-1.47023
-1.65182
-1.76649
-1.83877
-1.86829
-1.92242
-1.92656
-1.98742
-1.97454
-1.94658
-1.88234
-1.81966
-1.72433
-1.6093
-1.6714
-0.358652
-0.301109
-0.317691
-0.347681
-0.444641
-0.506193
-0.626116
-0.702886
-0.783943
-0.835875
-0.849676
-0.820145
-0.734134
-0.650375
-0.54954
-0.485395
-0.470333
-0.500163
-0.582762
-0.609315
-0.787285
-0.812242
-0.967249
-1.10999
-1.27708
-1.42068
-1.56961
-1.68195
-1.78345
-1.82428
-1.8902
-1.87133
-1.8939
-1.80936
-1.84074
-1.81099
-1.8097
-1.70673
-1.59593
-1.64255
-0.411101
-0.36105
-0.380837
-0.407275
-0.504455
-0.575928
-0.683855
-0.762837
-0.849811
-0.902065
-0.913374
-0.868063
-0.775724
-0.671102
-0.558059
-0.484855
-0.456133
-0.460134
-0.565179
-0.648746
-0.780552
-0.911222
-1.04023
-1.18106
-1.37635
-1.41035
-1.56731
-1.64782
-1.76908
-1.81361
-1.92178
-1.9216
-2.00882
-1.97665
-2.06304
-2.01515
-2.05067
-1.98212
-1.82806
-1.79806
-0.454675
-0.404684
-0.425066
-0.449061
-0.544679
-0.627003
-0.734733
-0.819369
-0.907306
-0.963594
-0.981203
-0.948739
-0.864402
-0.760008
-0.648757
-0.598277
-0.622032
-0.679129
-0.805931
-0.777728
-0.875078
-0.949465
-1.05948
-1.18672
-1.36233
-1.44068
-1.56967
-1.63835
-1.75384
-1.72839
-1.81113
-1.77582
-1.83848
-1.74979
-1.81881
-1.71316
-1.77558
-1.65512
-1.62601
-1.65459
-0.46832
-0.443809
-0.470115
-0.489852
-0.57907
-0.660496
-0.771412
-0.860875
-0.955734
-1.02194
-1.05994
-1.05762
-1.01581
-0.963474
-0.920241
-0.950367
-1.02885
-1.02706
-1.06464
-0.869362
-0.94666
-1.00018
-1.14484
-1.23227
-1.38755
-1.46793
-1.62069
-1.68529
-1.79828
-1.80152
-1.9681
-1.96278
-2.08611
-2.0198
-2.15122
-2.02762
-2.09155
-1.86558
-1.82415
-1.72616
-0.565327
-0.512062
-0.537028
-0.562731
-0.640654
-0.722347
-0.832119
-0.931564
-1.03581
-1.11626
-1.18063
-1.22196
-1.24405
-1.27279
-1.31439
-1.37599
-1.41021
-1.34512
-1.32325
-0.974747
-1.02129
-1.04475
-1.15878
-1.2635
-1.39799
-1.47735
-1.63965
-1.71747
-1.90181
-1.95837
-2.08775
-2.06588
-2.20888
-2.10378
-2.2429
-2.10641
-2.21197
-2.03495
-2.12301
-2.10756
-0.557406
-0.524689
-0.538279
-0.584027
-0.662727
-0.734729
-0.84562
-0.951321
-1.06751
-1.16444
-1.25733
-1.33567
-1.40287
-1.46356
-1.51827
-1.54194
-1.59405
-1.53362
-1.50373
-1.05539
-1.082
-1.06907
-1.18066
-1.21575
-1.39659
-1.44164
-1.64244
-1.71484
-1.94915
-1.95017
-2.11999
-2.01694
-2.15887
-1.99472
-2.17112
-1.94338
-2.07891
-1.85606
-1.89202
-1.80452
-0.627517
-0.597291
-0.602312
-0.629237
-0.733145
-0.805046
-0.925303
-1.02189
-1.14386
-1.2445
-1.34667
-1.43383
-1.50394
-1.5512
-1.58577
-1.57832
-1.64749
-1.59347
-1.61756
-1.15339
-1.14858
-1.10443
-1.20079
-1.23199
-1.37054
-1.37647
-1.63377
-1.7716
-1.98708
-1.92685
-2.07047
-1.94376
-2.14424
-1.94626
-2.07804
-1.87113
-1.9781
-1.71345
-1.63922
-1.4569
-0.609109
-0.57491
-0.583916
-0.570093
-0.699322
-0.755841
-0.872764
-0.974398
-1.10033
-1.20342
-1.31238
-1.39814
-1.47144
-1.50813
-1.54658
-1.52831
-1.60737
-1.54866
-1.62833
-1.21189
-1.17374
-1.10078
-1.19888
-1.20499
-1.37012
-1.30803
-1.74095
-1.77559
-2.03685
-1.91114
-2.11656
-1.9135
-2.12128
-1.89695
-2.15862
-1.75198
-2.01455
-1.61397
-1.5664
-1.28366
-0.688691
-0.667278
-0.667545
-0.649627
-0.745029
-0.834618
-0.929617
-1.01029
-1.12779
-1.22882
-1.33144
-1.41234
-1.48733
-1.52392
-1.58382
-1.56507
-1.66848
-1.5745
-1.66697
-1.30737
-1.21861
-1.12254
-1.20161
-1.17058
-1.35638
-1.24626
-1.82016
-1.78708
-2.0736
-1.88689
-2.12586
-1.86966
-2.11363
-1.80425
-2.05797
-1.77245
-1.92181
-1.55682
-1.48068
-1.13746
-0.627528
-0.596774
-0.606476
-0.561127
-0.616424
-0.721324
-0.821034
-0.887475
-0.997783
-1.08811
-1.2052
-1.29198
-1.39407
-1.44492
-1.55278
-1.5484
-1.68549
-1.57433
-1.66202
-1.3431
-1.20257
-1.09092
-1.16386
-1.0935
-1.33436
-1.15884
-1.8496
-1.79058
-2.12009
-1.88
-2.15969
-1.83186
-2.13742
-1.73675
-2.06401
-1.60614
-1.92599
-1.40407
-1.43382
-0.96084
-0.735551
-0.730116
-0.711201
-0.692309
-0.675801
-0.765182
-0.872928
-0.92665
-1.02666
-1.10591
-1.21479
-1.30633
-1.42156
-1.48135
-1.61135
-1.60693
-1.76792
-1.66641
-1.73882
-1.44244
-1.22816
-1.10067
-1.15698
-1.0469
-1.29848
-1.13734
-1.87818
-1.78305
-2.22805
-1.87507
-2.22918
-1.81779
-2.18092
-1.70245
-2.07999
-1.51833
-1.91967
-1.25279
-1.34142
-0.724919
-0.620674
-0.588031
-0.60334
-0.52246
-0.536225
-0.503523
-0.695837
-0.719154
-0.846926
-0.923055
-1.06103
-1.15475
-1.30253
-1.36888
-1.53057
-1.52957
-1.72793
-1.65012
-1.74388
-1.44855
-1.16073
-1.00761
-1.06578
-0.912943
-1.20646
-0.979145
-1.82116
-1.81154
-2.28529
-1.92736
-2.27256
-1.78728
-2.19896
-1.6005
-2.06668
-1.34461
-1.80985
-0.927797
-1.0898
-0.164769
-0.7738
-0.784136
-0.741398
-0.698412
-0.648949
-0.569444
-0.721876
-0.752197
-0.871308
-0.949226
-1.08959
-1.19131
-1.34343
-1.40955
-1.58338
-1.56914
-1.81484
-1.77596
-1.86018
-1.56749
-1.17269
-0.982963
-1.0267
-0.823885
-1.1069
-0.878778
-1.78567
-1.76136
-2.34461
-1.96587
-2.38558
-1.82212
-2.29575
-1.63197
-2.14016
-1.3705
-1.80037
-0.817911
-0.740757
0.497904
-0.603996
-0.554662
-0.608782
-0.431464
-0.447143
-0.280759
-0.4511
-0.489423
-0.645331
-0.733461
-0.912231
-1.02826
-1.23572
-1.32281
-1.55111
-1.56682
-1.84322
-1.81005
-1.89332
-1.5501
-1.06002
-0.806059
-0.843419
-0.591513
-0.968004
-0.717327
-1.74425
-1.76363
-2.42568
-1.96125
-2.47447
-1.76124
-2.31879
-1.49299
-2.10785
-1.10146
-1.61665
-0.160179
-0.0873172
2.36895
-0.777748
-0.870221
-0.768118
-0.718092
-0.628252
-0.385739
-0.47711
-0.52915
-0.65319
-0.750958
-0.922438
-1.05975
-1.27335
-1.39104
-1.64422
-1.70328
-2.00023
-1.99538
-2.04016
-1.66805
-1.08176
-0.762564
-0.742654
-0.427036
-0.831983
-0.57823
-1.67798
-1.73817
-2.5238
-2.03164
-2.56428
-1.87976
-2.43605
-1.58265
-2.28902
-1.21973
-1.79239
0.00928519
0.621618
4.54916
-0.959348
-0.551952
-0.671634
-0.271164
-0.339235
-0.057525
-0.181088
-0.221861
-0.403708
-0.515413
-0.734369
-0.889665
-1.15463
-1.3205
-1.64541
-1.75931
-2.07928
-2.07139
-2.06568
-1.56339
-0.968489
-0.494087
-0.440172
-0.0890054
-0.540648
-0.396442
-1.63816
-1.75567
-2.62668
-2.07003
-2.67841
-1.77557
-2.38074
-1.39652
-2.07307
-0.821469
-1.22803
1.1793
3.14901
10.3111
-0.570809
-1.04616
-0.928259
-0.876454
-0.507601
-0.328316
-0.22284
-0.277966
-0.405819
-0.529998
-0.73252
-0.893151
-1.15838
-1.34702
-1.71861
-1.89039
-2.21047
-2.24571
-2.21162
-1.61804
-1.06076
-0.419556
-0.285376
0.105968
-0.239619
-0.165428
-1.53281
-1.63886
-2.77632
-2.20403
-2.83339
-1.85931
-2.43936
-1.38745
-2.06766
-0.863161
-1.3163
2.0038
5.52651
17.2216
-3.15721
-0.343612
-0.56856
-0.0859587
-0.0123566
0.155458
0.0443138
0.00168052
-0.203783
-0.342848
-0.566994
-0.729742
-1.02347
-1.27742
-1.73394
-1.98789
-2.30788
-2.3098
-2.10215
-1.36245
-0.82404
-0.0618234
0.0830305
0.534809
0.048654
-0.0995704
-1.51861
-1.71171
-2.97577
-2.33132
-2.85402
-1.75519
-2.19539
-1.10176
-1.55958
0.111919
0.885534
6.83934
16.0089
34.9794
-0.345423
-0.351946
-0.353424
-0.337034
-0.359305
-0.378977
-0.41074
-0.440009
-0.485286
-0.528943
-0.57177
-0.623434
-0.65248
-0.727177
-0.727001
-0.763023
-0.7428
-0.780041
-0.644831
-0.82626
-0.542514
-0.844169
-0.843505
-0.960535
-0.778867
-0.657539
-0.440609
-0.232141
-0.100184
0.00457533
-0.114284
-0.194314
-0.425374
-0.576852
-0.709141
-0.78251
-0.85705
-0.863186
-0.877312
-0.858677
-0.367653
-0.365753
-0.363745
-0.339727
-0.357457
-0.358577
-0.405704
-0.42301
-0.457818
-0.492076
-0.513885
-0.551652
-0.571851
-0.608096
-0.665555
-0.720122
-0.69766
-0.74317
-0.628109
-0.801399
-0.657987
-0.932349
-1.07251
-1.22007
-1.06046
-0.959223
-0.771487
-0.598718
-0.485742
-0.397064
-0.432204
-0.498139
-0.618413
-0.706208
-0.799726
-0.789479
-0.84149
-0.842674
-0.8592
-0.842213
-0.363352
-0.357629
-0.355797
-0.324582
-0.369517
-0.358854
-0.383789
-0.400744
-0.435264
-0.471145
-0.519018
-0.569016
-0.621189
-0.773813
-0.842969
-0.884093
-0.860441
-0.92557
-0.826857
-1.09141
-0.974318
-1.43065
-1.51953
-1.65546
-1.51394
-1.41954
-1.26044
-1.10689
-1.00822
-0.897256
-0.898247
-0.828083
-0.871498
-0.871467
-0.877064
-0.86418
-0.888939
-0.878757
-0.88476
-0.869169
-0.36478
-0.35444
-0.373872
-0.353291
-0.358393
-0.357949
-0.372102
-0.409473
-0.462475
-0.500881
-0.545208
-0.650649
-0.854377
-0.960736
-0.998751
-1.04835
-1.06094
-1.1393
-1.09877
-1.32197
-1.38402
-1.70828
-1.83949
-1.98741
-1.88133
-1.80299
-1.67413
-1.54164
-1.43734
-1.32854
-1.25397
-1.17426
-1.03843
-0.985155
-0.94391
-0.924469
-0.909673
-0.891536
-0.888966
-0.881833
-0.357577
-0.355214
-0.348959
-0.339209
-0.34972
-0.345262
-0.392417
-0.424378
-0.49798
-0.610675
-0.830152
-1.02148
-1.12625
-1.20399
-1.24975
-1.31528
-1.33671
-1.41759
-1.38272
-1.61818
-1.61349
-1.97118
-2.09607
-2.24698
-2.17239
-2.09966
-1.99005
-1.85729
-1.75596
-1.62253
-1.5528
-1.40875
-1.32196
-1.05463
-1.00318
-0.935477
-0.965097
-0.932255
-0.933351
-0.931341
-0.34826
-0.35811
-0.348236
-0.359807
-0.35816
-0.396488
-0.425617
-0.568852
-0.844933
-1.04577
-1.13511
-1.23491
-1.33527
-1.40738
-1.46132
-1.51889
-1.55468
-1.59782
-1.5957
-1.77194
-1.83888
-2.07418
-2.24836
-2.35742
-2.34316
-2.28778
-2.20578
-2.10569
-2.00094
-1.8815
-1.77056
-1.62406
-1.50144
-1.28349
-1.06174
-0.999545
-0.970894
-0.956798
-0.958751
-0.96289
-0.327425
-0.356392
-0.362047
-0.380006
-0.423774
-0.484665
-0.745235
-1.02316
-1.13299
-1.24544
-1.35538
-1.46589
-1.5567
-1.63678
-1.68017
-1.73639
-1.75692
-1.80102
-1.75916
-1.95364
-1.89266
-2.20868
-2.29631
-2.44948
-2.45558
-2.44525
-2.39774
-2.29949
-2.21048
-2.07233
-1.95294
-1.8101
-1.60826
-1.48956
-1.17058
-1.04687
-0.995128
-1.00045
-1.00145
-1.01297
-0.337492
-0.390742
-0.440624
-0.52555
-0.622278
-0.847279
-1.05927
-1.19608
-1.33769
-1.46095
-1.55495
-1.65747
-1.73715
-1.81261
-1.86256
-1.90348
-1.90984
-1.91008
-1.85124
-1.81633
-1.73039
-1.87392
-2.32809
-2.44096
-2.54881
-2.54923
-2.5414
-2.47712
-2.39416
-2.2625
-2.13241
-1.94678
-1.7537
-1.56334
-1.34149
-1.09014
-1.04711
-0.993255
-1.0426
-1.04839
-0.35624
-0.420466
-0.493971
-0.627254
-0.796452
-1.04327
-1.22172
-1.38448
-1.50275
-1.62777
-1.72456
-1.84099
-1.91673
-1.9878
-2.03653
-2.0719
-2.07164
-2.05119
-1.97396
-1.91475
-1.79892
-1.57539
-2.11135
-2.40797
-2.56595
-2.64087
-2.65353
-2.61223
-2.54858
-2.42845
-2.28389
-2.09468
-1.86974
-1.65971
-1.47013
-1.18543
-1.0922
-1.12492
-1.085
-1.1185
-0.422095
-0.491318
-0.587174
-0.756011
-0.995391
-1.22071
-1.38258
-1.52732
-1.65613
-1.77951
-1.88678
-1.99387
-2.06984
-2.13667
-2.18021
-2.21388
-2.22096
-2.18978
-2.09759
-1.93708
-1.65245
-1.3795
-1.60763
-2.33316
-2.58479
-2.7204
-2.76247
-2.74239
-2.68301
-2.57243
-2.43636
-2.25186
-2.03999
-1.7735
-1.58766
-1.3208
-1.14609
-1.13118
-1.14194
-1.16364
-0.50335
-0.576457
-0.683659
-0.894974
-1.15557
-1.3512
-1.508
-1.66845
-1.7961
-1.91545
-2.03709
-2.13889
-2.21463
-2.2723
-2.31367
-2.34708
-2.35665
-2.33036
-2.20047
-1.9623
-1.57376
-1.2662
-1.41028
-2.05606
-2.59433
-2.77872
-2.85527
-2.84604
-2.79453
-2.69466
-2.56862
-2.40271
-2.19266
-1.94569
-1.68252
-1.48733
-1.23781
-1.17869
-1.2121
-1.2295
-0.630629
-0.703508
-0.832269
-1.08682
-1.30466
-1.48966
-1.63099
-1.79549
-1.91453
-2.05099
-2.16993
-2.26721
-2.33304
-2.38517
-2.41892
-2.44839
-2.4696
-2.43721
-2.27722
-1.93242
-1.42738
-1.20016
-1.2031
-1.74899
-2.52933
-2.81001
-2.93571
-2.93688
-2.88078
-2.80132
-2.68411
-2.53169
-2.33896
-2.09399
-1.84207
-1.57127
-1.37367
-1.22632
-1.30857
-1.28835
-0.752113
-0.829955
-0.992951
-1.24562
-1.43887
-1.60246
-1.77219
-1.90452
-2.04781
-2.17918
-2.30025
-2.38349
-2.43815
-2.47181
-2.49927
-2.53895
-2.55604
-2.5084
-2.3233
-1.83506
-1.41035
-1.07817
-1.08963
-1.54019
-2.20085
-2.87517
-2.96216
-3.02032
-2.95247
-2.88116
-2.78148
-2.6523
-2.47307
-2.25387
-1.98229
-1.73421
-1.51375
-1.32105
-1.34514
-1.39234
-0.927517
-1.00279
-1.20519
-1.4244
-1.60096
-1.75916
-1.90736
-2.04615
-2.18205
-2.30405
-2.39526
-2.4614
-2.50215
-2.53502
-2.56671
-2.58346
-2.57119
-2.51557
-2.13297
-1.60304
-1.35812
-1.08656
-1.05759
-1.42446
-1.92052
-2.67075
-3.04268
-3.02539
-3.02374
-2.94186
-2.85368
-2.74759
-2.58895
-2.38284
-2.1218
-1.84559
-1.61629
-1.44523
-1.36193
-1.48719
-1.00084
-1.12397
-1.3178
-1.52209
-1.70026
-1.84926
-1.98946
-2.14091
-2.27614
-2.38517
-2.47403
-2.53061
-2.55844
-2.55882
-2.55352
-2.55993
-2.54364
-2.23319
-1.73612
-1.44753
-1.30783
-1.09843
-1.05356
-1.37308
-1.72255
-2.13502
-2.8306
-3.05853
-3.0056
-3.00233
-2.9284
-2.84104
-2.70615
-2.53254
-2.28074
-2.01287
-1.75892
-1.60024
-1.48467
-1.56945
-1.21797
-1.29355
-1.50035
-1.68947
-1.86757
-2.02474
-2.16258
-2.2908
-2.38551
-2.46056
-2.4957
-2.49168
-2.48401
-2.48319
-2.50132
-2.42835
-2.07054
-1.61
-1.39046
-1.3028
-1.22287
-1.0903
-1.05905
-1.34537
-1.63544
-1.89729
-2.21151
-2.83116
-3.03286
-2.99537
-2.95602
-2.90412
-2.78592
-2.62956
-2.4009
-2.14948
-1.873
-1.73856
-1.61213
-1.70595
-1.10279
-1.24482
-1.40961
-1.60364
-1.79329
-1.93188
-2.0652
-2.17911
-2.26594
-2.33431
-2.37343
-2.39346
-2.37702
-2.28778
-2.05848
-1.6589
-1.31008
-1.18773
-1.16426
-1.15354
-1.11498
-1.05462
-1.05387
-1.29474
-1.57555
-1.77245
-1.95783
-2.21816
-2.68706
-3.0086
-3.0203
-2.96974
-2.87723
-2.76263
-2.55353
-2.30773
-2.00746
-1.83811
-1.70697
-1.77818
-1.19937
-1.26818
-1.37373
-1.58708
-1.72081
-1.91147
-2.01061
-2.11237
-2.16473
-2.18251
-2.11809
-1.89526
-1.64151
-1.35406
-1.11767
-0.9986
-0.926303
-0.925861
-0.961986
-0.992177
-1.00161
-0.998295
-1.03863
-1.22572
-1.52694
-1.71082
-1.84972
-1.99626
-2.16324
-2.44597
-2.82548
-2.99542
-2.95077
-2.81078
-2.64715
-2.39224
-2.1817
-2.03156
-1.94743
-2.08152
-0.582341
-0.647581
-0.779364
-0.942152
-1.12077
-1.28079
-1.35675
-1.39392
-1.36351
-1.23521
-1.07088
-0.999272
-0.940917
-0.879279
-0.793038
-0.727137
-0.697424
-0.711129
-0.7667
-0.8205
-0.889519
-0.925778
-1.00729
-1.14895
-1.4524
-1.6441
-1.77853
-1.89261
-1.98954
-2.10415
-2.2215
-2.43999
-2.7842
-2.92188
-2.77122
-2.52126
-2.26382
-2.01623
-1.84281
-1.83439
-0.293258
-0.312494
-0.369416
-0.471239
-0.599417
-0.718149
-0.798515
-0.892967
-0.926325
-0.8819
-0.857005
-0.818212
-0.750085
-0.694954
-0.614821
-0.556551
-0.511603
-0.518182
-0.574856
-0.652874
-0.769142
-0.849659
-0.974782
-1.09773
-1.36192
-1.58203
-1.72746
-1.83597
-1.91347
-1.97331
-2.03635
-2.06969
-2.11823
-2.29027
-2.67324
-2.6654
-2.54912
-2.45406
-2.43562
-2.65118
-0.254657
-0.193869
-0.211018
-0.261546
-0.377407
-0.471783
-0.58779
-0.639709
-0.708624
-0.705684
-0.742795
-0.732184
-0.67739
-0.606523
-0.517
-0.439972
-0.382909
-0.374491
-0.431023
-0.519846
-0.673288
-0.787808
-0.926234
-1.06043
-1.24972
-1.50079
-1.65734
-1.77198
-1.84775
-1.89501
-1.94486
-1.96098
-1.996
-1.93452
-1.87566
-1.88487
-1.88153
-1.8287
-1.83414
-1.96399
-0.302986
-0.245555
-0.25667
-0.293058
-0.396498
-0.483198
-0.594693
-0.668374
-0.749875
-0.770013
-0.798631
-0.777087
-0.655371
-0.587067
-0.456101
-0.358661
-0.288575
-0.274961
-0.338554
-0.413959
-0.601966
-0.740469
-0.912802
-1.06052
-1.23645
-1.43607
-1.61762
-1.73954
-1.82461
-1.86886
-1.93109
-1.94766
-2.0198
-2.02703
-2.02337
-1.9497
-1.9411
-1.77191
-1.6657
-1.70918
-0.330487
-0.279304
-0.300739
-0.33478
-0.438531
-0.537844
-0.634033
-0.707836
-0.789739
-0.839473
-0.844252
-0.793724
-0.688404
-0.569364
-0.435873
-0.335609
-0.272223
-0.25711
-0.333165
-0.389471
-0.559224
-0.728157
-0.878573
-1.04145
-1.21259
-1.38996
-1.55246
-1.66661
-1.76955
-1.81406
-1.88543
-1.87661
-1.91389
-1.84608
-1.88219
-1.87422
-1.87937
-1.76649
-1.59035
-1.65905
-0.395006
-0.345547
-0.371018
-0.403539
-0.506393
-0.588003
-0.701836
-0.777571
-0.860578
-0.901816
-0.91411
-0.859352
-0.74774
-0.618173
-0.475949
-0.364191
-0.288117
-0.243562
-0.326227
-0.359784
-0.569703
-0.748236
-0.933021
-1.10474
-1.28357
-1.44369
-1.57735
-1.64734
-1.7524
-1.80359
-1.91173
-1.92411
-2.01768
-1.98677
-2.07294
-2.03993
-2.10043
-2.00815
-1.88917
-1.88201
-0.442194
-0.392726
-0.420966
-0.4507
-0.552588
-0.635222
-0.751506
-0.83657
-0.924823
-0.976402
-0.988259
-0.941734
-0.845452
-0.718626
-0.582573
-0.473357
-0.406084
-0.370386
-0.463755
-0.503808
-0.662573
-0.802702
-0.93943
-1.12931
-1.29848
-1.41315
-1.55578
-1.62095
-1.74092
-1.75169
-1.83062
-1.77947
-1.8119
-1.7272
-1.78392
-1.68205
-1.75891
-1.6736
-1.65108
-1.65803
-0.491769
-0.442585
-0.468863
-0.493187
-0.587976
-0.67372
-0.788309
-0.884681
-0.979779
-1.04485
-1.08055
-1.07082
-1.01577
-0.935747
-0.845176
-0.797671
-0.837445
-0.847279
-0.895232
-0.704014
-0.807236
-0.903124
-1.05798
-1.18109
-1.33325
-1.45452
-1.59596
-1.6761
-1.80918
-1.8114
-1.95619
-1.96648
-2.1084
-2.04231
-2.13553
-2.01354
-2.06036
-1.90386
-1.84854
-1.75048
-0.530644
-0.494976
-0.535532
-0.56453
-0.650918
-0.736748
-0.85241
-0.959785
-1.06698
-1.1519
-1.21809
-1.257
-1.27456
-1.28834
-1.31029
-1.35021
-1.36015
-1.28829
-1.25871
-0.882591
-0.936376
-0.979127
-1.11897
-1.20596
-1.35411
-1.43581
-1.62386
-1.69379
-1.90877
-1.97842
-2.1436
-2.07498
-2.20806
-2.13652
-2.23602
-2.08505
-2.20078
-2.04143
-2.1072
-2.1168
-0.570933
-0.521512
-0.543189
-0.594506
-0.670564
-0.750116
-0.852742
-0.980642
-1.09981
-1.20724
-1.30756
-1.39496
-1.47472
-1.55883
-1.65241
-1.70631
-1.72634
-1.62486
-1.55029
-1.02319
-1.0461
-1.04827
-1.15916
-1.25604
-1.35241
-1.41627
-1.61523
-1.70659
-1.96941
-1.9671
-2.10821
-2.01382
-2.17963
-1.97968
-2.16262
-1.90846
-2.04859
-1.77599
-1.82197
-1.74459
-0.63189
-0.599874
-0.605751
-0.653061
-0.762214
-0.828779
-0.941762
-1.04948
-1.1745
-1.2879
-1.4002
-1.50098
-1.5954
-1.68734
-1.80795
-1.89866
-1.98384
-1.88121
-1.79844
-1.17773
-1.14562
-1.09838
-1.19509
-1.21103
-1.36661
-1.35105
-1.63203
-1.78735
-2.00261
-1.94015
-2.07852
-1.93853
-2.1028
-1.95992
-2.08175
-1.81839
-1.95522
-1.61692
-1.57485
-1.40565
-0.61303
-0.576093
-0.587977
-0.578417
-0.730893
-0.788267
-0.905867
-0.986561
-1.12487
-1.23724
-1.35589
-1.45559
-1.55328
-1.64271
-1.77138
-1.85866
-1.99742
-1.93879
-1.91632
-1.28783
-1.19261
-1.1112
-1.19729
-1.19031
-1.3491
-1.30028
-1.72116
-1.7956
-2.0449
-1.92596
-2.11705
-1.90768
-2.12194
-1.83373
-2.1451
-1.72148
-1.97231
-1.54073
-1.52194
-1.24896
-0.696755
-0.669039
-0.675242
-0.654551
-0.771246
-0.853062
-0.947153
-1.02716
-1.14689
-1.2491
-1.36012
-1.4536
-1.55287
-1.63888
-1.77091
-1.82761
-1.97832
-1.89949
-1.95521
-1.42533
-1.24121
-1.13251
-1.21299
-1.15725
-1.3908
-1.27203
-1.80964
-1.81659
-2.08226
-1.91019
-2.125
-1.88782
-2.09099
-1.79475
-2.00911
-1.69776
-1.88436
-1.49055
-1.45882
-1.12799
-0.629285
-0.595529
-0.608182
-0.564141
-0.625529
-0.736763
-0.826566
-0.887304
-0.994388
-1.09465
-1.2191
-1.32014
-1.44338
-1.52689
-1.66556
-1.69117
-1.85108
-1.766
-1.85266
-1.46874
-1.20332
-1.08518
-1.15641
-1.07386
-1.3153
-1.16157
-1.79192
-1.81346
-2.12358
-1.90062
-2.16524
-1.84201
-2.12385
-1.70363
-2.01665
-1.56872
-1.83013
-1.35466
-1.39021
-0.968481
-0.741665
-0.728961
-0.714661
-0.686847
-0.673522
-0.760636
-0.865175
-0.907219
-1.0035
-1.08036
-1.20019
-1.30178
-1.42715
-1.49844
-1.64126
-1.6463
-1.8185
-1.7321
-1.83263
-1.55359
-1.21277
-1.08214
-1.1358
-1.01334
-1.28225
-1.05933
-1.83462
-1.82264
-2.26004
-1.90195
-2.23593
-1.83952
-2.1508
-1.68505
-2.00353
-1.49415
-1.78317
-1.21841
-1.24379
-0.716236
-0.616238
-0.584151
-0.590161
-0.510717
-0.512476
-0.475016
-0.666688
-0.682962
-0.807603
-0.887718
-1.02434
-1.12959
-1.27671
-1.35257
-1.51763
-1.52549
-1.72546
-1.67117
-1.78438
-1.53365
-1.13572
-0.9909
-1.02709
-0.881418
-1.16605
-0.959654
-1.78514
-1.78956
-2.24448
-1.95336
-2.27244
-1.79378
-2.18429
-1.56966
-1.99545
-1.28098
-1.67377
-0.850458
-0.942466
-0.138895
-0.769019
-0.776342
-0.730066
-0.664483
-0.617197
-0.510259
-0.664639
-0.691471
-0.811039
-0.890831
-1.03432
-1.13903
-1.30027
-1.37717
-1.54912
-1.57556
-1.8197
-1.78976
-1.89556
-1.62771
-1.15753
-0.974979
-0.995112
-0.805806
-1.09942
-0.863297
-1.77739
-1.79787
-2.3672
-1.97507
-2.38247
-1.82591
-2.27199
-1.61695
-2.0699
-1.30764
-1.63172
-0.729751
-0.533624
0.577968
-0.596772
-0.542078
-0.578467
-0.390179
-0.381871
-0.211849
-0.355774
-0.414126
-0.566347
-0.665369
-0.849342
-0.980502
-1.18362
-1.28685
-1.51521
-1.55774
-1.84338
-1.84539
-1.92492
-1.60856
-1.0351
-0.799999
-0.810591
-0.59435
-0.896452
-0.684653
-1.68185
-1.79664
-2.38339
-1.97404
-2.42729
-1.78442
-2.32882
-1.47204
-2.06328
-1.05641
-1.448
-0.141638
0.274644
2.50295
-0.75958
-0.852467
-0.7394
-0.652231
-0.54614
-0.286918
-0.356944
-0.426166
-0.553534
-0.663371
-0.848259
-0.992952
-1.22382
-1.35252
-1.62428
-1.69158
-2.00591
-2.02146
-2.07235
-1.69861
-1.06089
-0.727958
-0.698673
-0.406377
-0.753631
-0.532521
-1.65153
-1.76312
-2.53246
-2.0317
-2.57572
-1.83688
-2.39778
-1.56653
-2.22235
-1.19193
-1.70426
0.143666
0.735043
4.82466
-0.934757
-0.530519
-0.624544
-0.191718
-0.223496
0.059712
-0.0358999
-0.103225
-0.289928
-0.420077
-0.65107
-0.822853
-1.10372
-1.28622
-1.63185
-1.76091
-2.09939
-2.12215
-2.10682
-1.61149
-0.929543
-0.465259
-0.369799
-0.00853466
-0.415952
-0.302608
-1.55108
-1.70847
-2.64337
-2.09833
-2.67657
-1.80872
-2.36962
-1.39917
-2.02411
-0.854782
-1.16964
1.2358
3.4408
10.4278
-0.521191
-1.00729
-0.877453
-0.796652
-0.37993
-0.219585
-0.0526679
-0.157725
-0.291405
-0.440486
-0.660407
-0.83294
-1.11863
-1.32708
-1.7285
-1.92435
-2.26064
-2.31318
-2.27169
-1.66265
-1.0489
-0.401634
-0.223517
0.233202
-0.158473
-0.0736998
-1.45019
-1.63324
-2.78084
-2.2432
-2.86304
-1.89621
-2.43189
-1.39824
-2.0855
-0.90904
-1.32452
1.90234
5.76193
17.318
-3.14312
-0.302665
-0.481575
0.0266745
0.131805
0.298856
0.186693
0.121403
-0.100963
-0.260726
-0.501805
-0.67835
-0.995571
-1.27412
-1.77723
-2.05856
-2.39156
-2.4155
-2.17481
-1.381
-0.770176
0.0162417
0.206853
0.685691
0.241964
0.0594698
-1.44054
-1.67796
-2.99941
-2.39677
-2.91743
-1.80877
-2.19586
-1.08284
-1.55387
0.0759497
0.901707
6.77833
16.3534
35.2243
-0.370751
-0.372681
-0.377244
-0.367443
-0.377087
-0.395161
-0.426659
-0.456396
-0.50552
-0.548504
-0.593926
-0.643298
-0.69073
-0.745674
-0.742449
-0.786381
-0.740956
-0.788168
-0.617792
-0.823436
-0.555948
-0.836387
-0.84651
-0.91641
-0.688131
-0.493124
-0.193575
0.0800707
0.276958
0.403327
0.283687
0.131286
-0.16349
-0.400809
-0.636618
-0.743826
-0.85611
-0.872756
-0.877404
-0.857542
-0.388415
-0.385516
-0.386049
-0.369083
-0.376768
-0.380631
-0.415989
-0.442899
-0.481174
-0.510031
-0.538713
-0.575489
-0.597779
-0.639724
-0.707745
-0.746844
-0.708954
-0.761506
-0.603625
-0.856414
-0.685604
-0.996579
-1.08315
-1.16137
-0.953161
-0.79076
-0.531829
-0.302145
-0.138408
-0.0185097
-0.0780657
-0.190855
-0.401486
-0.587672
-0.708188
-0.779073
-0.844882
-0.857495
-0.86154
-0.841363
-0.378157
-0.373437
-0.369082
-0.356214
-0.370665
-0.373174
-0.391691
-0.409749
-0.449179
-0.486707
-0.543288
-0.590935
-0.666782
-0.819683
-0.863462
-0.900886
-0.868768
-0.927136
-0.8107
-1.04399
-1.02708
-1.34576
-1.41755
-1.52374
-1.34048
-1.19677
-0.976632
-0.782715
-0.64802
-0.530497
-0.541371
-0.524289
-0.65097
-0.752336
-0.843335
-0.862926
-0.891063
-0.881973
-0.88097
-0.862549
-0.375188
-0.384585
-0.387682
-0.369165
-0.368873
-0.370322
-0.382349
-0.422161
-0.484941
-0.523602
-0.570751
-0.703121
-0.905079
-0.979075
-1.01694
-1.06549
-1.0627
-1.1384
-1.05733
-1.37566
-1.32291
-1.61821
-1.73634
-1.856
-1.70636
-1.5964
-1.42323
-1.26341
-1.13811
-1.02586
-0.976061
-0.950578
-0.852489
-0.888299
-0.915995
-0.901261
-0.905866
-0.899642
-0.88892
-0.882825
-0.362987
-0.356592
-0.347617
-0.344216
-0.350098
-0.349411
-0.399223
-0.439573
-0.512181
-0.630732
-0.881021
-1.0727
-1.14765
-1.22171
-1.26281
-1.32196
-1.33012
-1.39728
-1.33307
-1.55177
-1.5314
-1.83793
-1.96477
-2.08556
-1.97637
-1.88716
-1.7524
-1.61712
-1.5097
-1.38186
-1.32246
-1.215
-1.18431
-0.948578
-0.961762
-0.921154
-0.931722
-0.916796
-0.916315
-0.919711
-0.357091
-0.36857
-0.349891
-0.359813
-0.356444
-0.398857
-0.428069
-0.56172
-0.869888
-1.0849
-1.17528
-1.27334
-1.35222
-1.42046
-1.46818
-1.52667
-1.52782
-1.59105
-1.5399
-1.73336
-1.73688
-1.98571
-2.13337
-2.26702
-2.2087
-2.12271
-2.06667
-1.94444
-1.83472
-1.69988
-1.61065
-1.4712
-1.39232
-1.19246
-1.01451
-0.976446
-0.967037
-0.96372
-0.959776
-0.964815
-0.303929
-0.342455
-0.33466
-0.354028
-0.395426
-0.451497
-0.709106
-1.04555
-1.15843
-1.27238
-1.39191
-1.49741
-1.57506
-1.64544
-1.67474
-1.73772
-1.74179
-1.78604
-1.72955
-1.87375
-1.85187
-2.11259
-2.2278
-2.38523
-2.37101
-2.33004
-2.26172
-2.16986
-2.08397
-1.97155
-1.84216
-1.67323
-1.52783
-1.39692
-1.10132
-0.989978
-0.960711
-0.939566
-0.985418
-0.9887
-0.332394
-0.381238
-0.416604
-0.491993
-0.583498
-0.831099
-1.0767
-1.21187
-1.36389
-1.4906
-1.58961
-1.68749
-1.74289
-1.8129
-1.85912
-1.8982
-1.89693
-1.90234
-1.84223
-1.8021
-1.68109
-1.88885
-2.30582
-2.42867
-2.52158
-2.50142
-2.48261
-2.41136
-2.32502
-2.20439
-2.05738
-1.8863
-1.68245
-1.52704
-1.25681
-1.05536
-1.00974
-1.04853
-1.02952
-1.05158
-0.325753
-0.398341
-0.468724
-0.607098
-0.783541
-1.04319
-1.2269
-1.40452
-1.5328
-1.65639
-1.76634
-1.85852
-1.93506
-1.99395
-2.03165
-2.0618
-2.06279
-2.03684
-1.97343
-1.83468
-1.63704
-1.48483
-2.09824
-2.42027
-2.57096
-2.62708
-2.61911
-2.57438
-2.50324
-2.39381
-2.25584
-2.06085
-1.86987
-1.61047
-1.44056
-1.10963
-1.0377
-1.03395
-1.06048
-1.08243
-0.39772
-0.472011
-0.564184
-0.739636
-0.989901
-1.23113
-1.4009
-1.54956
-1.68281
-1.81049
-1.9175
-2.0118
-2.07565
-2.13411
-2.17026
-2.19689
-2.20096
-2.16269
-2.07651
-1.86785
-1.58506
-1.29978
-1.65681
-2.36449
-2.61456
-2.73965
-2.75863
-2.72894
-2.66911
-2.56817
-2.43068
-2.25593
-2.03777
-1.78868
-1.56248
-1.30253
-1.10192
-1.11002
-1.13849
-1.15059
-0.470864
-0.550537
-0.657242
-0.879967
-1.15832
-1.36417
-1.52626
-1.67944
-1.82094
-1.94912
-2.06476
-2.15379
-2.21888
-2.26799
-2.30264
-2.32951
-2.3345
-2.29979
-2.18961
-1.91112
-1.53731
-1.19071
-1.41038
-2.07075
-2.62498
-2.79593
-2.86291
-2.83778
-2.78843
-2.69887
-2.57578
-2.40986
-2.19977
-1.94678
-1.68693
-1.45958
-1.18851
-1.13454
-1.21351
-1.19486
-0.606176
-0.684662
-0.812244
-1.07904
-1.31622
-1.51117
-1.66139
-1.82783
-1.94862
-2.09066
-2.19007
-2.27627
-2.32871
-2.37596
-2.40618
-2.42661
-2.44237
-2.39957
-2.263
-1.94648
-1.47145
-1.13142
-1.2207
-1.80815
-2.58944
-2.85957
-2.95084
-2.94179
-2.88718
-2.81811
-2.70307
-2.56153
-2.36557
-2.12551
-1.85115
-1.59466
-1.37164
-1.18639
-1.26078
-1.28154
-0.729725
-0.811857
-0.969481
-1.25287
-1.4538
-1.63143
-1.78004
-1.93405
-2.08012
-2.20876
-2.30926
-2.38246
-2.42992
-2.46235
-2.48571
-2.51739
-2.52127
-2.4595
-2.30928
-1.80017
-1.42285
-1.1051
-1.10508
-1.56919
-2.25104
-2.92688
-2.98431
-3.03364
-2.96721
-2.9005
-2.81092
-2.68526
-2.50871
-2.287
-2.00417
-1.74524
-1.51373
-1.30944
-1.31897
-1.36938
-0.914479
-0.993525
-1.20352
-1.43991
-1.62915
-1.78854
-1.9451
-2.08595
-2.21753
-2.3268
-2.40255
-2.45652
-2.48903
-2.5207
-2.55242
-2.55574
-2.52428
-2.48893
-2.11979
-1.68169
-1.41616
-1.1368
-1.08512
-1.44562
-1.91897
-2.673
-3.08361
-3.03967
-3.04831
-2.97744
-2.88748
-2.79234
-2.63593
-2.43658
-2.16248
-1.88454
-1.63647
-1.45589
-1.34077
-1.46584
-1.011
-1.13006
-1.33997
-1.56417
-1.74011
-1.89928
-2.04179
-2.17708
-2.29711
-2.39121
-2.46315
-2.51252
-2.54228
-2.55058
-2.54153
-2.532
-2.52068
-2.19895
-1.71726
-1.56594
-1.34351
-1.14996
-1.0923
-1.40343
-1.73165
-2.114
-2.83469
-3.11176
-3.03057
-3.04221
-2.97145
-2.88393
-2.75113
-2.58249
-2.32658
-2.06119
-1.75935
-1.63167
-1.48058
-1.56574
-1.21234
-1.32475
-1.53286
-1.72024
-1.911
-2.06112
-2.20505
-2.32363
-2.42464
-2.48675
-2.51646
-2.5043
-2.48458
-2.47631
-2.49815
-2.42737
-2.05044
-1.59748
-1.45549
-1.40949
-1.27586
-1.13755
-1.09782
-1.37891
-1.65015
-1.89177
-2.16745
-2.82607
-3.08592
-3.03542
-2.99322
-2.95464
-2.83996
-2.68327
-2.45892
-2.17987
-1.88965
-1.73018
-1.60734
-1.6775
-1.17253
-1.33732
-1.49208
-1.70119
-1.87902
-2.04003
-2.15155
-2.24952
-2.31864
-2.37124
-2.39146
-2.40466
-2.39365
-2.33201
-2.10905
-1.66907
-1.30397
-1.21309
-1.20576
-1.21136
-1.16961
-1.09138
-1.09039
-1.32857
-1.59433
-1.78121
-1.9444
-2.18302
-2.63094
-3.06267
-3.0702
-3.01126
-2.91391
-2.80986
-2.60548
-2.34359
-2.06219
-1.86905
-1.72936
-1.8017
-1.21235
-1.29343
-1.47568
-1.59653
-1.78659
-1.90827
-2.06074
-2.15594
-2.24672
-2.2752
-2.24956
-2.08301
-1.77859
-1.44046
-1.12357
-0.974354
-0.892827
-0.898015
-0.928244
-0.978782
-1.0346
-1.02168
-1.0602
-1.25171
-1.53653
-1.71228
-1.84396
-1.98389
-2.13683
-2.38476
-2.8063
-3.06568
-3.02175
-2.88154
-2.71276
-2.48594
-2.21634
-2.06445
-1.95036
-2.09689
-0.76596
-0.828007
-0.938077
-1.09344
-1.28126
-1.38828
-1.46675
-1.49078
-1.4647
-1.39317
-1.16033
-1.02755
-0.917575
-0.846411
-0.734101
-0.649385
-0.595099
-0.584717
-0.657621
-0.725275
-0.902402
-0.924655
-1.01639
-1.1617
-1.45348
-1.64285
-1.76817
-1.88862
-1.97854
-2.09089
-2.16983
-2.35211
-2.73671
-2.98032
-2.84353
-2.62116
-2.31858
-2.06283
-1.90143
-1.86845
-0.220648
-0.276422
-0.356197
-0.457076
-0.58519
-0.703227
-0.822371
-0.874852
-0.937492
-0.9154
-0.875399
-0.828611
-0.739904
-0.646907
-0.512954
-0.423348
-0.336231
-0.312956
-0.414769
-0.497022
-0.742455
-0.847511
-0.967535
-1.10049
-1.3497
-1.5705
-1.71087
-1.82647
-1.90787
-1.97466
-2.04399
-2.08246
-2.10688
-2.17949
-2.64816
-2.66392
-2.58246
-2.50155
-2.49199
-2.7208
-0.277277
-0.169328
-0.211713
-0.261976
-0.379644
-0.491624
-0.590659
-0.667571
-0.720097
-0.734329
-0.718973
-0.710056
-0.628537
-0.533257
-0.377736
-0.259721
-0.154761
-0.124791
-0.241257
-0.334235
-0.664751
-0.778895
-0.923801
-1.05529
-1.23314
-1.48547
-1.63726
-1.7599
-1.83871
-1.89353
-1.94839
-1.96966
-2.02668
-1.97889
-1.89609
-1.91601
-1.90278
-1.82633
-1.85096
-1.96101
-0.270061
-0.215183
-0.228121
-0.263908
-0.374799
-0.455146
-0.591256
-0.647918
-0.772716
-0.763083
-0.780571
-0.742862
-0.629016
-0.486682
-0.306077
-0.167585
-0.0620846
-0.0331637
-0.153373
-0.186181
-0.536779
-0.701237
-0.876205
-1.04203
-1.20786
-1.40554
-1.59551
-1.73202
-1.82539
-1.87532
-1.94038
-1.95968
-2.038
-2.06086
-2.05954
-1.98496
-1.93356
-1.80469
-1.68331
-1.72613
-0.311614
-0.264063
-0.289417
-0.326101
-0.430497
-0.517251
-0.637986
-0.711317
-0.786797
-0.809028
-0.836708
-0.812111
-0.638318
-0.48351
-0.291654
-0.14606
-0.0566534
-0.0300855
-0.13604
-0.142055
-0.457072
-0.700664
-0.861462
-1.00379
-1.18098
-1.34701
-1.51427
-1.643
-1.75686
-1.80998
-1.89143
-1.88227
-1.93708
-1.87625
-1.92045
-1.90486
-1.95084
-1.82249
-1.72556
-1.69792
-0.377218
-0.335422
-0.365054
-0.397682
-0.502454
-0.566314
-0.699184
-0.777475
-0.863701
-0.904782
-0.908442
-0.837225
-0.700873
-0.538128
-0.39014
-0.240683
-0.13563
-0.0674183
-0.152092
-0.179336
-0.493173
-0.685968
-0.857024
-1.05838
-1.22679
-1.38071
-1.54039
-1.64273
-1.76595
-1.82377
-1.92671
-1.91815
-2.01362
-2.00062
-2.09366
-2.07148
-2.13852
-2.04151
-1.94589
-1.94259
-0.430128
-0.390984
-0.424239
-0.459039
-0.560345
-0.639992
-0.762207
-0.847857
-0.932757
-0.979932
-0.98655
-0.944257
-0.837589
-0.69904
-0.533554
-0.379966
-0.279196
-0.206303
-0.289463
-0.332516
-0.531336
-0.674582
-0.949716
-1.04035
-1.23693
-1.35588
-1.51792
-1.60097
-1.72761
-1.7452
-1.83058
-1.77288
-1.84061
-1.70531
-1.79999
-1.69264
-1.77864
-1.68309
-1.68099
-1.66463
-0.478954
-0.440418
-0.474914
-0.503793
-0.602174
-0.682987
-0.808245
-0.902777
-1.00082
-1.06579
-1.09992
-1.08582
-1.01928
-0.915176
-0.778028
-0.642035
-0.567129
-0.515257
-0.627182
-0.530503
-0.67546
-0.805615
-0.950193
-1.1142
-1.27959
-1.40319
-1.5733
-1.64994
-1.80952
-1.80442
-1.97235
-1.95529
-2.12152
-2.05098
-2.15792
-2.04511
-2.1099
-1.94505
-1.90695
-1.78506
-0.533866
-0.500128
-0.545843
-0.577944
-0.667572
-0.755475
-0.874815
-0.985156
-1.09584
-1.18379
-1.24945
-1.28517
-1.28723
-1.26691
-1.21918
-1.1724
-1.17219
-1.10013
-1.10407
-0.758363
-0.828225
-0.887197
-1.06504
-1.11068
-1.30155
-1.38221
-1.58962
-1.66965
-1.89829
-1.99416
-2.15571
-2.12037
-2.22871
-2.15612
-2.25804
-2.11135
-2.19998
-2.06252
-2.15224
-2.17885
-0.571155
-0.51897
-0.558172
-0.607154
-0.691196
-0.770273
-0.898855
-1.00779
-1.13608
-1.24717
-1.35164
-1.43757
-1.51293
-1.57152
-1.61707
-1.61571
-1.60956
-1.50707
-1.47334
-0.957525
-0.972125
-0.987508
-1.11338
-1.22159
-1.33887
-1.37711
-1.59514
-1.67168
-1.98513
-1.96151
-2.12002
-2.01552
-2.21449
-1.98552
-2.18473
-1.93642
-2.07666
-1.80823
-1.8518
-1.76302
-0.639565
-0.605826
-0.613621
-0.690108
-0.779706
-0.850765
-0.9587
-1.07583
-1.21001
-1.33097
-1.45092
-1.56197
-1.67026
-1.77164
-1.85682
-1.89362
-1.92355
-1.80757
-1.76753
-1.15366
-1.10699
-1.07181
-1.17024
-1.19031
-1.33006
-1.32218
-1.59774
-1.78794
-2.00489
-1.94911
-2.09591
-1.95377
-2.11854
-1.99504
-2.07454
-1.85393
-1.97393
-1.65539
-1.61905
-1.44436
-0.621999
-0.585648
-0.597014
-0.609938
-0.773274
-0.816988
-0.933781
-1.01769
-1.15831
-1.27366
-1.4027
-1.51949
-1.64726
-1.74887
-1.85278
-1.89129
-1.98369
-1.89499
-1.90224
-1.28844
-1.1705
-1.10419
-1.19991
-1.18532
-1.40021
-1.32034
-1.72014
-1.81265
-2.0557
-1.93867
-2.13753
-1.93236
-2.15399
-1.85441
-2.17604
-1.743
-2.01314
-1.58271
-1.57338
-1.30754
-0.703959
-0.681918
-0.689029
-0.672142
-0.816566
-0.890194
-0.986129
-1.06081
-1.17712
-1.28216
-1.40424
-1.51372
-1.63609
-1.71947
-1.82736
-1.84926
-1.96491
-1.87619
-1.94053
-1.44817
-1.22941
-1.14168
-1.21972
-1.15409
-1.37385
-1.20983
-1.73348
-1.82928
-2.08938
-1.9248
-2.15479
-1.90699
-2.13865
-1.8212
-2.05091
-1.73689
-1.93529
-1.53394
-1.52488
-1.20754
-0.64079
-0.605138
-0.621644
-0.57608
-0.653804
-0.759008
-0.845965
-0.900033
-1.01041
-1.10949
-1.24238
-1.35033
-1.48075
-1.55745
-1.68277
-1.69413
-1.83137
-1.74712
-1.83264
-1.50704
-1.19289
-1.10498
-1.16647
-1.08364
-1.32125
-1.18193
-1.77523
-1.85438
-2.13671
-1.93787
-2.19496
-1.8793
-2.16501
-1.74425
-2.0658
-1.59725
-1.92629
-1.40105
-1.48255
-1.0684
-0.743345
-0.737897
-0.721
-0.69813
-0.679706
-0.777509
-0.871637
-0.908406
-1.01212
-1.0869
-1.21407
-1.31012
-1.4423
-1.50725
-1.64311
-1.64547
-1.79628
-1.7204
-1.81874
-1.60374
-1.20432
-1.10505
-1.14423
-1.02218
-1.27444
-1.08504
-1.77489
-1.82211
-2.26551
-1.91618
-2.27559
-1.86803
-2.20625
-1.72079
-2.06309
-1.52645
-1.87626
-1.27171
-1.3573
-0.846311
-0.623282
-0.588518
-0.594187
-0.508421
-0.507733
-0.461003
-0.656017
-0.662414
-0.79153
-0.863787
-1.0106
-1.10001
-1.27407
-1.34029
-1.50507
-1.51456
-1.69625
-1.67336
-1.77559
-1.60362
-1.11804
-1.00503
-1.02651
-0.882578
-1.15677
-0.958049
-1.75337
-1.84817
-2.27135
-2.00434
-2.31151
-1.8484
-2.22539
-1.6286
-2.06233
-1.3402
-1.7967
-0.934658
-1.06316
-0.280161
-0.768481
-0.779011
-0.723862
-0.659412
-0.591603
-0.48548
-0.636404
-0.662704
-0.789054
-0.870984
-1.02103
-1.11502
-1.2912
-1.34119
-1.54544
-1.57458
-1.7882
-1.80183
-1.88665
-1.69671
-1.13196
-0.981676
-0.979364
-0.795923
-1.08053
-0.83863
-1.74289
-1.82321
-2.36715
-1.99268
-2.40689
-1.8639
-2.35732
-1.66313
-2.15767
-1.36714
-1.79256
-0.759363
-0.664734
0.461808
-0.595489
-0.537697
-0.569698
-0.374373
-0.341619
-0.16202
-0.306443
-0.367219
-0.526777
-0.627553
-0.819373
-0.946879
-1.17287
-1.25727
-1.49474
-1.53477
-1.78885
-1.83715
-1.90432
-1.68645
-1.03115
-0.829069
-0.796252
-0.574388
-0.881997
-0.630091
-1.65021
-1.77509
-2.42916
-1.99089
-2.48184
-1.81192
-2.3667
-1.53881
-2.15258
-1.17585
-1.56931
-0.43222
0.294579
2.39591
-0.746088
-0.849256
-0.714521
-0.633155
-0.481166
-0.249401
-0.290064
-0.374136
-0.505761
-0.623681
-0.818941
-0.964184
-1.20431
-1.33011
-1.60175
-1.68231
-1.98487
-2.03655
-2.07944
-1.77805
-1.07204
-0.770129
-0.683364
-0.399005
-0.702217
-0.485562
-1.59211
-1.76398
-2.53796
-2.07122
-2.62111
-1.89396
-2.47594
-1.64815
-2.33365
-1.31517
-1.86914
0.0132201
0.5752
4.72943
-0.917523
-0.519339
-0.600953
-0.144021
-0.160917
0.131389
0.0414779
-0.03371
-0.232841
-0.372332
-0.617477
-0.794076
-1.08825
-1.27443
-1.62528
-1.76806
-2.09861
-2.15457
-2.13501
-1.69153
-0.919895
-0.477328
-0.345038
0.0287132
-0.343514
-0.236852
-1.48602
-1.71537
-2.66817
-2.13867
-2.74733
-1.86594
-2.44835
-1.48616
-2.14459
-1.01288
-1.3729
1.01417
3.28529
10.3068
-0.492377
-0.995359
-0.852968
-0.755657
-0.311528
-0.149363
0.0284709
-0.0946054
-0.239402
-0.401731
-0.636456
-0.815385
-1.11246
-1.32681
-1.73105
-1.94219
-2.27843
-2.36076
-2.31973
-1.73448
-1.05251
-0.41564
-0.194611
0.27703
-0.0715856
0.0319806
-1.37643
-1.60913
-2.80363
-2.27961
-2.93239
-1.94663
-2.50737
-1.47089
-2.20914
-1.05521
-1.56603
1.71304
5.63264
17.2174
-3.13308
-0.282944
-0.435199
0.0895276
0.206548
0.377995
0.258696
0.183612
-0.0554411
-0.22574
-0.481061
-0.664673
-0.994651
-1.28518
-1.79348
-2.10596
-2.43328
-2.47201
-2.24808
-1.4615
-0.773551
0.0159172
0.251219
0.757329
0.345029
0.176413
-1.34059
-1.65046
-3.03821
-2.45051
-2.98595
-1.86094
-2.27221
-1.15827
-1.67639
-0.0598346
0.71865
6.65058
16.2902
35.194
-0.371857
-0.371348
-0.3783
-0.376071
-0.387845
-0.39898
-0.429864
-0.461556
-0.50786
-0.55125
-0.598453
-0.651682
-0.697999
-0.74301
-0.741614
-0.79788
-0.747962
-0.795227
-0.622174
-0.849147
-0.553047
-0.808964
-0.813297
-0.846144
-0.597608
-0.392624
-0.0663528
0.235065
0.470101
0.602765
0.480449
0.33055
0.00819705
-0.279432
-0.5451
-0.690211
-0.836375
-0.855332
-0.861148
-0.839906
-0.386676
-0.381663
-0.385784
-0.375758
-0.385509
-0.386978
-0.416747
-0.444581
-0.483885
-0.520233
-0.546803
-0.590036
-0.601786
-0.650855
-0.715983
-0.760196
-0.717557
-0.769903
-0.610275
-0.878234
-0.680768
-0.963566
-1.03866
-1.08095
-0.853782
-0.675119
-0.395243
-0.143029
0.0483726
0.200169
0.136171
0.00577729
-0.238736
-0.465834
-0.626532
-0.723309
-0.827259
-0.835322
-0.842345
-0.817821
-0.374517
-0.367576
-0.366162
-0.358318
-0.378995
-0.377778
-0.393722
-0.41405
-0.450454
-0.488087
-0.54436
-0.597126
-0.668543
-0.833326
-0.861836
-0.909596
-0.869309
-0.931118
-0.796946
-1.05542
-0.991678
-1.30351
-1.36151
-1.42518
-1.21796
-1.06082
-0.814819
-0.600196
-0.433584
-0.3022
-0.300479
-0.292277
-0.468873
-0.640612
-0.75934
-0.817113
-0.874719
-0.870734
-0.867377
-0.844951
-0.367984
-0.377446
-0.379037
-0.372342
-0.370467
-0.374835
-0.385813
-0.424276
-0.49471
-0.535013
-0.580454
-0.723781
-0.911369
-0.980507
-1.01793
-1.06836
-1.05597
-1.11997
-1.03179
-1.33736
-1.26659
-1.55144
-1.66141
-1.73244
-1.56415
-1.44227
-1.24708
-1.07194
-0.925998
-0.807191
-0.74834
-0.744779
-0.660412
-0.771332
-0.851271
-0.843706
-0.904425
-0.864583
-0.86959
-0.85532
-0.358046
-0.353161
-0.353505
-0.341473
-0.349865
-0.350816
-0.397291
-0.447481
-0.513162
-0.63263
-0.890187
-1.08131
-1.1422
-1.22222
-1.26308
-1.32101
-1.31692
-1.37524
-1.30243
-1.52614
-1.47392
-1.77913
-1.8942
-1.97802
-1.83363
-1.74301
-1.597
-1.45065
-1.32435
-1.19291
-1.13427
-1.03607
-1.03668
-0.835824
-0.915182
-0.894912
-0.941602
-0.915881
-0.913574
-0.909118
-0.349339
-0.365717
-0.336956
-0.354011
-0.348385
-0.396804
-0.426543
-0.543455
-0.869043
-1.09606
-1.18685
-1.28643
-1.35439
-1.42911
-1.47117
-1.52696
-1.5196
-1.55845
-1.49977
-1.69215
-1.6768
-1.93221
-2.09799
-2.15171
-2.02879
-1.99454
-1.90888
-1.79435
-1.68025
-1.55535
-1.44611
-1.31033
-1.27513
-1.07017
-0.937363
-0.915756
-0.890468
-0.916814
-0.927754
-0.934931
-0.292417
-0.324042
-0.314176
-0.333378
-0.370632
-0.42507
-0.651778
-1.04704
-1.16322
-1.28056
-1.40165
-1.51147
-1.58141
-1.65203
-1.69235
-1.73694
-1.7264
-1.75098
-1.68579
-1.86153
-1.82849
-2.07948
-2.17847
-2.27167
-2.20854
-2.18255
-2.12658
-2.05461
-1.97968
-1.85917
-1.7266
-1.59511
-1.41644
-1.32517
-1.02507
-0.944875
-0.934239
-0.934682
-0.969418
-0.976897
-0.314673
-0.360414
-0.379155
-0.448577
-0.530824
-0.790643
-1.08509
-1.21404
-1.37552
-1.50635
-1.61137
-1.70372
-1.76797
-1.8431
-1.86659
-1.90285
-1.89613
-1.91252
-1.8387
-1.85533
-1.69981
-1.94708
-2.24963
-2.32193
-2.35915
-2.34988
-2.33911
-2.29363
-2.23388
-2.12588
-2.01327
-1.81921
-1.61388
-1.44637
-1.18733
-0.978597
-0.940105
-1.00007
-0.98144
-1.01318
-0.305845
-0.377278
-0.443708
-0.582015
-0.760457
-1.03737
-1.22264
-1.41953
-1.54994
-1.6821
-1.7906
-1.88019
-1.94699
-2.00147
-2.03375
-2.06063
-2.05269
-2.04445
-1.96146
-1.83882
-1.60816
-1.48161
-2.08586
-2.31846
-2.4179
-2.47823
-2.49812
-2.4876
-2.44178
-2.34363
-2.2153
-2.03426
-1.79625
-1.56952
-1.38363
-1.06896
-0.989259
-1.02251
-1.04895
-1.06856
-0.371428
-0.445401
-0.533694
-0.708106
-0.966089
-1.23167
-1.41446
-1.57514
-1.71248
-1.84484
-1.94784
-2.03483
-2.09404
-2.14665
-2.1726
-2.19519
-2.19371
-2.17353
-2.09371
-1.90271
-1.57734
-1.31404
-1.64347
-2.26985
-2.45416
-2.59349
-2.6542
-2.67099
-2.63621
-2.54711
-2.42119
-2.23388
-2.01047
-1.73759
-1.51717
-1.24307
-1.04216
-1.05496
-1.09763
-1.10999
-0.443166
-0.521804
-0.625561
-0.849624
-1.14701
-1.37441
-1.54762
-1.71532
-1.85896
-1.98804
-2.094
-2.17488
-2.23137
-2.27258
-2.29688
-2.31661
-2.31066
-2.28601
-2.1962
-1.93459
-1.55022
-1.21676
-1.42694
-2.04918
-2.49124
-2.66894
-2.78242
-2.81223
-2.78447
-2.70518
-2.58967
-2.42153
-2.2053
-1.94411
-1.67692
-1.45917
-1.17614
-1.10352
-1.20248
-1.18203
-0.576215
-0.653221
-0.775731
-1.04921
-1.31095
-1.52645
-1.68967
-1.86698
-1.99207
-2.12974
-2.21794
-2.29289
-2.33848
-2.37485
-2.39423
-2.40103
-2.40402
-2.3716
-2.2371
-1.91512
-1.49867
-1.16815
-1.26317
-1.8094
-2.52396
-2.75867
-2.90408
-2.94205
-2.90432
-2.84311
-2.73427
-2.5871
-2.38689
-2.12576
-1.85605
-1.56968
-1.38062
-1.14791
-1.24272
-1.25359
-0.702367
-0.782219
-0.932367
-1.23246
-1.45284
-1.64997
-1.81325
-1.97676
-2.11975
-2.24
-2.32746
-2.3924
-2.43045
-2.45349
-2.45724
-2.47328
-2.4641
-2.40809
-2.33336
-1.89826
-1.47021
-1.16556
-1.16677
-1.60986
-2.27049
-2.88569
-2.96572
-3.05749
-2.99777
-2.93891
-2.85329
-2.72731
-2.55075
-2.32194
-2.03599
-1.75519
-1.52221
-1.32988
-1.30002
-1.371
-0.885322
-0.960447
-1.16864
-1.42641
-1.634
-1.81072
-1.98991
-2.1255
-2.2554
-2.35578
-2.42083
-2.46379
-2.48369
-2.49761
-2.50747
-2.49283
-2.43373
-2.44316
-2.08325
-1.74404
-1.44911
-1.19969
-1.15274
-1.49235
-1.95205
-2.6861
-3.09164
-3.06977
-3.08618
-3.01659
-2.93098
-2.83598
-2.68127
-2.47725
-2.20649
-1.89493
-1.63496
-1.46667
-1.34099
-1.45738
-1.00345
-1.10928
-1.33394
-1.5638
-1.75266
-1.9219
-2.06891
-2.2095
-2.32357
-2.41018
-2.4679
-2.50919
-2.52671
-2.52459
-2.47998
-2.43491
-2.43692
-2.13962
-1.73025
-1.575
-1.40203
-1.20805
-1.16274
-1.45403
-1.77815
-2.13575
-2.86146
-3.15606
-3.06171
-3.08282
-3.01869
-2.93491
-2.80316
-2.63706
-2.38629
-2.08605
-1.81234
-1.61123
-1.49844
-1.57256
-1.18371
-1.31317
-1.52214
-1.72705
-1.92356
-2.08306
-2.2295
-2.35859
-2.45692
-2.52149
-2.54748
-2.53313
-2.48271
-2.43738
-2.41481
-2.37006
-1.98224
-1.57067
-1.48313
-1.40247
-1.38039
-1.19081
-1.16692
-1.42378
-1.69518
-1.92515
-2.1765
-2.84899
-3.13349
-3.07059
-3.02947
-3.00493
-2.89257
-2.74778
-2.51463
-2.25723
-1.94772
-1.767
-1.63215
-1.70918
-1.23821
-1.38654
-1.55765
-1.76445
-1.93948
-2.10178
-2.21524
-2.31603
-2.38162
-2.42394
-2.42933
-2.44572
-2.43889
-2.38992
-2.14188
-1.66609
-1.23912
-1.15966
-1.16515
-1.16709
-1.20257
-1.11778
-1.14068
-1.36116
-1.63143
-1.81508
-1.96731
-2.19419
-2.61166
-3.11257
-3.11731
-3.0629
-2.95663
-2.87197
-2.66071
-2.4239
-2.10538
-1.9219
-1.74252
-1.82557
-1.21734
-1.33118
-1.52177
-1.6728
-1.85335
-1.98002
-2.13579
-2.2591
-2.35475
-2.41012
-2.41585
-2.33175
-2.0449
-1.62051
-1.15642
-0.907346
-0.741039
-0.766806
-0.835178
-0.924184
-1.05614
-1.02127
-1.08997
-1.26794
-1.55893
-1.73593
-1.86306
-2.00592
-2.14547
-2.36191
-2.78657
-3.13046
-3.08694
-2.94972
-2.75478
-2.54222
-2.26661
-2.11178
-2.00576
-2.14051
-0.924216
-1.00671
-1.10498
-1.29125
-1.4075
-1.55276
-1.61681
-1.66885
-1.67342
-1.62038
-1.3817
-1.1666
-0.96665
-0.834841
-0.65351
-0.473502
-0.324074
-0.370988
-0.448557
-0.635156
-0.875454
-0.893774
-1.01211
-1.15833
-1.4542
-1.65328
-1.7781
-1.90918
-1.9964
-2.11302
-2.16974
-2.31352
-2.69416
-3.03445
-2.89712
-2.69004
-2.38576
-2.10187
-1.93579
-1.8857
-0.17403
-0.235149
-0.338691
-0.44235
-0.592737
-0.725326
-0.826697
-0.909059
-0.969718
-0.98524
-0.923485
-0.878712
-0.758166
-0.598528
-0.367642
-0.142581
0.0465034
0.0525437
0.0411413
-0.308193
-0.645237
-0.750246
-0.923469
-1.07578
-1.32807
-1.57088
-1.71324
-1.84306
-1.9269
-2.00114
-2.07427
-2.12478
-2.13828
-2.11739
-2.64964
-2.70336
-2.63153
-2.53365
-2.55099
-2.7671
-0.287216
-0.171664
-0.22692
-0.269691
-0.415878
-0.494874
-0.641129
-0.68532
-0.766157
-0.803217
-0.760766
-0.729985
-0.607074
-0.431776
-0.178706
0.0950764
0.314737
0.392652
0.284741
-0.0548435
-0.450249
-0.630871
-0.827281
-1.01502
-1.19689
-1.46954
-1.63238
-1.77157
-1.85354
-1.91792
-1.97714
-2.01102
-2.07587
-2.05193
-1.93153
-1.96344
-1.895
-1.85356
-1.84357
-1.96233
-0.231738
-0.176868
-0.193687
-0.235778
-0.358227
-0.448841
-0.592473
-0.66391
-0.786156
-0.792223
-0.808813
-0.754345
-0.60785
-0.386246
-0.088272
0.223104
0.463049
0.524559
0.333541
0.132212
-0.243012
-0.519725
-0.758093
-0.984198
-1.17117
-1.39299
-1.5896
-1.74912
-1.84439
-1.90521
-1.97872
-2.01154
-2.09884
-2.12505
-2.14905
-2.03426
-2.01206
-1.88371
-1.71173
-1.7612
-0.293246
-0.248914
-0.279568
-0.317613
-0.434011
-0.517
-0.659307
-0.722791
-0.825467
-0.913974
-0.833132
-0.787916
-0.633442
-0.384668
-0.0955875
0.21157
0.425534
0.505931
0.333382
0.155884
-0.0790138
-0.47873
-0.760212
-0.94334
-1.14065
-1.32761
-1.50476
-1.65142
-1.77957
-1.83925
-1.92364
-1.9334
-1.99332
-1.94899
-1.97083
-1.93092
-1.97808
-1.84888
-1.70796
-1.71191
-0.355177
-0.319152
-0.356134
-0.397547
-0.509005
-0.611651
-0.722781
-0.799141
-0.89202
-0.909978
-0.992622
-0.909458
-0.820242
-0.488205
-0.191433
0.0981386
0.312176
0.391921
0.363115
0.198525
0.0458894
-0.487331
-0.710216
-0.994008
-1.19065
-1.37358
-1.54256
-1.65626
-1.78592
-1.8411
-1.96225
-1.98262
-2.06348
-2.05146
-2.12759
-2.08603
-2.16475
-2.06254
-1.93693
-1.93966
-0.415354
-0.383948
-0.424595
-0.464611
-0.572063
-0.649138
-0.789799
-0.869958
-0.965273
-1.01702
-1.02954
-0.973864
-0.863808
-0.674799
-0.467295
-0.229503
-0.0303214
0.109682
0.101004
0.0742473
-0.0836942
-0.395681
-0.769579
-1.02395
-1.20172
-1.33453
-1.50762
-1.60674
-1.74462
-1.76791
-1.85384
-1.80126
-1.85519
-1.72977
-1.8059
-1.6883
-1.76891
-1.67214
-1.66168
-1.66431
-0.460266
-0.43407
-0.476984
-0.513133
-0.615487
-0.703928
-0.827038
-0.931643
-1.03367
-1.1024
-1.15002
-1.13954
-1.06723
-0.932749
-0.745574
-0.538425
-0.380085
-0.237613
-0.26836
-0.212206
-0.400678
-0.629342
-0.802496
-1.06027
-1.24325
-1.38087
-1.58258
-1.6744
-1.80737
-1.81707
-1.98155
-1.97727
-2.14027
-2.07184
-2.17305
-2.05799
-2.13201
-1.97802
-1.94948
-1.83427
-0.528598
-0.503037
-0.552497
-0.591231
-0.687978
-0.777183
-0.905549
-1.01803
-1.13589
-1.22729
-1.29833
-1.32572
-1.31536
-1.25145
-1.14911
-1.01536
-0.936971
-0.86646
-0.905751
-0.702287
-0.789723
-0.882792
-1.05819
-1.1167
-1.28027
-1.36801
-1.58027
-1.67215
-1.89469
-2.00381
-2.17779
-2.13466
-2.23829
-2.16395
-2.24132
-2.10475
-2.20044
-2.06125
-2.1459
-2.1685
-0.554175
-0.51079
-0.571681
-0.618745
-0.707305
-0.793132
-0.91286
-1.04008
-1.17237
-1.28999
-1.3951
-1.47426
-1.52309
-1.53947
-1.5346
-1.49456
-1.48323
-1.38081
-1.38267
-0.962167
-0.988591
-1.01911
-1.13414
-1.18079
-1.33104
-1.35749
-1.58277
-1.64276
-1.99392
-1.96769
-2.12108
-2.01531
-2.22556
-1.9678
-2.15531
-1.91587
-2.03908
-1.78147
-1.81168
-1.72074
-0.642255
-0.602917
-0.622981
-0.715792
-0.797748
-0.874184
-0.967592
-1.10843
-1.24346
-1.36866
-1.49093
-1.59129
-1.68379
-1.74596
-1.80707
-1.82313
-1.86891
-1.76376
-1.75806
-1.21835
-1.11303
-1.1085
-1.18545
-1.20434
-1.31323
-1.31641
-1.57367
-1.78786
-2.00412
-1.95241
-2.09726
-1.95381
-2.09868
-1.96993
-2.06011
-1.83373
-1.96484
-1.6311
-1.59639
-1.42136
-0.62423
-0.587637
-0.596041
-0.652668
-0.790165
-0.841299
-0.951498
-1.0571
-1.18134
-1.30466
-1.43138
-1.54666
-1.65909
-1.73911
-1.83364
-1.8645
-1.96425
-1.88255
-1.90872
-1.38257
-1.18072
-1.1424
-1.22087
-1.19372
-1.41717
-1.31137
-1.68223
-1.81615
-2.05081
-1.93712
-2.13368
-1.92453
-2.14703
-1.83148
-2.14133
-1.72426
-1.97371
-1.55572
-1.54182
-1.28093
-0.710547
-0.685622
-0.695122
-0.686129
-0.864925
-0.913818
-1.00366
-1.06252
-1.1898
-1.29204
-1.42155
-1.52592
-1.64297
-1.71841
-1.82669
-1.84846
-1.96858
-1.89554
-1.95239
-1.53752
-1.23283
-1.17896
-1.23693
-1.16943
-1.38864
-1.22326
-1.70164
-1.84598
-2.08565
-1.93063
-2.14846
-1.9028
-2.12328
-1.80966
-2.04031
-1.68017
-1.91163
-1.49871
-1.5014
-1.18778
-0.641232
-0.605464
-0.625501
-0.579904
-0.682844
-0.774662
-0.852655
-0.902837
-0.996466
-1.1117
-1.24286
-1.35304
-1.48199
-1.55742
-1.68516
-1.70029
-1.83828
-1.76843
-1.84655
-1.58597
-1.19484
-1.14418
-1.1873
-1.09974
-1.33263
-1.17365
-1.6983
-1.84297
-2.12
-1.93333
-2.18929
-1.86817
-2.1513
-1.72622
-2.03974
-1.55777
-1.88649
-1.36911
-1.45204
-1.05441
-0.746791
-0.735599
-0.723269
-0.694015
-0.681328
-0.780505
-0.860948
-0.887127
-0.983822
-1.05163
-1.20606
-1.303
-1.43879
-1.5074
-1.64605
-1.64974
-1.79963
-1.74942
-1.8351
-1.6757
-1.20416
-1.14456
-1.16163
-1.03735
-1.2822
-1.07615
-1.76146
-1.84949
-2.25978
-1.9327
-2.26688
-1.86886
-2.18963
-1.71328
-2.02526
-1.53599
-1.79854
-1.254
-1.31344
-0.831806
-0.618147
-0.584759
-0.585679
-0.497427
-0.492914
-0.446961
-0.633896
-0.636148
-0.767051
-0.849183
-0.976437
-1.10812
-1.26246
-1.33711
-1.49965
-1.51327
-1.69361
-1.69947
-1.78464
-1.66086
-1.11037
-1.0352
-1.0332
-0.889266
-1.1508
-0.935009
-1.70918
-1.82652
-2.25274
-1.99613
-2.31083
-1.83173
-2.22612
-1.60967
-2.03559
-1.30085
-1.77616
-0.911795
-1.01457
-0.254021
-0.75914
-0.766378
-0.71784
-0.632897
-0.568459
-0.446055
-0.607305
-0.622096
-0.75447
-0.839406
-0.985147
-1.10722
-1.25224
-1.36198
-1.54886
-1.56836
-1.78953
-1.82566
-1.89376
-1.76155
-1.11996
-1.00996
-0.981728
-0.802521
-1.07132
-0.832228
-1.70609
-1.83682
-2.36665
-1.98447
-2.39511
-1.86058
-2.33131
-1.65452
-2.12968
-1.34794
-1.76791
-0.748701
-0.602281
0.501797
-0.583837
-0.521001
-0.554115
-0.339554
-0.311974
-0.112819
-0.263675
-0.320404
-0.490286
-0.597088
-0.798842
-0.941465
-1.12765
-1.25092
-1.46106
-1.5227
-1.81892
-1.86646
-1.90991
-1.7095
-0.999844
-0.825199
-0.774743
-0.571795
-0.850442
-0.643025
-1.58896
-1.79877
-2.41199
-1.99306
-2.46743
-1.80863
-2.3571
-1.53665
-2.12807
-1.17599
-1.51035
-0.440794
0.38285
2.4715
-0.716522
-0.820185
-0.688277
-0.580295
-0.444647
-0.182656
-0.234594
-0.316221
-0.46177
-0.587838
-0.794022
-0.947135
-1.19746
-1.33463
-1.62034
-1.68413
-1.98692
-2.05142
-2.07428
-1.8326
-1.05202
-0.793475
-0.687595
-0.423708
-0.684341
-0.462213
-1.5471
-1.76306
-2.53312
-2.0606
-2.60826
-1.88608
-2.46228
-1.65308
-2.31489
-1.30416
-1.85299
0.0432128
0.638371
4.83257
-0.889066
-0.496041
-0.566843
-0.0963218
-0.0951321
0.198094
0.109234
0.0290783
-0.185206
-0.336559
-0.595308
-0.779321
-1.07381
-1.26459
-1.61289
-1.75403
-2.08912
-2.16299
-2.12597
-1.7156
-0.90736
-0.476093
-0.335343
0.0126812
-0.32573
-0.201074
-1.41215
-1.70363
-2.66597
-2.14753
-2.74854
-1.87795
-2.44878
-1.4932
-2.13022
-1.03195
-1.35808
1.03225
3.40736
10.4475
-0.445927
-0.959903
-0.813676
-0.696345
-0.241766
-0.0666713
0.0995499
-0.0314705
-0.193446
-0.369988
-0.621136
-0.807436
-1.11256
-1.32725
-1.73055
-1.93919
-2.275
-2.3848
-2.32524
-1.77818
-1.06233
-0.448634
-0.197041
0.274646
-0.0407425
0.0998975
-1.30505
-1.57614
-2.79209
-2.28948
-2.9412
-1.95837
-2.50221
-1.48014
-2.20493
-1.07752
-1.53433
1.74604
5.78075
17.4224
-3.1178
-0.260938
-0.391205
0.148528
0.27718
0.450109
0.326153
0.241058
-0.0159566
-0.199133
-0.470477
-0.662021
-0.998656
-1.28418
-1.78771
-2.09758
-2.44567
-2.51489
-2.23833
-1.49061
-0.792408
-0.0134429
0.232606
0.760058
0.344249
0.22571
-1.2571
-1.6069
-3.02808
-2.47172
-3.00535
-1.88678
-2.27842
-1.1746
-1.66824
-0.0715617
0.758649
6.72493
16.5043
35.4708
-0.385313
-0.382064
-0.390976
-0.392375
-0.40915
-0.422801
-0.455208
-0.47559
-0.529038
-0.567571
-0.619417
-0.662638
-0.717469
-0.740617
-0.771342
-0.813456
-0.77109
-0.823057
-0.648984
-0.905304
-0.617827
-0.861051
-0.820833
-0.81631
-0.51402
-0.27063
0.0908635
0.396702
0.630378
0.733424
0.59783
0.471029
0.0561454
-0.223093
-0.522816
-0.656618
-0.825922
-0.850253
-0.856587
-0.833821
-0.400871
-0.390762
-0.400749
-0.393001
-0.410345
-0.405366
-0.45078
-0.468532
-0.522455
-0.543554
-0.575557
-0.605393
-0.619882
-0.660081
-0.732092
-0.77873
-0.736629
-0.79884
-0.628517
-0.910686
-0.707744
-0.960554
-1.02539
-1.0377
-0.760342
-0.557469
-0.247999
0.014877
0.240745
0.396972
0.297761
0.138588
-0.164821
-0.394297
-0.590633
-0.694349
-0.814469
-0.8315
-0.836619
-0.81059
-0.388347
-0.377511
-0.38283
-0.387648
-0.39245
-0.39601
-0.403251
-0.424915
-0.463835
-0.498644
-0.556546
-0.603722
-0.67345
-0.830058
-0.86784
-0.913456
-0.874182
-0.935028
-0.791004
-1.08347
-0.959339
-1.26274
-1.29421
-1.31458
-1.07334
-0.90898
-0.665177
-0.459761
-0.292326
-0.143476
-0.119716
-0.148144
-0.380649
-0.530701
-0.750777
-0.786231
-0.866287
-0.860597
-0.859115
-0.832841
-0.388026
-0.379536
-0.401575
-0.386763
-0.39449
-0.391434
-0.40882
-0.435492
-0.516106
-0.548732
-0.594431
-0.711761
-0.905081
-0.975373
-1.01297
-1.06489
-1.04712
-1.12111
-1.01584
-1.30123
-1.2567
-1.50994
-1.58419
-1.62886
-1.45055
-1.33173
-1.13265
-0.961624
-0.809153
-0.684549
-0.639381
-0.632638
-0.565129
-0.707854
-0.827868
-0.830742
-0.878991
-0.862772
-0.861192
-0.847546
-0.371752
-0.365802
-0.38157
-0.359792
-0.366595
-0.365173
-0.40067
-0.459065
-0.520881
-0.63032
-0.874737
-1.07152
-1.14489
-1.21785
-1.25493
-1.31169
-1.29942
-1.36638
-1.26014
-1.52048
-1.44634
-1.74336
-1.82126
-1.85794
-1.73016
-1.64617
-1.49599
-1.34952
-1.22512
-1.08714
-1.01968
-0.935169
-0.934417
-0.758585
-0.881231
-0.866474
-0.892929
-0.896718
-0.895906
-0.892886
-0.372083
-0.404683
-0.353819
-0.371559
-0.36239
-0.401296
-0.441127
-0.52741
-0.855505
-1.08691
-1.18901
-1.28263
-1.36492
-1.42487
-1.46781
-1.51937
-1.50545
-1.55734
-1.48053
-1.70074
-1.63241
-1.90082
-1.98228
-2.03459
-1.9972
-1.97414
-1.84775
-1.73156
-1.60017
-1.45598
-1.35828
-1.22153
-1.20851
-0.995694
-0.905176
-0.901014
-0.917313
-0.918269
-0.923408
-0.928435
-0.314281
-0.32162
-0.327935
-0.340756
-0.369683
-0.421339
-0.586546
-1.03185
-1.16416
-1.27972
-1.40308
-1.51773
-1.59153
-1.65669
-1.69962
-1.73072
-1.73904
-1.76122
-1.69676
-1.87432
-1.82649
-2.03327
-2.09008
-2.19921
-2.16508
-2.14457
-2.08555
-2.00198
-1.93836
-1.79713
-1.66735
-1.51778
-1.35296
-1.27169
-0.979281
-0.91225
-0.901231
-0.913806
-0.951453
-0.959913
-0.344106
-0.380213
-0.380876
-0.431733
-0.498084
-0.732666
-1.08853
-1.20699
-1.37853
-1.51289
-1.62545
-1.72115
-1.78569
-1.84279
-1.87239
-1.89955
-1.89322
-1.90137
-1.84906
-1.92999
-1.71258
-1.99006
-2.19604
-2.28383
-2.33517
-2.33151
-2.31326
-2.26492
-2.19919
-2.08564
-1.9685
-1.77025
-1.58958
-1.40794
-1.14671
-0.952022
-0.917246
-0.993938
-0.96866
-1.0021
-0.336898
-0.393839
-0.457638
-0.584671
-0.749505
-1.03412
-1.21265
-1.42342
-1.56203
-1.69937
-1.8166
-1.9025
-1.96871
-2.01585
-2.045
-2.0611
-2.06214
-2.04683
-1.99699
-1.88185
-1.63528
-1.54838
-2.15173
-2.30196
-2.40472
-2.44509
-2.45376
-2.43748
-2.39973
-2.31977
-2.18945
-2.03343
-1.79831
-1.554
-1.36657
-1.029
-0.952888
-0.996162
-1.02402
-1.04784
-0.390506
-0.456314
-0.536739
-0.697255
-0.946303
-1.2268
-1.42341
-1.58883
-1.73472
-1.8722
-1.97301
-2.06174
-2.11691
-2.16068
-2.1811
-2.19084
-2.19374
-2.16359
-2.13031
-1.93948
-1.62903
-1.40304
-1.84089
-2.29235
-2.44311
-2.54827
-2.58358
-2.59516
-2.57519
-2.51348
-2.4029
-2.2356
-2.02237
-1.75065
-1.49692
-1.24195
-1.00985
-1.03311
-1.08451
-1.09221
-0.457153
-0.528699
-0.626259
-0.838491
-1.14132
-1.3846
-1.56185
-1.73663
-1.88709
-2.01799
-2.12342
-2.20214
-2.25458
-2.28687
-2.30231
-2.30913
-2.30371
-2.28479
-2.22533
-1.97562
-1.62745
-1.32762
-1.6095
-2.18164
-2.45148
-2.60356
-2.67396
-2.70445
-2.71541
-2.67532
-2.5778
-2.42816
-2.2124
-1.95764
-1.66987
-1.42321
-1.15952
-1.06954
-1.18383
-1.1611
-0.581583
-0.653458
-0.766209
-1.03049
-1.31397
-1.54185
-1.7171
-1.90273
-2.02823
-2.16128
-2.24706
-2.3189
-2.35774
-2.38285
-2.39106
-2.38103
-2.38631
-2.36024
-2.28735
-2.03064
-1.60031
-1.29658
-1.42574
-1.92481
-2.47593
-2.64279
-2.77066
-2.80825
-2.83673
-2.82044
-2.73461
-2.60243
-2.40418
-2.15527
-1.85913
-1.56695
-1.36359
-1.1275
-1.22309
-1.23499
-0.704231
-0.778655
-0.916018
-1.22205
-1.45801
-1.67361
-1.83694
-2.0143
-2.15149
-2.27
-2.35223
-2.41325
-2.44401
-2.45423
-2.4396
-2.44001
-2.42781
-2.39669
-2.37012
-1.92177
-1.57354
-1.30458
-1.32092
-1.70069
-2.34543
-2.73575
-2.79962
-2.91389
-2.92794
-2.92659
-2.85973
-2.74951
-2.57351
-2.34798
-2.04638
-1.74456
-1.50694
-1.30814
-1.2789
-1.35566
-0.880067
-0.950922
-1.14798
-1.42095
-1.64061
-1.83586
-1.99433
-2.16271
-2.29144
-2.39198
-2.45179
-2.48762
-2.49321
-2.48075
-2.46879
-2.4313
-2.37368
-2.41992
-2.02347
-1.80974
-1.58811
-1.33184
-1.28071
-1.56044
-2.00534
-2.70219
-2.9211
-2.94343
-3.03203
-3.01676
-2.94626
-2.86395
-2.71201
-2.51607
-2.2224
-1.934
-1.64106
-1.44885
-1.32876
-1.4404
-1.01223
-1.10179
-1.32987
-1.56935
-1.76762
-1.95218
-2.10611
-2.249
-2.36165
-2.445
-2.49494
-2.52612
-2.52513
-2.49623
-2.41626
-2.34148
-2.3707
-2.09754
-1.77837
-1.64982
-1.52186
-1.3307
-1.27868
-1.5088
-1.83242
-2.15513
-2.85257
-3.06855
-3.02829
-3.08991
-3.03669
-2.96399
-2.83262
-2.67138
-2.40395
-2.13457
-1.79754
-1.62856
-1.501
-1.57076
-1.16508
-1.30494
-1.51293
-1.72679
-1.93537
-2.10931
-2.25946
-2.40093
-2.5083
-2.57791
-2.60579
-2.59026
-2.52407
-2.4205
-2.3283
-2.26321
-1.89789
-1.58268
-1.53512
-1.48786
-1.46814
-1.30369
-1.27613
-1.47608
-1.74462
-1.96693
-2.19844
-2.8619
-3.12674
-3.08634
-3.04411
-3.03221
-2.92785
-2.77953
-2.53978
-2.2762
-1.95658
-1.75639
-1.61567
-1.71928
-1.29145
-1.43025
-1.6032
-1.81472
-1.99239
-2.16498
-2.28202
-2.39387
-2.46332
-2.50083
-2.48549
-2.47022
-2.42723
-2.36001
-2.11928
-1.59609
-1.21261
-1.18284
-1.08668
-1.2324
-1.3085
-1.23297
-1.24664
-1.41472
-1.68082
-1.8512
-1.99441
-2.20842
-2.6237
-3.1447
-3.14591
-3.09427
-2.9857
-2.90048
-2.69176
-2.45182
-2.14413
-1.92037
-1.77177
-1.84548
-1.22337
-1.35457
-1.5571
-1.72294
-1.92001
-2.08624
-2.23717
-2.36371
-2.47594
-2.54343
-2.56061
-2.51195
-2.2896
-1.86681
-1.22901
-0.840591
-0.656864
-0.664869
-0.590102
-0.878959
-1.14695
-1.12393
-1.17687
-1.31687
-1.59567
-1.76993
-1.88284
-2.02867
-2.15389
-2.35863
-2.76957
-3.16534
-3.13545
-2.9988
-2.81658
-2.589
-2.30044
-2.13433
-2.03129
-2.17089
-1.12055
-1.20017
-1.27864
-1.46074
-1.57285
-1.74158
-1.82293
-1.91433
-1.96865
-1.96286
-1.74996
-1.48403
-1.14945
-0.86468
-0.532934
-0.270331
-0.0599057
0.036493
-0.193493
-0.39255
-1.00117
-0.983054
-1.08684
-1.21107
-1.47584
-1.68153
-1.79532
-1.93036
-2.01584
-2.13019
-2.17387
-2.28626
-2.64526
-3.05992
-2.96245
-2.74468
-2.41698
-2.14915
-1.96596
-1.89867
-0.0784966
-0.21193
-0.350751
-0.460614
-0.634361
-0.750109
-0.869095
-0.942112
-1.03115
-1.0726
-1.0247
-0.987754
-0.833529
-0.598814
-0.164101
0.112092
0.527754
0.450895
0.106121
-0.0037599
-0.764417
-0.82771
-0.978061
-1.12194
-1.32909
-1.59162
-1.72447
-1.86497
-1.94817
-2.02639
-2.10229
-2.1552
-2.16822
-2.07834
-2.62214
-2.72373
-2.63878
-2.62171
-2.59975
-2.85767
-0.303705
-0.212229
-0.235333
-0.303838
-0.438216
-0.533627
-0.689954
-0.739139
-0.846411
-0.888576
-0.854808
-0.813245
-0.639572
-0.371096
0.0941702
0.424188
0.849687
0.811061
0.762443
0.366162
-0.611805
-0.656399
-0.877439
-1.05278
-1.20744
-1.47634
-1.6466
-1.79403
-1.88184
-1.95229
-2.0097
-2.04143
-2.10904
-2.10924
-1.9692
-1.9676
-1.94474
-1.8867
-1.8587
-1.9683
-0.199531
-0.146054
-0.167846
-0.210717
-0.345422
-0.443804
-0.599583
-0.679145
-0.820098
-0.853955
-0.872169
-0.822268
-0.628342
-0.313585
0.194608
0.58204
1.00135
1.10067
1.13479
0.892879
-0.360951
-0.62083
-0.777026
-1.02122
-1.16422
-1.39738
-1.59268
-1.77179
-1.87955
-1.94374
-2.01947
-2.05102
-2.13913
-2.15434
-2.20585
-2.0612
-2.04534
-1.90406
-1.76547
-1.78494
-0.28147
-0.241523
-0.271269
-0.315118
-0.436879
-0.525599
-0.678473
-0.751834
-0.873494
-0.962602
-0.898678
-0.865345
-0.651349
-0.34412
0.171516
0.59504
0.971683
1.14202
1.32663
1.04693
0.0440929
-0.56422
-0.755475
-1.01169
-1.13626
-1.34301
-1.51972
-1.66543
-1.81116
-1.87586
-1.96104
-1.9646
-2.04225
-1.99139
-2.01345
-1.95636
-2.01207
-1.88161
-1.74365
-1.74185
-0.341112
-0.306004
-0.346009
-0.389449
-0.506973
-0.595863
-0.733735
-0.833664
-0.926795
-1.03208
-1.04375
-1.08444
-0.772431
-0.47669
0.035047
0.471978
0.750462
0.861295
0.901015
0.814665
0.170849
-0.456823
-0.589453
-0.958566
-1.15724
-1.37346
-1.56006
-1.70024
-1.85159
-1.88534
-1.98475
-1.99835
-2.09887
-2.08771
-2.16919
-2.12769
-2.20686
-2.11528
-1.98909
-2.00769
-0.404752
-0.380392
-0.425835
-0.470746
-0.586518
-0.666877
-0.814865
-0.90087
-1.00861
-1.07756
-1.09594
-1.11481
-0.988054
-0.750527
-0.330309
0.122379
0.43442
0.54478
0.33391
0.271671
-0.112699
-0.28305
-0.592886
-0.966936
-1.14529
-1.33695
-1.5286
-1.6273
-1.78395
-1.8065
-1.89661
-1.8232
-1.88795
-1.75566
-1.84115
-1.71243
-1.80087
-1.69364
-1.67083
-1.65921
-0.457579
-0.433048
-0.481315
-0.522581
-0.633742
-0.72392
-0.871937
-0.966821
-1.08279
-1.17312
-1.23527
-1.25335
-1.15793
-0.994543
-0.722278
-0.376811
-0.106437
0.119377
0.0204858
-0.0422329
-0.224475
-0.442573
-0.644132
-0.911218
-1.17688
-1.34958
-1.60004
-1.66325
-1.84304
-1.83686
-2.00297
-1.99693
-2.16578
-2.10771
-2.20968
-2.09953
-2.1784
-2.02388
-1.9992
-1.89179
-0.526569
-0.509736
-0.561924
-0.605699
-0.708046
-0.802099
-0.931775
-1.05604
-1.1837
-1.28865
-1.36849
-1.40703
-1.38637
-1.29648
-1.13474
-0.904476
-0.717964
-0.504053
-0.54904
-0.513958
-0.559321
-0.664575
-0.802916
-0.989727
-1.21476
-1.32751
-1.56405
-1.66956
-1.89221
-2.00042
-2.20393
-2.12547
-2.26079
-2.17222
-2.2723
-2.12391
-2.23546
-2.08855
-2.17195
-2.19045
-0.553456
-0.517307
-0.589704
-0.635136
-0.731176
-0.820078
-0.952362
-1.07909
-1.22195
-1.34651
-1.45685
-1.52915
-1.56269
-1.54796
-1.49809
-1.39325
-1.32761
-1.21596
-1.22414
-1.05276
-0.941396
-0.962721
-1.05731
-1.05431
-1.2657
-1.31906
-1.55306
-1.61191
-1.99003
-1.97241
-2.12574
-2.02374
-2.21395
-2.01756
-2.17313
-1.96061
-2.07631
-1.82534
-1.84632
-1.75053
-0.649679
-0.60148
-0.648307
-0.737056
-0.824951
-0.90739
-1.0365
-1.14691
-1.29087
-1.41652
-1.53283
-1.62805
-1.70484
-1.74485
-1.77978
-1.75765
-1.78605
-1.69485
-1.70077
-1.37401
-1.19627
-1.15919
-1.19975
-1.22741
-1.32039
-1.29513
-1.54226
-1.76977
-2.00444
-1.95457
-2.11224
-1.96337
-2.11416
-1.9869
-2.09008
-1.86054
-1.99016
-1.67586
-1.64544
-1.47237
-0.624718
-0.590552
-0.601666
-0.693559
-0.81206
-0.870362
-0.980519
-1.07991
-1.21879
-1.33578
-1.46391
-1.57295
-1.6799
-1.74956
-1.8341
-1.85046
-1.9391
-1.86875
-1.88177
-1.51599
-1.24408
-1.20333
-1.24026
-1.19215
-1.37489
-1.28957
-1.63607
-1.82014
-2.04964
-1.94529
-2.14615
-1.94511
-2.16991
-1.87837
-2.15789
-1.78598
-2.02338
-1.61992
-1.60394
-1.34332
-0.720512
-0.694802
-0.700434
-0.718069
-0.902858
-0.93878
-1.03236
-1.091
-1.21661
-1.32118
-1.4498
-1.5537
-1.66926
-1.73837
-1.8404
-1.85632
-1.96354
-1.90205
-1.93984
-1.6609
-1.29027
-1.25099
-1.28085
-1.19041
-1.40933
-1.18698
-1.67388
-1.84121
-2.08737
-1.93629
-2.16755
-1.9187
-2.15636
-1.84397
-2.07962
-1.73559
-1.98071
-1.56025
-1.57439
-1.25582
-0.647117
-0.613661
-0.632725
-0.589512
-0.723134
-0.790205
-0.870212
-0.912648
-1.03054
-1.13156
-1.26875
-1.37865
-1.5065
-1.57884
-1.7017
-1.71711
-1.84224
-1.79216
-1.8483
-1.68304
-1.22983
-1.20526
-1.2207
-1.12699
-1.34839
-1.18634
-1.69649
-1.86916
-2.12701
-1.95282
-2.21127
-1.89708
-2.18841
-1.77773
-2.10353
-1.62598
-1.97388
-1.4401
-1.53525
-1.12933
-0.74957
-0.739862
-0.728771
-0.699474
-0.693811
-0.797936
-0.868087
-0.893091
-1.00193
-1.09665
-1.23707
-1.3327
-1.4709
-1.53186
-1.66236
-1.67011
-1.80229
-1.78886
-1.85277
-1.76486
-1.23613
-1.20577
-1.20144
-1.07439
-1.30871
-1.08915
-1.69391
-1.84999
-2.26605
-1.94383
-2.29665
-1.89436
-2.23663
-1.76352
-2.10174
-1.59117
-1.91119
-1.33279
-1.40644
-0.914732
-0.620576
-0.589297
-0.587415
-0.497406
-0.491919
-0.453612
-0.631466
-0.630584
-0.772939
-0.851974
-1.01763
-1.12944
-1.28839
-1.35939
-1.5201
-1.54056
-1.70624
-1.7468
-1.80527
-1.74644
-1.1348
-1.09066
-1.06144
-0.917914
-1.1594
-0.939804
-1.66739
-1.8634
-2.26494
-2.0236
-2.33978
-1.87833
-2.26373
-1.6793
-2.11802
-1.39273
-1.87469
-0.982798
-1.13139
-0.345159
-0.756479
-0.764601
-0.720215
-0.625228
-0.561457
-0.434624
-0.610099
-0.61251
-0.760657
-0.847267
-1.01563
-1.09037
-1.31215
-1.38183
-1.56313
-1.5947
-1.79706
-1.8621
-1.90678
-1.83211
-1.13019
-1.05184
-0.997246
-0.821446
-1.07466
-0.834792
-1.67176
-1.86854
-2.38515
-2.02376
-2.43721
-1.89799
-2.3994
-1.72228
-2.19417
-1.44702
-1.84965
-0.850075
-0.676789
0.419992
-0.583349
-0.51883
-0.552631
-0.3305
-0.298443
-0.0887717
-0.259076
-0.302029
-0.487559
-0.590292
-0.808163
-0.917796
-1.16328
-1.24125
-1.51549
-1.5736
-1.81666
-1.90499
-1.92059
-1.80099
-1.0041
-0.87547
-0.786426
-0.582937
-0.852109
-0.635792
-1.56589
-1.78867
-2.43808
-2.03733
-2.51519
-1.87245
-2.42314
-1.60893
-2.23864
-1.23822
-1.67488
-0.361618
0.135174
2.41345
-0.699238
-0.810838
-0.676628
-0.562521
-0.420612
-0.155003
-0.224921
-0.295001
-0.460476
-0.589499
-0.810977
-0.962253
-1.22405
-1.34612
-1.60185
-1.69607
-1.9554
-2.06939
-2.09107
-1.88297
-1.05087
-0.81789
-0.686488
-0.432895
-0.682276
-0.471376
-1.49237
-1.78046
-2.5542
-2.10923
-2.66133
-1.93436
-2.51866
-1.71903
-2.37553
-1.3942
-1.92749
-0.0435632
0.594581
4.82838
-0.873058
-0.48618
-0.554156
-0.0739191
-0.0660757
0.236485
0.128473
0.0550486
-0.180337
-0.336616
-0.610474
-0.791422
-1.09815
-1.28393
-1.63585
-1.79238
-2.10552
-2.23907
-2.16376
-1.8191
-0.931403
-0.609446
-0.393118
-0.0426939
-0.347334
-0.218089
-1.37845
-1.72134
-2.68467
-2.19242
-2.80697
-1.92289
-2.50985
-1.54768
-2.21318
-1.09853
-1.41985
0.984919
3.38086
10.4822
-0.420769
-0.945713
-0.797602
-0.667609
-0.209869
-0.0183929
0.118191
-0.00618113
-0.19211
-0.375914
-0.644499
-0.832842
-1.14253
-1.35011
-1.73878
-1.95563
-2.27603
-2.41997
-2.36087
-1.84504
-1.05928
-0.507959
-0.226993
0.21807
-0.0576127
0.1138
-1.25489
-1.54651
-2.80236
-2.3155
-2.98457
-1.99352
-2.54682
-1.52799
-2.24866
-1.12612
-1.55857
1.76089
5.865
17.5561
-3.11327
-0.253344
-0.372082
0.179069
0.310095
0.487173
0.348675
0.262096
-0.0166342
-0.207934
-0.496131
-0.690774
-1.02942
-1.30433
-1.79142
-2.10935
-2.45068
-2.58197
-2.3169
-1.56442
-0.786355
-0.100405
0.169008
0.697554
0.307517
0.237066
-1.20168
-1.60383
-3.02647
-2.4982
-3.05194
-1.92557
-2.3272
-1.22438
-1.70986
-0.10544
0.755471
6.77609
16.6305
35.6263
-0.382067
-0.379783
-0.388349
-0.396486
-0.413402
-0.429995
-0.453849
-0.484958
-0.522158
-0.570831
-0.612571
-0.665897
-0.700937
-0.766878
-0.738744
-0.841355
-0.780993
-0.848419
-0.692279
-0.956551
-0.620062
-0.865143
-0.879955
-0.920315
-0.662242
-0.466519
-0.131968
0.161472
0.37065
0.499584
0.355723
0.335922
-0.00159682
-0.256425
-0.507866
-0.631657
-0.790698
-0.833069
-0.837271
-0.814443
-0.392201
-0.388106
-0.396864
-0.401496
-0.4155
-0.418781
-0.447736
-0.478161
-0.513228
-0.559348
-0.572988
-0.611508
-0.622083
-0.666436
-0.727482
-0.793734
-0.752707
-0.828566
-0.67403
-0.981358
-0.702191
-0.942395
-0.991379
-1.0328
-0.771942
-0.602905
-0.297382
-0.0452289
0.177491
0.300805
0.211473
0.0526032
-0.149659
-0.38247
-0.550157
-0.661397
-0.775756
-0.81038
-0.814605
-0.787929
-0.380414
-0.375077
-0.384387
-0.392906
-0.394465
-0.410268
-0.404971
-0.436092
-0.46402
-0.497068
-0.54996
-0.601601
-0.650008
-0.803174
-0.85829
-0.919854
-0.878805
-0.944213
-0.807291
-1.094
-0.939899
-1.24133
-1.29481
-1.31479
-1.07563
-0.916772
-0.659024
-0.445496
-0.256934
-0.0786253
-0.0546125
-0.109799
-0.331669
-0.511073
-0.675966
-0.745438
-0.84706
-0.844259
-0.841167
-0.812453
-0.376259
-0.381995
-0.391196
-0.404823
-0.39997
-0.405088
-0.415058
-0.44342
-0.524203
-0.562596
-0.593624
-0.682029
-0.866109
-0.97
-1.00994
-1.06278
-1.03638
-1.10514
-1.00075
-1.31591
-1.19298
-1.46339
-1.53103
-1.58317
-1.38874
-1.27085
-1.07053
-0.908421
-0.752963
-0.63239
-0.561238
-0.508288
-0.492646
-0.6668
-0.741688
-0.846564
-0.843442
-0.851321
-0.838698
-0.824198
-0.365104
-0.370829
-0.394959
-0.37186
-0.375925
-0.382339
-0.404737
-0.479299
-0.536146
-0.624655
-0.829633
-1.04037
-1.1218
-1.20931
-1.24982
-1.30339
-1.28569
-1.34444
-1.26751
-1.53751
-1.4265
-1.71832
-1.7624
-1.84038
-1.69978
-1.61149
-1.44886
-1.31319
-1.17036
-1.0349
-0.966244
-0.887785
-0.864141
-0.713571
-0.849682
-0.810699
-0.901103
-0.885979
-0.876184
-0.877738
-0.372461
-0.399311
-0.360539
-0.38165
-0.374352
-0.409722
-0.458296
-0.519127
-0.819078
-1.05762
-1.1775
-1.264
-1.35255
-1.42922
-1.46371
-1.51579
-1.51115
-1.55051
-1.49271
-1.70189
-1.6246
-1.87039
-1.94976
-2.09264
-1.99703
-1.92736
-1.80585
-1.68444
-1.5493
-1.41069
-1.30755
-1.15885
-1.16446
-0.927413
-0.861156
-0.882025
-0.888573
-0.909529
-0.898895
-0.90609
-0.329771
-0.350915
-0.338712
-0.357427
-0.368591
-0.4244
-0.516381
-0.99088
-1.15892
-1.26887
-1.39148
-1.50874
-1.59542
-1.65805
-1.70669
-1.75313
-1.7309
-1.76576
-1.71594
-1.88596
-1.85211
-2.047
-2.11387
-2.22219
-2.16714
-2.14864
-2.06689
-1.99732
-1.89404
-1.75758
-1.63765
-1.46176
-1.31038
-1.23263
-0.945316
-0.893171
-0.885111
-0.906066
-0.936784
-0.949059
-0.344496
-0.381909
-0.373046
-0.411297
-0.460425
-0.66044
-1.06779
-1.19561
-1.36853
-1.50855
-1.63193
-1.72824
-1.80305
-1.86468
-1.89092
-1.91755
-1.90946
-1.93248
-1.87763
-1.98986
-1.71741
-2.07096
-2.21623
-2.32094
-2.33931
-2.3439
-2.31536
-2.26972
-2.18372
-2.09367
-1.9331
-1.75141
-1.52928
-1.37152
-1.10946
-0.918786
-0.884475
-0.974937
-0.947164
-0.978104
-0.343061
-0.405197
-0.459121
-0.577029
-0.720683
-1.01915
-1.19248
-1.41702
-1.56598
-1.71257
-1.83506
-1.9262
-1.9965
-2.04551
-2.07235
-2.08752
-2.08189
-2.08097
-2.05268
-2.02168
-1.70374
-1.74752
-2.20316
-2.3501
-2.42803
-2.47454
-2.47782
-2.46512
-2.41502
-2.32258
-2.19394
-1.99915
-1.77067
-1.51887
-1.33723
-1.00967
-0.927553
-0.989188
-0.998835
-1.03775
-0.397135
-0.456382
-0.528875
-0.672681
-0.905733
-1.2066
-1.4192
-1.59386
-1.75299
-1.89818
-2.00872
-2.10114
-2.16174
-2.20218
-2.21691
-2.22081
-2.21958
-2.21046
-2.188
-2.06704
-1.73032
-1.6623
-2.02418
-2.35058
-2.48489
-2.58303
-2.62085
-2.63099
-2.59907
-2.53257
-2.41248
-2.23284
-2.00709
-1.72901
-1.47004
-1.2273
-0.975525
-1.01297
-1.06439
-1.07105
-0.463236
-0.52733
-0.617346
-0.811785
-1.11561
-1.38196
-1.56865
-1.75706
-1.91545
-2.05715
-2.16951
-2.25409
-2.30804
-2.33696
-2.34345
-2.33931
-2.32981
-2.32345
-2.2951
-2.11692
-1.76792
-1.57369
-1.83954
-2.29197
-2.50857
-2.65209
-2.7191
-2.75205
-2.74008
-2.69004
-2.59526
-2.44102
-2.22827
-1.96146
-1.67013
-1.42357
-1.16144
-1.05613
-1.16778
-1.14856
-0.575571
-0.641308
-0.743789
-0.989191
-1.29816
-1.53963
-1.73386
-1.91556
-2.06871
-2.21041
-2.3088
-2.3849
-2.42668
-2.44464
-2.44032
-2.41715
-2.41229
-2.40144
-2.38596
-2.14389
-1.71605
-1.53589
-1.68396
-2.12233
-2.51721
-2.70158
-2.81442
-2.85178
-2.85374
-2.82367
-2.74381
-2.6155
-2.42087
-2.16371
-1.85779
-1.56423
-1.3642
-1.11301
-1.21475
-1.21951
-0.696809
-0.763379
-0.88762
-1.18783
-1.44535
-1.67931
-1.86125
-2.04903
-2.19959
-2.33045
-2.42304
-2.49181
-2.52318
-2.52565
-2.49342
-2.46752
-2.44241
-2.43161
-2.40795
-2.0121
-1.71542
-1.51322
-1.55455
-1.86846
-2.4655
-2.73688
-2.86432
-2.94642
-2.93305
-2.91949
-2.87181
-2.77022
-2.60452
-2.37536
-2.0861
-1.77519
-1.51957
-1.32774
-1.27329
-1.3563
-0.855987
-0.922495
-1.10203
-1.39018
-1.6273
-1.84257
-2.02549
-2.20479
-2.35208
-2.46668
-2.54137
-2.58676
-2.59318
-2.5704
-2.52367
-2.46658
-2.37653
-2.42563
-2.01552
-1.88261
-1.71838
-1.5067
-1.47599
-1.66886
-2.16596
-2.76669
-2.90688
-2.97371
-3.01404
-2.99678
-2.95875
-2.88697
-2.74637
-2.54771
-2.27061
-1.94024
-1.64811
-1.45065
-1.33448
-1.43433
-1.00678
-1.07641
-1.30334
-1.54779
-1.76227
-1.9628
-2.13245
-2.29824
-2.42967
-2.53052
-2.59531
-2.63597
-2.63101
-2.5822
-2.46346
-2.32165
-2.34408
-2.04143
-1.80848
-1.70999
-1.70829
-1.48027
-1.44187
-1.56749
-1.92212
-2.37446
-2.95198
-3.04865
-3.00856
-3.06986
-3.05823
-2.99976
-2.87666
-2.71813
-2.46414
-2.17474
-1.83883
-1.63792
-1.50785
-1.57749
-1.11703
-1.25934
-1.46567
-1.6939
-1.91674
-2.10947
-2.27651
-2.44947
-2.58174
-2.67449
-2.72048
-2.71854
-2.64455
-2.51272
-2.32035
-2.24349
-1.79467
-1.56295
-1.34594
-1.49219
-1.66039
-1.42297
-1.40688
-1.52321
-1.80835
-2.04603
-2.32106
-2.98656
-3.11374
-3.08378
-3.06734
-3.06616
-2.97135
-2.83347
-2.60052
-2.33609
-1.98537
-1.78575
-1.6303
-1.72983
-1.32131
-1.43004
-1.61348
-1.8237
-2.01443
-2.19581
-2.34094
-2.48382
-2.58018
-2.63939
-2.63943
-2.62316
-2.5464
-2.41296
-2.05907
-1.39407
-0.866928
-0.827782
-0.805598
-1.15753
-1.54816
-1.31027
-1.33767
-1.44791
-1.72869
-1.90357
-2.0462
-2.26681
-2.6897
-3.16628
-3.18286
-3.14152
-3.02183
-2.94975
-2.75376
-2.50432
-2.18138
-1.95667
-1.79047
-1.85555
-1.16402
-1.31694
-1.53069
-1.71874
-1.9224
-2.10041
-2.28239
-2.44562
-2.58748
-2.68398
-2.7148
-2.66557
-2.42758
-1.8947
-1.05068
-0.487085
-0.0300835
-0.236596
-0.454759
-0.86306
-1.41254
-1.16514
-1.2285
-1.33962
-1.6198
-1.81237
-1.913
-2.0736
-2.17764
-2.39779
-2.79227
-3.214
-3.19057
-3.06423
-2.86883
-2.64476
-2.35163
-2.16823
-2.06484
-2.19078
-1.31897
-1.34631
-1.40626
-1.57638
-1.69133
-1.82612
-2.00118
-2.15732
-2.28379
-2.34533
-2.14607
-1.8598
-1.38865
-0.810228
-0.256138
0.429128
0.807241
0.5974
0.360024
-0.4374
-1.19457
-0.986903
-1.07973
-1.22099
-1.46422
-1.70944
-1.82054
-1.96818
-2.05403
-2.17429
-2.20435
-2.30051
-2.6245
-3.08201
-3.02497
-2.77629
-2.49385
-2.16466
-1.99823
-1.9065
-0.0661651
-0.237308
-0.396235
-0.505866
-0.698837
-0.808574
-0.926531
-1.01038
-1.10799
-1.16376
-1.13895
-1.10885
-0.889227
-0.449645
0.159634
1.00257
1.271
1.68398
1.47115
0.164203
-0.772495
-0.778682
-0.896873
-1.10461
-1.28575
-1.61046
-1.73848
-1.90267
-1.98816
-2.0758
-2.14526
-2.2029
-2.206
-2.09209
-2.59575
-2.74749
-2.69583
-2.64728
-2.64133
-2.90962
-0.333976
-0.238977
-0.264932
-0.329962
-0.461438
-0.578267
-0.733494
-0.826786
-0.94005
-1.02588
-1.00181
-0.980399
-0.718663
-0.259288
0.417739
1.33545
1.90632
2.39261
2.27028
1.0094
-0.655476
-0.544273
-0.721357
-1.0172
-1.15498
-1.46592
-1.65564
-1.82522
-1.90506
-1.97636
-2.03278
-2.09331
-2.15972
-2.18135
-2.05242
-2.02444
-1.98039
-1.89401
-1.89579
-1.97688
-0.180043
-0.0934832
-0.137555
-0.183505
-0.335042
-0.443746
-0.610207
-0.714749
-0.872475
-0.944582
-0.989356
-0.968351
-0.709822
-0.233188
0.47201
1.47447
2.20423
2.91525
2.73426
1.78501
0.0680306
-0.564094
-0.567128
-0.931178
-1.0977
-1.39799
-1.58827
-1.79788
-1.89026
-1.96356
-2.05168
-2.11176
-2.20037
-2.20288
-2.28852
-2.1026
-2.07988
-1.93326
-1.78574
-1.80873
-0.2708
-0.22993
-0.258556
-0.307028
-0.435563
-0.543612
-0.704051
-0.808736
-0.931922
-1.07161
-1.02677
-1.0085
-0.770353
-0.315014
0.334601
1.35049
2.1201
3.11255
3.23467
2.42068
1.03039
-0.0694375
-0.531615
-0.908617
-1.16378
-1.35494
-1.52704
-1.68256
-1.8186
-1.88327
-1.98447
-2.01758
-2.10488
-2.06113
-2.07257
-1.98003
-2.03573
-1.90348
-1.7589
-1.74496
-0.319958
-0.28329
-0.328811
-0.378236
-0.507972
-0.615417
-0.763257
-0.881661
-1.00675
-1.12905
-1.18149
-1.25292
-0.918772
-0.497009
0.101022
1.05675
1.58924
2.5935
2.9696
2.80533
1.09895
0.398577
-0.280995
-0.926283
-1.10009
-1.39819
-1.58045
-1.7148
-1.9058
-1.90946
-2.03971
-2.05615
-2.16767
-2.14032
-2.22722
-2.15707
-2.24258
-2.15436
-2.02985
-2.0341
-0.392107
-0.371801
-0.421146
-0.474655
-0.598937
-0.703357
-0.847921
-0.954844
-1.08803
-1.18538
-1.24817
-1.277
-1.20075
-0.864988
-0.380734
0.215935
1.02043
1.34999
1.95081
1.88246
0.75545
0.442371
-0.326479
-0.812663
-1.14934
-1.3938
-1.56087
-1.67086
-1.82803
-1.83578
-1.92217
-1.86785
-1.91901
-1.80427
-1.86367
-1.72378
-1.80657
-1.7021
-1.67694
-1.64514
-0.448339
-0.424891
-0.476634
-0.525507
-0.645027
-0.745729
-0.891336
-1.01088
-1.15118
-1.26449
-1.36538
-1.40361
-1.32993
-1.12468
-0.777412
-0.344127
0.11497
0.4435
0.639812
0.494865
-0.00987116
-0.390961
-0.679059
-0.923975
-1.17213
-1.3495
-1.59352
-1.68378
-1.86033
-1.88196
-2.03761
-2.04756
-2.20421
-2.1381
-2.23633
-2.11418
-2.19746
-2.04562
-2.02484
-1.92244
-0.520482
-0.507426
-0.564148
-0.613254
-0.727135
-0.825525
-0.981182
-1.097
-1.24796
-1.36589
-1.47329
-1.52006
-1.51746
-1.40151
-1.21781
-0.936303
-0.696259
-0.513967
-0.418227
-0.592177
-0.809608
-0.951581
-0.88931
-1.02068
-1.20488
-1.31914
-1.55493
-1.67224
-1.88655
-2.01298
-2.20667
-2.16813
-2.2801
-2.19281
-2.28689
-2.13631
-2.24042
-2.08895
-2.16447
-2.17554
-0.547695
-0.523308
-0.59202
-0.641806
-0.742065
-0.83656
-0.968344
-1.11217
-1.26922
-1.4021
-1.52104
-1.59717
-1.63329
-1.60197
-1.52544
-1.3888
-1.29278
-1.22793
-1.33067
-1.32694
-1.19587
-1.18312
-1.19745
-1.10598
-1.22438
-1.27461
-1.53746
-1.58399
-1.99985
-1.97916
-2.14435
-2.04847
-2.23108
-2.03049
-2.18235
-1.96134
-2.07949
-1.8262
-1.8395
-1.74287
-0.624777
-0.593887
-0.664426
-0.744007
-0.83694
-0.921987
-1.03628
-1.17679
-1.32716
-1.44975
-1.57532
-1.6658
-1.74106
-1.76076
-1.77681
-1.731
-1.7526
-1.72435
-1.75611
-1.72833
-1.30831
-1.25933
-1.21083
-1.13873
-1.24961
-1.2501
-1.49881
-1.74
-2.00142
-1.9562
-2.1144
-1.9747
-2.11402
-1.98884
-2.10601
-1.86357
-1.99842
-1.67703
-1.64039
-1.46375
-0.632745
-0.585974
-0.606315
-0.716698
-0.819258
-0.886146
-0.993874
-1.10727
-1.23794
-1.36127
-1.49291
-1.598
-1.69992
-1.75464
-1.824
-1.83283
-1.90825
-1.90502
-1.91343
-1.83456
-1.36436
-1.31246
-1.26617
-1.17373
-1.30212
-1.21882
-1.58037
-1.81257
-2.04843
-1.94128
-2.14692
-1.94305
-2.16604
-1.88404
-2.13808
-1.79331
-2.00225
-1.62074
-1.59234
-1.33385
-0.717461
-0.694663
-0.698015
-0.743678
-0.907123
-0.949024
-1.03727
-1.09491
-1.22834
-1.34074
-1.47524
-1.57489
-1.6874
-1.74601
-1.84098
-1.85405
-1.94743
-1.92404
-1.92306
-1.8526
-1.34447
-1.30371
-1.27215
-1.16397
-1.36999
-1.209
-1.65889
-1.84228
-2.08312
-1.93407
-2.16695
-1.91526
-2.15179
-1.83742
-2.08497
-1.72284
-1.96867
-1.55216
-1.56175
-1.24015
-0.647475
-0.613543
-0.629927
-0.592193
-0.739518
-0.787591
-0.866266
-0.905687
-1.03387
-1.14692
-1.29426
-1.39845
-1.52569
-1.59102
-1.70871
-1.7276
-1.83656
-1.83082
-1.85355
-1.83766
-1.28789
-1.2671
-1.23464
-1.12751
-1.351
-1.09293
-1.63073
-1.8632
-2.12309
-1.94462
-2.2076
-1.88874
-2.17912
-1.76756
-2.09157
-1.61563
-1.95043
-1.42837
-1.51182
-1.1056
-0.749108
-0.735932
-0.727456
-0.692718
-0.699411
-0.798724
-0.861271
-0.882222
-0.993149
-1.10153
-1.25574
-1.35477
-1.49239
-1.54903
-1.67803
-1.69186
-1.80767
-1.84551
-1.87251
-1.88414
-1.27691
-1.25703
-1.21066
-1.0868
-1.31309
-1.09749
-1.68429
-1.86839
-2.26834
-1.95038
-2.29807
-1.89029
-2.23094
-1.75075
-2.09566
-1.56203
-1.89927
-1.31844
-1.37772
-0.884598
-0.617321
-0.588798
-0.580754
-0.491064
-0.484575
-0.458671
-0.621811
-0.618856
-0.770126
-0.855941
-1.04415
-1.15165
-1.31314
-1.38369
-1.53874
-1.56586
-1.72435
-1.80449
-1.82829
-1.84743
-1.16872
-1.14383
-1.07753
-0.939517
-1.16499
-0.941517
-1.59591
-1.84707
-2.27035
-2.02011
-2.33835
-1.86866
-2.26617
-1.66667
-2.11299
-1.38208
-1.84864
-0.958353
-1.10712
-0.315636
-0.748567
-0.753553
-0.718316
-0.606298
-0.551916
-0.418253
-0.609383
-0.592872
-0.752012
-0.827685
-1.01626
-1.14677
-1.33267
-1.40777
-1.59151
-1.6237
-1.82109
-1.91986
-1.9285
-1.92468
-1.16298
-1.10967
-1.01566
-0.847752
-1.07331
-0.851743
-1.61838
-1.88541
-2.38707
-2.06196
-2.44248
-1.91417
-2.38268
-1.7171
-2.1797
-1.42865
-1.77444
-0.873624
-0.63991
0.443257
-0.577745
-0.511101
-0.544396
-0.31549
-0.283513
-0.0633905
-0.256019
-0.280597
-0.481405
-0.588541
-0.815984
-0.954394
-1.14656
-1.30164
-1.53184
-1.59496
-1.83041
-1.94114
-1.92992
-1.86881
-1.02668
-0.924742
-0.802586
-0.614741
-0.855866
-0.659533
-1.51854
-1.83534
-2.44176
-2.04132
-2.52552
-1.87034
-2.43309
-1.60373
-2.23653
-1.22471
-1.6596
-0.301585
0.146058
2.46425
-0.675212
-0.791771
-0.661008
-0.533938
-0.397837
-0.117028
-0.215628
-0.267269
-0.453451
-0.583145
-0.819597
-0.978595
-1.24451
-1.36935
-1.6481
-1.70493
-2.00037
-2.12468
-2.10313
-1.95893
-1.06885
-0.874208
-0.706898
-0.470687
-0.696758
-0.499885
-1.46434
-1.817
-2.55969
-2.13402
-2.66365
-1.93724
-2.50801
-1.69849
-2.37082
-1.38428
-1.88956
-0.0351417
0.683101
4.91586
-0.851721
-0.47054
-0.536567
-0.0477513
-0.0351752
0.277838
0.146632
0.0831557
-0.173115
-0.334655
-0.622671
-0.811352
-1.11743
-1.31108
-1.65298
-1.80731
-2.10804
-2.21953
-2.16892
-1.87018
-0.959354
-0.62093
-0.408018
-0.11256
-0.393731
-0.276932
-1.34892
-1.78593
-2.6964
-2.19858
-2.79551
-1.93257
-2.51331
-1.55513
-2.21794
-1.0763
-1.36969
1.05347
3.49145
10.6367
-0.387255
-0.921309
-0.774392
-0.631363
-0.173938
0.0344625
0.140055
0.0252657
-0.185633
-0.375841
-0.66166
-0.853835
-1.16648
-1.37007
-1.75485
-1.97093
-2.28692
-2.44977
-2.38547
-1.9191
-1.09161
-0.576756
-0.305617
0.16865
-0.0950085
0.0977563
-1.22143
-1.52649
-2.80885
-2.31983
-2.98941
-1.99534
-2.53762
-1.51801
-2.20234
-1.09731
-1.46403
1.88667
6.05765
17.7995
-3.10093
-0.23906
-0.349496
0.212641
0.346597
0.528152
0.375574
0.289357
-0.0114541
-0.211328
-0.51604
-0.715018
-1.05243
-1.31703
-1.79161
-2.10478
-2.44449
-2.5921
-2.34343
-1.64953
-0.839702
-0.174645
0.122563
0.589927
0.220998
0.197252
-1.1974
-1.6431
-3.01739
-2.51008
-3.06763
-1.94496
-2.33177
-1.23145
-1.67987
-0.0744168
0.844057
6.92278
16.8433
35.8895
-0.391488
-0.384442
-0.399021
-0.407076
-0.432991
-0.447562
-0.479812
-0.503205
-0.547419
-0.583983
-0.630553
-0.672164
-0.721799
-0.759192
-0.781005
-0.81117
-0.825107
-0.886326
-0.737865
-1.03706
-0.700032
-0.874716
-0.889321
-0.92671
-0.678602
-0.49145
-0.17464
0.0894478
0.28266
0.382052
0.273526
0.22325
-0.0975504
-0.268786
-0.524914
-0.61476
-0.761563
-0.822827
-0.829581
-0.805265
-0.401634
-0.394426
-0.409668
-0.413193
-0.437167
-0.439398
-0.481812
-0.501197
-0.565917
-0.576268
-0.603927
-0.62345
-0.642972
-0.670195
-0.721036
-0.80355
-0.773379
-0.866654
-0.707605
-1.01218
-0.800663
-0.975869
-1.03785
-1.09937
-0.850934
-0.681894
-0.39295
-0.164931
0.0566745
0.184835
0.0771557
0.0147242
-0.21619
-0.37668
-0.569053
-0.626501
-0.746017
-0.796581
-0.804474
-0.77719
-0.39329
-0.384087
-0.401408
-0.4086
-0.422065
-0.420139
-0.432866
-0.472194
-0.50968
-0.528975
-0.573981
-0.615988
-0.653277
-0.768902
-0.866978
-0.922409
-0.895577
-0.966019
-0.821412
-1.14307
-0.918361
-1.16818
-1.27005
-1.30568
-1.06335
-0.910373
-0.66109
-0.448338
-0.270591
-0.0894471
-0.106729
-0.159045
-0.378151
-0.487769
-0.672025
-0.713723
-0.829304
-0.831922
-0.834312
-0.80037
-0.3935
-0.391461
-0.413764
-0.417984
-0.428828
-0.42446
-0.453959
-0.465766
-0.559673
-0.583964
-0.616331
-0.669928
-0.840265
-0.960972
-1.00445
-1.05852
-1.03452
-1.10628
-1.00114
-1.30552
-1.19069
-1.4296
-1.5348
-1.56574
-1.37121
-1.24643
-1.03732
-0.869892
-0.705755
-0.573239
-0.502136
-0.427097
-0.48207
-0.622228
-0.750573
-0.796659
-0.838486
-0.846053
-0.82977
-0.812069
-0.387194
-0.380149
-0.421989
-0.392086
-0.404087
-0.409281
-0.417273
-0.497639
-0.558267
-0.625524
-0.787464
-1.01038
-1.11003
-1.19077
-1.23805
-1.29371
-1.27789
-1.34142
-1.25444
-1.56203
-1.42283
-1.69361
-1.77079
-1.82775
-1.67887
-1.58404
-1.42315
-1.27998
-1.14444
-1.00669
-0.940566
-0.85953
-0.782586
-0.683162
-0.841794
-0.787133
-0.915999
-0.859826
-0.875655
-0.860924
-0.402128
-0.414055
-0.394046
-0.401468
-0.403059
-0.410416
-0.484583
-0.501087
-0.764736
-1.01644
-1.17363
-1.25185
-1.34404
-1.41632
-1.46624
-1.50623
-1.50591
-1.55511
-1.51051
-1.75528
-1.62412
-1.87044
-1.99991
-2.06873
-1.98413
-1.92475
-1.80603
-1.67842
-1.54395
-1.39449
-1.30262
-1.13701
-1.1664
-0.880255
-0.855452
-0.877834
-0.890697
-0.902668
-0.889489
-0.894364
-0.372325
-0.390565
-0.371024
-0.389043
-0.382766
-0.4497
-0.46292
-0.916598
-1.15723
-1.2613
-1.3804
-1.50456
-1.59534
-1.66676
-1.7146
-1.75048
-1.74531
-1.78068
-1.7555
-1.95108
-1.78475
-2.09236
-2.15146
-2.24565
-2.19221
-2.16766
-2.09329
-2.01914
-1.89717
-1.76063
-1.61485
-1.45031
-1.29509
-1.22284
-0.935375
-0.890811
-0.87356
-0.919607
-0.932043
-0.945957
-0.380678
-0.404413
-0.392751
-0.409434
-0.45067
-0.54493
-1.00733
-1.18573
-1.35373
-1.50304
-1.63509
-1.74386
-1.82314
-1.8823
-1.91479
-1.93324
-1.93365
-1.95233
-1.95293
-2.07825
-1.8631
-2.15166
-2.27814
-2.35502
-2.37733
-2.38091
-2.34775
-2.29239
-2.2099
-2.08315
-1.93233
-1.74345
-1.53134
-1.3619
-1.10366
-0.906868
-0.874884
-0.920255
-0.93842
-0.959498
-0.393795
-0.43593
-0.479861
-0.572875
-0.682296
-1.00039
-1.17557
-1.40369
-1.56811
-1.7252
-1.85401
-1.95934
-2.03269
-2.08408
-2.10985
-2.11429
-2.11596
-2.11145
-2.13386
-2.12704
-1.84826
-1.8984
-2.27739
-2.40542
-2.47958
-2.52186
-2.52267
-2.50292
-2.44799
-2.34591
-2.21744
-2.01325
-1.79065
-1.52079
-1.33616
-1.0032
-0.916906
-1.02275
-0.989869
-1.03983
-0.422696
-0.472156
-0.533248
-0.65636
-0.86093
-1.17651
-1.40467
-1.59486
-1.76613
-1.92552
-2.04895
-2.15073
-2.2158
-2.25436
-2.26557
-2.25347
-2.25569
-2.23612
-2.26868
-2.1503
-1.8355
-1.87458
-2.19431
-2.42945
-2.54747
-2.63695
-2.6674
-2.67477
-2.63872
-2.56581
-2.43574
-2.265
-2.01625
-1.74089
-1.46339
-1.23401
-0.95641
-1.0036
-1.04851
-1.05764
-0.492147
-0.545154
-0.625388
-0.793473
-1.08743
-1.37585
-1.56993
-1.77052
-1.94284
-2.10194
-2.22632
-2.32413
-2.38324
-2.4088
-2.40809
-2.38463
-2.37186
-2.35794
-2.38138
-2.19014
-1.84767
-1.82789
-2.05015
-2.3993
-2.57752
-2.70709
-2.76829
-2.79817
-2.78271
-2.73017
-2.62929
-2.47092
-2.26233
-1.98015
-1.67391
-1.4175
-1.15686
-1.04828
-1.14471
-1.15337
-0.586887
-0.644302
-0.735744
-0.952969
-1.27927
-1.53185
-1.74138
-1.93939
-2.11078
-2.26903
-2.38629
-2.47585
-2.52591
-2.53835
-2.52571
-2.46737
-2.46415
-2.43692
-2.47231
-2.15867
-1.86995
-1.78842
-1.94639
-2.32593
-2.59538
-2.76211
-2.85726
-2.90005
-2.89953
-2.86691
-2.77866
-2.65106
-2.45383
-2.20473
-1.8801
-1.5701
-1.36101
-1.11066
-1.22544
-1.19803
-0.70632
-0.764409
-0.8722
-1.15833
-1.43026
-1.68014
-1.87631
-2.07765
-2.25085
-2.40408
-2.51963
-2.60827
-2.65361
-2.65308
-2.59825
-2.54739
-2.48449
-2.47974
-2.42433
-2.06456
-1.90199
-1.75861
-1.81181
-2.07397
-2.56102
-2.78675
-2.91848
-2.98579
-2.97934
-2.96434
-2.90093
-2.79987
-2.63279
-2.4094
-2.09701
-1.77986
-1.51541
-1.33206
-1.26442
-1.35511
-0.847824
-0.908741
-1.06451
-1.36189
-1.60743
-1.8424
-2.03745
-2.24366
-2.41284
-2.55472
-2.65974
-2.73211
-2.76224
-2.71947
-2.66629
-2.49923
-2.42765
-2.45072
-2.09301
-1.99783
-1.95063
-1.73351
-1.70814
-1.81818
-2.34868
-2.81019
-2.94109
-3.03623
-3.05852
-3.04153
-2.9812
-2.91014
-2.77465
-2.57918
-2.29712
-1.96794
-1.65432
-1.44761
-1.3399
-1.42672
-1.00933
-1.06157
-1.27682
-1.52561
-1.75224
-1.97121
-2.15882
-2.34895
-2.50278
-2.63237
-2.7345
-2.81238
-2.82905
-2.77713
-2.58269
-2.41196
-2.35526
-2.04373
-1.75376
-1.90896
-1.94815
-1.69512
-1.62927
-1.6508
-2.00641
-2.6123
-2.99802
-3.06394
-3.05552
-3.10289
-3.06641
-3.02098
-2.90305
-2.73426
-2.49854
-2.18762
-1.85036
-1.63928
-1.51307
-1.58538
-1.0916
-1.21624
-1.42356
-1.65979
-1.89304
-2.10848
-2.30704
-2.49762
-2.65855
-2.79125
-2.88638
-2.92374
-2.88442
-2.68879
-2.46911
-2.17623
-1.59011
-1.50503
-1.48714
-1.90523
-2.13905
-1.68024
-1.58992
-1.59215
-1.87823
-2.13901
-2.58008
-3.09814
-3.14702
-3.11012
-3.06623
-3.08177
-2.99962
-2.84864
-2.63462
-2.36339
-2.01574
-1.79074
-1.63623
-1.74605
-1.33777
-1.39778
-1.60432
-1.80981
-2.02088
-2.22193
-2.39164
-2.55741
-2.68475
-2.78084
-2.83445
-2.85439
-2.77439
-2.56226
-2.04153
-1.09854
-0.895011
-0.814547
-1.04443
-1.6674
-2.19579
-1.65354
-1.52116
-1.53442
-1.78445
-1.97295
-2.10246
-2.37377
-2.87853
-3.22178
-3.19703
-3.16667
-3.054
-2.96645
-2.79552
-2.5397
-2.21987
-1.97472
-1.80624
-1.87841
-1.12647
-1.28021
-1.50168
-1.6954
-1.91108
-2.11151
-2.30507
-2.49325
-2.67398
-2.82842
-2.93085
-2.93159
-2.67436
-1.96022
-0.655649
-0.194258
0.177109
0.54754
0.370409
-0.855682
-2.02343
-1.56853
-1.39146
-1.43778
-1.66083
-1.86969
-1.95713
-2.11664
-2.20266
-2.44182
-2.82252
-3.22296
-3.22564
-3.09702
-2.90994
-2.68552
-2.39287
-2.20153
-2.10071
-2.23539
-1.3293
-1.36448
-1.46207
-1.59725
-1.76702
-1.92915
-2.1196
-2.30338
-2.47483
-2.52593
-2.42602
-2.16886
-1.57852
-0.856207
0.352579
0.545774
1.59372
2.40746
2.24056
0.447394
-1.73497
-1.45829
-1.20948
-1.33549
-1.49058
-1.76488
-1.86056
-2.01009
-2.10007
-2.20155
-2.21738
-2.31868
-2.58775
-3.08529
-3.02509
-2.82679
-2.52033
-2.1987
-2.01644
-1.90756
-0.137874
-0.311457
-0.468606
-0.583607
-0.77731
-0.921865
-1.00531
-1.10025
-1.206
-1.22079
-1.28089
-1.30324
-1.053
-0.460997
0.900901
1.22497
2.98025
4.41445
4.26641
1.99507
-1.29822
-1.2509
-1.01935
-1.21865
-1.29758
-1.65482
-1.7728
-1.94503
-2.01117
-2.08184
-2.17055
-2.24923
-2.28887
-2.19964
-2.58495
-2.8293
-2.732
-2.70364
-2.7017
-2.97306
-0.328265
-0.248666
-0.287573
-0.348438
-0.486649
-0.621488
-0.785776
-0.903111
-1.05849
-1.11313
-1.17091
-1.18204
-0.965522
-0.257635
1.16334
1.74161
3.7691
5.42741
5.67895
3.14336
-0.735734
-1.10908
-0.798556
-1.10881
-1.19623
-1.49228
-1.69976
-1.86713
-1.94778
-2.02937
-2.09424
-2.12468
-2.19864
-2.22446
-2.10477
-2.02015
-2.00862
-1.90632
-1.9025
-1.97753
-0.157289
-0.0560527
-0.116461
-0.165455
-0.316893
-0.460809
-0.613521
-0.756404
-0.931983
-1.07112
-1.19208
-1.24475
-1.05698
-0.368201
1.06191
2.06635
4.02739
5.55534
6.12294
4.12916
0.0117342
-1.04938
-0.706097
-1.0526
-1.08415
-1.39501
-1.61333
-1.82853
-1.94122
-2.02333
-2.10812
-2.14448
-2.22107
-2.22576
-2.29401
-2.14236
-2.10656
-1.96566
-1.80619
-1.82678
-0.255415
-0.217798
-0.244018
-0.297647
-0.435252
-0.561904
-0.728417
-0.863683
-1.00696
-1.19423
-1.25423
-1.30841
-1.11873
-0.561322
0.902105
2.04889
3.93232
5.43183
5.66873
4.31806
0.132084
-0.65138
-0.553353
-0.878187
-1.09024
-1.38802
-1.63351
-1.66729
-1.8611
-1.93823
-2.03648
-2.04015
-2.11436
-2.07037
-2.09864
-1.99473
-2.06299
-1.92753
-1.78042
-1.75634
-0.298861
-0.259467
-0.308693
-0.364132
-0.500765
-0.623338
-0.785199
-0.930106
-1.10141
-1.24976
-1.40771
-1.5956
-1.22682
-0.854372
0.543285
1.58982
3.43943
4.50818
4.36213
3.39416
1.13089
0.0219886
-0.125453
-0.709639
-1.09907
-1.39901
-1.60818
-1.75459
-1.90865
-2.00203
-2.06061
-2.08372
-2.17491
-2.14798
-2.2387
-2.18503
-2.27507
-2.19012
-2.06522
-2.04466
-0.378841
-0.361361
-0.413238
-0.474067
-0.606098
-0.731476
-0.878348
-1.0143
-1.17335
-1.32622
-1.42516
-1.53902
-1.48602
-1.37734
-0.15141
0.92343
2.30205
3.53891
3.40831
2.24964
0.642161
0.218178
0.142925
-0.517622
-0.97863
-1.29655
-1.64574
-1.63797
-1.82757
-1.85842
-1.94388
-1.87222
-1.93475
-1.8017
-1.883
-1.74096
-1.83435
-1.7242
-1.7036
-1.66322
-0.440355
-0.416076
-0.468985
-0.524619
-0.65095
-0.76455
-0.916532
-1.0551
-1.21492
-1.36516
-1.50551
-1.62204
-1.58979
-1.43794
-0.88218
0.00416034
0.788086
1.79299
1.97326
1.54691
0.39933
0.0681031
-0.00239069
-0.421198
-0.988892
-1.26987
-1.55346
-1.67985
-1.92067
-1.87616
-2.05112
-2.04714
-2.22055
-2.14911
-2.27842
-2.14396
-2.23764
-2.08815
-2.07616
-1.98091
-0.516131
-0.504249
-0.560417
-0.613587
-0.730651
-0.838027
-0.981304
-1.12428
-1.28424
-1.42464
-1.55378
-1.64935
-1.66603
-1.60291
-1.37115
-0.940818
-0.389421
0.230136
0.192211
0.116897
-0.00141746
-0.190989
-0.272709
-0.580258
-1.02915
-1.23547
-1.52542
-1.65556
-1.88878
-2.00798
-2.21812
-2.14034
-2.29531
-2.1772
-2.32704
-2.14233
-2.27509
-2.11616
-2.20116
-2.21149
-0.541249
-0.527979
-0.587375
-0.637474
-0.740687
-0.839314
-0.973443
-1.12047
-1.28015
-1.42079
-1.55501
-1.65876
-1.69988
-1.68436
-1.58704
-1.43651
-1.30347
-1.11931
-0.984051
-0.950826
-0.86947
-0.972044
-0.978204
-0.973171
-1.09583
-1.1896
-1.47517
-1.56632
-1.98628
-1.99767
-2.15373
-2.04576
-2.23894
-2.05063
-2.21475
-1.99619
-2.1174
-1.86913
-1.88088
-1.78308
-0.62888
-0.597267
-0.671744
-0.736298
-0.82962
-0.914871
-1.03016
-1.17374
-1.3244
-1.45629
-1.58699
-1.68663
-1.75973
-1.77516
-1.77805
-1.72107
-1.78067
-1.83294
-1.95653
-1.96431
-1.48162
-1.38373
-1.26482
-1.13202
-1.16824
-1.16576
-1.43444
-1.69465
-2.00572
-1.95088
-2.1344
-1.96709
-2.14082
-1.98717
-2.15207
-1.86852
-2.0394
-1.71131
-1.6877
-1.50782
-0.628676
-0.585404
-0.608998
-0.713032
-0.802087
-0.869382
-0.977844
-1.0925
-1.23924
-1.36805
-1.50264
-1.60694
-1.70039
-1.74396
-1.79814
-1.80861
-1.89223
-1.93643
-1.96719
-2.02903
-1.45858
-1.36626
-1.25593
-1.13162
-1.21306
-1.14638
-1.49874
-1.80438
-2.04502
-1.95523
-2.16163
-1.96403
-2.19081
-1.91266
-2.17689
-1.8335
-2.03943
-1.67206
-1.64322
-1.38449
-0.715645
-0.693831
-0.694152
-0.749666
-0.882421
-0.92877
-1.0207
-1.10012
-1.24074
-1.36061
-1.49368
-1.59026
-1.69306
-1.7394
-1.81618
-1.82631
-1.91749
-1.94462
-1.96064
-2.04573
-1.48915
-1.40356
-1.30755
-1.14528
-1.24119
-1.13799
-1.5897
-1.84469
-2.08193
-1.94331
-2.18072
-1.92678
-2.18334
-1.85688
-2.12327
-1.75518
-2.00958
-1.59494
-1.61447
-1.2875
-0.647857
-0.61294
-0.626
-0.590782
-0.734485
-0.769478
-0.854029
-0.898552
-1.04732
-1.1672
-1.3185
-1.42107
-1.54203
-1.60042
-1.70375
-1.7218
-1.80944
-1.84043
-1.8554
-1.94489
-1.36293
-1.3207
-1.24271
-1.11658
-1.33523
-1.11001
-1.60738
-1.86799
-2.14535
-1.96045
-2.23413
-1.91143
-2.21829
-1.80797
-2.13535
-1.67243
-1.99039
-1.483
-1.56491
-1.15496
-0.749238
-0.73497
-0.72685
-0.689446
-0.706758
-0.795134
-0.858613
-0.883302
-0.984167
-1.12651
-1.2856
-1.38821
-1.52037
-1.57499
-1.69117
-1.71102
-1.80962
-1.88851
-1.90002
-1.99187
-1.3577
-1.32423
-1.23994
-1.0997
-1.31522
-1.07219
-1.63617
-1.90848
-2.28575
-1.98068
-2.32211
-1.91497
-2.26518
-1.79108
-2.14512
-1.61497
-1.94833
-1.34897
-1.4287
-0.926674
-0.619405
-0.591717
-0.579409
-0.491458
-0.485081
-0.472137
-0.619419
-0.616778
-0.76842
-0.828658
-1.06127
-1.17749
-1.34226
-1.41548
-1.5623
-1.60063
-1.74222
-1.85418
-1.85295
-1.93391
-1.23193
-1.20274
-1.09873
-0.953859
-1.16224
-0.903727
-1.57349
-1.88095
-2.28848
-2.06349
-2.37602
-1.90571
-2.31316
-1.7164
-2.15524
-1.45311
-1.86708
-1.02231
-1.15359
-0.367308
-0.746978
-0.750354
-0.720348
-0.600224
-0.552802
-0.420662
-0.622018
-0.593675
-0.763038
-0.849708
-1.01165
-1.17626
-1.37038
-1.44935
-1.62095
-1.66848
-1.8437
-1.97012
-1.95338
-2.00174
-1.22925
-1.1788
-1.05093
-0.885159
-1.08786
-0.887326
-1.58588
-1.91267
-2.40957
-2.08048
-2.48933
-1.94153
-2.41696
-1.76377
-2.23002
-1.48955
-1.83033
-0.909402
-0.678485
0.404664
-0.581181
-0.512058
-0.545525
-0.309784
-0.282419
-0.056945
-0.270203
-0.276174
-0.490126
-0.597065
-0.830785
-0.974382
-1.21268
-1.33873
-1.55843
-1.64012
-1.85004
-1.99336
-1.95734
-1.94557
-1.09755
-1.00147
-0.840947
-0.655754
-0.865753
-0.69026
-1.48088
-1.87869
-2.47933
-2.12468
-2.56275
-1.93498
-2.48894
-1.6484
-2.28191
-1.2609
-1.72298
-0.2861
0.0696503
2.44535
-0.664079
-0.786764
-0.656371
-0.522272
-0.390677
-0.0997746
-0.22765
-0.260833
-0.4672
-0.599061
-0.848796
-1.01212
-1.28023
-1.41253
-1.67039
-1.77379
-2.00992
-2.1618
-2.12409
-2.02206
-1.13738
-0.960585
-0.759098
-0.529897
-0.72136
-0.548363
-1.42989
-1.85299
-2.58514
-2.17288
-2.70229
-1.9745
-2.53536
-1.72945
-2.4057
-1.42872
-1.90415
-0.0661855
0.704814
4.92824
-0.843133
-0.466504
-0.532773
-0.0362014
-0.0250042
0.300621
0.140887
0.0901319
-0.186388
-0.351412
-0.652586
-0.844846
-1.15428
-1.34714
-1.67812
-1.84707
-2.122
-2.28684
-2.20721
-1.95309
-1.03034
-0.72567
-0.475568
-0.168004
-0.422924
-0.31018
-1.33511
-1.80633
-2.71538
-2.25339
-2.84513
-1.95973
-2.55157
-1.59408
-2.24044
-1.08224
-1.36692
1.08465
3.52727
10.7003
-0.371508
-0.913279
-0.76776
-0.614273
-0.158954
0.0653056
0.137029
0.0352305
-0.20103
-0.395574
-0.698026
-0.89326
-1.20664
-1.40875
-1.77989
-2.00603
-2.30491
-2.48897
-2.41548
-1.99056
-1.15119
-0.688698
-0.396238
0.0947153
-0.157155
0.055849
-1.23332
-1.6246
-2.84779
-2.35816
-3.02632
-2.02586
-2.56674
-1.53955
-2.2264
-1.10342
-1.41948
1.95603
6.17195
17.9311
-3.09984
-0.237
-0.343641
0.228828
0.362914
0.550422
0.380496
0.297264
-0.0259886
-0.233026
-0.553572
-0.755685
-1.09118
-1.34797
-1.80567
-2.12239
-2.45227
-2.63151
-2.38383
-1.7321
-0.90858
-0.293097
0.0378625
0.475782
0.141212
0.141252
-1.22932
-1.70931
-3.03423
-2.54514
-3.108
-1.97634
-2.36779
-1.26672
-1.69158
-0.0727816
0.887751
7.00595
16.9537
36.0114
-0.387809
-0.383245
-0.394285
-0.411801
-0.432702
-0.466258
-0.486966
-0.535491
-0.556266
-0.619468
-0.644152
-0.688984
-0.714496
-0.772351
-0.780848
-0.84072
-0.80397
-0.925688
-0.781728
-1.0894
-0.752899
-0.924673
-0.935349
-0.99571
-0.757246
-0.613409
-0.314803
-0.0878994
0.0941746
0.180471
0.104755
0.0778044
-0.188785
-0.348071
-0.519317
-0.611082
-0.716976
-0.803712
-0.814576
-0.788894
-0.396596
-0.392686
-0.405022
-0.421822
-0.440309
-0.457514
-0.490128
-0.518868
-0.551475
-0.631984
-0.613997
-0.646547
-0.659954
-0.687304
-0.704246
-0.820333
-0.785285
-0.892374
-0.741959
-1.04902
-0.7976
-0.987093
-1.02165
-1.0891
-0.87813
-0.729522
-0.454131
-0.237151
-0.0306312
0.079258
-0.0142997
-0.0640432
-0.26332
-0.401482
-0.569406
-0.606446
-0.703246
-0.77633
-0.78641
-0.75935
-0.389416
-0.384066
-0.398531
-0.415585
-0.422507
-0.451831
-0.44065
-0.493285
-0.517975
-0.543176
-0.583216
-0.628034
-0.653474
-0.74221
-0.851616
-0.923166
-0.888904
-0.976575
-0.848744
-1.16673
-0.973621
-1.16573
-1.24577
-1.33094
-1.09572
-0.946098
-0.695614
-0.490709
-0.306765
-0.128698
-0.147391
-0.201972
-0.398011
-0.501353
-0.643651
-0.695262
-0.791257
-0.81849
-0.818782
-0.784676
-0.392364
-0.394333
-0.409726
-0.446724
-0.429318
-0.444526
-0.46607
-0.482427
-0.558495
-0.603451
-0.628816
-0.669302
-0.80989
-0.955707
-0.986366
-1.04875
-1.02214
-1.10574
-1.00647
-1.32153
-1.15963
-1.41532
-1.52598
-1.5812
-1.36818
-1.23883
-1.02226
-0.855565
-0.684101
-0.555383
-0.47786
-0.420296
-0.515009
-0.614103
-0.710216
-0.782695
-0.819905
-0.838338
-0.813718
-0.795202
-0.383881
-0.390341
-0.413303
-0.409972
-0.415412
-0.434041
-0.428425
-0.508679
-0.576483
-0.627908
-0.74081
-0.976199
-1.09407
-1.17453
-1.21762
-1.2794
-1.26626
-1.32865
-1.26589
-1.57329
-1.45224
-1.68768
-1.80585
-1.85039
-1.68543
-1.5856
-1.41169
-1.27037
-1.12242
-0.980813
-0.915144
-0.805331
-0.718459
-0.670095
-0.814618
-0.776851
-0.90028
-0.854486
-0.865867
-0.851878
-0.412182
-0.413606
-0.419864
-0.415227
-0.423321
-0.419452
-0.500248
-0.520874
-0.711925
-0.969066
-1.16616
-1.23856
-1.33363
-1.40894
-1.45176
-1.50487
-1.48789
-1.55279
-1.53232
-1.79378
-1.67604
-1.8817
-2.05601
-2.09815
-1.99811
-1.92527
-1.78492
-1.67292
-1.53836
-1.39376
-1.30056
-1.12292
-1.15832
-0.822404
-0.833741
-0.860507
-0.831778
-0.891857
-0.866186
-0.878203
-0.403375
-0.41869
-0.383508
-0.414976
-0.394308
-0.478228
-0.467545
-0.801751
-1.14358
-1.25687
-1.37041
-1.49822
-1.59535
-1.67351
-1.71731
-1.75841
-1.75526
-1.79298
-1.79531
-2.02238
-1.91505
-2.18162
-2.21774
-2.29299
-2.2292
-2.20394
-2.11332
-2.02939
-1.90408
-1.764
-1.6147
-1.44813
-1.28631
-1.2189
-0.9261
-0.89777
-0.911909
-0.930913
-0.93358
-0.944207
-0.380919
-0.404017
-0.39916
-0.406929
-0.461903
-0.496005
-0.904016
-1.19352
-1.33746
-1.4948
-1.64525
-1.74846
-1.84409
-1.904
-1.94203
-1.95621
-1.95496
-1.97918
-2.00099
-2.16365
-1.82885
-2.25013
-2.333
-2.41279
-2.41967
-2.42265
-2.38008
-2.32458
-2.2299
-2.10038
-1.9427
-1.73202
-1.51884
-1.34817
-1.09249
-0.897391
-0.854727
-0.907456
-0.922063
-0.944262
-0.415044
-0.449344
-0.479237
-0.564793
-0.62863
-0.950262
-1.17231
-1.38717
-1.56943
-1.73769
-1.86736
-1.99409
-2.0745
-2.12997
-2.15438
-2.15133
-2.15238
-2.1468
-2.20646
-2.21818
-1.8492
-2.05468
-2.35215
-2.47945
-2.53911
-2.58082
-2.57417
-2.55306
-2.48345
-2.38107
-2.22422
-2.02221
-1.77269
-1.51253
-1.32913
-0.999456
-0.919537
-1.0228
-0.999435
-1.03945
-0.432839
-0.472434
-0.5266
-0.633918
-0.817657
-1.13699
-1.38118
-1.59192
-1.78228
-1.94816
-2.09809
-2.20448
-2.28597
-2.3227
-2.33141
-2.30584
-2.29769
-2.28022
-2.35553
-2.25977
-1.93483
-2.08624
-2.34978
-2.52301
-2.62627
-2.70232
-2.72759
-2.73106
-2.68719
-2.60636
-2.47053
-2.27605
-2.02744
-1.73925
-1.45488
-1.23183
-0.935457
-1.00111
-1.01588
-1.04553
-0.497046
-0.545923
-0.616967
-0.765369
-1.04181
-1.35751
-1.56423
-1.78542
-1.9601
-2.15449
-2.29108
-2.40889
-2.4809
-2.50949
-2.50347
-2.44984
-2.4326
-2.40276
-2.48072
-2.29621
-2.02202
-2.09383
-2.31555
-2.52995
-2.67309
-2.78414
-2.83644
-2.86393
-2.83852
-2.78213
-2.6697
-2.50546
-2.27784
-1.99127
-1.68532
-1.41937
-1.16553
-1.0399
-1.16269
-1.15612
-0.584306
-0.634425
-0.717865
-0.912453
-1.24377
-1.50969
-1.73913
-1.95055
-2.15819
-2.33086
-2.48025
-2.59346
-2.66635
-2.69008
-2.65596
-2.5834
-2.52851
-2.49445
-2.56329
-2.29949
-2.12607
-2.1007
-2.22783
-2.51397
-2.69878
-2.84733
-2.92573
-2.96805
-2.95777
-2.91884
-2.8238
-2.68398
-2.48263
-2.2154
-1.88863
-1.57154
-1.35525
-1.11319
-1.20863
-1.18521
-0.69979
-0.751134
-0.845376
-1.11488
-1.39834
-1.66233
-1.8803
-2.09814
-2.29716
-2.48212
-2.63545
-2.76389
-2.84475
-2.84939
-2.79735
-2.65221
-2.58744
-2.54479
-2.50278
-2.26616
-2.2621
-2.08282
-2.10435
-2.37387
-2.68845
-2.87267
-2.99138
-3.05045
-3.03967
-3.02085
-2.95111
-2.84382
-2.67687
-2.43911
-2.1371
-1.79873
-1.5279
-1.34539
-1.27224
-1.36136
-0.825308
-0.881354
-1.01571
-1.3162
-1.57003
-1.8218
-2.04055
-2.27107
-2.46415
-2.64628
-2.80195
-2.93763
-3.00838
-3.02377
-2.88439
-2.73571
-2.56332
-2.4795
-2.3438
-2.28429
-2.41529
-2.01529
-1.97993
-2.03518
-2.55024
-2.88277
-3.01197
-3.10846
-3.11368
-3.09595
-3.03147
-2.95124
-2.81051
-2.60725
-2.32425
-1.98906
-1.66441
-1.45157
-1.3486
-1.42471
-0.992091
-1.03033
-1.23305
-1.48197
-1.71686
-1.95634
-2.15715
-2.37666
-2.55216
-2.73082
-2.90064
-3.05497
-3.15658
-3.09951
-2.91126
-2.5051
-2.57769
-2.28127
-1.99692
-2.11963
-2.52823
-2.01281
-1.87234
-1.81556
-2.15228
-2.77685
-3.05284
-3.12163
-3.1252
-3.16281
-3.12635
-3.06815
-2.95263
-2.79133
-2.54425
-2.2332
-1.87744
-1.65133
-1.52345
-1.59751
-1.05122
-1.15993
-1.36419
-1.60307
-1.84358
-2.07981
-2.29098
-2.51185
-2.70247
-2.89479
-3.06597
-3.21664
-3.24064
-3.15508
-2.75142
-2.51788
-1.90365
-0.821938
-0.170968
-0.979438
-2.51623
-1.977
-1.78891
-1.70212
-1.95335
-2.30777
-2.82597
-3.18479
-3.18723
-3.15887
-3.11498
-3.11432
-3.03495
-2.9113
-2.67723
-2.40822
-2.04641
-1.80946
-1.65154
-1.76409
-1.30437
-1.3508
-1.56383
-1.76599
-1.98842
-2.21126
-2.39312
-2.58271
-2.73258
-2.89384
-3.0571
-3.19799
-3.24907
-3.04417
-2.22071
-1.15597
0.666005
3.11758
4.31884
1.71055
-2.05434
-1.92322
-1.63736
-1.62507
-1.82479
-2.06489
-2.19471
-2.57723
-3.04236
-3.30215
-3.28016
-3.22518
-3.08176
-3.027
-2.84463
-2.59766
-2.25999
-1.99936
-1.8227
-1.89224
-1.087
-1.23791
-1.44993
-1.64605
-1.86712
-2.08506
-2.27787
-2.48905
-2.69519
-2.93915
-3.16542
-3.26834
-3.06921
-2.09327
-0.721425
1.13279
4.65943
8.69155
11.0857
5.60111
-1.16975
-1.72057
-1.39763
-1.52403
-1.67432
-1.94475
-2.01757
-2.18576
-2.26548
-2.57744
-2.95193
-3.30771
-3.27627
-3.16366
-2.95022
-2.75487
-2.44247
-2.23463
-2.13291
-2.26542
-1.29669
-1.33319
-1.44001
-1.58586
-1.75954
-1.95609
-2.14577
-2.37473
-2.5213
-2.62234
-2.66916
-2.54042
-1.93153
-0.661467
0.400643
3.3524
9.39546
16.3578
18.4615
10.2572
-0.0215945
-1.44787
-1.08722
-1.39251
-1.47525
-1.8328
-1.91338
-2.08467
-2.16089
-2.25068
-2.28512
-2.36542
-2.62441
-3.15246
-3.15788
-2.89329
-2.58496
-2.22772
-2.04166
-1.9087
-0.23565
-0.391049
-0.532493
-0.658413
-0.816896
-0.95307
-1.04892
-1.18689
-1.19627
-1.33803
-1.50278
-1.69884
-1.30257
-0.390767
1.19488
5.35941
13.5689
22.7115
25.5487
15.5418
1.39808
-1.21655
-0.767806
-1.22843
-1.26878
-1.71593
-1.8175
-2.01412
-2.08766
-2.18623
-2.2457
-2.30869
-2.29296
-2.21085
-2.48327
-2.85611
-2.76906
-2.74074
-2.74236
-3.02224
-0.297609
-0.232827
-0.288186
-0.34432
-0.484045
-0.647656
-0.79514
-0.978751
-1.07645
-1.22042
-1.38884
-1.67961
-1.25241
-0.407004
1.66755
6.49694
15.8098
25.5656
30.2278
21.2648
3.80578
-0.845525
-0.429805
-1.11835
-1.14491
-1.54774
-1.73875
-1.94085
-2.02833
-2.0975
-2.15008
-2.18049
-2.23773
-2.26735
-2.18744
-2.0276
-2.05077
-1.91908
-1.91891
-1.98159
-0.151701
-0.0256665
-0.092584
-0.151675
-0.290016
-0.442713
-0.606469
-0.772125
-0.986674
-1.19112
-1.42239
-1.78034
-1.46761
-0.576484
1.54249
6.15191
15.1536
24.6339
30.5308
25.3476
6.75831
-0.844735
-0.350594
-0.991118
-1.09188
-1.51951
-1.66266
-1.88253
-2.02478
-2.10154
-2.17499
-2.20626
-2.27158
-2.26972
-2.37374
-2.22714
-2.14582
-2.00233
-1.82679
-1.84825
-0.229217
-0.1928
-0.215271
-0.27348
-0.410669
-0.553038
-0.725396
-0.895624
-1.05612
-1.32143
-1.56978
-1.87559
-1.6496
-0.759548
0.953544
4.52675
11.7642
20.5181
26.7081
25.6653
10.4265
0.289292
-0.380316
-0.885246
-1.12321
-1.51852
-1.66807
-1.83546
-2.00049
-2.00006
-2.09888
-2.10474
-2.17991
-2.13809
-2.17321
-2.03534
-2.09077
-1.95049
-1.79852
-1.76739
-0.26576
-0.228398
-0.279804
-0.343285
-0.482786
-0.631548
-0.794529
-0.972721
-1.17256
-1.40022
-1.64602
-2.01396
-1.68295
-1.05953
0.05617
2.58159
6.9646
13.6648
19.318
20.6157
11.6963
2.61767
0.0664619
-0.794444
-1.11885
-1.45113
-1.66762
-1.89361
-1.97363
-2.03705
-2.1405
-2.17578
-2.24287
-2.21317
-2.30421
-2.22882
-2.30687
-2.22211
-2.09442
-2.0675
-0.35507
-0.342689
-0.395798
-0.462687
-0.598988
-0.739101
-0.900189
-1.06335
-1.2625
-1.46239
-1.7071
-1.86472
-1.96246
-1.64093
-0.713267
0.964963
3.14941
6.52087
10.2166
10.7884
6.581
2.02799
0.199906
-0.848815
-1.17754
-1.40603
-1.62114
-1.77402
-1.92882
-1.91668
-1.99541
-1.93044
-1.97932
-1.8521
-1.90365
-1.7737
-1.84481
-1.73712
-1.71318
-1.6643
-0.420064
-0.39733
-0.450888
-0.512429
-0.642157
-0.770245
-0.928243
-1.08522
-1.26883
-1.44942
-1.67207
-1.83823
-1.92006
-1.78079
-1.18524
-0.432613
0.729552
1.81491
2.66692
2.49363
0.765765
-0.700113
-0.867811
-1.03723
-1.21186
-1.36778
-1.62049
-1.73384
-1.92345
-1.95023
-2.10008
-2.09656
-2.26939
-2.1791
-2.31549
-2.158
-2.26507
-2.11077
-2.10645
-2.01431
-0.511324
-0.493788
-0.546378
-0.60131
-0.722361
-0.837727
-0.99214
-1.13109
-1.29827
-1.44376
-1.61936
-1.73596
-1.82561
-1.77959
-1.61112
-1.19743
-0.77893
-0.525539
-0.504274
-1.63332
-2.27411
-2.2825
-1.67066
-1.19827
-1.08499
-1.25362
-1.51818
-1.68674
-1.88608
-2.04333
-2.23373
-2.1942
-2.31305
-2.19076
-2.35492
-2.14483
-2.28747
-2.11869
-2.2029
-2.21058
-0.532986
-0.517629
-0.565783
-0.612795
-0.718909
-0.822134
-0.967119
-1.09435
-1.24637
-1.37839
-1.52048
-1.61395
-1.66658
-1.64867
-1.61863
-1.55085
-1.49894
-1.65499
-1.98103
-2.20456
-2.47757
-1.96893
-1.48608
-1.0314
-0.917977
-1.10835
-1.43215
-1.56398
-1.9932
-2.01741
-2.17514
-2.05856
-2.2784
-2.03954
-2.22729
-1.99028
-2.12539
-1.87321
-1.88427
-1.78606
-0.622564
-0.594754
-0.654907
-0.700959
-0.792228
-0.878461
-1.00405
-1.12346
-1.2714
-1.39556
-1.51908
-1.58977
-1.62221
-1.59175
-1.57166
-1.56822
-1.77078
-2.02143
-2.25267
-2.46341
-1.91125
-1.66678
-1.22807
-0.995908
-1.01067
-1.04654
-1.35212
-1.65043
-1.99126
-1.96474
-2.12236
-1.97851
-2.14689
-1.97486
-2.17666
-1.85445
-2.04474
-1.71003
-1.6879
-1.50835
-0.616768
-0.576515
-0.598917
-0.668704
-0.743906
-0.807234
-0.90847
-1.03597
-1.19223
-1.31549
-1.43829
-1.51286
-1.56112
-1.53909
-1.53018
-1.50469
-1.68899
-2.00421
-2.26783
-2.44282
-1.89532
-1.60017
-1.35844
-1.12389
-1.12693
-1.05508
-1.40497
-1.78189
-2.03738
-1.94736
-2.16333
-1.95514
-2.18587
-1.9104
-2.14543
-1.86611
-2.0194
-1.68029
-1.63758
-1.38443
-0.707008
-0.686111
-0.682736
-0.724165
-0.821292
-0.866613
-0.968778
-1.08448
-1.21627
-1.33111
-1.45048
-1.52701
-1.60004
-1.60183
-1.62228
-1.58062
-1.6537
-1.76256
-1.87458
-2.11036
-1.63289
-1.45451
-1.2811
-1.09924
-1.19585
-1.06797
-1.50907
-1.83684
-2.06879
-1.94614
-2.18305
-1.93165
-2.17544
-1.85357
-2.11187
-1.76635
-1.98165
-1.59129
-1.60409
-1.2808
-0.642711
-0.606072
-0.616585
-0.577221
-0.700693
-0.723879
-0.818159
-0.870233
-1.04846
-1.16266
-1.304
-1.38977
-1.49297
-1.52447
-1.59831
-1.60008
-1.66945
-1.73739
-1.7981
-2.00384
-1.51734
-1.41204
-1.27158
-1.10078
-1.1693
-1.05629
-1.54777
-1.87331
-2.15084
-1.96312
-2.23281
-1.91275
-2.20411
-1.79782
-2.11751
-1.65881
-1.96987
-1.46728
-1.5495
-1.14263
-0.744307
-0.728764
-0.722274
-0.680505
-0.70361
-0.770216
-0.840275
-0.884198
-1.00724
-1.14785
-1.29173
-1.38922
-1.51087
-1.55229
-1.65142
-1.66725
-1.74969
-1.85154
-1.86409
-2.01851
-1.44912
-1.38265
-1.25949
-1.10165
-1.29571
-1.05987
-1.57867
-1.93541
-2.27324
-2.0041
-2.32648
-1.91612
-2.26689
-1.77662
-2.13771
-1.59683
-1.92262
-1.33243
-1.4131
-0.90987
-0.616692
-0.5902
-0.57414
-0.489945
-0.481912
-0.476316
-0.609277
-0.617974
-0.777637
-0.898795
-1.09399
-1.19952
-1.36218
-1.42669
-1.56439
-1.60421
-1.72664
-1.85971
-1.84512
-1.97667
-1.3228
-1.27606
-1.13898
-0.985573
-1.17017
-0.950476
-1.53027
-1.90395
-2.31487
-2.06275
-2.37905
-1.90575
-2.31249
-1.70931
-2.14789
-1.43055
-1.84558
-0.987216
-1.13753
-0.344752
-0.741168
-0.742765
-0.717524
-0.592987
-0.550814
-0.421057
-0.624653
-0.589081
-0.766235
-0.864177
-1.0634
-1.20671
-1.39223
-1.47497
-1.64356
-1.70067
-1.85642
-2.00273
-1.96162
-2.05006
-1.3132
-1.25714
-1.09612
-0.926744
-1.09887
-0.889971
-1.53117
-1.94114
-2.41311
-2.13472
-2.52161
-1.95788
-2.4093
-1.76378
-2.22431
-1.46749
-1.81039
-0.867264
-0.661035
0.434186
-0.581072
-0.510523
-0.540358
-0.305695
-0.277693
-0.0511381
-0.278175
-0.267727
-0.495681
-0.607071
-0.848111
-0.989902
-1.24411
-1.36612
-1.58495
-1.67148
-1.86581
-2.03286
-1.97392
-2.00103
-1.18489
-1.09467
-0.901475
-0.716219
-0.888537
-0.698224
-1.43411
-1.91869
-2.49913
-2.12087
-2.56556
-1.94769
-2.49127
-1.65683
-2.27168
-1.23399
-1.71347
-0.177572
0.034327
2.48205
-0.650807
-0.778128
-0.648376
-0.507682
-0.381893
-0.0823529
-0.233757
-0.248948
-0.473991
-0.607626
-0.868714
-1.03153
-1.29143
-1.43676
-1.6953
-1.80238
-2.02615
-2.20766
-2.14624
-2.09011
-1.22836
-1.06746
-0.832271
-0.604077
-0.755549
-0.579097
-1.40286
-1.88574
-2.60425
-2.24026
-2.72438
-2.0005
-2.55335
-1.73597
-2.39753
-1.40966
-1.86361
-0.0310231
0.772308
4.98281
-0.833513
-0.46061
-0.525616
-0.0241235
-0.0133124
0.32107
0.139421
0.101676
-0.19234
-0.360352
-0.675559
-0.871467
-1.18498
-1.37528
-1.69831
-1.87394
-2.13008
-2.34054
-2.23225
-2.02464
-1.12166
-0.85805
-0.57498
-0.27785
-0.483049
-0.326396
-1.2922
-1.87311
-2.7355
-2.28236
-2.85495
-1.9814
-2.54898
-1.59198
-2.22752
-1.04754
-1.31349
1.16207
3.59911
10.785
-0.355534
-0.90339
-0.759021
-0.596166
-0.142593
0.0949992
0.138529
0.0506061
-0.207342
-0.40538
-0.723913
-0.922545
-1.23662
-1.43833
-1.7995
-2.03383
-2.31837
-2.52825
-2.44647
-2.0693
-1.23123
-0.813451
-0.492542
-0.00568095
-0.224228
-0.014454
-1.22479
-1.66207
-2.85819
-2.3906
-3.0457
-2.04665
-2.57267
-1.54924
-2.2123
-1.07405
-1.35135
2.0424
6.28432
18.048
-3.0968
-0.233852
-0.337681
0.244438
0.380473
0.573086
0.390166
0.311632
-0.0300997
-0.243155
-0.57926
-0.786205
-1.1219
-1.3742
-1.81663
-2.13503
-2.45381
-2.66368
-2.41906
-1.81571
-0.988724
-0.428968
-0.0683901
0.363504
0.0685203
0.095157
-1.23294
-1.74822
-3.04302
-2.57883
-3.13185
-1.99942
-2.37979
-1.27374
-1.67862
-0.0469219
0.947349
7.09603
17.0613
36.1264
-0.395213
-0.386113
-0.402809
-0.416995
-0.447592
-0.484202
-0.517781
-0.548365
-0.573058
-0.60555
-0.650929
-0.691836
-0.729988
-0.780171
-0.796623
-0.846498
-0.835639
-0.931913
-0.823264
-1.14689
-0.812319
-0.971509
-0.978082
-1.02945
-0.814897
-0.670558
-0.395503
-0.193191
-0.0247107
0.0466427
0.00676577
-0.018823
-0.276086
-0.369129
-0.540847
-0.609549
-0.698444
-0.775548
-0.81387
-0.780509
-0.403305
-0.396615
-0.414354
-0.427174
-0.457303
-0.476754
-0.52064
-0.520946
-0.585459
-0.606793
-0.648308
-0.656301
-0.686947
-0.703975
-0.712968
-0.826298
-0.809107
-0.918309
-0.782975
-1.10642
-0.870496
-1.02136
-1.05876
-1.11473
-0.874328
-0.761309
-0.492576
-0.281687
-0.090629
0.00575081
-0.115482
-0.0887034
-0.313866
-0.423787
-0.552382
-0.60176
-0.673864
-0.757976
-0.77811
-0.751021
-0.398456
-0.389513
-0.410436
-0.421741
-0.443942
-0.46524
-0.488302
-0.501252
-0.539546
-0.561684
-0.600526
-0.64762
-0.672469
-0.73571
-0.847958
-0.927056
-0.906492
-0.99281
-0.875475
-1.19676
-0.986976
-1.18482
-1.24394
-1.30315
-1.11698
-0.967875
-0.717195
-0.513575
-0.334562
-0.155372
-0.191746
-0.233834
-0.438303
-0.504255
-0.699904
-0.681797
-0.771882
-0.807932
-0.815323
-0.778741
-0.405206
-0.400571
-0.426026
-0.450524
-0.461946
-0.455295
-0.494328
-0.491927
-0.576193
-0.610876
-0.6582
-0.682323
-0.798148
-0.945794
-0.985493
-1.05159
-1.03261
-1.11174
-1.02612
-1.34153
-1.19466
-1.40808
-1.52313
-1.59944
-1.3897
-1.24759
-1.02592
-0.858486
-0.684296
-0.545832
-0.47342
-0.418456
-0.547205
-0.622339
-0.693416
-0.774203
-0.793306
-0.834307
-0.806215
-0.788326
-0.398583
-0.396872
-0.432069
-0.420867
-0.435269
-0.451304
-0.447042
-0.50945
-0.594919
-0.643055
-0.729945
-0.955843
-1.09004
-1.15999
-1.21102
-1.27534
-1.26786
-1.33768
-1.27199
-1.5798
-1.46262
-1.67905
-1.78444
-1.87436
-1.69754
-1.59439
-1.41696
-1.2641
-1.12534
-0.971187
-0.914142
-0.785712
-0.717501
-0.691449
-0.832962
-0.808465
-0.879741
-0.860691
-0.868446
-0.85205
-0.435083
-0.419111
-0.453246
-0.425033
-0.44735
-0.426907
-0.509054
-0.534094
-0.698038
-0.932621
-1.15765
-1.24324
-1.33202
-1.4005
-1.4658
-1.5039
-1.50162
-1.55774
-1.5628
-1.83202
-1.716
-1.97244
-2.11546
-2.1185
-2.00217
-1.94576
-1.81142
-1.69206
-1.5619
-1.4036
-1.31218
-1.12634
-1.15183
-0.788015
-0.830959
-0.860745
-0.823475
-0.890637
-0.857392
-0.871718
-0.433564
-0.44964
-0.407475
-0.439463
-0.411685
-0.488271
-0.47993
-0.717487
-1.12846
-1.26205
-1.36856
-1.49729
-1.60189
-1.68168
-1.73177
-1.76607
-1.76861
-1.80462
-1.83487
-2.06367
-1.9468
-2.16387
-2.27441
-2.33971
-2.27543
-2.24195
-2.15727
-2.04452
-1.93639
-1.78029
-1.64041
-1.46259
-1.30185
-1.2321
-0.930839
-0.914662
-0.922183
-0.945196
-0.940486
-0.949515
-0.377867
-0.400954
-0.409082
-0.408241
-0.465164
-0.484023
-0.806552
-1.21553
-1.32761
-1.50256
-1.63906
-1.78384
-1.86408
-1.93386
-1.97008
-1.97469
-1.98108
-1.99626
-2.06463
-2.22626
-1.96969
-2.36431
-2.41829
-2.47758
-2.47465
-2.47784
-2.42975
-2.37062
-2.27172
-2.12904
-1.96777
-1.73801
-1.5302
-1.35171
-1.09349
-0.900038
-0.848419
-0.90147
-0.914348
-0.936532
-0.462844
-0.474361
-0.496008
-0.564175
-0.609004
-0.88133
-1.18098
-1.36672
-1.57469
-1.75256
-1.89804
-2.03145
-2.12533
-2.17911
-2.20291
-2.18354
-2.18259
-2.16918
-2.27776
-2.30061
-2.04337
-2.26568
-2.46356
-2.57218
-2.61264
-2.64705
-2.63472
-2.60458
-2.53343
-2.42254
-2.26472
-2.05131
-1.80001
-1.52509
-1.33684
-1.00607
-0.927534
-1.03254
-1.01187
-1.04628
-0.436339
-0.474897
-0.525974
-0.625947
-0.788582
-1.10903
-1.35357
-1.59634
-1.78919
-1.98365
-2.14446
-2.27371
-2.35715
-2.39944
-2.40333
-2.34466
-2.33724
-2.29739
-2.42399
-2.3337
-2.16211
-2.34742
-2.50943
-2.63831
-2.71682
-2.77932
-2.79521
-2.79315
-2.74331
-2.65684
-2.51458
-2.31452
-2.05404
-1.75796
-1.45598
-1.23842
-0.923582
-1.00603
-0.997714
-1.04065
-0.518983
-0.555874
-0.619918
-0.751246
-1.00795
-1.33474
-1.55695
-1.77764
-1.98447
-2.19776
-2.35935
-2.50158
-2.59666
-2.63013
-2.60941
-2.5265
-2.47851
-2.43293
-2.55528
-2.40222
-2.31268
-2.38968
-2.56715
-2.67735
-2.78799
-2.87143
-2.91174
-2.93134
-2.89962
-2.83943
-2.72182
-2.55197
-2.31989
-2.0178
-1.70093
-1.42471
-1.174
-1.03819
-1.17864
-1.1632
-0.58416
-0.628205
-0.705568
-0.88355
-1.211
-1.48637
-1.72598
-1.95761
-2.19085
-2.38981
-2.57256
-2.72456
-2.83491
-2.85507
-2.83326
-2.6558
-2.63442
-2.53432
-2.60272
-2.44306
-2.45932
-2.37399
-2.56963
-2.70045
-2.82768
-2.9431
-3.00156
-3.03987
-3.02107
-2.97912
-2.87785
-2.73637
-2.53255
-2.25041
-1.90933
-1.58232
-1.35447
-1.11964
-1.20109
-1.17989
-0.70066
-0.744969
-0.827674
-1.0814
-1.36569
-1.63851
-1.86124
-2.07361
-2.32692
-2.55061
-2.75664
-2.94388
-3.07519
-3.11851
-3.00798
-2.86781
-2.70089
-2.58186
-2.55738
-2.4814
-2.63444
-2.35681
-2.412
-2.66801
-2.83046
-2.98008
-3.06818
-3.11955
-3.10322
-3.08108
-3.0046
-2.89362
-2.72263
-2.47419
-2.16492
-1.81247
-1.53699
-1.35467
-1.28148
-1.36769
-0.809041
-0.860643
-0.977917
-1.27274
-1.52475
-1.79124
-2.01722
-2.27223
-2.4884
-2.7187
-2.94438
-3.14991
-3.33476
-3.30653
-3.26601
-2.73335
-2.7615
-2.308
-1.67213
-1.90362
-2.68331
-2.26178
-2.24105
-2.38065
-2.75719
-2.97757
-3.09386
-3.18398
-3.17644
-3.1585
-3.08523
-3.00215
-2.85978
-2.65278
-2.36186
-2.01515
-1.67995
-1.45892
-1.35869
-1.42579
-0.97719
-1.00684
-1.19577
-1.43911
-1.67559
-1.92984
-2.13747
-2.37252
-2.57315
-2.80791
-3.05911
-3.33602
-3.5211
-3.5705
-3.11818
-2.8229
-1.23958
1.17474
2.67996
0.644942
-2.21284
-2.16615
-2.00245
-2.02771
-2.38822
-2.91773
-3.1012
-3.18469
-3.18754
-3.21998
-3.17654
-3.11847
-2.98326
-2.82125
-2.5828
-2.25946
-1.89969
-1.66144
-1.5351
-1.60839
-1.0223
-1.11887
-1.31175
-1.5491
-1.78759
-2.0445
-2.27547
-2.49179
-2.70717
-2.95387
-3.23309
-3.49923
-3.75478
-3.56299
-3.1201
-0.494954
4.70609
10.2535
11.5966
5.15287
-1.43972
-1.98837
-1.77511
-1.80772
-2.00186
-2.54984
-3.01432
-3.26706
-3.24239
-3.22061
-3.1806
-3.16886
-3.0751
-2.94332
-2.7355
-2.443
-2.08014
-1.82564
-1.6677
-1.78071
-1.26684
-1.31795
-1.52141
-1.71808
-1.94892
-2.1892
-2.37998
-2.57389
-2.7327
-2.94861
-3.2109
-3.55475
-3.77452
-3.50017
-1.32643
5.23219
15.4331
24.4043
23.1452
10.5542
-0.470269
-1.69277
-1.48735
-1.66133
-1.82506
-2.17258
-2.3638
-2.78054
-3.16546
-3.35709
-3.33196
-3.26045
-3.14113
-3.04945
-2.89568
-2.63504
-2.29852
-2.02192
-1.84209
-1.91114
-1.06671
-1.22286
-1.39789
-1.60292
-1.82317
-2.05393
-2.24514
-2.46238
-2.68647
-2.98541
-3.31288
-3.62004
-3.64129
-2.53627
2.70157
13.7082
28.9158
39.7811
36.0268
16.3628
0.663538
-1.4165
-1.09134
-1.49842
-1.63785
-2.01293
-2.09506
-2.26676
-2.36316
-2.65314
-2.96113
-3.32562
-3.32513
-3.24279
-3.0175
-2.80276
-2.49467
-2.26566
-2.16611
-2.29675
-1.2564
-1.29752
-1.41696
-1.56064
-1.74758
-1.96091
-2.15018
-2.40149
-2.5041
-2.64775
-2.80316
-2.88255
-2.4668
-0.95782
7.33896
22.3318
41.482
54.7546
49.6502
23.5888
2.15209
-0.966036
-0.678018
-1.29939
-1.43569
-1.88608
-1.98456
-2.1677
-2.24052
-2.32867
-2.33956
-2.40239
-2.62217
-3.12595
-3.18686
-2.94623
-2.63372
-2.26279
-2.06236
-1.91719
-0.352546
-0.466333
-0.595113
-0.728603
-0.863814
-0.985144
-1.09127
-1.21397
-1.23708
-1.50429
-1.85954
-2.25074
-2.21003
-0.142042
10.7803
29.1315
50.5144
65.702
63.944
34.3492
4.75345
-0.278359
-0.339508
-1.16199
-1.20796
-1.76733
-1.88693
-2.0898
-2.17388
-2.25152
-2.31868
-2.37132
-2.36966
-2.29967
-2.44138
-2.87737
-2.82157
-2.7805
-2.79968
-3.07389
-0.206899
-0.195248
-0.269831
-0.32845
-0.495869
-0.655136
-0.802655
-1.0062
-1.08984
-1.39149
-1.84348
-2.35701
-2.59197
0.0527244
12.7434
32.8254
55.0371
71.2074
75.4387
48.6283
10.5831
-0.0874955
0.392401
-0.947277
-1.21424
-1.64069
-1.82247
-2.02642
-2.13381
-2.17899
-2.21711
-2.23389
-2.29641
-2.33166
-2.27168
-2.05771
-2.09512
-1.94483
-1.93166
-1.98855
-0.13782
-0.0182002
-0.056992
-0.119129
-0.237914
-0.450521
-0.540013
-0.829816
-1.00433
-1.31112
-1.94765
-2.61021
-2.94261
-0.497338
12.2009
32.3648
54.4508
71.0376
80.6655
63.0014
20.494
1.00615
0.43481
-0.701567
-1.043
-1.57929
-1.84318
-2.00615
-2.1201
-2.19091
-2.23645
-2.26165
-2.32524
-2.32742
-2.43482
-2.32147
-2.18854
-2.05219
-1.8616
-1.8807
-0.195812
-0.156854
-0.181579
-0.237631
-0.380415
-0.542614
-0.699114
-0.896288
-1.10322
-1.39425
-2.11238
-2.82663
-3.11207
-1.6472
8.9034
27.7263
48.3904
66.2888
78.7416
71.7306
35.4367
6.58368
0.741012
-0.417607
-1.05036
-1.49502
-1.76053
-1.92661
-2.07349
-2.09054
-2.15949
-2.14497
-2.23253
-2.20105
-2.24334
-2.09387
-2.13134
-1.99428
-1.83134
-1.7912
-0.233685
-0.194655
-0.243463
-0.312251
-0.445404
-0.623339
-0.775188
-1.00849
-1.23796
-1.58303
-2.04348
-2.91024
-3.01412
-2.77643
4.04788
19.1788
37.7644
55.8913
69.2166
69.7605
46.2378
16.8448
3.41078
0.0184795
-0.979452
-1.45286
-1.73968
-1.91656
-1.99676
-2.15956
-2.19766
-2.2123
-2.31605
-2.26741
-2.37246
-2.29778
-2.35941
-2.27407
-2.14479
-2.10515
-0.337723
-0.319494
-0.372352
-0.441127
-0.577608
-0.737334
-0.900091
-1.10538
-1.31994
-1.64106
-2.01374
-2.60367
-2.79106
-3.19657
-0.0651312
9.06994
23.8438
39.5451
51.7127
56.2109
43.1323
22.7337
7.65041
1.10837
-0.874196
-1.38959
-1.68807
-1.8189
-1.90941
-2.00359
-2.01721
-1.96096
-2.01742
-1.89242
-1.9454
-1.80672
-1.88151
-1.76474
-1.74527
-1.68921
-0.395511
-0.373526
-0.425347
-0.490485
-0.618581
-0.76433
-0.921245
-1.1091
-1.29761
-1.55942
-1.8565
-2.27535
-2.5917
-3.07852
-2.37144
1.38222
9.22371
20.4889
30.4217
34.04
29.5013
18.4718
8.63867
1.66479
-0.79595
-1.36424
-1.65188
-1.78684
-1.94162
-1.99146
-2.1482
-2.15436
-2.3102
-2.2261
-2.37768
-2.18897
-2.31323
-2.14001
-2.14881
-2.05705
-0.497027
-0.476445
-0.521902
-0.577517
-0.698453
-0.827576
-0.980776
-1.12772
-1.28878
-1.46023
-1.67287
-1.893
-2.09675
-2.42888
-2.61368
-1.9258
0.581931
4.68118
10.1717
13.952
12.943
8.23069
4.07361
0.719278
-0.901969
-1.25536
-1.53375
-1.69819
-1.89413
-2.06245
-2.25912
-2.2092
-2.34949
-2.19244
-2.38924
-2.17209
-2.31572
-2.14174
-2.23468
-2.24235
-0.525059
-0.499877
-0.533174
-0.575143
-0.682415
-0.797395
-0.945833
-1.05944
-1.19025
-1.31475
-1.44671
-1.58128
-1.6307
-1.8399
-1.95749
-2.15728
-2.08806
-1.19028
-0.141572
1.06971
0.757521
0.0753665
-0.384845
-0.955194
-1.03584
-1.04141
-1.37574
-1.56857
-1.9961
-2.04113
-2.19849
-2.07529
-2.26561
-2.10783
-2.23726
-2.04078
-2.14388
-1.90868
-1.91923
-1.82482
-0.613797
-0.587409
-0.619161
-0.64876
-0.738607
-0.833948
-0.972753
-1.06227
-1.17132
-1.25795
-1.34468
-1.39245
-1.41455
-1.39697
-1.51072
-1.52873
-2.32466
-2.74906
-3.13425
-3.30439
-2.62343
-2.42332
-1.89426
-1.40585
-1.0545
-0.886601
-1.2378
-1.586
-1.98837
-1.9718
-2.14756
-1.98366
-2.16795
-1.96738
-2.2257
-1.87489
-2.07145
-1.73823
-1.72308
-1.54364
-0.600965
-0.566246
-0.575968
-0.605277
-0.668007
-0.731716
-0.8261
-0.935823
-1.06136
-1.1457
-1.21973
-1.24018
-1.23073
-1.18692
-1.14659
-1.22155
-1.4302
-2.04419
-2.59798
-2.98725
-2.34732
-1.97026
-1.49537
-1.09029
-0.962522
-0.935351
-1.27755
-1.73707
-2.01558
-1.96171
-2.17358
-1.97715
-2.20064
-1.94152
-2.14792
-1.93641
-2.01079
-1.72463
-1.66341
-1.41934
-0.696657
-0.678609
-0.668317
-0.685391
-0.746279
-0.78623
-0.8786
-0.984438
-1.11069
-1.19637
-1.26646
-1.27676
-1.26389
-1.18584
-1.14366
-1.09324
-1.29801
-1.60839
-1.88861
-2.41724
-2.05089
-1.72808
-1.44854
-1.18294
-1.1232
-0.985917
-1.39685
-1.81865
-2.05132
-1.95346
-2.18874
-1.9253
-2.20001
-1.86374
-2.14075
-1.77403
-2.0154
-1.61392
-1.63606
-1.31103
-0.638621
-0.599696
-0.608236
-0.561299
-0.653072
-0.664366
-0.764853
-0.833936
-1.00774
-1.09471
-1.1979
-1.2351
-1.27343
-1.22992
-1.21956
-1.15894
-1.19746
-1.35622
-1.59916
-1.99788
-1.65953
-1.50587
-1.31493
-1.1095
-1.13342
-0.995454
-1.46508
-1.88661
-2.15789
-1.98068
-2.25242
-1.92839
-2.22936
-1.82501
-2.14084
-1.6864
-1.9911
-1.49768
-1.57834
-1.17625
-0.741733
-0.725138
-0.718886
-0.673591
-0.693269
-0.733899
-0.813581
-0.876256
-1.05774
-1.13994
-1.26373
-1.32974
-1.41477
-1.41918
-1.47342
-1.46689
-1.54345
-1.69112
-1.77553
-2.04993
-1.61097
-1.50177
-1.33029
-1.1385
-1.21499
-1.03676
-1.50785
-1.95744
-2.27529
-2.04005
-2.34464
-1.93881
-2.28208
-1.80483
-2.16288
-1.61501
-1.93964
-1.35666
-1.44401
-0.939973
-0.619564
-0.592709
-0.570572
-0.490958
-0.479002
-0.473634
-0.58931
-0.611261
-0.751629
-0.915641
-1.0923
-1.19223
-1.33912
-1.39056
-1.5078
-1.54519
-1.64737
-1.79408
-1.79276
-1.98163
-1.43377
-1.36842
-1.2012
-1.035
-1.18846
-0.955956
-1.48081
-1.95816
-2.34645
-2.0965
-2.41358
-1.93255
-2.33929
-1.74077
-2.17211
-1.45858
-1.85646
-1.01814
-1.16304
-0.379531
-0.741711
-0.741808
-0.715156
-0.594768
-0.551355
-0.428818
-0.621906
-0.58717
-0.773919
-0.856533
-1.10545
-1.22323
-1.4093
-1.49279
-1.65183
-1.72049
-1.85509
-2.00891
-1.96242
-2.08515
-1.42668
-1.36077
-1.17296
-0.998276
-1.13403
-0.921539
-1.49021
-1.99146
-2.43396
-2.19035
-2.5851
-1.9982
-2.44222
-1.78882
-2.25341
-1.48852
-1.83272
-0.880056
-0.696004
0.408061
-0.588773
-0.514737
-0.540849
-0.308409
-0.276619
-0.0550489
-0.28608
-0.264886
-0.500911
-0.6144
-0.834223
-0.96356
-1.26812
-1.39554
-1.60808
-1.70784
-1.88323
-2.06371
-2.00122
-2.05806
-1.29386
-1.19858
-0.97587
-0.795312
-0.928597
-0.751374
-1.4004
-1.97416
-2.52279
-2.17342
-2.57682
-1.991
-2.51827
-1.68019
-2.29262
-1.2523
-1.72726
-0.157447
-0.0207412
2.45432
-0.647663
-0.7783
-0.646155
-0.504437
-0.379524
-0.0780656
-0.244074
-0.244403
-0.485135
-0.620807
-0.891551
-1.05226
-1.30718
-1.46201
-1.71102
-1.84634
-2.04111
-2.24588
-2.18461
-2.15868
-1.34035
-1.18644
-0.922755
-0.698251
-0.81044
-0.62943
-1.37792
-1.94135
-2.64072
-2.29564
-2.76308
-2.03062
-2.58096
-1.76265
-2.41982
-1.4251
-1.87313
-0.0383601
0.768191
4.97568
-0.833751
-0.462189
-0.525485
-0.0216432
-0.0110544
0.328254
0.131002
0.106224
-0.200682
-0.371266
-0.69581
-0.896938
-1.21353
-1.4053
-1.7193
-1.90323
-2.15339
-2.37698
-2.31474
-2.12353
-1.22914
-0.961275
-0.640605
-0.336656
-0.505201
-0.341138
-1.26354
-1.90805
-2.75823
-2.3224
-2.89287
-2.00251
-2.5923
-1.61648
-2.25289
-1.05763
-1.31841
1.16318
3.60266
10.7879
-0.352753
-0.904927
-0.760324
-0.591005
-0.138436
0.11
0.129723
0.0577641
-0.215797
-0.414424
-0.744837
-0.949091
-1.26586
-1.47123
-1.82336
-2.06567
-2.34059
-2.57318
-2.50054
-2.16484
-1.33932
-0.947711
-0.596392
-0.131639
-0.30027
-0.0654563
-1.22218
-1.70157
-2.88915
-2.43487
-3.08423
-2.08323
-2.60884
-1.5804
-2.23217
-1.08841
-1.3547
2.04263
6.29111
18.0515
-3.10376
-0.241218
-0.343275
0.247044
0.385207
0.581855
0.389864
0.317605
-0.0358393
-0.250515
-0.597207
-0.81112
-1.1517
-1.40618
-1.83703
-2.15573
-2.46619
-2.69864
-2.48242
-1.92729
-1.09836
-0.573826
-0.17342
0.277172
0.00981427
0.0579269
-1.22682
-1.78175
-3.06935
-2.62187
-3.17452
-2.03451
-2.41855
-1.30228
-1.70346
-0.0612806
0.94335
7.0983
17.0659
36.1249
-0.391452
-0.38484
-0.398186
-0.419616
-0.445544
-0.50151
-0.521824
-0.574648
-0.59988
-0.637354
-0.67772
-0.718681
-0.743409
-0.799033
-0.805451
-0.861511
-0.854833
-0.935429
-0.856725
-1.17574
-0.841462
-1.00374
-1.01099
-1.06006
-0.840688
-0.715254
-0.434549
-0.247496
-0.0821156
-0.00783929
-0.0509364
-0.0614072
-0.306122
-0.392591
-0.556384
-0.611359
-0.684014
-0.739372
-0.813028
-0.769083
-0.3983
-0.394976
-0.409755
-0.431411
-0.457574
-0.493644
-0.527855
-0.557672
-0.59484
-0.642979
-0.668968
-0.686652
-0.704685
-0.725278
-0.719327
-0.834932
-0.819933
-0.936128
-0.807597
-1.10852
-0.858455
-1.02759
-1.063
-1.13494
-0.914099
-0.795736
-0.542108
-0.330763
-0.144351
-0.0368892
-0.130294
-0.102194
-0.332313
-0.453843
-0.552494
-0.601504
-0.65432
-0.73178
-0.769546
-0.740339
-0.394075
-0.388772
-0.405718
-0.427254
-0.445469
-0.488786
-0.488932
-0.546588
-0.565984
-0.589601
-0.62977
-0.670717
-0.688704
-0.744189
-0.852497
-0.933695
-0.910955
-0.99893
-0.900982
-1.23036
-1.02658
-1.21871
-1.28065
-1.33423
-1.11813
-0.990461
-0.739159
-0.541582
-0.354272
-0.181657
-0.21916
-0.266661
-0.455657
-0.519143
-0.72447
-0.680389
-0.754655
-0.792394
-0.809432
-0.771663
-0.401778
-0.401638
-0.425207
-0.462513
-0.468095
-0.47057
-0.515832
-0.531362
-0.604709
-0.643445
-0.684411
-0.704434
-0.798423
-0.958064
-0.993532
-1.0541
-1.02992
-1.12139
-1.0499
-1.366
-1.2063
-1.44035
-1.53038
-1.58852
-1.42111
-1.27468
-1.04698
-0.877027
-0.698309
-0.548686
-0.460041
-0.410375
-0.565234
-0.635355
-0.707682
-0.765653
-0.772858
-0.826176
-0.800586
-0.781408
-0.390687
-0.398607
-0.422517
-0.436117
-0.438885
-0.479592
-0.473834
-0.550763
-0.633437
-0.677531
-0.749322
-0.955841
-1.09672
-1.17044
-1.2226
-1.27895
-1.25744
-1.30817
-1.29066
-1.60428
-1.4941
-1.75856
-1.87631
-1.92317
-1.73522
-1.6154
-1.44692
-1.30515
-1.14343
-0.982546
-0.917017
-0.77615
-0.705304
-0.717191
-0.836954
-0.822237
-0.87076
-0.868393
-0.86901
-0.852243
-0.433434
-0.427896
-0.467899
-0.431943
-0.47022
-0.454493
-0.544129
-0.575349
-0.728589
-0.934035
-1.16764
-1.24424
-1.33262
-1.42116
-1.45994
-1.48933
-1.50776
-1.56447
-1.59349
-1.85336
-1.75716
-1.99065
-2.16111
-2.1922
-2.06403
-1.96892
-1.82431
-1.69916
-1.56689
-1.42167
-1.32473
-1.1345
-1.15106
-0.783115
-0.836459
-0.857896
-0.830403
-0.887749
-0.853911
-0.866548
-0.436165
-0.465115
-0.406512
-0.462169
-0.434446
-0.525123
-0.513835
-0.724297
-1.13961
-1.28362
-1.3813
-1.52262
-1.6279
-1.69197
-1.74131
-1.76969
-1.77111
-1.7996
-1.86403
-2.09377
-2.01449
-2.25304
-2.35729
-2.3983
-2.32404
-2.28679
-2.1913
-2.10427
-1.95191
-1.81577
-1.63697
-1.48207
-1.3022
-1.23985
-0.92674
-0.928089
-0.916477
-0.955971
-0.94242
-0.952394
-0.377234
-0.38918
-0.411748
-0.417194
-0.486925
-0.501657
-0.79012
-1.23058
-1.33847
-1.50061
-1.68771
-1.7893
-1.89886
-1.96635
-1.99553
-1.98676
-1.98991
-2.00338
-2.10757
-2.27949
-2.07856
-2.42513
-2.50882
-2.56437
-2.54535
-2.53294
-2.4785
-2.41173
-2.31151
-2.15497
-1.99286
-1.76113
-1.53779
-1.35163
-1.09358
-0.899089
-0.848536
-0.899826
-0.909896
-0.931856
-0.463089
-0.475814
-0.497049
-0.57008
-0.613781
-0.875722
-1.19166
-1.37003
-1.5821
-1.77706
-1.93113
-2.08806
-2.18634
-2.23732
-2.25008
-2.20391
-2.19768
-2.16878
-2.32304
-2.35448
-2.26573
-2.52765
-2.61431
-2.67513
-2.69752
-2.71761
-2.69679
-2.66589
-2.58014
-2.47036
-2.28588
-2.07898
-1.79848
-1.52954
-1.34016
-1.01212
-0.933337
-1.03659
-1.02126
-1.05062
-0.433457
-0.466606
-0.521001
-0.6241
-0.784134
-1.09728
-1.34454
-1.58991
-1.80748
-2.0018
-2.21275
-2.34558
-2.4549
-2.49419
-2.47504
-2.38852
-2.33604
-2.29183
-2.45976
-2.42445
-2.43637
-2.58258
-2.70568
-2.767
-2.8233
-2.86154
-2.86756
-2.85765
-2.80127
-2.7077
-2.55813
-2.34892
-2.07744
-1.76852
-1.45952
-1.24292
-0.917552
-1.01099
-0.985739
-1.03764
-0.513054
-0.546967
-0.611456
-0.74131
-0.991048
-1.32577
-1.54975
-1.81775
-1.99974
-2.25607
-2.44021
-2.6157
-2.73886
-2.77243
-2.74412
-2.57571
-2.51435
-2.4224
-2.57098
-2.54553
-2.66675
-2.66245
-2.81493
-2.84669
-2.91828
-2.96997
-2.99424
-3.00558
-2.9644
-2.89993
-2.77166
-2.59879
-2.35328
-2.04277
-1.71834
-1.43361
-1.18568
-1.03901
-1.19569
-1.16938
-0.567603
-0.608963
-0.686466
-0.859547
-1.18696
-1.46275
-1.7186
-1.95339
-2.22574
-2.44344
-2.67731
-2.88481
-3.03674
-3.11556
-3.01952
-2.85743
-2.65939
-2.52984
-2.55483
-2.66017
-2.88879
-2.7148
-2.89328
-2.9122
-2.98058
-3.05278
-3.0891
-3.11825
-3.08939
-3.04103
-2.93118
-2.78338
-2.56497
-2.27722
-1.92742
-1.59264
-1.35628
-1.12696
-1.1938
-1.17744
-0.682064
-0.723021
-0.802501
-1.05088
-1.33672
-1.61944
-1.87399
-2.1507
-2.35486
-2.61317
-2.87985
-3.14542
-3.38096
-3.44845
-3.42644
-2.94973
-2.54611
-1.82447
-1.33201
-2.00557
-2.98263
-2.72776
-2.81803
-2.96143
-3.00347
-3.10632
-3.15672
-3.19982
-3.17467
-3.14819
-3.06266
-2.94951
-2.76862
-2.52045
-2.19841
-1.83296
-1.55129
-1.36563
-1.29141
-1.37464
-0.778807
-0.827547
-0.937981
-1.22774
-1.48121
-1.7572
-1.99736
-2.26246
-2.49189
-2.77236
-3.07297
-3.43612
-3.70583
-3.97416
-3.48624
-2.37711
0.539216
3.74322
4.53006
1.09566
-2.48959
-2.64521
-2.61314
-2.82928
-2.98472
-3.11528
-3.19664
-3.27128
-3.25091
-3.22635
-3.14386
-3.06209
-2.89342
-2.6969
-2.39461
-2.04129
-1.695
-1.46685
-1.36656
-1.42756
-0.946992
-0.971092
-1.15401
-1.38967
-1.62795
-1.89294
-2.10193
-2.32988
-2.54569
-2.83354
-3.20265
-3.64324
-4.13196
-4.08999
-2.81651
2.75604
10.9759
17.1299
15.8899
6.36308
-1.4892
-2.35363
-2.2589
-2.42311
-2.73071
-3.07397
-3.18236
-3.27219
-3.27059
-3.2941
-3.24561
-3.16871
-3.04194
-2.8818
-2.62808
-2.29694
-1.92564
-1.67494
-1.54691
-1.61996
-0.984605
-1.07519
-1.25455
-1.48841
-1.72572
-1.98898
-2.21532
-2.42133
-2.64466
-2.95292
-3.34205
-3.92916
-4.34582
-3.97846
2.00987
15.1091
29.6701
36.0613
28.5789
11.2914
-0.804536
-2.2096
-1.99046
-2.1126
-2.26641
-2.84195
-3.16597
-3.35369
-3.31638
-3.28695
-3.23108
-3.20781
-3.13908
-3.00624
-2.777
-2.47995
-2.10747
-1.84078
-1.68256
-1.79531
-1.22145
-1.27389
-1.47042
-1.66351
-1.89579
-2.14206
-2.31951
-2.5101
-2.65624
-2.90831
-3.36345
-4.05937
-4.75176
-1.66235
12.136
34.6578
52.4454
55.6358
40.4387
15.688
-0.18326
-1.85818
-1.71633
-1.88964
-1.99487
-2.39051
-2.62465
-3.01112
-3.30409
-3.45248
-3.39501
-3.32929
-3.18986
-3.10596
-2.94502
-2.6776
-2.33234
-2.04239
-1.85906
-1.92542
-1.04884
-1.20817
-1.34997
-1.56234
-1.77485
-2.0139
-2.20335
-2.41949
-2.63451
-2.9451
-3.42953
-4.23593
-4.21942
3.84361
26.4504
54.6646
73.5793
74.5763
53.2049
20.9111
0.831222
-1.76974
-1.35806
-1.75052
-1.79928
-2.18192
-2.23993
-2.39593
-2.5104
-2.77113
-3.05848
-3.38529
-3.38045
-3.30158
-3.08366
-2.85018
-2.54312
-2.29041
-2.19321
-2.32021
-1.20732
-1.26164
-1.39216
-1.53896
-1.72576
-1.96084
-2.14015
-2.43282
-2.50754
-2.66034
-2.96909
-3.65518
-2.43645
11.353
40.3893
70.4157
88.3199
91.9101
69.4762
29.2524
2.45845
-1.23484
-0.957314
-1.57067
-1.63493
-2.0559
-2.13245
-2.3013
-2.35517
-2.44458
-2.42314
-2.45855
-2.62393
-3.09457
-3.23437
-2.99616
-2.68322
-2.28773
-2.08245
-1.92391
-0.455512
-0.547762
-0.652699
-0.793432
-0.890235
-0.992708
-1.08827
-1.22315
-1.36932
-1.71719
-2.29649
-3.38082
-0.175696
17.8751
50.7931
79.9198
97.3055
104.677
88.2873
43.3947
6.0007
-0.265538
-0.501592
-1.4039
-1.50405
-1.96838
-2.04024
-2.21109
-2.26954
-2.34977
-2.40836
-2.44735
-2.4304
-2.36719
-2.39813
-2.88031
-2.86655
-2.79958
-2.82281
-3.10761
-0.128928
-0.147281
-0.232703
-0.293754
-0.459043
-0.609782
-0.749364
-0.952014
-1.18812
-1.61579
-2.33756
-3.7441
0.672723
21.9951
56.9251
85.1493
101.615
109.773
103.91
63.4161
14.4125
0.557788
0.285491
-1.21556
-1.37695
-1.91817
-2.06484
-2.15201
-2.24071
-2.27272
-2.30198
-2.30168
-2.35303
-2.39693
-2.36147
-2.09444
-2.13222
-1.96525
-1.95631
-1.99485
-0.112714
0.0168013
-0.0114495
-0.0613826
-0.175058
-0.341545
-0.491693
-0.759818
-0.976671
-1.54253
-2.39168
-4.07187
0.426538
22.4489
58.0245
86.1021
102.483
110.6
113.509
85.5573
29.51
2.59337
0.579301
-0.923171
-1.29403
-1.8337
-1.98681
-2.16069
-2.25657
-2.29379
-2.30641
-2.34813
-2.39201
-2.39628
-2.49235
-2.40694
-2.21311
-2.08946
-1.88046
-1.90648
-0.156125
-0.0890616
-0.125524
-0.174886
-0.311322
-0.468181
-0.609491
-0.840389
-1.01532
-1.45273
-2.67361
-4.63625
-0.340583
18.8582
53.0086
82.4079
100.77
109.96
116.604
102.656
53.0868
10.7917
0.526451
-0.69176
-1.34576
-1.72958
-1.95511
-2.08731
-2.17602
-2.15982
-2.22475
-2.23655
-2.27791
-2.27313
-2.31593
-2.12925
-2.1514
-2.00985
-1.85273
-1.80583
-0.187735
-0.145765
-0.19144
-0.254383
-0.385205
-0.565813
-0.720078
-0.994017
-1.23196
-1.62807
-2.65308
-4.27124
-1.59072
12.3049
42.2756
72.9009
94.1128
106.361
113.974
109.625
75.6505
29.2189
5.64059
-0.206382
-1.28967
-1.68797
-1.92285
-2.06198
-2.15727
-2.18304
-2.26096
-2.33798
-2.37159
-2.33898
-2.4087
-2.35924
-2.38991
-2.30218
-2.15805
-2.13495
-0.308817
-0.282798
-0.333229
-0.399803
-0.53409
-0.707548
-0.873018
-1.1143
-1.37308
-1.79525
-2.63584
-3.48093
-2.77457
5.19233
27.3886
56.2003
80.1469
96.7172
107.277
106.373
83.773
48.1372
18.4115
3.51209
-0.780127
-1.56297
-1.84195
-1.95447
-2.03613
-2.0396
-2.08491
-2.00759
-2.04957
-1.93126
-1.97253
-1.83124
-1.91328
-1.78235
-1.76162
-1.69889
-0.366269
-0.339989
-0.387232
-0.451229
-0.577163
-0.736777
-0.893161
-1.11239
-1.33166
-1.66148
-2.23638
-2.83707
-3.09996
0.28833
12.4988
34.2555
57.7112
77.4322
91.3272
94.8141
80.0248
54.2107
29.0462
9.93416
1.03495
-1.21888
-1.73877
-1.87568
-2.05189
-2.01377
-2.22616
-2.21331
-2.38977
-2.27833
-2.43787
-2.23257
-2.37767
-2.18842
-2.20733
-2.10551
-0.481355
-0.451477
-0.488534
-0.54266
-0.664083
-0.807955
-0.961561
-1.12277
-1.29902
-1.50082
-1.81955
-2.14738
-2.24081
-1.72586
2.73243
14.1879
30.8583
48.1357
62.5273
69.3459
62.4303
45.9159
27.708
12.2561
2.73501
-0.686374
-1.50674
-1.73883
-1.94314
-2.07932
-2.28549
-2.23108
-2.39657
-2.20808
-2.40218
-2.19034
-2.3218
-2.14365
-2.23848
-2.23888
-0.512461
-0.475643
-0.495685
-0.533829
-0.642831
-0.7739
-0.923064
-1.04427
-1.17639
-1.30546
-1.47931
-1.60784
-1.65983
-1.64846
-1.01383
2.63297
9.45277
18.4675
28.3402
34.8769
34.2127
26.3528
16.0757
7.80711
1.93893
-0.463071
-1.29236
-1.53964
-1.99421
-2.07082
-2.23151
-2.09899
-2.28702
-2.15154
-2.24269
-2.04531
-2.14941
-1.90169
-1.90909
-1.80805
-0.603139
-0.57524
-0.583181
-0.601765
-0.692686
-0.803381
-0.94507
-1.03819
-1.13719
-1.21362
-1.29429
-1.34376
-1.29677
-1.34374
-1.27478
-0.964018
0.791197
3.09181
5.96919
8.55324
10.1375
8.0665
5.15346
2.25425
0.0343225
-0.547391
-1.06762
-1.49199
-1.9705
-1.97851
-2.15905
-1.99601
-2.18763
-1.96963
-2.27848
-1.83816
-2.06457
-1.73212
-1.71449
-1.53949
-0.590063
-0.558914
-0.556524
-0.555593
-0.613646
-0.692273
-0.789843
-0.906999
-0.997734
-1.0543
-1.10604
-1.09766
-1.05572
-0.932217
-0.973863
-0.931966
-1.58351
-1.30679
-1.07176
-1.08146
0.0748392
-0.11586
-0.603663
-0.774036
-0.924609
-0.767407
-1.07675
-1.63974
-1.97643
-1.95573
-2.16676
-1.98137
-2.20556
-1.95186
-2.14408
-1.94138
-2.0008
-1.72844
-1.65964
-1.42031
-0.687965
-0.673982
-0.658667
-0.652607
-0.68397
-0.724927
-0.821002
-0.918476
-1.00775
-1.05284
-1.09468
-1.07599
-1.02266
-0.911858
-0.815436
-0.762656
-1.01083
-1.39328
-1.9192
-2.26854
-1.88458
-1.39941
-1.13744
-0.945552
-0.943474
-0.849873
-1.22148
-1.76167
-2.0085
-1.94789
-2.18402
-1.93615
-2.20333
-1.86711
-2.14382
-1.75974
-2.01879
-1.60832
-1.63426
-1.31366
-0.631939
-0.59435
-0.602028
-0.548759
-0.601909
-0.59475
-0.682023
-0.757093
-0.862569
-0.918305
-0.989976
-0.9926
-0.992203
-0.907477
-0.870333
-0.775028
-0.801107
-0.979884
-1.32305
-1.84943
-1.86878
-1.59398
-1.31221
-1.07613
-1.0596
-0.944829
-1.34181
-1.88283
-2.14139
-1.98677
-2.25051
-1.92853
-2.23489
-1.82455
-2.13512
-1.67795
-1.98252
-1.48956
-1.57531
-1.17787
-0.732164
-0.719077
-0.714547
-0.66561
-0.6764
-0.679395
-0.750435
-0.774813
-0.931461
-0.977557
-1.08267
-1.10925
-1.16235
-1.13534
-1.15614
-1.12653
-1.17766
-1.36638
-1.55373
-1.95476
-1.73453
-1.57534
-1.36876
-1.15586
-1.17566
-0.992806
-1.41835
-1.97111
-2.26755
-2.0622
-2.34928
-1.94613
-2.29529
-1.80403
-2.16039
-1.60259
-1.93352
-1.34162
-1.44253
-0.941808
-0.61254
-0.588182
-0.563886
-0.489431
-0.472263
-0.456957
-0.545022
-0.56692
-0.694794
-0.843281
-0.98547
-1.06247
-1.19592
-1.24137
-1.35737
-1.3985
-1.50045
-1.66925
-1.70236
-1.95592
-1.57037
-1.48589
-1.29044
-1.1166
-1.23527
-0.987038
-1.40066
-2.00003
-2.38383
-2.12664
-2.4292
-1.9462
-2.36238
-1.74115
-2.16826
-1.44684
-1.8452
-1.00349
-1.15244
-0.373119
-0.731316
-0.734234
-0.703946
-0.595457
-0.546403
-0.434293
-0.592491
-0.557736
-0.76301
-0.826804
-1.1052
-1.19547
-1.37346
-1.45847
-1.62066
-1.70597
-1.83853
-2.00012
-1.95526
-2.10837
-1.56129
-1.48926
-1.28216
-1.10101
-1.20038
-0.973629
-1.4371
-2.03334
-2.41319
-2.22362
-2.59639
-2.01948
-2.46146
-1.79966
-2.24673
-1.47868
-1.81328
-0.867987
-0.671218
0.423114
-0.584716
-0.511479
-0.533827
-0.308118
-0.267744
-0.0599974
-0.273679
-0.238715
-0.484674
-0.614818
-0.885204
-1.07137
-1.30686
-1.40983
-1.62691
-1.74582
-1.90434
-2.09494
-2.02997
-2.12187
-1.4432
-1.34618
-1.09668
-0.917414
-1.01169
-0.827902
-1.37109
-2.02508
-2.54144
-2.20801
-2.60298
-2.01005
-2.53875
-1.68948
-2.29097
-1.24458
-1.70833
-0.186479
0.0516417
2.47335
-0.636797
-0.772542
-0.637675
-0.499467
-0.370747
-0.0746604
-0.237352
-0.214206
-0.463557
-0.598042
-0.893173
-1.06857
-1.31596
-1.46787
-1.72675
-1.90173
-2.08767
-2.29682
-2.2237
-2.25071
-1.4985
-1.34164
-1.04949
-0.825651
-0.902547
-0.711322
-1.35719
-1.98854
-2.64635
-2.33089
-2.78258
-2.05211
-2.60242
-1.77481
-2.41703
-1.41809
-1.85954
-0.0254748
0.752718
4.98277
-0.827271
-0.45876
-0.5196
-0.0191873
-0.00320269
0.332282
0.13765
0.135299
-0.171067
-0.3364
-0.668802
-0.879127
-1.21095
-1.41725
-1.73532
-1.93965
-2.1743
-2.41811
-2.33351
-2.26892
-1.4033
-1.15007
-0.789206
-0.49079
-0.613453
-0.434417
-1.25625
-1.95727
-2.78307
-2.36981
-2.91677
-2.03394
-2.61331
-1.63279
-2.25833
-1.05967
-1.30905
1.16728
3.59479
10.7751
-0.347943
-0.904048
-0.758768
-0.586913
-0.133089
0.123362
0.13214
0.0879056
-0.183259
-0.369322
-0.703577
-0.915513
-1.25012
-1.47832
-1.83549
-2.0923
-2.36183
-2.62149
-2.55946
-2.28773
-1.49034
-1.11737
-0.723802
-0.265901
-0.387057
-0.100645
-1.22081
-1.72719
-2.9047
-2.46679
-3.10832
-2.11071
-2.63072
-1.59959
-2.24146
-1.09202
-1.35532
2.03801
6.27132
18.0169
-3.10784
-0.247091
-0.347635
0.24703
0.388349
0.586187
0.397235
0.341412
-0.00481285
-0.205686
-0.550226
-0.771814
-1.13351
-1.41402
-1.84791
-2.17649
-2.47875
-2.74086
-2.54804
-2.05622
-1.25123
-0.754638
-0.305282
0.152051
-0.0698158
0.0168689
-1.21952
-1.80226
-3.08163
-2.65604
-3.20627
-2.07245
-2.44983
-1.32095
-1.71583
-0.0625612
0.952046
7.10395
17.0591
36.1074
-0.395863
-0.386239
-0.402415
-0.421412
-0.451436
-0.505735
-0.531985
-0.571728
-0.6049
-0.636568
-0.686405
-0.723666
-0.757371
-0.808158
-0.817046
-0.866813
-0.859517
-0.95568
-0.879861
-1.20645
-0.878865
-1.02373
-1.036
-1.0896
-0.879738
-0.754735
-0.481205
-0.294865
-0.120958
-0.0455637
-0.0695633
-0.102594
-0.338053
-0.414109
-0.574585
-0.616944
-0.681572
-0.709062
-0.818011
-0.764293
-0.402543
-0.39666
-0.41397
-0.433216
-0.462603
-0.500548
-0.540959
-0.559443
-0.607361
-0.651107
-0.686496
-0.69641
-0.722385
-0.73726
-0.732128
-0.846466
-0.832175
-0.953867
-0.833222
-1.15673
-0.922349
-1.07184
-1.10002
-1.17228
-0.935699
-0.824606
-0.557879
-0.346893
-0.166899
-0.0651732
-0.165644
-0.140626
-0.359909
-0.473054
-0.564214
-0.611598
-0.647997
-0.711795
-0.767908
-0.737056
-0.400278
-0.392549
-0.412096
-0.431151
-0.455366
-0.486425
-0.498732
-0.542071
-0.581038
-0.600882
-0.647814
-0.685316
-0.704812
-0.753091
-0.859668
-0.931546
-0.916783
-1.01591
-0.925164
-1.25881
-1.05498
-1.2417
-1.31558
-1.35993
-1.16138
-1.03525
-0.778858
-0.578123
-0.372081
-0.201217
-0.244951
-0.295327
-0.494029
-0.531771
-0.747095
-0.687277
-0.754331
-0.77894
-0.81208
-0.771559
-0.407436
-0.402634
-0.429966
-0.458175
-0.475125
-0.473215
-0.521471
-0.536197
-0.622782
-0.663701
-0.709198
-0.725975
-0.818363
-0.965498
-0.99763
-1.05699
-1.04582
-1.12318
-1.05431
-1.38322
-1.24014
-1.493
-1.58056
-1.66444
-1.48479
-1.33348
-1.0908
-0.927221
-0.739264
-0.579451
-0.494507
-0.444596
-0.593675
-0.655607
-0.718183
-0.77352
-0.763071
-0.823343
-0.800341
-0.781758
-0.399893
-0.404415
-0.427939
-0.450138
-0.443365
-0.483514
-0.480644
-0.560401
-0.657991
-0.700493
-0.775452
-0.97238
-1.1235
-1.18891
-1.21586
-1.25126
-1.2591
-1.33957
-1.32409
-1.6444
-1.52208
-1.79319
-1.91102
-1.99273
-1.80199
-1.67773
-1.4744
-1.31737
-1.17522
-1.01937
-0.950849
-0.806034
-0.739418
-0.736327
-0.853051
-0.839041
-0.875829
-0.873908
-0.875743
-0.85665
-0.437326
-0.423921
-0.465222
-0.424268
-0.471261
-0.453294
-0.553417
-0.589765
-0.752877
-0.965631
-1.1832
-1.26666
-1.37739
-1.42266
-1.47357
-1.50779
-1.51379
-1.5601
-1.60001
-1.86913
-1.8025
-2.08594
-2.23801
-2.27007
-2.13332
-2.04777
-1.89015
-1.76227
-1.60448
-1.44307
-1.34327
-1.15734
-1.16952
-0.797812
-0.841546
-0.866187
-0.828055
-0.890777
-0.852713
-0.866713
-0.447143
-0.46891
-0.418768
-0.468066
-0.440086
-0.535417
-0.526258
-0.748788
-1.17253
-1.30023
-1.41061
-1.50301
-1.6204
-1.71348
-1.7485
-1.76186
-1.76662
-1.79461
-1.88869
-2.12584
-2.08994
-2.38483
-2.48986
-2.50999
-2.41895
-2.36081
-2.24927
-2.14314
-2.0114
-1.845
-1.68782
-1.49125
-1.32635
-1.25525
-0.935832
-0.936872
-0.921772
-0.963653
-0.94936
-0.958395
-0.374592
-0.388346
-0.405685
-0.411329
-0.487185
-0.503216
-0.806123
-1.25466
-1.35615
-1.54355
-1.66883
-1.81598
-1.94349
-2.00266
-2.02064
-1.98659
-1.98489
-1.98791
-2.12915
-2.30765
-2.20246
-2.49814
-2.65659
-2.68699
-2.64689
-2.61831
-2.55056
-2.47683
-2.3629
-2.21046
-2.03521
-1.79499
-1.55341
-1.368
-1.10192
-0.906461
-0.850826
-0.900376
-0.909024
-0.93139
-0.469162
-0.477407
-0.500278
-0.57163
-0.616979
-0.885328
-1.20328
-1.37556
-1.6152
-1.78442
-1.97949
-2.13432
-2.25969
-2.2994
-2.28957
-2.20814
-2.17727
-2.13353
-2.32856
-2.40454
-2.46396
-2.71918
-2.81523
-2.82676
-2.81283
-2.80758
-2.77208
-2.73035
-2.64201
-2.52302
-2.34897
-2.11899
-1.84125
-1.55397
-1.3521
-1.02285
-0.941439
-1.0449
-1.02968
-1.05779
-0.421788
-0.455925
-0.514144
-0.622756
-0.786234
-1.09956
-1.33634
-1.61833
-1.81392
-2.06489
-2.25975
-2.44125
-2.56496
-2.58759
-2.54416
-2.37247
-2.29234
-2.22082
-2.44106
-2.51834
-2.70199
-2.80889
-2.94398
-2.94214
-2.9533
-2.96241
-2.95002
-2.93012
-2.86453
-2.76649
-2.60953
-2.3915
-2.11057
-1.79638
-1.46813
-1.25321
-0.918461
-1.01574
-0.98396
-1.03866
-0.505977
-0.538527
-0.605778
-0.73819
-0.991355
-1.31106
-1.5615
-1.7699
-2.05615
-2.29277
-2.53631
-2.74739
-2.90564
-2.94011
-2.84963
-2.60846
-2.46362
-2.36171
-2.59117
-2.77641
-3.06929
-3.02674
-3.10482
-3.0573
-3.07029
-3.08412
-3.08356
-3.08234
-3.03216
-2.96101
-2.82908
-2.64849
-2.39673
-2.0734
-1.73717
-1.44417
-1.19846
-1.04605
-1.20737
-1.17734
-0.547133
-0.588511
-0.668617
-0.846066
-1.17282
-1.44478
-1.71661
-1.96999
-2.23526
-2.50363
-2.78482
-3.05056
-3.28618
-3.34013
-3.29031
-2.86305
-2.48951
-1.88192
-1.73588
-2.40771
-3.28346
-3.16654
-3.22007
-3.16317
-3.15824
-3.18343
-3.18769
-3.20196
-3.16136
-3.10561
-2.98888
-2.83852
-2.61028
-2.31578
-1.94972
-1.6081
-1.36193
-1.13772
-1.19305
-1.17996
-0.66383
-0.703334
-0.781352
-1.03425
-1.30238
-1.59139
-1.81486
-2.11527
-2.36225
-2.66465
-3.0067
-3.37962
-3.72709
-3.94683
-3.57163
-1.95864
0.947364
3.94082
3.97408
0.427714
-2.97328
-3.24845
-3.1979
-3.2528
-3.20267
-3.2537
-3.25928
-3.28647
-3.2507
-3.21513
-3.12633
-3.01515
-2.82357
-2.56383
-2.23109
-1.8537
-1.56617
-1.37836
-1.30233
-1.38331
-0.751371
-0.797699
-0.905274
-1.1926
-1.42685
-1.71122
-1.93168
-2.20983
-2.46277
-2.78883
-3.20056
-3.6824
-4.30863
-4.18166
-1.7825
5.56415
14.3199
19.2657
15.6343
5.31778
-2.23509
-3.1581
-3.08506
-3.23554
-3.2257
-3.28887
-3.31636
-3.36714
-3.33285
-3.29366
-3.20907
-3.09776
-2.95885
-2.73931
-2.43168
-2.06731
-1.71121
-1.47728
-1.37499
-1.43271
-0.923146
-0.940967
-1.12464
-1.34675
-1.56953
-1.8377
-2.03108
-2.26867
-2.48604
-2.81975
-3.2989
-4.0242
-4.5668
-2.48699
7.38026
23.9204
37.167
38.6488
27.0472
9.32007
-1.77298
-3.00069
-2.89408
-3.02296
-3.09711
-3.26677
-3.30176
-3.37787
-3.36271
-3.37646
-3.32096
-3.23096
-3.10555
-2.92373
-2.66787
-2.32636
-1.94774
-1.68893
-1.55953
-1.63348
-0.955899
-1.04713
-1.21136
-1.4353
-1.65186
-1.91992
-2.09732
-2.3247
-2.53063
-2.84837
-3.4329
-4.23128
-3.98481
4.63522
25.9504
51.7544
62.5358
55.7968
35.9058
12.2428
-1.66494
-2.94691
-2.74647
-2.84806
-2.78398
-3.15057
-3.31759
-3.45361
-3.40365
-3.35676
-3.28396
-3.25888
-3.18729
-3.04575
-2.82154
-2.51119
-2.13513
-1.85851
-1.69668
-1.81066
-1.19115
-1.24387
-1.43459
-1.61744
-1.83843
-2.09593
-2.23018
-2.43137
-2.51701
-2.75707
-3.34756
-4.24118
-0.738933
18.5236
52.6682
80.5509
86.1075
71.8193
44.813
15.9134
-1.0412
-2.69256
-2.45297
-2.63498
-2.52397
-2.76722
-2.92617
-3.2422
-3.44142
-3.54004
-3.47418
-3.38688
-3.26186
-3.14312
-2.99369
-2.7159
-2.36579
-2.06427
-1.88102
-1.94401
-1.0401
-1.21047
-1.32085
-1.53502
-1.72601
-1.96995
-2.11922
-2.36159
-2.49439
-2.71244
-3.31421
-3.44747
6.36542
38.3764
77.6301
101.41
104.036
88.2793
56.8008
21.4294
0.305253
-2.2674
-2.005
-2.38826
-2.26547
-2.47376
-2.46202
-2.57999
-2.67283
-2.88469
-3.1298
-3.42825
-3.44485
-3.36529
-3.15488
-2.89603
-2.58677
-2.31205
-2.21917
-2.34304
-1.17113
-1.25099
-1.39623
-1.53619
-1.72082
-1.95541
-2.11751
-2.43505
-2.39635
-2.40266
-2.6076
-1.12097
16.9257
57.0492
95.3001
112.059
114.333
102.718
72.7126
30.0658
2.48162
-1.74606
-1.38952
-2.09202
-2.05607
-2.30909
-2.34693
-2.47412
-2.50063
-2.55391
-2.5141
-2.51235
-2.63775
-3.0307
-3.27137
-3.05162
-2.71715
-2.32573
-2.10262
-1.9413
-0.541006
-0.6471
-0.715707
-0.848081
-0.896416
-0.961792
-1.02566
-1.2696
-1.30366
-1.54745
-2.07628
0.961744
25.9112
71.0323
105.05
116.346
118.253
113.063
89.8929
44.1743
6.8409
-0.121382
-0.952569
-1.71869
-1.97437
-2.22043
-2.24003
-2.36988
-2.40186
-2.45821
-2.50243
-2.51475
-2.50279
-2.4424
-2.37478
-2.87996
-2.90053
-2.84304
-2.85937
-3.1472
-0.0429435
-0.0918793
-0.186254
-0.238154
-0.38071
-0.481998
-0.596708
-0.96927
-1.0836
-1.41769
-2.2607
2.02426
31.1711
78.7696
109.923
118.152
120.441
118.658
105.628
63.7429
16.2362
1.23932
0.392416
-1.40943
-1.69647
-2.18787
-2.26833
-2.32684
-2.35106
-2.37152
-2.37301
-2.34505
-2.41219
-2.46198
-2.44155
-2.12824
-2.168
-1.99996
-1.95708
-2.00214
-0.073148
0.0667463
0.0466804
0.0189327
-0.086201
-0.227568
-0.324404
-0.693468
-0.875668
-1.29063
-2.52189
1.94782
31.8842
80.1482
111.531
119.212
121.488
120.068
116.42
86.7003
32.7928
4.09757
0.441346
-1.11619
-1.66369
-2.1052
-2.21946
-2.33371
-2.37976
-2.38588
-2.41503
-2.36275
-2.39485
-2.46954
-2.54908
-2.47643
-2.24891
-2.11188
-1.93529
-1.94485
-0.111846
-0.0131187
-0.0648571
-0.0833752
-0.243479
-0.351338
-0.493412
-0.763752
-0.855137
-1.34982
-2.61392
1.27127
27.8002
74.6847
109.038
119.513
121.556
120.789
121.311
105.452
58.041
12.9678
0.523296
-0.932131
-1.7626
-2.04467
-2.20805
-2.26752
-2.317
-2.26663
-2.29232
-2.2447
-2.29692
-2.34863
-2.38146
-2.16495
-2.16828
-2.03225
-1.86725
-1.83716
-0.136735
-0.0875579
-0.125656
-0.180367
-0.298281
-0.488883
-0.604908
-0.910287
-1.0143
-1.47509
-2.60002
-0.200726
20.2236
62.2903
100.431
116.786
121.151
121.011
121.86
115.298
82.2845
32.9834
5.20779
-1.22807
-1.94901
-2.11601
-2.2115
-2.24731
-2.3257
-2.27249
-2.35808
-2.3144
-2.46973
-2.37873
-2.45938
-2.39262
-2.41713
-2.32182
-2.18705
-2.17143
-0.274848
-0.236395
-0.28304
-0.340262
-0.472338
-0.651005
-0.79246
-1.05169
-1.21665
-1.58886
-2.42593
-1.50332
11.4799
44.6767
83.898
107.975
117.618
120.276
121.799
117.947
94.6347
56.1564
20.0693
2.02439
-1.89073
-2.17776
-2.18222
-2.15169
-2.20862
-2.10372
-2.13753
-2.01853
-2.07414
-1.95527
-2.01037
-1.82706
-1.92253
-1.79623
-1.77779
-1.72196
-0.336344
-0.301897
-0.343129
-0.40443
-0.52428
-0.705669
-0.832583
-1.07307
-1.21454
-1.54163
-1.98716
-1.80698
4.66015
25.5053
59.3024
89.5772
107.527
115.34
119.422
117.3
99.4783
70.3947
39.8997
14.0056
1.38499
-1.711
-2.0908
-2.07366
-2.2131
-2.08879
-2.3052
-2.2781
-2.46236
-2.33446
-2.50245
-2.26959
-2.42312
-2.22769
-2.23281
-2.11924
-0.465038
-0.425875
-0.457845
-0.510511
-0.62934
-0.793009
-0.930974
-1.09976
-1.25866
-1.42086
-1.79582
-1.82727
0.538818
10.361
32.1995
59.8324
83.3922
98.8941
107.655
109.43
97.8593
74.5712
49.0073
25.8921
8.19083
0.37748
-1.57763
-1.84517
-2.00351
-2.07589
-2.32666
-2.25817
-2.40839
-2.24112
-2.41695
-2.22462
-2.35052
-2.19768
-2.29768
-2.30137
-0.495213
-0.45774
-0.474666
-0.512446
-0.619452
-0.769213
-0.910253
-1.04347
-1.16927
-1.28399
-1.41822
-1.50268
-0.33153
2.50974
12.0793
28.7047
48.2944
65.9437
77.8975
84.0825
79.9068
64.5514
44.9703
26.0766
11.085
2.22708
-0.937736
-1.51294
-2.04116
-2.10918
-2.28055
-2.13436
-2.31312
-2.16925
-2.28316
-2.0729
-2.18137
-1.94668
-1.97946
-1.86728
-0.596459
-0.571967
-0.578733
-0.59242
-0.684823
-0.81055
-0.980329
-1.05598
-1.15853
-1.22055
-1.28812
-1.24124
-0.994165
0.0620735
2.8797
9.43893
18.6425
28.7313
38.5298
45.0051
45.1259
38.2442
27.2604
15.9318
6.95656
1.62896
-0.630106
-1.35843
-1.93812
-1.9846
-2.17861
-2.01147
-2.20525
-1.97711
-2.27996
-1.87283
-2.08206
-1.75774
-1.75787
-1.57025
-0.595873
-0.564434
-0.56709
-0.554437
-0.612411
-0.71325
-0.882995
-0.944575
-1.02808
-1.07598
-1.10776
-1.03884
-0.812419
-0.470096
0.526082
1.89391
5.00466
8.33958
12.2417
14.6602
15.688
13.1516
9.20187
5.01359
1.62091
-0.133345
-0.741486
-1.50324
-1.9224
-1.94869
-2.16814
-1.99715
-2.21988
-1.96933
-2.15959
-1.96325
-2.01428
-1.74618
-1.68247
-1.44017
-0.692803
-0.679968
-0.667031
-0.655836
-0.67505
-0.729851
-0.842763
-0.946576
-1.02762
-1.0642
-1.0925
-1.02839
-0.877466
-0.584409
-0.213271
0.29156
0.28275
0.85171
1.78312
1.86134
2.12444
1.97063
0.709953
-0.280281
-0.696818
-0.636093
-0.992502
-1.68219
-1.94838
-1.93885
-2.17989
-1.95076
-2.21447
-1.87783
-2.15754
-1.77711
-2.02872
-1.62825
-1.65199
-1.33171
-0.638296
-0.601402
-0.607095
-0.555238
-0.578383
-0.573788
-0.666001
-0.797654
-0.861621
-0.914558
-0.969644
-0.950536
-0.901883
-0.735287
-0.558519
-0.319036
-0.0408087
-0.450346
-0.879594
-1.49133
-1.42016
-1.16153
-0.968801
-0.975237
-0.978771
-0.921368
-1.21485
-1.88726
-2.12356
-2.002
-2.25849
-1.9511
-2.2479
-1.84137
-2.15066
-1.69648
-1.9995
-1.50598
-1.59104
-1.19865
-0.737206
-0.724068
-0.719018
-0.665581
-0.66412
-0.628018
-0.676935
-0.673158
-0.870342
-0.9183
-1.01977
-1.03508
-1.06569
-1.00059
-0.95628
-0.863989
-0.86299
-1.01182
-1.21329
-1.82223
-1.86762
-1.74305
-1.55365
-1.32936
-1.26023
-1.02942
-1.30926
-2.01072
-2.27188
-2.09844
-2.3692
-1.98176
-2.30644
-1.82359
-2.1732
-1.62493
-1.94869
-1.36582
-1.45534
-0.964949
-0.62228
-0.596545
-0.568818
-0.493641
-0.469559
-0.428328
-0.460439
-0.466152
-0.645996
-0.72838
-0.857496
-0.942549
-1.06277
-1.09114
-1.17817
-1.20651
-1.3037
-1.51348
-1.61754
-1.93384
-1.71826
-1.66452
-1.46671
-1.28527
-1.33043
-1.08205
-1.36384
-2.05839
-2.41092
-2.17476
-2.46147
-1.98164
-2.3624
-1.76091
-2.18725
-1.47075
-1.87714
-1.04291
-1.16848
-0.406934
-0.740792
-0.742585
-0.704783
-0.604706
-0.544147
-0.439172
-0.522792
-0.453913
-0.617666
-0.725121
-0.912478
-1.02015
-1.21793
-1.3306
-1.53766
-1.66287
-1.82004
-2.00374
-1.99649
-2.17452
-1.75367
-1.69406
-1.47027
-1.28068
-1.3239
-1.09045
-1.43532
-2.10573
-2.43902
-2.27359
-2.63509
-2.05362
-2.47981
-1.82288
-2.26776
-1.51026
-1.84634
-0.930825
-0.696747
0.382629
-0.60046
-0.523056
-0.539249
-0.318631
-0.260598
-0.0731034
-0.232618
-0.156468
-0.355847
-0.446127
-0.658051
-0.883219
-1.16611
-1.36533
-1.63176
-1.79272
-1.95626
-2.16236
-2.11664
-2.22795
-1.66481
-1.56964
-1.28774
-1.09611
-1.14119
-0.960741
-1.39629
-2.09547
-2.58007
-2.25974
-2.63295
-2.0421
-2.56308
-1.71711
-2.31966
-1.28793
-1.74063
-0.303586
0.0412508
2.43576
-0.646177
-0.780417
-0.640273
-0.505842
-0.364172
-0.081371
-0.211805
-0.146822
-0.362863
-0.458895
-0.724971
-0.897485
-1.22006
-1.45448
-1.74048
-1.9554
-2.16608
-2.38642
-2.34169
-2.35978
-1.72862
-1.554
-1.22581
-0.992861
-1.02916
-0.834997
-1.38977
-2.05812
-2.67137
-2.3809
-2.81603
-2.0964
-2.62832
-1.80221
-2.44772
-1.44982
-1.91766
-0.0824265
0.709087
4.9264
-0.836482
-0.466126
-0.522263
-0.0257443
0.0047184
0.327062
0.160411
0.193757
-0.0814817
-0.211396
-0.525109
-0.75272
-1.13429
-1.40835
-1.75577
-1.99121
-2.22911
-2.48458
-2.42822
-2.34801
-1.64368
-1.33621
-0.948895
-0.63603
-0.711144
-0.588275
-1.29451
-2.00218
-2.79095
-2.39874
-2.94881
-2.07467
-2.64742
-1.66886
-2.30065
-1.11415
-1.38354
1.06673
3.52751
10.7031
-0.35683
-0.913935
-0.766081
-0.593334
-0.13278
0.13036
0.145779
0.14534
-0.0906469
-0.232177
-0.546905
-0.773595
-1.16058
-1.44875
-1.84025
-2.12193
-2.39449
-2.67936
-2.64858
-2.42813
-1.72008
-1.33479
-0.886663
-0.410029
-0.49144
-0.162205
-1.2447
-1.76455
-2.92105
-2.50002
-3.14304
-2.15135
-2.67329
-1.63482
-2.27632
-1.143
-1.44344
1.92845
6.15587
17.9252
-3.12159
-0.262217
-0.361059
0.235558
0.381783
0.578231
0.40329
0.375909
0.0900153
-0.0374583
-0.346665
-0.587591
-1.0198
-1.38136
-1.8514
-2.20231
-2.50547
-2.79406
-2.64004
-2.21064
-1.48512
-0.980498
-0.47456
-0.0126133
-0.172399
-0.04939
-1.23947
-1.83245
-3.09066
-2.68985
-3.24771
-2.11868
-2.49459
-1.35218
-1.75013
-0.106293
0.870135
6.98902
16.9356
36.0022
-0.389715
-0.383068
-0.397032
-0.420449
-0.443521
-0.508549
-0.525436
-0.576242
-0.599907
-0.641434
-0.68213
-0.723359
-0.754488
-0.810541
-0.819497
-0.875744
-0.866118
-0.968721
-0.876647
-1.20078
-0.879423
-1.02272
-1.0421
-1.09393
-0.870742
-0.738818
-0.435073
-0.243665
-0.0616022
0.00351068
-0.016595
-0.0734549
-0.307805
-0.407974
-0.570936
-0.615152
-0.679214
-0.686852
-0.815792
-0.758507
-0.397291
-0.393094
-0.408879
-0.432275
-0.454564
-0.501976
-0.534435
-0.557956
-0.60606
-0.652769
-0.687332
-0.693425
-0.71727
-0.735484
-0.733796
-0.85467
-0.835229
-0.958739
-0.839122
-1.15511
-0.931492
-1.07495
-1.12683
-1.17842
-0.935802
-0.812469
-0.551738
-0.31834
-0.141269
-0.0359615
-0.150829
-0.13002
-0.339608
-0.463251
-0.569693
-0.614548
-0.64725
-0.689927
-0.766885
-0.733328
-0.39553
-0.390838
-0.407557
-0.431863
-0.449515
-0.485702
-0.484643
-0.546953
-0.574965
-0.597614
-0.63982
-0.679085
-0.698324
-0.752058
-0.864005
-0.938204
-0.923634
-1.02437
-0.937828
-1.27427
-1.07724
-1.27635
-1.34118
-1.39391
-1.21
-1.06383
-0.792222
-0.595761
-0.369783
-0.199442
-0.24397
-0.291339
-0.499525
-0.536584
-0.746898
-0.691654
-0.757452
-0.762073
-0.814665
-0.770789
-0.40125
-0.397099
-0.426138
-0.453291
-0.469696
-0.467775
-0.517582
-0.5342
-0.621234
-0.663648
-0.704051
-0.722686
-0.824934
-0.975419
-1.00437
-1.06787
-1.03648
-1.13728
-1.09282
-1.41334
-1.29743
-1.5278
-1.63648
-1.71129
-1.50311
-1.35859
-1.13303
-0.954822
-0.77239
-0.613575
-0.507561
-0.453622
-0.589585
-0.659735
-0.718909
-0.783739
-0.765016
-0.815587
-0.802954
-0.782513
-0.393919
-0.404543
-0.420735
-0.452609
-0.437869
-0.484529
-0.473873
-0.566731
-0.654832
-0.699552
-0.775537
-0.992482
-1.13543
-1.17057
-1.22281
-1.27473
-1.27486
-1.33822
-1.34016
-1.66419
-1.5729
-1.87148
-1.99226
-2.04348
-1.86136
-1.73922
-1.5424
-1.37949
-1.20302
-1.03127
-0.958549
-0.820095
-0.739928
-0.731793
-0.855763
-0.833486
-0.889239
-0.868964
-0.879343
-0.85695
-0.4305
-0.408765
-0.467897
-0.411397
-0.466026
-0.447024
-0.555291
-0.58203
-0.758699
-0.979412
-1.21207
-1.30095
-1.36931
-1.44552
-1.47458
-1.50113
-1.50815
-1.55959
-1.62555
-1.90688
-1.87227
-2.17349
-2.34442
-2.36717
-2.23022
-2.13252
-1.96874
-1.81559
-1.65801
-1.48337
-1.36744
-1.15692
-1.1793
-0.802022
-0.83804
-0.863706
-0.819803
-0.890038
-0.852966
-0.866749
-0.43999
-0.473492
-0.407897
-0.466321
-0.433724
-0.540359
-0.51447
-0.774053
-1.17754
-1.3133
-1.40511
-1.58407
-1.67801
-1.73661
-1.76194
-1.75731
-1.7551
-1.77451
-1.89781
-2.14547
-2.1593
-2.48925
-2.60177
-2.6271
-2.53655
-2.47152
-2.34249
-2.2193
-2.06017
-1.8912
-1.71928
-1.52511
-1.32524
-1.26376
-0.936712
-0.931457
-0.921352
-0.961083
-0.949183
-0.958781
-0.353616
-0.36314
-0.390726
-0.397316
-0.480813
-0.488041
-0.835641
-1.2452
-1.34576
-1.51655
-1.7424
-1.89238
-2.00541
-2.0398
-2.028
-1.96716
-1.95324
-1.95692
-2.1333
-2.33701
-2.33466
-2.64265
-2.81144
-2.84322
-2.80173
-2.75152
-2.6568
-2.55854
-2.42388
-2.26298
-2.06615
-1.82325
-1.57452
-1.36723
-1.10495
-0.907264
-0.852327
-0.897939
-0.908926
-0.930817
-0.450145
-0.464144
-0.488016
-0.566307
-0.613374
-0.906953
-1.20234
-1.37857
-1.59236
-1.83149
-2.03824
-2.22827
-2.34048
-2.35227
-2.31043
-2.17464
-2.12935
-2.07062
-2.31238
-2.44488
-2.64831
-2.89015
-3.00309
-3.0195
-2.99506
-2.9539
-2.88643
-2.81969
-2.71049
-2.57897
-2.39018
-2.15695
-1.86566
-1.55339
-1.35979
-1.02738
-0.942466
-1.04893
-1.02914
-1.06025
-0.394016
-0.433486
-0.499871
-0.617606
-0.792386
-1.09756
-1.35732
-1.58892
-1.84673
-2.098
-2.35538
-2.55526
-2.67549
-2.67893
-2.56066
-2.30498
-2.15786
-2.08838
-2.42223
-2.66938
-2.98544
-3.09779
-3.18709
-3.17086
-3.1476
-3.1087
-3.06279
-3.01982
-2.93774
-2.82805
-2.66045
-2.43427
-2.14232
-1.80179
-1.479
-1.26383
-0.926146
-1.01675
-0.989548
-1.03968
-0.479934
-0.517481
-0.591942
-0.735142
-0.997237
-1.31526
-1.52511
-1.80611
-2.06669
-2.36161
-2.64243
-2.8864
-3.06754
-3.06705
-2.92878
-2.54086
-2.40368
-2.2549
-2.55178
-2.90018
-3.48428
-3.38062
-3.39282
-3.30253
-3.2609
-3.22362
-3.18991
-3.16953
-3.10725
-3.02747
-2.8867
-2.6969
-2.4361
-2.09903
-1.75782
-1.45888
-1.20809
-1.05496
-1.20752
-1.18146
-0.515495
-0.561595
-0.649141
-0.839103
-1.16363
-1.43794
-1.67274
-1.97173
-2.25741
-2.57126
-2.89601
-3.24348
-3.4986
-3.6413
-3.40274
-2.40942
-0.539649
1.62389
1.72876
-0.815565
-3.35419
-3.51039
-3.4726
-3.40826
-3.34599
-3.32492
-3.29488
-3.29017
-3.2372
-3.17452
-3.05248
-2.89351
-2.64779
-2.34719
-1.97337
-1.62412
-1.37496
-1.14712
-1.20085
-1.1838
-0.634789
-0.678036
-0.765372
-1.03193
-1.29173
-1.59102
-1.80602
-2.09859
-2.36886
-2.70502
-3.11593
-3.58746
-4.09549
-4.08941
-2.0462
4.45558
12.1505
16.2316
12.7488
3.74589
-2.80536
-3.56219
-3.46921
-3.50538
-3.41091
-3.41089
-3.37476
-3.37978
-3.33032
-3.28627
-3.19272
-3.05036
-2.8701
-2.60069
-2.25961
-1.87324
-1.57863
-1.38981
-1.30516
-1.38899
-0.718811
-0.767689
-0.892776
-1.17943
-1.41167
-1.6851
-1.89999
-2.18007
-2.43385
-2.79727
-3.25374
-4.01717
-4.4155
-1.89951
8.92408
25.0616
36.194
35.1198
23.3643
7.11047
-2.68131
-3.64556
-3.49576
-3.54409
-3.46931
-3.47273
-3.44953
-3.47074
-3.41832
-3.37161
-3.2748
-3.15225
-3.00176
-2.77931
-2.46172
-2.08761
-1.7263
-1.48452
-1.38351
-1.4358
-0.894808
-0.914422
-1.12402
-1.33909
-1.56009
-1.79307
-1.96801
-2.20101
-2.39966
-2.7184
-3.30349
-4.1811
-2.46735
9.73022
33.4183
55.3645
60.0226
49.1626
29.8114
9.12713
-2.69334
-3.69021
-3.47877
-3.47251
-3.4161
-3.47053
-3.44728
-3.49497
-3.46117
-3.45714
-3.36883
-3.29588
-3.16138
-2.969
-2.70405
-2.3524
-1.96699
-1.70197
-1.56938
-1.64282
-0.925127
-1.04073
-1.2085
-1.42943
-1.6403
-1.85297
-2.00396
-2.21871
-2.35564
-2.64024
-3.27241
-3.43555
5.51653
32.0768
66.8129
84.4805
79.2193
60.4977
36.2243
11.6303
-2.56512
-3.65555
-3.42155
-3.41044
-3.22462
-3.41617
-3.48115
-3.56479
-3.50195
-3.44861
-3.34492
-3.31405
-3.23724
-3.08944
-2.85656
-2.53405
-2.15199
-1.86517
-1.70619
-1.81699
-1.17539
-1.2416
-1.44506
-1.61998
-1.83413
-2.00019
-2.11432
-2.27544
-2.25308
-2.36743
-2.97446
-0.212281
20.4123
60.9343
96.9308
106.962
95.2712
72.344
43.189
14.2365
-2.32549
-3.53602
-3.32943
-3.30369
-3.06303
-3.14187
-3.23251
-3.45159
-3.57195
-3.63746
-3.55102
-3.46824
-3.3359
-3.18504
-3.03451
-2.74023
-2.38361
-2.08079
-1.89545
-1.95465
-1.05083
-1.24522
-1.34584
-1.55605
-1.72951
-1.90307
-1.96654
-2.15168
-2.07527
-2.11132
-2.27868
6.36615
40.1766
87.8454
115.287
118.141
106.877
84.3212
50.1219
16.2741
-1.97224
-3.1441
-3.0864
-3.11201
-2.84908
-2.86533
-2.76927
-2.80864
-2.85413
-2.99916
-3.19632
-3.45492
-3.51827
-3.42345
-3.21882
-2.91894
-2.6195
-2.32644
-2.23808
-2.35627
-1.19352
-1.28868
-1.44183
-1.55991
-1.72956
-1.85161
-1.92062
-2.14048
-1.82855
-1.57754
-0.517597
14.6327
59.81
105.89
122.112
121.192
111.829
92.9016
57.7146
19.6323
-1.24609
-2.66682
-2.6007
-2.81931
-2.65022
-2.67882
-2.64776
-2.70202
-2.69547
-2.68403
-2.62098
-2.57594
-2.66443
-2.95872
-3.30454
-3.07268
-2.75003
-2.33547
-2.11999
-1.94702
-0.622593
-0.721212
-0.765221
-0.861827
-0.881426
-0.822101
-0.845252
-0.949064
-0.638291
-0.812586
0.821441
21.8556
73.5568
114.468
123.901
120.242
111.229
96.4371
66.5806
27.7767
1.5978
-1.8121
-1.84413
-2.44083
-2.39104
-2.55679
-2.51183
-2.5773
-2.56692
-2.59098
-2.60782
-2.60024
-2.57812
-2.50319
-2.35482
-2.87011
-2.98115
-2.84446
-2.89474
-3.17258
0.0331537
-0.033758
-0.133468
-0.15557
-0.286165
-0.238019
-0.415379
-0.614359
-0.371742
-0.700755
1.14982
25.9865
80.4488
118.3
123.648
118.275
110.064
98.5919
76.0451
40.7896
8.17789
-0.532957
-1.06618
-1.89422
-2.23585
-2.54934
-2.54761
-2.57518
-2.4855
-2.49164
-2.4902
-2.42577
-2.42286
-2.50715
-2.50228
-2.16078
-2.18566
-2.0274
-1.95991
-2.00425
-0.0219356
0.129723
0.108813
0.127489
-0.0342586
0.0526872
-0.0783635
-0.417956
-0.168121
-0.698282
0.83757
26.4795
80.8125
118.625
124.029
117.969
110.766
101.322
85.2411
58.4539
20.4578
2.65341
-0.384029
-1.6773
-2.14703
-2.45427
-2.4926
-2.5321
-2.52032
-2.50218
-2.52276
-2.44143
-2.4767
-2.46035
-2.57905
-2.527
-2.26196
-2.17061
-1.95388
-1.96437
-0.0533397
0.0659928
0.00572135
0.0260196
-0.164405
-0.173242
-0.365072
-0.502802
-0.390002
-0.814556
0.192285
23.3447
75.2955
115.242
123.809
118.954
111.779
105.362
94.4624
75.6514
42.0619
11.8548
0.650713
-1.24195
-2.2151
-2.41006
-2.48805
-2.46602
-2.44195
-2.37322
-2.37827
-2.30669
-2.32277
-2.37327
-2.41421
-2.20115
-2.17556
-2.05351
-1.89269
-1.84375
-0.077006
-0.0195878
-0.0532389
-0.0823045
-0.191264
-0.338695
-0.389828
-0.775662
-0.582005
-1.22984
-0.736995
17.1086
64.2516
107.515
121.359
119.484
113.48
109.714
102.92
91.7258
66.3284
29.5578
5.2128
-1.68976
-2.54793
-2.53907
-2.52448
-2.45348
-2.45072
-2.37793
-2.43942
-2.3864
-2.46072
-2.45407
-2.48053
-2.42134
-2.42071
-2.3405
-2.20496
-2.18493
-0.222217
-0.180295
-0.224084
-0.259353
-0.380842
-0.526192
-0.641065
-0.911184
-0.891148
-1.23367
-1.67595
9.93112
47.5334
92.6272
115.855
118.473
115.048
111.916
109.782
103.364
84.7338
52.4098
19.2488
0.140727
-3.25734
-2.83979
-2.56069
-2.378
-2.32449
-2.22796
-2.20158
-2.05367
-2.07795
-1.97073
-1.9939
-1.84804
-1.92296
-1.79
-1.77497
-1.73109
-0.284451
-0.258321
-0.298569
-0.346552
-0.448928
-0.608828
-0.710985
-0.981497
-1.02285
-1.21852
-2.02719
3.35659
28.2982
69.2399
102.412
114.253
115.09
113.694
113.684
109.936
94.7827
69.1565
40.1476
12.3364
-0.498043
-2.76857
-2.57051
-2.31886
-2.34651
-2.24998
-2.39828
-2.36508
-2.52822
-2.39163
-2.54527
-2.29057
-2.45369
-2.21382
-2.23663
-2.1344
-0.427971
-0.407574
-0.445962
-0.490675
-0.592315
-0.731424
-0.85465
-1.05858
-1.14995
-1.25659
-1.68791
0.130018
12.4648
41.4088
75.9303
100.269
109.22
112.505
113.693
112.128
99.724
78.1802
54.3871
29.4423
9.87229
0.371096
-1.92946
-2.07471
-2.10214
-2.19558
-2.40298
-2.30539
-2.43563
-2.25805
-2.42357
-2.20953
-2.35811
-2.16507
-2.27676
-2.29134
-0.480459
-0.469756
-0.499803
-0.534522
-0.623086
-0.749443
-0.878351
-1.04914
-1.1734
-1.27548
-1.51113
-1.35256
2.85158
17.9944
42.4845
70.0588
89.4732
99.5694
105.064
106.04
97.5193
79.7863
59.5195
39.3586
20.1975
5.93482
-0.274964
-1.54188
-2.02606
-2.19393
-2.34618
-2.18683
-2.34466
-2.19856
-2.29816
-2.07334
-2.20131
-1.93671
-1.9481
-1.85567
-0.617032
-0.592886
-0.626216
-0.641526
-0.715784
-0.82206
-0.9522
-1.08734
-1.19783
-1.28708
-1.32617
-1.33251
-0.00508218
5.03061
17.282
34.7835
53.2147
67.6437
77.0685
81.2512
77.5918
67.3979
52.6093
35.1733
19.3319
7.22985
0.714093
-1.09111
-1.97548
-2.00397
-2.21251
-2.03197
-2.22421
-1.98345
-2.31162
-1.84754
-2.0998
-1.75393
-1.73998
-1.56965
-0.610573
-0.579092
-0.607469
-0.608639
-0.657427
-0.744506
-0.899945
-0.988965
-1.09181
-1.15557
-1.18631
-1.05358
-0.70937
1.20334
4.55518
12.5116
21.671
30.1977
38.4946
44.1374
44.0975
39.2444
30.017
19.1115
10.1541
3.48336
0.0862658
-1.25221
-1.84334
-1.93521
-2.17844
-2.00589
-2.2292
-1.97601
-2.16964
-1.96424
-2.02024
-1.74801
-1.68437
-1.45061
-0.70475
-0.689877
-0.690524
-0.69838
-0.710059
-0.763017
-0.856592
-0.979549
-1.08758
-1.13785
-1.16725
-1.07812
-0.821953
-0.342392
0.984587
2.65907
6.6956
10.0517
13.3919
15.8693
16.6221
14.6982
10.6295
5.96311
2.52232
0.287266
-0.683062
-1.53537
-1.87598
-1.90631
-2.16805
-1.94533
-2.21521
-1.88054
-2.16052
-1.80181
-2.00713
-1.62492
-1.65572
-1.34186
-0.644824
-0.609506
-0.615105
-0.584147
-0.59776
-0.603079
-0.695957
-0.819348
-0.918238
-0.984879
-1.03798
-1.00578
-0.910469
-0.626802
-0.38244
0.260627
0.982835
1.59833
2.45616
2.96212
2.57832
1.57006
0.257708
-0.0593708
-0.400365
-0.743046
-1.13728
-1.87157
-2.10638
-2.01083
-2.26656
-1.95378
-2.24883
-1.84168
-2.15227
-1.6968
-2.00334
-1.50834
-1.60032
-1.20718
-0.73893
-0.724268
-0.71822
-0.673502
-0.67593
-0.63195
-0.710726
-0.819745
-0.944593
-0.989979
-1.08925
-1.09539
-1.1063
-1.00276
-0.907735
-0.762028
-0.648293
-0.413499
-0.329151
-0.973657
-1.5146
-1.71681
-1.7777
-1.54571
-1.45463
-1.12186
-1.27379
-2.03303
-2.27033
-2.10721
-2.37428
-1.96971
-2.31107
-1.82168
-2.17302
-1.62748
-1.95501
-1.36916
-1.46457
-0.977952
-0.619974
-0.591494
-0.562095
-0.492796
-0.47462
-0.416478
-0.443476
-0.491241
-0.697434
-0.787635
-0.926594
-0.996537
-1.09832
-1.10558
-1.16277
-1.14002
-1.15638
-1.41229
-1.63028
-2.02759
-1.95972
-1.96884
-1.76545
-1.54502
-1.50607
-1.21394
-1.42207
-2.08438
-2.39322
-2.19147
-2.46471
-1.99019
-2.37779
-1.76396
-2.18976
-1.47225
-1.86739
-1.03878
-1.17336
-0.410616
-0.728822
-0.732784
-0.686364
-0.604086
-0.534303
-0.441986
-0.44819
-0.417067
-0.600903
-0.759175
-0.960747
-1.05605
-1.23178
-1.32559
-1.50625
-1.65351
-1.85576
-2.07586
-2.10744
-2.3134
-2.00845
-2.0087
-1.78636
-1.55864
-1.52947
-1.24232
-1.49759
-2.15714
-2.47953
-2.29174
-2.61664
-2.05137
-2.47083
-1.82927
-2.25852
-1.51471
-1.82723
-0.918718
-0.703465
0.375298
-0.586595
-0.510759
-0.523684
-0.312002
-0.237317
-0.08241
-0.15052
-0.0649173
-0.296164
-0.405492
-0.733835
-0.907762
-1.15249
-1.32981
-1.62518
-1.84772
-2.04194
-2.29052
-2.27778
-2.41503
-1.95811
-1.9093
-1.59745
-1.34952
-1.32745
-1.10228
-1.46784
-2.14303
-2.59944
-2.29549
-2.6705
-2.0702
-2.5986
-1.72992
-2.32964
-1.3003
-1.7183
-0.314016
0.0715321
2.4141
-0.626166
-0.768053
-0.621927
-0.500006
-0.33869
-0.0821445
-0.138104
-0.0264141
-0.25025
-0.367226
-0.651886
-0.822045
-1.1486
-1.43003
-1.82235
-2.04306
-2.25032
-2.50713
-2.47898
-2.52173
-1.99876
-1.89779
-1.51157
-1.21809
-1.19972
-0.973308
-1.43854
-2.09723
-2.669
-2.38472
-2.82722
-2.10786
-2.62501
-1.81835
-2.45762
-1.4725
-1.92136
-0.0787996
0.6654
4.89052
-0.81889
-0.453899
-0.505794
-0.0216479
0.0314819
0.326477
0.234449
0.320595
0.053873
-0.0889675
-0.42236
-0.652813
-1.0358
-1.3483
-1.76892
-2.04978
-2.29965
-2.58717
-2.54993
-2.51325
-1.94897
-1.70849
-1.20166
-0.844237
-0.872385
-0.717796
-1.35789
-2.02958
-2.82033
-2.43731
-2.97856
-2.10977
-2.66924
-1.694
-2.32976
-1.15619
-1.40374
1.04564
3.49712
10.6399
-0.348938
-0.907795
-0.757749
-0.589729
-0.118812
0.146366
0.212805
0.278184
0.0527261
-0.10181
-0.430803
-0.655631
-1.03873
-1.36753
-1.81959
-2.14787
-2.43525
-2.74907
-2.74485
-2.58874
-2.02125
-1.66554
-1.13029
-0.607686
-0.628532
-0.248091
-1.27588
-1.76291
-2.92403
-2.51546
-3.16735
-2.18473
-2.70594
-1.66725
-2.30731
-1.17999
-1.49741
1.87401
6.10415
17.8316
-3.12171
-0.265466
-0.363574
0.227062
0.376486
0.576991
0.474645
0.538495
0.264675
0.101633
-0.231787
-0.463698
-0.875829
-1.27488
-1.82225
-2.22111
-2.53737
-2.85522
-2.73587
-2.37421
-1.79041
-1.30236
-0.711211
-0.199945
-0.300124
-0.128352
-1.2682
-1.82993
-3.09113
-2.7059
-3.27787
-2.15771
-2.5301
-1.38346
-1.78951
-0.155162
0.823836
6.9347
16.8914
35.9465
-0.393209
-0.383692
-0.39817
-0.420471
-0.444162
-0.504051
-0.530591
-0.5713
-0.598808
-0.649182
-0.682843
-0.725035
-0.755505
-0.811527
-0.81615
-0.878955
-0.833592
-1.00348
-0.858665
-1.19827
-0.875327
-1.01796
-1.0502
-1.09857
-0.848244
-0.694442
-0.373066
-0.16639
0.0266472
0.104566
0.0456909
-0.00522417
-0.259615
-0.380331
-0.553164
-0.608623
-0.676117
-0.672883
-0.81459
-0.756917
-0.398148
-0.393205
-0.409184
-0.433124
-0.451656
-0.500922
-0.536512
-0.556356
-0.616003
-0.669931
-0.673481
-0.691176
-0.71421
-0.727783
-0.734405
-0.858461
-0.828615
-0.963006
-0.827914
-1.15849
-0.936076
-1.08953
-1.14951
-1.18117
-0.977873
-0.827659
-0.531344
-0.288724
-0.083642
0.0117118
-0.075474
-0.138073
-0.296505
-0.448102
-0.568173
-0.609312
-0.642781
-0.670112
-0.767249
-0.733253
-0.397412
-0.391728
-0.410046
-0.430246
-0.454697
-0.469487
-0.49391
-0.529376
-0.582285
-0.596554
-0.636759
-0.673239
-0.689537
-0.757294
-0.872147
-0.941309
-0.922242
-1.03466
-0.94006
-1.28376
-1.09546
-1.30737
-1.38779
-1.47654
-1.23885
-1.09084
-0.818177
-0.608752
-0.367394
-0.183038
-0.221697
-0.266019
-0.513205
-0.508814
-0.728322
-0.698462
-0.758651
-0.745316
-0.81915
-0.773607
-0.39735
-0.39287
-0.422718
-0.451616
-0.45492
-0.471957
-0.512685
-0.535588
-0.628221
-0.672129
-0.704197
-0.72076
-0.841873
-0.984109
-1.0129
-1.05552
-1.05647
-1.15298
-1.10491
-1.45638
-1.33904
-1.59262
-1.71909
-1.77143
-1.56274
-1.41947
-1.18726
-0.992973
-0.784381
-0.60756
-0.505062
-0.457883
-0.578868
-0.658424
-0.72483
-0.795713
-0.769571
-0.804269
-0.807046
-0.785689
-0.394121
-0.405705
-0.419982
-0.45084
-0.436804
-0.476525
-0.472479
-0.570404
-0.664699
-0.701829
-0.78637
-1.01185
-1.12426
-1.19714
-1.23453
-1.27338
-1.27291
-1.34886
-1.36538
-1.6996
-1.63577
-1.94011
-2.07687
-2.10966
-1.92642
-1.81262
-1.60841
-1.4382
-1.25088
-1.07664
-0.984446
-0.822178
-0.749378
-0.726745
-0.854356
-0.840865
-0.894619
-0.865941
-0.883226
-0.858625
-0.425975
-0.403112
-0.463959
-0.400111
-0.453934
-0.439204
-0.555484
-0.581706
-0.778185
-1.02061
-1.24285
-1.31315
-1.40633
-1.45088
-1.48411
-1.4998
-1.5121
-1.56385
-1.64691
-1.94687
-1.9422
-2.26553
-2.42118
-2.43072
-2.30429
-2.2129
-2.04738
-1.8945
-1.70929
-1.52712
-1.40761
-1.18746
-1.18512
-0.811268
-0.834828
-0.864633
-0.810207
-0.89013
-0.852315
-0.867691
-0.435323
-0.464592
-0.402343
-0.458624
-0.425744
-0.539091
-0.504045
-0.814499
-1.2241
-1.34743
-1.48224
-1.60874
-1.70146
-1.74736
-1.76161
-1.73769
-1.72797
-1.74299
-1.89303
-2.16943
-2.23335
-2.58229
-2.69544
-2.71161
-2.62498
-2.55767
-2.42689
-2.29872
-2.12764
-1.94517
-1.75458
-1.55279
-1.35255
-1.27297
-0.94052
-0.929468
-0.921073
-0.956107
-0.948785
-0.958935
-0.340393
-0.360462
-0.376892
-0.383517
-0.467817
-0.47412
-0.871042
-1.26986
-1.40691
-1.62279
-1.80411
-1.94048
-2.03405
-2.04847
-2.01786
-1.92666
-1.90755
-1.92973
-2.14226
-2.38107
-2.48427
-2.80058
-2.93537
-2.94945
-2.90505
-2.85086
-2.75246
-2.64659
-2.49909
-2.31958
-2.11594
-1.8612
-1.60344
-1.39293
-1.11812
-0.91136
-0.851892
-0.89477
-0.908868
-0.931081
-0.4342
-0.453883
-0.478005
-0.558661
-0.60761
-0.933687
-1.20515
-1.41915
-1.68496
-1.9099
-2.12214
-2.28169
-2.38809
-2.36924
-2.29969
-2.12226
-2.03406
-1.9348
-2.2083
-2.49738
-2.82681
-3.0545
-3.15451
-3.15374
-3.12374
-3.07484
-2.99666
-2.91603
-2.79279
-2.64358
-2.43963
-2.19274
-1.89384
-1.58785
-1.36642
-1.03611
-0.941391
-1.05338
-1.02488
-1.0619
-0.369232
-0.417593
-0.489236
-0.615183
-0.796703
-1.1101
-1.33075
-1.65122
-1.90425
-2.18001
-2.42502
-2.62386
-2.74047
-2.6967
-2.52162
-2.16112
-1.94402
-2.05581
-2.54958
-2.94836
-3.33219
-3.38839
-3.40141
-3.35677
-3.3188
-3.26323
-3.19506
-3.12851
-3.02628
-2.89943
-2.71663
-2.47953
-2.17503
-1.83792
-1.49028
-1.26705
-0.932111
-1.01445
-0.99876
-1.04123
-0.459153
-0.505004
-0.585247
-0.738118
-1.00822
-1.31469
-1.55536
-1.83919
-2.12145
-2.41978
-2.72536
-2.98386
-3.18076
-3.13497
-2.93074
-2.53225
-2.13103
-1.29503
-1.15102
-2.4398
-3.76449
-3.70663
-3.64076
-3.53919
-3.47212
-3.40814
-3.33836
-3.28597
-3.19861
-3.1001
-2.94367
-2.74428
-2.46589
-2.12589
-1.7641
-1.45766
-1.21766
-1.0649
-1.20227
-1.1847
-0.493237
-0.548405
-0.644393
-0.846655
-1.17023
-1.43145
-1.69737
-1.98937
-2.2811
-2.61337
-2.98146
-3.36004
-3.69949
-3.7116
-2.92236
0.355966
5.97978
9.63024
7.84787
1.46532
-3.27082
-3.76646
-3.71556
-3.65363
-3.56335
-3.50221
-3.43552
-3.40102
-3.32832
-3.24575
-3.10924
-2.92738
-2.6899
-2.37745
-1.99142
-1.63122
-1.37537
-1.15686
-1.20868
-1.18899
-0.62234
-0.675935
-0.772941
-1.04869
-1.29703
-1.54802
-1.80358
-2.08908
-2.37641
-2.73079
-3.21058
-3.78969
-4.26992
-2.70592
5.16394
18.6113
28.5588
28.3097
18.8131
5.1787
-3.09075
-3.88101
-3.8122
-3.78299
-3.64963
-3.59245
-3.50922
-3.48236
-3.41796
-3.3586
-3.24741
-3.10314
-2.9116
-2.6348
-2.28224
-1.89303
-1.58569
-1.40585
-1.30891
-1.39633
-0.715072
-0.772099
-0.921649
-1.20041
-1.43922
-1.65551
-1.88273
-2.14258
-2.40169
-2.75569
-3.33224
-4.13405
-2.84661
8.09957
29.4995
49.1188
52.2941
41.962
24.8394
6.62855
-3.50236
-4.26057
-3.9711
-3.89376
-3.75604
-3.68445
-3.60371
-3.58073
-3.51001
-3.4441
-3.31567
-3.21632
-3.04715
-2.81595
-2.48763
-2.10621
-1.73129
-1.48894
-1.39159
-1.4413
-0.909887
-0.944085
-1.17817
-1.38589
-1.60423
-1.77325
-1.94708
-2.15187
-2.32859
-2.59747
-3.36994
-3.2498
6.89598
33.9819
64.5068
76.4662
68.1806
50.9827
29.7099
8.32546
-3.49443
-4.39096
-4.06074
-3.94021
-3.75695
-3.70712
-3.61908
-3.62078
-3.56416
-3.53639
-3.44641
-3.35909
-3.21417
-3.00971
-2.73395
-2.37525
-1.97607
-1.71416
-1.58014
-1.6557
-0.959241
-1.10282
-1.27214
-1.48071
-1.68177
-1.82352
-1.95737
-2.13526
-2.20559
-2.40814
-3.18516
1.95126
27.5045
68.0541
95.4156
96.3862
80.5978
59.3326
33.5381
9.06678
-3.86478
-4.58831
-4.23785
-3.99393
-3.67496
-3.7002
-3.67164
-3.69037
-3.60776
-3.53308
-3.43078
-3.36894
-3.289
-3.12997
-2.88997
-2.55365
-2.16809
-1.87551
-1.71513
-1.8246
-1.24443
-1.31241
-1.51821
-1.67147
-1.87116
-1.95305
-2.0291
-2.15628
-1.98962
-2.11293
-1.91297
13.424
54.3644
97.1811
114.884
108.694
90.0751
63.9162
32.9378
6.96545
-4.80352
-4.83072
-4.36328
-4.00122
-3.58188
-3.51657
-3.53361
-3.64497
-3.69612
-3.71361
-3.64215
-3.55177
-3.40934
-3.23253
-3.07393
-2.77461
-2.41144
-2.0949
-1.91335
-1.96965
-1.13707
-1.32294
-1.41427
-1.58487
-1.73199
-1.75932
-1.80943
-1.97647
-1.61619
-1.94742
1.06842
27.8205
79.7468
114.827
119.695
111.648
93.8477
63.9429
28.7523
3.42018
-5.68259
-4.93534
-4.36239
-3.93161
-3.42828
-3.26789
-3.09627
-3.04478
-3.03057
-3.07434
-3.24274
-3.47877
-3.58919
-3.4828
-3.2666
-2.95737
-2.64431
-2.34182
-2.25562
-2.37093
-1.26138
-1.34314
-1.48176
-1.55298
-1.70227
-1.68166
-1.7098
-1.86572
-1.23925
-1.38222
5.33873
42.9028
97.3395
121.003
118.118
109.557
92.0257
61.2529
26.0693
1.65401
-5.81188
-4.77104
-4.14989
-3.75135
-3.30312
-3.13177
-3.03112
-2.97886
-2.90886
-2.80614
-2.72944
-2.64596
-2.68671
-2.93194
-3.34053
-3.14164
-2.76543
-2.35287
-2.12481
-1.95962
-0.670247
-0.755632
-0.776771
-0.832459
-0.836417
-0.645818
-0.611577
-0.641558
0.0182976
-0.505429
9.05456
54.7273
107.217
122.876
116.414
105.155
85.8737
56.4007
26.3087
3.85583
-4.80699
-4.15183
-3.67632
-3.40723
-3.17931
-2.99814
-2.89292
-2.84129
-2.8004
-2.71463
-2.72163
-2.67692
-2.6528
-2.5506
-2.34333
-2.90028
-2.98864
-2.85607
-2.91099
-3.19628
0.079025
0.00517177
-0.104032
-0.0795242
-0.220987
0.0120428
-0.22931
-0.242501
0.382132
-0.335161
11.4363
61.6021
111.578
123.331
115.346
100.812
79.2497
51.9071
27.18
7.90617
-2.46567
-3.43371
-2.93918
-3.01907
-2.95134
-2.96033
-2.91407
-2.84546
-2.75686
-2.57547
-2.62294
-2.49752
-2.47217
-2.54718
-2.53622
-2.13221
-2.23592
-2.02583
-1.96518
-2.00612
0.0258959
0.177015
0.146342
0.214033
0.0158698
0.283126
0.0678026
-0.192049
0.584229
-0.283837
12.2649
63.2251
112.645
123.416
115.528
99.872
77.7678
52.1451
30.032
13.4347
2.63691
-1.65947
-2.26043
-2.54514
-2.84834
-2.90616
-2.84752
-2.77882
-2.73231
-2.62979
-2.62264
-2.51803
-2.51865
-2.51059
-2.60478
-2.52945
-2.30858
-2.17768
-1.96376
-1.98293
0.000428718
0.117986
0.0423212
0.105365
-0.134918
-0.0311725
-0.23388
-0.299244
0.238889
-0.492202
10.3962
59.7005
110.267
122.918
116.554
102.341
82.6223
58.8658
38.0499
22.2785
11.3173
3.34998
-0.295108
-2.18246
-2.8223
-2.86275
-2.83905
-2.70338
-2.62712
-2.49565
-2.46842
-2.36401
-2.36432
-2.41025
-2.44178
-2.22601
-2.19538
-2.08697
-1.89922
-1.86787
-0.0330566
0.0238691
-0.0209023
-0.0206271
-0.140974
-0.224772
-0.182784
-0.695334
0.0669461
-1.22287
6.70234
49.9242
102.692
121.209
117.452
106.661
92.0107
73.3316
54.7476
38.8242
26.4829
13.3581
2.67587
-2.23458
-3.0053
-3.00733
-2.89183
-2.69847
-2.63319
-2.49903
-2.53088
-2.4432
-2.54898
-2.44539
-2.51087
-2.42324
-2.44357
-2.35409
-2.23158
-2.21659
-0.207828
-0.164767
-0.215458
-0.225702
-0.343975
-0.432555
-0.47903
-0.838728
-0.352218
-1.67493
2.42442
35.2062
86.9788
116.849
118.59
110.977
101.521
89.2678
78.3713
64.8424
49.4309
32.0529
13.3806
-0.235513
-3.75196
-3.38276
-2.97607
-2.64523
-2.49203
-2.33998
-2.26848
-2.09389
-2.09065
-1.98415
-1.97963
-1.86495
-1.91195
-1.80247
-1.80261
-1.75395
-0.307019
-0.273866
-0.315773
-0.347605
-0.436649
-0.578927
-0.609363
-0.929403
-0.772633
-1.04144
-1.12224
19.1198
64.1487
104.837
117.639
114.473
109.087
102.759
97.9051
90.4767
75.2947
55.8801
33.6319
10.8318
-1.92033
-3.86297
-3.12991
-2.61953
-2.50769
-2.37663
-2.48215
-2.43159
-2.58678
-2.41822
-2.5638
-2.32186
-2.44699
-2.24486
-2.2704
-2.15758
-0.481834
-0.444246
-0.484124
-0.518454
-0.605784
-0.750058
-0.821769
-1.0787
-1.16167
-1.30077
-2.20421
6.33255
37.4743
79.9656
108.385
114.843
114.137
111.33
109.969
107.095
94.4468
74.178
52.8799
29.2178
8.45543
-1.18379
-2.71715
-2.41331
-2.24737
-2.28224
-2.48176
-2.36145
-2.47152
-2.26359
-2.4303
-2.19893
-2.34658
-2.17964
-2.30503
-2.32501
-0.524336
-0.50778
-0.544922
-0.58002
-0.659858
-0.812422
-0.892292
-1.10835
-1.28129
-1.35826
-1.94271
0.326311
15.1126
46.8801
82.5399
102.802
110.108
112.856
113.365
111.922
102.138
83.7714
63.7465
43.6783
22.8472
7.24777
-0.106886
-1.70055
-2.09698
-2.28008
-2.42348
-2.24687
-2.37918
-2.22757
-2.30017
-2.07689
-2.19148
-1.92973
-1.97466
-1.87405
-0.641527
-0.615766
-0.677997
-0.700228
-0.772336
-0.890075
-0.990542
-1.17346
-1.33451
-1.47808
-1.68658
-1.72044
2.33022
18.1858
43.7207
70.2775
88.1267
97.6326
102.107
102.593
95.9307
82.4284
65.9594
47.7042
30.2038
13.9485
3.06011
-0.718471
-2.00681
-2.01476
-2.26053
-2.05912
-2.24528
-1.98596
-2.29099
-1.86708
-2.10499
-1.73719
-1.75882
-1.57918
-0.634638
-0.599741
-0.654843
-0.678572
-0.72721
-0.814897
-0.921267
-1.0746
-1.21912
-1.34153
-1.459
-1.4658
-0.854867
2.85139
15.1056
32.2339
48.9234
62.5646
70.3661
73.6199
71.9704
64.4161
53.6189
38.3135
24.0849
11.5144
2.89837
-0.596217
-1.7803
-1.90072
-2.18849
-2.01594
-2.24226
-1.98167
-2.19009
-1.93707
-2.06733
-1.73355
-1.70411
-1.4589
-0.726433
-0.709096
-0.72925
-0.76813
-0.783987
-0.839354
-0.983037
-1.06876
-1.20115
-1.2854
-1.37413
-1.31697
-1.08569
-0.467275
1.8276
9.67334
19.1982
27.3135
33.3157
37.754
38.3956
34.3232
28.127
19.4265
11.2086
4.63857
0.524811
-1.13956
-1.78977
-1.87779
-2.16511
-1.94985
-2.22148
-1.88573
-2.16731
-1.80752
-2.02506
-1.63657
-1.66842
-1.35546
-0.657873
-0.631701
-0.644979
-0.646546
-0.657156
-0.662866
-0.754397
-0.868399
-1.00175
-1.09803
-1.18486
-1.18356
-1.08118
-0.806131
-0.530542
1.04801
3.47873
7.58413
10.2931
12.0115
12.7271
11.2362
7.42677
3.37245
1.03715
-0.2677
-1.07849
-1.84446
-2.07065
-2.01214
-2.2523
-1.96236
-2.25516
-1.85178
-2.16431
-1.71207
-2.02001
-1.52055
-1.61299
-1.22316
-0.74608
-0.741444
-0.742192
-0.724529
-0.733285
-0.683235
-0.757218
-0.852279
-0.989519
-1.07366
-1.19413
-1.21886
-1.24283
-1.13205
-0.995912
-0.856019
-0.517032
0.199593
0.088824
-0.325317
-0.572468
-0.930491
-1.31951
-1.56933
-1.74369
-1.38232
-1.30775
-2.0936
-2.28618
-2.12268
-2.38333
-1.99065
-2.31959
-1.83847
-2.18604
-1.65125
-1.97598
-1.38886
-1.4795
-0.998159
-0.62509
-0.612171
-0.589826
-0.534017
-0.535266
-0.451545
-0.487028
-0.540809
-0.739958
-0.843912
-1.0064
-1.09083
-1.20531
-1.22046
-1.27185
-1.22793
-1.25405
-1.5837
-2.1251
-2.71266
-2.74672
-2.68612
-2.36919
-2.01177
-1.8023
-1.41007
-1.5093
-2.12726
-2.38775
-2.21686
-2.47175
-2.00207
-2.38738
-1.78182
-2.20805
-1.48572
-1.93832
-1.02707
-1.18924
-0.429142
-0.743112
-0.760676
-0.711993
-0.645181
-0.57446
-0.487139
-0.475366
-0.492585
-0.703355
-0.823124
-1.02282
-1.13538
-1.32823
-1.42862
-1.61159
-1.76791
-2.01631
-2.32149
-2.4007
-2.64231
-2.39992
-2.40775
-2.17633
-1.94491
-1.82037
-1.45077
-1.60607
-2.23252
-2.52892
-2.31593
-2.63197
-2.07109
-2.5027
-1.85084
-2.30304
-1.54227
-1.86678
-0.969707
-0.73665
0.348323
-0.606164
-0.539964
-0.55046
-0.346957
-0.254495
-0.130234
-0.150623
-0.121293
-0.378554
-0.499889
-0.802118
-0.976914
-1.2468
-1.41461
-1.68873
-1.95089
-2.21307
-2.51733
-2.5627
-2.74798
-2.38525
-2.34912
-2.005
-1.71278
-1.57986
-1.30094
-1.56451
-2.20143
-2.62308
-2.33035
-2.68987
-2.08201
-2.58473
-1.74751
-2.33291
-1.33708
-1.7556
-0.389504
0.042852
2.3754
-0.657323
-0.796416
-0.64587
-0.525216
-0.343233
-0.113796
-0.123696
-0.0598099
-0.307332
-0.448262
-0.744044
-0.934014
-1.30673
-1.51134
-1.86891
-2.17673
-2.39966
-2.67761
-2.66408
-2.75169
-2.29026
-2.23142
-1.85551
-1.51551
-1.40564
-1.12433
-1.48318
-2.12171
-2.68787
-2.40962
-2.85393
-2.13316
-2.6647
-1.84831
-2.4999
-1.50081
-1.99554
-0.134829
0.585758
4.83272
-0.833632
-0.472136
-0.516443
-0.0379071
0.0456608
0.306209
0.264923
0.304332
0.014138
-0.150881
-0.496387
-0.724505
-1.08956
-1.36591
-1.7848
-2.12255
-2.40018
-2.72284
-2.71477
-2.7066
-2.2473
-2.09397
-1.58505
-1.11812
-1.06006
-0.860722
-1.42333
-2.06465
-2.82185
-2.45558
-3.00361
-2.14064
-2.699
-1.72767
-2.36293
-1.20817
-1.46805
0.944187
3.40494
10.5516
-0.357782
-0.915311
-0.762946
-0.596858
-0.110105
0.145886
0.240554
0.270016
0.017167
-0.158033
-0.495044
-0.712368
-1.071
-1.36183
-1.81148
-2.18164
-2.49235
-2.83746
-2.86223
-2.7483
-2.30119
-2.04284
-1.48053
-0.864965
-0.793622
-0.352611
-1.32168
-1.77071
-2.91624
-2.52377
-3.19317
-2.21562
-2.74475
-1.70488
-2.35189
-1.22478
-1.58118
1.77794
5.96716
17.722
-3.12897
-0.273715
-0.368449
0.223083
0.391259
0.595404
0.509425
0.517065
0.199704
0.012406
-0.326718
-0.543297
-0.910648
-1.25101
-1.78946
-2.23949
-2.5812
-2.93096
-2.84454
-2.53103
-2.06481
-1.70621
-1.06493
-0.444319
-0.454933
-0.225778
-1.30844
-1.82925
-3.0773
-2.71364
-3.30519
-2.19179
-2.56741
-1.4186
-1.82786
-0.195258
0.750178
6.8318
16.777
35.837
-0.390973
-0.382634
-0.394681
-0.418197
-0.437576
-0.494522
-0.521679
-0.566135
-0.592248
-0.644629
-0.677794
-0.72247
-0.755279
-0.812156
-0.824566
-0.881037
-0.86594
-0.981754
-0.848528
-1.17937
-0.867431
-1.00543
-1.0561
-1.07954
-0.833683
-0.644017
-0.294989
-0.0575697
0.147125
0.243012
0.158948
0.109453
-0.176306
-0.328181
-0.519058
-0.590454
-0.667169
-0.658791
-0.812176
-0.754702
-0.394922
-0.390668
-0.405468
-0.431117
-0.442053
-0.496833
-0.52536
-0.556287
-0.60243
-0.678575
-0.660708
-0.686318
-0.707886
-0.718003
-0.740083
-0.858735
-0.833146
-0.952758
-0.82064
-1.14679
-0.935078
-1.08793
-1.1435
-1.2175
-0.97548
-0.812191
-0.497544
-0.235394
-0.00145794
0.0973072
0.0203406
-0.0902581
-0.231456
-0.423321
-0.563404
-0.594995
-0.633013
-0.650308
-0.765041
-0.73334
-0.393847
-0.389799
-0.405007
-0.427789
-0.45019
-0.462736
-0.464987
-0.525604
-0.57096
-0.582701
-0.626589
-0.664346
-0.683819
-0.765927
-0.88459
-0.944109
-0.928273
-1.03051
-0.939674
-1.28646
-1.12718
-1.33869
-1.44754
-1.51024
-1.26601
-1.10369
-0.818986
-0.587229
-0.337511
-0.135333
-0.170412
-0.22046
-0.452619
-0.516036
-0.691941
-0.690662
-0.74534
-0.722115
-0.816995
-0.774755
-0.387259
-0.384295
-0.414542
-0.447058
-0.432412
-0.468173
-0.49832
-0.527642
-0.619331
-0.666978
-0.689641
-0.713743
-0.855321
-0.99227
-1.01459
-1.07102
-1.06827
-1.16035
-1.13563
-1.47513
-1.38502
-1.63133
-1.79072
-1.81658
-1.60471
-1.47081
-1.22837
-1.03021
-0.802304
-0.630883
-0.489439
-0.451811
-0.554498
-0.659061
-0.725197
-0.845006
-0.775453
-0.79136
-0.811759
-0.789496
-0.390149
-0.408337
-0.403622
-0.452896
-0.425632
-0.464553
-0.455049
-0.567249
-0.651491
-0.691862
-0.795277
-1.0394
-1.146
-1.20016
-1.23931
-1.27504
-1.27838
-1.35631
-1.39189
-1.74127
-1.69633
-2.01428
-2.14171
-2.15727
-1.98366
-1.86831
-1.66434
-1.48977
-1.29397
-1.10149
-1.00677
-0.842266
-0.749034
-0.7143
-0.844177
-0.789876
-0.89792
-0.848216
-0.879711
-0.854106
-0.420427
-0.40523
-0.457021
-0.389499
-0.434105
-0.423307
-0.54324
-0.560218
-0.777926
-1.02894
-1.2629
-1.32938
-1.41064
-1.45874
-1.4803
-1.49606
-1.51726
-1.57972
-1.68539
-2.00456
-2.02207
-2.3471
-2.47963
-2.48782
-2.3695
-2.27558
-2.1114
-1.95782
-1.76815
-1.57779
-1.42773
-1.21549
-1.20386
-0.825046
-0.833859
-0.868761
-0.817525
-0.884194
-0.855284
-0.867331
-0.424214
-0.453777
-0.389074
-0.445047
-0.408772
-0.526874
-0.475722
-0.849527
-1.21128
-1.36567
-1.49079
-1.62898
-1.71246
-1.74445
-1.74745
-1.70509
-1.68658
-1.71232
-1.90838
-2.23397
-2.32093
-2.6682
-2.76514
-2.77431
-2.69103
-2.62077
-2.49043
-2.3612
-2.18712
-1.99218
-1.79279
-1.58578
-1.37314
-1.28502
-0.940692
-0.91712
-0.908882
-0.938714
-0.938583
-0.952796
-0.329062
-0.351741
-0.357935
-0.364408
-0.445461
-0.443298
-0.90322
-1.22873
-1.4219
-1.61996
-1.81916
-1.95338
-2.03763
-2.03706
-1.97693
-1.86379
-1.87649
-1.92766
-2.17373
-2.48134
-2.6589
-2.94143
-3.0323
-3.03185
-2.98311
-2.92217
-2.82062
-2.71217
-2.55753
-2.37575
-2.15283
-1.89169
-1.62123
-1.41185
-1.11139
-0.911048
-0.854149
-0.888667
-0.90924
-0.930242
-0.428512
-0.448789
-0.465695
-0.545875
-0.597785
-0.955935
-1.18899
-1.44361
-1.67543
-1.91664
-2.13098
-2.29663
-2.39495
-2.34908
-2.24721
-2.00597
-1.85177
-1.74927
-2.19147
-2.65281
-3.03387
-3.19386
-3.2695
-3.25056
-3.21365
-3.1556
-3.07128
-2.98241
-2.85196
-2.69496
-2.48295
-2.22414
-1.91694
-1.60299
-1.3822
-1.03604
-0.934765
-1.05231
-1.0136
-1.05869
-0.362109
-0.414605
-0.483225
-0.611629
-0.797702
-1.0996
-1.36829
-1.63431
-1.90397
-2.18191
-2.44384
-2.65026
-2.74812
-2.65465
-2.36463
-1.86765
-1.85391
-2.12932
-2.64089
-3.14958
-3.64301
-3.61866
-3.57004
-3.4926
-3.4362
-3.36465
-3.28315
-3.20258
-3.08656
-2.95133
-2.75854
-2.51454
-2.19803
-1.85572
-1.51179
-1.28297
-0.944987
-1.01166
-1.01089
-1.04217
-0.463693
-0.510136
-0.588638
-0.744618
-1.01605
-1.30273
-1.54044
-1.82492
-2.10934
-2.42711
-2.75705
-3.04006
-3.23158
-3.15234
-2.88781
-2.18077
-0.651326
1.61897
1.48982
-1.35477
-3.81515
-3.88658
-3.82977
-3.70628
-3.6192
-3.53572
-3.44605
-3.37074
-3.26362
-3.14981
-2.9861
-2.77367
-2.49043
-2.13964
-1.78287
-1.47682
-1.21478
-1.0704
-1.19004
-1.18319
-0.508052
-0.563555
-0.65562
-0.860452
-1.16824
-1.41322
-1.671
-1.96278
-2.26704
-2.62621
-3.03343
-3.48365
-3.82082
-3.51017
-0.598021
7.40838
15.8621
18.3544
12.8283
3.0636
-3.27084
-3.87485
-3.9277
-3.84441
-3.74909
-3.67114
-3.57532
-3.5054
-3.4018
-3.30101
-3.15189
-2.97058
-2.71978
-2.3998
-2.00689
-1.64657
-1.39183
-1.15888
-1.22147
-1.1946
-0.655507
-0.708432
-0.806007
-1.07576
-1.30934
-1.54555
-1.77356
-2.05685
-2.35388
-2.73234
-3.30643
-4.02515
-3.94003
1.58407
17.1558
35.1697
41.2947
34.6505
20.6325
5.11433
-3.5794
-4.31294
-4.0785
-4.0398
-3.8773
-3.78011
-3.66232
-3.60024
-3.50054
-3.41512
-3.28051
-3.15372
-2.94413
-2.65945
-2.29996
-1.90061
-1.59162
-1.40448
-1.30511
-1.39811
-0.760384
-0.816757
-0.970642
-1.22125
-1.42599
-1.63838
-1.84197
-2.10942
-2.35534
-2.75461
-3.49188
-4.10451
2.12618
23.5409
51.4041
64.4051
58.5326
43.2119
24.5822
6.20136
-3.96312
-4.68428
-4.35328
-4.22002
-4.01868
-3.88693
-3.75179
-3.69258
-3.59694
-3.50844
-3.37903
-3.25923
-3.08254
-2.84292
-2.50632
-2.11557
-1.74172
-1.49495
-1.40024
-1.44651
-0.960579
-0.998686
-1.2158
-1.39146
-1.56541
-1.75229
-1.89919
-2.11106
-2.24544
-2.54879
-3.58948
0.00888001
22.4975
59.5149
83.7788
84.0763
69.5947
50.7897
28.588
6.95556
-4.24408
-4.94817
-4.52211
-4.35795
-4.08309
-3.93218
-3.78202
-3.73503
-3.65681
-3.60296
-3.50738
-3.40768
-3.25728
-3.04136
-2.75514
-2.38661
-1.98377
-1.72114
-1.58121
-1.66548
-0.99755
-1.13725
-1.28511
-1.4686
-1.6275
-1.79764
-1.90006
-2.10484
-2.04482
-2.50715
-2.55932
12.5988
52.9438
92.5451
106.54
97.2586
77.9327
53.4519
25.5379
3.3916
-5.75721
-5.49981
-4.98861
-4.49851
-4.08123
-3.95833
-3.84787
-3.80144
-3.69672
-3.58652
-3.49757
-3.41111
-3.33007
-3.16089
-2.90988
-2.56355
-2.16815
-1.87766
-1.7206
-1.82678
-1.25948
-1.32519
-1.51395
-1.64702
-1.80912
-1.92021
-1.94292
-2.10864
-1.70054
-2.41577
1.59454
32.2097
82.3819
113.986
117.751
103.839
78.8821
46.4707
15.3493
-2.43336
-7.21605
-5.92364
-5.31082
-4.57895
-4.00962
-3.82979
-3.77862
-3.80246
-3.80162
-3.78873
-3.72946
-3.62031
-3.47509
-3.27184
-3.10138
-2.78332
-2.40115
-2.09622
-1.91365
-1.97303
-1.13042
-1.30944
-1.40169
-1.54638
-1.68321
-1.70833
-1.68907
-1.86513
-1.29468
-2.31183
8.65125
52.9692
102.086
121.458
117.256
101.045
71.4688
34.9197
6.63407
-5.87787
-7.45547
-5.90924
-5.22926
-4.52771
-3.86425
-3.58461
-3.35665
-3.23377
-3.1742
-3.17596
-3.3048
-3.48577
-3.64282
-3.5225
-3.29969
-2.96105
-2.63536
-2.33432
-2.25349
-2.37285
-1.23822
-1.31395
-1.45483
-1.49204
-1.63523
-1.52076
-1.52853
-1.50721
-0.815551
-1.252
17.831
70.9978
112.943
121.559
112.386
91.1508
60.9996
25.6139
2.05087
-6.72077
-7.29858
-5.70431
-5.0617
-4.40386
-3.75475
-3.48809
-3.33191
-3.1894
-3.06353
-2.92323
-2.83106
-2.71006
-2.72938
-2.92863
-3.36848
-3.131
-2.7603
-2.34638
-2.12533
-1.96006
-0.650295
-0.732896
-0.746437
-0.776946
-0.780351
-0.46805
-0.437555
0.0416856
0.413483
0.904563
26.3323
83.48
117.758
120.885
107.586
80.8377
48.8863
18.3293
0.854601
-6.06513
-6.68659
-5.27223
-4.62345
-4.13239
-3.71734
-3.38037
-3.255
-3.09757
-2.96296
-2.83362
-2.79409
-2.73563
-2.71143
-2.59206
-2.37523
-2.90542
-2.99016
-2.8573
-2.92
-3.20955
0.0674219
-0.00199477
-0.12333
-0.0652445
-0.216714
0.125886
-0.0786677
0.524248
0.78426
2.29951
32.1664
91.3099
119.414
119.669
104.075
72.9627
38.2281
12.3197
-0.85214
-5.66856
-5.95832
-4.75373
-4.22868
-3.73001
-3.52027
-3.41444
-3.25492
-3.09644
-2.91147
-2.67447
-2.71191
-2.55088
-2.53318
-2.57326
-2.5498
-2.19539
-2.22649
-2.03217
-1.96212
-2.00382
0.00287884
0.156213
0.108006
0.22164
-0.0459183
0.426542
0.16884
0.591415
1.08144
2.72196
34.0137
94.4934
121.234
119.245
102.375
71.0732
33.8227
9.76561
-1.95992
-6.08301
-4.95439
-3.96207
-3.4846
-3.47778
-3.40211
-3.32451
-3.18944
-3.03134
-2.90753
-2.74525
-2.70571
-2.55247
-2.54965
-2.5755
-2.60712
-2.52896
-2.31223
-2.18209
-1.97965
-2.00647
-0.0418969
0.0868636
-0.00145386
0.114192
-0.185313
0.0556087
-0.205578
0.183643
0.795378
1.63057
30.9526
91.5295
121.546
120.133
104.783
75.7679
39.8085
12.841
0.232756
-4.53272
-3.97423
-2.35237
-2.46879
-2.92468
-3.29256
-3.26096
-3.16025
-2.96208
-2.83298
-2.6203
-2.55516
-2.41272
-2.41967
-2.40912
-2.43046
-2.22042
-2.2154
-2.09214
-1.91531
-1.8872
-0.0790772
0.0025957
-0.0504211
0.00376543
-0.149955
-0.105936
-0.0471559
-0.432526
0.624518
-0.410611
23.2419
80.7851
118.986
122.067
110.099
87.1715
55.5347
24.7439
8.36527
0.663097
-0.537518
-0.273036
-0.98609
-2.74986
-3.30701
-3.37661
-3.22
-2.96128
-2.84348
-2.62986
-2.61846
-2.49337
-2.57996
-2.42587
-2.52754
-2.4134
-2.43609
-2.37036
-2.23927
-2.24291
-0.239555
-0.176939
-0.228303
-0.194119
-0.315708
-0.341175
-0.286067
-0.746317
0.516177
-2.08162
13.2275
64.4
111.258
122.77
115.902
100.918
77.9109
52.0874
30.6908
17.1372
10.1584
7.26218
3.26096
-1.71805
-3.88595
-3.71292
-3.32375
-2.90761
-2.68949
-2.45449
-2.3434
-2.1307
-2.09027
-1.98111
-1.95921
-1.8769
-1.89537
-1.82792
-1.80662
-1.77512
-0.313762
-0.271379
-0.312629
-0.312832
-0.40327
-0.505117
-0.496889
-0.985075
-0.36097
-1.98362
4.00983
42.7095
94.6319
119.976
120.575
112.6
99.739
83.4225
67.8123
53.4799
37.736
25.9054
17.2877
5.98363
-2.5041
-4.32138
-3.54443
-2.88962
-2.68273
-2.47396
-2.54972
-2.4823
-2.59193
-2.45175
-2.55481
-2.38177
-2.45353
-2.27409
-2.27624
-2.16672
-0.478058
-0.437614
-0.479298
-0.492055
-0.583991
-0.708275
-0.786514
-1.18864
-1.08544
-1.80982
-1.44714
20.4796
65.965
106.444
120.278
119.917
114.335
107.38
100.461
91.9684
76.3874
57.4621
42.3857
25.6457
7.27963
-2.4137
-3.50325
-2.7498
-2.39458
-2.39635
-2.55733
-2.41332
-2.51433
-2.26398
-2.44641
-2.1923
-2.3585
-2.18914
-2.31675
-2.34021
-0.515034
-0.506103
-0.544756
-0.568475
-0.653539
-0.768837
-0.925756
-1.23014
-1.45369
-1.72178
-2.87873
4.30062
33.6323
74.9514
104.534
116.539
118.922
117.625
115.917
112.779
101.372
82.493
63.6955
44.484
23.169
6.27258
-0.846144
-2.02047
-2.1897
-2.41644
-2.50466
-2.31031
-2.41072
-2.2925
-2.28394
-2.0975
-2.21105
-1.95346
-1.98242
-1.88592
-0.647925
-0.61872
-0.695406
-0.714894
-0.792445
-0.919713
-1.06186
-1.3043
-1.52934
-1.78907
-2.29225
-1.61129
9.9748
37.433
70.1014
94.49
107.221
112.914
115.032
114.647
106.225
89.9382
71.8993
53.4794
34.9265
17.6073
4.59088
-0.422971
-2.01884
-2.077
-2.30509
-2.09235
-2.26611
-2.00097
-2.29164
-1.88205
-2.12392
-1.75567
-1.76881
-1.59297
-0.650624
-0.613755
-0.681051
-0.717761
-0.768764
-0.873837
-0.993423
-1.19988
-1.39173
-1.62404
-1.85007
-2.01853
0.0717148
10.5385
31.1353
54.7109
75.7413
86.9139
92.6894
95.7604
92.2079
81.8475
68.7066
53.5517
36.4427
20.2953
6.96606
0.345896
-1.67674
-1.88847
-2.19407
-2.02674
-2.25324
-1.9905
-2.20907
-1.92196
-2.09068
-1.73504
-1.7156
-1.46839
-0.749144
-0.730038
-0.764723
-0.82638
-0.848117
-0.907979
-1.04222
-1.16713
-1.34986
-1.4894
-1.68728
-1.66323
-1.53484
0.350489
6.73043
19.8205
34.9744
46.5114
53.6862
59.2815
61.9609
57.6703
48.4605
36.273
22.948
11.6475
3.5441
-0.475144
-1.65651
-1.8258
-2.14782
-1.94215
-2.22166
-1.88633
-2.17444
-1.79921
-2.05398
-1.64366
-1.6842
-1.36831
-0.685838
-0.659683
-0.687302
-0.71533
-0.721698
-0.727811
-0.808591
-0.948891
-1.11331
-1.25271
-1.38585
-1.45273
-1.34456
-1.08859
-0.489045
2.00846
8.41048
14.9802
19.4262
22.5093
24.8246
22.8492
17.9843
11.0516
4.83124
1.03886
-0.664418
-1.81535
-2.06875
-2.02423
-2.26508
-1.96768
-2.2601
-1.85217
-2.17279
-1.70811
-2.03693
-1.52686
-1.62603
-1.23289
-0.78766
-0.779448
-0.789634
-0.797592
-0.795102
-0.742502
-0.818124
-0.91427
-1.07839
-1.18595
-1.34096
-1.39532
-1.47335
-1.35204
-1.31954
-1.33956
-0.735561
0.0300985
0.793323
0.554029
0.327135
0.0949201
-0.669798
-1.50722
-2.11984
-1.82251
-1.63781
-2.2198
-2.32759
-2.14099
-2.38977
-1.99506
-2.32285
-1.84126
-2.19076
-1.65574
-1.98715
-1.41474
-1.49565
-1.01544
-0.674781
-0.644887
-0.649305
-0.594584
-0.597025
-0.501965
-0.543817
-0.611874
-0.838561
-0.928947
-1.10763
-1.21342
-1.35135
-1.40483
-1.4915
-1.49639
-1.67293
-2.2339
-2.92652
-3.80353
-4.19308
-4.12143
-3.51837
-2.77776
-2.28879
-1.69311
-1.67003
-2.19176
-2.41554
-2.2456
-2.48147
-2.00725
-2.3901
-1.78355
-2.21224
-1.49068
-1.93144
-1.0662
-1.21291
-0.441041
-0.778974
-0.796664
-0.738567
-0.692174
-0.615753
-0.539013
-0.524341
-0.554112
-0.782898
-0.906451
-1.09494
-1.22173
-1.43111
-1.55695
-1.77778
-1.99843
-2.27517
-2.70558
-2.87972
-3.2241
-3.08988
-3.03631
-2.71168
-2.42184
-2.16134
-1.71694
-1.76548
-2.32088
-2.56527
-2.32755
-2.63832
-2.06809
-2.51626
-1.86168
-2.30895
-1.55713
-1.87107
-1.0049
-0.753314
0.330163
-0.624331
-0.561057
-0.573471
-0.373579
-0.278531
-0.179568
-0.191459
-0.18392
-0.439989
-0.618093
-0.858358
-1.03019
-1.29683
-1.49209
-1.79112
-2.08164
-2.44771
-2.82951
-2.95836
-3.21143
-2.9683
-2.91475
-2.49475
-2.1169
-1.87377
-1.49824
-1.67905
-2.26805
-2.63616
-2.35164
-2.69155
-2.10788
-2.58699
-1.76187
-2.34238
-1.35806
-1.7696
-0.434246
0.0318146
2.34741
-0.667944
-0.814089
-0.659421
-0.553184
-0.360734
-0.157969
-0.165543
-0.123139
-0.373066
-0.5234
-0.817443
-1.05523
-1.34568
-1.57571
-1.92928
-2.29416
-2.57769
-2.90543
-2.92342
-3.03257
-2.6533
-2.55791
-2.15691
-1.81408
-1.62554
-1.27565
-1.59587
-2.2018
-2.71717
-2.40605
-2.87383
-2.14149
-2.68761
-1.86666
-2.51473
-1.53166
-2.02679
-0.166218
0.530768
4.78772
-0.82935
-0.478247
-0.5241
-0.0610528
0.0259163
0.264398
0.224583
0.239154
-0.0509637
-0.223145
-0.565328
-0.797209
-1.14714
-1.42242
-1.82542
-2.2006
-2.51214
-2.87574
-2.89901
-2.9003
-2.50885
-2.35061
-1.87179
-1.41328
-1.26124
-0.991979
-1.49907
-2.1235
-2.84666
-2.47361
-3.02133
-2.16324
-2.71533
-1.74565
-2.36046
-1.24073
-1.50856
0.88893
3.34622
10.4886
-0.350699
-0.914054
-0.767021
-0.616297
-0.1342
0.105596
0.195431
0.206797
-0.0480396
-0.228683
-0.568668
-0.790901
-1.14275
-1.41866
-1.83846
-2.22985
-2.55996
-2.93756
-2.98924
-2.89883
-2.51605
-2.2924
-1.76317
-1.13953
-0.968509
-0.45583
-1.37663
-1.78988
-2.92588
-2.52864
-3.20464
-2.23395
-2.76941
-1.73012
-2.40198
-1.27005
-1.64691
1.7014
5.88599
17.6464
-3.10511
-0.257389
-0.35998
0.211671
0.364495
0.541897
0.449547
0.44331
0.133482
-0.0547805
-0.398017
-0.621959
-0.987245
-1.30686
-1.79748
-2.26667
-2.62969
-3.01397
-2.95597
-2.67124
-2.25629
-1.94518
-1.34098
-0.709085
-0.619536
-0.322964
-1.35595
-1.85231
-3.08354
-2.71576
-3.31703
-2.21111
-2.58832
-1.43885
-1.85521
-0.238876
0.688727
6.7612
16.7039
35.7797
-0.392724
-0.383999
-0.39599
-0.416754
-0.438809
-0.482613
-0.527073
-0.557407
-0.599047
-0.637411
-0.680473
-0.720228
-0.758677
-0.813803
-0.827458
-0.880412
-0.866683
-0.970462
-0.829383
-1.16229
-0.851288
-0.995378
-1.04901
-1.07443
-0.808259
-0.596017
-0.221656
0.047302
0.270439
0.379572
0.281863
0.225294
-0.0852735
-0.268853
-0.475988
-0.564892
-0.651341
-0.645415
-0.809509
-0.754172
-0.395336
-0.391288
-0.406815
-0.430145
-0.442456
-0.490105
-0.531628
-0.548768
-0.633018
-0.646052
-0.66159
-0.678839
-0.707861
-0.708842
-0.752484
-0.854929
-0.829438
-0.942957
-0.803299
-1.13756
-0.933365
-1.07307
-1.16536
-1.23686
-0.98232
-0.791521
-0.452638
-0.17887
0.0892238
0.187009
0.12749
-0.0366373
-0.155941
-0.384226
-0.539258
-0.564703
-0.6137
-0.629207
-0.760232
-0.734025
-0.395557
-0.389802
-0.406431
-0.423345
-0.454679
-0.435022
-0.468935
-0.515115
-0.571599
-0.574766
-0.622326
-0.656306
-0.680052
-0.781709
-0.891034
-0.942095
-0.926293
-1.02678
-0.932747
-1.29142
-1.13751
-1.36547
-1.51091
-1.53822
-1.27824
-1.10869
-0.807051
-0.559268
-0.300125
-0.0847113
-0.106301
-0.173892
-0.384334
-0.513594
-0.663346
-0.67718
-0.72242
-0.703638
-0.810091
-0.777223
-0.3771
-0.376991
-0.40973
-0.435847
-0.426348
-0.464139
-0.494008
-0.523371
-0.622563
-0.661247
-0.683196
-0.710367
-0.875492
-0.98711
-1.01271
-1.07232
-1.07618
-1.17654
-1.14554
-1.50483
-1.42193
-1.68527
-1.82331
-1.84818
-1.64204
-1.50193
-1.24855
-1.0459
-0.798458
-0.628991
-0.46873
-0.435508
-0.526277
-0.642795
-0.73676
-0.787815
-0.766914
-0.76576
-0.808891
-0.790232
-0.410137
-0.418995
-0.407377
-0.444319
-0.420715
-0.449089
-0.447944
-0.564764
-0.650561
-0.684902
-0.813663
-1.05742
-1.143
-1.20631
-1.2381
-1.27337
-1.28147
-1.37398
-1.43034
-1.79274
-1.75096
-2.0551
-2.17829
-2.19899
-2.03153
-1.91383
-1.70432
-1.52438
-1.3221
-1.12663
-1.01508
-0.857351
-0.737952
-0.716185
-0.835045
-0.847715
-0.870477
-0.840411
-0.87117
-0.848602
-0.391206
-0.384568
-0.437053
-0.380803
-0.417238
-0.412732
-0.535833
-0.550772
-0.790908
-1.0672
-1.27911
-1.34002
-1.41989
-1.4579
-1.48043
-1.49754
-1.5339
-1.60462
-1.72857
-2.07332
-2.07927
-2.39606
-2.51448
-2.52932
-2.41737
-2.32414
-2.15629
-2.00228
-1.80745
-1.61466
-1.45632
-1.23807
-1.21877
-0.821744
-0.837632
-0.862763
-0.863301
-0.864258
-0.855098
-0.863364
-0.397845
-0.428299
-0.374018
-0.427564
-0.394901
-0.514305
-0.454895
-0.872102
-1.24377
-1.37696
-1.51125
-1.63461
-1.71564
-1.73418
-1.73052
-1.66938
-1.65669
-1.72115
-1.98537
-2.32907
-2.38887
-2.70998
-2.8103
-2.81965
-2.74348
-2.67036
-2.53752
-2.40553
-2.22883
-2.03515
-1.82329
-1.60308
-1.38858
-1.29811
-0.939636
-0.916403
-0.863524
-0.923011
-0.929083
-0.945148
-0.295628
-0.324224
-0.330967
-0.344403
-0.423867
-0.426033
-0.925927
-1.24572
-1.43284
-1.63724
-1.82813
-1.95803
-2.0354
-2.01775
-1.94727
-1.84178
-1.89972
-1.94535
-2.22724
-2.56197
-2.76812
-3.02844
-3.09393
-3.08782
-3.03941
-2.97522
-2.8694
-2.75677
-2.59949
-2.41501
-2.18751
-1.91862
-1.64226
-1.43007
-1.12513
-0.911664
-0.854007
-0.883555
-0.90835
-0.928653
-0.400035
-0.430093
-0.449452
-0.530873
-0.588618
-0.976277
-1.16589
-1.44752
-1.68307
-1.92365
-2.14008
-2.29798
-2.38994
-2.31024
-2.18564
-1.859
-1.67496
-1.69417
-2.30851
-2.85038
-3.17292
-3.28189
-3.3449
-3.31799
-3.27873
-3.21416
-3.12375
-3.02824
-2.89233
-2.73297
-2.51528
-2.25121
-1.93481
-1.62116
-1.3924
-1.0448
-0.928812
-1.05103
-1.0023
-1.05458
-0.332242
-0.401189
-0.477327
-0.611393
-0.802721
-1.10536
-1.36276
-1.63393
-1.90474
-2.18452
-2.45221
-2.65021
-2.74668
-2.57226
-2.24209
-1.84387
-2.04566
-2.07989
-2.32334
-3.06672
-3.77249
-3.75831
-3.70075
-3.58728
-3.52017
-3.43647
-3.34517
-3.25342
-3.12926
-2.98861
-2.78947
-2.5418
-2.21798
-1.8741
-1.52391
-1.29321
-0.946174
-1.00885
-1.0217
-1.04276
-0.440991
-0.503778
-0.592025
-0.753826
-1.02585
-1.30982
-1.52931
-1.81781
-2.10509
-2.42879
-2.77415
-3.06646
-3.24251
-3.11884
-2.69314
-0.980983
2.38923
5.86609
4.70722
-0.106651
-3.62809
-3.91901
-3.9211
-3.81374
-3.72027
-3.62672
-3.52154
-3.4291
-3.30922
-3.18782
-3.01674
-2.80295
-2.51156
-2.15981
-1.79555
-1.48623
-1.22497
-1.07657
-1.18
-1.18151
-0.485782
-0.559321
-0.664925
-0.877844
-1.17496
-1.40937
-1.65717
-1.94646
-2.25361
-2.61733
-3.0739
-3.51824
-3.87618
-2.54458
3.49622
15.4688
24.6917
24.3703
15.7261
3.79226
-3.30039
-4.00172
-4.00885
-3.97557
-3.88884
-3.79229
-3.67502
-3.57687
-3.45472
-3.34116
-3.18263
-3.00712
-2.74284
-2.41986
-2.01805
-1.65929
-1.40575
-1.16806
-1.22874
-1.19853
-0.632829
-0.703815
-0.815038
-1.0873
-1.2927
-1.52915
-1.74935
-2.0354
-2.33349
-2.73525
-3.39751
-4.15457
-2.56147
8.20369
30.2244
47.0578
47.7304
36.7904
20.8245
4.71478
-3.97846
-4.65721
-4.35895
-4.28665
-4.08081
-3.95453
-3.79881
-3.69113
-3.56372
-3.46009
-3.32985
-3.18558
-2.96999
-2.67953
-2.31526
-1.91701
-1.60364
-1.42227
-1.30322
-1.40235
-0.730227
-0.802668
-0.962517
-1.20477
-1.38958
-1.60833
-1.80752
-2.07733
-2.31769
-2.74783
-3.72107
-3.09818
9.57193
39.7952
65.6647
71.0464
60.1828
43.4671
24.6069
5.80792
-4.37985
-5.05672
-4.63026
-4.53284
-4.27423
-4.08812
-3.91438
-3.80331
-3.66972
-3.55666
-3.42383
-3.29434
-3.11112
-2.86486
-2.522
-2.12729
-1.75287
-1.50668
-1.40754
-1.4545
-0.925664
-0.97847
-1.19587
-1.37022
-1.54342
-1.7204
-1.86727
-2.08515
-2.1971
-2.61966
-3.58794
5.87812
39.0804
77.1445
92.473
86.3833
69.803
48.9152
24.9557
4.0039
-5.27629
-5.5246
-5.0721
-4.75934
-4.39013
-4.15622
-3.94845
-3.85278
-3.73554
-3.6519
-3.55672
-3.44793
-3.29122
-3.0664
-2.7727
-2.39492
-1.99302
-1.73081
-1.59051
-1.67265
-0.959379
-1.10548
-1.25854
-1.43719
-1.60171
-1.75622
-1.8659
-2.08527
-1.95051
-2.79792
-0.613831
25.7457
73.1503
105.499
110.087
96.1802
72.4091
41.9782
13.3104
-3.23805
-7.50313
-6.36504
-5.65302
-4.9425
-4.45807
-4.21569
-4.0261
-3.91203
-3.7724
-3.64293
-3.54725
-3.44988
-3.36415
-3.18753
-2.92843
-2.57343
-2.17787
-1.88495
-1.7238
-1.8339
-1.21939
-1.29152
-1.48263
-1.60672
-1.78121
-1.86292
-1.92482
-2.05488
-1.66812
-2.74964
7.57506
50.9694
98.637
120.894
117.807
97.1363
61.8311
23.3463
-0.577331
-8.39557
-8.45147
-6.78232
-5.99502
-5.08287
-4.38862
-4.11853
-3.9945
-3.94249
-3.89264
-3.85483
-3.79723
-3.67806
-3.52949
-3.3082
-3.12608
-2.80321
-2.41349
-2.10742
-1.92125
-1.98155
-1.09039
-1.26273
-1.36206
-1.48658
-1.61857
-1.61288
-1.69514
-1.66865
-1.3958
-1.97052
19.4964
72.9913
112.69
123.504
116.035
87.0434
44.0519
8.69067
-6.44798
-8.90282
-8.0972
-6.72537
-5.92779
-5.08167
-4.26819
-3.87528
-3.5824
-3.39109
-3.29925
-3.27245
-3.36252
-3.48841
-3.68176
-3.55397
-3.3286
-2.9731
-2.64143
-2.34032
-2.2613
-2.381
-1.19923
-1.25885
-1.41189
-1.41368
-1.5733
-1.35668
-1.58497
-1.08854
-1.30719
0.583811
33.3231
90.4478
118.848
120.868
107.092
67.5571
25.9209
0.847561
-8.14522
-8.84498
-7.85469
-6.64443
-5.84157
-5.0449
-4.19893
-3.80464
-3.57133
-3.35471
-3.19697
-3.02892
-2.91823
-2.77034
-2.77456
-2.94035
-3.39656
-3.14891
-2.76486
-2.35494
-2.13386
-1.97012
-0.606297
-0.687101
-0.705836
-0.70955
-0.752354
-0.276794
-0.580901
0.346767
-0.382991
4.11265
45.8305
102.743
121.323
119.34
96.9556
49.1151
11.0234
-4.4758
-9.48032
-8.86256
-7.62289
-6.44476
-5.56861
-4.84318
-4.24739
-3.71911
-3.52153
-3.26074
-3.08361
-2.93017
-2.87588
-2.78076
-2.77344
-2.6272
-2.42034
-2.90479
-2.99911
-2.86679
-2.93908
-3.22721
0.0214358
-0.0275978
-0.161031
-0.0531376
-0.261446
0.294678
-0.248645
0.948406
-0.0442263
6.54972
54.5856
109.831
122.322
117.336
88.2844
36.6389
1.97532
-8.2065
-10.8195
-9.58961
-7.33777
-6.08709
-5.15261
-4.51598
-4.04313
-3.76589
-3.51254
-3.26246
-3.0192
-2.7622
-2.79539
-2.57576
-2.63894
-2.60265
-2.58086
-2.19131
-2.22946
-2.0335
-1.96402
-2.00297
-0.00543526
0.148763
0.0827891
0.256835
-0.104153
0.637733
-0.00990282
0.997081
0.296893
6.84775
56.6271
112.373
124.664
116.612
83.5144
30.7922
-2.1311
-9.93413
-11.5244
-9.84346
-6.96152
-5.65468
-4.80939
-4.32145
-3.95689
-3.69022
-3.45636
-3.21351
-3.0227
-2.83922
-2.78822
-2.59471
-2.6532
-2.59848
-2.63718
-2.5485
-2.31657
-2.19575
-1.99381
-2.02753
-0.0221889
0.0975919
-0.00519454
0.180864
-0.167613
0.198697
-0.269779
0.554037
0.290603
5.00506
51.8591
109.217
125.643
117.007
86.9649
35.7604
-0.306472
-9.56867
-10.775
-9.03988
-6.39651
-4.75308
-4.04029
-3.81029
-3.74675
-3.60749
-3.41251
-3.16313
-2.93671
-2.71901
-2.63457
-2.45499
-2.49383
-2.45121
-2.43412
-2.25501
-2.22068
-2.11233
-1.93176
-1.91017
-0.0472019
0.0390761
-0.033387
0.0786779
-0.146074
0.0904931
-0.185288
0.200599
0.232813
1.65828
41.8356
100.301
123.194
119.144
97.9032
54.0886
12.3952
-5.66312
-9.33992
-8.60489
-6.23359
-4.18378
-3.27362
-3.43058
-3.70039
-3.6827
-3.47369
-3.17768
-2.96867
-2.73837
-2.70077
-2.54477
-2.63672
-2.45686
-2.55192
-2.42552
-2.47633
-2.38284
-2.26091
-2.26778
-0.204863
-0.137487
-0.204712
-0.128454
-0.298889
-0.231689
-0.271923
-0.443656
0.52002
-1.57871
27.8935
86.0064
119.428
122.445
110.469
79.5311
40.4683
10.0058
-2.12995
-6.01715
-6.0387
-4.11229
-2.20822
-3.00507
-3.73985
-3.91254
-3.58859
-3.16528
-2.85367
-2.57587
-2.42142
-2.16558
-2.14555
-2.00051
-1.98303
-1.87896
-1.92058
-1.837
-1.82215
-1.79072
-0.288364
-0.238773
-0.289668
-0.268136
-0.391281
-0.461305
-0.463408
-0.956221
-0.198696
-2.78132
13.2739
64.1332
109.114
124.237
119.931
103.948
77.6477
49.117
25.8294
12.2682
5.09971
2.27313
1.57699
-0.132416
-3.40796
-4.47917
-3.84626
-3.1525
-2.8745
-2.58051
-2.61195
-2.53016
-2.58461
-2.48736
-2.53615
-2.39392
-2.45336
-2.28971
-2.28623
-2.17597
-0.476217
-0.419504
-0.466348
-0.468828
-0.582851
-0.72283
-0.778954
-1.32032
-1.02408
-2.73828
1.90183
37.1262
86.9099
117.091
124.119
119.258
107.972
92.2319
75.3318
60.0916
43.6473
29.4661
21.8733
15.2659
4.74529
-2.88592
-3.89961
-2.99752
-2.56276
-2.45708
-2.60558
-2.45081
-2.55523
-2.2603
-2.45281
-2.20883
-2.36631
-2.20012
-2.33043
-2.35843
-0.515808
-0.498574
-0.538952
-0.560357
-0.668262
-0.822885
-0.974582
-1.36751
-1.59153
-2.20815
-3.02862
13.2989
53.2816
95.5488
116.493
123.053
121.438
116.796
111.289
103.761
89.3808
70.8057
55.2226
40.8011
22.6676
5.89713
-1.49178
-2.32162
-2.28175
-2.49187
-2.55534
-2.34869
-2.43009
-2.26596
-2.32354
-2.11072
-2.22373
-1.95527
-1.99016
-1.89464
-0.657207
-0.619455
-0.700768
-0.715113
-0.812777
-0.941197
-1.13323
-1.43763
-1.74518
-2.1479
-3.14241
-0.203701
20.3397
56.7935
90.9175
109.126
117.452
119.786
120.279
118.65
108.788
91.5517
73.7401
55.4088
37.0256
18.344
4.82957
-0.373808
-2.06117
-2.12136
-2.33683
-2.11238
-2.28214
-2.00735
-2.30014
-1.87312
-2.1322
-1.75282
-1.77442
-1.59802
-0.662846
-0.625505
-0.695443
-0.736297
-0.797604
-0.924113
-1.07628
-1.33164
-1.57767
-1.9597
-2.39828
-2.91329
1.46911
19.648
47.9906
74.4406
91.5599
100.5
105.503
108.181
103.72
91.8222
77.2794
60.1939
42.5877
25.7181
10.1355
1.28823
-1.56797
-1.86487
-2.19005
-2.02928
-2.26215
-1.99104
-2.26646
-1.88
-2.11366
-1.73226
-1.72457
-1.47424
-0.766895
-0.749295
-0.791163
-0.861477
-0.885526
-0.959396
-1.09415
-1.27397
-1.50462
-1.71506
-2.08575
-2.23914
-2.46852
0.832629
12.5406
30.6205
48.632
61.0842
68.9935
74.1223
75.734
72.1
63.4744
48.913
32.8428
18.5689
7.24837
0.571881
-1.52814
-1.79268
-2.13087
-1.93732
-2.22289
-1.88773
-2.18829
-1.79097
-2.07585
-1.65056
-1.69494
-1.37807
-0.714323
-0.687486
-0.725318
-0.766947
-0.775991
-0.793097
-0.924237
-1.04453
-1.22903
-1.42284
-1.62326
-1.83351
-1.86917
-2.01297
-0.912035
3.6799
13.0344
21.6399
27.6271
31.4893
33.7754
32.5441
27.5125
18.8732
10.3601
3.88855
0.268339
-1.69143
-2.07955
-2.04024
-2.26848
-1.97371
-2.26564
-1.85796
-2.1853
-1.71399
-2.05685
-1.54174
-1.63904
-1.24492
-0.811839
-0.808508
-0.825563
-0.851236
-0.847918
-0.801332
-0.884048
-1.01111
-1.15848
-1.30101
-1.50375
-1.60953
-1.80105
-1.76473
-1.94966
-2.33239
-1.38888
0.275061
1.97139
2.79612
3.45897
2.68375
0.173427
-1.48809
-2.34564
-2.27226
-2.02634
-2.44044
-2.41015
-2.17937
-2.40057
-2.01117
-2.33252
-1.85263
-2.20258
-1.6725
-2.00751
-1.43902
-1.51214
-1.03182
-0.684757
-0.663664
-0.679396
-0.635194
-0.647807
-0.554671
-0.600915
-0.703014
-0.866592
-1.00622
-1.21288
-1.3571
-1.53924
-1.68131
-1.82396
-1.97074
-2.36401
-3.12413
-3.73681
-4.52261
-5.14009
-5.36245
-4.68192
-3.64701
-2.87176
-1.99125
-1.82227
-2.26223
-2.4514
-2.27938
-2.49194
-2.02772
-2.39868
-1.79361
-2.22424
-1.50526
-1.95792
-1.0891
-1.23489
-0.457099
-0.788198
-0.8213
-0.758633
-0.730351
-0.653952
-0.589633
-0.569358
-0.60783
-0.809557
-0.949672
-1.16752
-1.31841
-1.55559
-1.72116
-1.99258
-2.29411
-2.57387
-3.08156
-3.41713
-3.87306
-3.82609
-3.77626
-3.36588
-2.94463
-2.43214
-1.99766
-1.93818
-2.42609
-2.62064
-2.35976
-2.64183
-2.09497
-2.53496
-1.87289
-2.33021
-1.58047
-1.88725
-1.05149
-0.775412
0.307173
-0.637029
-0.583848
-0.600272
-0.403848
-0.309795
-0.226531
-0.231126
-0.235869
-0.479561
-0.648323
-0.914575
-1.09366
-1.37447
-1.59188
-1.91388
-2.2355
-2.68314
-3.15231
-3.34642
-3.63043
-3.49008
-3.46049
-2.98579
-2.49274
-2.13912
-1.67084
-1.79539
-2.33068
-2.69083
-2.40202
-2.73046
-2.12338
-2.59767
-1.77647
-2.35846
-1.38609
-1.79385
-0.485705
0.0067258
2.31221
-0.69147
-0.842102
-0.685686
-0.587931
-0.389117
-0.199171
-0.203097
-0.169708
-0.417168
-0.570771
-0.867965
-1.09272
-1.4021
-1.65304
-2.01217
-2.38175
-2.73489
-3.12036
-3.19443
-3.32965
-3.01434
-2.91585
-2.46664
-2.06974
-1.82298
-1.40975
-1.68656
-2.27064
-2.75363
-2.43358
-2.89578
-2.16323
-2.71207
-1.89134
-2.54286
-1.5616
-2.07179
-0.204989
0.469771
4.73966
-0.844398
-0.500185
-0.547509
-0.0935733
-0.00138811
0.226972
0.192108
0.195951
-0.0920955
-0.270654
-0.612083
-0.845688
-1.20226
-1.49065
-1.89418
-2.27935
-2.62229
-3.01714
-3.06917
-3.07982
-2.71222
-2.5588
-2.07706
-1.61739
-1.4324
-1.10139
-1.56966
-2.17811
-2.88161
-2.49921
-3.0438
-2.18159
-2.73303
-1.76066
-2.38214
-1.28021
-1.56052
0.82538
3.27888
10.4254
-0.363717
-0.932054
-0.788719
-0.64765
-0.16372
0.0712347
0.163617
0.167656
-0.0887795
-0.275844
-0.61958
-0.8484
-1.20215
-1.48522
-1.89729
-2.28871
-2.63354
-3.03788
-3.11602
-3.04475
-2.69598
-2.47262
-1.94299
-1.32975
-1.10928
-0.537696
-1.42576
-1.81512
-2.9547
-2.55295
-3.22619
-2.25304
-2.79018
-1.75018
-2.43528
-1.30923
-1.70711
1.63103
5.80238
17.5757
-3.11414
-0.273899
-0.382196
0.178284
0.333666
0.507676
0.428205
0.418511
0.107874
-0.0894866
-0.439116
-0.67198
-1.04279
-1.37226
-1.8484
-2.30078
-2.68081
-3.09455
-3.06207
-2.79706
-2.40982
-2.10101
-1.48143
-0.881004
-0.755946
-0.406262
-1.40408
-1.88527
-3.11668
-2.73807
-3.33615
-2.22613
-2.60286
-1.45573
-1.8837
-0.278065
0.630603
6.6906
16.6364
35.7256
-0.394093
-0.384556
-0.395739
-0.414024
-0.435877
-0.470966
-0.523123
-0.550174
-0.594776
-0.633674
-0.67799
-0.718848
-0.76018
-0.813882
-0.832406
-0.869264
-0.882431
-0.955406
-0.82085
-1.15276
-0.844891
-0.992593
-1.05728
-1.0715
-0.789456
-0.55519
-0.162369
0.137597
0.370837
0.502848
0.381804
0.340022
-0.0137079
-0.207457
-0.434318
-0.534689
-0.632809
-0.633238
-0.807055
-0.754163
-0.396863
-0.391991
-0.407554
-0.427265
-0.438671
-0.479886
-0.526941
-0.544849
-0.627243
-0.64359
-0.655343
-0.676281
-0.706014
-0.704508
-0.765226
-0.851373
-0.834047
-0.933181
-0.795504
-1.133
-0.926396
-1.08012
-1.15998
-1.24173
-0.972355
-0.770049
-0.411401
-0.127422
0.163633
0.272524
0.215231
0.0493387
-0.112101
-0.345257
-0.499957
-0.539856
-0.594884
-0.614086
-0.756708
-0.735543
-0.39301
-0.38642
-0.404587
-0.419115
-0.453895
-0.411443
-0.456297
-0.507457
-0.560414
-0.565271
-0.615616
-0.651893
-0.680369
-0.796993
-0.897513
-0.939582
-0.930147
-1.02255
-0.933388
-1.29837
-1.16092
-1.37508
-1.56101
-1.55465
-1.28919
-1.10342
-0.79088
-0.527373
-0.265129
-0.0333976
-0.0519111
-0.121382
-0.342391
-0.488572
-0.646821
-0.652101
-0.698714
-0.690397
-0.800949
-0.779557
-0.375028
-0.375906
-0.409418
-0.423551
-0.423209
-0.456282
-0.485312
-0.516082
-0.6146
-0.654482
-0.670908
-0.707438
-0.889636
-0.986968
-1.02452
-1.07617
-1.08658
-1.1837
-1.16361
-1.52273
-1.445
-1.70464
-1.84211
-1.87515
-1.66734
-1.52397
-1.26124
-1.05548
-0.797143
-0.625022
-0.458573
-0.420836
-0.504422
-0.633662
-0.727146
-0.770905
-0.759
-0.752323
-0.806212
-0.791547
-0.416379
-0.41075
-0.413813
-0.431569
-0.412335
-0.4336
-0.435148
-0.557963
-0.64012
-0.676316
-0.823142
-1.06848
-1.14906
-1.20722
-1.23912
-1.27217
-1.28816
-1.39352
-1.46247
-1.82638
-1.78204
-2.07594
-2.20512
-2.22675
-2.06428
-1.94189
-1.72911
-1.54348
-1.33853
-1.13917
-1.02061
-0.863746
-0.733707
-0.706864
-0.818603
-0.838322
-0.846225
-0.847794
-0.854665
-0.844508
-0.371716
-0.370015
-0.415638
-0.370939
-0.400039
-0.400074
-0.523917
-0.536509
-0.789306
-1.08188
-1.2761
-1.33928
-1.41823
-1.45505
-1.477
-1.50051
-1.54459
-1.62259
-1.7539
-2.09245
-2.0988
-2.41738
-2.53688
-2.55874
-2.45187
-2.35761
-2.18806
-2.03262
-1.83347
-1.64114
-1.47437
-1.25448
-1.22863
-0.834471
-0.837989
-0.852145
-0.858066
-0.848865
-0.855547
-0.85823
-0.378589
-0.407779
-0.357343
-0.40848
-0.379768
-0.498204
-0.438422
-0.897711
-1.26972
-1.37607
-1.51225
-1.63528
-1.71172
-1.72144
-1.70982
-1.64024
-1.63935
-1.75417
-2.02227
-2.35779
-2.4086
-2.72809
-2.83244
-2.84705
-2.77603
-2.7021
-2.56859
-2.43437
-2.25575
-2.06061
-1.84486
-1.62055
-1.40029
-1.30546
-0.934287
-0.919164
-0.853302
-0.924274
-0.915601
-0.938535
-0.269337
-0.301034
-0.302587
-0.323804
-0.401646
-0.405095
-0.936115
-1.23318
-1.43347
-1.6343
-1.82673
-1.95397
-2.02504
-1.99477
-1.91401
-1.83165
-1.88516
-1.91128
-2.15447
-2.53028
-2.78262
-3.03975
-3.12139
-3.12085
-3.07595
-3.00979
-2.90233
-2.78752
-2.62668
-2.44102
-2.20965
-1.93926
-1.65523
-1.44314
-1.12882
-0.910919
-0.862494
-0.882385
-0.910683
-0.927855
-0.371862
-0.407884
-0.429383
-0.515785
-0.583209
-0.985071
-1.17136
-1.44586
-1.67669
-1.91844
-2.13462
-2.2915
-2.3705
-2.27358
-2.09944
-1.72072
-1.55593
-1.75458
-2.40256
-2.93585
-3.22934
-3.30221
-3.38856
-3.35601
-3.31868
-3.25106
-3.15822
-3.05887
-2.91996
-2.7573
-2.53611
-2.27028
-1.94879
-1.63352
-1.40028
-1.05041
-0.920379
-1.04996
-0.989569
-1.04962
-0.300957
-0.379252
-0.463925
-0.606812
-0.802425
-1.08944
-1.35525
-1.61908
-1.89523
-2.17464
-2.44692
-2.63807
-2.71944
-2.46883
-2.1304
-1.86745
-1.9444
-1.59698
-1.75195
-2.79948
-3.79354
-3.8318
-3.77532
-3.64454
-3.57197
-3.48225
-3.38567
-3.28755
-3.1584
-3.01395
-2.81062
-2.5621
-2.23206
-1.88632
-1.53555
-1.30095
-0.957526
-1.00792
-1.03288
-1.04433
-0.410951
-0.482519
-0.581884
-0.754781
-1.03278
-1.30246
-1.51588
-1.80183
-2.08787
-2.41695
-2.76622
-3.07432
-3.21231
-3.10432
-2.20751
0.807047
5.66792
9.10117
6.86161
0.863923
-3.49583
-3.83996
-4.0016
-3.86468
-3.7845
-3.68406
-3.5708
-3.46768
-3.34063
-3.2132
-3.03744
-2.8244
-2.52833
-2.17221
-1.80069
-1.4963
-1.22553
-1.07767
-1.17041
-1.17865
-0.453669
-0.536024
-0.648335
-0.876892
-1.17327
-1.39283
-1.63587
-1.9224
-2.22973
-2.59458
-3.07139
-3.51506
-3.75019
-1.0057
7.92145
22.7054
30.6807
27.8372
17.0724
3.99042
-3.43109
-4.20512
-4.06536
-4.07768
-3.97917
-3.87501
-3.73971
-3.62402
-3.49127
-3.36841
-3.20716
-3.02586
-2.7593
-2.43166
-2.02855
-1.66728
-1.41599
-1.17328
-1.23867
-1.20492
-0.601363
-0.677757
-0.794314
-1.07041
-1.28591
-1.5098
-1.72344
-2.00368
-2.29461
-2.7137
-3.41027
-4.12548
-0.373183
14.8761
40.4712
54.1362
50.841
37.6474
20.7655
4.43585
-4.29624
-4.90808
-4.52536
-4.48339
-4.24051
-4.08288
-3.88983
-3.75033
-3.60565
-3.49005
-3.35595
-3.20625
-2.98562
-2.69079
-2.31435
-1.92234
-1.60602
-1.42694
-1.29859
-1.40335
-0.695961
-0.772746
-0.931821
-1.18737
-1.38309
-1.58653
-1.77573
-2.04251
-2.2689
-2.73616
-3.7941
-1.52178
17.3844
51.7488
73.8772
74.0179
60.9261
43.627
24.1928
5.15743
-4.82159
-5.35741
-4.92063
-4.77319
-4.462
-4.24523
-4.03301
-3.87267
-3.71613
-3.58916
-3.45639
-3.3173
-3.12973
-2.87778
-2.5322
-2.13178
-1.75766
-1.51216
-1.41042
-1.45865
-0.891431
-0.944781
-1.16493
-1.34682
-1.53152
-1.69441
-1.83786
-2.05251
-2.13418
-2.70723
-3.1185
11.9713
51.7871
87.5457
96.3884
87.1008
69.0489
45.6627
20.1438
0.633446
-6.32459
-6.0353
-5.48734
-5.03549
-4.63294
-4.34105
-4.0942
-3.93708
-3.78985
-3.68566
-3.59229
-3.47452
-3.31362
-3.08242
-2.78149
-2.40456
-1.99663
-1.73669
-1.59156
-1.67489
-0.922539
-1.06339
-1.22568
-1.40853
-1.58388
-1.72465
-1.83866
-2.05853
-1.86691
-3.04455
2.2259
37.0207
85.7103
111.634
110.82
93.8324
64.7717
29.9487
2.96927
-7.51403
-8.51412
-6.92017
-6.07277
-5.21931
-4.71733
-4.41551
-4.18242
-4.00399
-3.82998
-3.68617
-3.58652
-3.47498
-3.38528
-3.20111
-2.93591
-2.57201
-2.17906
-1.88593
-1.72718
-1.83613
-1.18002
-1.25173
-1.44978
-1.57179
-1.76669
-1.81738
-1.92502
-1.99683
-1.73316
-2.68051
13.8279
64.6192
108.406
123.494
116.378
88.485
44.2833
6.25287
-8.76429
-10.3007
-8.93426
-7.26785
-6.41301
-5.39341
-4.63966
-4.31912
-4.14907
-4.0453
-3.96205
-3.89618
-3.84481
-3.71753
-3.56601
-3.3297
-3.13799
-2.79632
-2.41371
-2.10875
-1.92583
-1.98514
-1.05058
-1.21655
-1.32703
-1.44044
-1.61936
-1.54273
-1.75558
-1.49449
-1.71494
-0.749014
29.2938
86.3133
119.156
124.826
112.098
68.6847
18.1434
-6.34754
-10.8651
-9.7726
-8.69833
-7.26242
-6.38785
-5.42098
-4.51906
-4.06185
-3.72754
-3.49419
-3.38189
-3.33143
-3.40104
-3.48878
-3.7045
-3.57098
-3.33714
-2.97512
-2.64038
-2.33851
-2.2649
-2.38347
-1.16151
-1.20896
-1.37658
-1.35411
-1.57459
-1.25315
-1.69287
-0.876504
-1.84283
3.13517
45.3903
102.117
122.779
121.565
95.6452
40.2859
-0.0597253
-10.6861
-10.9405
-9.77441
-8.58687
-7.23033
-6.33149
-5.40484
-4.453
-3.99759
-3.72213
-3.46563
-3.2774
-3.09976
-2.97825
-2.81562
-2.80403
-2.94975
-3.39978
-3.15431
-2.76478
-2.35451
-2.13624
-1.97343
-0.553122
-0.635698
-0.662898
-0.649046
-0.73632
-0.136645
-0.698838
0.617998
-0.95659
7.99438
58.6583
111.918
123.576
119.434
74.5421
15.1828
-10.2099
-12.8965
-11.9806
-9.88552
-8.53772
-7.10884
-6.12633
-5.255
-4.51893
-3.93007
-3.67853
-3.37688
-3.17276
-2.99396
-2.93821
-2.81571
-2.81399
-2.64538
-2.44881
-2.91083
-3.00391
-2.87183
-2.94834
-3.23731
0.02739
-0.0149254
-0.159101
-0.0113465
-0.254983
0.421144
-0.365334
1.1544
-0.543765
11.0932
66.5507
115.887
124.183
115.407
57.9244
-1.19877
-15.7863
-15.1489
-12.9477
-10.4334
-8.55474
-7.12369
-5.87002
-5.00621
-4.30784
-3.95851
-3.66044
-3.37401
-3.08829
-2.84649
-2.83462
-2.63679
-2.67651
-2.61818
-2.60677
-2.20963
-2.22633
-2.03244
-1.96189
-1.99941
0.0365057
0.183375
0.104638
0.317547
-0.107319
0.79044
-0.138707
1.2429
-0.161473
11.3806
67.6611
115.971
124.121
112.199
49.2126
-7.18144
-17.6512
-15.905
-13.4764
-10.8414
-8.31362
-6.675
-5.51767
-4.78884
-4.25901
-3.88586
-3.60575
-3.32614
-3.09554
-2.89947
-2.84374
-2.61294
-2.73789
-2.61752
-2.66213
-2.53578
-2.31611
-2.19883
-2.00345
-2.04269
0.0111387
0.129356
0.0145621
0.256334
-0.155662
0.305692
-0.28156
0.715621
-0.162401
9.03804
63.83
113.081
123.082
110.776
53.9842
-3.61945
-17.1202
-15.4229
-12.932
-10.2436
-7.94066
-6.04203
-4.93664
-4.25617
-3.98164
-3.76034
-3.52981
-3.23853
-3.01062
-2.78165
-2.68673
-2.49617
-2.55342
-2.46885
-2.44492
-2.25113
-2.22504
-2.12406
-1.94153
-1.92447
-0.0317032
0.0710206
-0.0140984
0.142259
-0.154023
0.230659
-0.326438
0.53899
-0.257954
4.89983
54.8479
108.327
121.202
112.842
70.5413
13.0799
-12.5371
-14.8662
-12.3951
-9.50925
-7.53386
-5.68946
-4.31839
-3.96804
-3.97383
-3.82734
-3.59598
-3.25135
-3.03857
-2.80263
-2.75328
-2.61815
-2.63643
-2.47421
-2.56736
-2.41866
-2.47758
-2.3904
-2.26686
-2.28312
-0.203444
-0.11604
-0.193984
-0.0854117
-0.309758
-0.144036
-0.373
-0.199913
-0.111538
0.343246
40.2769
97.8047
121.11
117.368
91.9318
45.5564
5.81496
-9.35653
-11.0275
-8.36247
-6.62785
-4.55769
-2.94087
-3.14886
-3.60075
-3.85803
-3.615
-3.21403
-2.91928
-2.63509
-2.47751
-2.1932
-2.18625
-1.9835
-2.02693
-1.88216
-1.93178
-1.84751
-1.82999
-1.80257
-0.292705
-0.225544
-0.282947
-0.241189
-0.400602
-0.417595
-0.508238
-0.885293
-0.342132
-2.51191
22.6289
78.7469
115.085
122.13
110.68
82.0765
46.4216
16.5303
1.99261
-2.27463
-4.85397
-5.14144
-3.13639
-2.86493
-3.91402
-4.37294
-3.88614
-3.25469
-2.96315
-2.65402
-2.65556
-2.57142
-2.56744
-2.51893
-2.54042
-2.41968
-2.46313
-2.29994
-2.29246
-2.17997
-0.485564
-0.413792
-0.464737
-0.457645
-0.593191
-0.729793
-0.80658
-1.41639
-1.01672
-3.41597
6.67515
51.0203
99.1792
121.496
122.89
111.471
90.9882
66.7609
46.6524
32.7771
20.7115
11.4043
7.74288
5.55793
1.62146
-3.34557
-4.00837
-3.10315
-2.65072
-2.49333
-2.63462
-2.46766
-2.55761
-2.28884
-2.45563
-2.22119
-2.37098
-2.20916
-2.33968
-2.37199
-0.522687
-0.497279
-0.53971
-0.56011
-0.684274
-0.856795
-1.02918
-1.51167
-1.70679
-2.8927
-2.43972
21.726
67.4854
105.222
122.516
124.607
119.098
109.216
98.4923
86.991
70.941
54.3282
42.2343
33.3636
20.6353
6.11354
-1.61401
-2.439
-2.34275
-2.51971
-2.57669
-2.37091
-2.43889
-2.28673
-2.32526
-2.13324
-2.22609
-1.96627
-1.99515
-1.90387
-0.666079
-0.624243
-0.706852
-0.72221
-0.836751
-0.996882
-1.21321
-1.57254
-1.96545
-2.58499
-4.02555
1.69386
29.5933
70.1645
101.108
116.682
122.053
122.658
121.708
118.295
106.881
89.3963
72.4792
55.7854
38.1124
19.323
4.92531
-0.362635
-2.06577
-2.14466
-2.3511
-2.12396
-2.28818
-2.033
-2.26831
-1.91544
-2.12963
-1.76701
-1.77983
-1.6055
-0.672324
-0.635853
-0.705316
-0.748683
-0.818694
-0.95235
-1.14814
-1.46084
-1.76671
-2.3331
-3.10291
-3.97739
3.40608
27.6676
60.0301
86.3849
100.581
108.4
113.332
115.385
109.542
96.261
80.8209
63.2518
45.2194
27.6198
11.7593
1.95858
-1.47182
-1.84618
-2.18694
-2.02956
-2.26482
-1.9928
-2.262
-1.88458
-2.12682
-1.73358
-1.73118
-1.47812
-0.780948
-0.763111
-0.807087
-0.880525
-0.910187
-0.999042
-1.16143
-1.37173
-1.65797
-1.9547
-2.52032
-3.02561
-3.62241
1.39901
17.6583
39.6694
58.8565
71.5521
78.2588
82.2531
83.4458
79.5769
70.5799
56.42
39.1264
23.4614
10.2061
1.60637
-1.34223
-1.73493
-2.11123
-1.93013
-2.221
-1.88892
-2.1919
-1.7901
-2.09364
-1.65656
-1.70476
-1.38477
-0.731987
-0.70358
-0.74512
-0.793112
-0.80775
-0.833536
-0.967161
-1.11566
-1.33548
-1.59032
-1.87282
-2.2546
-2.59085
-3.18376
-1.41952
6.01411
17.4675
28.0675
35.195
39.4087
41.8031
41.0623
35.4537
25.4293
15.5552
7.37556
1.60287
-1.39879
-2.07884
-2.05058
-2.27774
-1.98206
-2.26939
-1.86006
-2.19415
-1.71745
-2.07267
-1.54933
-1.64789
-1.24979
-0.823302
-0.822327
-0.841327
-0.877908
-0.880466
-0.839378
-0.923816
-1.03187
-1.22918
-1.4054
-1.65916
-1.83179
-2.16953
-2.33572
-2.91982
-3.51678
-2.52091
0.852563
4.4577
5.75102
6.83028
5.38027
2.33294
-0.744816
-2.16992
-2.44971
-2.28902
-2.64964
-2.48693
-2.21242
-2.42245
-2.02188
-2.33794
-1.85821
-2.21152
-1.67146
-2.03316
-1.45202
-1.52468
-1.04018
-0.702292
-0.677263
-0.69741
-0.658262
-0.678778
-0.590187
-0.635187
-0.73102
-0.912729
-1.0766
-1.30607
-1.49039
-1.72814
-1.97311
-2.16045
-2.45547
-3.22198
-4.08621
-4.37785
-4.85406
-5.20096
-5.30069
-5.19787
-4.32859
-3.47439
-2.29648
-1.97523
-2.32771
-2.48823
-2.30548
-2.50561
-2.03811
-2.40421
-1.79727
-2.23341
-1.50574
-1.99108
-1.08502
-1.24793
-0.461989
-0.805143
-0.838473
-0.770781
-0.754177
-0.677561
-0.623393
-0.600889
-0.645663
-0.852897
-0.989099
-1.2284
-1.39787
-1.6673
-1.87846
-2.20498
-2.55672
-2.85451
-3.40667
-3.89762
-4.41558
-4.34712
-4.21984
-3.76961
-3.20705
-2.55732
-2.20006
-2.06429
-2.50505
-2.65973
-2.37769
-2.66029
-2.10637
-2.54472
-1.88179
-2.34257
-1.59315
-1.94636
-1.02419
-0.779555
0.295572
-0.652615
-0.597807
-0.616987
-0.421177
-0.329761
-0.257366
-0.260736
-0.273881
-0.5209
-0.686482
-0.96507
-1.14514
-1.44195
-1.68244
-2.0224
-2.36643
-2.86592
-3.41307
-3.63503
-3.89723
-3.78812
-3.76818
-3.29503
-2.74362
-2.31947
-1.79474
-1.88609
-2.3783
-2.72131
-2.42738
-2.74506
-2.13181
-2.60315
-1.78358
-2.36854
-1.40007
-1.81199
-0.507376
-0.00613199
2.29358
-0.705402
-0.857543
-0.699834
-0.609005
-0.406808
-0.226709
-0.232161
-0.20552
-0.455463
-0.614553
-0.926427
-1.13797
-1.46175
-1.72536
-2.08816
-2.46818
-2.85248
-3.2788
-3.40323
-3.5685
-3.301
-3.18569
-2.69869
-2.24671
-1.94992
-1.50179
-1.74761
-2.32095
-2.77812
-2.45208
-2.90605
-2.17608
-2.72466
-1.90757
-2.55496
-1.58177
-2.09849
-0.225977
0.434565
4.71186
-0.853181
-0.511882
-0.560431
-0.112472
-0.0196118
0.20243
0.165427
0.161235
-0.127451
-0.310816
-0.655539
-0.891325
-1.25589
-1.55543
-1.96526
-2.35359
-2.71488
-3.12363
-3.19259
-3.24809
-2.92651
-2.76359
-2.22421
-1.74072
-1.54093
-1.16956
-1.61908
-2.21793
-2.90624
-2.51642
-3.05795
-2.19171
-2.74182
-1.76567
-2.39491
-1.30274
-1.59093
0.789046
3.24012
10.3896
-0.374349
-0.945131
-0.803165
-0.667782
-0.183736
0.0472567
0.13619
0.133725
-0.125007
-0.316934
-0.664258
-0.897013
-1.25441
-1.54464
-1.95971
-2.35092
-2.70031
-3.11806
-3.21584
-3.16628
-2.84543
-2.61786
-2.06533
-1.4325
-1.18951
-0.582063
-1.45545
-1.832
-2.97471
-2.57116
-3.24034
-2.26473
-2.80049
-1.76232
-2.45483
-1.33539
-1.74399
1.58509
5.75232
17.5352
-3.12796
-0.28778
-0.396971
0.160231
0.317153
0.48578
0.406146
0.386846
0.0721667
-0.132249
-0.486361
-0.724053
-1.09675
-1.43119
-1.90808
-2.34779
-2.72912
-3.15776
-3.142
-2.89293
-2.52614
-2.22398
-1.56929
-0.96226
-0.834232
-0.45724
-1.43632
-1.90706
-3.13909
-2.75551
-3.34952
-2.23384
-2.60816
-1.46363
-1.90042
-0.30293
0.594622
6.64777
16.5953
35.697
-0.395228
-0.386492
-0.397863
-0.413861
-0.436955
-0.465639
-0.524883
-0.545649
-0.597417
-0.631171
-0.679792
-0.718602
-0.762648
-0.817037
-0.833343
-0.87845
-0.877126
-0.951534
-0.813631
-1.14716
-0.840384
-0.991651
-1.06315
-1.07027
-0.778085
-0.532473
-0.128365
0.186708
0.427695
0.568969
0.425775
0.415943
0.0344954
-0.170307
-0.407929
-0.513921
-0.620598
-0.625983
-0.806264
-0.754617
-0.399712
-0.395335
-0.410774
-0.428003
-0.438951
-0.476442
-0.527325
-0.542048
-0.632983
-0.636899
-0.656211
-0.674678
-0.707142
-0.703744
-0.773766
-0.85253
-0.834626
-0.929998
-0.790046
-1.13157
-0.924888
-1.08125
-1.18665
-1.24784
-0.969046
-0.757177
-0.386661
-0.0973975
0.207167
0.320322
0.26448
0.097245
-0.0798965
-0.318613
-0.476998
-0.519383
-0.582201
-0.604774
-0.754733
-0.73675
-0.393598
-0.387633
-0.406597
-0.416921
-0.451717
-0.40377
-0.455986
-0.50286
-0.558752
-0.561654
-0.613957
-0.648746
-0.681831
-0.807321
-0.901716
-0.941636
-0.930982
-1.02283
-0.932618
-1.30206
-1.16595
-1.38412
-1.56143
-1.55866
-1.29079
-1.09884
-0.779045
-0.508457
-0.242502
-0.00418785
-0.0178322
-0.0907959
-0.314992
-0.472771
-0.634978
-0.639329
-0.687643
-0.683223
-0.796814
-0.781515
-0.38104
-0.381833
-0.415738
-0.418166
-0.422505
-0.455319
-0.482871
-0.513392
-0.614025
-0.652182
-0.666865
-0.707284
-0.898162
-0.98555
-1.02825
-1.0782
-1.09261
-1.18905
-1.16912
-1.53162
-1.45348
-1.7147
-1.85418
-1.88808
-1.67918
-1.53171
-1.26347
-1.05516
-0.790869
-0.61876
-0.446892
-0.40921
-0.489615
-0.624757
-0.741786
-0.728397
-0.748591
-0.741865
-0.801599
-0.791855
-0.413427
-0.407625
-0.412029
-0.423111
-0.409882
-0.426339
-0.43131
-0.556271
-0.636299
-0.671205
-0.829195
-1.06904
-1.14889
-1.20817
-1.24029
-1.27357
-1.29391
-1.40668
-1.47838
-1.84219
-1.79342
-2.08569
-2.21516
-2.24037
-2.08001
-1.9552
-1.73937
-1.55109
-1.34354
-1.14391
-1.0187
-0.865244
-0.72815
-0.703057
-0.813462
-0.836509
-0.84203
-0.844566
-0.844667
-0.845616
-0.362393
-0.363318
-0.404686
-0.365664
-0.392261
-0.396083
-0.51883
-0.532743
-0.789091
-1.09982
-1.27715
-1.3416
-1.4197
-1.45519
-1.47881
-1.50368
-1.55121
-1.62557
-1.75101
-2.09227
-2.09953
-2.41968
-2.54355
-2.57101
-2.46703
-2.37265
-2.20111
-2.04509
-1.84384
-1.65217
-1.4825
-1.2611
-1.23214
-0.83459
-0.835653
-0.843887
-0.847203
-0.842366
-0.850838
-0.855124
-0.368506
-0.397391
-0.348549
-0.397091
-0.37354
-0.492589
-0.430866
-0.925281
-1.27729
-1.37774
-1.51506
-1.63508
-1.71119
-1.71619
-1.70185
-1.62517
-1.63401
-1.76144
-2.02885
-2.37019
-2.41241
-2.74161
-2.84085
-2.86062
-2.7921
-2.71738
-2.58277
-2.44749
-2.26784
-2.07236
-1.85467
-1.62733
-1.40425
-1.30868
-0.93347
-0.920143
-0.856127
-0.919605
-0.912381
-0.934764
-0.255593
-0.289293
-0.288353
-0.312909
-0.391446
-0.399254
-0.946847
-1.23236
-1.43663
-1.63774
-1.82803
-1.95386
-2.02301
-1.98585
-1.90733
-1.82405
-1.86911
-1.83502
-2.08547
-2.50386
-2.77261
-3.01421
-3.12425
-3.13132
-3.09177
-3.02539
-2.91705
-2.8013
-2.63952
-2.45328
-2.22056
-1.94804
-1.65796
-1.44815
-1.13091
-0.910745
-0.863991
-0.884035
-0.91077
-0.927529
-0.355052
-0.394388
-0.418304
-0.508599
-0.582996
-0.993356
-1.16795
-1.44929
-1.67613
-1.91854
-2.13453
-2.2893
-2.36443
-2.25408
-2.05544
-1.6316
-1.51705
-1.77601
-2.44167
-2.97269
-3.24325
-3.3055
-3.4058
-3.37106
-3.33729
-3.26821
-3.17431
-3.07338
-2.9332
-2.76969
-2.5457
-2.27959
-1.95376
-1.63772
-1.40449
-1.0536
-0.916148
-1.04614
-0.982584
-1.04636
-0.282943
-0.365317
-0.454137
-0.605058
-0.80822
-1.09749
-1.35589
-1.61632
-1.89297
-2.17096
-2.44639
-2.63405
-2.71515
-2.42995
-2.11377
-1.85608
-1.82572
-1.22536
-1.35759
-2.60056
-3.74976
-3.83445
-3.78511
-3.66468
-3.59479
-3.50415
-3.40523
-3.30441
-3.17346
-3.02732
-2.82137
-2.57121
-2.23942
-1.89269
-1.54226
-1.30499
-0.95953
-1.00626
-1.03886
-1.04565
-0.393902
-0.468485
-0.572238
-0.753206
-1.03999
-1.30384
-1.512
-1.79741
-2.08151
-2.41291
-2.7688
-3.0794
-3.21769
-3.07851
-1.78564
2.00695
7.39083
10.8632
7.98999
1.30519
-3.36409
-3.82092
-3.97079
-3.87746
-3.81357
-3.712
-3.59583
-3.48755
-3.35777
-3.22763
-3.04904
-2.83475
-2.53736
-2.17899
-1.80549
-1.5008
-1.22752
-1.07881
-1.1653
-1.17691
-0.435657
-0.520449
-0.635658
-0.869642
-1.17181
-1.39065
-1.62915
-1.91115
-2.21809
-2.58311
-3.08407
-3.53867
-3.69844
-0.192351
10.8521
26.3802
33.4287
29.3367
17.6349
4.03151
-3.55477
-4.32462
-4.17731
-4.15595
-4.03372
-3.92135
-3.77455
-3.64977
-3.5118
-3.38512
-3.2243
-3.03766
-2.76821
-2.43801
-2.03327
-1.67121
-1.42111
-1.17529
-1.24285
-1.20827
-0.583552
-0.661465
-0.779348
-1.06283
-1.28249
-1.50489
-1.71216
-1.98874
-2.27566
-2.70551
-3.46133
-4.06925
0.824272
18.4416
45.5583
57.2161
52.0816
38.0526
20.7945
4.29946
-4.47694
-5.06536
-4.61053
-4.60378
-4.32741
-4.15437
-3.93874
-3.78322
-3.63003
-3.50884
-3.37353
-3.21896
-2.99488
-2.69816
-2.31911
-1.92669
-1.60848
-1.43158
-1.2966
-1.40438
-0.676899
-0.75444
-0.912359
-1.17926
-1.37143
-1.57684
-1.75976
-2.02118
-2.24532
-2.73303
-3.8664
-0.341945
21.6595
57.4846
77.2509
75.34
61.434
43.734
23.8105
4.73963
-5.04118
-5.51501
-5.095
-4.9055
-4.57978
-4.34227
-4.09771
-3.91148
-3.74286
-3.60798
-3.47489
-3.33067
-3.13959
-2.88479
-2.53193
-2.13475
-1.76062
-1.5165
-1.41249
-1.46238
-0.872852
-0.92501
-1.14675
-1.33808
-1.51945
-1.68242
-1.82124
-2.03168
-2.10699
-2.77485
-2.67126
15.8184
58.2404
91.9042
98.0588
87.7555
68.4448
42.9654
16.7214
-1.30791
-6.91062
-6.34298
-5.6928
-5.18184
-4.76919
-4.45899
-4.17844
-3.98199
-3.81759
-3.70624
-3.61124
-3.48989
-3.32499
-3.09148
-2.78634
-2.40931
-1.99989
-1.7417
-1.59426
-1.67784
-0.903985
-1.0406
-1.20916
-1.39692
-1.57286
-1.70705
-1.82528
-2.03666
-1.85615
-3.14656
4.19363
42.8325
91.4893
114.124
111.072
92.2208
59.371
22.1507
-2.2267
-9.31612
-9.05
-7.25944
-6.31818
-5.37243
-4.86971
-4.54589
-4.28478
-4.05419
-3.86024
-3.71096
-3.60816
-3.48987
-3.39642
-3.20996
-2.94048
-2.57829
-2.1826
-1.89001
-1.72996
-1.83924
-1.16137
-1.23194
-1.43397
-1.55563
-1.75547
-1.78554
-1.93123
-1.93092
-1.84321
-2.44428
17.5023
70.9147
112.223
124.156
115.211
81.6319
32.3602
-2.54326
-11.7825
-10.8787
-9.24176
-7.558
-6.64994
-5.5676
-4.78458
-4.44061
-4.24435
-4.10916
-3.99955
-3.92187
-3.87044
-3.73946
-3.58515
-3.34227
-3.1456
-2.80183
-2.41688
-2.11252
-1.92857
-1.98825
-1.03259
-1.19493
-1.30994
-1.41656
-1.60746
-1.48358
-1.80245
-1.41755
-1.96605
0.126042
34.5226
91.5766
119.921
123.703
107.059
54.3132
3.73414
-12.0557
-11.9788
-10.3407
-9.00735
-7.57868
-6.63973
-5.61091
-4.66582
-4.17411
-3.81387
-3.55499
-3.42698
-3.36059
-3.42111
-3.49123
-3.71618
-3.58047
-3.34301
-2.96981
-2.63997
-2.33921
-2.26706
-2.38593
-1.14447
-1.18727
-1.35706
-1.32237
-1.56285
-1.18839
-1.78063
-0.738691
-2.11307
5.21656
50.7336
105.372
121.154
120.109
83.6656
19.4247
-11.1339
-13.2414
-11.5848
-10.2212
-8.91377
-7.56141
-6.60002
-5.60772
-4.60767
-4.11687
-3.81414
-3.53142
-3.32245
-3.13631
-3.0101
-2.84156
-2.82093
-2.958
-3.40073
-3.14769
-2.76318
-2.35496
-2.13863
-1.97667
-0.526185
-0.608665
-0.640918
-0.617426
-0.730007
-0.0782279
-0.777284
0.658215
-1.1995
10.7565
63.8429
113.227
122.537
113.413
53.1365
-7.00073
-17.2771
-14.0078
-12.529
-10.2782
-8.85853
-7.44786
-6.43316
-5.49198
-4.68004
-4.06266
-3.77692
-3.45002
-3.21815
-3.02079
-2.98062
-2.83739
-2.83243
-2.65581
-2.4525
-2.90251
-3.00436
-2.87407
-2.9543
-3.24341
0.0350069
-0.000604729
-0.151331
0.0145469
-0.252896
0.468613
-0.427437
1.19797
-0.802578
14.1574
71.5591
116.051
123.222
102.921
27.8295
-21.1674
-18.901
-15.8585
-13.0407
-10.6576
-8.8946
-7.48547
-6.21857
-5.24536
-4.49883
-4.0795
-3.75535
-3.43651
-3.12214
-2.88734
-2.86162
-2.66975
-2.69742
-2.62411
-2.60408
-2.20194
-2.22101
-2.0311
-1.96065
-1.99782
0.0511097
0.203562
0.117397
0.347822
-0.120636
0.853862
-0.198286
1.34369
-0.270685
14.7013
73.6081
116.07
122.234
94.6572
15.7935
-25.3767
-19.5038
-16.6806
-13.274
-10.7977
-8.71415
-7.09005
-5.91548
-5.06592
-4.44415
-4.01371
-3.70099
-3.3786
-3.13911
-2.93449
-2.8795
-2.65434
-2.75154
-2.62628
-2.67168
-2.53522
-2.3142
-2.20187
-2.00889
-2.05149
0.0168449
0.143615
0.0179031
0.286967
-0.165935
0.35632
-0.322672
0.899486
-0.227942
12.0016
70.5435
115.149
120.805
94.0736
19.5252
-22.2054
-19.0612
-16.1162
-12.86
-10.3458
-8.36213
-6.47612
-5.35835
-4.52211
-4.14208
-3.87948
-3.62079
-3.30241
-3.05827
-2.81951
-2.71949
-2.53703
-2.56328
-2.47506
-2.45018
-2.25179
-2.22705
-2.1305
-1.94834
-1.93325
-0.0260831
0.0843638
-0.010785
0.17009
-0.167129
0.290466
-0.412631
0.727776
-0.519118
7.37156
61.9045
111.449
119.644
100.077
41.2531
-8.30253
-17.1781
-14.9951
-11.9969
-9.43856
-7.78361
-6.07759
-4.80006
-4.2221
-4.06858
-3.91468
-3.6578
-3.31267
-3.08725
-2.84005
-2.78294
-2.64375
-2.64908
-2.49309
-2.57088
-2.43678
-2.48537
-2.39638
-2.27348
-2.29293
-0.197431
-0.104371
-0.191326
-0.0622198
-0.32126
-0.0972557
-0.464977
-0.0879484
-0.644262
1.47651
47.1571
102.37
118.786
109.51
71.8739
21.236
-5.78061
-12.0801
-10.8009
-8.39187
-6.77064
-4.86122
-3.54617
-3.3408
-3.63351
-3.90303
-3.68488
-3.2803
-2.97065
-2.67072
-2.50714
-2.2031
-2.21066
-1.9854
-2.04683
-1.88577
-1.94115
-1.85215
-1.83585
-1.81014
-0.286493
-0.216408
-0.280599
-0.225664
-0.410403
-0.396744
-0.569679
-0.844198
-0.585339
-1.88686
28.3372
85.4923
116.433
118.895
99.1823
62.7878
27.9419
5.41109
-2.87694
-3.77171
-4.42217
-4.67043
-3.3129
-3.01661
-3.86159
-4.29782
-3.86995
-3.2874
-2.99843
-2.68774
-2.67604
-2.59648
-2.55745
-2.53192
-2.53756
-2.43376
-2.46667
-2.30626
-2.29586
-2.18302
-0.483841
-0.40873
-0.464128
-0.450408
-0.60207
-0.736255
-0.842993
-1.47027
-1.11579
-3.6333
9.66166
58.363
102.79
121.104
119.081
100.532
75.2087
50.164
32.8574
23.1517
14.2088
7.17082
3.62168
2.41611
-0.0459434
-3.64091
-4.0991
-3.17273
-2.70073
-2.51936
-2.64558
-2.48212
-2.54196
-2.31283
-2.44583
-2.23507
-2.37339
-2.21429
-2.34484
-2.37905
-0.521655
-0.495221
-0.540029
-0.558437
-0.695117
-0.876417
-1.06762
-1.60126
-1.79391
-3.33311
-1.77825
26.9411
74.2194
108.788
123.496
122.757
112.599
99.0825
86.3109
75.1982
60.8829
46.0852
35.0743
28.2976
18.8355
6.06678
-1.71401
-2.49803
-2.37165
-2.52788
-2.58158
-2.37915
-2.44362
-2.29319
-2.3283
-2.1412
-2.22784
-1.96831
-1.997
-1.90706
-0.668165
-0.626231
-0.709625
-0.724387
-0.849793
-1.02057
-1.25865
-1.65199
-2.08457
-2.87246
-4.38724
3.2712
34.9548
76.2506
105.136
119.051
123.092
122.011
119.592
115.18
103.556
86.4894
70.3472
54.8789
38.549
19.8324
4.97223
-0.352822
-2.06706
-2.14486
-2.35089
-2.12824
-2.28832
-2.05851
-2.25066
-1.92432
-2.12715
-1.76964
-1.78092
-1.60717
-0.676054
-0.640803
-0.709751
-0.753308
-0.832674
-0.980327
-1.19106
-1.53106
-1.8686
-2.53367
-3.47153
-4.57378
5.23243
32.361
65.8392
91.1027
104.518
112.115
117.13
118.617
112.239
98.4953
82.5235
64.4587
46.0836
28.5974
12.6515
2.35746
-1.36322
-1.81382
-2.17501
-2.02782
-2.26431
-1.99951
-2.25703
-1.89799
-2.1306
-1.73824
-1.73361
-1.47988
-0.787181
-0.769147
-0.813237
-0.887224
-0.921937
-1.02002
-1.19419
-1.42409
-1.73637
-2.08603
-2.7329
-3.48298
-4.30653
2.62484
20.8504
44.7062
64.9405
77.982
84.5044
88.0508
88.1321
83.4018
74.0384
59.7448
42.0261
25.8603
11.7701
2.25102
-1.21017
-1.69846
-2.09611
-1.92652
-2.22013
-1.89356
-2.1944
-1.79317
-2.09947
-1.66167
-1.70867
-1.3878
-0.737465
-0.70928
-0.751653
-0.801196
-0.819915
-0.849964
-0.980218
-1.1543
-1.39194
-1.67624
-2.00013
-2.46816
-3.09988
-4.01948
-1.95178
7.18565
20.5905
33.0402
41.3014
45.8141
47.9762
46.1577
39.9201
29.1695
18.2883
9.20628
2.47375
-1.21402
-2.09733
-2.07806
-2.28818
-1.99265
-2.27372
-1.86527
-2.19647
-1.72662
-2.07868
-1.55757
-1.65299
-1.25351
-0.831552
-0.829164
-0.847827
-0.888134
-0.895705
-0.858631
-0.953021
-1.06287
-1.27109
-1.4621
-1.73638
-1.94548
-2.36768
-2.68048
-3.68332
-4.41906
-2.72592
2.19283
6.56078
8.60244
9.54866
7.25428
3.61282
-0.0771472
-1.88828
-2.4956
-2.51925
-2.80691
-2.55337
-2.24086
-2.43845
-2.0328
-2.34332
-1.86533
-2.21412
-1.69609
-2.02603
-1.46087
-1.5296
-1.04504
-0.713437
-0.683685
-0.707255
-0.669414
-0.694653
-0.609171
-0.657094
-0.757779
-0.943517
-1.11705
-1.35743
-1.55787
-1.83595
-2.13506
-2.40463
-2.77786
-3.71084
-4.6081
-4.81456
-4.94188
-4.91721
-4.97819
-5.17637
-4.63471
-3.81557
-2.49495
-2.09286
-2.39073
-2.51742
-2.32442
-2.52101
-2.04734
-2.40951
-1.80114
-2.24009
-1.50898
-2.00562
-1.09045
-1.25698
-0.467099
-0.814696
-0.848009
-0.778265
-0.767361
-0.690774
-0.64134
-0.619222
-0.670751
-0.879947
-1.01758
-1.26476
-1.44101
-1.728
-1.96748
-2.3429
-2.71153
-3.02063
-3.57134
-4.15683
-4.69618
-4.59656
-4.40834
-3.86527
-3.25742
-2.61393
-2.32712
-2.14306
-2.5572
-2.68585
-2.39408
-2.67006
-2.11785
-2.55323
-1.88915
-2.35445
-1.59747
-1.97425
-1.01582
-0.78883
0.289022
-0.6622
-0.606686
-0.627357
-0.431744
-0.341488
-0.273313
-0.27612
-0.294269
-0.547259
-0.712353
-0.995398
-1.17397
-1.4764
-1.72812
-2.08379
-2.43604
-2.96118
-3.54048
-3.76711
-3.99721
-3.85695
-3.83614
-3.38957
-2.83464
-2.39761
-1.85053
-1.93489
-2.40693
-2.74358
-2.44493
-2.75654
-2.13858
-2.60871
-1.78884
-2.37689
-1.40856
-1.82122
-0.522997
-0.0167335
2.28191
-0.714628
-0.867629
-0.709092
-0.621232
-0.41723
-0.240416
-0.245678
-0.222146
-0.475454
-0.639326
-0.966508
-1.16487
-1.49198
-1.76261
-2.13235
-2.52064
-2.91439
-3.35943
-3.50981
-3.68115
-3.41978
-3.28861
-2.78578
-2.31653
-1.99735
-1.54625
-1.78388
-2.35072
-2.79574
-2.46889
-2.91598
-2.18596
-2.73381
-1.91684
-2.5653
-1.59311
-2.11709
-0.236842
0.413693
4.69711
-0.859477
-0.520042
-0.569238
-0.123781
-0.0300117
0.19025
0.15377
0.14664
-0.143043
-0.329589
-0.67782
-0.915797
-1.28555
-1.59263
-2.00923
-2.40079
-2.76694
-3.18326
-3.26341
-3.32015
-3.01385
-2.84873
-2.28896
-1.7927
-1.58149
-1.19686
-1.64474
-2.23886
-2.92139
-2.52809
-3.06792
-2.19895
-2.74867
-1.77204
-2.40438
-1.31658
-1.60937
0.768505
3.21787
10.3704
-0.381329
-0.953639
-0.812319
-0.679362
-0.194581
0.0357356
0.124532
0.120033
-0.139801
-0.334627
-0.685025
-0.920626
-1.2814
-1.57675
-1.99665
-2.39064
-2.73795
-3.15897
-3.26501
-3.2215
-2.91136
-2.68296
-2.11834
-1.47003
-1.21486
-0.593908
-1.46824
-1.84313
-2.98787
-2.58316
-3.25098
-2.2733
-2.80793
-1.76987
-2.46651
-1.34942
-1.76407
1.56152
5.72635
17.5148
-3.13371
-0.295085
-0.405368
0.149446
0.306413
0.472504
0.394117
0.372377
0.0572573
-0.150765
-0.508569
-0.750977
-1.12714
-1.46437
-1.94374
-2.38171
-2.75721
-3.1911
-3.18315
-2.94107
-2.58143
-2.27726
-1.60963
-0.993043
-0.86015
-0.475806
-1.45236
-1.91856
-3.15176
-2.76635
-3.35941
-2.24041
-2.61295
-1.46908
-1.91033
-0.316249
0.575706
6.62534
16.5746
35.6836
-0.401923
-0.391191
-0.401557
-0.416206
-0.43834
-0.466151
-0.52553
-0.546297
-0.598803
-0.632354
-0.680701
-0.719
-0.762734
-0.817074
-0.833421
-0.878494
-0.877353
-0.953034
-0.816268
-1.15076
-0.843309
-0.992528
-1.06295
-1.0694
-0.776849
-0.530871
-0.126596
0.188412
0.429064
0.569793
0.42589
0.41628
0.0345907
-0.170429
-0.408078
-0.514087
-0.620826
-0.626599
-0.807393
-0.756322
-0.405307
-0.399291
-0.413737
-0.429671
-0.439953
-0.476713
-0.527553
-0.542171
-0.633591
-0.637354
-0.656456
-0.674645
-0.707048
-0.704033
-0.773892
-0.85226
-0.834389
-0.930401
-0.791113
-1.13322
-0.926128
-1.08145
-1.18608
-1.24675
-0.967564
-0.755378
-0.384692
-0.0955139
0.208652
0.321296
0.264939
0.0974953
-0.0798372
-0.318695
-0.477191
-0.519424
-0.582279
-0.605206
-0.755735
-0.737969
-0.398903
-0.391155
-0.408943
-0.418259
-0.452755
-0.404297
-0.456248
-0.502785
-0.558682
-0.561581
-0.613923
-0.648781
-0.681876
-0.807119
-0.901312
-0.94094
-0.930311
-1.02279
-0.933467
-1.30411
-1.16795
-1.38476
-1.56158
-1.55772
-1.28931
-1.09703
-0.777162
-0.506576
-0.240953
-0.00314204
-0.0170962
-0.0904038
-0.314691
-0.472579
-0.634632
-0.638795
-0.68698
-0.68286
-0.797076
-0.781957
-0.385407
-0.384297
-0.417521
-0.419184
-0.423682
-0.455913
-0.482991
-0.512882
-0.613669
-0.65169
-0.666452
-0.706922
-0.896892
-0.985956
-1.02922
-1.07873
-1.09271
-1.18953
-1.16915
-1.53103
-1.4528
-1.71377
-1.85311
-1.88661
-1.67718
-1.52932
-1.26098
-1.05327
-0.789275
-0.617668
-0.446238
-0.408708
-0.489215
-0.624301
-0.740969
-0.727155
-0.746998
-0.740484
-0.800857
-0.791541
-0.416308
-0.409489
-0.414011
-0.424622
-0.411181
-0.42695
-0.431417
-0.555874
-0.635988
-0.671136
-0.829557
-1.06903
-1.14982
-1.20857
-1.23999
-1.2725
-1.29172
-1.40447
-1.47626
-1.84042
-1.79184
-2.08416
-2.21381
-2.23867
-2.07782
-1.95256
-1.73643
-1.54825
-1.34135
-1.14322
-1.01811
-0.864801
-0.727621
-0.702399
-0.812282
-0.834633
-0.839704
-0.842408
-0.843095
-0.844598
-0.364197
-0.364707
-0.406774
-0.367245
-0.393491
-0.396639
-0.519579
-0.532686
-0.790996
-1.10041
-1.27593
-1.3403
-1.41815
-1.45399
-1.47682
-1.50147
-1.548
-1.62334
-1.75004
-2.09112
-2.09809
-2.41795
-2.54185
-2.56916
-2.4648
-2.36995
-2.19812
-2.04228
-1.84158
-1.65086
-1.48212
-1.26068
-1.23162
-0.83386
-0.834309
-0.841733
-0.84464
-0.839747
-0.848625
-0.853514
-0.36994
-0.398869
-0.350539
-0.398446
-0.374428
-0.493166
-0.431412
-0.924875
-1.27547
-1.37646
-1.5137
-1.63413
-1.70999
-1.71518
-1.70069
-1.62396
-1.62962
-1.75949
-2.02812
-2.36917
-2.41089
-2.73924
-2.83856
-2.85829
-2.78964
-2.71464
-2.58004
-2.44509
-2.26592
-2.07101
-1.85404
-1.62742
-1.40398
-1.30833
-0.932605
-0.918201
-0.853481
-0.916869
-0.909991
-0.933078
-0.257105
-0.290535
-0.289688
-0.313382
-0.391829
-0.399531
-0.949482
-1.23136
-1.43635
-1.6368
-1.82719
-1.9533
-2.0206
-1.9844
-1.90302
-1.82189
-1.86539
-1.83928
-2.08892
-2.50474
-2.77234
-3.01233
-3.12129
-3.12832
-3.08863
-3.02237
-2.91435
-2.79917
-2.63793
-2.45208
-2.2197
-1.94787
-1.65871
-1.44859
-1.13088
-0.909534
-0.861833
-0.881731
-0.909043
-0.926366
-0.357466
-0.396169
-0.419245
-0.508431
-0.582595
-0.99621
-1.16581
-1.44882
-1.67567
-1.9182
-2.13404
-2.28854
-2.36148
-2.25296
-2.06365
-1.64671
-1.49996
-1.77023
-2.44272
-2.97431
-3.2429
-3.30368
-3.40244
-3.36744
-3.33359
-3.26461
-3.17134
-3.0713
-2.9319
-2.76879
-2.54491
-2.2794
-1.95485
-1.63947
-1.40537
-1.05325
-0.91479
-1.04482
-0.981915
-1.04606
-0.285724
-0.367342
-0.4549
-0.604359
-0.807887
-1.09901
-1.35532
-1.61616
-1.89318
-2.17104
-2.44454
-2.63274
-2.7055
-2.42591
-2.10946
-1.84485
-1.81485
-1.22409
-1.36075
-2.60493
-3.75074
-3.83263
-3.78232
-3.66101
-3.59055
-3.5001
-3.40178
-3.30218
-3.17243
-3.02687
-2.821
-2.57099
-2.24052
-1.89498
-1.54405
-1.30525
-0.95896
-1.00577
-1.03905
-1.04597
-0.396916
-0.470638
-0.57332
-0.752234
-1.03928
-1.30239
-1.5111
-1.79712
-2.08177
-2.40868
-2.76478
-3.07055
-3.19689
-3.05444
-1.89825
1.82731
7.46162
10.863
7.98684
1.30674
-3.36521
-3.81979
-3.96873
-3.87522
-3.81079
-3.70863
-3.59282
-3.48579
-3.35733
-3.22789
-3.04943
-2.83545
-2.53826
-2.18103
-1.80744
-1.50121
-1.22697
-1.0786
-1.16546
-1.17722
-0.43847
-0.522485
-0.637408
-0.869771
-1.17296
-1.39013
-1.62906
-1.91174
-2.2159
-2.57339
-3.07225
-3.5227
-3.65952
-0.151807
10.4792
26.1959
33.3154
29.2477
17.582
4.01287
-3.56345
-4.32856
-4.1802
-4.15731
-4.03246
-3.9193
-3.77243
-3.64886
-3.51223
-3.38635
-3.22541
-3.03853
-2.76862
-2.43928
-2.03457
-1.67107
-1.42026
-1.17461
-1.24279
-1.20849
-0.586089
-0.663491
-0.781576
-1.06321
-1.28509
-1.50393
-1.71209
-1.98816
-2.26896
-2.68556
-3.42715
-4.00679
0.767765
18.4443
44.9947
57.0386
52.0256
37.9798
20.7252
4.23668
-4.50993
-5.07984
-4.61716
-4.60823
-4.32919
-4.15384
-3.93787
-3.78325
-3.63116
-3.51081
-3.37528
-3.21999
-2.99496
-2.69855
-2.32006
-1.92659
-1.60777
-1.43116
-1.29629
-1.40452
-0.67926
-0.756709
-0.91549
-1.18051
-1.37829
-1.57623
-1.76124
-2.0182
-2.23472
-2.70017
-3.77941
-0.223839
21.6034
57.1315
77.1324
75.4782
61.6337
43.9104
23.7767
4.68323
-5.08206
-5.53343
-5.10261
-4.90834
-4.58187
-4.34243
-4.09671
-3.91137
-3.74373
-3.60989
-3.47676
-3.33178
-3.13946
-2.88477
-2.53286
-2.13518
-1.76021
-1.51581
-1.41265
-1.46273
-0.875485
-0.927727
-1.14976
-1.3387
-1.52487
-1.68018
-1.82118
-2.02229
-2.08569
-2.72998
-2.49114
15.7991
57.8748
91.6707
98.3209
88.1829
68.9827
43.1555
16.6918
-1.35757
-6.92462
-6.35901
-5.69465
-5.1819
-4.7707
-4.4596
-4.17756
-3.98193
-3.81784
-3.70811
-3.61277
-3.49099
-3.32483
-3.09136
-2.78707
-2.41011
-2.00007
-1.7417
-1.59512
-1.67903
-0.9068
-1.04339
-1.21185
-1.39732
-1.57796
-1.70299
-1.82253
-2.01644
-1.83274
-3.03631
4.50409
42.6619
91.1835
114.31
111.661
92.8476
59.7245
22.0576
-2.32668
-9.31525
-9.09184
-7.27684
-6.32708
-5.37444
-4.87247
-4.54847
-4.28653
-4.05509
-3.86052
-3.71178
-3.60964
-3.49124
-3.39668
-3.21012
-2.94184
-2.57943
-2.18319
-1.89061
-1.7313
-1.84037
-1.16361
-1.23383
-1.43604
-1.55574
-1.75945
-1.78159
-1.92407
-1.90029
-1.76811
-2.1795
17.9842
70.8666
112.338
124.151
115.396
82.0026
32.3287
-2.57364
-11.7661
-10.8846
-9.23078
-7.56222
-6.64798
-5.56773
-4.78678
-4.44469
-4.24842
-4.112
-4.00046
-3.9227
-3.8718
-3.74127
-3.58635
-3.34311
-3.14664
-2.80293
-2.41732
-2.11303
-1.92979
-1.98918
-1.03444
-1.19636
-1.31126
-1.4162
-1.60889
-1.48213
-1.78811
-1.36239
-1.87533
0.535079
35.2525
91.7725
120.088
123.54
107.042
54.529
3.94028
-12.1396
-12.0143
-10.3671
-9.02338
-7.5872
-6.64282
-5.61187
-4.66797
-4.17648
-3.81657
-3.55724
-3.42763
-3.35979
-3.42109
-3.49269
-3.71789
-3.58176
-3.34374
-2.97054
-2.64003
-2.33925
-2.2678
-2.38667
-1.146
-1.18782
-1.35854
-1.32173
-1.56173
-1.18061
-1.75366
-0.701994
-2.00439
5.53202
51.6182
105.315
120.581
120.308
84.1307
20.0898
-11.1903
-13.425
-11.6531
-10.2679
-8.91249
-7.55742
-6.59491
-5.60401
-4.60658
-4.11726
-3.81629
-3.53441
-3.32365
-3.13519
-3.00911
-2.84229
-2.82249
-2.95927
-3.40125
-3.1481
-2.76288
-2.35461
-2.13873
-1.97722
-0.528776
-0.609859
-0.640964
-0.615548
-0.720898
-0.0651563
-0.735175
0.737405
-0.959909
11.1851
64.7722
113.758
122.622
113.955
54.0092
-6.56815
-17.5745
-14.2179
-12.5682
-10.3035
-8.85603
-7.44246
-6.42803
-5.48621
-4.67671
-4.06072
-3.7775
-3.45236
-3.21947
-3.01974
-2.97931
-2.83725
-2.83308
-2.65627
-2.45232
-2.90239
-3.0037
-2.87342
-2.95419
-3.24381
0.0319441
-0.00327368
-0.15222
0.0155414
-0.245448
0.48076
-0.365859
1.30209
-0.38373
14.753
73.1199
118.303
124.622
103.888
28.5348
-20.9614
-19.1195
-15.9577
-13.0743
-10.6821
-8.89516
-7.48209
-6.21182
-5.23823
-4.49539
-4.07673
-3.7546
-3.43773
-3.12374
-2.88567
-2.85954
-2.6684
-2.69659
-2.62336
-2.60272
-2.20122
-2.2199
-2.03012
-1.96022
-1.99812
0.0493804
0.201632
0.115553
0.350328
-0.116121
0.872857
-0.140921
1.44327
0.141221
15.3988
76.0532
119.272
124.493
95.8787
16.1315
-25.3138
-19.4331
-16.6475
-13.273
-10.8133
-8.71422
-7.08102
-5.9087
-5.0593
-4.43907
-4.01141
-3.70021
-3.38224
-3.13943
-2.93283
-2.87732
-2.65215
-2.74978
-2.62458
-2.67116
-2.53438
-2.31269
-2.20054
-2.00805
-2.05149
0.0161484
0.14288
0.0179804
0.285283
-0.163755
0.36232
-0.289022
0.957501
0.0159482
12.633
72.6085
118.2
123.035
95.3106
19.6124
-22.3323
-19.0092
-16.0593
-12.7989
-10.3702
-8.36518
-6.46541
-5.33992
-4.50791
-4.13171
-3.87534
-3.62214
-3.30575
-3.05947
-2.81882
-2.71771
-2.5349
-2.56143
-2.47322
-2.44858
-2.25016
-2.22503
-2.12926
-1.94776
-1.93348
-0.0271638
0.0833568
-0.0110636
0.168669
-0.169186
0.293336
-0.392951
0.763794
-0.473085
7.41107
62.9902
113.195
121.419
101.447
41.4068
-8.73516
-17.2134
-14.9526
-11.8772
-9.49633
-7.74625
-6.06303
-4.80367
-4.20843
-4.04218
-3.90427
-3.66579
-3.31655
-3.08891
-2.83952
-2.78104
-2.64148
-2.64747
-2.49169
-2.56899
-2.43648
-2.48442
-2.39621
-2.27389
-2.29441
-0.199105
-0.106577
-0.192589
-0.0642628
-0.322814
-0.105739
-0.457403
-0.0822372
-0.646775
1.55856
47.4568
102.923
119.136
109.85
71.7305
20.566
-5.77036
-12.0947
-10.7277
-8.45923
-6.78634
-4.8333
-3.54771
-3.31358
-3.60684
-3.89042
-3.68691
-3.28131
-2.97185
-2.67002
-2.50492
-2.20102
-2.20896
-1.98454
-2.04552
-1.88694
-1.94153
-1.853
-1.83707
-1.81247
-0.288095
-0.219085
-0.282396
-0.227908
-0.413968
-0.401011
-0.582729
-0.852742
-0.721948
-2.00389
28.217
85.6818
117.23
119.29
99.18
62.1457
27.2754
5.41992
-2.68066
-4.00255
-4.54754
-4.57826
-3.36617
-2.95901
-3.76345
-4.19866
-3.88471
-3.29829
-3.00607
-2.68896
-2.67418
-2.5933
-2.55555
-2.53122
-2.53753
-2.43503
-2.46796
-2.30771
-2.29747
-2.18436
-0.48478
-0.411359
-0.466091
-0.452276
-0.605337
-0.740339
-0.858634
-1.49163
-1.23522
-3.76748
9.34094
58.2022
103.232
121.88
119.054
100.374
74.5506
49.1279
32.4908
22.7059
14.1804
6.80932
3.44063
2.48822
-0.162336
-3.82762
-4.26482
-3.20434
-2.71092
-2.51922
-2.64289
-2.47922
-2.5397
-2.3123
-2.44658
-2.23619
-2.37449
-2.21543
-2.34615
-2.38019
-0.522462
-0.497786
-0.54198
-0.559912
-0.697563
-0.880991
-1.07775
-1.62517
-1.85205
-3.45181
-1.91987
26.6687
74.103
108.877
123.557
122.746
112.7
98.5152
85.5851
74.933
60.9557
46.1916
35.0037
28.0589
18.4328
5.76722
-2.04134
-2.57248
-2.39024
-2.53037
-2.58028
-2.37727
-2.44243
-2.29334
-2.32927
-2.1421
-2.2286
-1.96892
-1.99778
-1.90819
-0.668915
-0.628566
-0.711483
-0.725105
-0.851351
-1.0228
-1.26401
-1.66853
-2.11402
-2.94438
-4.46359
3.12381
34.6121
76.0397
105.142
119.389
123.663
121.895
118.963
114.601
103.477
86.9443
70.5229
54.7818
38.4033
19.6169
4.95473
-0.32887
-2.04326
-2.13622
-2.34613
-2.12613
-2.28773
-2.05911
-2.25196
-1.92495
-2.12745
-1.7697
-1.78125
-1.60934
-0.676885
-0.64295
-0.711681
-0.753751
-0.833695
-0.981443
-1.19403
-1.54096
-1.88764
-2.57458
-3.54355
-4.74541
4.85661
31.8123
65.5146
91.3022
105.766
113.151
117.282
118.264
112.192
98.8625
83.0566
64.5782
46.0026
28.8085
13.052
2.52307
-1.29243
-1.79259
-2.16664
-2.02535
-2.26416
-2.00026
-2.25795
-1.89834
-2.13063
-1.73788
-1.73348
-1.48139
-0.788122
-0.771004
-0.814992
-0.887534
-0.922566
-1.02175
-1.19702
-1.43004
-1.74799
-2.10965
-2.7805
-3.57111
-4.62611
1.99448
20.0137
44.0845
64.9991
79.0701
86.4225
89.6055
89.2159
84.4228
74.8511
60.1041
42.0894
25.9948
11.8898
2.29828
-1.19451
-1.69503
-2.09599
-1.92773
-2.22171
-1.89484
-2.19563
-1.79365
-2.0993
-1.66104
-1.70816
-1.38867
-0.73845
-0.710651
-0.753067
-0.801498
-0.820039
-0.851532
-0.982411
-1.15783
-1.39836
-1.69024
-2.02318
-2.51421
-3.17095
-4.321
-2.42215
6.27718
19.4906
32.6087
41.9888
47.1914
48.7825
46.3687
39.9932
29.1696
18.2578
9.09435
2.33951
-1.28393
-2.12766
-2.08951
-2.29449
-1.99669
-2.27634
-1.86659
-2.19748
-1.72696
-2.07834
-1.55683
-1.6524
-1.25423
-0.831569
-0.829661
-0.848568
-0.888273
-0.895432
-0.859076
-0.953371
-1.0652
-1.27489
-1.46947
-1.75072
-1.96785
-2.40747
-2.75186
-3.82483
-4.70528
-3.24937
1.4199
5.87762
8.18216
9.16742
6.62176
3.14251
-0.357983
-2.07031
-2.5809
-2.56493
-2.82176
-2.56239
-2.24614
-2.44251
-2.03549
-2.34511
-1.86634
-2.21431
-1.69592
-2.0256
-1.46016
-1.5291
-1.04576
-0.712691
-0.683588
-0.707349
-0.669394
-0.694154
-0.60873
-0.657089
-0.758509
-0.945279
-1.12104
-1.36496
-1.57127
-1.85529
-2.17175
-2.44128
-2.84843
-3.80528
-4.70196
-4.87593
-5.0713
-5.12776
-5.04191
-5.27939
-4.6683
-3.80862
-2.51084
-2.10996
-2.41006
-2.52796
-2.3313
-2.52506
-2.04983
-2.41091
-1.80176
-2.23984
-1.50845
-2.00507
-1.0898
-1.25667
-0.467959
-0.81418
-0.847683
-0.777836
-0.766993
-0.689958
-0.640322
-0.618365
-0.670023
-0.879857
-1.01883
-1.26812
-1.44716
-1.73768
-1.98216
-2.36344
-2.74764
-3.06747
-3.64976
-4.22728
-4.72788
-4.54996
-4.33433
-3.81848
-3.23731
-2.64662
-2.34442
-2.14579
-2.56186
-2.68964
-2.39778
-2.67235
-2.11916
-2.55398
-1.88935
-2.35393
-1.59675
-1.97349
-1.01509
-0.788538
0.288195
-0.661635
-0.606189
-0.626433
-0.430834
-0.340385
-0.271885
-0.274803
-0.293489
-0.546377
-0.711769
-0.995742
-1.17738
-1.4819
-1.73618
-2.09406
-2.45214
-2.97971
-3.55993
-3.77628
-4.00428
-3.8818
-3.85324
-3.40131
-2.83953
-2.40778
-1.84922
-1.93255
-2.40902
-2.74588
-2.44676
-2.75745
-2.1392
-2.60908
-1.7889
-2.37631
-1.40772
-1.82022
-0.522054
-0.0161323
2.28127
-0.71376
-0.866895
-0.707903
-0.620168
-0.415961
-0.238641
-0.243905
-0.221085
-0.474895
-0.638492
-0.964585
-1.1654
-1.49362
-1.76397
-2.13779
-2.53079
-2.92528
-3.36573
-3.50961
-3.67089
-3.39387
-3.25986
-2.76622
-2.3054
-1.99308
-1.54078
-1.78308
-2.35041
-2.79573
-2.46991
-2.91624
-2.1858
-2.7334
-1.91647
-2.56489
-1.59231
-2.11598
-0.235702
0.414564
4.69685
-0.858657
-0.519253
-0.568232
-0.122819
-0.0288076
0.192109
0.155769
0.148061
-0.142312
-0.329072
-0.677355
-0.915874
-1.28636
-1.59429
-2.01231
-2.40336
-2.76652
-3.17209
-3.25217
-3.31459
-3.00531
-2.83902
-2.27634
-1.78206
-1.5773
-1.19284
-1.64206
-2.23772
-2.92071
-2.52764
-3.06732
-2.19817
-2.7477
-1.77106
-2.40354
-1.31573
-1.60843
0.769866
3.21902
10.3706
-0.380811
-0.953057
-0.811564
-0.678439
-0.193313
0.0373088
0.126106
0.121177
-0.139032
-0.333946
-0.684476
-0.92059
-1.28206
-1.57787
-1.99769
-2.39138
-2.73768
-3.15573
-3.25929
-3.21146
-2.89677
-2.66949
-2.10707
-1.46195
-1.21008
-0.589481
-1.46545
-1.84144
-2.98669
-2.5822
-3.25003
-2.27215
-2.80658
-1.76849
-2.46524
-1.34813
-1.76274
1.56324
5.72788
17.5153
-3.13296
-0.294461
-0.404663
0.15034
0.307717
0.474035
0.395607
0.37345
0.0581343
-0.14987
-0.507821
-0.750487
-1.12687
-1.46404
-1.94309
-2.38014
-2.75446
-3.18383
-3.17084
-2.9233
-2.55897
-2.2537
-1.595
-0.984365
-0.855808
-0.472113
-1.4494
-1.91697
-3.15101
-2.76571
-3.35865
-2.23931
-2.61149
-1.46761
-1.90915
-0.315201
0.576777
6.62648
16.5758
35.6833
-0.404786
-0.395382
-0.405402
-0.421865
-0.441614
-0.474994
-0.525956
-0.553369
-0.598766
-0.638244
-0.681995
-0.722076
-0.762974
-0.817143
-0.836156
-0.874212
-0.88726
-0.960583
-0.826013
-1.15763
-0.848838
-0.994621
-1.05867
-1.07156
-0.788475
-0.553156
-0.15974
0.140214
0.372681
0.503675
0.381324
0.338937
-0.0151105
-0.209137
-0.436376
-0.536778
-0.634645
-0.635279
-0.809554
-0.756169
-0.408712
-0.403679
-0.417351
-0.434991
-0.444558
-0.48435
-0.529996
-0.547916
-0.630719
-0.647247
-0.658675
-0.679249
-0.709259
-0.70832
-0.769251
-0.856196
-0.838648
-0.937852
-0.80018
-1.13731
-0.929502
-1.08167
-1.16097
-1.24168
-0.97114
-0.767832
-0.408599
-0.12453
0.165705
0.273631
0.215324
0.048865
-0.113059
-0.346587
-0.501544
-0.541052
-0.595868
-0.61543
-0.758665
-0.737419
-0.404485
-0.397295
-0.413177
-0.426298
-0.460085
-0.416833
-0.4601
-0.510106
-0.562551
-0.567659
-0.618187
-0.654869
-0.684024
-0.801274
-0.903071
-0.944593
-0.934248
-1.02591
-0.936314
-1.30067
-1.16198
-1.37503
-1.56056
-1.55375
-1.28749
-1.10101
-0.788067
-0.524324
-0.262693
-0.03178
-0.0510606
-0.121193
-0.342626
-0.489162
-0.647111
-0.651837
-0.69795
-0.68996
-0.801378
-0.780336
-0.385995
-0.385744
-0.417326
-0.431179
-0.430117
-0.462351
-0.48923
-0.518321
-0.616061
-0.656393
-0.673418
-0.710612
-0.893706
-0.992025
-1.02938
-1.08096
-1.09047
-1.18693
-1.1659
-1.52397
-1.44461
-1.70337
-1.84085
-1.87337
-1.66478
-1.52076
-1.25768
-1.05152
-0.794004
-0.623012
-0.457466
-0.420223
-0.504179
-0.633455
-0.726322
-0.768988
-0.75611
-0.749751
-0.804734
-0.791034
-0.423573
-0.417916
-0.420759
-0.438994
-0.419551
-0.439252
-0.43871
-0.560222
-0.641657
-0.677695
-0.824699
-1.07161
-1.15354
-1.21272
-1.24469
-1.27712
-1.29105
-1.39393
-1.46136
-1.82412
-1.7785
-2.07241
-2.20221
-2.22404
-2.061
-1.93788
-1.72444
-1.53878
-1.3351
-1.13698
-1.01954
-0.862934
-0.732977
-0.705955
-0.816757
-0.834932
-0.841754
-0.843683
-0.851773
-0.842725
-0.377624
-0.37621
-0.422733
-0.378863
-0.407088
-0.405389
-0.527584
-0.539034
-0.790553
-1.084
-1.27919
-1.34325
-1.42287
-1.46079
-1.48235
-1.50421
-1.54533
-1.61972
-1.7498
-2.08921
-2.09444
-2.41329
-2.53377
-2.55625
-2.44898
-2.35385
-2.18354
-2.02827
-1.83025
-1.63945
-1.47363
-1.25385
-1.22756
-0.833188
-0.83543
-0.848071
-0.852983
-0.844028
-0.85164
-0.855556
-0.383434
-0.413543
-0.364252
-0.416015
-0.386554
-0.504228
-0.442941
-0.900762
-1.27312
-1.37923
-1.51496
-1.63883
-1.71611
-1.72756
-1.71572
-1.64296
-1.63495
-1.7444
-2.01537
-2.35254
-2.4018
-2.72185
-2.82692
-2.84316
-2.77271
-2.69861
-2.56487
-2.43115
-2.25345
-2.05925
-1.84437
-1.61995
-1.39954
-1.30436
-0.932331
-0.915432
-0.848234
-0.919152
-0.911325
-0.935963
-0.274663
-0.307037
-0.308534
-0.329856
-0.407494
-0.411138
-0.944992
-1.23994
-1.43768
-1.63752
-1.82914
-1.95703
-2.02787
-2.00082
-1.92131
-1.83283
-1.8817
-1.89856
-2.14629
-2.52407
-2.77466
-3.03186
-3.11406
-3.1158
-3.07199
-3.00653
-2.89943
-2.78546
-2.62542
-2.44031
-2.20937
-1.93923
-1.65473
-1.4432
-1.12803
-0.908215
-0.858146
-0.878081
-0.90774
-0.926736
-0.379563
-0.415317
-0.435499
-0.522321
-0.590549
-0.995181
-1.18136
-1.45256
-1.6808
-1.92034
-2.13438
-2.29067
-2.36944
-2.28275
-2.1182
-1.72946
-1.52725
-1.72707
-2.38756
-2.92644
-3.21872
-3.29427
-3.38074
-3.35
-3.31382
-3.24711
-3.15518
-3.05733
-2.91957
-2.75722
-2.53581
-2.27049
-1.94936
-1.63456
-1.40095
-1.04906
-0.917531
-1.04776
-0.989028
-1.05034
-0.309857
-0.387278
-0.470396
-0.615041
-0.813085
-1.10612
-1.36318
-1.62465
-1.89699
-2.172
-2.43942
-2.62936
-2.71214
-2.47824
-2.16499
-1.85698
-1.93237
-1.57761
-1.72749
-2.78692
-3.78317
-3.8258
-3.77074
-3.64082
-3.56812
-3.47851
-3.38255
-3.28631
-3.15892
-3.01487
-2.81084
-2.56241
-2.23375
-1.88884
-1.53763
-1.30059
-0.955945
-1.00723
-1.03375
-1.04596
-0.420517
-0.490698
-0.588415
-0.762972
-1.04422
-1.31302
-1.52289
-1.80488
-2.08483
-2.40463
-2.74624
-3.04947
-3.1785
-3.10888
-2.35035
0.622502
5.72712
9.13917
6.89041
0.908652
-3.47808
-3.83468
-4.00643
-3.86584
-3.78515
-3.68306
-3.56942
-3.46777
-3.34265
-3.21573
-3.0389
-2.82543
-2.53054
-2.17572
-1.80313
-1.49591
-1.22379
-1.07688
-1.17101
-1.18006
-0.46243
-0.543539
-0.654494
-0.882872
-1.17911
-1.40103
-1.64019
-1.92022
-2.21588
-2.56497
-3.0291
-3.46015
-3.70739
-0.972264
7.57604
22.429
30.6547
27.8956
17.1019
4.01051
-3.42095
-4.20627
-4.0625
-4.08363
-3.98468
-3.87866
-3.74203
-3.62698
-3.49562
-3.37312
-3.21067
-3.02757
-2.76087
-2.43436
-2.03052
-1.66649
-1.41373
-1.17158
-1.23836
-1.20579
-0.609182
-0.685026
-0.800551
-1.07738
-1.29426
-1.51603
-1.72432
-1.99214
-2.2638
-2.65271
-3.30989
-3.96994
-0.322501
14.7534
40.0015
54.0184
50.9534
37.764
20.7786
4.38334
-4.32859
-4.92748
-4.5314
-4.49461
-4.25174
-4.0922
-3.8964
-3.75642
-3.61206
-3.49643
-3.36104
-3.20876
-2.98659
-2.69242
-2.31604
-1.92218
-1.60424
-1.42562
-1.29821
-1.40434
-0.702366
-0.779389
-0.937081
-1.19483
-1.38577
-1.5895
-1.76932
-2.01711
-2.21625
-2.63286
-3.6121
-1.17778
17.3936
51.4368
73.6818
74.1321
61.1552
43.9269
24.2212
5.09945
-4.84577
-5.38221
-4.93187
-4.78025
-4.47235
-4.25548
-4.04146
-3.87946
-3.72226
-3.59499
-3.46168
-3.32001
-3.13012
-2.87861
-2.53382
-2.13325
-1.75759
-1.51175
-1.41135
-1.46042
-0.897535
-0.950917
-1.17116
-1.35409
-1.53437
-1.69245
-1.81999
-2.00559
-2.04571
-2.53899
-2.74067
12.4755
51.5555
87.1334
96.452
87.5
69.5865
45.8634
20.1899
0.628798
-6.37296
-6.06953
-5.50074
-5.04013
-4.6424
-4.35137
-4.10454
-3.94366
-3.79404
-3.68886
-3.59614
-3.47671
-3.31344
-3.08282
-2.78419
-2.4078
-1.99852
-1.73803
-1.59348
-1.67722
-0.928823
-1.0695
-1.232
-1.41569
-1.58537
-1.71806
-1.81075
-1.99218
-1.75
-2.76481
2.7808
37.163
85.2501
111.621
111.439
94.3116
65.1476
29.978
3.09587
-7.43315
-8.5879
-6.94945
-6.09214
-5.22538
-4.72947
-4.42772
-4.19452
-4.01177
-3.83348
-3.68804
-3.58905
-3.47705
-3.38537
-3.20138
-2.93845
-2.57607
-2.18223
-1.8886
-1.73013
-1.83911
-1.18685
-1.25828
-1.45617
-1.57867
-1.76732
-1.80566
-1.88989
-1.90878
-1.5558
-2.22823
14.4101
64.4818
108.561
124.25
116.979
89.0307
45.1213
6.80031
-8.53231
-10.3185
-9.01485
-7.29835
-6.44019
-5.40262
-4.6552
-4.33482
-4.16388
-4.05594
-3.96705
-3.89758
-3.84717
-3.72082
-3.56789
-3.3308
-3.14073
-2.79943
-2.41648
-2.11142
-1.92868
-1.9881
-1.05882
-1.22414
-1.33355
-1.4476
-1.61813
-1.5259
-1.72174
-1.42456
-1.50587
-0.157782
30.0157
86.409
119.065
124.669
112.277
69.6395
19.5219
-5.84994
-10.998
-9.88714
-8.76386
-7.29092
-6.40795
-5.42976
-4.53183
-4.07379
-3.73993
-3.50366
-3.38576
-3.33101
-3.40213
-3.4927
-3.70843
-3.57338
-3.33879
-2.97597
-2.64176
-2.34025
-2.26701
-2.38605
-1.17003
-1.21636
-1.38431
-1.36155
-1.57243
-1.24726
-1.65898
-0.820846
-1.59469
3.57778
46.3163
101.784
120.919
121.81
96.2474
41.8281
1.17112
-10.7813
-11.2049
-9.86131
-8.66145
-7.24519
-6.34961
-5.40874
-4.46153
-4.00505
-3.73256
-3.47492
-3.28177
-3.09886
-2.9783
-2.81941
-2.80861
-2.95264
-3.40071
-3.15386
-2.76496
-2.35531
-2.13764
-1.97569
-0.564655
-0.646245
-0.672243
-0.65862
-0.729848
-0.132871
-0.634781
0.658758
-0.558714
8.5731
59.2767
111.196
122.361
118.534
74.6131
16.5404
-9.70488
-12.9979
-12.0369
-9.8797
-8.55432
-7.09333
-6.13179
-5.24784
-4.51692
-3.92734
-3.6821
-3.38193
-3.17574
-2.99278
-2.93846
-2.81907
-2.8183
-2.64736
-2.44822
-2.90915
-3.0033
-2.872
-2.94948
-3.23926
0.0168692
-0.0256677
-0.16902
-0.0209304
-0.247188
0.421127
-0.293288
1.1564
-0.178582
11.6172
66.8645
116.007
122.371
114.458
57.5224
-0.965298
-15.3923
-14.9546
-12.9236
-10.3962
-8.58074
-7.11396
-5.87724
-5.00448
-4.29902
-3.95237
-3.65892
-3.37387
-3.08973
-2.84464
-2.83458
-2.63889
-2.67894
-2.6183
-2.60617
-2.20723
-2.22508
-2.03245
-1.96323
-2.0017
0.0267492
0.172118
0.092383
0.308251
-0.108127
0.795453
-0.0837951
1.2721
0.139373
12.0294
69.2014
117.367
123.434
111.013
48.8661
-7.95423
-17.5052
-15.584
-13.3194
-10.6976
-8.29444
-6.64377
-5.51047
-4.78479
-4.25056
-3.87994
-3.60253
-3.32216
-3.09507
-2.89896
-2.84456
-2.61402
-2.73863
-2.61556
-2.65839
-2.53282
-2.31437
-2.19874
-2.00509
-2.04539
0.004447
0.120089
0.00475971
0.24106
-0.157849
0.275684
-0.271793
0.773664
0.126863
9.73501
65.8886
115.627
123.247
110.458
53.628
-4.82995
-17.1569
-15.0371
-12.6343
-10.1191
-7.94436
-6.02082
-4.90594
-4.24703
-3.9678
-3.76058
-3.53174
-3.24448
-3.01318
-2.78319
-2.68888
-2.49777
-2.55405
-2.46676
-2.44157
-2.24835
-2.22351
-2.12451
-1.9436
-1.92742
-0.0363999
0.0637546
-0.0225212
0.131024
-0.165641
0.204614
-0.352792
0.52299
-0.307344
5.35227
56.0537
110.035
121.774
113.482
70.0625
11.945
-12.8489
-14.485
-11.893
-9.52801
-7.53493
-5.6582
-4.31546
-3.95638
-3.92027
-3.81106
-3.58348
-3.2489
-3.04052
-2.80463
-2.75543
-2.61923
-2.63617
-2.47227
-2.5654
-2.41633
-2.47736
-2.39181
-2.26965
-2.2867
-0.207179
-0.122156
-0.20029
-0.0931941
-0.321099
-0.168687
-0.413834
-0.249117
-0.244398
0.482053
41.0887
98.5399
120.48
117.668
91.4707
44.2825
4.97139
-9.07126
-10.674
-8.25943
-6.70408
-4.52965
-3.01431
-3.1811
-3.597
-3.86126
-3.6339
-3.22023
-2.92663
-2.63876
-2.47928
-2.19341
-2.18516
-1.98189
-2.02681
-1.88082
-1.93306
-1.84987
-1.83323
-1.8068
-0.295797
-0.230984
-0.288061
-0.245852
-0.410915
-0.431283
-0.552087
-0.939803
-0.517705
-2.55098
23.0522
79.4896
115.604
122.704
110.409
80.6868
44.9594
15.2779
1.81119
-3.09315
-4.99706
-4.90569
-3.38603
-2.84645
-3.81362
-4.29384
-3.9115
-3.27282
-2.97443
-2.65968
-2.65726
-2.57044
-2.56627
-2.51827
-2.54113
-2.42042
-2.46535
-2.30281
-2.29545
-2.183
-0.487831
-0.41864
-0.468826
-0.460566
-0.600749
-0.738709
-0.831635
-1.46328
-1.14622
-3.58461
6.56241
51.4674
99.6137
121.806
123.104
110.67
89.0354
64.345
43.8043
31.1873
19.6062
11.0581
7.37435
5.79089
1.63936
-3.50748
-4.20557
-3.15797
-2.67189
-2.4981
-2.63206
-2.46353
-2.55441
-2.28767
-2.4562
-2.2227
-2.37304
-2.21157
-2.34182
-2.37379
-0.524402
-0.501576
-0.542963
-0.561555
-0.689421
-0.862464
-1.03856
-1.54321
-1.76598
-3.0636
-2.53773
21.7565
67.617
105.359
122.608
124.977
118.468
107.464
96.287
85.5141
70.6141
54.6765
42.5555
33.5008
20.456
5.96853
-1.89206
-2.49228
-2.35777
-2.51667
-2.57087
-2.36645
-2.43675
-2.28662
-2.32655
-2.13488
-2.2279
-1.96784
-1.99625
-1.90457
-0.667898
-0.628168
-0.709486
-0.722533
-0.840181
-1.00166
-1.21706
-1.59328
-2.00241
-2.7121
-4.2062
1.26596
29.2671
69.8797
101.303
117.601
123.076
122.532
120.499
116.971
106.2
89.6536
72.8246
55.5548
37.7085
18.9734
5.01808
-0.288848
-2.02193
-2.12423
-2.34042
-2.11923
-2.28706
-2.03407
-2.2701
-1.91707
-2.13087
-1.76768
-1.77988
-1.6052
-0.674539
-0.639283
-0.707682
-0.747992
-0.820163
-0.954152
-1.14949
-1.46972
-1.78927
-2.39544
-3.2396
-4.28622
2.98684
27.0378
59.7601
87.3313
102.795
110.646
114.459
115.098
108.777
96.5231
81.2947
62.8019
44.6699
27.8357
12.3079
2.2078
-1.37131
-1.8099
-2.17255
-2.02533
-2.26496
-1.99455
-2.26397
-1.88617
-2.12751
-1.73332
-1.73026
-1.47685
-0.783379
-0.765973
-0.80932
-0.879625
-0.91011
-1.00195
-1.16226
-1.37625
-1.66992
-1.98934
-2.59037
-3.17016
-4.04171
0.738108
16.888
39.6442
60.3955
75.0912
82.7704
85.9623
85.3806
80.7614
71.6582
56.8746
39.0516
23.4835
10.2804
1.61588
-1.35221
-1.74003
-2.11532
-1.93379
-2.22467
-1.89177
-2.19377
-1.79122
-2.09367
-1.65556
-1.70305
-1.38293
-0.734921
-0.705792
-0.74722
-0.792512
-0.806572
-0.835368
-0.967452
-1.11826
-1.34271
-1.60912
-1.91118
-2.32405
-2.73888
-3.54442
-2.10154
5.40738
17.2109
29.2539
38.2644
43.0929
44.609
41.8344
35.3824
25.5747
15.6242
7.24429
1.39301
-1.51211
-2.1324
-2.07455
-2.29091
-1.98979
-2.27477
-1.86322
-2.19613
-1.71798
-2.07209
-1.54785
-1.64583
-1.24776
-0.826261
-0.823599
-0.842927
-0.877929
-0.879024
-0.840109
-0.926758
-1.03376
-1.23343
-1.4153
-1.67833
-1.86178
-2.22143
-2.40194
-3.06481
-3.73272
-2.94843
0.889581
5.13852
7.10239
7.66994
5.74478
2.35817
-0.833982
-2.17948
-2.51367
-2.34808
-2.65875
-2.49966
-2.21988
-2.42988
-2.02718
-2.34172
-1.86096
-2.21213
-1.67104
-2.03213
-1.45037
-1.52272
-1.03835
-0.705081
-0.677621
-0.697981
-0.658307
-0.677358
-0.589286
-0.635937
-0.732255
-0.914883
-1.08157
-1.31646
-1.50641
-1.75484
-2.0061
-2.22213
-2.47527
-3.20655
-3.9922
-4.12108
-4.38074
-4.78345
-5.00858
-4.9872
-4.21868
-3.45244
-2.29715
-1.99172
-2.35417
-2.50119
-2.31371
-2.51229
-2.04252
-2.407
-1.79863
-2.23335
-1.50476
-1.98975
-1.08335
-1.24627
-0.460539
-0.807333
-0.838328
-0.770017
-0.753204
-0.675506
-0.620819
-0.599216
-0.645397
-0.852989
-0.98964
-1.23236
-1.40482
-1.67781
-1.88984
-2.22403
-2.57386
-2.88904
-3.4289
-3.87187
-4.24286
-3.97115
-3.77263
-3.43983
-3.02289
-2.47727
-2.17996
-2.05515
-2.50467
-2.66057
-2.38023
-2.66356
-2.10836
-2.54599
-1.88242
-2.34201
-1.59196
-1.94482
-1.02254
-0.777944
0.296859
-0.65423
-0.597182
-0.614907
-0.418688
-0.32656
-0.253283
-0.257033
-0.27217
-0.52041
-0.685135
-0.964773
-1.14669
-1.44589
-1.68624
-2.02733
-2.36253
-2.85654
-3.38903
-3.56948
-3.7709
-3.57005
-3.57994
-3.16111
-2.65057
-2.26945
-1.76679
-1.87298
-2.37589
-2.72123
-2.42807
-2.74582
-2.13245
-2.60371
-1.7837
-2.36785
-1.39881
-1.81034
-0.505402
-0.00412596
2.29527
-0.704704
-0.855799
-0.696839
-0.605842
-0.402991
-0.221537
-0.226741
-0.202149
-0.453818
-0.612649
-0.925592
-1.13647
-1.4628
-1.72987
-2.0912
-2.46971
-2.85253
-3.26883
-3.36666
-3.48583
-3.14448
-3.02956
-2.57978
-2.16903
-1.90351
-1.47776
-1.73649
-2.31658
-2.77525
-2.44946
-2.90538
-2.17563
-2.72445
-1.9071
-2.55406
-1.58032
-2.0965
-0.223523
0.437313
4.71438
-0.851824
-0.509919
-0.557849
-0.10959
-0.0157889
0.207771
0.171507
0.165873
-0.124467
-0.308012
-0.652759
-0.888934
-1.25498
-1.55529
-1.96499
-2.35103
-2.7081
-3.10986
-3.15129
-3.18774
-2.83436
-2.67612
-2.15014
-1.69131
-1.50708
-1.14767
-1.60695
-2.21279
-2.90339
-2.51422
-3.05653
-2.19051
-2.74068
-1.76445
-2.39344
-1.3009
-1.58837
0.792478
3.24392
10.3932
-0.373379
-0.943609
-0.801114
-0.664948
-0.179707
0.052155
0.141225
0.137709
-0.121711
-0.313351
-0.660524
-0.893553
-1.25164
-1.54182
-1.9566
-2.34587
-2.69168
-3.10252
-3.18792
-3.12235
-2.78003
-2.55156
-2.00818
-1.39194
-1.16028
-0.561512
-1.44308
-1.82611
-2.97116
-2.56848
-3.23834
-2.26275
-2.79842
-1.76016
-2.45264
-1.33274
-1.74034
1.58967
5.75733
17.5397
-3.12718
-0.286353
-0.395311
0.162634
0.320647
0.489847
0.409879
0.389691
0.0747671
-0.129177
-0.483029
-0.720626
-1.09316
-1.42656
-1.90249
-2.34066
-2.71931
-3.14382
-3.12086
-2.8589
-2.47571
-2.16945
-1.52679
-0.92906
-0.808951
-0.438607
-1.4243
-1.90033
-3.13494
-2.75222
-3.34681
-2.23117
-2.60536
-1.46089
-1.89775
-0.299912
0.598539
6.65255
16.6005
35.7018
-0.411683
-0.40205
-0.411781
-0.429405
-0.448576
-0.489985
-0.533062
-0.5637
-0.606343
-0.644998
-0.686897
-0.725118
-0.762442
-0.817406
-0.831873
-0.885152
-0.872981
-0.976148
-0.835126
-1.16784
-0.855787
-0.997106
-1.05054
-1.07427
-0.80676
-0.593493
-0.2188
0.0497788
0.271876
0.379829
0.280897
0.22332
-0.0874675
-0.271527
-0.479391
-0.568267
-0.653925
-0.647715
-0.811807
-0.755983
-0.414469
-0.40956
-0.422417
-0.442528
-0.452331
-0.498023
-0.537836
-0.554977
-0.639677
-0.652539
-0.667173
-0.683503
-0.712348
-0.713251
-0.757134
-0.860533
-0.834812
-0.947493
-0.807593
-1.14142
-0.935903
-1.07363
-1.16571
-1.23614
-0.980367
-0.78868
-0.449533
-0.176144
0.0907676
0.187443
0.126905
-0.0378304
-0.157795
-0.386581
-0.542208
-0.567081
-0.615272
-0.630624
-0.761725
-0.735426
-0.414108
-0.40686
-0.420587
-0.435261
-0.465217
-0.444181
-0.47617
-0.520841
-0.576556
-0.579621
-0.627057
-0.661163
-0.685289
-0.786503
-0.897959
-0.947828
-0.93092
-1.02991
-0.935216
-1.29334
-1.13783
-1.36443
-1.51025
-1.53688
-1.27591
-1.10595
-0.804134
-0.556422
-0.298301
-0.0839411
-0.106293
-0.174609
-0.385511
-0.515352
-0.66485
-0.677946
-0.72201
-0.702908
-0.8098
-0.777407
-0.393257
-0.391431
-0.42232
-0.447691
-0.437567
-0.473961
-0.501267
-0.528354
-0.626601
-0.665219
-0.687612
-0.714915
-0.881608
-0.993866
-1.02149
-1.07862
-1.08108
-1.17868
-1.14749
-1.5054
-1.4202
-1.68244
-1.82079
-1.84567
-1.63901
-1.49864
-1.24512
-1.04242
-0.796026
-0.62786
-0.468725
-0.436019
-0.527256
-0.643921
-0.737322
-0.786822
-0.764039
-0.762569
-0.806544
-0.789048
-0.423754
-0.431179
-0.419491
-0.456711
-0.432356
-0.458396
-0.454629
-0.569569
-0.655119
-0.688472
-0.816735
-1.0596
-1.14998
-1.21316
-1.24498
-1.27949
-1.28563
-1.37544
-1.42955
-1.79052
-1.74607
-2.04969
-2.17448
-2.19567
-2.02815
-1.90995
-1.70008
-1.52041
-1.31944
-1.12564
-1.01521
-0.857923
-0.738511
-0.716681
-0.834439
-0.84501
-0.865946
-0.835725
-0.8677
-0.846366
-0.399655
-0.393371
-0.447828
-0.393292
-0.428498
-0.421102
-0.542467
-0.556049
-0.795556
-1.07285
-1.2855
-1.34654
-1.42645
-1.46572
-1.48773
-1.50423
-1.53687
-1.60359
-1.72414
-2.06755
-2.07228
-2.39047
-2.51048
-2.52691
-2.41481
-2.32101
-2.15244
-1.99871
-1.80509
-1.61402
-1.45678
-1.23855
-1.21885
-0.821676
-0.836099
-0.859314
-0.858135
-0.859207
-0.850835
-0.860382
-0.406284
-0.437644
-0.385279
-0.440271
-0.406055
-0.52351
-0.463952
-0.884179
-1.26421
-1.38577
-1.51784
-1.64113
-1.72239
-1.74259
-1.73751
-1.67471
-1.65631
-1.71484
-1.97424
-2.32018
-2.37822
-2.6996
-2.80336
-2.81563
-2.74093
-2.66803
-2.53492
-2.40343
-2.22769
-2.03537
-1.82423
-1.60396
-1.38896
-1.29817
-0.938664
-0.913299
-0.858582
-0.917566
-0.924517
-0.942538
-0.304643
-0.333933
-0.341196
-0.354568
-0.433206
-0.434065
-0.937678
-1.26495
-1.44325
-1.64365
-1.83318
-1.96361
-2.03987
-2.02654
-1.95484
-1.85541
-1.90303
-1.93481
-2.21197
-2.54866
-2.75249
-3.01829
-3.08493
-3.08294
-3.03637
-2.97347
-2.86797
-2.75626
-2.59983
-2.41606
-2.18903
-1.92007
-1.64363
-1.43126
-1.12527
-0.909295
-0.84937
-0.878694
-0.905218
-0.927816
-0.41311
-0.442801
-0.462088
-0.541981
-0.600261
-0.989368
-1.19171
-1.46101
-1.69264
-1.92832
-2.14187
-2.29948
-2.38977
-2.32245
-2.20067
-1.87092
-1.6692
-1.66942
-2.28821
-2.83246
-3.15483
-3.26772
-3.33382
-3.3113
-3.27432
-3.21123
-3.12184
-3.02805
-2.89343
-2.73441
-2.51641
-2.2525
-1.93679
-1.62358
-1.39356
-1.0434
-0.925419
-1.04841
-1.0019
-1.05584
-0.347168
-0.415236
-0.492033
-0.626292
-0.819557
-1.11959
-1.37632
-1.64351
-1.91
-2.18412
-2.44659
-2.64347
-2.73864
-2.58517
-2.25784
-1.90936
-2.06958
-2.07615
-2.31148
-3.0544
-3.75778
-3.74931
-3.69537
-3.58352
-3.51666
-3.43327
-3.34243
-3.25266
-3.13038
-2.99019
-2.78999
-2.54245
-2.22008
-1.87752
-1.52546
-1.29217
-0.943814
-1.0078
-1.02274
-1.04477
-0.457401
-0.518766
-0.60784
-0.770718
-1.04528
-1.32257
-1.54217
-1.82474
-2.10583
-2.42033
-2.75801
-3.05164
-3.21752
-3.14401
-2.77915
-0.99714
2.39563
5.90744
4.74982
-0.097414
-3.61922
-3.90912
-3.92324
-3.81619
-3.72213
-3.62708
-3.52088
-3.42953
-3.31122
-3.19023
-3.01767
-2.80226
-2.51329
-2.16339
-1.79699
-1.48437
-1.22198
-1.07492
-1.18037
-1.18306
-0.50111
-0.573904
-0.680238
-0.896351
-1.19676
-1.42479
-1.66726
-1.94903
-2.2457
-2.59446
-3.04021
-3.47351
-3.81911
-2.53268
3.46665
15.4863
24.8344
24.5091
15.8065
3.82059
-3.2945
-4.01072
-4.01319
-3.98485
-3.89805
-3.79912
-3.67993
-3.5815
-3.45965
-3.34596
-3.18568
-3.0082
-2.74357
-2.42221
-2.01889
-1.65723
-1.40198
-1.16496
-1.22769
-1.19925
-0.646796
-0.717618
-0.828242
-1.10156
-1.30699
-1.54317
-1.7562
-2.03022
-2.31151
-2.69089
-3.32536
-4.05876
-2.41545
8.23658
30.1213
47.1876
47.9016
36.9491
20.9145
4.69657
-4.00506
-4.68071
-4.37655
-4.30163
-4.09601
-3.96818
-3.81005
-3.70081
-3.5718
-3.46722
-3.33551
-3.18773
-2.97006
-2.68056
-2.31581
-1.91599
-1.60067
-1.41851
-1.30199
-1.40325
-0.742367
-0.81574
-0.975056
-1.22076
-1.41562
-1.62083
-1.80924
-2.06103
-2.27876
-2.67527
-3.60374
-2.84141
9.78495
39.7532
65.5649
70.8369
60.1159
43.6776
24.7356
5.81039
-4.39292
-5.08171
-4.638
-4.54353
-4.28631
-4.10071
-3.92875
-3.81447
-3.6778
-3.56322
-3.43005
-3.29725
-3.11075
-2.86526
-2.52389
-2.12892
-1.7525
-1.50571
-1.40701
-1.45654
-0.936918
-0.990027
-1.20889
-1.38472
-1.56
-1.72857
-1.8597
-2.05165
-2.12584
-2.49951
-3.33567
6.31138
39.1167
76.7743
91.9519
85.9011
69.7764
49.0865
25.1647
4.09528
-5.27554
-5.55547
-5.08616
-4.76761
-4.4033
-4.16851
-3.96249
-3.86404
-3.74127
-3.65532
-3.56106
-3.45022
-3.2903
-3.06634
-2.77596
-2.39939
-1.99564
-1.73254
-1.5925
-1.67572
-0.97017
-1.11667
-1.2719
-1.4528
-1.61965
-1.76362
-1.85415
-2.04275
-1.85091
-2.60474
-0.171663
26.2287
72.3756
104.824
109.728
96.5531
72.7679
42.4757
13.771
-3.02833
-7.58749
-6.39222
-5.67381
-4.95192
-4.47537
-4.23163
-4.04135
-3.9237
-3.77705
-3.64528
-3.54942
-3.45164
-3.36351
-3.18734
-2.93145
-2.57873
-2.18217
-1.8887
-1.72787
-1.83854
-1.23064
-1.30353
-1.49643
-1.62346
-1.79991
-1.87305
-1.92228
-2.021
-1.57744
-2.49575
8.08417
50.6108
98.5469
120.22
118.064
98.1749
62.8527
24.6295
0.0217985
-8.36685
-8.43386
-6.79704
-6.00747
-5.09163
-4.40974
-4.14066
-4.0151
-3.95709
-3.89936
-3.85613
-3.79924
-3.68124
-3.53102
-3.30901
-3.12831
-2.80652
-2.41728
-2.11145
-1.92566
-1.98655
-1.10385
-1.27629
-1.37697
-1.5053
-1.63737
-1.63056
-1.71374
-1.679
-1.34479
-1.79109
19.7345
72.6179
113.468
123.163
116.951
89.2584
46.1523
9.70219
-6.37967
-8.96726
-8.1095
-6.73436
-5.95331
-5.09146
-4.287
-3.89339
-3.60094
-3.4049
-3.30494
-3.27344
-3.36455
-3.49343
-3.68657
-3.55669
-3.33099
-2.97454
-2.64376
-2.34337
-2.26506
-2.38571
-1.2129
-1.27231
-1.42838
-1.43462
-1.59172
-1.39863
-1.62029
-1.13986
-1.24769
0.520772
33.4453
90.3365
119.075
120.653
107.727
70.4815
28.0021
1.37445
-8.19022
-8.85622
-7.852
-6.62016
-5.84978
-5.04186
-4.212
-3.81665
-3.58793
-3.36797
-3.20297
-3.02995
-2.92071
-2.77691
-2.78121
-2.94406
-3.39824
-3.14892
-2.76595
-2.35713
-2.13711
-1.97468
-0.62421
-0.704188
-0.724974
-0.733393
-0.772451
-0.322237
-0.597772
0.266424
-0.278214
4.01318
45.7478
102.107
120.577
118.092
96.1262
50.6969
11.7864
-4.27217
-9.15054
-8.68978
-7.56739
-6.37284
-5.56076
-4.82158
-4.24544
-3.71796
-3.52782
-3.26877
-3.08779
-2.93094
-2.87959
-2.7885
-2.78126
-2.63064
-2.4205
-2.90344
-2.99946
-2.86849
-2.94223
-3.23132
0.00867991
-0.041391
-0.177375
-0.0731814
-0.274624
0.252325
-0.272789
0.784237
-0.0281164
6.28351
52.6941
107.867
120.622
115.711
86.8797
36.1355
2.18586
-8.284
-10.6828
-9.56296
-7.43607
-6.06641
-5.16462
-4.49865
-4.03845
-3.75632
-3.5132
-3.26394
-3.02332
-2.76251
-2.80034
-2.58316
-2.64556
-2.60458
-2.5787
-2.18892
-2.22951
-2.03566
-1.96798
-2.00779
-0.0213454
0.131814
0.0632694
0.234344
-0.121376
0.600506
-0.0373953
0.860034
0.292923
6.56887
54.6078
109.374
120.775
114.722
83.2028
29.8498
-2.28575
-9.94694
-11.4619
-9.83357
-7.03303
-5.6283
-4.79349
-4.29391
-3.94173
-3.67655
-3.45034
-3.20686
-3.02457
-2.8422
-2.79478
-2.6018
-2.65803
-2.59877
-2.63406
-2.54551
-2.31655
-2.19845
-1.99866
-2.03325
-0.0368138
0.0819602
-0.0243645
0.155928
-0.195435
0.161866
-0.301278
0.427551
0.373887
4.93323
50.9967
107.397
121.716
115.849
87.3626
35.2816
-0.324291
-9.34882
-10.632
-9.09114
-6.5116
-4.74588
-4.00903
-3.78202
-3.71811
-3.59193
-3.40295
-3.15032
-2.93897
-2.72338
-2.64175
-2.46211
-2.49734
-2.45086
-2.43135
-2.25361
-2.22111
-2.11557
-1.93668
-1.91555
-0.0568235
0.0255052
-0.0490515
0.0600261
-0.17034
0.0511905
-0.264371
0.16854
-0.204704
1.93599
42.0562
100.458
121.899
118.684
97.8188
53.129
12.1987
-5.45584
-9.10023
-9.05692
-6.79484
-4.2363
-3.16546
-3.34939
-3.64997
-3.64592
-3.45417
-3.16787
-2.96976
-2.74185
-2.70642
-2.54872
-2.63851
-2.4558
-2.55068
-2.42543
-2.47789
-2.38668
-2.26592
-2.27297
-0.211001
-0.147686
-0.215236
-0.140861
-0.314929
-0.259316
-0.32196
-0.550894
0.27331
-1.28606
28.5496
86.3418
118.799
122.344
109.402
78.5381
40.3103
9.47749
-1.98575
-6.44972
-6.35941
-3.97505
-2.02513
-2.81695
-3.67039
-3.88314
-3.56066
-3.15653
-2.85834
-2.57925
-2.42508
-2.16823
-2.14432
-1.99922
-1.98263
-1.88002
-1.9234
-1.84138
-1.82706
-1.79542
-0.292107
-0.246454
-0.297065
-0.274649
-0.403967
-0.473306
-0.493686
-0.972552
-0.241627
-2.54996
14.0446
64.8361
109.521
123.745
118.634
102.798
76.305
47.2857
24.9225
11.8089
5.35719
2.99405
2.37105
0.340152
-3.1701
-4.35665
-3.79704
-3.13752
-2.87483
-2.58414
-2.61464
-2.5296
-2.58371
-2.48647
-2.53685
-2.39661
-2.45703
-2.29443
-2.29085
-2.18021
-0.478029
-0.425454
-0.471335
-0.47199
-0.590115
-0.727193
-0.776321
-1.30653
-0.959935
-2.60594
2.58937
38.1105
87.3524
117.155
123.682
118.661
106.548
90.0297
73.4738
58.3343
42.8834
29.5128
22.7682
16.2361
5.3712
-2.57172
-3.85359
-2.9923
-2.56411
-2.45307
-2.5996
-2.44426
-2.5499
-2.25851
-2.45254
-2.20924
-2.36909
-2.20374
-2.3338
-2.36112
-0.51756
-0.503716
-0.54261
-0.561173
-0.672361
-0.823817
-0.960899
-1.3451
-1.52558
-2.13158
-2.68674
14.0508
54.2463
96.3508
116.898
123.466
121.291
115.61
110.052
102.622
88.1296
70.2055
55.4732
41.5751
23.3568
6.30102
-1.3828
-2.28183
-2.26799
-2.47187
-2.54303
-2.34097
-2.42634
-2.26489
-2.32457
-2.11265
-2.2262
-1.95774
-1.99202
-1.89563
-0.659469
-0.624219
-0.703459
-0.714321
-0.814738
-0.942917
-1.12162
-1.42296
-1.71392
-2.1214
-3.08993
0.0833954
20.7601
57.458
91.6995
110.127
118.377
120.006
120.306
118.449
108.401
91.7499
74.0864
55.2244
36.7387
18.2759
4.93133
-0.310312
-2.02706
-2.10101
-2.32456
-2.10598
-2.28007
-2.00773
-2.3017
-1.87582
-2.13387
-1.75386
-1.77458
-1.59713
-0.665919
-0.629638
-0.697815
-0.73481
-0.797782
-0.926689
-1.06896
-1.32304
-1.56818
-1.96531
-2.44312
-3.01586
1.2541
19.6162
48.3056
75.0422
93.0103
101.981
107.217
108.641
103.056
91.9301
77.5471
59.5332
41.6201
25.3269
10.1885
1.34413
-1.53442
-1.8487
-2.18171
-2.02612
-2.2624
-1.99247
-2.26832
-1.88234
-2.11432
-1.73187
-1.72324
-1.47215
-0.770463
-0.752552
-0.793234
-0.859769
-0.883935
-0.961028
-1.08942
-1.27068
-1.50445
-1.72919
-2.13169
-2.33646
-2.70499
0.56763
12.4614
31.1792
49.9638
63.6057
72.1547
75.7025
75.9403
72.1984
63.4106
48.1166
32.1651
18.2486
7.14729
0.529591
-1.547
-1.80257
-2.13713
-1.94144
-2.22641
-1.88989
-2.18895
-1.79127
-2.07514
-1.64891
-1.69233
-1.37509
-0.71789
-0.689756
-0.727146
-0.765787
-0.773727
-0.794519
-0.923962
-1.04493
-1.23272
-1.43734
-1.65611
-1.89665
-1.9777
-2.20171
-1.0704
3.92418
13.7177
23.2639
30.4498
34.163
36.1427
33.0547
27.0191
18.8865
10.4788
3.88855
0.21107
-1.75227
-2.11758
-2.0581
-2.27999
-1.98067
-2.27028
-1.85983
-2.18456
-1.71319
-2.05521
-1.53931
-1.63585
-1.24159
-0.816789
-0.81029
-0.827261
-0.851276
-0.845871
-0.802112
-0.886386
-1.01191
-1.16228
-1.31149
-1.52507
-1.64124
-1.85199
-1.82107
-2.01804
-2.30168
-1.28971
0.69736
3.71901
4.7595
4.9032
3.4718
0.369441
-1.35706
-2.14394
-2.2184
-2.02448
-2.43861
-2.41832
-2.18576
-2.4071
-2.01594
-2.33543
-1.85325
-2.20179
-1.6708
-2.00525
-1.43627
-1.50901
-1.02868
-0.68924
-0.66442
-0.680342
-0.635545
-0.646257
-0.553694
-0.601721
-0.703863
-0.868038
-1.01196
-1.22539
-1.37564
-1.56443
-1.70635
-1.84571
-1.95055
-2.29633
-2.9496
-3.12072
-3.56639
-3.92432
-4.38442
-4.24684
-3.42038
-2.76663
-1.95826
-1.82575
-2.28041
-2.46267
-2.2873
-2.49798
-2.03161
-2.40074
-1.79399
-2.2231
-1.50327
-1.95562
-1.08646
-1.23219
-0.45445
-0.791716
-0.821883
-0.75806
-0.72937
-0.651481
-0.586265
-0.567042
-0.607479
-0.80923
-0.949168
-1.17237
-1.32705
-1.56732
-1.73038
-1.99898
-2.28548
-2.55482
-3.04428
-3.29068
-3.5804
-3.26803
-3.18831
-2.97363
-2.70536
-2.32131
-1.94806
-1.91836
-2.42226
-2.6204
-2.36173
-2.64467
-2.09625
-2.53536
-1.87287
-2.32898
-1.57869
-1.88528
-1.04929
-0.773162
0.309352
-0.639423
-0.583872
-0.59806
-0.40069
-0.305484
-0.22085
-0.225987
-0.233883
-0.478924
-0.646278
-0.913722
-1.09464
-1.37811
-1.59379
-1.91229
-2.21959
-2.65191
-3.09994
-3.22696
-3.42184
-3.1572
-3.16699
-2.79213
-2.35618
-2.0611
-1.62965
-1.77743
-2.3268
-2.68893
-2.4025
-2.73059
-2.12339
-2.59755
-1.77629
-2.35768
-1.38488
-1.79233
-0.483827
0.00874696
2.31442
-0.690785
-0.840383
-0.682194
-0.583767
-0.383885
-0.192131
-0.195838
-0.165557
-0.415427
-0.568464
-0.865235
-1.08961
-1.40171
-1.65282
-2.01049
-2.37381
-2.72091
-3.09294
-3.13154
-3.21138
-2.81004
-2.71615
-2.3196
-1.96528
-1.75682
-1.3747
-1.66799
-2.26393
-2.74959
-2.43077
-2.89436
-2.16184
-2.71138
-1.89041
-2.5419
-1.5605
-2.07034
-0.20308
0.472129
4.7423
-0.84283
-0.498031
-0.544552
-0.0898992
0.00383659
0.234021
0.199853
0.201531
-0.0886135
-0.267189
-0.60823
-0.842146
-1.20001
-1.48794
-1.8899
-2.2703
-2.60782
-2.99422
-3.02775
-2.99268
-2.58066
-2.43714
-1.99223
-1.5498
-1.38308
-1.06991
-1.55199
-2.17099
-2.87722
-2.4956
-3.0411
-2.17932
-2.73123
-1.75894
-2.38051
-1.27875
-1.55843
0.828257
3.28228
10.429
-0.363139
-0.9307
-0.786589
-0.644044
-0.15801
0.0779273
0.169963
0.172145
-0.0850475
-0.271247
-0.614282
-0.843233
-1.19737
-1.47954
-1.89046
-2.27875
-2.61911
-3.01488
-3.07856
-2.98262
-2.60427
-2.38059
-1.86639
-1.27142
-1.0659
-0.508641
-1.40827
-1.80646
-2.94897
-2.54797
-3.22227
-2.24954
-2.78708
-1.74735
-2.43281
-1.30668
-1.70356
1.63536
5.80717
17.5803
-3.11414
-0.272794
-0.380652
0.181308
0.33874
0.513562
0.4333
0.421973
0.111002
-0.0853455
-0.434077
-0.666377
-1.03646
-1.36401
-1.83874
-2.28945
-2.66615
-3.07372
-3.03049
-2.74589
-2.3366
-2.02341
-1.41977
-0.83079
-0.717101
-0.379024
-1.38676
-1.87522
-3.10973
-2.73182
-3.33093
-2.22155
-2.59884
-1.45216
-1.88051
-0.274731
0.634754
6.69541
16.6416
35.7306
-0.415388
-0.406302
-0.416081
-0.436285
-0.452909
-0.507168
-0.532867
-0.57731
-0.603922
-0.656421
-0.687846
-0.730419
-0.761146
-0.817033
-0.829686
-0.885979
-0.873449
-0.987101
-0.853319
-1.18361
-0.870826
-1.00559
-1.05694
-1.07925
-0.832466
-0.642264
-0.293523
-0.0568391
0.147026
0.242301
0.157673
0.107659
-0.178126
-0.330714
-0.522814
-0.594238
-0.66972
-0.66059
-0.813585
-0.755883
-0.419627
-0.414784
-0.426968
-0.449407
-0.457728
-0.510375
-0.537219
-0.567979
-0.614119
-0.689644
-0.670303
-0.694324
-0.714586
-0.723848
-0.744759
-0.865208
-0.839297
-0.95743
-0.824033
-1.1496
-0.936572
-1.08707
-1.14332
-1.21659
-0.973712
-0.810078
-0.495734
-0.234348
-0.00152711
0.0966557
0.0193122
-0.0916197
-0.233165
-0.425856
-0.566817
-0.598073
-0.634838
-0.651429
-0.765702
-0.734087
-0.417488
-0.412489
-0.425171
-0.445841
-0.46674
-0.477277
-0.47829
-0.537066
-0.581293
-0.592654
-0.635552
-0.673044
-0.691233
-0.772011
-0.892234
-0.951384
-0.934141
-1.03421
-0.942069
-1.2878
-1.12651
-1.33637
-1.4463
-1.50864
-1.26422
-1.10175
-0.817338
-0.585971
-0.337368
-0.135827
-0.17129
-0.221792
-0.454401
-0.518421
-0.69463
-0.692728
-0.745744
-0.721508
-0.816135
-0.77449
-0.408962
-0.404448
-0.43332
-0.465125
-0.4497
-0.484209
-0.511611
-0.538521
-0.628746
-0.67627
-0.698493
-0.722135
-0.862826
-1.0022
-1.0212
-1.07871
-1.07424
-1.16499
-1.14016
-1.47742
-1.38392
-1.62895
-1.78934
-1.81501
-1.60285
-1.46907
-1.22682
-1.02893
-0.801973
-0.631389
-0.490521
-0.453566
-0.556567
-0.661593
-0.727544
-0.845936
-0.773913
-0.78867
-0.80927
-0.788102
-0.407214
-0.425127
-0.42112
-0.471471
-0.443324
-0.479683
-0.467013
-0.576769
-0.660427
-0.70008
-0.802621
-1.0509
-1.15563
-1.21163
-1.24951
-1.28462
-1.28593
-1.36157
-1.3955
-1.74259
-1.69287
-2.01046
-2.13901
-2.15563
-1.9823
-1.86688
-1.6628
-1.48857
-1.29366
-1.10157
-1.00812
-0.844121
-0.750987
-0.716381
-0.845627
-0.789294
-0.894956
-0.844658
-0.876845
-0.85217
-0.436687
-0.4213
-0.476451
-0.408413
-0.451969
-0.437404
-0.554449
-0.570187
-0.785295
-1.0421
-1.27564
-1.34287
-1.42364
-1.47156
-1.49145
-1.50714
-1.52497
-1.58464
-1.68892
-2.00471
-2.01756
-2.34488
-2.47923
-2.48894
-2.37062
-2.27617
-2.1111
-1.95734
-1.76829
-1.57864
-1.42956
-1.21719
-1.20513
-0.826401
-0.834143
-0.867333
-0.814254
-0.880654
-0.85218
-0.865037
-0.438708
-0.470369
-0.40833
-0.46528
-0.426421
-0.541278
-0.487623
-0.858799
-1.2239
-1.38222
-1.5057
-1.64236
-1.72469
-1.75752
-1.75858
-1.71543
-1.69285
-1.71528
-1.91017
-2.22957
-2.31061
-2.6625
-2.76222
-2.77497
-2.69322
-2.62323
-2.49196
-2.36239
-2.18853
-1.99411
-1.79506
-1.58706
-1.3744
-1.28624
-0.941225
-0.915712
-0.905483
-0.934728
-0.935178
-0.951064
-0.345146
-0.369918
-0.377026
-0.382228
-0.461084
-0.456958
-0.916717
-1.25855
-1.44046
-1.63734
-1.83254
-1.96535
-2.04764
-2.04914
-1.989
-1.88182
-1.8868
-1.92939
-2.16978
-2.46757
-2.64125
-2.93637
-3.02849
-3.03262
-2.98573
-2.92597
-2.82388
-2.71547
-2.56099
-2.37943
-2.15608
-1.89427
-1.62332
-1.41389
-1.11248
-0.909711
-0.850342
-0.884447
-0.906761
-0.930007
-0.451297
-0.472479
-0.487917
-0.565236
-0.615898
-0.976972
-1.22162
-1.46501
-1.69392
-1.9303
-2.14004
-2.30268
-2.39904
-2.35901
-2.26092
-2.02189
-1.85659
-1.74413
-2.18434
-2.63549
-3.01287
-3.18258
-3.26309
-3.24929
-3.21473
-3.15805
-3.07392
-2.98588
-2.85601
-2.69893
-2.48612
-2.22642
-1.91917
-1.60558
-1.3836
-1.03473
-0.931175
-1.04954
-1.01325
-1.06008
-0.388462
-0.441675
-0.508771
-0.636538
-0.823447
-1.12862
-1.39002
-1.65546
-1.91885
-2.19058
-2.44479
-2.64671
-2.74467
-2.65886
-2.38053
-1.9213
-1.87562
-2.12521
-2.63283
-3.13358
-3.62422
-3.6118
-3.5692
-3.49362
-3.4375
-3.36629
-3.28445
-3.20472
-3.08951
-2.95428
-2.76004
-2.5154
-2.19972
-1.85877
-1.51343
-1.28144
-0.941761
-1.01011
-1.01158
-1.04391
-0.49404
-0.540022
-0.616843
-0.773266
-1.04715
-1.34816
-1.5662
-1.84522
-2.12157
-2.42985
-2.75078
-3.02926
-3.21731
-3.14168
-2.90604
-2.19005
-0.633802
1.66825
1.51058
-1.34224
-3.81358
-3.88956
-3.83551
-3.71364
-3.62503
-3.54047
-3.44925
-3.37353
-3.26626
-3.1521
-2.98659
-2.77248
-2.49111
-2.14252
-1.78424
-1.47449
-1.21098
-1.06806
-1.18968
-1.18412
-0.538658
-0.594009
-0.685918
-0.891329
-1.20168
-1.44197
-1.69445
-1.97959
-2.273
-2.61894
-3.01673
-3.45067
-3.78183
-3.46394
-0.579578
7.40743
15.9146
18.4139
12.8568
3.03745
-3.3007
-3.89596
-3.94999
-3.85865
-3.76308
-3.68292
-3.5852
-3.51324
-3.40728
-3.30486
-3.15363
-2.96889
-2.71885
-2.40114
-2.00733
-1.64363
-1.38684
-1.15509
-1.21936
-1.1944
-0.684978
-0.738953
-0.837915
-1.11034
-1.33349
-1.57662
-1.79708
-2.07025
-2.35384
-2.71892
-3.27836
-3.96703
-3.86083
1.65025
16.9526
35.1305
41.2514
34.6239
20.6247
5.05104
-3.63784
-4.35469
-4.1006
-4.06121
-3.8957
-3.79713
-3.67938
-3.61468
-3.51006
-3.42165
-3.28546
-3.15512
-2.94284
-2.65943
-2.30007
-1.89903
-1.58782
-1.4011
-1.30345
-1.39866
-0.785868
-0.844911
-0.999331
-1.24957
-1.43835
-1.66707
-1.86153
-2.11578
-2.3461
-2.72683
-3.45187
-3.97658
2.1779
23.4101
51.2054
63.9725
58.2606
43.2378
24.6364
6.17406
-3.99283
-4.71812
-4.37663
-4.23781
-4.03714
-3.90286
-3.76932
-3.70901
-3.60727
-3.51481
-3.38519
-3.26196
-3.08139
-2.84247
-2.508
-2.11683
-1.74119
-1.49467
-1.4009
-1.44907
-0.981818
-1.02287
-1.24274
-1.41944
-1.58923
-1.7817
-1.9164
-2.11115
-2.22086
-2.5002
-3.46921
0.212701
22.4688
59.2137
83.1073
83.4604
69.5023
50.8153
28.7646
7.02389
-4.22174
-4.97831
-4.53886
-4.37577
-4.10168
-3.94803
-3.79866
-3.74975
-3.66472
-3.60573
-3.51174
-3.41035
-3.25623
-3.04086
-2.75811
-2.39134
-1.98644
-1.72333
-1.5844
-1.66978
-1.01675
-1.16044
-1.31146
-1.49716
-1.65104
-1.82821
-1.91737
-2.10092
-1.99425
-2.38426
-2.30259
12.9884
52.6573
92.3021
105.733
97.2635
78.1191
53.5732
25.9697
3.58498
-5.74704
-5.51611
-5.00639
-4.51547
-4.10575
-3.97877
-3.86649
-3.81578
-3.70337
-3.58532
-3.49928
-3.41315
-3.32964
-3.16073
-2.91294
-2.56816
-2.17254
-1.88196
-1.72555
-1.83319
-1.27944
-1.34948
-1.54106
-1.67804
-1.83739
-1.95807
-1.97816
-2.11945
-1.66811
-2.26343
2.00811
32.9792
81.9554
113.972
117.683
105.502
79.3719
46.2291
15.7868
-2.45443
-7.27687
-5.95535
-5.35452
-4.59968
-4.04039
-3.85901
-3.80501
-3.8203
-3.81018
-3.79024
-3.7316
-3.62357
-3.47674
-3.27281
-3.10366
-2.78678
-2.40531
-2.10103
-1.91927
-1.97999
-1.15346
-1.33523
-1.42927
-1.58102
-1.71698
-1.75959
-1.73654
-1.89025
-1.29427
-2.19696
9.0973
53.2848
102.974
121.168
119.959
105.289
73.0026
35.2028
6.53893
-6.11869
-7.60702
-5.96554
-5.27416
-4.55133
-3.89653
-3.61223
-3.38202
-3.2511
-3.1824
-3.17919
-3.3085
-3.49154
-3.64797
-3.52524
-3.30112
-2.96242
-2.63816
-2.33845
-2.25898
-2.37974
-1.26054
-1.33804
-1.48341
-1.52773
-1.67811
-1.59501
-1.59601
-1.5967
-0.844689
-1.27337
17.9432
71.7484
112.521
120.67
116.029
95.5718
62.2947
25.8901
2.32933
-6.706
-7.30258
-5.69854
-5.09577
-4.42028
-3.7884
-3.51362
-3.35876
-3.20743
-3.07254
-2.92745
-2.83703
-2.71864
-2.73666
-2.93219
-3.36874
-3.13083
-2.762
-2.35006
-2.13069
-1.96703
-0.675188
-0.757183
-0.773823
-0.810917
-0.815587
-0.534931
-0.47929
-0.0610945
0.489788
0.879892
27.0938
84.0344
116.575
120.147
110.574
82.782
47.6509
17.7405
0.88934
-5.90402
-6.66744
-5.20044
-4.65207
-4.13106
-3.74131
-3.39676
-3.27165
-3.11218
-2.9706
-2.83805
-2.80277
-2.74714
-2.72125
-2.59594
-2.37379
-2.90383
-2.99149
-2.86081
-2.92545
-3.21596
0.0604629
-0.011649
-0.137245
-0.0852144
-0.238731
0.0695157
-0.109412
0.346404
0.769946
1.63125
33.2139
91.785
118.406
119.187
105.226
73.0171
36.0523
10.9343
-1.15501
-5.69633
-6.15756
-4.76309
-4.28322
-3.74104
-3.54016
-3.4228
-3.27224
-3.10686
-2.9237
-2.67979
-2.72239
-2.56393
-2.54338
-2.57726
-2.54847
-2.19338
-2.22826
-2.03685
-1.96877
-2.01113
-0.00821456
0.143872
0.0933093
0.198358
-0.0680101
0.363467
0.1395
0.397746
1.02375
1.6912
34.6218
94.1413
120.134
119.141
102.822
70.8716
32.7994
8.72944
-2.30991
-5.97289
-5.03037
-3.91445
-3.54412
-3.46348
-3.40496
-3.32507
-3.1968
-3.03657
-2.91607
-2.75404
-2.7191
-2.56564
-2.5587
-2.57891
-2.60597
-2.52865
-2.3149
-2.18799
-1.98761
-2.01501
-0.0540621
0.0740354
-0.0173598
0.0907583
-0.20988
0.00355931
-0.224797
0.0479013
0.745631
0.716927
30.8573
90.3485
120.855
119.565
105.039
76.1023
39.4508
12.5208
0.150427
-4.3841
-3.93437
-2.28643
-2.51282
-2.92622
-3.26407
-3.25346
-3.15829
-2.96063
-2.84149
-2.63098
-2.56924
-2.42561
-2.42722
-2.41152
-2.42962
-2.21978
-2.21868
-2.09851
-1.9231
-1.89544
-0.0897336
-0.0109864
-0.0652597
-0.018601
-0.178029
-0.166504
-0.111428
-0.518834
0.331608
-0.441468
22.9393
80.5176
119.018
120.678
109.762
87.1635
55.0551
24.9503
8.60729
0.598957
-0.911891
-0.108966
-0.475237
-2.56699
-3.23999
-3.33646
-3.19875
-2.95127
-2.84781
-2.63939
-2.63081
-2.50255
-2.58451
-2.42655
-2.52819
-2.41388
-2.43982
-2.37666
-2.24635
-2.24955
-0.248166
-0.188297
-0.2398
-0.210927
-0.337191
-0.38329
-0.327609
-0.845324
0.270218
-1.87893
13.3088
64.4813
111.36
122.228
115.357
100.986
77.4428
51.6149
30.824
17.7037
9.85211
7.89588
3.58613
-1.53699
-3.77279
-3.68721
-3.30166
-2.90373
-2.69929
-2.46507
-2.35352
-2.13581
-2.09245
-1.98059
-1.95941
-1.8785
-1.89847
-1.83385
-1.81295
-1.78126
-0.319736
-0.280035
-0.320525
-0.321709
-0.418225
-0.521139
-0.513418
-0.97525
-0.357679
-1.56591
4.06372
42.6324
93.5919
119.239
119.562
112.299
99.1054
82.912
67.1534
53.3916
38.8642
27.8275
18.7229
6.79379
-2.29532
-4.2694
-3.51988
-2.89067
-2.69674
-2.48391
-2.55719
-2.48445
-2.59211
-2.45111
-2.55501
-2.38275
-2.45679
-2.2798
-2.28202
-2.17198
-0.480967
-0.44379
-0.483973
-0.495466
-0.591028
-0.711471
-0.770291
-1.13751
-0.960589
-1.49206
-0.963746
21.0084
66.1128
105.914
118.779
118.972
113.443
106.4
99.5888
91.1968
76.2454
58.246
43.4588
26.3873
7.48305
-2.39854
-3.4913
-2.7474
-2.39977
-2.39237
-2.55451
-2.40826
-2.50978
-2.2619
-2.446
-2.19388
-2.36211
-2.19381
-2.32125
-2.344
-0.517731
-0.51118
-0.547689
-0.568234
-0.6558
-0.765898
-0.900641
-1.1707
-1.33194
-1.46648
-2.41273
5.11497
34.6272
74.9418
103.883
115.62
118.188
116.77
115.219
111.889
99.4614
80.867
63.4536
45.18
23.2968
6.21969
-0.856107
-2.01191
-2.18154
-2.40386
-2.4965
-2.30446
-2.40737
-2.29085
-2.28482
-2.09928
-2.21406
-1.9569
-1.98529
-1.88795
-0.650812
-0.623134
-0.697288
-0.7131
-0.791446
-0.914221
-1.04084
-1.26479
-1.45364
-1.66019
-2.05027
-1.15334
10.7605
38.2611
70.2785
94.7863
106.98
112.204
114.473
114.348
104.562
88.0992
71.3076
53.4982
35.0547
17.584
4.62515
-0.406044
-1.99399
-2.06065
-2.29387
-2.08629
-2.26392
-2.00061
-2.29233
-1.88352
-2.1255
-1.75716
-1.76967
-1.59295
-0.654039
-0.617042
-0.682457
-0.71556
-0.766493
-0.872319
-0.979909
-1.1773
-1.35591
-1.5734
-1.77366
-1.89468
0.262062
10.9788
31.8023
55.4429
75.2621
86.0702
92.8525
95.507
90.7247
80.9263
68.7776
53.0862
35.8114
19.8806
6.86284
0.360764
-1.64361
-1.87074
-2.18446
-2.02258
-2.25251
-1.99072
-2.2097
-1.92209
-2.09044
-1.73451
-1.71451
-1.46673
-0.752765
-0.732025
-0.76549
-0.824355
-0.844894
-0.906756
-1.03051
-1.15757
-1.33762
-1.47887
-1.684
-1.66023
-1.57668
0.298101
6.90222
20.1914
34.611
46.0079
55.1436
59.5634
61.0597
57.554
48.4055
35.756
22.2364
11.212
3.3868
-0.491898
-1.64647
-1.82124
-2.1485
-1.94276
-2.22281
-1.88658
-2.17394
-1.79751
-2.05188
-1.64136
-1.68141
-1.36535
-0.689411
-0.660408
-0.687237
-0.713544
-0.718395
-0.728
-0.811197
-0.949413
-1.11301
-1.25872
-1.40256
-1.48553
-1.4087
-1.21269
-0.699084
1.92531
8.41978
15.0174
19.8195
22.2246
24.8461
22.9231
17.6674
10.7974
4.73375
1.00383
-0.715149
-1.84063
-2.08063
-2.03096
-2.27063
-1.97118
-2.26197
-1.85188
-2.17098
-1.70594
-2.0338
-1.52355
-1.62242
-1.22936
-0.790527
-0.77904
-0.788758
-0.796326
-0.792662
-0.742624
-0.821661
-0.919958
-1.08205
-1.19442
-1.35926
-1.42218
-1.52325
-1.42278
-1.44415
-1.50843
-0.868093
0.119177
0.982299
1.00757
1.07601
0.604145
-0.898737
-1.77862
-2.11703
-1.80607
-1.6483
-2.22475
-2.33234
-2.14444
-2.39355
-1.99708
-2.32357
-1.83983
-2.18808
-1.65248
-1.9835
-1.41101
-1.49191
-1.01188
-0.679027
-0.644979
-0.648811
-0.593902
-0.595218
-0.500783
-0.544882
-0.615637
-0.840339
-0.934372
-1.11992
-1.2322
-1.3814
-1.44576
-1.55782
-1.56479
-1.75688
-2.25498
-2.67635
-3.29949
-3.42712
-3.51132
-3.30621
-2.70692
-2.243
-1.68006
-1.67732
-2.20578
-2.42379
-2.25095
-2.48507
-2.00867
-2.39035
-1.78236
-2.21001
-1.48767
-1.92818
-1.06268
-1.20958
-0.437922
-0.783795
-0.79794
-0.737878
-0.690328
-0.612581
-0.53482
-0.521324
-0.553792
-0.783095
-0.909178
-1.1
-1.23058
-1.44565
-1.57467
-1.8043
-2.0266
-2.3082
-2.70913
-2.79476
-3.04767
-2.69908
-2.63634
-2.49756
-2.29368
-2.08595
-1.68167
-1.75094
-2.3198
-2.56602
-2.32873
-2.6391
-2.06751
-2.51509
-1.86009
-2.30705
-1.555
-1.86875
-1.00248
-0.750868
0.332543
-0.62803
-0.562128
-0.571483
-0.3697
-0.273024
-0.17242
-0.185181
-0.181613
-0.439857
-0.616918
-0.857264
-1.03035
-1.29967
-1.49519
-1.79558
-2.07808
-2.43691
-2.79213
-2.85912
-3.05381
-2.71165
-2.67952
-2.34473
-2.0088
-1.80723
-1.45976
-1.66333
-2.26558
-2.63774
-2.35171
-2.69067
-2.10622
-2.5856
-1.76084
-2.34162
-1.35729
-1.76869
-0.433058
0.0331668
2.34924
-0.667776
-0.812675
-0.655852
-0.548171
-0.35418
-0.149543
-0.15741
-0.118645
-0.371329
-0.521019
-0.813674
-1.05112
-1.34368
-1.57341
-1.92591
-2.28511
-2.56412
-2.87412
-2.86092
-2.93695
-2.49052
-2.39579
-2.03731
-1.72255
-1.56513
-1.24002
-1.57697
-2.19592
-2.71394
-2.403
-2.87141
-2.13913
-2.68616
-1.8654
-2.51417
-1.53175
-2.02688
-0.165964
0.53154
4.78927
-0.827868
-0.475932
-0.520898
-0.0566333
0.0324792
0.272622
0.232728
0.244676
-0.0472641
-0.218836
-0.560074
-0.79206
-1.14246
-1.41618
-1.81679
-2.1871
-2.49515
-2.84926
-2.85544
-2.83505
-2.40367
-2.2452
-1.78464
-1.34144
-1.21068
-0.958136
-1.47961
-2.11574
-2.84126
-2.46852
-3.01718
-2.15973
-2.71283
-1.74367
-2.35938
-1.24078
-1.50866
0.889534
3.34744
10.4905
-0.350312
-0.91269
-0.764954
-0.612257
-0.127228
0.113497
0.20206
0.210824
-0.0444192
-0.223175
-0.56157
-0.783401
-1.13483
-1.40881
-1.82681
-2.2152
-2.54244
-2.91231
-2.95147
-2.83988
-2.42644
-2.19849
-1.6812
-1.07414
-0.920995
-0.422949
-1.35602
-1.77885
-2.91832
-2.52193
-3.19926
-2.22933
-2.76571
-1.72721
-2.40026
-1.26908
-1.64564
1.7032
5.88826
17.649
-3.10585
-0.256606
-0.358791
0.21464
0.370237
0.548717
0.455096
0.446674
0.136744
-0.0496272
-0.391026
-0.613555
-0.977245
-1.29415
-1.78314
-2.25084
-2.61212
-2.99038
-2.92148
-2.61703
-2.17635
-1.85825
-1.26686
-0.648322
-0.575562
-0.291807
-1.33514
-1.83962
-3.07446
-2.70751
-3.31032
-2.20551
-2.58396
-1.43536
-1.85272
-0.236843
0.690903
6.76369
16.7069
35.7831
-0.422681
-0.412128
-0.424292
-0.443238
-0.464535
-0.521753
-0.546828
-0.587284
-0.614853
-0.664809
-0.696227
-0.735859
-0.76362
-0.817599
-0.822741
-0.885351
-0.842389
-1.00876
-0.862418
-1.20126
-0.877632
-1.01602
-1.0497
-1.09718
-0.846721
-0.693122
-0.372676
-0.167036
0.0254444
0.103473
0.0449517
-0.00574688
-0.259956
-0.381876
-0.556372
-0.612179
-0.678203
-0.674281
-0.815604
-0.758237
-0.427708
-0.421952
-0.435602
-0.45643
-0.472459
-0.519325
-0.553594
-0.573259
-0.632521
-0.685204
-0.686509
-0.701974
-0.722914
-0.734801
-0.740287
-0.865333
-0.83517
-0.967472
-0.83025
-1.1602
-0.936438
-1.08672
-1.14775
-1.17901
-0.975676
-0.825839
-0.530456
-0.288845
-0.0844447
0.0110091
-0.0759436
-0.138273
-0.296963
-0.449628
-0.571107
-0.612302
-0.644545
-0.67119
-0.76794
-0.734423
-0.425649
-0.419232
-0.435526
-0.453655
-0.476287
-0.489281
-0.511949
-0.546551
-0.597873
-0.611208
-0.64958
-0.684858
-0.698775
-0.763558
-0.88005
-0.949186
-0.928865
-1.0387
-0.941868
-1.28485
-1.09416
-1.30367
-1.38586
-1.47475
-1.23689
-1.08916
-0.817059
-0.608324
-0.367786
-0.183523
-0.222155
-0.266748
-0.514062
-0.510554
-0.731008
-0.701102
-0.759762
-0.74551
-0.818817
-0.77403
-0.424114
-0.418094
-0.446933
-0.474753
-0.476957
-0.493063
-0.531304
-0.551944
-0.643092
-0.685939
-0.716815
-0.731258
-0.849558
-0.994623
-1.02231
-1.06544
-1.06346
-1.15794
-1.10632
-1.459
-1.3384
-1.59037
-1.71738
-1.76952
-1.56094
-1.41803
-1.18598
-0.992053
-0.784287
-0.607751
-0.505797
-0.459114
-0.580451
-0.660795
-0.727746
-0.797862
-0.769577
-0.803022
-0.805622
-0.785107
-0.416594
-0.427569
-0.442136
-0.474337
-0.459291
-0.496464
-0.489101
-0.584714
-0.67844
-0.714262
-0.797032
-1.02439
-1.13902
-1.20914
-1.24682
-1.28391
-1.28152
-1.35519
-1.36978
-1.70319
-1.634
-1.9371
-2.07697
-2.10884
-1.92577
-1.81194
-1.60762
-1.43775
-1.25092
-1.07697
-0.985551
-0.823912
-0.751262
-0.729138
-0.856859
-0.842101
-0.893649
-0.864282
-0.881887
-0.857743
-0.448039
-0.424135
-0.489284
-0.423936
-0.476907
-0.457576
-0.570839
-0.595226
-0.791279
-1.03597
-1.26981
-1.33603
-1.42493
-1.46829
-1.49815
-1.51278
-1.52097
-1.57071
-1.65322
-1.95235
-1.94199
-2.26736
-2.42251
-2.43352
-2.30659
-2.21479
-2.04818
-1.8949
-1.70947
-1.52767
-1.40818
-1.18883
-1.18637
-0.8129
-0.836003
-0.864723
-0.808862
-0.888671
-0.851052
-0.866751
-0.462109
-0.491817
-0.42857
-0.485569
-0.448901
-0.5576
-0.51932
-0.828792
-1.25992
-1.38885
-1.50863
-1.63292
-1.7219
-1.76619
-1.77571
-1.74922
-1.73541
-1.74804
-1.89821
-2.17455
-2.23021
-2.58109
-2.69555
-2.71433
-2.6291
-2.562
-2.43004
-2.301
-2.12961
-1.94691
-1.75645
-1.55416
-1.35377
-1.27422
-0.941453
-0.929078
-0.91927
-0.953923
-0.947134
-0.958515
-0.368085
-0.389073
-0.403867
-0.408159
-0.489047
-0.490738
-0.889255
-1.31348
-1.45159
-1.65219
-1.82917
-1.96395
-2.05356
-2.06888
-2.03269
-1.94254
-1.91242
-1.93049
-2.14645
-2.38236
-2.47949
-2.80133
-2.935
-2.95341
-2.91006
-2.85719
-2.75779
-2.65152
-2.50377
-2.32377
-2.11907
-1.86255
-1.60484
-1.3945
-1.1191
-0.91036
-0.848868
-0.891476
-0.907259
-0.93157
-0.46852
-0.487542
-0.509101
-0.585492
-0.631815
-0.958363
-1.24747
-1.47042
-1.72202
-1.93963
-2.14561
-2.30434
-2.40654
-2.39226
-2.31274
-2.13165
-2.03153
-1.92808
-2.2076
-2.49295
-2.81676
-3.0482
-3.15049
-3.15399
-3.12641
-3.07943
-3.0014
-2.92134
-2.79839
-2.64877
-2.44317
-2.19383
-1.89512
-1.58972
-1.36744
-1.03447
-0.937691
-1.05051
-1.02442
-1.06321
-0.405918
-0.45358
-0.52323
-0.647924
-0.831014
-1.14895
-1.38916
-1.69473
-1.94098
-2.20824
-2.4494
-2.64876
-2.76313
-2.72498
-2.53644
-2.18259
-1.91865
-2.02052
-2.54087
-2.92848
-3.3127
-3.37978
-3.3975
-3.35675
-3.31986
-3.26588
-3.19778
-3.13197
-3.03011
-2.90323
-2.7189
-2.48002
-2.17571
-1.84003
-1.49142
-1.26514
-0.928465
-1.01254
-0.998911
-1.04254
-0.50074
-0.544355
-0.621852
-0.773737
-1.04734
-1.35774
-1.60596
-1.88103
-2.15669
-2.45281
-2.75765
-3.0239
-3.21782
-3.18552
-2.94124
-2.52396
-2.10484
-1.25188
-1.10164
-2.39282
-3.74484
-3.70162
-3.63982
-3.54143
-3.47478
-3.41179
-3.34164
-3.28914
-3.20089
-3.10183
-2.94398
-2.7431
-2.46555
-2.12773
-1.7651
-1.4554
-1.21384
-1.06246
-1.20158
-1.18528
-0.53646
-0.589702
-0.68413
-0.887006
-1.21891
-1.48951
-1.74532
-2.03226
-2.32222
-2.65747
-3.03242
-3.42463
-3.76882
-3.78352
-2.96586
0.282149
6.04271
9.80688
7.95951
1.46734
-3.30607
-3.78615
-3.73164
-3.66325
-3.57287
-3.51138
-3.44458
-3.40873
-3.33276
-3.24786
-3.10959
-2.92552
-2.68824
-2.37833
-1.99174
-1.62891
-1.37131
-1.15318
-1.20648
-1.18856
-0.667796
-0.720508
-0.817322
-1.09815
-1.35434
-1.60919
-1.85302
-2.14013
-2.43013
-2.79795
-3.29443
-3.9084
-4.41465
-2.94358
4.7486
18.4381
28.7213
28.5028
18.8821
5.10073
-3.18317
-3.93028
-3.84709
-3.80436
-3.66805
-3.60823
-3.52497
-3.49678
-3.42703
-3.3633
-3.25033
-3.10247
-2.90977
-2.6345
-2.28277
-1.89187
-1.58275
-1.40253
-1.30747
-1.39699
-0.76227
-0.819593
-0.970346
-1.25861
-1.48792
-1.70576
-1.93625
-2.20533
-2.4759
-2.85961
-3.4741
-4.34093
-3.19125
7.70334
29.1751
49.0768
52.4915
42.0433
24.8094
6.52823
-3.57614
-4.31387
-4.01248
-3.92104
-3.78015
-3.7035
-3.62321
-3.59857
-3.52175
-3.45041
-3.32155
-3.21954
-3.04637
-2.81549
-2.48915
-2.10726
-1.7309
-1.48804
-1.39262
-1.44422
-0.961495
-0.995784
-1.23461
-1.44456
-1.65014
-1.82691
-2.01093
-2.23003
-2.42423
-2.73841
-3.56929
-3.62131
6.25365
33.4722
64.2882
76.4136
68.3938
50.9607
29.5764
8.29835
-3.50311
-4.43098
-4.09874
-3.96915
-3.78464
-3.72748
-3.63955
-3.63838
-3.57505
-3.54132
-3.45227
-3.36334
-3.21446
-3.00975
-2.73666
-2.37822
-1.97849
-1.71656
-1.58399
-1.66126
-1.01181
-1.15595
-1.3285
-1.53862
-1.73261
-1.88772
-2.03906
-2.23411
-2.318
-2.59018
-3.44511
1.42291
26.2738
68.1048
94.6676
96.1431
80.4389
58.8978
33.507
9.13725
-3.87321
-4.62396
-4.28316
-4.02717
-3.71054
-3.72637
-3.69409
-3.70733
-3.61747
-3.53607
-3.43556
-3.37314
-3.29053
-3.13108
-2.89341
-2.55804
-2.17223
-1.88035
-1.72088
-1.83135
-1.29637
-1.36553
-1.57248
-1.72966
-1.93045
-2.04296
-2.12834
-2.2689
-2.1245
-2.3225
-2.1688
12.5467
53.1747
97.0709
114.298
109.463
90.3807
63.5219
32.8753
6.85171
-4.91072
-4.90729
-4.43289
-4.04259
-3.62409
-3.5519
-3.56483
-3.66524
-3.70761
-3.71832
-3.64692
-3.55692
-3.41273
-3.2349
-3.07702
-2.7788
-2.41542
-2.10042
-1.92009
-1.97795
-1.18579
-1.37322
-1.46519
-1.64434
-1.79619
-1.86368
-1.90819
-2.09084
-1.75836
-2.10275
0.86813
27.5753
79.161
114.003
121.332
115.119
95.4068
63.5892
28.4946
3.33093
-5.80056
-5.01472
-4.4418
-3.97573
-3.47517
-3.30313
-3.12598
-3.06347
-3.04092
-3.08031
-3.24936
-3.48645
-3.59578
-3.48657
-3.26869
-2.95986
-2.64715
-2.34684
-2.26223
-2.37934
-1.30048
-1.38542
-1.52826
-1.60894
-1.76464
-1.77244
-1.80832
-1.98684
-1.36547
-1.5067
5.41591
42.9818
96.8752
121.037
121.764
112.453
92.0496
61.5231
26.7731
2.0918
-5.71414
-4.73855
-4.21023
-3.78993
-3.35784
-3.17067
-3.06606
-2.99921
-2.91948
-2.81479
-2.73988
-2.65702
-2.69493
-2.93604
-3.34133
-3.14212
-2.76753
-2.35805
-2.13193
-1.96829
-0.706412
-0.790599
-0.814481
-0.876291
-0.884712
-0.718544
-0.677682
-0.76759
0.0321502
-0.430237
9.57234
55.2813
106.354
123.626
120.061
106.328
84.5493
56.3534
27.3307
4.52852
-4.60611
-4.00366
-3.71597
-3.41686
-3.22927
-3.03433
-2.92727
-2.8614
-2.80471
-2.7249
-2.73628
-2.69193
-2.66494
-2.55555
-2.34236
-2.90004
-2.99061
-2.86139
-2.91825
-3.20416
0.0773349
0.000330002
-0.112502
-0.0928124
-0.242317
-0.0386791
-0.261139
-0.352481
0.411058
-0.242091
12.4707
62.9694
110.608
123.232
117.693
101.204
78.2528
51.0436
27.624
8.46217
-2.50649
-3.31659
-2.99107
-3.04894
-3.00138
-2.99661
-2.95267
-2.86708
-2.76927
-2.58625
-2.63948
-2.51513
-2.48551
-2.554
-2.53704
-2.13204
-2.23896
-2.0324
-1.97365
-2.01482
0.0220038
0.173912
0.143683
0.204577
0.00949775
0.239776
0.050182
-0.277707
0.665068
-0.330922
13.4554
65.1396
112.129
122.657
116.279
99.935
77.337
51.0725
29.8545
13.6535
2.44065
-1.54137
-2.25674
-2.52429
-2.8797
-2.93296
-2.88144
-2.80031
-2.74429
-2.64453
-2.64187
-2.53601
-2.53201
-2.51707
-2.60736
-2.52988
-2.3137
-2.18577
-1.97363
-1.99294
-0.000831368
0.116975
0.0417074
0.0991035
-0.140072
-0.0571897
-0.244754
-0.372315
0.329069
-0.67646
11.1395
60.8571
109.619
121.824
116.205
102.155
82.2857
58.2932
38.4942
22.677
11.4546
3.61895
-0.302907
-2.23929
-2.83094
-2.89571
-2.87137
-2.72924
-2.64479
-2.51485
-2.4891
-2.3819
-2.37667
-2.41687
-2.44601
-2.23001
-2.20172
-2.09572
-1.90887
-1.87786
-0.0328791
0.0209436
-0.0228966
-0.0279636
-0.151707
-0.252806
-0.206175
-0.705444
0.0766866
-1.3262
6.68537
50.1149
101.223
119.66
116.878
106.462
91.667
73.3749
55.6913
38.8762
26.1444
13.4833
2.95252
-2.12968
-2.96471
-3.01112
-2.90849
-2.72252
-2.6593
-2.52131
-2.5505
-2.45782
-2.55824
-2.45032
-2.515
-2.42711
-2.44954
-2.36366
-2.2401
-2.22405
-0.208366
-0.167966
-0.217905
-0.23242
-0.357825
-0.459818
-0.494327
-0.863452
-0.36877
-1.65247
2.23703
35.2467
86.3969
115.678
118.265
111.202
101.422
89.489
79.0872
65.3222
49.4846
32.3165
13.5655
-0.351827
-3.71286
-3.40656
-2.99472
-2.67063
-2.51232
-2.36115
-2.28541
-2.10431
-2.09662
-1.98686
-1.98222
-1.86854
-1.91732
-1.80952
-1.80977
-1.75861
-0.308927
-0.277642
-0.31857
-0.352725
-0.449084
-0.59629
-0.618013
-0.91455
-0.809412
-1.02932
-0.926109
19.1799
64.3299
105.079
117.252
114.77
109.238
102.804
98.5985
91.2317
75.3242
56.8294
34.3723
10.9153
-2.0856
-3.94363
-3.13124
-2.63469
-2.52129
-2.39251
-2.49424
-2.43752
-2.5894
-2.42093
-2.56641
-2.32566
-2.45275
-2.2512
-2.27738
-2.16355
-0.4829
-0.447684
-0.48609
-0.520821
-0.612111
-0.757092
-0.812537
-1.05409
-1.11109
-1.1892
-1.92484
6.57319
37.5096
79.3687
107.51
114.412
114.085
111.465
110.126
107.395
94.567
74.6919
53.9085
29.0006
7.24129
-1.80405
-2.80236
-2.42444
-2.25071
-2.29668
-2.4869
-2.36151
-2.47008
-2.26348
-2.43124
-2.20132
-2.35076
-2.18473
-2.31055
-2.32966
-0.526859
-0.51144
-0.546618
-0.580138
-0.661002
-0.811134
-0.87454
-1.0712
-1.20877
-1.22337
-1.66538
0.693031
15.432
46.4392
81.8445
101.754
109.436
112.598
113.576
112.201
101.844
83.6631
64.4342
43.7637
21.6698
6.55757
-0.224871
-1.71638
-2.0937
-2.28874
-2.42455
-2.24648
-2.37849
-2.22757
-2.3017
-2.07889
-2.19522
-1.93444
-1.9786
-1.87709
-0.644125
-0.618507
-0.678863
-0.69901
-0.770651
-0.888679
-0.97494
-1.14581
-1.28342
-1.39307
-1.53783
-1.41961
2.67918
18.4831
43.7941
70.3682
87.2533
96.6464
102.325
103.226
95.5375
81.1432
66.2245
48.6256
31.1634
14.4085
3.24674
-0.659767
-1.97632
-2.00271
-2.25258
-2.05551
-2.24478
-1.98624
-2.2917
-1.86815
-2.10759
-1.73959
-1.76079
-1.5804
-0.636954
-0.600629
-0.654832
-0.676831
-0.723992
-0.813524
-0.911888
-1.05887
-1.19071
-1.30371
-1.39254
-1.35532
-0.650655
3.28538
15.6883
32.6023
48.1547
62.0902
70.4995
73.5687
70.6361
63.0713
53.6522
38.9381
24.7941
11.8855
3.04284
-0.532629
-1.75001
-1.88595
-2.17999
-2.01279
-2.24227
-1.9821
-2.19018
-1.93631
-2.06695
-1.73352
-1.7039
-1.45808
-0.728526
-0.708361
-0.72796
-0.76603
-0.780196
-0.838726
-0.987289
-1.06502
-1.19195
-1.275
-1.3622
-1.28211
-1.05297
-0.333663
2.18481
9.95938
18.7593
26.9883
33.0243
36.5034
37.7219
35.9525
28.993
19.9148
11.2236
4.50099
0.50219
-1.12545
-1.77803
-1.87188
-2.16025
-1.94898
-2.22184
-1.88537
-2.16605
-1.8051
-2.02262
-1.63469
-1.66642
-1.35319
-0.659472
-0.630166
-0.642298
-0.643954
-0.65349
-0.662058
-0.756871
-0.870697
-1.00253
-1.10243
-1.19215
-1.19218
-1.09525
-0.832414
-0.525406
1.08992
3.22215
7.12999
9.79816
10.34
11.8142
11.0308
7.3468
3.10731
0.891873
-0.349183
-1.07901
-1.84558
-2.07168
-2.0129
-2.25348
-1.96362
-2.25561
-1.85063
-2.16167
-1.70723
-2.01623
-1.5176
-1.61005
-1.22021
-0.747474
-0.738496
-0.738201
-0.721322
-0.730354
-0.682558
-0.759238
-0.856171
-0.993857
-1.08084
-1.20665
-1.23218
-1.26684
-1.15863
-1.04827
-0.939923
-0.707922
-0.249855
-0.215079
-0.699022
-0.48113
-0.805602
-1.52648
-1.79257
-1.87113
-1.42739
-1.33145
-2.09994
-2.28741
-2.12339
-2.3842
-1.99047
-2.31916
-1.8365
-2.18308
-1.64668
-1.97192
-1.38541
-1.47625
-0.99504
-0.625576
-0.60924
-0.585952
-0.530282
-0.532082
-0.449856
-0.486805
-0.542353
-0.743426
-0.848636
-1.01469
-1.10175
-1.2218
-1.2422
-1.30778
-1.28144
-1.38824
-1.74009
-2.11541
-2.68279
-2.48551
-2.37952
-2.25803
-1.9944
-1.80566
-1.41578
-1.51846
-2.13545
-2.39198
-2.21915
-2.47294
-2.00186
-2.3866
-1.78116
-2.20656
-1.48268
-1.93499
-1.02389
-1.18629
-0.426418
-0.742825
-0.759347
-0.709089
-0.640479
-0.569302
-0.481992
-0.471594
-0.4918
-0.705466
-0.825
-1.02591
-1.13913
-1.33502
-1.43662
-1.62698
-1.78941
-2.0474
-2.32586
-2.35473
-2.57349
-2.21288
-2.18604
-2.05296
-1.87211
-1.78083
-1.43026
-1.59628
-2.23115
-2.5282
-2.31521
-2.63077
-2.0687
-2.50046
-1.84934
-2.30211
-1.54051
-1.86481
-0.967747
-0.734772
0.350128
-0.605855
-0.539121
-0.546937
-0.341012
-0.246954
-0.121686
-0.143756
-0.118563
-0.379042
-0.501471
-0.800793
-0.974657
-1.24432
-1.41062
-1.68477
-1.94158
-2.19874
-2.47976
-2.49089
-2.65383
-2.22141
-2.17776
-1.88853
-1.63152
-1.53123
-1.27167
-1.55093
-2.19829
-2.6221
-2.32841
-2.68731
-2.07884
-2.58234
-1.74634
-2.33263
-1.33689
-1.75548
-0.389248
0.0432653
2.37633
-0.653834
-0.793057
-0.640781
-0.518584
-0.334876
-0.10427
-0.115742
-0.0556693
-0.305585
-0.445583
-0.739632
-0.930663
-1.3015
-1.50326
-1.85734
-2.16043
-2.37701
-2.64389
-2.61165
-2.67856
-2.16561
-2.09797
-1.75224
-1.43801
-1.35642
-1.09264
-1.4661
-2.11557
-2.68341
-2.4056
-2.8492
-2.1298
-2.66275
-1.84737
-2.49941
-1.50147
-1.99687
-0.135991
0.585086
4.83299
-0.829595
-0.46782
-0.511848
-0.0322715
0.0536132
0.315199
0.272311
0.308608
0.0174499
-0.145674
-0.489781
-0.717937
-1.08192
-1.3549
-1.77001
-2.10313
-2.37706
-2.69122
-2.669
-2.64101
-2.14424
-1.98667
-1.49699
-1.05304
-1.01626
-0.830064
-1.4046
-2.05642
-2.8163
-2.45057
-2.99918
-2.13675
-2.69647
-1.72624
-2.36264
-1.20914
-1.46906
0.942934
3.40434
10.5518
-0.354992
-0.911989
-0.759754
-0.592034
-0.102211
0.154432
0.246601
0.27267
0.0198209
-0.152311
-0.486674
-0.70264
-1.05998
-1.34787
-1.7952
-2.16278
-2.47119
-2.80963
-2.82375
-2.69105
-2.21372
-1.94745
-1.39807
-0.803553
-0.749962
-0.321228
-1.3006
-1.75883
-2.90891
-2.51786
-3.18861
-2.21146
-2.74156
-1.70283
-2.35136
-1.22529
-1.58177
1.7776
5.96718
17.7227
-3.12638
-0.270405
-0.365693
0.226591
0.396921
0.602005
0.51448
0.51979
0.202708
0.0181772
-0.318058
-0.532162
-0.897171
-1.23444
-1.77152
-2.2205
-2.56083
-2.90478
-2.80789
-2.4751
-1.98164
-1.61292
-0.985727
-0.385506
-0.413381
-0.194941
-1.28638
-1.81549
-3.0687
-2.70684
-3.30017
-2.18738
-2.56395
-1.41616
-1.82654
-0.19466
0.750704
6.8326
16.7782
35.8384
-0.424743
-0.415224
-0.427132
-0.447317
-0.468327
-0.53037
-0.545694
-0.595827
-0.61876
-0.659898
-0.698329
-0.737074
-0.76527
-0.819176
-0.828624
-0.884675
-0.875316
-0.976474
-0.881387
-1.20524
-0.882991
-1.01998
-1.0413
-1.09226
-0.86944
-0.738255
-0.435692
-0.245255
-0.0634112
0.00260618
-0.0166124
-0.0727327
-0.306612
-0.408134
-0.573022
-0.617718
-0.680334
-0.687767
-0.816961
-0.760667
-0.431146
-0.42573
-0.439758
-0.460278
-0.479831
-0.524359
-0.555779
-0.578786
-0.626811
-0.671181
-0.704115
-0.707123
-0.728517
-0.745065
-0.741802
-0.862955
-0.84335
-0.965122
-0.843332
-1.15866
-0.933298
-1.07175
-1.12498
-1.17565
-0.933986
-0.81147
-0.55187
-0.319296
-0.142106
-0.0358812
-0.149979
-0.128707
-0.338214
-0.462951
-0.571167
-0.616208
-0.647908
-0.690563
-0.768012
-0.735601
-0.428066
-0.422931
-0.438325
-0.460277
-0.475677
-0.509412
-0.507009
-0.569194
-0.59534
-0.617035
-0.656472
-0.693649
-0.709247
-0.760318
-0.8729
-0.947489
-0.932178
-1.03106
-0.942247
-1.27766
-1.07741
-1.27268
-1.33876
-1.39215
-1.2082
-1.06266
-0.791397
-0.595443
-0.369433
-0.198302
-0.242544
-0.290154
-0.498179
-0.536089
-0.747808
-0.693162
-0.757951
-0.762517
-0.815253
-0.772426
-0.432702
-0.427512
-0.455933
-0.481877
-0.496008
-0.493374
-0.541124
-0.555942
-0.641814
-0.682504
-0.720722
-0.734883
-0.832945
-0.98721
-1.01557
-1.07771
-1.04642
-1.14527
-1.09874
-1.41817
-1.29846
-1.52582
-1.63548
-1.71012
-1.50125
-1.35673
-1.13101
-0.953435
-0.770822
-0.611655
-0.505967
-0.452627
-0.588809
-0.659871
-0.720333
-0.785335
-0.765318
-0.815394
-0.802851
-0.783081
-0.420907
-0.431577
-0.447788
-0.480497
-0.465046
-0.50889
-0.495122
-0.585841
-0.674033
-0.716781
-0.789604
-1.00776
-1.15292
-1.18961
-1.23703
-1.28759
-1.28626
-1.34777
-1.34771
-1.67069
-1.57265
-1.86987
-1.99134
-2.04229
-1.85986
-1.7377
-1.54034
-1.37741
-1.20088
-1.02907
-0.956906
-0.819483
-0.739557
-0.732333
-0.857181
-0.834423
-0.888983
-0.868545
-0.879302
-0.85722
-0.455701
-0.433253
-0.49788
-0.439865
-0.49383
-0.469965
-0.574663
-0.600247
-0.775526
-0.999214
-1.24127
-1.32927
-1.40042
-1.47055
-1.49428
-1.51796
-1.52101
-1.57002
-1.63509
-1.91565
-1.87475
-2.17846
-2.34976
-2.37062
-2.23224
-2.13359
-1.96826
-1.8141
-1.65625
-1.48124
-1.36614
-1.15632
-1.17895
-0.802274
-0.838411
-0.863647
-0.819084
-0.889795
-0.853158
-0.867274
-0.469674
-0.505671
-0.438703
-0.498657
-0.461902
-0.562903
-0.533298
-0.78906
-1.21471
-1.35968
-1.46014
-1.62642
-1.71028
-1.76522
-1.78372
-1.7754
-1.76814
-1.78409
-1.9065
-2.15365
-2.15741
-2.49054
-2.60332
-2.63041
-2.54033
-2.47533
-2.34445
-2.21998
-2.06027
-1.89105
-1.71835
-1.52476
-1.32488
-1.26369
-0.936669
-0.930793
-0.920071
-0.960179
-0.949145
-0.959885
-0.382481
-0.394422
-0.422432
-0.427504
-0.506968
-0.509748
-0.854063
-1.29695
-1.40517
-1.5905
-1.80897
-1.94653
-2.04528
-2.07396
-2.05401
-1.98973
-1.96584
-1.96325
-2.14127
-2.34109
-2.33322
-2.65394
-2.81392
-2.8493
-2.80718
-2.75801
-2.66177
-2.56277
-2.42772
-2.2661
-2.06735
-1.82343
-1.57456
-1.36747
-1.10497
-0.906079
-0.849733
-0.895595
-0.908377
-0.932449
-0.486477
-0.501785
-0.52492
-0.599902
-0.64442
-0.938217
-1.25743
-1.43968
-1.66852
-1.91122
-2.11227
-2.28874
-2.38761
-2.39472
-2.34044
-2.19668
-2.13781
-2.07049
-2.31742
-2.44248
-2.64081
-2.88651
-2.9998
-3.01973
-2.99707
-2.95828
-2.89117
-2.82518
-2.71627
-2.58419
-2.39308
-2.15761
-1.86577
-1.55414
-1.3598
-1.02555
-0.939031
-1.04643
-1.02918
-1.06225
-0.432196
-0.472908
-0.539269
-0.65757
-0.833548
-1.151
-1.42001
-1.66965
-1.93233
-2.18588
-2.43426
-2.6234
-2.73705
-2.73274
-2.60055
-2.33585
-2.15822
-2.07296
-2.41672
-2.64818
-2.96445
-3.08502
-3.18025
-3.16708
-3.14516
-3.10941
-3.06476
-3.02345
-2.9421
-2.8325
-2.66314
-2.43502
-2.14224
-1.80304
-1.47955
-1.26192
-0.923134
-1.01558
-0.99039
-1.04183
-0.523271
-0.560349
-0.633856
-0.777745
-1.04614
-1.37994
-1.60801
-1.89789
-2.16129
-2.45555
-2.73241
-2.97904
-3.15704
-3.15208
-2.98247
-2.57386
-2.39969
-2.23
-2.54517
-2.8464
-3.44717
-3.36938
-3.38232
-3.29756
-3.25743
-3.22329
-3.19064
-3.17161
-3.1092
-3.02955
-2.88787
-2.69628
-2.43545
-2.10041
-1.75877
-1.45739
-1.20589
-1.05425
-1.20827
-1.18334
-0.560288
-0.606018
-0.69374
-0.885862
-1.22524
-1.50832
-1.76697
-2.07026
-2.35812
-2.67765
-3.01279
-3.36754
-3.6399
-3.76125
-3.50513
-2.48675
-0.481463
1.85889
1.96431
-0.718458
-3.34549
-3.51385
-3.47608
-3.41189
-3.35101
-3.33024
-3.30039
-3.2956
-3.24015
-3.17613
-3.05318
-2.89213
-2.64709
-2.3486
-1.97473
-1.62362
-1.37325
-1.14591
-1.2008
-1.18504
-0.681628
-0.725336
-0.814077
-1.08865
-1.36601
-1.66908
-1.91374
-2.20747
-2.48884
-2.84702
-3.28081
-3.78733
-4.33409
-4.35982
-2.26101
4.41519
12.5032
16.8118
13.1703
3.76883
-2.8935
-3.60204
-3.50319
-3.52437
-3.4284
-3.42502
-3.38822
-3.39231
-3.33799
-3.29054
-3.19555
-3.05101
-2.86966
-2.60154
-2.26153
-1.87422
-1.57794
-1.3889
-1.30566
-1.391
-0.766454
-0.817531
-0.94591
-1.25279
-1.50141
-1.79171
-2.02099
-2.30992
-2.58728
-2.98826
-3.49199
-4.30642
-4.84725
-2.33464
8.59721
25.2506
36.8541
35.7236
23.5438
6.98134
-2.81502
-3.70992
-3.5499
-3.57749
-3.49688
-3.49353
-3.46928
-3.48872
-3.43049
-3.37912
-3.28081
-3.15555
-3.0027
-2.78012
-2.46414
-2.08992
-1.72692
-1.48534
-1.386
-1.43966
-0.945665
-0.96754
-1.19028
-1.42498
-1.66508
-1.92059
-2.10798
-2.36211
-2.59662
-2.98407
-3.63718
-4.67884
-3.15842
8.88768
33.2285
55.7509
60.7653
49.542
29.7784
8.99663
-2.73242
-3.74452
-3.5297
-3.5105
-3.45017
-3.49456
-3.46978
-3.51449
-3.47475
-3.46615
-3.37722
-3.30268
-3.16411
-2.97055
-2.70716
-2.35559
-1.96917
-1.70509
-1.57426
-1.64891
-0.97787
-1.09872
-1.28357
-1.52373
-1.75173
-1.99161
-2.15544
-2.40694
-2.59154
-2.98196
-3.73618
-4.16521
4.40096
31.4968
66.4323
84.5902
79.4842
60.1617
36.0536
11.6279
-2.55616
-3.69793
-3.4845
-3.45447
-3.26963
-3.44786
-3.50719
-3.58469
-3.51593
-3.4581
-3.35274
-3.3215
-3.24161
-3.09226
-2.86034
-2.53778
-2.15578
-1.87004
-1.71228
-1.82425
-1.23167
-1.30655
-1.52353
-1.71719
-1.94492
-2.12986
-2.26193
-2.47352
-2.51533
-2.79635
-3.50964
-1.21329
18.8361
59.9363
95.9885
106.784
95.1229
71.6636
43.1899
14.2872
-2.35616
-3.60765
-3.41726
-3.36065
-3.11625
-3.18225
-3.26701
-3.4748
-3.58802
-3.6485
-3.56079
-3.47708
-3.3421
-3.18914
-3.0381
-2.7435
-2.38829
-2.08682
-1.90296
-1.96349
-1.11164
-1.31346
-1.4222
-1.64719
-1.83073
-2.01516
-2.10246
-2.34251
-2.35571
-2.60384
-2.91509
4.88454
38.6213
85.6744
114.406
118.641
107.306
84.3247
50.9484
16.5799
-1.99887
-3.25666
-3.19906
-3.17983
-2.9144
-2.90815
-2.80287
-2.82941
-2.86924
-3.01055
-3.20906
-3.46654
-3.52756
-3.42896
-3.22185
-2.9212
-2.62379
-2.33267
-2.24586
-2.36528
-1.25578
-1.35301
-1.51204
-1.63941
-1.81683
-1.94575
-2.04565
-2.30314
-2.10247
-2.05361
-1.19701
13.6506
58.7161
104.621
121.62
121.223
112.176
93.2454
59.0229
20.0353
-1.23362
-2.79652
-2.74454
-2.91001
-2.73855
-2.73638
-2.69283
-2.72852
-2.71285
-2.69917
-2.63766
-2.59155
-2.67584
-2.96481
-3.30714
-3.07559
-2.75442
-2.34189
-2.12776
-1.95619
-0.673226
-0.768742
-0.815312
-0.915375
-0.942187
-0.908447
-0.925694
-1.06321
-0.744366
-0.99336
0.480467
21.5866
73.7169
114.815
124.086
119.566
112.014
97.3452
67.9852
28.2427
1.25892
-1.97529
-2.03796
-2.51432
-2.49746
-2.62809
-2.56547
-2.6097
-2.58622
-2.60843
-2.62833
-2.62002
-2.59382
-2.51191
-2.35677
-2.87155
-2.98599
-2.85069
-2.90242
-3.18073
0.0334741
-0.036666
-0.139836
-0.163777
-0.308278
-0.290159
-0.448022
-0.676764
-0.389407
-0.744546
1.18207
26.4606
80.5683
118.594
124.297
118.555
110.473
98.8951
77.0303
41.1719
7.34397
-0.751328
-1.35102
-2.04467
-2.35777
-2.62936
-2.61239
-2.61611
-2.51311
-2.51279
-2.51482
-2.44816
-2.43993
-2.51799
-2.50814
-2.16332
-2.19034
-2.0348
-1.96855
-2.01308
-0.0254583
0.129879
0.111589
0.125527
-0.0298025
0.0168775
-0.0954118
-0.456884
-0.124569
-0.665629
1.24358
27.3817
81.0318
118.16
123.891
118.525
110.666
101.023
85.4275
57.5556
20.1841
2.36415
-0.818989
-1.81877
-2.27107
-2.52621
-2.55575
-2.57173
-2.55074
-2.52775
-2.54936
-2.46383
-2.49365
-2.47116
-2.5864
-2.53221
-2.26638
-2.17986
-1.96429
-1.97464
-0.0524475
0.0695779
0.0125442
0.0289557
-0.156125
-0.181884
-0.35183
-0.533703
-0.292638
-0.881699
0.318346
24.3517
75.7815
114.701
123.152
118.661
111.415
105.798
94.8358
75.139
42.2229
11.6681
0.171288
-1.41883
-2.32811
-2.48686
-2.5497
-2.5075
-2.47473
-2.40206
-2.40601
-2.32925
-2.33897
-2.3839
-2.42211
-2.20753
-2.18161
-2.06269
-1.90354
-1.8546
-0.0738887
-0.0173167
-0.0480154
-0.080811
-0.190508
-0.352088
-0.387861
-0.787463
-0.578978
-1.30327
-0.952942
17.3869
63.8654
106.71
121.08
119.374
113.243
109.966
104.675
92.4123
66.4532
29.9146
5.32224
-1.60122
-2.55486
-2.56989
-2.56618
-2.48934
-2.48082
-2.40706
-2.46515
-2.40597
-2.47344
-2.4643
-2.48775
-2.42776
-2.42674
-2.34717
-2.21437
-2.19478
-0.217615
-0.17719
-0.218777
-0.257517
-0.383407
-0.538957
-0.652562
-0.935288
-0.9615
-1.33589
-2.0249
9.52141
46.5454
91.5088
115.742
119.364
115.569
112.949
111.202
103.614
85.4605
52.9403
19.4841
0.471972
-3.16454
-2.85723
-2.5998
-2.41631
-2.35494
-2.25511
-2.22356
-2.06872
-2.08851
-1.97839
-2.00002
-1.8547
-1.92985
-1.79831
-1.78303
-1.73899
-0.278624
-0.254443
-0.293515
-0.344326
-0.452555
-0.61751
-0.728728
-1.01165
-1.10923
-1.32107
-2.22747
3.02263
27.8172
68.681
102.448
115.336
116.073
114.933
114.818
110.489
95.1053
70.2941
40.7345
12.2798
-0.687458
-2.88348
-2.58499
-2.34349
-2.3681
-2.27162
-2.4138
-2.37531
-2.53562
-2.39901
-2.55192
-2.29695
-2.46006
-2.22174
-2.24365
-2.14163
-0.420106
-0.403555
-0.441534
-0.488048
-0.593703
-0.736093
-0.86333
-1.08129
-1.19656
-1.3381
-1.82802
-0.255671
12.1297
41.3199
76.1313
101.601
111.04
113.724
115.24
113.076
99.8236
78.7639
55.1636
28.9226
8.97119
-0.0653835
-1.97957
-2.08664
-2.10898
-2.20545
-2.41114
-2.30988
-2.43837
-2.26169
-2.42732
-2.21335
-2.36192
-2.17049
-2.28167
-2.29631
-0.476402
-0.467661
-0.497228
-0.532125
-0.621951
-0.749402
-0.877881
-1.05235
-1.17728
-1.28734
-1.51429
-1.44522
2.76341
17.892
42.4786
71.2668
90.9064
100.924
106.993
108.266
99.0785
81.1572
60.408
39.129
19.6784
5.69958
-0.293486
-1.53818
-2.02136
-2.2027
-2.35177
-2.19053
-2.34726
-2.20108
-2.30138
-2.07591
-2.20315
-1.93891
-1.95109
-1.85841
-0.616185
-0.591025
-0.623685
-0.639033
-0.712498
-0.819236
-0.947694
-1.08405
-1.18917
-1.28052
-1.30967
-1.30256
-0.0131559
5.01564
17.2149
34.4052
53.613
68.9039
79.0178
84.2672
80.5017
69.0858
54.0571
36.6
20.5227
7.91724
0.92689
-1.0218
-1.95104
-1.99412
-2.2096
-2.03219
-2.22646
-1.98559
-2.3131
-1.84906
-2.09966
-1.75481
-1.74181
-1.57074
-0.609735
-0.575428
-0.604095
-0.605583
-0.652619
-0.739677
-0.895098
-0.985733
-1.08474
-1.15121
-1.17861
-1.04652
-0.756726
1.08774
4.55957
12.4746
21.9572
31.2495
39.6959
45.6122
44.7134
40.0348
30.8743
20.1879
11.2032
4.02596
0.231734
-1.20777
-1.82331
-1.92828
-2.17642
-2.00617
-2.23147
-1.97801
-2.17058
-1.96408
-2.02009
-1.7479
-1.68425
-1.44946
-0.703693
-0.684836
-0.685744
-0.69454
-0.704829
-0.758929
-0.854754
-0.980093
-1.08738
-1.14025
-1.17238
-1.08095
-0.859247
-0.376766
1.03014
2.63458
6.69833
10.5839
13.8625
14.9407
15.8351
14.7327
10.818
6.30575
2.76746
0.330008
-0.668257
-1.52559
-1.87263
-1.90609
-2.16804
-1.94592
-2.21703
-1.88135
-2.16008
-1.80026
-2.00633
-1.62398
-1.65413
-1.3394
-0.644118
-0.604125
-0.608925
-0.579386
-0.592961
-0.600175
-0.695532
-0.822115
-0.922626
-0.993636
-1.05037
-1.02138
-0.936855
-0.650757
-0.353649
0.319984
0.844335
1.50701
2.40742
2.06245
1.93004
1.58586
0.36057
0.0494516
-0.311508
-0.738945
-1.13636
-1.87101
-2.10751
-2.01309
-2.26821
-1.95585
-2.25061
-1.84157
-2.15067
-1.69436
-2.00083
-1.50654
-1.5979
-1.20423
-0.738093
-0.718939
-0.711397
-0.667849
-0.671822
-0.630073
-0.710432
-0.821477
-0.949629
-0.998313
-1.10206
-1.11015
-1.1306
-1.02585
-0.933252
-0.782239
-0.712338
-0.594845
-0.493383
-1.25905
-1.7306
-1.83912
-1.92712
-1.62106
-1.53737
-1.16714
-1.2845
-2.03635
-2.27135
-2.10857
-2.37599
-1.97169
-2.3123
-1.82066
-2.1709
-1.62459
-1.95158
-1.36671
-1.46183
-0.974927
-0.618648
-0.587372
-0.556737
-0.486938
-0.470058
-0.413738
-0.441832
-0.491625
-0.700112
-0.792176
-0.933646
-1.00589
-1.11355
-1.12518
-1.19164
-1.17826
-1.2311
-1.49184
-1.65916
-2.11083
-1.95419
-1.86458
-1.69213
-1.50985
-1.50836
-1.21994
-1.42728
-2.08734
-2.39517
-2.19314
-2.4662
-1.99019
-2.37789
-1.76257
-2.18782
-1.46947
-1.86465
-1.03653
-1.17106
-0.408439
-0.72714
-0.730766
-0.683066
-0.597706
-0.52742
-0.435253
-0.443543
-0.415183
-0.601337
-0.760637
-0.962743
-1.05813
-1.23668
-1.33256
-1.52015
-1.66929
-1.87092
-2.08304
-2.08962
-2.31136
-1.96447
-1.92805
-1.73117
-1.52116
-1.51072
-1.23121
-1.49141
-2.15566
-2.47934
-2.29145
-2.61574
-2.04898
-2.46958
-1.82809
-2.2574
-1.51317
-1.82566
-0.917422
-0.70242
0.376269
-0.584417
-0.508783
-0.519458
-0.304806
-0.227899
-0.0721114
-0.143292
-0.061821
-0.295801
-0.404837
-0.731792
-0.903916
-1.14817
-1.32388
-1.61914
-1.83635
-2.02478
-2.26072
-2.23385
-2.36912
-1.87774
-1.81211
-1.52477
-1.29895
-1.29605
-1.08334
-1.45765
-2.13948
-2.59802
-2.29364
-2.66766
-2.06628
-2.59595
-1.72876
-2.32931
-1.29999
-1.71862
-0.314323
0.0711872
2.4142
-0.620452
-0.762462
-0.615185
-0.491555
-0.328257
-0.0710094
-0.130516
-0.0231468
-0.248423
-0.363364
-0.645794
-0.814642
-1.14143
-1.41969
-1.80877
-2.02045
-2.22405
-2.47688
-2.44185
-2.47126
-1.91777
-1.80955
-1.44278
-1.16903
-1.16529
-0.949419
-1.424
-2.09127
-2.66594
-2.38171
-2.82319
-2.10395
-2.62333
-1.81813
-2.4581
-1.473
-1.92268
-0.0802593
0.664178
4.89006
-0.812219
-0.446794
-0.498912
-0.0139511
0.0414165
0.337016
0.241291
0.32319
0.0562009
-0.0833769
-0.414488
-0.644374
-1.02637
-1.33537
-1.75256
-2.02778
-2.27479
-2.55637
-2.51084
-2.45969
-1.8687
-1.62325
-1.13992
-0.799557
-0.84022
-0.694136
-1.34218
-2.02281
-2.81796
-2.43551
-2.97635
-2.10696
-2.66761
-1.69389
-2.33053
-1.15731
-1.40502
1.04481
3.4967
10.6394
-0.343979
-0.902179
-0.752676
-0.583206
-0.109337
0.156153
0.218629
0.279409
0.0539296
-0.0967811
-0.422251
-0.644958
-1.02626
-1.35228
-1.8026
-2.12826
-2.4137
-2.72263
-2.71099
-2.54058
-1.94979
-1.59026
-1.07095
-0.561583
-0.593925
-0.22173
-1.25734
-1.75343
-2.9204
-2.5128
-3.16516
-2.18222
-2.70429
-1.66688
-2.30799
-1.18095
-1.49804
1.874
6.10463
17.8316
-3.11801
-0.260687
-0.359077
0.232692
0.384147
0.584391
0.478866
0.53951
0.266282
0.106715
-0.222887
-0.451436
-0.860801
-1.25724
-1.80388
-2.20137
-2.51625
-2.82937
-2.70196
-2.32439
-1.71856
-1.22692
-0.653575
-0.154673
-0.265796
-0.101029
-1.24789
-1.81831
-3.08607
-2.70207
-3.27502
-2.15509
-2.52832
-1.38281
-1.78951
-0.155206
0.824224
6.93579
16.8925
35.947
-0.430205
-0.421207
-0.435929
-0.452426
-0.480301
-0.531965
-0.556759
-0.595908
-0.628782
-0.659776
-0.706931
-0.741449
-0.771732
-0.820806
-0.830247
-0.879429
-0.87171
-0.966379
-0.885624
-1.21093
-0.882569
-1.01976
-1.03438
-1.08713
-0.878257
-0.754238
-0.481823
-0.296055
-0.121835
-0.0449812
-0.0684075
-0.0999308
-0.334959
-0.412362
-0.574621
-0.617622
-0.681055
-0.70915
-0.819122
-0.767301
-0.439276
-0.43288
-0.449136
-0.465925
-0.492067
-0.526897
-0.56667
-0.58521
-0.633144
-0.67445
-0.707626
-0.713987
-0.736947
-0.750514
-0.74391
-0.857893
-0.842633
-0.963224
-0.839635
-1.16185
-0.92524
-1.06827
-1.09766
-1.16963
-0.934024
-0.824138
-0.558099
-0.347405
-0.166468
-0.0632542
-0.162958
-0.137274
-0.356272
-0.470377
-0.5635
-0.61106
-0.646509
-0.711165
-0.768871
-0.740107
-0.436701
-0.429314
-0.448129
-0.464894
-0.486044
-0.51468
-0.525818
-0.569692
-0.60723
-0.625046
-0.668398
-0.703076
-0.718164
-0.763749
-0.871089
-0.943168
-0.927432
-1.02534
-0.932289
-1.26462
-1.05677
-1.23773
-1.31278
-1.35712
-1.1596
-1.03392
-0.77801
-0.577198
-0.370271
-0.197748
-0.241078
-0.291877
-0.490081
-0.528826
-0.745659
-0.686717
-0.753122
-0.778578
-0.812876
-0.773933
-0.443582
-0.438587
-0.465373
-0.492221
-0.505989
-0.503164
-0.549982
-0.563526
-0.648904
-0.687194
-0.729064
-0.741023
-0.827613
-0.978825
-1.01076
-1.06959
-1.05605
-1.13341
-1.06309
-1.39144
-1.24287
-1.49102
-1.57839
-1.66251
-1.48259
-1.33135
-1.08866
-0.924449
-0.735596
-0.574451
-0.489746
-0.440611
-0.589917
-0.652994
-0.717486
-0.773487
-0.762621
-0.823234
-0.800894
-0.783136
-0.432572
-0.437065
-0.459987
-0.482859
-0.474853
-0.51228
-0.506751
-0.584505
-0.6818
-0.721412
-0.791779
-0.992023
-1.14704
-1.20632
-1.23216
-1.26612
-1.27066
-1.34917
-1.33203
-1.65193
-1.52232
-1.78979
-1.90867
-1.98944
-1.79878
-1.67387
-1.46988
-1.31257
-1.17029
-1.01369
-0.94592
-0.802353
-0.736307
-0.734674
-0.85297
-0.839168
-0.875329
-0.873791
-0.876255
-0.857788
-0.46837
-0.454233
-0.499784
-0.457435
-0.503254
-0.480599
-0.576908
-0.611585
-0.772328
-0.987793
-1.21692
-1.31162
-1.40909
-1.45049
-1.49693
-1.52696
-1.52757
-1.57119
-1.61003
-1.87872
-1.80503
-2.08892
-2.24107
-2.27029
-2.13148
-2.04473
-1.88591
-1.75766
-1.59953
-1.43794
-1.33881
-1.15424
-1.16704
-0.79671
-0.841107
-0.8656
-0.827231
-0.890804
-0.853737
-0.868651
-0.482739
-0.507123
-0.454171
-0.505048
-0.472762
-0.561849
-0.548378
-0.765542
-1.21147
-1.3518
-1.46261
-1.56221
-1.67143
-1.75148
-1.77615
-1.78212
-1.77949
-1.80361
-1.89641
-2.13392
-2.08681
-2.38775
-2.4897
-2.50849
-2.41731
-2.35936
-2.24705
-2.14059
-2.00891
-1.84177
-1.68499
-1.48913
-1.32461
-1.25402
-0.935209
-0.936074
-0.920879
-0.963718
-0.950852
-0.961329
-0.407558
-0.422789
-0.44165
-0.446414
-0.517628
-0.528123
-0.825562
-1.30684
-1.41259
-1.60161
-1.7326
-1.88455
-2.00181
-2.04904
-2.05248
-2.01032
-1.99567
-1.99252
-2.13572
-2.31045
-2.19532
-2.51261
-2.65556
-2.68657
-2.64628
-2.61992
-2.55205
-2.47863
-2.36483
-2.21158
-2.03492
-1.794
-1.55231
-1.36728
-1.10178
-0.905879
-0.849322
-0.89945
-0.910203
-0.934924
-0.510143
-0.519597
-0.542834
-0.611208
-0.653265
-0.920626
-1.2624
-1.4381
-1.68231
-1.85735
-2.05677
-2.21458
-2.32903
-2.35587
-2.32463
-2.22941
-2.17874
-2.12788
-2.329
-2.3964
-2.44463
-2.69572
-2.8024
-2.81962
-2.80963
-2.80893
-2.77507
-2.73501
-2.64739
-2.52767
-2.35148
-2.11938
-1.84103
-1.55413
-1.35245
-1.0221
-0.939416
-1.04391
-1.03152
-1.06179
-0.463946
-0.49976
-0.558773
-0.668599
-0.833512
-1.15862
-1.408
-1.69384
-1.89353
-2.15336
-2.35512
-2.54029
-2.65002
-2.65657
-2.5855
-2.39772
-2.28014
-2.19977
-2.43495
-2.49535
-2.67229
-2.80826
-2.92843
-2.93256
-2.94718
-2.96128
-2.95131
-2.93413
-2.8697
-2.7716
-2.61279
-2.39181
-2.11072
-1.79733
-1.46903
-1.2526
-0.917383
-1.01663
-0.987165
-1.04327
-0.553498
-0.585703
-0.652358
-0.785762
-1.04433
-1.383
-1.63987
-1.85654
-2.15396
-2.40467
-2.65695
-2.86814
-3.00918
-3.02485
-2.89695
-2.6303
-2.41777
-2.31014
-2.59179
-2.71864
-3.00724
-2.98682
-3.07957
-3.04589
-3.0625
-3.08088
-3.08249
-3.08418
-3.03479
-2.96393
-2.83134
-2.64922
-2.39705
-2.07507
-1.7389
-1.44463
-1.19925
-1.04854
-1.21127
-1.18212
-0.596109
-0.636828
-0.716668
-0.896397
-1.23855
-1.52611
-1.80613
-2.07304
-2.35642
-2.64301
-2.93059
-3.1953
-3.41283
-3.44038
-3.35497
-2.90566
-2.40002
-1.74895
-1.62399
-2.27323
-3.2098
-3.1524
-3.20582
-3.15957
-3.15663
-3.18352
-3.18869
-3.20496
-3.16362
-3.10738
-2.99075
-2.83945
-2.61114
-2.31827
-1.95253
-1.61019
-1.36378
-1.14018
-1.19641
-1.18401
-0.715185
-0.75416
-0.832245
-1.09267
-1.3799
-1.68151
-1.91682
-2.24325
-2.51223
-2.83519
-3.18473
-3.56013
-3.88612
-4.07639
-3.67504
-1.99476
1.31193
4.52012
4.44034
0.625187
-2.97611
-3.26357
-3.21504
-3.26352
-3.21337
-3.26186
-3.26707
-3.29518
-3.25672
-3.2192
-3.1305
-3.01743
-2.82497
-2.5664
-2.23457
-1.85703
-1.56847
-1.38045
-1.30531
-1.38705
-0.803252
-0.850079
-0.958428
-1.26524
-1.51307
-1.81071
-2.05043
-2.36687
-2.64575
-3.00004
-3.42414
-3.90873
-4.51278
-4.32439
-1.94178
5.66155
15.092
20.3377
16.3887
5.40431
-2.35323
-3.21149
-3.13924
-3.26716
-3.25123
-3.3067
-3.33251
-3.38244
-3.34423
-3.3018
-3.21692
-3.1033
-2.96226
-2.74188
-2.4352
-2.07088
-1.7135
-1.4797
-1.37852
-1.43695
-0.976838
-0.994022
-1.18823
-1.42845
-1.66432
-1.94313
-2.16328
-2.4539
-2.70745
-3.08201
-3.57663
-4.3225
-4.83801
-2.6257
7.29633
24.4652
38.5009
39.7539
27.4557
9.22335
-1.88189
-3.07418
-2.9614
-3.07053
-3.13583
-3.29212
-3.3242
-3.39737
-3.37763
-3.38779
-3.33146
-3.23857
-3.11011
-2.9264
-2.67114
-2.32945
-1.95019
-1.69235
-1.56423
-1.63894
-1.00893
-1.10176
-1.28307
-1.5209
-1.74936
-2.02783
-2.24167
-2.53297
-2.79283
-3.17581
-3.78839
-4.6469
-4.3676
4.67994
26.2275
52.5391
63.6674
56.341
36.0098
12.176
-1.71007
-3.02011
-2.82471
-2.9053
-2.83635
-3.18703
-3.34625
-3.47597
-3.42099
-3.3703
-3.29653
-3.26867
-3.1931
-3.04902
-2.82474
-2.51406
-2.1383
-1.86298
-1.70217
-1.81707
-1.24472
-1.30576
-1.50751
-1.70273
-1.93449
-2.19954
-2.37898
-2.64379
-2.80932
-3.15125
-3.77023
-4.77099
-1.128
18.5915
52.8469
81.4762
86.794
71.9147
45.0572
15.9083
-1.1082
-2.7787
-2.55199
-2.70651
-2.58818
-2.81267
-2.96363
-3.2688
-3.46207
-3.55715
-3.49049
-3.39889
-3.26945
-3.14739
-2.99656
-2.71854
-2.36978
-2.07014
-1.88802
-1.95183
-1.09521
-1.27514
-1.38951
-1.6164
-1.81547
-2.07049
-2.25455
-2.55634
-2.7888
-3.17618
-3.84755
-4.19197
5.68245
37.5147
77.8815
102.916
105.124
88.5515
57.4048
21.2438
0.136851
-2.39249
-2.14834
-2.47905
-2.34845
-2.52703
-2.50248
-2.60607
-2.69436
-2.90378
-3.14872
-3.44385
-3.4559
-3.3713
-3.15778
-2.89856
-2.592
-2.31887
-2.22667
-2.35117
-1.2258
-1.31198
-1.46417
-1.6133
-1.80524
-2.05116
-2.23601
-2.57917
-2.67809
-2.90569
-3.318
-2.00737
16.1333
56.2805
95.6408
113.135
115.663
103.46
73.0537
29.2635
2.27738
-1.8951
-1.55508
-2.21618
-2.16791
-2.38345
-2.40266
-2.51067
-2.5285
-2.57704
-2.53693
-2.53211
-2.6521
-3.03834
-3.27507
-3.05518
-2.7231
-2.3329
-2.11038
-1.94972
-0.595701
-0.695592
-0.768834
-0.901714
-0.95717
-1.04322
-1.08898
-1.34484
-1.41057
-1.72136
-2.50185
0.497766
25.3955
71.2044
105.891
117.282
119.423
113.889
89.5109
43.691
6.67869
-0.326346
-1.12587
-1.86474
-2.10844
-2.30554
-2.30701
-2.41202
-2.43427
-2.48538
-2.5296
-2.53885
-2.52138
-2.4537
-2.37991
-2.88398
-2.90591
-2.85051
-2.86705
-3.15456
-0.0418722
-0.0942795
-0.192286
-0.243257
-0.4005
-0.524779
-0.627982
-0.977579
-1.08871
-1.44959
-2.43233
2.02095
31.3513
79.4854
110.816
118.884
120.501
119.044
105.705
63.9803
15.9379
0.796411
0.10642
-1.59652
-1.85041
-2.28192
-2.34251
-2.37743
-2.39094
-2.40463
-2.40424
-2.37191
-2.43207
-2.47587
-2.45086
-2.13453
-2.17453
-2.00813
-1.96563
-2.01023
-0.0794641
0.0657082
0.0484515
0.019756
-0.0850369
-0.244556
-0.337251
-0.683334
-0.816546
-1.25119
-2.46188
2.22997
32.2822
80.5663
111.855
119.671
121.253
120.708
117.162
87.6967
33.5173
3.82769
-0.103313
-1.27867
-1.83061
-2.1923
-2.29455
-2.38228
-2.41963
-2.42165
-2.44796
-2.39001
-2.41508
-2.48406
-2.55999
-2.48467
-2.25639
-2.12007
-1.94577
-1.95446
-0.112903
-0.0100516
-0.0582559
-0.0773783
-0.234468
-0.354096
-0.480823
-0.747354
-0.779992
-1.38883
-2.61847
1.63284
28.0937
74.8085
108.663
119.456
121.255
121.328
121.926
106.943
59.8628
13.3996
0.0555498
-1.16987
-1.93093
-2.14678
-2.28397
-2.31931
-2.35837
-2.30484
-2.32624
-2.27195
-2.31634
-2.36391
-2.39291
-2.17398
-2.17665
-2.04141
-1.87777
-1.84733
-0.135105
-0.0852199
-0.119538
-0.17484
-0.29418
-0.497228
-0.603561
-0.919199
-1.09565
-1.44386
-2.69499
-0.0991246
20.393
62.6371
100.343
117.007
120.802
121.995
122.818
115.579
83.2893
34.8043
5.7148
-1.11264
-2.02951
-2.17715
-2.27061
-2.29306
-2.36121
-2.30885
-2.38954
-2.33885
-2.48743
-2.3923
-2.47012
-2.40219
-2.42604
-2.33047
-2.19641
-2.18137
-0.270951
-0.232213
-0.275723
-0.334252
-0.470701
-0.66005
-0.802962
-1.07923
-1.29467
-1.77671
-2.54567
-1.61959
11.2874
44.7285
84.388
109.049
118.17
121.043
122.603
117.717
95.706
57.7338
20.8455
2.29269
-1.96644
-2.25439
-2.24333
-2.20105
-2.24519
-2.13641
-2.16411
-2.03842
-2.08937
-1.96721
-2.02067
-1.83671
-1.93205
-1.80498
-1.78664
-1.7304
-0.330409
-0.295724
-0.335187
-0.398453
-0.523936
-0.714051
-0.849161
-1.10774
-1.30871
-1.69574
-2.36346
-2.28719
4.37758
25.3264
59.5081
90.4649
108.301
115.918
119.735
117.475
100.262
71.5112
40.1291
13.8329
1.08471
-1.8411
-2.14257
-2.11301
-2.24214
-2.11407
-2.32419
-2.29267
-2.47476
-2.34648
-2.51325
-2.27951
-2.43278
-2.236
-2.24082
-2.12705
-0.455754
-0.417979
-0.449194
-0.503845
-0.626338
-0.796792
-0.942072
-1.13012
-1.31747
-1.53645
-1.98386
-2.24174
0.212781
10.3651
32.3654
60.1913
84.3921
99.361
108.237
109.696
97.0487
74.0307
48.6596
25.0932
7.63867
0.194836
-1.63143
-1.871
-2.02047
-2.08957
-2.33785
-2.2661
-2.41524
-2.2492
-2.42488
-2.23216
-2.35784
-2.20339
-2.30269
-2.3059
-0.487285
-0.449895
-0.466523
-0.505456
-0.613896
-0.76822
-0.91484
-1.06072
-1.2012
-1.34601
-1.52312
-1.73865
-0.795813
2.45581
12.1789
28.8152
48.8469
66.3477
79.0862
84.9852
79.5055
64.0216
44.4778
25.7399
11.0682
2.25957
-0.946335
-1.51807
-2.0475
-2.12262
-2.28985
-2.14128
-2.31885
-2.17481
-2.28924
-2.07831
-2.18661
-1.95004
-1.98164
-1.86897
-0.590473
-0.564207
-0.570746
-0.585799
-0.677514
-0.805869
-0.978234
-1.06374
-1.17114
-1.24762
-1.32842
-1.32256
-1.19738
-0.0345999
2.72075
9.11033
18.6513
29.5033
39.5488
46.3805
46.2801
39.2981
27.6116
16.2488
7.43263
1.81191
-0.606715
-1.34196
-1.93874
-1.986
-2.18216
-2.01545
-2.21024
-1.98141
-2.28345
-1.87622
-2.08499
-1.75961
-1.75807
-1.56962
-0.590512
-0.555593
-0.559168
-0.547928
-0.604691
-0.706516
-0.875896
-0.946949
-1.03312
-1.08799
-1.1245
-1.07342
-0.914725
-0.57273
0.441747
1.78926
5.18803
8.94039
12.9466
15.3627
15.8496
13.3552
9.55446
5.25405
1.84246
-0.153452
-0.810947
-1.52785
-1.93859
-1.95442
-2.17397
-2.00154
-2.22491
-1.97345
-2.16226
-1.96476
-2.01571
-1.74727
-1.68225
-1.43906
-0.687488
-0.670699
-0.658375
-0.648817
-0.668098
-0.723988
-0.839156
-0.947795
-1.03207
-1.07248
-1.1036
-1.04443
-0.923075
-0.628063
-0.241974
0.295426
0.516811
1.40378
2.36028
2.08099
2.09872
2.0269
0.77022
-0.272298
-0.670651
-0.673476
-1.02199
-1.70044
-1.95882
-1.94488
-2.18453
-1.95451
-2.21873
-1.88089
-2.15895
-1.77757
-2.02893
-1.62805
-1.65087
-1.33
-0.633499
-0.592789
-0.597541
-0.547108
-0.571923
-0.569459
-0.662873
-0.798121
-0.865828
-0.923037
-0.979701
-0.964117
-0.925251
-0.756263
-0.572239
-0.306052
0.0324981
-0.24218
-0.533484
-1.09592
-0.98861
-0.68793
-0.71848
-0.861409
-0.928083
-0.926687
-1.22276
-1.89694
-2.13192
-2.00979
-2.26565
-1.9561
-2.25212
-1.84362
-2.15119
-1.6964
-1.9988
-1.50456
-1.58891
-1.19634
-0.732203
-0.716158
-0.709628
-0.656549
-0.657953
-0.62477
-0.674916
-0.674408
-0.873896
-0.924977
-1.02824
-1.0443
-1.08167
-1.01427
-0.971195
-0.865636
-0.838049
-0.970798
-1.13183
-1.72824
-1.79071
-1.7165
-1.59715
-1.36126
-1.28868
-1.05033
-1.31772
-2.01884
-2.2789
-2.10573
-2.37597
-1.98617
-2.3104
-1.82498
-2.17321
-1.6245
-1.94748
-1.36342
-1.45246
-0.962165
-0.616641
-0.590357
-0.561982
-0.485503
-0.462865
-0.423654
-0.457483
-0.4656
-0.64745
-0.731911
-0.861723
-0.947131
-1.07054
-1.10115
-1.19346
-1.22018
-1.31839
-1.4948
-1.5511
-1.86458
-1.61263
-1.54961
-1.40772
-1.25772
-1.3273
-1.08542
-1.37118
-2.06379
-2.4174
-2.18144
-2.46735
-1.98468
-2.36455
-1.76151
-2.18733
-1.47027
-1.87546
-1.03999
-1.1659
-0.405685
-0.735674
-0.738946
-0.70103
-0.597454
-0.535831
-0.430892
-0.516813
-0.451167
-0.617642
-0.725766
-0.91338
-1.01992
-1.21832
-1.33086
-1.54066
-1.66262
-1.80725
-1.97414
-1.94647
-2.12972
-1.69882
-1.63729
-1.44084
-1.26299
-1.31567
-1.08474
-1.43294
-2.10695
-2.44275
-2.27798
-2.63816
-2.05406
-2.47965
-1.82344
-2.26817
-1.51015
-1.84495
-0.928773
-0.695202
0.382702
-0.59628
-0.519908
-0.534761
-0.311314
-0.250315
-0.0617681
-0.224186
-0.152634
-0.354566
-0.444489
-0.654597
-0.877451
-1.1583
-1.3549
-1.61977
-1.77228
-1.92749
-2.12089
-2.06368
-2.17301
-1.59732
-1.50287
-1.24344
-1.0648
-1.12072
-0.947154
-1.38918
-2.09487
-2.58324
-2.26246
-2.63406
-2.04068
-2.56186
-1.71747
-2.32051
-1.28857
-1.73977
-0.3024
0.0417179
2.4357
-0.640094
-0.773976
-0.633012
-0.497002
-0.35287
-0.0692857
-0.203409
-0.143504
-0.360881
-0.454118
-0.717407
-0.887758
-1.20808
-1.43823
-1.72053
-1.9281
-2.13528
-2.34879
-2.29802
-2.30922
-1.66816
-1.49892
-1.18519
-0.959685
-1.0037
-0.81586
-1.37789
-2.0555
-2.6728
-2.38285
-2.81624
-2.09434
-2.62717
-1.80322
-2.44948
-1.4513
-1.9178
-0.0816593
0.709194
4.92557
-0.829517
-0.458092
-0.514566
-0.0175453
0.0154281
0.338529
0.168344
0.196583
-0.0793537
-0.205551
-0.516406
-0.742921
-1.12321
-1.39377
-1.73673
-1.96637
-2.20105
-2.45047
-2.38789
-2.29832
-1.5835
-1.29116
-0.909441
-0.601129
-0.683833
-0.569148
-1.2823
-1.99988
-2.79247
-2.39984
-2.94887
-2.07365
-2.64707
-1.66995
-2.30264
-1.11589
-1.38379
1.06731
3.52754
10.7019
-0.351206
-0.907532
-0.760425
-0.58653
-0.123188
0.140687
0.152921
0.14754
-0.0893607
-0.227509
-0.538769
-0.763037
-1.14804
-1.43334
-1.8222
-2.10045
-2.37043
-2.65095
-2.61492
-2.38503
-1.66697
-1.28718
-0.84608
-0.374753
-0.463229
-0.13923
-1.22924
-1.75854
-2.92014
-2.49935
-3.14244
-2.15056
-2.67325
-1.63584
-2.27826
-1.14463
-1.4438
1.92925
6.15648
17.9245
-3.11754
-0.25726
-0.356281
0.241418
0.389239
0.585693
0.408455
0.378035
0.0917648
-0.0328094
-0.338309
-0.575723
-1.00532
-1.36443
-1.83263
-2.18102
-2.48201
-2.76626
-2.60638
-2.16663
-1.43128
-0.932663
-0.433978
0.0231475
-0.143308
-0.0250992
-1.22166
-1.82395
-3.08795
-2.6878
-3.2464
-2.11768
-2.49436
-1.35305
-1.75182
-0.107643
0.869932
6.99014
16.9369
36.0038
-0.433135
-0.424466
-0.436731
-0.455359
-0.478655
-0.532116
-0.549958
-0.601551
-0.624168
-0.660235
-0.697851
-0.736992
-0.760578
-0.816088
-0.822205
-0.875847
-0.867301
-0.947004
-0.865451
-1.18466
-0.848593
-0.999376
-1.00911
-1.05695
-0.838806
-0.714423
-0.434766
-0.247721
-0.081445
-0.00571746
-0.0480743
-0.0581981
-0.302137
-0.389897
-0.555239
-0.61104
-0.682809
-0.739184
-0.814289
-0.772793
-0.440377
-0.435988
-0.450318
-0.469417
-0.491641
-0.524437
-0.556797
-0.586747
-0.622675
-0.669254
-0.692659
-0.707287
-0.723332
-0.743617
-0.735144
-0.849205
-0.832892
-0.947321
-0.818314
-1.11947
-0.865721
-1.02395
-1.06066
-1.13162
-0.912071
-0.795151
-0.542155
-0.330839
-0.142783
-0.0337469
-0.126589
-0.0984444
-0.328078
-0.450279
-0.551026
-0.600349
-0.65202
-0.730538
-0.770404
-0.743942
-0.435847
-0.430802
-0.447883
-0.46661
-0.480816
-0.5214
-0.52032
-0.577874
-0.595085
-0.617411
-0.653955
-0.692133
-0.707726
-0.760062
-0.867191
-0.947278
-0.923312
-1.01034
-0.910575
-1.2392
-1.03076
-1.21475
-1.27692
-1.3307
-1.11567
-0.988894
-0.738233
-0.540465
-0.351593
-0.17687
-0.214244
-0.262778
-0.451154
-0.51564
-0.722771
-0.679455
-0.752917
-0.791634
-0.81041
-0.774646
-0.443583
-0.443247
-0.466591
-0.502246
-0.503727
-0.504416
-0.54813
-0.562236
-0.635082
-0.671781
-0.70892
-0.723972
-0.815083
-0.977792
-1.00952
-1.06808
-1.04235
-1.13286
-1.05935
-1.3746
-1.20906
-1.43687
-1.52794
-1.58549
-1.418
-1.27198
-1.0444
-0.874263
-0.694191
-0.542769
-0.454301
-0.405725
-0.560841
-0.632233
-0.706583
-0.765604
-0.772639
-0.82638
-0.80178
-0.783805
-0.42848
-0.436436
-0.460104
-0.47225
-0.474086
-0.51187
-0.503554
-0.578506
-0.661279
-0.70263
-0.770703
-0.981603
-1.13095
-1.19983
-1.24241
-1.29429
-1.27023
-1.31971
-1.30033
-1.61325
-1.49433
-1.75404
-1.86961
-1.91707
-1.72929
-1.61055
-1.44209
-1.30035
-1.13787
-0.97587
-0.910707
-0.771324
-0.701192
-0.715126
-0.837113
-0.823101
-0.870864
-0.868852
-0.870274
-0.854713
-0.468962
-0.462818
-0.505038
-0.468596
-0.505613
-0.485419
-0.571416
-0.600866
-0.751893
-0.962788
-1.20911
-1.29006
-1.37739
-1.46003
-1.48495
-1.51056
-1.52224
-1.57633
-1.60415
-1.8649
-1.75964
-1.98859
-2.15917
-2.18797
-2.059
-1.96328
-1.819
-1.69346
-1.56089
-1.41493
-1.31913
-1.13036
-1.14813
-0.78221
-0.836676
-0.857948
-0.83022
-0.888336
-0.85603
-0.870339
-0.475915
-0.50772
-0.446522
-0.502869
-0.470785
-0.555464
-0.539323
-0.744378
-1.18536
-1.34244
-1.44049
-1.5783
-1.68005
-1.73976
-1.77389
-1.79394
-1.78756
-1.8123
-1.87465
-2.10485
-2.01212
-2.25596
-2.35232
-2.39363
-2.31983
-2.28363
-2.18771
-2.10055
-1.94794
-1.81158
-1.63316
-1.47947
-1.29994
-1.23865
-0.92677
-0.928352
-0.916897
-0.957446
-0.945828
-0.957695
-0.414655
-0.427729
-0.451899
-0.456444
-0.52165
-0.530435
-0.813292
-1.28949
-1.4034
-1.57068
-1.75744
-1.85305
-1.95961
-2.01949
-2.03347
-2.01499
-2.0066
-2.01382
-2.11778
-2.28587
-2.06383
-2.41116
-2.50011
-2.56107
-2.54321
-2.53328
-2.47887
-2.41231
-2.31216
-2.15472
-1.99193
-1.75998
-1.53643
-1.35078
-1.09414
-0.90019
-0.848998
-0.900904
-0.913469
-0.937871
-0.507809
-0.522262
-0.544703
-0.615303
-0.655547
-0.916736
-1.25668
-1.43889
-1.65698
-1.85647
-2.00901
-2.16756
-2.2615
-2.30103
-2.29246
-2.23206
-2.20883
-2.17118
-2.32862
-2.35187
-2.24357
-2.51672
-2.59999
-2.66944
-2.69506
-2.71961
-2.70019
-2.67071
-2.58525
-2.4746
-2.28811
-2.08012
-1.79849
-1.52974
-1.34132
-1.01315
-0.933349
-1.0377
-1.02554
-1.05724
-0.478848
-0.514195
-0.570332
-0.675266
-0.836847
-1.16268
-1.41964
-1.67227
-1.89413
-2.0932
-2.31022
-2.44696
-2.54891
-2.56935
-2.52401
-2.41757
-2.33987
-2.28653
-2.46346
-2.41165
-2.40232
-2.56375
-2.68673
-2.75845
-2.8184
-2.86218
-2.87068
-2.86353
-2.80805
-2.71378
-2.56234
-2.35137
-2.07842
-1.76949
-1.46105
-1.24397
-0.918628
-1.01415
-0.991672
-1.045
-0.563052
-0.597325
-0.662161
-0.793482
-1.04984
-1.4045
-1.63838
-1.91148
-2.10027
-2.36949
-2.56463
-2.74333
-2.85145
-2.86223
-2.79674
-2.60273
-2.50811
-2.39429
-2.58307
-2.50173
-2.61044
-2.63159
-2.78964
-2.83561
-2.91026
-2.96741
-2.99445
-3.00948
-2.96945
-2.90463
-2.77516
-2.60118
-2.35457
-2.04456
-1.72064
-1.43587
-1.18915
-1.04445
-1.20255
-1.17685
-0.618788
-0.659855
-0.737545
-0.913172
-1.25783
-1.55005
-1.81814
-2.0611
-2.3474
-2.58575
-2.82958
-3.03237
-3.16968
-3.21092
-3.08714
-2.88591
-2.61907
-2.49016
-2.5618
-2.56851
-2.80674
-2.6896
-2.87418
-2.9054
-2.97532
-3.05045
-3.08867
-3.12135
-3.09318
-3.04437
-2.93425
-2.78624
-2.56728
-2.28035
-1.93089
-1.59654
-1.3609
-1.13229
-1.19972
-1.18355
-0.73541
-0.775751
-0.855174
-1.11038
-1.41812
-1.71509
-1.98545
-2.2677
-2.50624
-2.78605
-3.06102
-3.32455
-3.5428
-3.57913
-3.5129
-2.977
-2.52489
-1.56201
-1.11814
-1.8014
-2.90189
-2.71607
-2.82184
-2.96637
-3.00694
-3.10972
-3.16054
-3.2063
-3.18062
-3.15317
-3.06765
-2.9542
-2.77222
-2.52448
-2.20266
-1.83761
-1.55545
-1.36942
-1.29541
-1.37876
-0.83257
-0.881424
-0.991907
-1.29929
-1.56906
-1.86283
-2.11664
-2.41245
-2.67327
-2.97677
-3.28888
-3.64141
-3.90901
-4.07768
-3.59682
-2.37144
0.949432
4.47956
5.18327
1.35086
-2.48512
-2.66866
-2.65142
-2.85703
-3.00373
-3.12848
-3.20877
-3.28368
-3.26153
-3.23514
-3.15227
-3.06842
-2.89673
-2.70065
-2.3987
-2.04543
-1.69795
-1.4696
-1.36949
-1.43068
-1.00255
-1.02516
-1.2164
-1.46923
-1.72217
-2.00608
-2.23404
-2.50725
-2.75882
-3.07861
-3.45786
-3.90338
-4.36252
-4.23441
-2.87628
3.03778
11.8663
18.1705
16.5051
6.44399
-1.57253
-2.3963
-2.32095
-2.47129
-2.76711
-3.09751
-3.20273
-3.29016
-3.28538
-3.30676
-3.25733
-3.17671
-3.04612
-2.88501
-2.63119
-2.29971
-1.92778
-1.67762
-1.54994
-1.6233
-1.03923
-1.1294
-1.32369
-1.57016
-1.8202
-2.10288
-2.34464
-2.61897
-2.89015
-3.2444
-3.65399
-4.22705
-4.64168
-3.91111
2.04511
15.6506
30.4429
36.7005
28.827
11.2077
-0.916073
-2.27773
-2.0725
-2.17325
-2.32118
-2.87989
-3.19522
-3.37669
-3.33511
-3.30269
-3.24512
-3.21736
-3.14453
-3.00891
-2.77925
-2.482
-2.11005
-1.8443
-1.68636
-1.79976
-1.27672
-1.33459
-1.54056
-1.74527
-1.99042
-2.25696
-2.46782
-2.72205
-2.93753
-3.26414
-3.7174
-4.39791
-4.96555
-1.58662
12.157
34.8102
52.7606
55.9708
40.2845
15.5069
-0.402987
-1.90449
-1.81041
-1.96638
-2.067
-2.43991
-2.66416
-3.04003
-3.32722
-3.47298
-3.41309
-3.34195
-3.19672
-3.10898
-2.94652
-2.67949
-2.33585
-2.04696
-1.8645
-1.93113
-1.1041
-1.27039
-1.41464
-1.63964
-1.86175
-2.11795
-2.3413
-2.61942
-2.92462
-3.36754
-3.86373
-4.61452
-4.38862
3.94241
26.4366
55.1049
73.3767
74.6606
52.7215
20.5835
0.412613
-1.72134
-1.49141
-1.84281
-1.89497
-2.24224
-2.28713
-2.42848
-2.53737
-2.79506
-3.08035
-3.40256
-3.39108
-3.30638
-3.08537
-2.85233
-2.5475
-2.29558
-2.19897
-2.32641
-1.26107
-1.31946
-1.45724
-1.61268
-1.80813
-2.05906
-2.27054
-2.59536
-2.79777
-3.11393
-3.52899
-4.01085
-2.20777
11.9145
40.544
70.2471
88.7187
92.1902
68.67
28.6228
2.15569
-1.40813
-1.10064
-1.70964
-1.75301
-2.13244
-2.19112
-2.3431
-2.39015
-2.47363
-2.4502
-2.48029
-2.63867
-3.10203
-3.2378
-2.99993
-2.68861
-2.29415
-2.08869
-1.93061
-0.506318
-0.591864
-0.703321
-0.843634
-0.948792
-1.06978
-1.16705
-1.31214
-1.51046
-1.895
-2.56254
-3.51303
-0.083879
18.8418
51.6702
80.0824
97.4497
104.332
87.1489
42.5295
5.66689
-0.456585
-0.706351
-1.54582
-1.63074
-2.05294
-2.10974
-2.25828
-2.3093
-2.38444
-2.44006
-2.47384
-2.4499
-2.37884
-2.40398
-2.88556
-2.87249
-2.80572
-2.82916
-3.11333
-0.129383
-0.15075
-0.240455
-0.296503
-0.478342
-0.647595
-0.786751
-0.984388
-1.22952
-1.66792
-2.43574
-3.66997
1.00589
23.4516
58.1653
85.3606
101.579
109.961
104.008
63.7126
14.1429
0.282702
0.0998846
-1.3998
-1.52592
-2.01663
-2.14349
-2.20691
-2.28636
-2.31131
-2.33678
-2.33015
-2.37436
-2.41205
-2.37223
-2.10238
-2.14006
-1.97296
-1.96442
-2.00168
-0.121666
0.0132601
-0.0136556
-0.0624072
-0.175375
-0.351544
-0.513334
-0.770041
-0.979633
-1.53367
-2.33987
-3.80022
0.93131
23.9751
58.9846
86.4612
102.265
110.954
115.186
87.0016
30.3764
2.27827
0.00958074
-1.1407
-1.47821
-1.93108
-2.06809
-2.21452
-2.30179
-2.33455
-2.34283
-2.37757
-2.41404
-2.41296
-2.50547
-2.41751
-2.22297
-2.09946
-1.88955
-1.91529
-0.158368
-0.0883135
-0.12308
-0.171441
-0.305234
-0.473384
-0.608134
-0.847189
-1.0052
-1.45869
-2.62093
-4.12296
0.111673
20.1901
53.7335
82.4305
99.7301
109.731
116.809
104.148
55.0343
10.9073
-0.151959
-1.03825
-1.57372
-1.85006
-2.04141
-2.14428
-2.22218
-2.20337
-2.26143
-2.26674
-2.30066
-2.29106
-2.3301
-2.14138
-2.16324
-2.02182
-1.86389
-1.81589
-0.187082
-0.14473
-0.188373
-0.250643
-0.382074
-0.57152
-0.719202
-0.99382
-1.244
-1.60401
-2.62002
-3.97442
-0.928848
13.4253
42.9073
72.3355
92.7918
105.807
113.265
107.964
76.3315
30.1046
5.56091
-0.45055
-1.49471
-1.7951
-2.00061
-2.11672
-2.20343
-2.22587
-2.29625
-2.36596
-2.39277
-2.35616
-2.42315
-2.37297
-2.4032
-2.31437
-2.16921
-2.14503
-0.305551
-0.279141
-0.327962
-0.394845
-0.531656
-0.713443
-0.877375
-1.12406
-1.3961
-1.81082
-2.58961
-3.35874
-2.18023
6.04133
27.9467
56.2772
80.0141
96.6832
105.983
103.895
83.1309
47.9894
18.0899
3.23113
-1.00963
-1.68218
-1.9209
-2.01121
-2.08216
-2.07914
-2.11641
-2.0321
-2.06881
-1.94739
-1.98659
-1.84605
-1.92746
-1.79444
-1.77142
-1.70787
-0.360615
-0.333635
-0.380318
-0.445787
-0.575202
-0.742193
-0.901279
-1.12887
-1.36552
-1.69784
-2.2643
-2.80283
-2.7278
0.93584
12.9127
34.747
57.9327
77.0947
90.1222
93.0047
78.8697
53.5814
28.4428
9.46265
0.735968
-1.34774
-1.81059
-1.92546
-2.08975
-2.0443
-2.25069
-2.23345
-2.40765
-2.29459
-2.45295
-2.2473
-2.39219
-2.20032
-2.21628
-2.11298
-0.473985
-0.44282
-0.479835
-0.535962
-0.65958
-0.809428
-0.967103
-1.14074
-1.32904
-1.5507
-1.87225
-2.24271
-2.23589
-1.43559
3.17543
14.574
30.9017
47.9769
61.7709
68.2064
61.6736
44.8672
27.0892
11.6339
2.39525
-0.81044
-1.56774
-1.77488
-1.96793
-2.09876
-2.30089
-2.24298
-2.40821
-2.22072
-2.41448
-2.20242
-2.33414
-2.15382
-2.24609
-2.24539
-0.50193
-0.465123
-0.485868
-0.525927
-0.636096
-0.771503
-0.924529
-1.05684
-1.19766
-1.33986
-1.51975
-1.67271
-1.76798
-1.51082
-0.75074
2.86508
9.94581
19.2549
28.6197
34.6695
33.1844
25.464
15.3784
7.24999
1.75677
-0.527351
-1.33431
-1.56015
-2.01575
-2.0881
-2.24404
-2.10901
-2.29605
-2.16052
-2.25247
-2.05467
-2.15903
-1.90983
-1.9151
-1.81322
-0.593515
-0.563548
-0.572073
-0.593108
-0.684596
-0.798096
-0.942678
-1.04492
-1.14954
-1.23384
-1.31396
-1.36728
-1.34386
-1.28283
-1.09617
-0.855578
0.911555
3.60264
6.81966
9.52458
10.0866
7.51005
4.64312
1.98704
-0.00632785
-0.616358
-1.09408
-1.50112
-1.98158
-1.98623
-2.16649
-2.00316
-2.19546
-1.97644
-2.28452
-1.84471
-2.07096
-1.73754
-1.71752
-1.54096
-0.580466
-0.546254
-0.545497
-0.546177
-0.605499
-0.685829
-0.786549
-0.909305
-1.00535
-1.06687
-1.11695
-1.10727
-1.07367
-0.89001
-0.871211
-0.813608
-1.35803
-1.079
-0.76623
-0.754413
0.294108
-0.204235
-0.6946
-0.939599
-1.12285
-0.891843
-1.13936
-1.67052
-1.99254
-1.96497
-2.17434
-1.98888
-2.21316
-1.95833
-2.14911
-1.94552
-2.00497
-1.73168
-1.66067
-1.42039
-0.67882
-0.662146
-0.647693
-0.642526
-0.675614
-0.718825
-0.81667
-0.918408
-1.01284
-1.06224
-1.10345
-1.08217
-1.03264
-0.892539
-0.763827
-0.68455
-0.779123
-1.12736
-1.73781
-2.21948
-1.73768
-1.32737
-1.17011
-1.09222
-1.0356
-0.905513
-1.25325
-1.78289
-2.0209
-1.95556
-2.19076
-1.94393
-2.21053
-1.87266
-2.14768
-1.76277
-2.02151
-1.61009
-1.63417
-1.31302
-0.623638
-0.584184
-0.590986
-0.537549
-0.592882
-0.589237
-0.678135
-0.755539
-0.867301
-0.926944
-0.99865
-1.00012
-1.0009
-0.90241
-0.848318
-0.732599
-0.719794
-0.88804
-1.19658
-1.91805
-1.75283
-1.43422
-1.22657
-1.08018
-1.09897
-0.97397
-1.36197
-1.89785
-2.15176
-1.99607
-2.2599
-1.93741
-2.24197
-1.8291
-2.13811
-1.68043
-1.98454
-1.49084
-1.57528
-1.17746
-0.723703
-0.709483
-0.704097
-0.653954
-0.666994
-0.673374
-0.746791
-0.775577
-0.93668
-0.98542
-1.09077
-1.11554
-1.16976
-1.13663
-1.15205
-1.11022
-1.14156
-1.32639
-1.49841
-1.94289
-1.67942
-1.53346
-1.37104
-1.18186
-1.20758
-1.01457
-1.43347
-1.98245
-2.27682
-2.07198
-2.35979
-1.95526
-2.30045
-1.80708
-2.16263
-1.60466
-1.93515
-1.34294
-1.44313
-0.94211
-0.603523
-0.580272
-0.556343
-0.479962
-0.463091
-0.449541
-0.539897
-0.564468
-0.695146
-0.847061
-0.990319
-1.06625
-1.19933
-1.24273
-1.35825
-1.39612
-1.49055
-1.64571
-1.66671
-1.93092
-1.50906
-1.42444
-1.26241
-1.10964
-1.24138
-0.995422
-1.41088
-2.01005
-2.39347
-2.13683
-2.43931
-1.95383
-2.3662
-1.74354
-2.17041
-1.44875
-1.8467
-1.00471
-1.15305
-0.372604
-0.724061
-0.729049
-0.699825
-0.588076
-0.536969
-0.42428
-0.584785
-0.553046
-0.760921
-0.826806
-1.10619
-1.19547
-1.37229
-1.45477
-1.61576
-1.69485
-1.81799
-1.9734
-1.92387
-2.08375
-1.52362
-1.45313
-1.26516
-1.09332
-1.19883
-0.97277
-1.44006
-2.03945
-2.42124
-2.23196
-2.6036
-2.02427
-2.46437
-1.80294
-2.249
-1.4803
-1.81473
-0.869354
-0.671697
0.423865
-0.580209
-0.507606
-0.52921
-0.301215
-0.257193
-0.0477162
-0.264214
-0.233829
-0.482163
-0.612105
-0.881624
-1.06635
-1.29978
-1.39833
-1.61058
-1.72113
-1.87341
-2.05891
-1.99199
-2.0864
-1.40205
-1.30697
-1.07181
-0.899795
-1.00036
-0.819895
-1.36896
-2.02887
-2.54757
-2.21358
-2.60743
-2.01262
-2.54083
-1.69188
-2.2929
-1.24629
-1.7098
-0.187674
0.051211
2.47362
-0.631877
-0.766425
-0.630521
-0.490855
-0.359217
-0.0617634
-0.227978
-0.210381
-0.461187
-0.592741
-0.885293
-1.05964
-1.30536
-1.45202
-1.70522
-1.87386
-2.05603
-2.26145
-2.18804
-2.21553
-1.4617
-1.30741
-1.02408
-0.804588
-0.886033
-0.698043
-1.35032
-1.9896
-2.65001
-2.33373
-2.78436
-2.05335
-2.60357
-1.77705
-2.41913
-1.4201
-1.86135
-0.0265462
0.752669
4.9834
-0.821461
-0.45118
-0.511897
-0.0109701
0.007525
0.344169
0.146642
0.138979
-0.168292
-0.330033
-0.659778
-0.869369
-1.19995
-1.40234
-1.71557
-1.91462
-2.14677
-2.38654
-2.30048
-2.22826
-1.36421
-1.10973
-0.75923
-0.465554
-0.594488
-0.419811
-1.24768
-1.95608
-2.78462
-2.37051
-2.91725
-2.0347
-2.6146
-1.63442
-2.26046
-1.06196
-1.31105
1.16592
3.59422
10.7754
-0.342484
-0.897741
-0.752861
-0.579931
-0.123933
0.133222
0.139707
0.0911496
-0.180743
-0.364041
-0.695801
-0.905901
-1.23844
-1.46325
-1.81727
-2.07068
-2.33833
-2.5947
-2.53053
-2.2552
-1.45738
-1.08445
-0.695429
-0.23992
-0.366167
-0.0832589
-1.20947
-1.72309
-2.90456
-2.46656
-3.10856
-2.11134
-2.63194
-1.6011
-2.2436
-1.09453
-1.35764
2.0361
6.26974
18.0159
-3.10351
-0.242139
-0.342395
0.253568
0.3957
0.59268
0.401379
0.343387
-0.00225153
-0.200529
-0.542531
-0.761478
-1.12071
-1.39813
-1.82937
-2.15491
-2.45506
-2.71369
-2.51844
-2.02253
-1.21872
-0.720935
-0.275387
0.179882
-0.0466927
0.0363615
-1.20552
-1.79594
-3.08011
-2.65503
-3.20622
-2.0728
-2.45058
-1.32223
-1.71778
-0.0651192
0.949418
7.10154
17.057
36.1055
-0.441607
-0.431385
-0.44666
-0.458635
-0.486331
-0.521566
-0.554005
-0.583185
-0.611013
-0.64348
-0.686442
-0.723787
-0.758903
-0.806486
-0.821523
-0.865248
-0.851943
-0.946015
-0.83462
-1.157
-0.820851
-0.96686
-0.976062
-1.02591
-0.812646
-0.66952
-0.395506
-0.19307
-0.0232169
0.0496688
0.0100436
-0.0157466
-0.272953
-0.366623
-0.540137
-0.609985
-0.69835
-0.776369
-0.816403
-0.785572
-0.448919
-0.442797
-0.460397
-0.47129
-0.49742
-0.514377
-0.55769
-0.559901
-0.626888
-0.648768
-0.684072
-0.688303
-0.716313
-0.730336
-0.734908
-0.845332
-0.82505
-0.934278
-0.794878
-1.11602
-0.876315
-1.01762
-1.05568
-1.11117
-0.871837
-0.76029
-0.492305
-0.281288
-0.0883883
0.00995948
-0.111524
-0.0854365
-0.31037
-0.420921
-0.55188
-0.601986
-0.672903
-0.757779
-0.7802
-0.755959
-0.44434
-0.437152
-0.458765
-0.467742
-0.485576
-0.504414
-0.528158
-0.54166
-0.583563
-0.603436
-0.638207
-0.681065
-0.701213
-0.759921
-0.872139
-0.948152
-0.923674
-1.00771
-0.888506
-1.20847
-0.993139
-1.18078
-1.24132
-1.29936
-1.11439
-0.966412
-0.716541
-0.512686
-0.331866
-0.150501
-0.186962
-0.230535
-0.434727
-0.501814
-0.699582
-0.682405
-0.771352
-0.808063
-0.817401
-0.783186
-0.450584
-0.447684
-0.473499
-0.495608
-0.503603
-0.494528
-0.534096
-0.533807
-0.621042
-0.653485
-0.695794
-0.713895
-0.825983
-0.976982
-1.01389
-1.07377
-1.04927
-1.12642
-1.03824
-1.35256
-1.19894
-1.40455
-1.51922
-1.59514
-1.3861
-1.24517
-1.02399
-0.856522
-0.680892
-0.540317
-0.468169
-0.414455
-0.543729
-0.62037
-0.693606
-0.775676
-0.794413
-0.835798
-0.808922
-0.79262
-0.440207
-0.440318
-0.475404
-0.462368
-0.475318
-0.48947
-0.485329
-0.548563
-0.636624
-0.682249
-0.764093
-0.992953
-1.13097
-1.19625
-1.24167
-1.29706
-1.28415
-1.35033
-1.28215
-1.59024
-1.46454
-1.67419
-1.78122
-1.86921
-1.69319
-1.59083
-1.41342
-1.26035
-1.12085
-0.965283
-0.908467
-0.781396
-0.714123
-0.690423
-0.834575
-0.81095
-0.881364
-0.862378
-0.87122
-0.856644
-0.478077
-0.460531
-0.496555
-0.466183
-0.487827
-0.464588
-0.545582
-0.570286
-0.735257
-0.973663
-1.20799
-1.29583
-1.37944
-1.44286
-1.49914
-1.52638
-1.51837
-1.57038
-1.5737
-1.84252
-1.71801
-1.96797
-2.11007
-2.11334
-1.99785
-1.94241
-1.80675
-1.68688
-1.55653
-1.39736
-1.30682
-1.12263
-1.14929
-0.787961
-0.832469
-0.862194
-0.824383
-0.892149
-0.861014
-0.877636
-0.480063
-0.495724
-0.45054
-0.4841
-0.453466
-0.525804
-0.513877
-0.747527
-1.18212
-1.3249
-1.43119
-1.55892
-1.657
-1.72773
-1.76632
-1.79111
-1.78551
-1.81764
-1.84591
-2.07586
-1.94443
-2.16162
-2.26784
-2.33474
-2.27095
-2.23818
-2.15292
-2.03998
-1.93197
-1.77548
-1.63662
-1.4601
-1.29965
-1.23087
-0.931396
-0.91605
-0.92385
-0.947979
-0.945597
-0.956883
-0.420357
-0.446119
-0.45389
-0.452791
-0.506078
-0.519809
-0.839158
-1.27856
-1.39283
-1.57073
-1.70875
-1.85018
-1.91677
-1.98358
-2.00672
-2.00171
-1.9974
-2.00709
-2.07424
-2.23352
-1.95456
-2.35089
-2.4096
-2.47307
-2.47151
-2.4763
-2.42812
-2.36928
-2.2704
-2.12698
-1.96594
-1.7366
-1.52826
-1.35024
-1.09429
-0.902295
-0.850382
-0.903965
-0.91965
-0.944304
-0.511613
-0.525015
-0.548681
-0.615192
-0.657089
-0.929042
-1.24878
-1.43541
-1.64716
-1.82865
-1.97405
-2.10432
-2.19038
-2.23389
-2.24135
-2.2095
-2.19324
-2.17321
-2.28331
-2.30285
-2.01866
-2.24338
-2.45057
-2.56591
-2.60991
-2.64778
-2.63656
-2.6076
-2.53664
-2.42474
-2.26603
-2.05227
-1.79975
-1.52468
-1.33817
-1.00814
-0.928666
-1.03465
-1.01742
-1.05426
-0.484587
-0.526031
-0.57916
-0.681224
-0.845284
-1.17746
-1.42887
-1.67528
-1.87024
-2.06829
-2.23045
-2.36022
-2.43265
-2.46159
-2.44343
-2.37051
-2.33958
-2.29305
-2.42683
-2.32897
-2.1251
-2.30982
-2.48977
-2.62983
-2.71276
-2.78066
-2.79881
-2.79922
-2.74984
-2.66208
-2.51818
-2.31707
-2.0548
-1.7583
-1.45749
-1.24017
-0.925521
-1.00993
-1.00455
-1.04907
-0.571273
-0.608861
-0.673706
-0.806659
-1.07002
-1.41462
-1.64233
-1.86682
-2.07626
-2.29491
-2.46202
-2.60172
-2.68369
-2.69842
-2.65189
-2.54808
-2.46701
-2.41744
-2.56336
-2.38169
-2.26457
-2.36578
-2.5435
-2.66743
-2.78121
-2.87059
-2.91389
-2.93707
-2.90621
-2.84448
-2.72509
-2.55442
-2.32099
-2.01874
-1.70284
-1.42753
-1.17847
-1.04449
-1.18625
-1.17132
-0.637127
-0.681055
-0.758542
-0.938981
-1.28282
-1.57268
-1.81949
-2.05334
-2.29148
-2.50516
-2.691
-2.83779
-2.93036
-2.92872
-2.87645
-2.68504
-2.60444
-2.50924
-2.62214
-2.39359
-2.39534
-2.3408
-2.54659
-2.69063
-2.82031
-2.94072
-3.00197
-3.04426
-3.0266
-2.9833
-2.88067
-2.73936
-2.53526
-2.253
-1.9123
-1.58649
-1.35996
-1.12562
-1.20713
-1.18592
-0.755527
-0.799151
-0.881368
-1.14136
-1.44555
-1.73236
-1.96455
-2.18862
-2.44974
-2.68643
-2.89326
-3.07202
-3.18713
-3.20375
-3.0739
-2.88183
-2.61107
-2.53437
-2.5563
-2.38637
-2.55319
-2.33301
-2.40042
-2.66593
-2.828
-2.98051
-3.07041
-3.12519
-3.10965
-3.08647
-3.00902
-2.89841
-2.72725
-2.47837
-2.16874
-1.81699
-1.54127
-1.3581
-1.28442
-1.37048
-0.863853
-0.915423
-1.03183
-1.34166
-1.60797
-1.88973
-2.1276
-2.39298
-2.62936
-2.87348
-3.09848
-3.29337
-3.45854
-3.40201
-3.3281
-2.75031
-2.61898
-2.07601
-1.51324
-1.72425
-2.6038
-2.25098
-2.24533
-2.39376
-2.76606
-2.98549
-3.10246
-3.19369
-3.18608
-3.16708
-3.0926
-3.00858
-2.86492
-2.65683
-2.36578
-2.01894
-1.6824
-1.46055
-1.35967
-1.4268
-1.0332
-1.06124
-1.25627
-1.51374
-1.76277
-2.03135
-2.25152
-2.51046
-2.7341
-2.98607
-3.23536
-3.49919
-3.67654
-3.68604
-3.30798
-2.83357
-0.932161
1.63425
2.97979
0.833133
-2.18916
-2.17544
-2.02991
-2.05746
-2.4144
-2.93643
-3.11826
-3.19984
-3.20076
-3.23219
-3.18688
-3.12577
-2.98737
-2.82352
-2.58569
-2.26195
-1.90138
-1.66297
-1.53609
-1.60931
-1.07647
-1.17238
-1.37679
-1.62465
-1.87444
-2.14247
-2.3789
-2.63945
-2.88814
-3.16215
-3.4418
-3.69453
-3.91788
-3.65999
-3.23213
-0.543674
5.0027
10.4979
11.7594
5.19527
-1.48763
-2.02224
-1.83
-1.85274
-2.0494
-2.58559
-3.04203
-3.28859
-3.26021
-3.23632
-3.19393
-3.17694
-3.07799
-2.94436
-2.73752
-2.44526
-2.08288
-1.82856
-1.66988
-1.78301
-1.32175
-1.3764
-1.58734
-1.79401
-2.03615
-2.28986
-2.50464
-2.7355
-2.93694
-3.19797
-3.46249
-3.7739
-3.92995
-3.56143
-1.55711
5.16936
15.6247
24.2154
22.9581
10.4207
-0.589234
-1.77161
-1.56921
-1.72868
-1.89256
-2.22371
-2.40537
-2.81099
-3.18904
-3.37909
-3.34936
-3.27139
-3.14558
-3.05055
-2.89655
-2.63768
-2.30283
-2.02627
-1.8459
-1.91503
-1.11923
-1.28261
-1.45693
-1.67537
-1.9048
-2.14987
-2.37136
-2.62092
-2.89667
-3.27268
-3.63309
-3.90288
-3.82724
-2.62075
2.54577
13.7247
29.3359
39.469
35.6903
16.1616
0.450202
-1.4833
-1.2174
-1.58459
-1.72713
-2.07296
-2.14565
-2.30499
-2.39449
-2.68048
-2.98332
-3.34123
-3.33367
-3.2465
-3.01873
-2.80612
-2.50007
-2.27073
-2.17078
-2.30134
-1.30928
-1.3523
-1.47842
-1.63149
-1.82611
-2.05808
-2.27594
-2.55032
-2.73755
-2.98429
-3.19639
-3.30772
-2.77906
-1.05209
7.14237
22.8855
42.5055
55.2719
49.2755
23.1765
1.84502
-1.15797
-0.844964
-1.44227
-1.54798
-1.96069
-2.04647
-2.21504
-2.28096
-2.36461
-2.36902
-2.42392
-2.6354
-3.13277
-3.19074
-2.95131
-2.63991
-2.26839
-2.06739
-1.9222
-0.395571
-0.501526
-0.638077
-0.773279
-0.913296
-1.04535
-1.1651
-1.28599
-1.38322
-1.6666
-2.04395
-2.46572
-2.3149
0.0548516
11.1717
30.2268
51.6816
66.4293
63.5376
33.6357
4.31515
-0.524337
-0.591691
-1.33507
-1.32018
-1.85107
-1.96162
-2.14293
-2.21795
-2.29212
-2.3528
-2.39811
-2.38825
-2.3108
-2.44782
-2.8842
-2.82848
-2.78655
-2.80493
-3.07787
-0.209631
-0.200251
-0.278894
-0.338195
-0.504707
-0.677321
-0.838812
-1.03909
-1.15977
-1.47351
-1.92474
-2.45356
-2.60601
0.437586
13.2357
33.6985
55.4218
71.8426
75.5189
47.8586
9.91947
-0.4301
0.0182817
-1.16032
-1.38952
-1.74334
-1.91498
-2.08766
-2.17849
-2.22163
-2.25342
-2.26239
-2.31714
-2.3466
-2.28312
-2.06717
-2.10462
-1.95311
-1.93816
-1.99372
-0.147556
-0.0228252
-0.0625275
-0.122233
-0.239194
-0.455578
-0.549379
-0.860878
-1.02532
-1.34713
-1.95496
-2.56923
-2.92451
0.0544691
12.3713
31.9048
53.5618
70.6969
81.0437
62.3573
19.8892
0.397941
-0.0355738
-0.954446
-1.24165
-1.69501
-1.9343
-2.07197
-2.17322
-2.23644
-2.27376
-2.29097
-2.34697
-2.34435
-2.44905
-2.33413
-2.20138
-2.06407
-1.871
-1.8886
-0.198174
-0.157828
-0.183351
-0.236818
-0.377468
-0.542912
-0.703636
-0.909666
-1.11883
-1.41421
-2.09659
-2.69693
-2.89607
-0.926875
8.90086
26.1885
46.1074
64.4926
77.0791
70.6487
34.5896
5.68918
-0.137297
-0.840125
-1.30344
-1.63419
-1.85663
-1.99261
-2.12774
-2.13875
-2.19733
-2.17645
-2.25614
-2.21981
-2.2594
-2.1093
-2.1476
-2.00947
-1.84336
-1.80066
-0.232364
-0.193601
-0.243057
-0.310476
-0.441737
-0.625824
-0.776789
-1.01069
-1.24879
-1.57634
-2.05632
-2.76577
-2.7698
-1.9903
4.17658
18.1035
35.3069
53.4714
65.7269
67.7792
45.1435
16.0911
2.6156
-0.414319
-1.23592
-1.58849
-1.83044
-1.97927
-2.05003
-2.20631
-2.2366
-2.24174
-2.33939
-2.28683
-2.39069
-2.31658
-2.37849
-2.29088
-2.15801
-2.11528
-0.333372
-0.315424
-0.369364
-0.437854
-0.574148
-0.739809
-0.903064
-1.11045
-1.3324
-1.6518
-2.00184
-2.54424
-2.52215
-2.72171
0.0537691
8.21552
21.7337
37.6157
49.9817
54.2811
41.9337
21.7975
6.916
0.705626
-1.0985
-1.51834
-1.77621
-1.88278
-1.96107
-2.04879
-2.05306
-1.98842
-2.04009
-1.91242
-1.96402
-1.8274
-1.90205
-1.7819
-1.75828
-1.69926
-0.388955
-0.366744
-0.420336
-0.486516
-0.615188
-0.766209
-0.925605
-1.11651
-1.31436
-1.575
-1.86802
-2.24319
-2.36227
-2.6185
-2.14226
1.07709
8.07341
19.2486
29.2209
33.1606
29.0191
17.9784
8.19147
1.41517
-0.951184
-1.45823
-1.72487
-1.84286
-1.98632
-2.03173
-2.17965
-2.17991
-2.33292
-2.24668
-2.39743
-2.20905
-2.33328
-2.15655
-2.1611
-2.06671
-0.488793
-0.467657
-0.514925
-0.572216
-0.693208
-0.826809
-0.983173
-1.13644
-1.30328
-1.48288
-1.68485
-1.89165
-1.9721
-1.96621
-2.20837
-1.71186
0.0901452
4.04027
9.45984
13.3592
12.8574
8.15577
4.07373
0.601307
-1.00733
-1.32571
-1.59077
-1.73983
-1.92756
-2.09074
-2.28063
-2.22689
-2.36736
-2.20956
-2.40592
-2.18875
-2.33224
-2.15541
-2.2444
-2.24935
-0.514377
-0.489047
-0.524266
-0.567882
-0.675262
-0.793816
-0.94593
-1.06612
-1.20358
-1.33649
-1.4697
-1.60041
-1.62615
-1.6612
-1.68324
-1.97211
-1.96371
-1.16953
-0.43409
0.674739
0.406805
-0.193208
-0.658814
-1.18951
-1.12855
-1.09175
-1.41874
-1.60149
-2.02062
-2.06151
-2.21514
-2.08964
-2.27936
-2.12176
-2.25107
-2.0544
-2.15727
-1.91985
-1.9268
-1.82963
-0.602927
-0.575071
-0.608252
-0.639597
-0.729949
-0.828251
-0.969761
-1.0657
-1.18062
-1.27538
-1.3628
-1.41063
-1.42873
-1.34465
-1.43807
-1.56829
-2.1899
-2.5058
-2.77569
-3.04428
-2.54589
-2.61585
-2.14316
-1.59497
-1.14958
-0.901305
-1.26319
-1.60574
-2.00478
-1.98413
-2.15862
-1.9952
-2.1798
-1.9779
-2.23579
-1.88506
-2.08151
-1.74658
-1.72799
-1.54579
-0.588762
-0.552583
-0.56485
-0.594412
-0.658605
-0.725319
-0.823015
-0.937166
-1.06742
-1.15881
-1.23439
-1.25485
-1.24507
-1.16823
-1.11816
-1.18629
-1.34914
-1.8681
-2.34753
-2.79197
-2.49903
-2.09364
-1.61112
-1.25206
-1.09878
-1.00763
-1.32029
-1.76422
-2.03334
-1.97356
-2.18264
-1.98817
-2.21175
-1.95133
-2.15619
-1.94384
-2.01822
-1.73048
-1.66621
-1.4199
-0.685065
-0.666597
-0.657733
-0.673899
-0.735621
-0.779273
-0.8749
-0.986178
-1.11456
-1.20474
-1.27745
-1.28838
-1.27609
-1.18163
-1.12886
-1.06414
-1.18661
-1.44777
-1.7068
-2.27994
-1.98984
-1.72282
-1.47013
-1.22534
-1.17284
-1.02471
-1.42397
-1.83651
-2.06315
-1.96224
-2.19713
-1.93612
-2.21059
-1.87221
-2.14726
-1.77953
-2.02081
-1.61806
-1.63793
-1.31121
-0.627831
-0.589572
-0.597945
-0.549101
-0.641182
-0.656072
-0.759692
-0.833629
-1.00914
-1.09904
-1.20406
-1.24165
-1.27963
-1.22836
-1.21141
-1.13462
-1.14917
-1.26461
-1.46033
-1.90483
-1.59397
-1.4497
-1.28145
-1.10686
-1.15361
-1.01798
-1.48376
-1.89911
-2.16685
-1.98974
-2.2622
-1.9392
-2.23967
-1.83173
-2.1456
-1.69079
-1.99523
-1.5013
-1.58066
-1.17722
-0.730645
-0.714638
-0.708717
-0.661554
-0.681586
-0.72454
-0.807393
-0.872967
-1.0553
-1.14031
-1.26555
-1.33125
-1.41538
-1.41482
-1.46496
-1.44731
-1.5025
-1.62438
-1.68512
-1.97749
-1.55167
-1.46852
-1.32059
-1.14623
-1.23283
-1.05552
-1.52386
-1.96773
-2.28371
-2.04977
-2.35545
-1.94933
-2.29043
-1.80946
-2.16639
-1.61862
-1.94314
-1.36036
-1.44699
-0.941821
-0.608225
-0.583229
-0.562588
-0.481734
-0.468794
-0.463846
-0.582371
-0.607143
-0.749324
-0.914202
-1.09147
-1.19064
-1.33592
-1.3838
-1.49798
-1.52806
-1.61762
-1.74633
-1.73004
-1.92293
-1.36977
-1.31911
-1.1744
-1.0245
-1.19031
-0.963946
-1.49192
-1.96815
-2.3561
-2.10674
-2.42382
-1.94139
-2.3461
-1.74445
-2.17521
-1.46169
-1.85954
-1.02151
-1.1659
-0.381162
-0.733516
-0.735142
-0.710244
-0.587871
-0.541978
-0.417788
-0.613221
-0.582025
-0.77039
-0.85383
-1.10197
-1.21854
-1.40282
-1.48242
-1.63717
-1.69794
-1.82327
-1.96879
-1.91704
-2.04338
-1.38233
-1.32654
-1.15405
-0.98817
-1.13117
-0.92241
-1.49613
-1.9985
-2.44216
-2.19875
-2.59255
-2.00455
-2.44794
-1.79239
-2.25626
-1.49094
-1.83538
-0.883188
-0.69851
0.406964
-0.585075
-0.510526
-0.535878
-0.301952
-0.26646
-0.042257
-0.27575
-0.25965
-0.497849
-0.609833
-0.827508
-0.954512
-1.25674
-1.37971
-1.58595
-1.67704
-1.84648
-2.02256
-1.95877
-2.01805
-1.25282
-1.16293
-0.95255
-0.779105
-0.919065
-0.746128
-1.40197
-1.97853
-2.52847
-2.17844
-2.58129
-1.99503
-2.52288
-1.68342
-2.29477
-1.2543
-1.7297
-0.160273
-0.0231907
2.45328
-0.64461
-0.773293
-0.639389
-0.49609
-0.368143
-0.0645871
-0.233384
-0.239579
-0.482132
-0.61437
-0.881426
-1.04022
-1.29319
-1.44331
-1.68601
-1.81426
-2.00568
-2.20843
-2.14812
-2.12481
-1.30882
-1.15737
-0.901818
-0.681948
-0.798519
-0.620575
-1.37551
-1.94257
-2.64307
-2.29715
-2.76437
-2.03301
-2.58415
-1.76438
-2.42123
-1.427
-1.87579
-0.0412772
0.765793
4.97418
-0.829495
-0.455845
-0.518134
-0.0133256
-0.000442803
0.340171
0.140986
0.111274
-0.196464
-0.363481
-0.685285
-0.885358
-1.20028
-1.38806
-1.69708
-1.87611
-2.12401
-2.34263
-2.2795
-2.09119
-1.20117
-0.931998
-0.618725
-0.318541
-0.492034
-0.33172
-1.25645
-1.90643
-2.75846
-2.32189
-2.89293
-2.00374
-2.59431
-1.61767
-2.25427
-1.05972
-1.32136
1.1599
3.59984
10.786
-0.347672
-0.899099
-0.754166
-0.583368
-0.129347
0.119172
0.137188
0.0618942
-0.211549
-0.407482
-0.736124
-0.939017
-1.25352
-1.45512
-1.80373
-2.04275
-2.31578
-2.54542
-2.4724
-2.13753
-1.31565
-0.922344
-0.574842
-0.111659
-0.284914
-0.0528425
-1.21431
-1.69789
-2.88828
-2.43408
-3.08456
-2.08445
-2.61024
-1.58137
-2.23359
-1.09077
-1.35788
2.039
6.28785
18.0494
-3.09929
-0.236445
-0.337521
0.25475
0.393279
0.588015
0.393187
0.319247
-0.0327555
-0.244687
-0.589362
-0.80115
-1.13928
-1.39043
-1.81819
-2.13354
-2.44156
-2.67114
-2.45453
-1.90048
-1.07588
-0.548103
-0.150569
0.298827
0.0278858
0.0728197
-1.21653
-1.77645
-3.06782
-2.62095
-3.17479
-2.0352
-2.41913
-1.30294
-1.70458
-0.0634647
0.940341
7.09475
17.0628
36.1228
-0.441316
-0.433767
-0.444963
-0.460481
-0.478417
-0.511602
-0.530673
-0.579756
-0.597173
-0.657886
-0.680781
-0.724388
-0.747287
-0.802631
-0.803874
-0.861538
-0.823032
-0.943944
-0.799749
-1.10408
-0.762875
-0.921174
-0.93393
-0.9927
-0.755607
-0.612789
-0.315257
-0.0880881
0.0956324
0.183193
0.107661
0.079164
-0.187563
-0.347108
-0.519959
-0.613211
-0.718843
-0.806105
-0.818892
-0.795713
-0.449967
-0.445309
-0.457923
-0.472998
-0.487382
-0.502189
-0.535364
-0.56472
-0.596007
-0.675516
-0.653831
-0.684657
-0.69494
-0.717512
-0.728061
-0.842189
-0.804075
-0.909535
-0.756806
-1.06221
-0.805624
-0.983326
-1.01934
-1.08575
-0.876116
-0.728726
-0.454025
-0.236699
-0.0281731
0.0833733
-0.0109434
-0.0621051
-0.26135
-0.400004
-0.570654
-0.6087
-0.704269
-0.777694
-0.790381
-0.76608
-0.44312
-0.43851
-0.454164
-0.468839
-0.470566
-0.498363
-0.483932
-0.540677
-0.565386
-0.58838
-0.625206
-0.667143
-0.688223
-0.772095
-0.88012
-0.947952
-0.909573
-0.994619
-0.863877
-1.18041
-0.980534
-1.163
-1.24284
-1.32722
-1.09295
-0.944528
-0.69472
-0.489534
-0.303702
-0.123791
-0.142964
-0.199522
-0.395704
-0.500015
-0.644847
-0.697496
-0.791976
-0.819667
-0.822185
-0.790806
-0.445237
-0.448435
-0.46407
-0.497619
-0.475791
-0.488691
-0.510861
-0.52878
-0.607009
-0.650197
-0.671376
-0.707338
-0.845184
-0.992129
-1.01762
-1.07495
-1.04344
-1.12378
-1.02157
-1.33541
-1.16552
-1.41198
-1.52223
-1.5763
-1.3641
-1.23608
-1.0202
-0.853456
-0.680667
-0.550127
-0.473232
-0.417055
-0.512283
-0.613069
-0.711927
-0.78523
-0.8217
-0.840718
-0.817836
-0.801293
-0.43289
-0.440695
-0.463329
-0.456227
-0.459517
-0.476319
-0.470009
-0.55166
-0.621531
-0.67182
-0.781708
-1.01997
-1.1386
-1.21413
-1.2508
-1.30671
-1.28688
-1.34531
-1.27891
-1.58557
-1.45515
-1.68273
-1.79964
-1.84366
-1.67986
-1.58145
-1.40804
-1.26676
-1.1181
-0.97532
-0.910111
-0.801596
-0.715506
-0.669761
-0.81718
-0.780275
-0.902707
-0.857103
-0.869979
-0.858264
-0.462782
-0.462861
-0.466603
-0.460416
-0.466919
-0.460125
-0.540425
-0.559819
-0.754969
-1.02036
-1.22268
-1.29289
-1.38321
-1.45288
-1.48756
-1.53211
-1.50721
-1.56819
-1.54464
-1.80583
-1.67657
-1.87591
-2.04913
-2.09099
-1.99163
-1.91998
-1.77958
-1.66765
-1.53278
-1.38756
-1.29565
-1.1198
-1.15613
-0.822714
-0.835807
-0.862491
-0.833133
-0.893758
-0.870741
-0.885464
-0.4563
-0.469114
-0.43168
-0.463048
-0.438959
-0.519194
-0.503921
-0.840878
-1.20426
-1.32171
-1.43313
-1.55838
-1.6498
-1.72059
-1.75255
-1.78499
-1.7739
-1.80791
-1.80757
-2.03526
-1.9154
-2.17343
-2.20973
-2.28632
-2.22312
-2.19843
-2.1076
-2.02393
-1.89869
-1.75849
-1.61061
-1.44567
-1.28383
-1.21721
-0.926363
-0.899375
-0.913701
-0.934058
-0.939287
-0.952282
-0.430331
-0.454878
-0.448375
-0.455082
-0.506286
-0.534203
-0.948473
-1.25924
-1.40353
-1.56294
-1.7123
-1.81244
-1.90274
-1.95011
-1.9762
-1.98243
-1.97276
-1.99254
-2.01249
-2.17374
-1.82207
-2.24693
-2.32613
-2.40796
-2.41505
-2.41864
-2.37594
-2.32085
-2.22628
-2.09651
-1.93974
-1.72997
-1.51601
-1.34564
-1.09283
-0.899841
-0.857016
-0.910136
-0.92745
-0.952088
-0.466587
-0.503308
-0.535765
-0.620388
-0.681166
-1.00597
-1.24192
-1.45601
-1.64002
-1.8101
-1.93275
-2.05857
-2.12847
-2.17486
-2.18659
-2.17513
-2.16502
-2.15427
-2.21375
-2.22589
-1.83507
-2.0414
-2.34418
-2.47394
-2.53575
-2.57932
-2.57333
-2.55323
-2.48381
-2.38079
-2.22408
-2.02237
-1.77137
-1.51115
-1.33017
-1.00176
-0.920612
-1.02439
-1.00429
-1.04688
-0.484332
-0.526366
-0.582793
-0.692018
-0.877321
-1.20737
-1.45587
-1.66846
-1.85928
-2.02541
-2.17151
-2.27
-2.34161
-2.36838
-2.36224
-2.3256
-2.30275
-2.28004
-2.36135
-2.26509
-1.91488
-2.0665
-2.33829
-2.51751
-2.62371
-2.70326
-2.7302
-2.73561
-2.69195
-2.60964
-2.47274
-2.27806
-2.02754
-1.73884
-1.45619
-1.23368
-0.936948
-1.00395
-1.02143
-1.05295
-0.550915
-0.600763
-0.672925
-0.823023
-1.10674
-1.43647
-1.64648
-1.86861
-2.04328
-2.23608
-2.36814
-2.47942
-2.54038
-2.55558
-2.52808
-2.46076
-2.42561
-2.38949
-2.48362
-2.29078
-1.98994
-2.06731
-2.29825
-2.52207
-2.66904
-2.78506
-2.83986
-2.8702
-2.84507
-2.78628
-2.67176
-2.50736
-2.2783
-1.99137
-1.68673
-1.42203
-1.16953
-1.0451
-1.16896
-1.16311
-0.638951
-0.68896
-0.772449
-0.969597
-1.31615
-1.59291
-1.82709
-2.03941
-2.24324
-2.41813
-2.56357
-2.6699
-2.72908
-2.73121
-2.67325
-2.58033
-2.49658
-2.46443
-2.56728
-2.27852
-2.08227
-2.06908
-2.20909
-2.50563
-2.69364
-2.84722
-2.92816
-2.97358
-2.96395
-2.92259
-2.82541
-2.68623
-2.48457
-2.21711
-1.89075
-1.57519
-1.36024
-1.11806
-1.21317
-1.18995
-0.755907
-0.806586
-0.900074
-1.17568
-1.47538
-1.74953
-1.97406
-2.19152
-2.38983
-2.57719
-2.72827
-2.8476
-2.91114
-2.89119
-2.80652
-2.62734
-2.53721
-2.49712
-2.51319
-2.22055
-2.21401
-2.06088
-2.09066
-2.36785
-2.68499
-2.8735
-2.9943
-3.05606
-3.04601
-3.0254
-2.95375
-2.84754
-2.68119
-2.4426
-2.13985
-1.80239
-1.53129
-1.3475
-1.2734
-1.36251
-0.880982
-0.93698
-1.07011
-1.38346
-1.64843
-1.9118
-2.13748
-2.36568
-2.56312
-2.75014
-2.90303
-3.02336
-3.0777
-3.04791
-2.8758
-2.66964
-2.41035
-2.40013
-2.31844
-2.21227
-2.36096
-2.00229
-1.97975
-2.04128
-2.55449
-2.88897
-3.01938
-3.11639
-3.12186
-3.10288
-3.03618
-2.95599
-2.81563
-2.61131
-2.32744
-1.99196
-1.66585
-1.45181
-1.34793
-1.42412
-1.04838
-1.08504
-1.29281
-1.55228
-1.79764
-2.04843
-2.2576
-2.47601
-2.66111
-2.84596
-3.00949
-3.14504
-3.22165
-3.11298
-2.89754
-2.37663
-2.38063
-2.16333
-1.95234
-2.0268
-2.48691
-2.01264
-1.88709
-1.8354
-2.17181
-2.79249
-3.06718
-3.13377
-3.13575
-3.17262
-3.13333
-3.07276
-2.95614
-2.7941
-2.54635
-2.23525
-1.87866
-1.65209
-1.52336
-1.59702
-1.10441
-1.21292
-1.42611
-1.67275
-1.92323
-2.1702
-2.39515
-2.61722
-2.82036
-3.0196
-3.18394
-3.30312
-3.29834
-3.10687
-2.66309
-2.33632
-1.70685
-0.622682
-0.102978
-0.933227
-2.51812
-2.00895
-1.82279
-1.73575
-1.99015
-2.34096
-2.85086
-3.2029
-3.2018
-3.1716
-3.12399
-3.11882
-3.03683
-2.91289
-2.67901
-2.41116
-2.0498
-1.81251
-1.6532
-1.76514
-1.35825
-1.40701
-1.62586
-1.8353
-2.0678
-2.30054
-2.49739
-2.69843
-2.86157
-3.03337
-3.18485
-3.28262
-3.27057
-2.9271
-2.14107
-1.10384
1.00494
3.36909
4.33338
1.65911
-2.11855
-1.97415
-1.68717
-1.67274
-1.87454
-2.10852
-2.23354
-2.60581
-3.06279
-3.32014
-3.29364
-3.23152
-3.08452
-3.02878
-2.84757
-2.60236
-2.26604
-2.00454
-1.82625
-1.8949
-1.1362
-1.29308
-1.50462
-1.71091
-1.94046
-2.1676
-2.37851
-2.60192
-2.81905
-3.07497
-3.291
-3.36689
-3.11287
-2.05028
-0.714459
1.20032
5.29371
9.12634
11.0509
5.50067
-1.29708
-1.78572
-1.46606
-1.58498
-1.73521
-1.99437
-2.06326
-2.2231
-2.29727
-2.60269
-2.97096
-3.31889
-3.28268
-3.16657
-2.95401
-2.76101
-2.45
-2.24068
-2.13722
-2.26856
-1.34827
-1.38494
-1.49626
-1.64958
-1.83012
-2.0365
-2.24739
-2.49136
-2.65303
-2.78213
-2.83784
-2.67645
-1.99642
-0.306236
0.437254
3.75705
10.2231
16.645
18.2549
10.0444
-0.168852
-1.55063
-1.16524
-1.47788
-1.54907
-1.89161
-1.96694
-2.12962
-2.20065
-2.28544
-2.31259
-2.38424
-2.63549
-3.15964
-3.16409
-2.901
-2.59309
-2.23394
-2.04596
-1.91196
-0.266144
-0.420993
-0.567634
-0.694949
-0.857266
-0.997414
-1.10882
-1.25412
-1.26784
-1.41718
-1.56682
-1.70218
-1.27271
-0.206539
1.30186
5.85836
14.2632
22.839
25.4513
15.2392
1.29968
-1.2299
-0.83241
-1.32269
-1.35115
-1.78402
-1.87927
-2.06393
-2.13031
-2.22637
-2.27867
-2.33325
-2.30979
-2.22198
-2.49172
-2.86558
-2.7779
-2.74746
-2.74691
-3.02429
-0.299338
-0.238561
-0.298609
-0.356361
-0.489827
-0.668808
-0.82567
-1.01978
-1.11577
-1.25554
-1.41402
-1.64886
-1.20039
-0.311493
1.67854
6.69282
15.8608
25.7123
29.9414
21.0358
3.8019
-0.926657
-0.500714
-1.24311
-1.24271
-1.63697
-1.81298
-1.99735
-2.07505
-2.14023
-2.18501
-2.20675
-2.25688
-2.28206
-2.20044
-2.03988
-2.06257
-1.92837
-1.92497
-1.98506
-0.159452
-0.0290178
-0.100106
-0.15755
-0.291341
-0.448679
-0.618736
-0.790084
-1.00745
-1.19913
-1.40589
-1.71607
-1.38406
-0.534508
1.34456
5.53635
14.0091
24.4013
30.8624
25.3722
7.0295
-0.758642
-0.47521
-1.10912
-1.21307
-1.61827
-1.74687
-1.9496
-2.07849
-2.14635
-2.21103
-2.23297
-2.29166
-2.28643
-2.38942
-2.24255
-2.1614
-2.01562
-1.83615
-1.85501
-0.231133
-0.193329
-0.21859
-0.276133
-0.407592
-0.554696
-0.731437
-0.904745
-1.05748
-1.31934
-1.54104
-1.77227
-1.53799
-0.680363
0.432105
3.39876
9.36679
19.3043
26.9047
25.8208
11.0187
0.336415
-0.550207
-1.03594
-1.26897
-1.62668
-1.75775
-1.90571
-2.05199
-2.04922
-2.13722
-2.1331
-2.20231
-2.15716
-2.19129
-2.05438
-2.11022
-1.96707
-1.8104
-1.77585
-0.264239
-0.22636
-0.280595
-0.343465
-0.477957
-0.62905
-0.795176
-0.97158
-1.16801
-1.37861
-1.61964
-1.89368
-1.46316
-0.88115
-0.158789
1.79467
4.7778
12.0033
19.9334
20.6181
12.1026
2.58032
-0.106124
-0.937683
-1.25267
-1.55488
-1.75002
-1.97142
-2.02992
-2.08484
-2.17832
-2.20321
-2.26761
-2.23537
-2.32621
-2.25163
-2.32906
-2.24037
-2.10747
-2.07668
-0.350452
-0.337646
-0.393913
-0.460984
-0.59395
-0.737491
-0.899143
-1.05942
-1.25333
-1.43816
-1.6549
-1.7361
-1.75594
-1.17772
-0.682209
0.215718
1.69194
5.46311
10.213
11.4574
7.25924
2.3424
0.0527527
-0.919818
-1.28104
-1.49328
-1.69581
-1.84081
-1.9867
-1.96404
-2.0318
-1.95871
-2.00412
-1.87502
-1.92729
-1.79848
-1.86811
-1.75573
-1.72625
-1.67328
-0.413194
-0.389999
-0.447067
-0.509665
-0.637015
-0.767734
-0.926712
-1.08173
-1.26074
-1.43088
-1.63115
-1.75417
-1.76168
-1.52434
-1.06711
-0.748884
-0.0798848
0.835353
2.37389
2.81876
1.36247
-0.411976
-0.779551
-0.96508
-1.25298
-1.4295
-1.68291
-1.78653
-1.97672
-1.99564
-2.13437
-2.12457
-2.29488
-2.20312
-2.33877
-2.18241
-2.28757
-2.12867
-2.11916
-2.02332
-0.502904
-0.485033
-0.54075
-0.596849
-0.715701
-0.833419
-0.98977
-1.12848
-1.29172
-1.43382
-1.5936
-1.68756
-1.73122
-1.59591
-1.44793
-1.30048
-1.244
-1.09466
-0.958509
-1.61031
-2.17982
-2.26055
-1.58691
-1.13716
-1.11852
-1.29902
-1.56709
-1.72925
-1.92505
-2.07456
-2.25776
-2.21585
-2.33421
-2.21125
-2.375
-2.1649
-2.30621
-2.13374
-2.21323
-2.21714
-0.521901
-0.507229
-0.558019
-0.605532
-0.710211
-0.815882
-0.963145
-1.09124
-1.24145
-1.37431
-1.51039
-1.59115
-1.62426
-1.54658
-1.50055
-1.50559
-1.54302
-1.79012
-2.11192
-2.40597
-2.29151
-2.07812
-1.50708
-1.06642
-0.963047
-1.14596
-1.46972
-1.59907
-2.01917
-2.03892
-2.19353
-2.0758
-2.29547
-2.05733
-2.24437
-2.00697
-2.14106
-1.88596
-1.89265
-1.79095
-0.610797
-0.582997
-0.644869
-0.690794
-0.78146
-0.87042
-0.998717
-1.1191
-1.26581
-1.39218
-1.51379
-1.57875
-1.6019
-1.53868
-1.51082
-1.52893
-1.70891
-1.88096
-2.07244
-2.27705
-1.8678
-1.76401
-1.30406
-1.04996
-1.04406
-1.07048
-1.37598
-1.6709
-2.00877
-1.9792
-2.13568
-1.99283
-2.16201
-1.98826
-2.19022
-1.86755
-2.05709
-1.72007
-1.69396
-1.51148
-0.603285
-0.563427
-0.588712
-0.65646
-0.73141
-0.7978
-0.903029
-1.03161
-1.18529
-1.30965
-1.43355
-1.50636
-1.55122
-1.51141
-1.49904
-1.47189
-1.62177
-1.91878
-2.13324
-2.33049
-1.87971
-1.65506
-1.40303
-1.19797
-1.2006
-1.10327
-1.43744
-1.80361
-2.05354
-1.96013
-2.17475
-1.96815
-2.2
-1.92266
-2.15594
-1.87588
-2.02864
-1.6876
-1.64162
-1.38619
-0.694421
-0.675009
-0.673314
-0.712277
-0.807425
-0.855559
-0.961587
-1.07911
-1.20971
-1.32448
-1.44506
-1.52082
-1.59168
-1.58432
-1.60261
-1.5563
-1.60371
-1.69527
-1.79264
-2.04997
-1.59977
-1.45478
-1.29656
-1.1376
-1.23064
-1.09796
-1.53104
-1.85072
-2.07949
-1.95557
-2.1931
-1.94307
-2.18809
-1.86377
-2.11971
-1.7729
-1.98799
-1.59655
-1.60739
-1.28233
-0.631283
-0.596649
-0.607361
-0.56557
-0.686706
-0.711662
-0.810205
-0.867071
-1.04399
-1.15795
-1.29977
-1.38523
-1.48569
-1.51004
-1.58074
-1.57736
-1.6381
-1.69564
-1.73984
-1.95851
-1.48239
-1.39506
-1.26788
-1.11698
-1.19762
-1.08039
-1.56604
-1.88403
-2.15921
-1.97237
-2.24333
-1.9243
-2.21492
-1.80525
-2.12264
-1.66345
-1.97442
-1.47184
-1.55324
-1.14484
-0.732919
-0.718107
-0.712286
-0.669473
-0.691314
-0.757771
-0.831895
-0.880032
-1.0023
-1.14409
-1.28818
-1.38526
-1.50489
-1.54072
-1.63638
-1.64588
-1.71777
-1.80914
-1.81448
-1.98015
-1.41671
-1.36501
-1.25421
-1.10947
-1.31155
-1.07852
-1.59437
-1.9442
-2.28114
-2.01367
-2.33684
-1.92557
-2.27452
-1.78176
-2.14166
-1.60074
-1.92654
-1.33675
-1.41699
-0.912468
-0.605779
-0.580426
-0.564967
-0.481459
-0.472036
-0.46501
-0.600643
-0.613519
-0.774944
-0.894959
-1.08932
-1.19409
-1.35523
-1.41569
-1.5497
-1.58387
-1.69871
-1.82378
-1.80411
-1.94059
-1.28744
-1.25156
-1.12658
-0.98329
-1.1764
-0.961398
-1.54258
-1.91402
-2.32447
-2.07245
-2.38826
-1.91309
-2.31848
-1.71417
-2.15173
-1.43396
-1.84873
-0.990869
-1.14074
-0.346688
-0.734251
-0.735625
-0.711414
-0.586274
-0.542012
-0.409681
-0.614981
-0.583486
-0.762336
-0.85897
-1.05562
-1.1979
-1.38232
-1.46189
-1.62637
-1.6774
-1.82768
-1.96995
-1.928
-2.01972
-1.28299
-1.23412
-1.08222
-0.919418
-1.09817
-0.893871
-1.53918
-1.94865
-2.42121
-2.14249
-2.52803
-1.9633
-2.41488
-1.76774
-2.22741
-1.46991
-1.81281
-0.870232
-0.663323
0.433301
-0.579322
-0.506735
-0.534994
-0.299132
-0.267891
-0.0381123
-0.266638
-0.261145
-0.491388
-0.600475
-0.838173
-0.977602
-1.23036
-1.3493
-1.56328
-1.64363
-1.83448
-1.99944
-1.94136
-1.9705
-1.15491
-1.06927
-0.884288
-0.704511
-0.882627
-0.696644
-1.43799
-1.92342
-2.50456
-2.12486
-2.56875
-1.95112
-2.49566
-1.65939
-2.27347
-1.23569
-1.7156
-0.180034
0.0321965
2.48129
-0.649493
-0.774533
-0.642063
-0.499278
-0.370479
-0.0685248
-0.221575
-0.241975
-0.468827
-0.599208
-0.856611
-1.01741
-1.27588
-1.41758
-1.67047
-1.77341
-1.99579
-2.17686
-2.11719
-2.06329
-1.20432
-1.04585
-0.816969
-0.592722
-0.748134
-0.574974
-1.403
-1.8869
-2.6055
-2.24063
-2.72478
-2.00207
-2.55572
-1.73645
-2.39809
-1.41119
-1.86596
-0.0337236
0.770028
4.98134
-0.830219
-0.4554
-0.518495
-0.0152045
-0.00237005
0.332978
0.150128
0.108539
-0.185394
-0.349834
-0.66296
-0.858178
-1.17029
-1.35707
-1.676
-1.8485
-2.10408
-2.31362
-2.2054
-1.99886
-1.10014
-0.837356
-0.559586
-0.264968
-0.473714
-0.319706
-1.28907
-1.87192
-2.7349
-2.28108
-2.85448
-1.98213
-2.55016
-1.59201
-2.22815
-1.04921
-1.31613
1.15915
3.59669
10.7832
-0.350167
-0.897657
-0.75229
-0.587317
-0.132736
0.104053
0.145983
0.0558245
-0.200529
-0.395537
-0.713237
-0.911488
-1.22384
-1.42211
-1.7802
-2.01211
-2.29551
-2.5038
-2.42282
-2.04726
-1.21398
-0.795387
-0.477612
0.00920212
-0.213006
-0.00559414
-1.22007
-1.65882
-2.85668
-2.38927
-3.04566
-2.04737
-2.57322
-1.54941
-2.21303
-1.07566
-1.3538
2.03964
6.28208
18.0466
-3.09162
-0.228836
-0.331247
0.253518
0.390064
0.580146
0.393883
0.31398
-0.0254779
-0.235679
-0.57047
-0.776079
-1.10986
-1.35929
-1.79916
-2.1147
-2.43154
-2.63948
-2.39598
-1.79445
-0.972355
-0.410392
-0.0518511
0.379404
0.0823506
0.106116
-1.22623
-1.74389
-3.04118
-2.57741
-3.13146
-1.99923
-2.37938
-1.27336
-1.67873
-0.0478396
0.945688
7.09394
17.0596
36.1253
-0.452357
-0.4435
-0.457122
-0.463943
-0.487508
-0.500797
-0.53255
-0.555392
-0.597445
-0.633225
-0.677235
-0.715484
-0.76149
-0.794269
-0.810665
-0.83712
-0.84643
-0.90471
-0.749091
-1.05111
-0.710931
-0.871754
-0.888432
-0.923603
-0.676581
-0.490405
-0.174491
0.0897764
0.284482
0.38489
0.275636
0.222744
-0.0985861
-0.269655
-0.526693
-0.61808
-0.764517
-0.825837
-0.834797
-0.81314
-0.462057
-0.454176
-0.470208
-0.472314
-0.492991
-0.491697
-0.536536
-0.557224
-0.616104
-0.627928
-0.651868
-0.668269
-0.682722
-0.704343
-0.749233
-0.829614
-0.795451
-0.885953
-0.723314
-1.02689
-0.809027
-0.973047
-1.03501
-1.09544
-0.849444
-0.680681
-0.392239
-0.163833
0.0595884
0.18906
0.0798768
0.0147522
-0.215849
-0.376703
-0.571246
-0.630018
-0.747882
-0.798526
-0.809185
-0.784854
-0.454029
-0.445949
-0.464947
-0.469623
-0.478356
-0.472032
-0.483902
-0.52631
-0.56452
-0.58163
-0.623444
-0.661823
-0.693928
-0.803977
-0.900225
-0.950229
-0.918657
-0.985786
-0.837909
-1.15788
-0.927622
-1.1654
-1.26713
-1.30134
-1.06029
-0.908329
-0.659597
-0.446501
-0.266907
-0.0843225
-0.102771
-0.157408
-0.376818
-0.487517
-0.674438
-0.716745
-0.830268
-0.833211
-0.838033
-0.807101
-0.453878
-0.453295
-0.4769
-0.474034
-0.481464
-0.474422
-0.504982
-0.518421
-0.614571
-0.637408
-0.665896
-0.715238
-0.88257
-1.00225
-1.03916
-1.08688
-1.05776
-1.12662
-1.01838
-1.32134
-1.19821
-1.42668
-1.53041
-1.55995
-1.36631
-1.24285
-1.03447
-0.866907
-0.701537
-0.567685
-0.497903
-0.424652
-0.480182
-0.622041
-0.753031
-0.799638
-0.840108
-0.848377
-0.834173
-0.818772
-0.445368
-0.437996
-0.478983
-0.443892
-0.453207
-0.456117
-0.464214
-0.546661
-0.609477
-0.67643
-0.836818
-1.06121
-1.15855
-1.23324
-1.27354
-1.32268
-1.30125
-1.36103
-1.27052
-1.57666
-1.42824
-1.68875
-1.76448
-1.8201
-1.67255
-1.57898
-1.41886
-1.27575
-1.13982
-1.00146
-0.936586
-0.85697
-0.780738
-0.683707
-0.844926
-0.790579
-0.91845
-0.862659
-0.880293
-0.868008
-0.461669
-0.471265
-0.447194
-0.451521
-0.450599
-0.455189
-0.529812
-0.544778
-0.815585
-1.07564
-1.23526
-1.30827
-1.39445
-1.46024
-1.50272
-1.5348
-1.52725
-1.57282
-1.52478
-1.76857
-1.62878
-1.86478
-1.99249
-2.05847
-1.97684
-1.91827
-1.80016
-1.67299
-1.53852
-1.38882
-1.29864
-1.13489
-1.16504
-0.88109
-0.857948
-0.880027
-0.89207
-0.904649
-0.89414
-0.901789
-0.431099
-0.445612
-0.424161
-0.44068
-0.430625
-0.494289
-0.503112
-0.968561
-1.22417
-1.32787
-1.44375
-1.56377
-1.64782
-1.71206
-1.74923
-1.77692
-1.76493
-1.79666
-1.76858
-1.96491
-1.78843
-2.08428
-2.14292
-2.23747
-2.18493
-2.1608
-2.0869
-2.01356
-1.89187
-1.75541
-1.61137
-1.44831
-1.29298
-1.22137
-0.935831
-0.892471
-0.875208
-0.922558
-0.937436
-0.95354
-0.436311
-0.46054
-0.446527
-0.461271
-0.498226
-0.586068
-1.06174
-1.25259
-1.41985
-1.56899
-1.69969
-1.80353
-1.87611
-1.92328
-1.9463
-1.95771
-1.95127
-1.96657
-1.96534
-2.09043
-1.86288
-2.1497
-2.27196
-2.34955
-2.37149
-2.37526
-2.34233
-2.28788
-2.20568
-2.07895
-1.9291
-1.74102
-1.52811
-1.35923
-1.10415
-0.909703
-0.877157
-0.922631
-0.942899
-0.966243
-0.448498
-0.492755
-0.539526
-0.632188
-0.739063
-1.06286
-1.24524
-1.47194
-1.63589
-1.793
-1.91835
-2.01777
-2.07789
-2.1214
-2.13784
-2.13628
-2.12999
-2.12212
-2.14409
-2.14079
-1.84758
-1.89245
-2.27238
-2.39999
-2.47518
-2.51833
-2.5199
-2.50139
-2.44685
-2.34431
-2.21641
-2.01257
-1.78868
-1.51921
-1.33771
-1.00599
-0.917747
-1.02329
-0.99305
-1.0456
-0.47646
-0.528282
-0.591739
-0.716533
-0.922724
-1.24812
-1.47778
-1.66728
-1.8371
-1.99441
-2.1121
-2.2013
-2.25729
-2.28854
-2.2907
-2.2722
-2.2637
-2.24029
-2.27567
-2.16083
-1.83051
-1.86507
-2.18861
-2.42588
-2.54504
-2.63666
-2.66853
-2.67772
-2.64189
-2.56757
-2.43679
-2.26628
-2.01574
-1.74039
-1.46521
-1.23617
-0.957113
-1.0047
-1.05193
-1.06328
-0.547243
-0.60143
-0.683063
-0.852972
-1.15466
-1.45281
-1.64689
-1.84623
-2.01505
-2.16943
-2.28174
-2.37144
-2.42238
-2.44087
-2.42931
-2.39704
-2.37114
-2.35407
-2.38718
-2.1932
-1.8347
-1.81506
-2.04167
-2.39565
-2.57583
-2.70891
-2.77199
-2.80405
-2.78845
-2.73321
-2.63047
-2.47231
-2.26249
-1.97996
-1.6754
-1.41987
-1.15975
-1.05158
-1.14904
-1.15876
-0.642621
-0.700009
-0.791533
-1.01147
-1.35137
-1.61042
-1.82091
-2.01756
-2.18212
-2.33066
-2.43843
-2.52103
-2.56315
-2.56609
-2.53864
-2.47211
-2.44769
-2.42129
-2.47051
-2.15028
-1.84528
-1.77209
-1.93689
-2.32134
-2.59349
-2.76408
-2.86123
-2.90603
-2.90527
-2.86965
-2.77935
-2.65311
-2.45579
-2.20615
-1.88175
-1.57314
-1.36485
-1.11386
-1.22828
-1.20144
-0.76312
-0.820624
-0.927566
-1.22
-1.50379
-1.76003
-1.95816
-2.15668
-2.31508
-2.46118
-2.57002
-2.65319
-2.69168
-2.67935
-2.61222
-2.54164
-2.45272
-2.45683
-2.44026
-2.0394
-1.87358
-1.74401
-1.80438
-2.07188
-2.55982
-2.7896
-2.92262
-2.99149
-2.98482
-2.96735
-2.9022
-2.80329
-2.63757
-2.41282
-2.09908
-1.78255
-1.51764
-1.33271
-1.26406
-1.35505
-0.903841
-0.964555
-1.11902
-1.42742
-1.68002
-1.92267
-2.11872
-2.31591
-2.46857
-2.60746
-2.70747
-2.77389
-2.7964
-2.74033
-2.66609
-2.48844
-2.37152
-2.41621
-2.08155
-1.9477
-1.92243
-1.72361
-1.7094
-1.82389
-2.35296
-2.81626
-2.94827
-3.04295
-3.06481
-3.04618
-2.98381
-2.91434
-2.78018
-2.583
-2.29902
-1.96971
-1.65462
-1.44657
-1.33809
-1.42497
-1.06536
-1.11595
-1.33544
-1.59124
-1.82531
-2.05261
-2.24385
-2.41496
-2.55512
-2.68091
-2.77645
-2.84652
-2.86106
-2.79227
-2.60031
-2.38602
-2.27068
-2.01916
-1.71497
-1.85693
-1.91957
-1.69712
-1.63976
-1.666
-2.02512
-2.62732
-3.01063
-3.07364
-3.06323
-3.10956
-3.07049
-3.02461
-2.90706
-2.7373
-2.50046
-2.18899
-1.85093
-1.6393
-1.51215
-1.58378
-1.14326
-1.26835
-1.48176
-1.7228
-1.96289
-2.18936
-2.39578
-2.56208
-2.70723
-2.8308
-2.91479
-2.943
-2.90178
-2.68795
-2.44681
-2.13411
-1.58249
-1.46951
-1.48114
-1.87915
-2.14888
-1.69245
-1.61641
-1.61521
-1.91046
-2.1688
-2.60339
-3.11275
-3.15792
-3.11948
-3.07203
-3.08491
-3.00184
-2.8511
-2.63742
-2.36659
-2.01914
-1.79354
-1.63711
-1.74572
-1.39111
-1.44888
-1.66171
-1.8713
-2.08991
-2.29765
-2.47205
-2.62215
-2.73524
-2.81072
-2.84369
-2.8489
-2.76819
-2.54056
-2.04968
-1.10968
-0.850658
-0.77079
-1.06405
-1.69666
-2.23784
-1.68648
-1.56291
-1.56969
-1.82737
-2.01121
-2.13742
-2.39966
-2.89508
-3.23552
-3.20618
-3.17086
-3.05621
-2.96908
-2.79964
-2.54468
-2.22632
-1.97987
-1.80898
-1.87936
-1.17119
-1.32864
-1.55204
-1.7517
-1.97308
-2.17867
-2.37302
-2.558
-2.72306
-2.84996
-2.9415
-2.93639
-2.68521
-1.98008
-0.650194
-0.0806478
0.308398
0.656316
0.29161
-0.907776
-2.10794
-1.60608
-1.45202
-1.48374
-1.71291
-1.91344
-1.99909
-2.15102
-2.23119
-2.46495
-2.83691
-3.23068
-3.22995
-3.10058
-2.91499
-2.69225
-2.40096
-2.20751
-2.10386
-2.23664
-1.37764
-1.41137
-1.51125
-1.65223
-1.82683
-1.99238
-2.19343
-2.38161
-2.54627
-2.57226
-2.47317
-2.21522
-1.60204
-0.738971
0.480243
0.660341
1.9416
2.56696
2.08364
0.362252
-1.78252
-1.50694
-1.29017
-1.40193
-1.55627
-1.81763
-1.91039
-2.05249
-2.13717
-2.23323
-2.24182
-2.33269
-2.59557
-3.09054
-3.03125
-2.83506
-2.52898
-2.20454
-2.0192
-1.90875
-0.161375
-0.334168
-0.494889
-0.611424
-0.809356
-0.959785
-1.04802
-1.15076
-1.25393
-1.23223
-1.27828
-1.27133
-1.00451
-0.306692
1.03054
1.36588
3.19619
4.48562
4.0919
1.91542
-1.27606
-1.26013
-1.10826
-1.28763
-1.37636
-1.71582
-1.8309
-1.99367
-2.05385
-2.11872
-2.20052
-2.26959
-2.30332
-2.21031
-2.59528
-2.84035
-2.74153
-2.70987
-2.7038
-2.97295
-0.342087
-0.256315
-0.298134
-0.361503
-0.496624
-0.63543
-0.805614
-0.936496
-1.09691
-1.13045
-1.15606
-1.14076
-0.901207
-0.0899146
1.23389
1.83368
3.72746
5.53143
5.98478
3.44153
-0.513493
-1.04702
-0.890281
-1.18766
-1.29161
-1.57143
-1.76932
-1.92331
-1.99287
-2.07012
-2.12665
-2.14807
-2.21707
-2.23954
-2.11965
-2.03493
-2.02138
-1.91523
-1.90715
-1.9792
-0.164388
-0.0585542
-0.123229
-0.173002
-0.320488
-0.463735
-0.624152
-0.769141
-0.941674
-1.08013
-1.16966
-1.1839
-0.979509
-0.1938
1.09037
1.96368
3.80514
5.94948
7.02519
4.77213
0.552604
-0.876488
-0.720697
-1.10847
-1.17344
-1.48572
-1.69545
-1.89377
-1.98993
-2.06696
-2.14137
-2.16849
-2.24027
-2.24326
-2.31186
-2.16059
-2.12316
-1.97848
-1.81435
-1.83212
-0.257965
-0.217799
-0.247379
-0.301825
-0.434351
-0.561404
-0.732825
-0.868893
-1.00671
-1.18525
-1.22908
-1.23462
-1.01895
-0.411532
0.891692
1.76695
3.27146
5.53044
6.50161
5.23761
1.05224
-0.347311
-0.610036
-0.958727
-1.21122
-1.50015
-1.72229
-1.74771
-1.92423
-1.98697
-2.07224
-2.06644
-2.13647
-2.09097
-2.1192
-2.01613
-2.08323
-1.94345
-1.79106
-1.76359
-0.297908
-0.256474
-0.309092
-0.365401
-0.497197
-0.619603
-0.784669
-0.927688
-1.09177
-1.22278
-1.37766
-1.50381
-1.1025
-0.672713
0.447133
1.46185
2.5284
4.29796
5.09644
4.04725
1.88457
0.385926
-0.233678
-0.799091
-1.21849
-1.53925
-1.70564
-1.825
-1.96774
-2.04809
-2.09641
-2.112
-2.20079
-2.17299
-2.2636
-2.20982
-2.29784
-2.20776
-2.07725
-2.05291
-0.374711
-0.355683
-0.41114
-0.473178
-0.60173
-0.727892
-0.87558
-1.00946
-1.16134
-1.30027
-1.37754
-1.44726
-1.35273
-1.11665
-0.227648
0.869149
1.65012
3.06387
3.4724
2.78588
1.18641
0.522585
0.235048
-0.571416
-1.07596
-1.39568
-1.73624
-1.71063
-1.88664
-1.90437
-1.97903
-1.90055
-1.96052
-1.82857
-1.91002
-1.76766
-1.85826
-1.74279
-1.71628
-1.6716
-0.434223
-0.408828
-0.465345
-0.522369
-0.645983
-0.759885
-0.912643
-1.04879
-1.20238
-1.34227
-1.46687
-1.55521
-1.4923
-1.31356
-0.890334
-0.171517
0.449756
1.43442
1.80167
1.6183
0.62705
0.251077
0.0252045
-0.469865
-1.05872
-1.34427
-1.62262
-1.74405
-1.97681
-1.91927
-2.08448
-2.07512
-2.24741
-2.17527
-2.30406
-2.16982
-2.26081
-2.10663
-2.08931
-1.98999
-0.5078
-0.496144
-0.555409
-0.609343
-0.724009
-0.832092
-0.976886
-1.1174
-1.27087
-1.40453
-1.52066
-1.59769
-1.58879
-1.49123
-1.30989
-0.969966
-0.581774
-0.0290773
-0.0150549
0.0102911
-0.0408078
-0.293364
-0.303222
-0.623679
-1.08909
-1.29521
-1.58049
-1.70775
-1.92928
-2.03843
-2.24184
-2.16172
-2.31697
-2.19857
-2.34784
-2.16346
-2.29444
-2.13193
-2.21226
-2.21859
-0.530002
-0.518872
-0.580302
-0.629939
-0.731566
-0.831866
-0.968289
-1.11281
-1.26629
-1.40225
-1.52972
-1.62206
-1.64962
-1.60734
-1.52299
-1.4103
-1.3427
-1.20385
-1.13916
-1.04864
-1.03508
-1.07399
-1.07881
-1.05215
-1.15656
-1.23862
-1.51919
-1.60329
-2.01308
-2.01854
-2.17129
-2.06233
-2.25673
-2.06818
-2.23173
-2.01354
-2.13321
-1.88234
-1.88984
-1.7887
-0.616811
-0.58684
-0.662564
-0.725452
-0.817608
-0.905116
-1.0235
-1.16538
-1.30967
-1.43826
-1.56616
-1.66015
-1.72354
-1.72302
-1.72953
-1.68744
-1.75572
-1.80141
-1.90212
-1.89914
-1.4722
-1.42213
-1.32528
-1.1926
-1.21574
-1.20067
-1.46599
-1.7176
-2.02467
-1.96584
-2.14721
-1.98116
-2.15617
-2.00112
-2.16544
-1.88201
-2.05159
-1.72132
-1.69406
-1.51164
-0.615626
-0.573852
-0.599713
-0.700609
-0.787752
-0.856811
-0.969287
-1.08438
-1.22641
-1.35188
-1.48613
-1.58889
-1.67661
-1.70813
-1.76044
-1.76764
-1.85048
-1.88646
-1.903
-1.96798
-1.47364
-1.40566
-1.29984
-1.19482
-1.25967
-1.18426
-1.52826
-1.82323
-2.05996
-1.96824
-2.17349
-1.97734
-2.20478
-1.92532
-2.18751
-1.8441
-2.04833
-1.67915
-1.6475
-1.38692
-0.704226
-0.684397
-0.685775
-0.738643
-0.867221
-0.913988
-1.00977
-1.09319
-1.23166
-1.34834
-1.48129
-1.57807
-1.67773
-1.71653
-1.79026
-1.79561
-1.87482
-1.8936
-1.89845
-1.9894
-1.46674
-1.40484
-1.32201
-1.1745
-1.27309
-1.16493
-1.61057
-1.85695
-2.09228
-1.95316
-2.19112
-1.93898
-2.19519
-1.86642
-2.13029
-1.76174
-2.01564
-1.60027
-1.61824
-1.28967
-0.63831
-0.604766
-0.617427
-0.580533
-0.720646
-0.754294
-0.842712
-0.893882
-1.04231
-1.15938
-1.30963
-1.41265
-1.53149
-1.5843
-1.68429
-1.69658
-1.77754
-1.79629
-1.80081
-1.89813
-1.33668
-1.31149
-1.24386
-1.13034
-1.35606
-1.13246
-1.62448
-1.87691
-2.15321
-1.96986
-2.24483
-1.92212
-2.22672
-1.81382
-2.13942
-1.67677
-1.99517
-1.48793
-1.56911
-1.15766
-0.740223
-0.725267
-0.71681
-0.67967
-0.695628
-0.781344
-0.847648
-0.877995
-0.982118
-1.12058
-1.27795
-1.38024
-1.51125
-1.56183
-1.67439
-1.68834
-1.77844
-1.84702
-1.85253
-1.95102
-1.32971
-1.31024
-1.2361
-1.1053
-1.32857
-1.08752
-1.64976
-1.91659
-2.29313
-1.99018
-2.33183
-1.92291
-2.27054
-1.79494
-2.14876
-1.61947
-1.95278
-1.35357
-1.43271
-0.929418
-0.611509
-0.582745
-0.569731
-0.483341
-0.476294
-0.460819
-0.609324
-0.610888
-0.76429
-0.822381
-1.05221
-1.16746
-1.33122
-1.40183
-1.54505
-1.57761
-1.71192
-1.81624
-1.8116
-1.89653
-1.20168
-1.18239
-1.08772
-0.951098
-1.16728
-0.913133
-1.58478
-1.88944
-2.29768
-2.07228
-2.3837
-1.91099
-2.31738
-1.72028
-2.15943
-1.4572
-1.8705
-1.02599
-1.15659
-0.369084
-0.742874
-0.744214
-0.713609
-0.593163
-0.544523
-0.40982
-0.611702
-0.586623
-0.757621
-0.842107
-1.00129
-1.16336
-1.35656
-1.4337
-1.60229
-1.64473
-1.81501
-1.93694
-1.91946
-1.97046
-1.20223
-1.15835
-1.03793
-0.878401
-1.08829
-0.892311
-1.59469
-1.92019
-2.41742
-2.08728
-2.49386
-1.94491
-2.421
-1.76738
-2.23316
-1.49226
-1.8327
-0.912139
-0.680322
0.404135
-0.581427
-0.509504
-0.540487
-0.30306
-0.272997
-0.0444879
-0.258093
-0.267603
-0.483335
-0.588405
-0.818898
-0.960193
-1.19667
-1.32089
-1.5373
-1.61445
-1.82153
-1.96247
-1.927
-1.91672
-1.07152
-0.979706
-0.825892
-0.646145
-0.862351
-0.691518
-1.48647
-1.88354
-2.48393
-2.12726
-2.56379
-1.93616
-2.49115
-1.65023
-2.28336
-1.26269
-1.72484
-0.287963
0.0682665
2.44491
-0.663565
-0.784545
-0.65104
-0.514057
-0.379501
-0.0864401
-0.215006
-0.251769
-0.458883
-0.588105
-0.83557
-0.997526
-1.26411
-1.39346
-1.64827
-1.7471
-1.98215
-2.13317
-2.09711
-1.99702
-1.11605
-0.942299
-0.746326
-0.521102
-0.716782
-0.547072
-1.4318
-1.85409
-2.58587
-2.17198
-2.70098
-1.97395
-2.53561
-1.72958
-2.40626
-1.43026
-1.90583
-0.0677557
0.703417
4.92719
-0.839941
-0.462225
-0.526288
-0.027083
-0.0139035
0.312123
0.151515
0.0982625
-0.176599
-0.338018
-0.638354
-0.830915
-1.13915
-1.32877
-1.65625
-1.82251
-2.09665
-2.26038
-2.18199
-1.93011
-1.01236
-0.709589
-0.464054
-0.158314
-0.416462
-0.305596
-1.33373
-1.80411
-2.71391
-2.25124
-2.84357
-1.95893
-2.55087
-1.5935
-2.2411
-1.08362
-1.36848
1.08332
3.52623
10.6992
-0.365591
-0.907645
-0.760989
-0.604882
-0.148467
0.074585
0.144864
0.0417827
-0.191407
-0.382687
-0.685405
-0.881462
-1.19382
-1.39309
-1.7617
-1.98582
-2.28345
-2.46591
-2.39357
-1.97059
-1.13627
-0.674469
-0.384686
0.106981
-0.14785
0.0626118
-1.22993
-1.62128
-2.84563
-2.35602
-3.02518
-2.02533
-2.56628
-1.53945
-2.22695
-1.10418
-1.42038
1.95515
6.17122
17.9302
-3.0941
-0.231928
-0.337276
0.23818
0.373516
0.559023
0.386104
0.301944
-0.0186488
-0.223312
-0.543661
-0.745429
-1.07962
-1.33425
-1.7901
-2.10449
-2.43242
-2.60978
-2.36314
-1.71319
-0.894434
-0.278463
0.0508811
0.488634
0.152714
0.150185
-1.2243
-1.70531
-3.03167
-2.54261
-3.10628
-1.97494
-2.36667
-1.26597
-1.69109
-0.072376
0.887818
7.00558
16.9529
36.0109
-0.452956
-0.449406
-0.456222
-0.463685
-0.478146
-0.493362
-0.514177
-0.541217
-0.574727
-0.619828
-0.658771
-0.709602
-0.742495
-0.803169
-0.771426
-0.869135
-0.805587
-0.870742
-0.710395
-0.973144
-0.632526
-0.864429
-0.879394
-0.916825
-0.659424
-0.4648
-0.131341
0.161753
0.372286
0.501268
0.356261
0.33287
-0.00513704
-0.258929
-0.510762
-0.63566
-0.794003
-0.836019
-0.842445
-0.822245
-0.461921
-0.457137
-0.466958
-0.470516
-0.481075
-0.479713
-0.509022
-0.535266
-0.56943
-0.612621
-0.62266
-0.658323
-0.664781
-0.703369
-0.760903
-0.823492
-0.779067
-0.851137
-0.69219
-0.997203
-0.712992
-0.940105
-0.988434
-1.02816
-0.767321
-0.600799
-0.296417
-0.0440038
0.180019
0.304094
0.212691
0.0503375
-0.151594
-0.384034
-0.553221
-0.665593
-0.777995
-0.812326
-0.819102
-0.795539
-0.453091
-0.446709
-0.457436
-0.463649
-0.458472
-0.469757
-0.462309
-0.494816
-0.523713
-0.553704
-0.602958
-0.650682
-0.693913
-0.843205
-0.895117
-0.950988
-0.905108
-0.967016
-0.826437
-1.11091
-0.949684
-1.23895
-1.291
-1.30942
-1.07132
-0.914183
-0.657419
-0.443822
-0.253618
-0.0744398
-0.0522198
-0.110023
-0.332204
-0.512019
-0.679254
-0.749106
-0.848404
-0.84564
-0.844818
-0.819116
-0.446023
-0.453157
-0.462003
-0.469837
-0.459586
-0.460824
-0.471326
-0.501093
-0.584625
-0.620902
-0.647722
-0.731074
-0.91351
-1.0145
-1.04723
-1.09322
-1.06172
-1.12727
-1.0196
-1.33274
-1.20134
-1.46008
-1.52597
-1.57666
-1.38341
-1.26719
-1.06807
-0.905967
-0.749352
-0.627968
-0.558605
-0.507708
-0.492353
-0.667604
-0.744873
-0.849868
-0.845328
-0.853839
-0.843335
-0.831167
-0.433646
-0.438523
-0.459886
-0.430757
-0.430111
-0.433799
-0.456218
-0.53329
-0.592837
-0.681155
-0.884688
-1.09637
-1.17327
-1.25373
-1.28668
-1.33364
-1.31102
-1.36655
-1.28618
-1.55364
-1.43538
-1.71419
-1.75621
-1.83327
-1.69308
-1.60615
-1.44489
-1.3097
-1.16652
-1.03085
-0.963785
-0.886692
-0.863479
-0.714997
-0.853286
-0.814367
-0.903812
-0.889236
-0.881385
-0.885214
-0.441206
-0.466389
-0.420554
-0.437022
-0.425516
-0.45801
-0.507099
-0.567753
-0.877207
-1.12141
-1.24122
-1.32145
-1.40255
-1.47242
-1.49903
-1.54488
-1.53522
-1.57097
-1.50955
-1.71657
-1.63022
-1.86491
-1.94248
-2.08699
-1.98867
-1.92036
-1.80011
-1.67991
-1.54516
-1.40654
-1.30492
-1.1577
-1.16392
-0.928986
-0.864276
-0.88461
-0.890215
-0.91189
-0.90376
-0.913437
-0.396385
-0.412345
-0.397792
-0.412801
-0.418846
-0.470972
-0.559633
-1.05017
-1.22738
-1.33524
-1.45335
-1.5648
-1.64409
-1.69783
-1.73946
-1.77982
-1.75185
-1.78367
-1.73131
-1.90019
-1.85732
-2.03847
-2.1058
-2.21388
-2.15884
-2.14089
-2.06036
-1.99231
-1.88996
-1.75388
-1.63506
-1.46024
-1.30879
-1.232
-0.946479
-0.895175
-0.886873
-0.908804
-0.941686
-0.955852
-0.406155
-0.443733
-0.431823
-0.466966
-0.510476
-0.707099
-1.12911
-1.26272
-1.43407
-1.5718
-1.69146
-1.78239
-1.84652
-1.90104
-1.91928
-1.94053
-1.92725
-1.94766
-1.89149
-1.99963
-1.73147
-2.07025
-2.21028
-2.31461
-2.33238
-2.33708
-2.30932
-2.26519
-2.1801
-2.09035
-1.93032
-1.74877
-1.52603
-1.36931
-1.11051
-0.921856
-0.88665
-0.976908
-0.950623
-0.98355
-0.402386
-0.466139
-0.522686
-0.640011
-0.781109
-1.08452
-1.26158
-1.48428
-1.63049
-1.77462
-1.89205
-1.97527
-2.03486
-2.07684
-2.09616
-2.10707
-2.09615
-2.09391
-2.06609
-2.04625
-1.71362
-1.74552
-2.20002
-2.34447
-2.42272
-2.46941
-2.47358
-2.46233
-2.41284
-2.32031
-2.1917
-1.9972
-1.76778
-1.51726
-1.33931
-1.01263
-0.927723
-0.988343
-0.999979
-1.04154
-0.45382
-0.515438
-0.590598
-0.735703
-0.969996
-1.27911
-1.49111
-1.66244
-1.81807
-1.95876
-2.06151
-2.14133
-2.19311
-2.22752
-2.23564
-2.23576
-2.22857
-2.21784
-2.19793
-2.08009
-1.73452
-1.65921
-2.0221
-2.34763
-2.4818
-2.58102
-2.62004
-2.63179
-2.60011
-2.5326
-2.41195
-2.23214
-2.00564
-1.72824
-1.47204
-1.22909
-0.974781
-1.01187
-1.06557
-1.07459
-0.51992
-0.585431
-0.677439
-0.873889
-1.18526
-1.45725
-1.64133
-1.82554
-1.97834
-2.11146
-2.20959
-2.28509
-2.33131
-2.35551
-2.3549
-2.34691
-2.33099
-2.3233
-2.30319
-2.12327
-1.7757
-1.5694
-1.83834
-2.29053
-2.50789
-2.65333
-2.72188
-2.75625
-2.74377
-2.69137
-2.5952
-2.44117
-2.22713
-1.96094
-1.67107
-1.42481
-1.1623
-1.05709
-1.17001
-1.15223
-0.632176
-0.698202
-0.801293
-1.04998
-1.37068
-1.61452
-1.80677
-1.98282
-2.12703
-2.25178
-2.33785
-2.40508
-2.44104
-2.4537
-2.4413
-2.41338
-2.39932
-2.39082
-2.38279
-2.13978
-1.70811
-1.53129
-1.68366
-2.12227
-2.51789
-2.70461
-2.81871
-2.85714
-2.85797
-2.82499
-2.7439
-2.61724
-2.42244
-2.16392
-1.85808
-1.56562
-1.36609
-1.11406
-1.21564
-1.22122
-0.753717
-0.82001
-0.944033
-1.25075
-1.51664
-1.75284
-1.93323
-2.1136
-2.24338
-2.3576
-2.43834
-2.50046
-2.52737
-2.5242
-2.48255
-2.4495
-2.41915
-2.41026
-2.41697
-2.00533
-1.70365
-1.50739
-1.55523
-1.87281
-2.4671
-2.74096
-2.86912
-2.9517
-2.93717
-2.92114
-2.87284
-2.77411
-2.60928
-2.37763
-2.08653
-1.77615
-1.52017
-1.32669
-1.27127
-1.35478
-0.911824
-0.978323
-1.15778
-1.45428
-1.69614
-1.91449
-2.09736
-2.26033
-2.38047
-2.4778
-2.54179
-2.58016
-2.58301
-2.55189
-2.49622
-2.4337
-2.32703
-2.39446
-2.01007
-1.85936
-1.70192
-1.50352
-1.48047
-1.67762
-2.17492
-2.77339
-2.91374
-2.97958
-3.01859
-2.99983
-2.96106
-2.89169
-2.75241
-2.55098
-2.2712
-1.94063
-1.64718
-1.44832
-1.33119
-1.43116
-1.06188
-1.13067
-1.36153
-1.61001
-1.82901
-2.03303
-2.20249
-2.34233
-2.44462
-2.52453
-2.57671
-2.60895
-2.60339
-2.54722
-2.42815
-2.26837
-2.2888
-2.02655
-1.77717
-1.68108
-1.6954
-1.4818
-1.45131
-1.58072
-1.94123
-2.39127
-2.96332
-3.05636
-3.01423
-3.07474
-3.06179
-3.00382
-2.88189
-2.72177
-2.46573
-2.17531
-1.83878
-1.63714
-1.50564
-1.5744
-1.16722
-1.31163
-1.52189
-1.75228
-1.98031
-2.17715
-2.35017
-2.48759
-2.59031
-2.65776
-2.6871
-2.67222
-2.59752
-2.46108
-2.2701
-2.18939
-1.76661
-1.49193
-1.29485
-1.4698
-1.65539
-1.43248
-1.42321
-1.54168
-1.83525
-2.07202
-2.34258
-2.99814
-3.12188
-3.09118
-3.0723
-3.06933
-2.97524
-2.83754
-2.60425
-2.33891
-1.98851
-1.78787
-1.62993
-1.72785
-1.37183
-1.48125
-1.66782
-1.87928
-2.07469
-2.25914
-2.40104
-2.51942
-2.58849
-2.62169
-2.60295
-2.57025
-2.49293
-2.34538
-2.03647
-1.38089
-0.779866
-0.757692
-0.776036
-1.15889
-1.55959
-1.3307
-1.36241
-1.47321
-1.76154
-1.93477
-2.07526
-2.28856
-2.70421
-3.17811
-3.19042
-3.14502
-3.02555
-2.95467
-2.75972
-2.51049
-2.18785
-1.96106
-1.79145
-1.85488
-1.20542
-1.36207
-1.57757
-1.76816
-1.97538
-2.15472
-2.33197
-2.47651
-2.59472
-2.66477
-2.67785
-2.61904
-2.39416
-1.87904
-1.03558
-0.393909
0.0851346
-0.164932
-0.443393
-0.887851
-1.42704
-1.19016
-1.26081
-1.37178
-1.65799
-1.84732
-1.94698
-2.10164
-2.20122
-2.41711
-2.80421
-3.22029
-3.19583
-3.07011
-2.876
-2.65282
-2.35982
-2.17359
-2.06692
-2.19079
-1.36863
-1.39167
-1.45171
-1.62269
-1.74072
-1.87607
-2.05391
-2.20362
-2.31391
-2.34953
-2.13476
-1.83901
-1.36558
-0.729698
-0.166914
0.629922
0.808492
0.706647
0.322865
-0.439231
-1.20486
-1.01198
-1.1189
-1.26487
-1.50957
-1.75067
-1.86076
-2.00282
-2.08462
-2.20047
-2.22377
-2.3134
-2.63346
-3.08992
-3.03365
-2.78572
-2.50262
-2.16991
-2.00014
-1.90684
-0.0808954
-0.253196
-0.414204
-0.526944
-0.72037
-0.835603
-0.956675
-1.04236
-1.13725
-1.16764
-1.10716
-1.06121
-0.842348
-0.371742
0.240695
1.14149
1.38091
1.76667
1.53999
0.110469
-0.74439
-0.794436
-0.929818
-1.15453
-1.33885
-1.6591
-1.78568
-1.94364
-2.02433
-2.10638
-2.16901
-2.22083
-2.21986
-2.10413
-2.60754
-2.75869
-2.70517
-2.65263
-2.64292
-2.90879
-0.343716
-0.245872
-0.273407
-0.340679
-0.471585
-0.591247
-0.747315
-0.853473
-0.968392
-1.0475
-0.991564
-0.949487
-0.690029
-0.201372
0.461004
1.40067
1.9218
2.53916
2.40585
1.26609
-0.586664
-0.485852
-0.758887
-1.07023
-1.21965
-1.52664
-1.71258
-1.87318
-1.94656
-2.00934
-2.05855
-2.11238
-2.17504
-2.19747
-2.06854
-2.03995
-1.99266
-1.90159
-1.89911
-1.97752
-0.185665
-0.0947946
-0.141435
-0.189154
-0.339288
-0.447914
-0.616967
-0.725262
-0.880633
-0.952619
-0.980011
-0.934747
-0.67833
-0.199391
0.459458
1.42039
2.04508
3.04145
2.91368
1.84087
0.222786
-0.535267
-0.619835
-0.991435
-1.1659
-1.47023
-1.65617
-1.85378
-1.9333
-1.99828
-2.07926
-2.13242
-2.21799
-2.22122
-2.30784
-2.12146
-2.09579
-1.94445
-1.7923
-1.81294
-0.273224
-0.229502
-0.260058
-0.310388
-0.436923
-0.544486
-0.70657
-0.812252
-0.93426
-1.0664
-1.01247
-0.970727
-0.731197
-0.292601
0.280025
1.21251
1.73493
3.07165
3.39848
2.60278
1.10026
0.0307312
-0.6047
-0.960404
-1.2553
-1.43774
-1.60387
-1.74597
-1.86697
-1.92262
-2.01453
-2.04107
-2.12586
-2.08245
-2.09478
-2.00218
-2.05517
-1.9177
-1.7679
-1.7512
-0.319047
-0.279842
-0.327215
-0.378279
-0.506234
-0.613398
-0.761374
-0.879489
-1.00069
-1.11702
-1.16237
-1.2157
-0.883402
-0.477708
0.00140382
0.653453
1.28638
2.45437
3.12133
2.89323
1.26621
0.47418
-0.320303
-0.958925
-1.21122
-1.49179
-1.658
-1.77598
-1.95528
-1.9509
-2.07184
-2.08335
-2.19348
-2.16647
-2.25305
-2.18239
-2.26463
-2.17065
-2.04065
-2.04182
-0.388429
-0.366171
-0.417312
-0.472307
-0.595389
-0.699791
-0.843486
-0.94931
-1.07852
-1.16788
-1.22098
-1.23312
-1.15462
-0.81472
-0.435986
0.00933427
0.688954
1.20505
1.96579
1.99137
0.884743
0.593043
-0.310441
-0.835226
-1.21475
-1.48438
-1.63078
-1.72442
-1.87575
-1.87492
-1.95397
-1.89605
-1.9454
-1.83267
-1.8914
-1.75073
-1.82993
-1.71976
-1.68904
-1.65327
-0.442681
-0.418168
-0.471651
-0.521519
-0.639933
-0.740393
-0.88545
-1.00309
-1.13888
-1.24672
-1.34062
-1.37036
-1.29831
-1.10722
-0.832604
-0.510078
-0.193274
0.17174
0.49736
0.435633
0.074979
-0.316246
-0.651559
-0.940546
-1.21786
-1.40736
-1.65154
-1.73909
-1.90687
-1.91962
-2.06879
-2.07587
-2.23169
-2.16442
-2.2624
-2.13921
-2.21983
-2.06354
-2.03786
-1.93177
-0.512544
-0.500098
-0.558096
-0.60711
-0.719781
-0.818806
-0.97512
-1.08845
-1.23383
-1.34678
-1.44816
-1.48849
-1.48485
-1.37197
-1.2318
-1.01945
-0.870806
-0.703737
-0.595221
-0.636379
-0.829604
-0.957356
-0.88008
-1.03102
-1.24081
-1.3636
-1.6009
-1.713
-1.92295
-2.0395
-2.22959
-2.18963
-2.3017
-2.21364
-2.30644
-2.1558
-2.25853
-2.10401
-2.17554
-2.1832
-0.538057
-0.515669
-0.584111
-0.632468
-0.731865
-0.82802
-0.961482
-1.10341
-1.25418
-1.38187
-1.49667
-1.56875
-1.60454
-1.5736
-1.51871
-1.41582
-1.36069
-1.31426
-1.40342
-1.37211
-1.2239
-1.22951
-1.23511
-1.14086
-1.26076
-1.31132
-1.57454
-1.61472
-2.02312
-1.99801
-2.16116
-2.06429
-2.24796
-2.04667
-2.1975
-1.97613
-2.09359
-1.83834
-1.84828
-1.74908
-0.611316
-0.584124
-0.654851
-0.731867
-0.823961
-0.910677
-1.02776
-1.16797
-1.31249
-1.4295
-1.55231
-1.6411
-1.71476
-1.73175
-1.75788
-1.72626
-1.76799
-1.735
-1.75655
-1.71025
-1.3198
-1.28744
-1.23902
-1.17336
-1.27872
-1.27886
-1.52623
-1.75865
-2.01617
-1.96969
-2.127
-1.98839
-2.12811
-2.00128
-2.11771
-1.87445
-2.00881
-1.68597
-1.64672
-1.46835
-0.621007
-0.575595
-0.59686
-0.704457
-0.804745
-0.871776
-0.982446
-1.09851
-1.22558
-1.34439
-1.47427
-1.57908
-1.67965
-1.73042
-1.80229
-1.8134
-1.89387
-1.89217
-1.89385
-1.81423
-1.36682
-1.33145
-1.28749
-1.20638
-1.33452
-1.24933
-1.60491
-1.82667
-2.06082
-1.95245
-2.15796
-1.95558
-2.17866
-1.89523
-2.14697
-1.80032
-2.00961
-1.62721
-1.597
-1.3374
-0.708437
-0.686549
-0.689473
-0.733655
-0.892634
-0.932902
-1.02339
-1.0862
-1.21959
-1.32869
-1.46155
-1.56141
-1.67296
-1.72832
-1.82295
-1.83398
-1.92602
-1.89961
-1.897
-1.82901
-1.33618
-1.30666
-1.28096
-1.18247
-1.39479
-1.23183
-1.67588
-1.85147
-2.09198
-1.94357
-2.17773
-1.92723
-2.16242
-1.84539
-2.0906
-1.72717
-1.97404
-1.55754
-1.56616
-1.24369
-0.640892
-0.606391
-0.620773
-0.582634
-0.727248
-0.772207
-0.852636
-0.898007
-1.02789
-1.13867
-1.28393
-1.3878
-1.51441
-1.57747
-1.69416
-1.71007
-1.81671
-1.80563
-1.82547
-1.81264
-1.27479
-1.26433
-1.23862
-1.13957
-1.36883
-1.11111
-1.64608
-1.87004
-2.13025
-1.95403
-2.21851
-1.8989
-2.18617
-1.77182
-2.09488
-1.61922
-1.95535
-1.43358
-1.51648
-1.10942
-0.743249
-0.727437
-0.71679
-0.683015
-0.689502
-0.785821
-0.849347
-0.874521
-0.987802
-1.09439
-1.24602
-1.34362
-1.48065
-1.53595
-1.66392
-1.6744
-1.786
-1.81762
-1.84338
-1.85815
-1.26002
-1.24825
-1.20833
-1.09104
-1.32308
-1.1105
-1.69572
-1.87517
-2.27535
-1.95968
-2.30707
-1.89658
-2.23433
-1.75315
-2.09894
-1.56562
-1.90379
-1.32282
-1.38175
-0.887957
-0.612489
-0.581232
-0.57077
-0.482288
-0.476022
-0.44838
-0.611796
-0.611405
-0.76406
-0.848242
-1.03345
-1.13855
-1.29901
-1.36863
-1.5228
-1.54687
-1.70106
-1.77647
-1.79994
-1.82156
-1.1493
-1.13052
-1.07061
-0.938761
-1.17033
-0.950732
-1.60591
-1.85419
-2.27844
-2.02785
-2.34416
-1.87144
-2.2681
-1.66899
-2.11606
-1.38469
-1.85168
-0.961394
-1.10982
-0.317798
-0.746253
-0.748615
-0.711521
-0.598457
-0.543367
-0.408389
-0.599768
-0.584933
-0.744668
-0.818774
-1.00433
-1.13197
-1.31664
-1.39073
-1.57368
-1.60352
-1.79841
-1.89461
-1.90427
-1.90227
-1.14506
-1.09561
-1.0069
-0.844159
-1.07558
-0.857854
-1.62719
-1.89224
-2.39393
-2.06712
-2.44475
-1.9149
-2.38414
-1.71846
-2.18111
-1.4303
-1.77626
-0.875791
-0.641483
0.442603
-0.577977
-0.509252
-0.539988
-0.308859
-0.274267
-0.052063
-0.244784
-0.271076
-0.472018
-0.577504
-0.803202
-0.939866
-1.13094
-1.28379
-1.51231
-1.57297
-1.80747
-1.91715
-1.90772
-1.84807
-1.00985
-0.910492
-0.793096
-0.609595
-0.855877
-0.663003
-1.52486
-1.83944
-2.4449
-2.04179
-2.52421
-1.86909
-2.43274
-1.60329
-2.23699
-1.22647
-1.66096
-0.302821
0.145167
2.46393
-0.673308
-0.789668
-0.656569
-0.526286
-0.387129
-0.104724
-0.203831
-0.257524
-0.442629
-0.569711
-0.805503
-0.964434
-1.22931
-1.35155
-1.6273
-1.68075
-1.97649
-2.10059
-2.08136
-1.93929
-1.05398
-0.861575
-0.698222
-0.465134
-0.694897
-0.500385
-1.46691
-1.81736
-2.55858
-2.13102
-2.66014
-1.93431
-2.50584
-1.69751
-2.3716
-1.38576
-1.89049
-0.0357051
0.682402
4.91512
-0.8472
-0.466268
-0.530736
-0.039068
-0.0242615
0.288927
0.156834
0.0917353
-0.161476
-0.319255
-0.607558
-0.797609
-1.10328
-1.29425
-1.63327
-1.78532
-2.08517
-2.19632
-2.14737
-1.851
-0.945653
-0.608984
-0.399575
-0.105015
-0.389144
-0.273326
-1.34782
-1.78329
-2.69402
-2.19513
-2.79271
-1.93049
-2.5117
-1.55482
-2.21893
-1.07711
-1.37011
1.05323
3.4911
10.6358
-0.380336
-0.915517
-0.767959
-0.622447
-0.163455
0.0441948
0.148946
0.0335204
-0.173499
-0.360662
-0.647709
-0.841623
-1.15408
-1.3558
-1.739
-1.95344
-2.26787
-2.42908
-2.36622
-1.90199
-1.07994
-0.565814
-0.296766
0.178419
-0.0873835
0.103171
-1.21844
-1.52377
-2.8063
-2.31691
-2.98739
-1.99421
-2.53711
-1.51826
-2.20268
-1.0971
-1.46367
1.88668
6.05725
17.7985
-3.09463
-0.233925
-0.343663
0.221066
0.357091
0.538155
0.384062
0.297795
-0.000431208
-0.199023
-0.504936
-0.704585
-1.04149
-1.30478
-1.77842
-2.08979
-2.42754
-2.57321
-2.32561
-1.63324
-0.827878
-0.162369
0.133238
0.600921
0.230674
0.204723
-1.19307
-1.63972
-3.01451
-2.50686
-3.06522
-1.94335
-2.3309
-1.231
-1.67882
-0.0728232
0.845362
6.92304
16.8429
35.8888
-0.468184
-0.461596
-0.470221
-0.470759
-0.484767
-0.494141
-0.522661
-0.53848
-0.58714
-0.621438
-0.669926
-0.709751
-0.762368
-0.780815
-0.807052
-0.844448
-0.79831
-0.847761
-0.669757
-0.92506
-0.632427
-0.860821
-0.820099
-0.812183
-0.510237
-0.267959
0.0919792
0.397421
0.631333
0.734584
0.596605
0.466217
0.0505134
-0.22672
-0.526349
-0.661326
-0.829966
-0.853851
-0.861975
-0.841513
-0.48224
-0.470269
-0.481861
-0.473057
-0.485982
-0.47624
-0.516942
-0.532688
-0.583083
-0.600969
-0.628936
-0.655027
-0.665189
-0.700025
-0.76903
-0.811098
-0.765155
-0.824592
-0.650599
-0.930715
-0.720787
-0.959893
-1.02304
-1.03267
-0.756026
-0.555038
-0.24723
0.0153103
0.24202
0.398903
0.29712
0.13415
-0.168983
-0.396989
-0.594302
-0.699191
-0.817548
-0.834217
-0.841371
-0.818238
-0.466696
-0.458687
-0.465928
-0.468434
-0.465114
-0.463336
-0.467076
-0.489131
-0.527258
-0.558289
-0.612021
-0.654575
-0.719254
-0.873488
-0.907233
-0.947129
-0.902914
-0.960287
-0.812406
-1.10262
-0.971188
-1.26131
-1.29074
-1.30939
-1.06941
-0.906868
-0.664626
-0.459381
-0.290582
-0.140914
-0.119611
-0.150828
-0.382966
-0.53252
-0.754423
-0.790519
-0.868609
-0.862881
-0.863415
-0.839964
-0.469194
-0.461077
-0.482318
-0.460877
-0.461699
-0.453499
-0.46995
-0.497454
-0.579547
-0.609265
-0.650368
-0.762328
-0.955508
-1.02114
-1.05163
-1.097
-1.07429
-1.14521
-1.03653
-1.31939
-1.26629
-1.50741
-1.57977
-1.62316
-1.44655
-1.32938
-1.13176
-0.960621
-0.806827
-0.681607
-0.638487
-0.633768
-0.565988
-0.709348
-0.831302
-0.834455
-0.88146
-0.86601
-0.866594
-0.855364
-0.453569
-0.444264
-0.455694
-0.42646
-0.426877
-0.42159
-0.456656
-0.517239
-0.58057
-0.689043
-0.933289
-1.13093
-1.19817
-1.26288
-1.29193
-1.34302
-1.32644
-1.3904
-1.28082
-1.53926
-1.45632
-1.74052
-1.81626
-1.85163
-1.72496
-1.6424
-1.49371
-1.34746
-1.22247
-1.08429
-1.01831
-0.934866
-0.93441
-0.760391
-0.884897
-0.87007
-0.895923
-0.900531
-0.902043
-0.901124
-0.45226
-0.481453
-0.422225
-0.433448
-0.418229
-0.453411
-0.493553
-0.580419
-0.917349
-1.15329
-1.25413
-1.3411
-1.41578
-1.46652
-1.50262
-1.54967
-1.53072
-1.58011
-1.4999
-1.71668
-1.64126
-1.89743
-1.97581
-2.02764
-1.9913
-1.96851
-1.84364
-1.72817
-1.59713
-1.45296
-1.35625
-1.2204
-1.20809
-0.997661
-0.908468
-0.903631
-0.918905
-0.920961
-0.928641
-0.935923
-0.389927
-0.392033
-0.394245
-0.40094
-0.423281
-0.470652
-0.633508
-1.09646
-1.23382
-1.34621
-1.46475
-1.57236
-1.63815
-1.69466
-1.73226
-1.75842
-1.76215
-1.7814
-1.71427
-1.88838
-1.83637
-2.02737
-2.0828
-2.19108
-2.15719
-2.1372
-2.07953
-1.9975
-1.93527
-1.79448
-1.66534
-1.51623
-1.35179
-1.2719
-0.980827
-0.913897
-0.902438
-0.916089
-0.955784
-0.966004
-0.413977
-0.449356
-0.44626
-0.49181
-0.551697
-0.783966
-1.15433
-1.27503
-1.44434
-1.5749
-1.68258
-1.77189
-1.82863
-1.87798
-1.90148
-1.92401
-1.91321
-1.9192
-1.86531
-1.9477
-1.73286
-1.99194
-2.19051
-2.27757
-2.32837
-2.32444
-2.30706
-2.26023
-2.19599
-2.08301
-1.96636
-1.76762
-1.58638
-1.40605
-1.1476
-0.954111
-0.918135
-0.994677
-0.970686
-1.006
-0.400927
-0.459674
-0.525521
-0.651511
-0.813023
-1.10115
-1.28177
-1.49084
-1.62544
-1.75781
-1.87099
-1.94466
-2.00508
-2.04621
-2.06981
-2.08222
-2.07935
-2.06247
-2.01331
-1.90156
-1.65225
-1.55037
-2.14983
-2.29646
-2.39911
-2.43893
-2.44824
-2.43324
-2.3966
-2.31721
-2.18695
-2.03058
-1.79485
-1.55209
-1.36803
-1.0306
-0.951218
-0.993294
-1.0228
-1.04953
-0.450737
-0.518943
-0.602039
-0.763197
-1.01317
-1.29896
-1.49437
-1.65601
-1.79614
-1.92749
-2.01854
-2.09749
-2.14575
-2.18442
-2.20035
-2.20786
-2.20711
-2.17627
-2.14353
-1.95638
-1.64393
-1.40657
-1.8409
-2.28939
-2.43899
-2.54426
-2.58029
-2.59313
-2.57395
-2.51237
-2.40156
-2.23374
-2.019
-1.749
-1.49788
-1.24207
-1.00672
-1.02943
-1.08301
-1.09339
-0.515614
-0.588885
-0.688849
-0.903072
-1.21238
-1.45823
-1.63158
-1.80082
-1.94401
-2.06372
-2.15664
-2.22661
-2.27345
-2.30303
-2.31595
-2.32184
-2.31365
-2.29393
-2.24037
-1.98863
-1.63952
-1.33082
-1.61144
-2.18057
-2.44983
-2.60285
-2.67428
-2.70586
-2.71677
-2.67567
-2.57747
-2.42761
-2.21019
-1.95506
-1.66922
-1.42242
-1.15783
-1.06809
-1.18392
-1.16275
-0.63892
-0.711539
-0.825602
-1.09414
-1.38633
-1.61465
-1.78535
-1.96927
-2.07875
-2.19338
-2.26665
-2.33031
-2.36583
-2.39046
-2.3973
-2.38793
-2.38881
-2.36515
-2.29341
-2.03921
-1.60657
-1.29982
-1.42954
-1.9282
-2.47612
-2.64481
-2.77353
-2.81188
-2.83945
-2.82124
-2.73484
-2.60379
-2.40444
-2.15387
-1.85724
-1.56621
-1.36339
-1.12672
-1.22226
-1.23521
-0.760708
-0.83532
-0.973525
-1.28646
-1.52811
-1.74326
-1.90292
-2.07113
-2.18747
-2.28605
-2.35488
-2.40958
-2.44025
-2.45271
-2.43996
-2.44056
-2.42721
-2.39683
-2.38173
-1.9266
-1.57513
-1.30688
-1.32633
-1.70867
-2.34979
-2.73927
-2.80416
-2.91846
-2.93119
-2.92796
-2.86095
-2.75309
-2.57681
-2.34795
-2.04412
-1.74383
-1.50622
-1.30585
-1.2756
-1.35292
-0.935023
-1.00613
-1.20468
-1.48449
-1.70709
-1.90308
-2.06603
-2.2119
-2.31371
-2.39154
-2.43751
-2.46775
-2.47481
-2.46655
-2.45724
-2.42693
-2.36244
-2.41836
-2.04117
-1.80464
-1.58934
-1.33504
-1.28782
-1.57102
-2.02
-2.71118
-2.92769
-2.94924
-3.03594
-3.01907
-2.94849
-2.86881
-2.71726
-2.51768
-2.22118
-1.93329
-1.63971
-1.44596
-1.3246
-1.43633
-1.06543
-1.15489
-1.38756
-1.62975
-1.83013
-2.01533
-2.16703
-2.28699
-2.37251
-2.43266
-2.4676
-2.49158
-2.49339
-2.47278
-2.40649
-2.33302
-2.35975
-2.11352
-1.76328
-1.63898
-1.51379
-1.33541
-1.28823
-1.52234
-1.85217
-2.17401
-2.86486
-3.07595
-3.03331
-3.09334
-3.03953
-2.96857
-2.83841
-2.67487
-2.40511
-2.13532
-1.79781
-1.62771
-1.49824
-1.56693
-1.21335
-1.35654
-1.56757
-1.78258
-1.99342
-2.16944
-2.31912
-2.43395
-2.51526
-2.56208
-2.57481
-2.55064
-2.48758
-2.39238
-2.31119
-2.26048
-1.91034
-1.56064
-1.53167
-1.48048
-1.47202
-1.31178
-1.29061
-1.4918
-1.76839
-1.9907
-2.21896
-2.87325
-3.13385
-3.09184
-3.0477
-3.03591
-2.93333
-2.78503
-2.54441
-2.28018
-1.96023
-1.75829
-1.61505
-1.71687
-1.3387
-1.47877
-1.65481
-1.86683
-2.04713
-2.22274
-2.33404
-2.42472
-2.47009
-2.48487
-2.4517
-2.4249
-2.38666
-2.33184
-2.12547
-1.62528
-1.195
-1.15299
-1.0671
-1.23214
-1.32507
-1.24772
-1.26692
-1.43431
-1.70813
-1.87763
-2.01953
-2.22723
-2.6361
-3.15405
-3.15156
-3.09819
-2.99167
-2.90801
-2.69943
-2.45885
-2.14999
-1.92425
-1.77271
-1.84447
-1.26271
-1.3977
-1.60173
-1.7687
-1.96824
-2.13837
-2.28247
-2.39228
-2.48469
-2.53195
-2.53246
-2.47552
-2.27172
-1.87257
-1.24161
-0.81443
-0.620446
-0.601931
-0.553973
-0.871428
-1.14989
-1.13641
-1.20043
-1.33971
-1.6261
-1.7988
-1.91109
-2.05199
-2.17385
-2.37539
-2.77979
-3.17219
-3.14347
-3.00808
-2.82608
-2.59784
-2.30763
-2.13923
-2.03305
-2.17067
-1.16306
-1.24096
-1.3187
-1.49969
-1.61528
-1.78881
-1.86763
-1.95121
-1.99188
-1.97237
-1.74461
-1.47366
-1.1449
-0.840448
-0.511467
-0.218114
-0.00613882
0.100121
-0.101283
-0.381073
-0.985504
-0.990502
-1.11208
-1.24042
-1.51116
-1.71535
-1.82861
-1.95879
-2.04135
-2.15303
-2.19176
-2.30002
-2.65745
-3.07153
-2.97338
-2.75473
-2.42452
-2.1534
-1.96728
-1.89855
-0.0831478
-0.221415
-0.361865
-0.474187
-0.649028
-0.77471
-0.893827
-0.966992
-1.05498
-1.09026
-1.01963
-0.975355
-0.827372
-0.578498
-0.148883
0.157994
0.574055
0.506242
0.0968815
0.0157853
-0.756224
-0.81739
-0.996764
-1.15264
-1.36997
-1.63177
-1.76414
-1.89925
-1.9781
-2.05235
-2.12374
-2.17375
-2.18619
-2.09456
-2.63542
-2.73543
-2.64703
-2.62623
-2.60046
-2.85632
-0.310458
-0.217677
-0.240751
-0.310779
-0.44792
-0.548376
-0.703622
-0.760055
-0.868081
-0.90952
-0.858187
-0.804497
-0.630311
-0.342506
0.105807
0.447659
0.860896
0.930393
0.903881
0.465256
-0.533241
-0.597874
-0.886619
-1.08513
-1.25668
-1.52608
-1.69482
-1.83483
-1.91567
-1.97999
-2.03246
-2.06118
-2.12843
-2.12865
-1.98702
-1.98235
-1.95557
-1.8929
-1.86025
-1.96805
-0.20227
-0.146959
-0.168589
-0.212481
-0.349392
-0.450164
-0.607027
-0.68722
-0.827515
-0.86312
-0.869497
-0.801145
-0.608543
-0.278294
0.192555
0.571359
0.96877
1.25212
1.39192
0.996779
-0.171984
-0.560047
-0.758342
-1.05104
-1.21495
-1.45631
-1.65072
-1.81922
-1.91635
-1.97256
-2.04286
-2.07161
-2.1594
-2.17548
-2.22655
-2.07944
-2.05994
-1.91368
-1.77071
-1.78828
-0.282265
-0.240792
-0.270246
-0.314792
-0.438523
-0.529073
-0.681973
-0.754023
-0.876797
-0.962883
-0.891891
-0.842669
-0.627498
-0.314981
0.146157
0.556475
0.874935
1.21204
1.5664
1.2479
0.270688
-0.463776
-0.755907
-1.06324
-1.19512
-1.41011
-1.58343
-1.71997
-1.85362
-1.90781
-1.98689
-1.98794
-2.06519
-2.01503
-2.0369
-1.97794
-2.03004
-1.89418
-1.75147
-1.74748
-0.33873
-0.302441
-0.341876
-0.385777
-0.505215
-0.596041
-0.73328
-0.831791
-0.922929
-1.02938
-1.03504
-1.0675
-0.75504
-0.455805
-0.0209964
0.393066
0.688234
0.814465
1.15778
0.982899
0.321694
-0.286147
-0.661654
-1.00727
-1.22723
-1.44273
-1.62271
-1.75278
-1.89406
-1.91649
-2.01285
-2.02501
-2.12645
-2.11586
-2.19614
-2.15215
-2.22734
-2.12996
-1.9989
-2.01511
-0.399797
-0.374937
-0.419834
-0.464953
-0.582344
-0.664164
-0.811935
-0.896217
-1.00233
-1.06977
-1.08536
-1.10135
-0.974187
-0.738981
-0.378016
0.0576417
0.239206
0.476994
0.39089
0.367825
-0.00744924
-0.138061
-0.599225
-1.02211
-1.20651
-1.39875
-1.58359
-1.67379
-1.82295
-1.8393
-1.92532
-1.85048
-1.91599
-1.7854
-1.86946
-1.73755
-1.8223
-1.70969
-1.68229
-1.66773
-0.450227
-0.426597
-0.474474
-0.515486
-0.627538
-0.719006
-0.86749
-0.960426
-1.07382
-1.16308
-1.22416
-1.24009
-1.14895
-0.992913
-0.760526
-0.451513
-0.23961
0.0220628
-0.0225905
-0.0656032
-0.228092
-0.442157
-0.65216
-0.949214
-1.22413
-1.3968
-1.65206
-1.7058
-1.87946
-1.8694
-2.03147
-2.0247
-2.19417
-2.135
-2.2358
-2.12313
-2.19885
-2.04025
-2.01163
-1.90152
-0.518591
-0.502798
-0.554172
-0.596782
-0.699287
-0.795198
-0.926129
-1.04908
-1.17349
-1.27652
-1.35469
-1.39101
-1.37097
-1.2837
-1.1457
-0.941805
-0.795906
-0.583808
-0.615018
-0.54874
-0.599958
-0.699981
-0.836659
-1.03029
-1.25661
-1.36673
-1.60079
-1.70312
-1.92111
-2.02385
-2.22367
-2.14827
-2.2832
-2.19355
-2.29199
-2.14208
-2.2519
-2.10224
-2.18241
-2.19852
-0.543605
-0.510198
-0.580131
-0.623568
-0.719728
-0.81084
-0.945132
-1.0718
-1.21178
-1.3337
-1.4421
-1.51221
-1.54493
-1.53152
-1.49567
-1.40622
-1.36153
-1.25333
-1.2534
-1.07453
-0.989653
-1.00804
-1.09903
-1.09417
-1.30224
-1.35226
-1.58316
-1.63815
-2.00901
-1.98818
-2.14113
-2.0402
-2.23117
-2.03445
-2.18847
-1.97471
-2.08932
-1.83647
-1.85478
-1.75728
-0.637965
-0.592056
-0.637785
-0.723766
-0.811803
-0.895506
-1.02723
-1.13898
-1.28126
-1.40399
-1.51735
-1.6101
-1.68554
-1.72436
-1.76438
-1.74686
-1.78167
-1.68797
-1.68914
-1.36371
-1.21339
-1.18387
-1.22904
-1.26652
-1.35145
-1.32315
-1.56639
-1.78635
-2.01812
-1.9672
-2.12502
-1.97764
-2.12858
-1.99968
-2.10172
-1.87085
-1.99985
-1.6844
-1.65206
-1.478
-0.614881
-0.580692
-0.591475
-0.682012
-0.798859
-0.856511
-0.967812
-1.07112
-1.21004
-1.32407
-1.4499
-1.55725
-1.66233
-1.7297
-1.81458
-1.82928
-1.91825
-1.84563
-1.85903
-1.50043
-1.25062
-1.2183
-1.2592
-1.21843
-1.40613
-1.31651
-1.6573
-1.83269
-2.06115
-1.95605
-2.15763
-1.95829
-2.1824
-1.88883
-2.16586
-1.79284
-2.03008
-1.62633
-1.60931
-1.34846
-0.71433
-0.687359
-0.691083
-0.708961
-0.890456
-0.92436
-1.01833
-1.08221
-1.20818
-1.31136
-1.43801
-1.54022
-1.65387
-1.72084
-1.82198
-1.83518
-1.94043
-1.87588
-1.91395
-1.63959
-1.28484
-1.25273
-1.28845
-1.20516
-1.43015
-1.20676
-1.69104
-1.85026
-2.0964
-1.94612
-2.1791
-1.93103
-2.16631
-1.85048
-2.08393
-1.73968
-1.98559
-1.56558
-1.57945
-1.2611
-0.643327
-0.606902
-0.622728
-0.579842
-0.712479
-0.77673
-0.857179
-0.903303
-1.02331
-1.12336
-1.25834
-1.36612
-1.49208
-1.56304
-1.68544
-1.69865
-1.82172
-1.76755
-1.8229
-1.66087
-1.21874
-1.20131
-1.22233
-1.13504
-1.36153
-1.20346
-1.70997
-1.87619
-2.13435
-1.96249
-2.22247
-1.90692
-2.19423
-1.78041
-2.10591
-1.62976
-1.97861
-1.44483
-1.53996
-1.13418
-0.745801
-0.732295
-0.71794
-0.689201
-0.684026
-0.786483
-0.857295
-0.88464
-0.99484
-1.0888
-1.22679
-1.31981
-1.45607
-1.51623
-1.64681
-1.65292
-1.7827
-1.7646
-1.82823
-1.74275
-1.22172
-1.19721
-1.19807
-1.07669
-1.31634
-1.10049
-1.70394
-1.85602
-2.27289
-1.95268
-2.30484
-1.8992
-2.23836
-1.76465
-2.10437
-1.59506
-1.91489
-1.33581
-1.40949
-0.918272
-0.616985
-0.582849
-0.57809
-0.48803
-0.482575
-0.443965
-0.622647
-0.623143
-0.765583
-0.843605
-1.00641
-1.11581
-1.27274
-1.34308
-1.50373
-1.52291
-1.686
-1.72337
-1.78255
-1.72575
-1.11938
-1.07933
-1.05491
-0.91674
-1.16361
-0.947822
-1.67641
-1.8697
-2.27202
-2.03014
-2.34388
-1.87916
-2.26383
-1.68013
-2.11983
-1.39468
-1.87614
-0.983942
-1.1326
-0.346997
-0.753838
-0.760322
-0.714312
-0.617261
-0.552228
-0.425238
-0.601796
-0.604975
-0.752121
-0.836939
-1.00335
-1.07633
-1.29614
-1.3652
-1.54576
-1.5761
-1.77699
-1.84057
-1.8871
-1.81433
-1.11679
-1.04098
-0.990494
-0.81921
-1.07736
-0.840703
-1.67959
-1.87408
-2.39077
-2.02723
-2.43792
-1.89735
-2.39959
-1.72205
-2.194
-1.44708
-1.85004
-0.850427
-0.676829
0.420102
-0.581522
-0.516781
-0.549305
-0.324695
-0.289415
-0.0782575
-0.249248
-0.293146
-0.476922
-0.577316
-0.79413
-0.903671
-1.14846
-1.22555
-1.49773
-1.55459
-1.79657
-1.88418
-1.90217
-1.78469
-0.992455
-0.865621
-0.779956
-0.580032
-0.853372
-0.639586
-1.571
-1.79094
-2.43915
-2.03624
-2.51327
-1.87118
-2.4225
-1.60754
-2.23846
-1.23844
-1.67529
-0.361498
0.135778
2.41386
-0.694488
-0.80757
-0.672846
-0.555982
-0.410756
-0.14353
-0.214142
-0.28578
-0.448759
-0.574564
-0.796009
-0.948597
-1.2105
-1.33121
-1.58504
-1.67818
-1.93529
-2.048
-2.07189
-1.8667
-1.04
-0.808549
-0.679889
-0.429026
-0.681545
-0.472299
-1.49377
-1.77889
-2.55178
-2.10556
-2.65791
-1.93207
-2.51681
-1.71772
-2.37664
-1.39501
-1.92774
-0.0433093
0.59455
4.82788
-0.866972
-0.481506
-0.549204
-0.0666038
-0.056079
0.247246
0.138564
0.0637258
-0.168055
-0.320536
-0.594991
-0.7778
-1.08485
-1.2693
-1.61941
-1.77424
-2.08522
-2.21684
-2.14448
-1.80283
-0.920293
-0.598768
-0.385338
-0.0364434
-0.343842
-0.215239
-1.37699
-1.71839
-2.68153
-2.18866
-2.80387
-1.92101
-2.50841
-1.54719
-2.21375
-1.09861
-1.41987
0.984563
3.38026
10.4808
-0.413306
-0.940079
-0.792224
-0.660495
-0.200682
-0.00881587
0.128166
0.00378969
-0.178091
-0.359316
-0.629523
-0.819842
-1.12988
-1.33668
-1.72472
-1.94014
-2.25846
-2.40058
-2.34334
-1.83025
-1.0493
-0.498738
-0.219516
0.225268
-0.0518977
0.117946
-1.25253
-1.54409
-2.79979
-2.31241
-2.98253
-1.99264
-2.54652
-1.52796
-2.24802
-1.12516
-1.55829
1.76031
5.86374
17.5546
-3.10734
-0.248791
-0.367572
0.185229
0.318746
0.497072
0.359222
0.27413
-0.0018584
-0.192809
-0.483194
-0.679287
-1.01809
-1.2925
-1.77934
-2.09568
-2.43497
-2.56466
-2.30111
-1.55036
-0.775909
-0.0901816
0.177915
0.707234
0.315343
0.242989
-1.19835
-1.60102
-3.02356
-2.49492
-3.04974
-1.92443
-2.32659
-1.22361
-1.70792
-0.103323
0.756594
6.77572
16.6296
35.6252
-0.470998
-0.466771
-0.473005
-0.469012
-0.477375
-0.483121
-0.506678
-0.530211
-0.570109
-0.608435
-0.651245
-0.700721
-0.744292
-0.785784
-0.777388
-0.829873
-0.77635
-0.821028
-0.644853
-0.869849
-0.568574
-0.809473
-0.813578
-0.842785
-0.594874
-0.390975
-0.0664793
0.234045
0.4691
0.601482
0.47692
0.32371
0.00133738
-0.283552
-0.548843
-0.69518
-0.841102
-0.859917
-0.866825
-0.847404
-0.482296
-0.475413
-0.480771
-0.46896
-0.47375
-0.468309
-0.49124
-0.513797
-0.548884
-0.580455
-0.602163
-0.640939
-0.648248
-0.692171
-0.753963
-0.793468
-0.7472
-0.796898
-0.63403
-0.899258
-0.695247
-0.964398
-1.03781
-1.07711
-0.850682
-0.67332
-0.395504
-0.144013
0.0480477
0.200092
0.13342
-0.00059046
-0.244145
-0.468828
-0.630146
-0.728435
-0.83111
-0.838928
-0.847464
-0.825274
-0.469222
-0.46266
-0.462275
-0.451161
-0.462685
-0.454852
-0.465999
-0.48406
-0.51768
-0.550457
-0.60147
-0.648552
-0.714721
-0.877312
-0.901881
-0.944396
-0.899776
-0.958449
-0.820552
-1.07633
-1.00537
-1.30373
-1.35975
-1.42114
-1.21515
-1.05956
-0.815306
-0.60109
-0.433265
-0.301219
-0.302033
-0.296546
-0.472196
-0.642776
-0.763157
-0.821588
-0.877822
-0.873824
-0.872276
-0.852312
-0.461786
-0.470911
-0.471457
-0.456827
-0.446774
-0.444306
-0.452917
-0.490614
-0.561008
-0.597147
-0.636975
-0.774559
-0.96132
-1.02614
-1.05787
-1.10265
-1.08577
-1.1464
-1.05488
-1.35752
-1.27901
-1.55061
-1.65926
-1.72842
-1.56157
-1.44105
-1.24733
-1.07198
-0.924727
-0.805352
-0.748322
-0.746543
-0.661829
-0.773287
-0.854924
-0.847439
-0.907253
-0.868411
-0.875511
-0.863791
-0.451371
-0.444566
-0.437996
-0.417641
-0.417807
-0.413426
-0.45845
-0.509551
-0.57537
-0.692752
-0.949582
-1.1406
-1.19389
-1.267
-1.30154
-1.35442
-1.34606
-1.40123
-1.32517
-1.54517
-1.48637
-1.77784
-1.89181
-1.9736
-1.83021
-1.74068
-1.59582
-1.44941
-1.3225
-1.19086
-1.13328
-1.03584
-1.03679
-0.837912
-0.918959
-0.898306
-0.944747
-0.920234
-0.920469
-0.918033
-0.439904
-0.452917
-0.415275
-0.423557
-0.410384
-0.453891
-0.483104
-0.600554
-0.933749
-1.16365
-1.25181
-1.34478
-1.40347
-1.47109
-1.50746
-1.55904
-1.54793
-1.58302
-1.52138
-1.71024
-1.68877
-1.92948
-2.09533
-2.14583
-2.02378
-1.9903
-1.90579
-1.79174
-1.67788
-1.55291
-1.44425
-1.30909
-1.275
-1.07269
-0.940855
-0.918126
-0.89196
-0.91979
-0.933374
-0.942421
-0.376369
-0.404067
-0.388026
-0.399519
-0.428928
-0.478391
-0.704934
-1.11559
-1.23414
-1.34769
-1.46327
-1.56574
-1.62607
-1.69094
-1.72603
-1.76643
-1.75166
-1.77368
-1.70603
-1.87873
-1.84299
-2.07676
-2.17462
-2.26507
-2.20204
-2.17633
-2.12127
-2.05049
-1.97672
-1.85736
-1.72498
-1.59391
-1.41625
-1.32652
-1.02707
-0.946001
-0.934642
-0.936506
-0.973116
-0.982232
-0.391883
-0.436877
-0.451299
-0.514113
-0.589351
-0.847248
-1.15442
-1.284
-1.44304
-1.56895
-1.66756
-1.75246
-1.80939
-1.87952
-1.89702
-1.92934
-1.91842
-1.93178
-1.85668
-1.87511
-1.72012
-1.95269
-2.24702
-2.31664
-2.35287
-2.34359
-2.3337
-2.28971
-2.23132
-2.12414
-2.01144
-1.81736
-1.61191
-1.44545
-1.18797
-0.979288
-0.939634
-0.999506
-0.982217
-1.0157
-0.375603
-0.448437
-0.515757
-0.651924
-0.826502
-1.10596
-1.29297
-1.48867
-1.6146
-1.74034
-1.8429
-1.92248
-1.98302
-2.03235
-2.05984
-2.08348
-2.07195
-2.06232
-1.97911
-1.85805
-1.62694
-1.48861
-2.08834
-2.31466
-2.41293
-2.47265
-2.49334
-2.48408
-2.43937
-2.34196
-2.21339
-2.0317
-1.7938
-1.56803
-1.38429
-1.06922
-0.986014
-1.01802
-1.04577
-1.0685
-0.435582
-0.511796
-0.6024
-0.776614
-1.03493
-1.30367
-1.48567
-1.64223
-1.77381
-1.89841
-1.98982
-2.06922
-2.12185
-2.17004
-2.19209
-2.21303
-2.20923
-2.18859
-2.10943
-1.91997
-1.59342
-1.32194
-1.64648
-2.26871
-2.45035
-2.58956
-2.65093
-2.66888
-2.63492
-2.54641
-2.42042
-2.23245
-2.00794
-1.73656
-1.51777
-1.24177
-1.03731
-1.04939
-1.09449
-1.10951
-0.503599
-0.5842
-0.690631
-0.916361
-1.21893
-1.44687
-1.6164
-1.77811
-1.91393
-2.03066
-2.12558
-2.19797
-2.24851
-2.28682
-2.30934
-2.32962
-2.32306
-2.29903
-2.21222
-1.95263
-1.56692
-1.22485
-1.43189
-2.05129
-2.49007
-2.6682
-2.78238
-2.81292
-2.78516
-2.70569
-2.59
-2.42132
-2.2035
-1.94224
-1.67595
-1.45685
-1.17264
-1.10041
-1.20122
-1.18216
-0.634097
-0.712337
-0.837024
-1.11514
-1.38321
-1.59704
-1.75536
-1.92486
-2.0393
-2.15989
-2.2366
-2.30282
-2.34417
-2.37993
-2.39973
-2.40921
-2.41215
-2.38216
-2.25107
-1.92867
-1.51154
-1.17588
-1.26912
-1.81581
-2.52642
-2.76139
-2.9075
-2.94531
-2.9064
-2.84412
-2.73523
-2.58841
-2.38642
-2.12347
-1.85307
-1.56717
-1.37856
-1.14569
-1.24077
-1.25272
-0.758062
-0.838563
-0.990742
-1.29805
-1.52228
-1.71646
-1.87386
-2.02858
-2.15531
-2.25772
-2.33173
-2.38837
-2.42401
-2.44846
-2.45539
-2.47615
-2.47061
-2.41627
-2.34674
-1.91236
-1.47886
-1.17209
-1.17327
-1.61974
-2.2801
-2.89201
-2.97172
-3.06227
-3.00048
-2.9404
-2.85521
-2.73059
-2.55228
-2.3197
-2.03195
-1.75269
-1.52017
-1.32645
-1.29584
-1.36776
-0.938994
-1.01459
-1.22567
-1.4897
-1.69928
-1.87157
-2.04268
-2.16856
-2.2808
-2.36116
-2.41163
-2.44592
-2.46383
-2.48048
-2.49651
-2.49145
-2.43427
-2.45012
-2.10734
-1.74807
-1.45343
-1.20522
-1.15909
-1.50372
-1.96829
-2.69919
-3.10025
-3.07569
-3.08921
-3.01854
-2.93373
-2.84053
-2.68462
-2.47625
-2.20358
-1.89347
-1.63343
-1.46336
-1.33627
-1.45305
-1.05462
-1.16083
-1.39033
-1.62315
-1.81269
-1.97924
-2.1209
-2.24581
-2.34041
-2.40698
-2.449
-2.47914
-2.49335
-2.4942
-2.46323
-2.42741
-2.43724
-2.1566
-1.72931
-1.57553
-1.40535
-1.21402
-1.17063
-1.46697
-1.79692
-2.15513
-2.87464
-3.16297
-3.06522
-3.08522
-3.02168
-2.93962
-2.80783
-2.63859
-2.38632
-2.08667
-1.8126
-1.61013
-1.49538
-1.56846
-1.23036
-1.36311
-1.57525
-1.78165
-1.97923
-2.13742
-2.28186
-2.3918
-2.47106
-2.51537
-2.52518
-2.49798
-2.44426
-2.40226
-2.39127
-2.36514
-1.996
-1.56974
-1.47847
-1.40145
-1.38167
-1.19889
-1.17746
-1.43707
-1.71555
-1.94688
-2.19542
-2.85906
-3.13851
-3.07428
-3.03249
-3.00892
-2.89805
-2.7526
-2.51858
-2.26088
-1.95018
-1.76806
-1.63069
-1.70677
-1.28262
-1.43328
-1.60712
-1.81473
-1.99123
-2.15496
-2.2631
-2.34868
-2.39589
-2.41883
-2.40695
-2.40928
-2.40243
-2.36246
-2.14013
-1.67563
-1.23262
-1.14486
-1.1544
-1.16777
-1.21045
-1.12982
-1.15516
-1.37607
-1.65339
-1.83778
-1.98904
-2.21039
-2.62199
-3.11978
-3.12187
-3.06725
-2.9638
-2.88021
-2.66844
-2.43032
-2.11044
-1.92449
-1.74299
-1.82456
-1.25487
-1.37257
-1.56506
-1.71694
-1.90044
-2.03109
-2.18217
-2.29276
-2.37362
-2.41366
-2.40589
-2.31433
-2.03925
-1.625
-1.16262
-0.8973
-0.720855
-0.742422
-0.813023
-0.922496
-1.06142
-1.03351
-1.10658
-1.28473
-1.58257
-1.75977
-1.88655
-2.02561
-2.16282
-2.37671
-2.79582
-3.1381
-3.09708
-2.96085
-2.76468
-2.55015
-2.27279
-2.11491
-2.00699
-2.13991
-0.958243
-1.04155
-1.14081
-1.32622
-1.44676
-1.59754
-1.66008
-1.70664
-1.70328
-1.643
-1.39233
-1.16822
-0.971387
-0.83309
-0.654679
-0.456088
-0.300809
-0.337504
-0.416173
-0.625522
-0.87302
-0.903522
-1.02925
-1.17886
-1.48082
-1.68039
-1.80505
-1.93265
-2.01858
-2.13392
-2.18699
-2.32852
-2.70883
-3.04825
-2.90843
-2.69903
-2.39226
-2.10516
-1.93652
-1.88497
-0.175613
-0.241164
-0.346737
-0.45073
-0.605875
-0.743788
-0.849879
-0.931241
-0.991594
-1.00514
-0.931156
-0.884183
-0.768501
-0.603323
-0.372489
-0.132576
0.0534936
0.0695695
0.0516766
-0.300734
-0.632539
-0.753858
-0.937306
-1.0997
-1.35847
-1.60324
-1.74543
-1.87126
-1.95255
-2.02477
-2.09517
-2.14482
-2.15894
-2.13574
-2.66338
-2.71378
-2.63863
-2.53637
-2.55092
-2.76504
-0.290182
-0.175228
-0.231221
-0.273506
-0.423299
-0.508928
-0.655623
-0.703798
-0.78256
-0.819972
-0.768789
-0.732289
-0.612704
-0.431682
-0.182978
0.0971497
0.306625
0.378699
0.305801
0.0195877
-0.414182
-0.617542
-0.838396
-1.04122
-1.2348
-1.50924
-1.67165
-1.80489
-1.88167
-1.94218
-1.9988
-2.03233
-2.09808
-2.07335
-1.94963
-1.9771
-1.90441
-1.85809
-1.84478
-1.96179
-0.231599
-0.177509
-0.193477
-0.234611
-0.360292
-0.456087
-0.602108
-0.672781
-0.792931
-0.799552
-0.811892
-0.750114
-0.608668
-0.388597
-0.103486
0.199769
0.425392
0.472664
0.329933
0.160006
-0.219544
-0.508762
-0.762704
-1.01214
-1.21298
-1.44066
-1.63653
-1.78699
-1.87409
-1.92952
-2.00062
-2.03313
-2.12133
-2.14762
-2.16959
-2.05091
-2.02476
-1.89192
-1.71609
-1.76456
-0.29138
-0.247972
-0.277512
-0.314174
-0.433406
-0.521558
-0.665249
-0.726855
-0.82983
-0.916373
-0.835206
-0.784998
-0.635726
-0.394348
-0.127995
0.157451
0.367246
0.447728
0.326662
0.160692
-0.0171503
-0.444265
-0.786291
-0.969869
-1.18584
-1.37774
-1.5543
-1.69289
-1.81214
-1.86543
-1.94728
-1.95667
-2.0176
-1.97334
-1.99366
-1.95082
-1.99433
-1.86024
-1.71551
-1.71776
-0.350341
-0.315359
-0.350792
-0.39093
-0.50501
-0.614535
-0.724876
-0.799999
-0.891471
-0.910521
-0.995382
-0.913408
-0.835804
-0.508765
-0.239802
0.0325202
0.250134
0.302906
0.312967
0.191501
0.119195
-0.458451
-0.730702
-1.03092
-1.2357
-1.42119
-1.58681
-1.69353
-1.81691
-1.86735
-1.98752
-2.00838
-2.09183
-2.07983
-2.15387
-2.10875
-2.18361
-2.07632
-1.94681
-1.94716
-0.408305
-0.37806
-0.417249
-0.456041
-0.565477
-0.645816
-0.788816
-0.868317
-0.962694
-1.0154
-1.03191
-0.979449
-0.880101
-0.697352
-0.513303
-0.289682
-0.112965
0.0542281
0.0589235
0.0572897
-0.0487648
-0.358994
-0.779504
-1.0673
-1.23843
-1.3718
-1.54269
-1.63875
-1.77372
-1.79511
-1.88075
-1.82922
-1.88487
-1.75901
-1.83322
-1.71238
-1.78884
-1.6876
-1.67353
-1.6739
-0.452218
-0.427134
-0.468768
-0.503821
-0.607195
-0.698127
-0.823519
-0.927935
-1.02839
-1.09829
-1.14985
-1.143
-1.07795
-0.952049
-0.786209
-0.60022
-0.464826
-0.310869
-0.316519
-0.267426
-0.419919
-0.645142
-0.817762
-1.08673
-1.27037
-1.41003
-1.61337
-1.70855
-1.83678
-1.84576
-2.00888
-2.00539
-2.16899
-2.09918
-2.19768
-2.07995
-2.15104
-1.99372
-1.9623
-1.84565
-0.519728
-0.495904
-0.543211
-0.58068
-0.677793
-0.769258
-0.899982
-1.01288
-1.12947
-1.22188
-1.29611
-1.32588
-1.319
-1.25801
-1.17012
-1.05014
-0.990061
-0.914552
-0.941141
-0.73774
-0.825258
-0.911778
-1.08629
-1.13912
-1.30294
-1.39058
-1.60395
-1.69767
-1.91932
-2.02491
-2.19714
-2.1571
-2.26038
-2.18497
-2.26002
-2.1218
-2.21584
-2.07444
-2.15647
-2.17759
-0.544322
-0.502628
-0.56101
-0.606067
-0.695328
-0.783073
-0.9047
-1.03327
-1.16552
-1.28428
-1.39207
-1.47262
-1.52201
-1.53802
-1.5411
-1.50841
-1.50631
-1.40268
-1.39553
-0.983127
-1.01211
-1.04223
-1.1547
-1.20538
-1.3506
-1.37657
-1.60298
-1.66394
-2.01183
-1.98386
-2.13683
-2.03203
-2.242
-1.98475
-2.1698
-1.92911
-2.05129
-1.79211
-1.82013
-1.7283
-0.632323
-0.592734
-0.611455
-0.702517
-0.785259
-0.862402
-0.956365
-1.10006
-1.2365
-1.36286
-1.48674
-1.58621
-1.67662
-1.73716
-1.80082
-1.81834
-1.86775
-1.76097
-1.75223
-1.22048
-1.12356
-1.11961
-1.19733
-1.22134
-1.33054
-1.33385
-1.59125
-1.80236
-2.01797
-1.96528
-2.11018
-1.96817
-2.11248
-1.98236
-2.07069
-1.84308
-1.97323
-1.63889
-1.60296
-1.42799
-0.614728
-0.577404
-0.584982
-0.642511
-0.778862
-0.82927
-0.939231
-1.04771
-1.17428
-1.29838
-1.42473
-1.53806
-1.64816
-1.72579
-1.82028
-1.85013
-1.95116
-1.86845
-1.89522
-1.37697
-1.18616
-1.14913
-1.22922
-1.20737
-1.43838
-1.3317
-1.69971
-1.82845
-2.06253
-1.94761
-2.14482
-1.93719
-2.15863
-1.8409
-2.14776
-1.73014
-1.97928
-1.56114
-1.54714
-1.28739
-0.705933
-0.67781
-0.684979
-0.677587
-0.854985
-0.901934
-0.991497
-1.0521
-1.1821
-1.28415
-1.41263
-1.51507
-1.62961
-1.70283
-1.81071
-1.83179
-1.95292
-1.87927
-1.9376
-1.52709
-1.23261
-1.18037
-1.24053
-1.17789
-1.40304
-1.2403
-1.71789
-1.85577
-2.09512
-1.94017
-2.15948
-1.91437
-2.13191
-1.81469
-2.04325
-1.68376
-1.91573
-1.50305
-1.50631
-1.19409
-0.638052
-0.598393
-0.615025
-0.57007
-0.673078
-0.763196
-0.842048
-0.894112
-0.98876
-1.10328
-1.23287
-1.34079
-1.46766
-1.54174
-1.66991
-1.68527
-1.82432
-1.75384
-1.83274
-1.57432
-1.19085
-1.14288
-1.18856
-1.10541
-1.3433
-1.18863
-1.71039
-1.85075
-2.12756
-1.94261
-2.19974
-1.87694
-2.15577
-1.72796
-2.04196
-1.56188
-1.89078
-1.37291
-1.45607
-1.05948
-0.742493
-0.727869
-0.712952
-0.683639
-0.671063
-0.769794
-0.85186
-0.879545
-0.976342
-1.04266
-1.19517
-1.29006
-1.42449
-1.49252
-1.63211
-1.63608
-1.78619
-1.73428
-1.82098
-1.66327
-1.19731
-1.14017
-1.15992
-1.03981
-1.28913
-1.08666
-1.77162
-1.85579
-2.26616
-1.94034
-2.27351
-1.87228
-2.19032
-1.71434
-2.02856
-1.54044
-1.80148
-1.25576
-1.31525
-0.835064
-0.612964
-0.578287
-0.577484
-0.48828
-0.482794
-0.437092
-0.625808
-0.629313
-0.75924
-0.839411
-0.964945
-1.09469
-1.24853
-1.32296
-1.4861
-1.49929
-1.67858
-1.68283
-1.76956
-1.64746
-1.10139
-1.0281
-1.02903
-0.889324
-1.15555
-0.942761
-1.71765
-1.83216
-2.25864
-2.00051
-2.31273
-1.83098
-2.22579
-1.61095
-2.03798
-1.30291
-1.77651
-0.911572
-1.01479
-0.255674
-0.753999
-0.761609
-0.712801
-0.625531
-0.558888
-0.43646
-0.599521
-0.615303
-0.745843
-0.828001
-0.971813
-1.09328
-1.23885
-1.34794
-1.53495
-1.55323
-1.77326
-1.80848
-1.87869
-1.74807
-1.11088
-1.00226
-0.976953
-0.801542
-1.07458
-0.838104
-1.71307
-1.84189
-2.37099
-1.98614
-2.39414
-1.85938
-2.33178
-1.65496
-2.13016
-1.34849
-1.76759
-0.748093
-0.601402
0.501994
-0.578157
-0.517159
-0.550866
-0.33449
-0.30317
-0.102358
-0.254311
-0.312452
-0.480035
-0.583515
-0.784132
-0.927494
-1.1151
-1.23816
-1.44797
-1.50801
-1.80274
-1.84963
-1.89521
-1.69641
-0.991975
-0.818479
-0.770445
-0.570304
-0.852555
-0.646511
-1.5932
-1.80061
-2.41259
-1.9915
-2.46486
-1.80763
-2.35736
-1.53573
-2.12823
-1.17674
-1.50978
-0.439724
0.384259
2.47172
-0.707908
-0.814139
-0.683574
-0.574312
-0.435556
-0.17133
-0.223928
-0.307519
-0.450471
-0.572975
-0.778909
-0.933773
-1.18553
-1.32242
-1.60732
-1.6703
-1.97136
-2.03436
-2.0594
-1.81924
-1.04457
-0.786588
-0.682961
-0.421147
-0.684672
-0.463589
-1.54834
-1.76169
-2.53095
-2.0574
-2.6056
-1.88458
-2.46073
-1.65132
-2.31474
-1.30446
-1.85298
0.0436898
0.638101
4.83177
-0.881484
-0.490461
-0.562024
-0.0903279
-0.0862695
0.208663
0.119823
0.0381658
-0.172751
-0.320732
-0.580023
-0.765772
-1.06116
-1.25155
-1.59927
-1.73923
-2.07228
-2.14444
-2.10986
-1.70176
-0.899631
-0.469221
-0.329807
0.0170478
-0.323873
-0.199954
-1.41127
-1.701
-2.66307
-2.14421
-2.74613
-1.87655
-2.44704
-1.49176
-2.1297
-1.0317
-1.35857
1.0313
3.40642
10.4457
-0.437828
-0.954322
-0.8091
-0.691276
-0.234467
-0.0579086
0.110097
-0.020154
-0.178084
-0.352422
-0.6052
-0.793368
-1.09915
-1.3136
-1.71692
-1.92439
-2.2583
-2.3669
-2.30971
-1.76505
-1.05466
-0.441679
-0.191455
0.279735
-0.0369956
0.102384
-1.30341
-1.57393
-2.78961
-2.28671
-2.93984
-1.95795
-2.50148
-1.47887
-2.20359
-1.07679
-1.53502
1.74502
5.77917
17.4203
-3.1125
-0.257106
-0.387851
0.152323
0.283277
0.458461
0.33704
0.255179
0.00167519
-0.181206
-0.454989
-0.648513
-0.985935
-1.27143
-1.77503
-2.0835
-2.43006
-2.49861
-2.22399
-1.47802
-0.784422
-0.00599078
0.239327
0.767087
0.350099
0.229914
-1.2548
-1.60451
-3.02509
-2.4687
-3.00372
-1.88595
-2.27731
-1.17319
-1.66631
-0.0703776
0.758796
6.72414
16.5029
35.4694
-0.497604
-0.488028
-0.490863
-0.477178
-0.479598
-0.49089
-0.511526
-0.532516
-0.573405
-0.608995
-0.649724
-0.694026
-0.739639
-0.788652
-0.780457
-0.819862
-0.770565
-0.815623
-0.641262
-0.845177
-0.572902
-0.837598
-0.847306
-0.913242
-0.685253
-0.491496
-0.194269
0.0781021
0.274404
0.400246
0.278324
0.12313
-0.171192
-0.405337
-0.640014
-0.748136
-0.860373
-0.877196
-0.882513
-0.864127
-0.504516
-0.496964
-0.49788
-0.477132
-0.477973
-0.473053
-0.497042
-0.517925
-0.549667
-0.572353
-0.59566
-0.627166
-0.645104
-0.681634
-0.746151
-0.781094
-0.739672
-0.789796
-0.628826
-0.878778
-0.701977
-0.998692
-1.08339
-1.15818
-0.950399
-0.789326
-0.532745
-0.304185
-0.140422
-0.0205132
-0.082569
-0.198531
-0.407835
-0.590906
-0.71189
-0.783962
-0.848861
-0.861288
-0.866303
-0.848165
-0.490377
-0.484732
-0.478755
-0.460784
-0.465919
-0.459384
-0.470618
-0.484089
-0.518775
-0.550251
-0.601145
-0.642487
-0.713332
-0.863593
-0.90422
-0.936855
-0.900666
-0.95621
-0.836166
-1.06672
-1.04334
-1.34788
-1.4175
-1.5209
-1.33819
-1.19584
-0.977812
-0.784517
-0.64901
-0.531074
-0.544263
-0.529394
-0.65481
-0.755079
-0.8476
-0.867647
-0.894756
-0.885797
-0.886076
-0.869887
-0.4853
-0.492496
-0.492533
-0.464183
-0.454721
-0.44751
-0.454503
-0.491839
-0.552665
-0.586131
-0.627322
-0.753523
-0.954816
-1.02576
-1.05888
-1.10219
-1.09496
-1.16731
-1.08299
-1.39794
-1.33853
-1.61963
-1.736
-1.85372
-1.70463
-1.59587
-1.42426
-1.26426
-1.13798
-1.02521
-0.97678
-0.952444
-0.854202
-0.891281
-0.920699
-0.905955
-0.909011
-0.904926
-0.895674
-0.891986
-0.469659
-0.460038
-0.443498
-0.430253
-0.426411
-0.418641
-0.465515
-0.50508
-0.576351
-0.691447
-0.940086
-1.13036
-1.20005
-1.26884
-1.30428
-1.35832
-1.36199
-1.42581
-1.35853
-1.57346
-1.54723
-1.83906
-1.96438
-2.08365
-1.97495
-1.88659
-1.7526
-1.61691
-1.50906
-1.38094
-1.32205
-1.21493
-1.18486
-0.951651
-0.966445
-0.925131
-0.935701
-0.9225
-0.924393
-0.929389
-0.457592
-0.465029
-0.437805
-0.437392
-0.425412
-0.461928
-0.489526
-0.623181
-0.936832
-1.15275
-1.23967
-1.3311
-1.40337
-1.46564
-1.50783
-1.56133
-1.55815
-1.61751
-1.56406
-1.75387
-1.75245
-1.98591
-2.13215
-2.26533
-2.2074
-2.12129
-2.06593
-1.94328
-1.83376
-1.69863
-1.60923
-1.47024
-1.39282
-1.19606
-1.01887
-0.979547
-0.969501
-0.967821
-0.966173
-0.972655
-0.395063
-0.431237
-0.415774
-0.426229
-0.459515
-0.510493
-0.769357
-1.11804
-1.23094
-1.3404
-1.45423
-1.55194
-1.62248
-1.68736
-1.71041
-1.76927
-1.76897
-1.8105
-1.75207
-1.89417
-1.87072
-2.11312
-2.22689
-2.38291
-2.36901
-2.32752
-2.25902
-2.16748
-2.08211
-1.96988
-1.84101
-1.67284
-1.52904
-1.3998
-1.104
-0.991097
-0.961076
-0.941565
-0.989018
-0.9936
-0.418094
-0.464054
-0.494545
-0.562681
-0.647736
-0.893966
-1.14951
-1.28441
-1.43354
-1.55484
-1.64676
-1.73635
-1.78553
-1.85028
-1.89168
-1.92643
-1.92104
-1.92387
-1.86269
-1.82332
-1.7019
-1.89707
-2.30569
-2.42691
-2.51919
-2.49881
-2.48041
-2.4096
-2.32377
-2.20343
-2.05653
-1.88596
-1.68222
-1.52723
-1.2573
-1.0553
-1.00867
-1.04736
-1.02966
-1.05341
-0.401091
-0.474064
-0.543974
-0.679475
-0.852239
-1.11381
-1.29928
-1.47597
-1.5999
-1.71687
-1.8197
-1.90245
-1.9731
-2.02703
-2.06017
-2.08693
-2.08443
-2.05665
-1.9929
-1.85318
-1.65563
-1.49255
-2.10364
-2.41995
-2.56978
-2.62492
-2.61717
-2.5727
-2.50188
-2.39264
-2.25442
-2.05923
-1.86788
-1.60949
-1.44072
-1.10889
-1.03362
-1.02875
-1.05647
-1.08159
-0.465636
-0.541512
-0.635541
-0.810184
-1.06045
-1.30354
-1.47317
-1.61857
-1.7461
-1.86583
-1.96093
-2.04816
-2.10607
-2.16044
-2.19331
-2.21804
-2.22
-2.18081
-2.09477
-1.8866
-1.60183
-1.30884
-1.66045
-2.36653
-2.61403
-2.73815
-2.75668
-2.72723
-2.66775
-2.56722
-2.42954
-2.25449
-2.0358
-1.78755
-1.56232
-1.30012
-1.09592
-1.10346
-1.13428
-1.14899
-0.532912
-0.61457
-0.724269
-0.948355
-1.23089
-1.4362
-1.5957
-1.74349
-1.87766
-1.99484
-2.09998
-2.18099
-2.24089
-2.28709
-2.32028
-2.34721
-2.35184
-2.31692
-2.20846
-1.93094
-1.55397
-1.20003
-1.41602
-2.07515
-2.62656
-2.79633
-2.86265
-2.83758
-2.78837
-2.69885
-2.57556
-2.40916
-2.19781
-1.94502
-1.68499
-1.45565
-1.18299
-1.12996
-1.21114
-1.1938
-0.663971
-0.744255
-0.875024
-1.14681
-1.38857
-1.58164
-1.72745
-1.88698
-1.99827
-2.12717
-2.2156
-2.29367
-2.34182
-2.38795
-2.41864
-2.44133
-2.4577
-2.41662
-2.28059
-1.96585
-1.48755
-1.14153
-1.22696
-1.81565
-2.594
-2.86312
-2.95351
-2.94379
-2.88859
-2.81899
-2.70369
-2.56165
-2.36377
-2.12222
-1.847
-1.59026
-1.36741
-1.18252
-1.25771
-1.27975
-0.78393
-0.867377
-1.0283
-1.31939
-1.52313
-1.69762
-1.84007
-1.9866
-2.12112
-2.23721
-2.32634
-2.3912
-2.43516
-2.46776
-2.49402
-2.52995
-2.53759
-2.47677
-2.32955
-1.8185
-1.43566
-1.1135
-1.11198
-1.57967
-2.262
-2.93383
-2.98953
-3.0373
-2.9693
-2.90189
-2.81233
-2.68658
-2.5075
-2.28268
-1.99893
-1.74151
-1.51025
-1.30476
-1.31395
-1.36572
-0.96612
-1.04598
-1.26026
-1.50308
-1.69399
-1.84917
-1.99944
-2.13103
-2.25206
-2.34919
-2.41516
-2.46046
-2.48835
-2.51991
-2.55598
-2.56748
-2.53972
-2.50837
-2.147
-1.69415
-1.42673
-1.14453
-1.09176
-1.45659
-1.93462
-2.68594
-3.09107
-3.04438
-3.05061
-2.97907
-2.88961
-2.79474
-2.63591
-2.43305
-2.15852
-1.88304
-1.63469
-1.45211
-1.33565
-1.46153
-1.05959
-1.17937
-1.39454
-1.62292
-1.79966
-1.95486
-2.09167
-2.21658
-2.32656
-2.41043
-2.47401
-2.51424
-2.53783
-2.54545
-2.54421
-2.54241
-2.53889
-2.2294
-1.73916
-1.57807
-1.35194
-1.15762
-1.0992
-1.4146
-1.74834
-2.13168
-2.84644
-3.11728
-3.03317
-3.04418
-2.97409
-2.88732
-2.75314
-2.58173
-2.32587
-2.06227
-1.75986
-1.63028
-1.47735
-1.56175
-1.257
-1.37196
-1.58379
-1.77428
-1.96585
-2.11305
-2.2526
-2.36122
-2.45357
-2.5068
-2.52897
-2.50689
-2.47958
-2.46979
-2.49829
-2.44011
-2.08011
-1.61965
-1.47036
-1.42172
-1.28599
-1.14655
-1.10663
-1.38965
-1.66746
-1.91104
-2.18414
-2.835
-3.09011
-3.03878
-2.99646
-2.95866
-2.84443
-2.68676
-2.46228
-2.18357
-1.89241
-1.7309
-1.60605
-1.67512
-1.21318
-1.38107
-1.53852
-1.75063
-1.92971
-2.09189
-2.19829
-2.28855
-2.34993
-2.39448
-2.40666
-2.41029
-2.39306
-2.33057
-2.12108
-1.68905
-1.31594
-1.21794
-1.21341
-1.2232
-1.18113
-1.10211
-1.1019
-1.34006
-1.6128
-1.80127
-1.96375
-2.19773
-2.64042
-3.0694
-3.07509
-3.01664
-2.92169
-2.81789
-2.61254
-2.34926
-2.06662
-1.87156
-1.72997
-1.80091
-1.24323
-1.32885
-1.51422
-1.63711
-1.82882
-1.95176
-2.10484
-2.19653
-2.28424
-2.30737
-2.27588
-2.10106
-1.79258
-1.45528
-1.14008
-0.980305
-0.892808
-0.892165
-0.931033
-0.985024
-1.04173
-1.0296
-1.07173
-1.26361
-1.55601
-1.7333
-1.86501
-2.00227
-2.15344
-2.39893
-2.81565
-3.07472
-3.03345
-2.89306
-2.72176
-2.49233
-2.22148
-2.06765
-1.95165
-2.09617
-0.792753
-0.856389
-0.969075
-1.12591
-1.31566
-1.42797
-1.50623
-1.52937
-1.50041
-1.42417
-1.1811
-1.04158
-0.932208
-0.858633
-0.747633
-0.651348
-0.590902
-0.573824
-0.650786
-0.721713
-0.900964
-0.928806
-1.02687
-1.1747
-1.47468
-1.66623
-1.79202
-1.91041
-1.99997
-2.11125
-2.18695
-2.36805
-2.75259
-2.99401
-2.85315
-2.62781
-2.32365
-2.06573
-1.90182
-1.86721
-0.218576
-0.280242
-0.363765
-0.465689
-0.596779
-0.71756
-0.843853
-0.896304
-0.958632
-0.933505
-0.885867
-0.83763
-0.75198
-0.656224
-0.524174
-0.424148
-0.337963
-0.307174
-0.407173
-0.476238
-0.730154
-0.837459
-0.972689
-1.11496
-1.37242
-1.59757
-1.73885
-1.85224
-1.93244
-1.99783
-2.06468
-2.10294
-2.12774
-2.19657
-2.65931
-2.67174
-2.58804
-2.50403
-2.49163
-2.71862
-0.277024
-0.171176
-0.216171
-0.266232
-0.385658
-0.502455
-0.604935
-0.683527
-0.734595
-0.746664
-0.723708
-0.712857
-0.633974
-0.535469
-0.384769
-0.261045
-0.16362
-0.123908
-0.20465
-0.280727
-0.625909
-0.768583
-0.924375
-1.07185
-1.26083
-1.51764
-1.67042
-1.78934
-1.8648
-1.917
-1.96982
-1.99106
-2.04855
-1.9987
-1.91138
-1.92679
-1.91035
-1.83014
-1.85213
-1.96089
-0.266885
-0.215222
-0.228825
-0.26355
-0.375438
-0.459528
-0.599404
-0.65822
-0.776764
-0.769714
-0.781021
-0.739567
-0.628514
-0.48509
-0.314828
-0.173856
-0.0768831
-0.0273735
-0.0832847
-0.113987
-0.490616
-0.673084
-0.867805
-1.0571
-1.23754
-1.44206
-1.63283
-1.76348
-1.85143
-1.89794
-1.96153
-1.98088
-2.05956
-2.08176
-2.07743
-1.99884
-1.94415
-1.81144
-1.68797
-1.73025
-0.307577
-0.262863
-0.28834
-0.323302
-0.428167
-0.518083
-0.642507
-0.716049
-0.790031
-0.808434
-0.837644
-0.811211
-0.638577
-0.48499
-0.308577
-0.158405
-0.079033
-0.0212433
-0.0524917
-0.0321505
-0.382426
-0.682002
-0.846354
-1.01749
-1.2081
-1.38134
-1.54963
-1.67364
-1.78267
-1.83274
-1.91351
-1.90461
-1.96007
-1.89897
-1.94089
-1.92237
-1.96483
-1.83272
-1.73304
-1.70454
-0.370809
-0.331316
-0.360426
-0.391547
-0.496478
-0.561993
-0.698779
-0.778242
-0.863003
-0.904252
-0.908531
-0.838906
-0.71094
-0.551869
-0.430302
-0.264487
-0.147893
-0.0879324
-0.104573
-0.103454
-0.430453
-0.647104
-0.842449
-1.0686
-1.24691
-1.40404
-1.56647
-1.66652
-1.7882
-1.8455
-1.94963
-1.94306
-2.04021
-2.02692
-2.11742
-2.09215
-2.15551
-2.05458
-1.95586
-1.95102
-0.422
-0.384412
-0.417062
-0.451031
-0.552388
-0.632994
-0.758271
-0.845547
-0.929848
-0.977166
-0.987071
-0.94822
-0.848416
-0.712535
-0.55859
-0.40219
-0.311022
-0.225876
-0.289894
-0.316924
-0.495433
-0.646317
-0.941081
-1.05446
-1.25521
-1.37597
-1.53888
-1.62154
-1.74909
-1.76875
-1.85574
-1.79986
-1.86924
-1.73308
-1.82504
-1.71413
-1.79692
-1.69803
-1.69289
-1.67455
-0.470827
-0.432674
-0.46637
-0.495001
-0.593196
-0.674379
-0.802219
-0.898148
-0.995578
-1.06131
-1.0994
-1.08924
-1.02731
-0.924401
-0.794647
-0.66266
-0.593964
-0.534549
-0.630034
-0.536473
-0.666875
-0.799133
-0.945769
-1.12188
-1.29428
-1.41978
-1.59164
-1.67024
-1.83262
-1.83297
-1.99866
-1.98239
-2.14904
-2.07679
-2.1804
-2.06478
-2.12731
-1.96037
-1.92007
-1.79685
-0.524829
-0.492576
-0.535991
-0.567876
-0.657477
-0.745881
-0.867184
-0.978705
-1.08922
-1.17832
-1.24816
-1.28762
-1.29191
-1.26978
-1.22437
-1.1801
-1.1851
-1.10776
-1.10267
-0.763029
-0.829489
-0.886954
-1.07026
-1.11987
-1.3144
-1.39623
-1.60596
-1.68989
-1.92034
-2.01519
-2.17523
-2.14191
-2.24959
-2.17536
-2.27448
-2.12628
-2.21398
-2.07536
-2.16348
-2.1895
-0.561598
-0.509525
-0.547327
-0.594995
-0.679936
-0.75963
-0.890179
-0.999633
-1.12883
-1.24161
-1.35033
-1.43983
-1.51609
-1.57055
-1.6141
-1.61176
-1.60774
-1.50369
-1.46646
-0.962292
-0.977792
-0.992281
-1.11887
-1.23484
-1.35003
-1.38977
-1.6108
-1.69114
-2.00446
-1.97913
-2.13582
-2.03143
-2.22968
-2.00048
-2.19683
-1.94751
-2.08721
-1.81823
-1.86084
-1.77223
-0.629816
-0.594186
-0.601712
-0.678295
-0.768444
-0.839621
-0.947364
-1.06677
-1.20295
-1.32604
-1.44945
-1.56287
-1.66952
-1.76528
-1.84683
-1.88055
-1.9103
-1.79457
-1.75576
-1.15415
-1.11245
-1.07629
-1.17516
-1.19905
-1.34186
-1.33534
-1.6131
-1.80367
-2.02075
-1.96311
-2.10881
-1.96736
-2.13115
-2.00621
-2.08336
-1.86186
-1.98117
-1.66221
-1.6258
-1.4525
-0.612433
-0.574418
-0.585734
-0.601689
-0.763879
-0.806763
-0.923128
-1.00913
-1.15206
-1.26898
-1.39977
-1.51657
-1.64103
-1.73828
-1.8386
-1.8742
-1.96675
-1.87819
-1.88876
-1.28511
-1.17442
-1.10795
-1.20428
-1.19369
-1.4153
-1.33716
-1.7363
-1.8262
-2.06818
-1.94895
-2.14761
-1.94386
-2.16466
-1.86276
-2.18157
-1.74799
-2.01756
-1.58701
-1.57842
-1.315
-0.698551
-0.673315
-0.679063
-0.66438
-0.808459
-0.880718
-0.976873
-1.05318
-1.17107
-1.27644
-1.39805
-1.50583
-1.62568
-1.70621
-1.81224
-1.83296
-1.94965
-1.86216
-1.92989
-1.44281
-1.2312
-1.14328
-1.22206
-1.16037
-1.38607
-1.22495
-1.74878
-1.8398
-2.09881
-1.93333
-2.16438
-1.91712
-2.14599
-1.82545
-2.05349
-1.74015
-1.93874
-1.53724
-1.52913
-1.21418
-0.636066
-0.596916
-0.611701
-0.566728
-0.644502
-0.748794
-0.837444
-0.893071
-1.00341
-1.10142
-1.23248
-1.33883
-1.46782
-1.54361
-1.66907
-1.68075
-1.81924
-1.73598
-1.82371
-1.50069
-1.19219
-1.10517
-1.1678
-1.0886
-1.33115
-1.19587
-1.78693
-1.86203
-2.14365
-1.94602
-2.2041
-1.88667
-2.16828
-1.74541
-2.06802
-1.6012
-1.92997
-1.40389
-1.48542
-1.0735
-0.736396
-0.729055
-0.711618
-0.688377
-0.669332
-0.766961
-0.863198
-0.901327
-1.00416
-1.07696
-1.20182
-1.29655
-1.42846
-1.49393
-1.63104
-1.6341
-1.78516
-1.70856
-1.80815
-1.59519
-1.20041
-1.10265
-1.14368
-1.02535
-1.28196
-1.09506
-1.78288
-1.82755
-2.27094
-1.92256
-2.28096
-1.87044
-2.20644
-1.72199
-2.06656
-1.53038
-1.87829
-1.27242
-1.35854
-0.850147
-0.615206
-0.580938
-0.586864
-0.499916
-0.49749
-0.450758
-0.647528
-0.655218
-0.783086
-0.853014
-0.997086
-1.08583
-1.26021
-1.32769
-1.49369
-1.50349
-1.68428
-1.65963
-1.76288
-1.59263
-1.11103
-0.999341
-1.02318
-0.883411
-1.16195
-0.965559
-1.76013
-1.85261
-2.27556
-2.00688
-2.31183
-1.84703
-2.22532
-1.63065
-2.06441
-1.34119
-1.79641
-0.93424
-1.064
-0.28323
-0.760169
-0.772622
-0.718827
-0.652514
-0.58206
-0.475648
-0.628146
-0.655734
-0.780348
-0.85919
-1.00683
-1.1006
-1.27778
-1.32939
-1.53319
-1.56291
-1.77547
-1.7879
-1.8736
-1.68481
-1.12385
-0.974579
-0.974676
-0.795088
-1.08384
-0.843764
-1.74801
-1.82629
-2.36973
-1.99241
-2.40481
-1.86267
-2.35892
-1.66432
-2.15761
-1.36686
-1.79231
-0.759372
-0.664849
0.460367
-0.585889
-0.530592
-0.565
-0.369507
-0.33245
-0.15157
-0.296917
-0.359524
-0.517081
-0.614395
-0.804378
-0.932709
-1.16024
-1.24568
-1.48359
-1.5238
-1.77746
-1.82433
-1.89234
-1.67544
-1.02459
-0.823324
-0.792596
-0.573547
-0.884541
-0.633861
-1.65322
-1.77612
-2.429
-1.98881
-2.47957
-1.81203
-2.3676
-1.53829
-2.15213
-1.17631
-1.56927
-0.431694
0.294746
2.39476
-0.73482
-0.839854
-0.70758
-0.626885
-0.472832
-0.238618
-0.279442
-0.365401
-0.494544
-0.609065
-0.803862
-0.950752
-1.19232
-1.31854
-1.59041
-1.67112
-1.97276
-2.02317
-2.06699
-1.7674
-1.06648
-0.765166
-0.680231
-0.397858
-0.703865
-0.487291
-1.59298
-1.76261
-2.53605
-2.06811
-2.61851
-1.89257
-2.47415
-1.64614
-2.33349
-1.31561
-1.8692
0.0131897
0.574081
4.72767
-0.910174
-0.513637
-0.596124
-0.13894
-0.153474
0.141166
0.0522438
-0.0238372
-0.21955
-0.356118
-0.601978
-0.780338
-1.0753
-1.2612
-1.61189
-1.7542
-2.08333
-2.13794
-2.12034
-1.67957
-0.913623
-0.471775
-0.340914
0.0314819
-0.343256
-0.236735
-1.48512
-1.713
-2.66578
-2.13567
-2.74501
-1.86431
-2.44588
-1.48412
-2.144
-1.01307
-1.37295
1.01343
3.28437
10.3045
-0.483933
-0.989962
-0.849055
-0.752168
-0.306166
-0.14201
0.0386642
-0.0826288
-0.222937
-0.383038
-0.619398
-0.800298
-1.09793
-1.31178
-1.71585
-1.92598
-2.26086
-2.34264
-2.30395
-1.72167
-1.04513
-0.409334
-0.18984
0.281027
-0.0691978
0.0336815
-1.37486
-1.60692
-2.80136
-2.2772
-2.93125
-1.94577
-2.5054
-1.46886
-2.20844
-1.05515
-1.56656
1.71285
5.63132
17.215
-3.13019
-0.280742
-0.433124
0.0917187
0.210519
0.384226
0.268341
0.197873
-0.0365142
-0.205779
-0.463176
-0.648938
-0.979811
-1.27018
-1.77842
-2.08989
-2.41628
-2.45481
-2.23314
-1.4494
-0.766118
0.0225985
0.257051
0.76291
0.349153
0.179174
-1.33862
-1.64785
-3.0353
-2.44804
-2.98462
-1.85983
-2.2702
-1.15685
-1.67522
-0.0596921
0.719133
6.65011
16.289
35.1922
-0.499376
-0.495987
-0.495133
-0.466699
-0.477483
-0.485034
-0.504882
-0.522022
-0.557049
-0.5931
-0.629325
-0.67526
-0.70155
-0.770171
-0.76644
-0.798012
-0.774338
-0.808016
-0.669782
-0.848097
-0.560764
-0.845581
-0.844718
-0.957999
-0.776969
-0.65723
-0.44295
-0.235913
-0.104633
-0.000287641
-0.120748
-0.202958
-0.433438
-0.581449
-0.711998
-0.78551
-0.859776
-0.86621
-0.880761
-0.863481
-0.512215
-0.503548
-0.499742
-0.465528
-0.473211
-0.461131
-0.495369
-0.502359
-0.529255
-0.556457
-0.572091
-0.604125
-0.61948
-0.650381
-0.70407
-0.755619
-0.729838
-0.772585
-0.654764
-0.824014
-0.676171
-0.935197
-1.07364
-1.21769
-1.05863
-0.958938
-0.773634
-0.601984
-0.489154
-0.400503
-0.437691
-0.505849
-0.624806
-0.709428
-0.803173
-0.79338
-0.844593
-0.845887
-0.862988
-0.848008
-0.501516
-0.491882
-0.485711
-0.445577
-0.476817
-0.455188
-0.469245
-0.478603
-0.506474
-0.535765
-0.577701
-0.621307
-0.668015
-0.817337
-0.88448
-0.921291
-0.89376
-0.955819
-0.854261
-1.11542
-0.992989
-1.43426
-1.52101
-1.65401
-1.513
-1.41967
-1.26245
-1.10938
-1.01028
-0.898973
-0.90176
-0.833047
-0.875165
-0.874536
-0.881654
-0.869115
-0.892831
-0.882985
-0.889978
-0.876405
-0.493716
-0.479471
-0.494515
-0.461001
-0.455207
-0.443556
-0.449975
-0.482216
-0.531562
-0.564116
-0.602259
-0.701554
-0.903117
-1.0081
-1.04199
-1.08677
-1.09519
-1.17024
-1.12683
-1.34627
-1.40325
-1.71207
-1.84133
-1.98683
-1.88134
-1.80367
-1.67604
-1.54314
-1.43782
-1.32872
-1.25518
-1.17611
-1.04018
-0.988889
-0.949796
-0.92987
-0.914325
-0.897292
-0.896533
-0.891417
-0.477715
-0.471916
-0.45775
-0.437174
-0.436089
-0.422627
-0.464685
-0.493756
-0.56468
-0.672786
-0.889237
-1.07755
-1.17927
-1.25268
-1.29361
-1.35387
-1.37095
-1.44848
-1.41069
-1.64263
-1.63251
-1.97436
-2.09782
-2.24706
-2.17359
-2.10078
-1.99142
-1.85782
-1.75593
-1.62228
-1.55299
-1.40895
-1.32328
-1.05904
-1.00926
-0.940942
-0.970739
-0.93943
-0.942716
-0.941838
-0.459718
-0.463371
-0.446281
-0.446989
-0.435926
-0.467106
-0.493105
-0.635466
-0.914898
-1.11456
-1.19962
-1.29264
-1.38859
-1.45537
-1.50387
-1.55595
-1.58723
-1.6269
-1.62216
-1.79461
-1.85688
-2.07614
-2.24969
-2.35729
-2.34495
-2.28868
-2.20634
-2.10582
-2.00063
-1.88098
-1.76986
-1.62356
-1.50274
-1.28821
-1.06724
-1.00384
-0.974953
-0.962183
-0.965883
-0.970969
-0.425034
-0.451982
-0.449972
-0.459532
-0.495402
-0.550945
-0.813381
-1.10043
-1.20811
-1.31513
-1.41893
-1.52206
-1.60723
-1.68142
-1.71913
-1.77002
-1.78651
-1.82783
-1.78459
-1.97931
-1.91581
-2.2115
-2.29816
-2.44997
-2.45666
-2.44556
-2.39732
-2.29879
-2.20968
-2.07148
-1.95228
-1.81038
-1.61038
-1.49332
-1.17373
-1.04833
-0.995992
-1.00256
-1.00515
-1.01798
-0.427227
-0.47822
-0.524121
-0.602148
-0.693329
-0.917254
-1.13679
-1.27234
-1.41027
-1.52753
-1.61463
-1.70824
-1.78331
-1.85229
-1.89679
-1.93305
-1.93563
-1.93326
-1.87322
-1.83448
-1.74766
-1.88391
-2.32993
-2.4414
-2.54885
-2.54875
-2.54093
-2.47664
-2.39378
-2.26238
-2.13243
-1.94672
-1.75441
-1.5638
-1.34129
-1.08931
-1.04541
-0.991881
-1.04245
-1.05022
-0.435113
-0.499479
-0.571925
-0.702478
-0.868611
-1.1171
-1.29735
-1.45899
-1.57275
-1.69122
-1.7797
-1.8883
-1.95652
-2.02224
-2.06608
-2.0978
-2.09435
-2.07194
-1.99378
-1.93318
-1.81826
-1.58434
-2.11922
-2.4098
-2.56657
-2.64027
-2.65282
-2.61153
-2.54796
-2.42784
-2.28319
-2.09378
-1.86856
-1.65845
-1.46932
-1.18378
-1.08788
-1.11951
-1.08133
-1.11751
-0.493227
-0.563511
-0.66083
-0.828637
-1.06776
-1.29438
-1.4566
-1.59893
-1.72372
-1.83854
-1.93538
-2.03291
-2.10239
-2.16457
-2.20443
-2.23579
-2.24074
-2.20824
-2.11467
-1.95404
-1.66776
-1.38958
-1.6119
-2.33595
-2.58493
-2.71953
-2.76089
-2.74121
-2.68202
-2.57147
-2.43496
-2.25019
-2.0382
-1.77232
-1.58696
-1.31796
-1.13986
-1.12467
-1.1378
-1.1618
-0.567
-0.642103
-0.752441
-0.964643
-1.22859
-1.4232
-1.57862
-1.73675
-1.85615
-1.96668
-2.07745
-2.17012
-2.23986
-2.29401
-2.33296
-2.36547
-2.37439
-2.34772
-2.2179
-1.97841
-1.59002
-1.27567
-1.41544
-2.06077
-2.59565
-2.77861
-2.85472
-2.84586
-2.79459
-2.69439
-2.56756
-2.40104
-2.19029
-1.94396
-1.68073
-1.48309
-1.2319
-1.17418
-1.20962
-1.22812
-0.688847
-0.764055
-0.896684
-1.1559
-1.37647
-1.55936
-1.69762
-1.85614
-1.96779
-2.09517
-2.20268
-2.29065
-2.35146
-2.40105
-2.43335
-2.46335
-2.48527
-2.45404
-2.29438
-1.95032
-1.44528
-1.21192
-1.20855
-1.75588
-2.5334
-2.81243
-2.9375
-2.93867
-2.88238
-2.80197
-2.68366
-2.53009
-2.33589
-2.09052
-1.83804
-1.56632
-1.36868
-1.22224
-1.30546
-1.28629
-0.805535
-0.8854
-1.05311
-1.31273
-1.50768
-1.66786
-1.83552
-1.95886
-2.09495
-2.21834
-2.32757
-2.40221
-2.45178
-2.4827
-2.50969
-2.55156
-2.57222
-2.52668
-2.34422
-1.85692
-1.4253
-1.08746
-1.09694
-1.55003
-2.21068
-2.88091
-2.96628
-3.0235
-2.9545
-2.88218
-2.7815
-2.65122
-2.46987
-2.24889
-1.97718
-1.73011
-1.50974
-1.31585
-1.33991
-1.38872
-0.977982
-1.05488
-1.26265
-1.48778
-1.66536
-1.81937
-1.96277
-2.09445
-2.22508
-2.34059
-2.42242
-2.4798
-2.51389
-2.54286
-2.57458
-2.59584
-2.588
-2.53681
-2.16038
-1.62119
-1.37058
-1.09535
-1.06439
-1.43425
-1.9343
-2.68138
-3.04846
-3.02916
-3.02562
-2.94288
-2.85443
-2.74752
-2.58644
-2.37827
-2.11798
-1.84396
-1.61408
-1.44086
-1.35656
-1.48332
-1.04764
-1.17252
-1.37142
-1.5803
-1.75899
-1.90363
-2.04013
-2.18421
-2.31592
-2.42148
-2.50393
-2.55154
-2.571
-2.56596
-2.56167
-2.57227
-2.56342
-2.26401
-1.76428
-1.46392
-1.32051
-1.1068
-1.05971
-1.38185
-1.73595
-2.14965
-2.83968
-3.0628
-3.00779
-3.00396
-2.93022
-2.84253
-2.70589
-2.53061
-2.27984
-2.01374
-1.75895
-1.59837
-1.48157
-1.56596
-1.26233
-1.33967
-1.55019
-1.74319
-1.92183
-2.07475
-2.20883
-2.33256
-2.42648
-2.49872
-2.52908
-2.51569
-2.49856
-2.49183
-2.51113
-2.44495
-2.09998
-1.6369
-1.40844
-1.31685
-1.23484
-1.09922
-1.06577
-1.35289
-1.64868
-1.91272
-2.22504
-2.8387
-3.0369
-2.99899
-2.95946
-2.90759
-2.78903
-2.63174
-2.40351
-2.15268
-1.87513
-1.73898
-1.6111
-1.70378
-1.14087
-1.2857
-1.45235
-1.65061
-1.84094
-1.97648
-2.10777
-2.22013
-2.30586
-2.3719
-2.40766
-2.41957
-2.39522
-2.30163
-2.07735
-1.67978
-1.32484
-1.19667
-1.17401
-1.16503
-1.12677
-1.06402
-1.06197
-1.30242
-1.58966
-1.7888
-1.97432
-2.23178
-2.69667
-3.01611
-3.02638
-2.97596
-2.88452
-2.76921
-2.559
-2.31238
-2.01121
-1.84039
-1.70768
-1.7775
-1.23177
-1.30289
-1.41123
-1.62806
-1.76285
-1.9522
-2.05035
-2.15171
-2.20464
-2.22051
-2.15455
-1.92414
-1.66303
-1.37136
-1.13296
-1.00624
-0.929649
-0.926394
-0.966218
-0.999326
-1.00932
-1.00501
-1.04609
-1.23336
-1.54215
-1.72874
-1.86872
-2.01445
-2.18051
-2.46077
-2.83607
-3.00563
-2.96221
-2.82037
-2.65352
-2.39664
-2.18604
-2.03455
-1.94863
-2.08056
-0.606397
-0.673976
-0.807915
-0.973732
-1.15383
-1.31219
-1.38907
-1.42584
-1.39722
-1.26283
-1.08866
-1.0121
-0.954329
-0.891497
-0.805609
-0.732623
-0.698146
-0.708798
-0.765572
-0.821614
-0.889994
-0.928059
-1.01239
-1.15684
-1.46849
-1.66436
-1.80048
-1.91454
-2.0119
-2.12511
-2.23909
-2.45627
-2.79932
-2.93285
-2.77726
-2.52507
-2.26783
-2.01882
-1.84318
-1.83333
-0.293642
-0.316749
-0.379245
-0.48329
-0.611906
-0.730108
-0.812358
-0.907099
-0.947267
-0.8937
-0.867803
-0.826984
-0.76195
-0.70577
-0.62769
-0.564496
-0.518161
-0.519241
-0.572877
-0.648191
-0.761796
-0.846078
-0.976513
-1.10712
-1.37896
-1.60534
-1.75308
-1.86144
-1.9388
-1.99687
-2.05685
-2.08954
-2.13704
-2.30336
-2.68026
-2.67013
-2.55319
-2.45615
-2.43545
-2.65001
-0.254553
-0.196538
-0.216699
-0.268779
-0.383956
-0.477827
-0.595041
-0.64985
-0.717729
-0.71549
-0.74983
-0.737217
-0.68511
-0.614239
-0.529766
-0.45054
-0.391813
-0.373545
-0.41851
-0.502318
-0.653565
-0.779576
-0.92642
-1.07167
-1.26969
-1.52684
-1.68612
-1.79957
-1.87361
-1.91835
-1.96547
-1.98086
-2.0149
-1.94979
-1.88628
-1.89245
-1.88724
-1.83202
-1.83585
-1.96514
-0.301095
-0.246165
-0.259206
-0.296173
-0.398204
-0.484213
-0.597573
-0.673221
-0.755253
-0.773266
-0.801196
-0.780107
-0.660612
-0.594407
-0.472622
-0.375889
-0.303396
-0.276909
-0.322784
-0.393579
-0.575807
-0.727819
-0.909628
-1.07057
-1.25621
-1.46185
-1.64654
-1.76644
-1.84874
-1.89045
-1.9508
-1.96663
-2.03793
-2.04356
-2.03706
-1.96044
-1.94941
-1.77832
-1.67116
-1.71416
-0.327851
-0.27884
-0.301311
-0.335419
-0.43723
-0.5375
-0.632347
-0.708274
-0.791087
-0.839764
-0.846272
-0.796984
-0.696926
-0.58294
-0.459401
-0.361537
-0.290292
-0.262751
-0.31861
-0.367725
-0.529265
-0.713181
-0.872832
-1.04577
-1.22493
-1.40736
-1.57424
-1.68771
-1.78992
-1.83408
-1.90546
-1.89639
-1.93343
-1.86514
-1.89913
-1.88844
-1.89092
-1.77603
-1.59827
-1.66633
-0.39073
-0.342347
-0.368039
-0.400539
-0.50144
-0.580566
-0.695193
-0.773361
-0.857952
-0.899815
-0.915027
-0.864127
-0.76075
-0.638281
-0.50643
-0.39214
-0.313146
-0.263762
-0.327586
-0.346054
-0.54265
-0.734556
-0.923616
-1.10597
-1.29328
-1.45615
-1.59744
-1.66368
-1.77007
-1.82271
-1.9327
-1.94621
-2.04067
-2.00979
-2.09347
-2.05733
-2.11514
-2.02037
-1.89928
-1.89081
-0.436762
-0.387103
-0.415138
-0.445339
-0.545569
-0.625401
-0.741897
-0.82935
-0.919283
-0.972252
-0.988474
-0.947231
-0.858599
-0.73632
-0.607709
-0.497507
-0.432504
-0.390993
-0.470355
-0.502637
-0.646692
-0.786801
-0.929193
-1.13021
-1.31086
-1.42439
-1.5694
-1.63554
-1.75896
-1.77298
-1.85423
-1.80412
-1.83783
-1.7522
-1.80593
-1.70078
-1.77491
-1.6875
-1.66294
-1.66843
-0.485619
-0.436257
-0.461298
-0.486273
-0.579685
-0.66284
-0.777651
-0.875982
-0.972418
-1.0391
-1.07927
-1.07491
-1.02546
-0.947654
-0.86098
-0.812982
-0.85465
-0.860921
-0.900808
-0.708397
-0.800805
-0.896025
-1.05347
-1.18346
-1.3415
-1.46403
-1.60781
-1.69158
-1.83192
-1.83591
-1.98124
-1.99165
-2.13336
-2.065
-2.15526
-2.03063
-2.07569
-1.91829
-1.86193
-1.76318
-0.524098
-0.488374
-0.527167
-0.555711
-0.641224
-0.725488
-0.841367
-0.950504
-1.05916
-1.14588
-1.21622
-1.25982
-1.28121
-1.29496
-1.31746
-1.35607
-1.36769
-1.29249
-1.26055
-0.891043
-0.940309
-0.979629
-1.12088
-1.21006
-1.36172
-1.44496
-1.63663
-1.71196
-1.93076
-2.00015
-2.16444
-2.09477
-2.22638
-2.15255
-2.24963
-2.0974
-2.21309
-2.05368
-2.11935
-2.1296
-0.563973
-0.512681
-0.533925
-0.583543
-0.659409
-0.737959
-0.840079
-0.970376
-1.09188
-1.20181
-1.30616
-1.39782
-1.48055
-1.5638
-1.65416
-1.70254
-1.72167
-1.61993
-1.54852
-1.03439
-1.05633
-1.05462
-1.16309
-1.26261
-1.35919
-1.42589
-1.62953
-1.72612
-1.99073
-1.98628
-2.12394
-2.02797
-2.19273
-1.99091
-2.17232
-1.91802
-2.05825
-1.78585
-1.83215
-1.75613
-0.622577
-0.588082
-0.594534
-0.643513
-0.751378
-0.816707
-0.928922
-1.03914
-1.16721
-1.28362
-1.39955
-1.50351
-1.59949
-1.68908
-1.8044
-1.88832
-1.9709
-1.86864
-1.7915
-1.18509
-1.15564
-1.10484
-1.19881
-1.21581
-1.37391
-1.36242
-1.64723
-1.80476
-2.02015
-1.95478
-2.0905
-1.94988
-2.11282
-1.96874
-2.08935
-1.8256
-1.96209
-1.62376
-1.58243
-1.41549
-0.603353
-0.56482
-0.577784
-0.571372
-0.722796
-0.778573
-0.895261
-0.978357
-1.11871
-1.23352
-1.35438
-1.45544
-1.55299
-1.6393
-1.76383
-1.84637
-1.98404
-1.9255
-1.90798
-1.29035
-1.19959
-1.11556
-1.2002
-1.19597
-1.36019
-1.31524
-1.73719
-1.81035
-2.05753
-1.9353
-2.12552
-1.91719
-2.13068
-1.84053
-2.15043
-1.72664
-1.97657
-1.54471
-1.52705
-1.25725
-0.690242
-0.660227
-0.66672
-0.647766
-0.7637
-0.844059
-0.938669
-1.02031
-1.141
-1.24426
-1.35564
-1.44872
-1.54661
-1.63073
-1.76163
-1.81733
-1.96865
-1.89091
-1.94968
-1.42472
-1.24499
-1.13442
-1.21442
-1.1623
-1.40251
-1.28737
-1.82378
-1.82676
-2.09032
-1.91692
-2.13266
-1.89612
-2.09669
-1.79791
-2.01148
-1.70065
-1.88718
-1.49284
-1.46228
-1.13506
-0.622232
-0.586723
-0.599594
-0.555947
-0.616748
-0.727024
-0.818549
-0.880341
-0.987289
-1.08708
-1.2103
-1.3101
-1.43244
-1.51612
-1.65652
-1.68355
-1.84468
-1.76019
-1.84841
-1.46603
-1.20417
-1.08564
-1.15754
-1.07859
-1.32532
-1.17408
-1.80225
-1.81933
-2.12826
-1.90656
-2.17267
-1.84777
-2.12546
-1.70373
-2.0182
-1.57152
-1.83226
-1.356
-1.39253
-0.974417
-0.73221
-0.719424
-0.70617
-0.678084
-0.663701
-0.750387
-0.856493
-0.89925
-0.99465
-1.06998
-1.18797
-1.28873
-1.41418
-1.4867
-1.63245
-1.63955
-1.81265
-1.7256
-1.82657
-1.54857
-1.21108
-1.08115
-1.13636
-1.01766
-1.29057
-1.06793
-1.84094
-1.82585
-2.26302
-1.90624
-2.23991
-1.84071
-2.14992
-1.68571
-2.00618
-1.49653
-1.7835
-1.21813
-1.24553
-0.721604
-0.605391
-0.575254
-0.582638
-0.502549
-0.502562
-0.464926
-0.657518
-0.674396
-0.797863
-0.87616
-1.01094
-1.11576
-1.26329
-1.34062
-1.50861
-1.51839
-1.71891
-1.6632
-1.77671
-1.52669
-1.1317
-0.9875
-1.02564
-0.883803
-1.17231
-0.966836
-1.78944
-1.79161
-2.24683
-1.95438
-2.27179
-1.79179
-2.1839
-1.57162
-1.99672
-1.28069
-1.67276
-0.850157
-0.944216
-0.143331
-0.758017
-0.767254
-0.723281
-0.65677
-0.607723
-0.500532
-0.655807
-0.683468
-0.801385
-0.878745
-1.02032
-1.12502
-1.28739
-1.36544
-1.54046
-1.56669
-1.81205
-1.78119
-1.88725
-1.61946
-1.15259
-0.970294
-0.991953
-0.805996
-1.10305
-0.867711
-1.7799
-1.79893
-2.36826
-1.97421
-2.37986
-1.82476
-2.27342
-1.61776
-2.06861
-1.30647
-1.63152
-0.729389
-0.534011
0.57588
-0.584138
-0.530605
-0.570187
-0.383412
-0.372492
-0.201449
-0.346033
-0.4058
-0.555906
-0.651996
-0.834586
-0.966525
-1.171
-1.27499
-1.50497
-1.54874
-1.83493
-1.83619
-1.91591
-1.60016
-1.03081
-0.79596
-0.807672
-0.593751
-0.898507
-0.686922
-1.68267
-1.79596
-2.38267
-1.97219
-2.42567
-1.78443
-2.32915
-1.47067
-2.06217
-1.05688
-1.44831
-0.140743
0.27496
2.50107
-0.747207
-0.841066
-0.72993
-0.644881
-0.538319
-0.276915
-0.346598
-0.416915
-0.541061
-0.647702
-0.832633
-0.979224
-1.21129
-1.34022
-1.61289
-1.68078
-1.99487
-2.00941
-2.06151
-1.68963
-1.05718
-0.724842
-0.696413
-0.40567
-0.755133
-0.533521
-1.65078
-1.76085
-2.53061
-2.02926
-2.57344
-1.83572
-2.39602
-1.56461
-2.22218
-1.19316
-1.70486
0.143786
0.734506
4.82174
-0.926739
-0.525599
-0.61971
-0.18669
-0.21689
0.0685075
-0.0256376
-0.0926093
-0.27503
-0.402311
-0.634574
-0.808581
-1.09017
-1.27203
-1.61762
-1.74647
-2.08382
-2.10575
-2.09275
-1.60028
-0.923952
-0.460648
-0.366483
-0.0067097
-0.416052
-0.302205
-1.54949
-1.7061
-2.64141
-2.09566
-2.67411
-1.80669
-2.36665
-1.39715
-2.02426
-0.855399
-1.16952
1.23586
3.4391
10.4243
-0.509805
-1.00115
-0.873509
-0.793366
-0.375348
-0.213438
-0.0434846
-0.145694
-0.274054
-0.420745
-0.642437
-0.817097
-1.10298
-1.31048
-1.71176
-1.90703
-2.24236
-2.29447
-2.25535
-1.64955
-1.04133
-0.395421
-0.218778
0.236596
-0.156904
-0.0725459
-1.44857
-1.63121
-2.7788
-2.241
-2.86138
-1.89427
-2.42892
-1.39659
-2.08539
-0.908866
-1.32407
1.90267
5.76006
17.3145
-3.14238
-0.301845
-0.479973
0.02891
0.135588
0.304076
0.194916
0.13462
-0.0824405
-0.240507
-0.483092
-0.661344
-0.978792
-1.25676
-1.76015
-2.04111
-2.37342
-2.39716
-2.15902
-1.36845
-0.762252
0.022904
0.212343
0.689982
0.2445
0.0612972
-1.43861
-1.67589
-2.99703
-2.39459
-2.9156
-1.80671
-2.19302
-1.08158
-1.55262
0.076269
0.903215
6.77834
16.3521
35.2213
-0.516442
-0.516465
-0.505624
-0.477108
-0.480013
-0.491243
-0.508848
-0.52556
-0.557158
-0.589829
-0.621905
-0.660296
-0.70008
-0.724586
-0.778935
-0.785385
-0.777854
-0.821818
-0.718312
-0.88419
-0.665207
-0.904846
-0.88096
-0.965808
-0.817545
-0.760114
-0.652249
-0.547287
-0.497345
-0.426068
-0.527191
-0.538792
-0.695674
-0.721221
-0.800559
-0.825491
-0.875723
-0.871468
-0.885675
-0.870606
-0.531659
-0.524729
-0.512414
-0.479213
-0.474856
-0.479858
-0.481696
-0.522052
-0.530662
-0.553357
-0.565262
-0.594762
-0.613478
-0.632485
-0.667919
-0.737522
-0.717496
-0.773034
-0.669992
-0.875241
-0.756146
-1.01009
-1.00496
-1.1508
-1.05056
-1.04429
-0.954652
-0.868511
-0.819133
-0.753246
-0.764055
-0.752456
-0.817338
-0.831878
-0.832349
-0.824796
-0.858933
-0.854096
-0.87305
-0.862744
-0.525424
-0.515219
-0.49876
-0.474219
-0.461346
-0.47226
-0.475922
-0.483333
-0.513822
-0.538451
-0.573683
-0.60565
-0.645367
-0.735583
-0.855447
-0.898179
-0.8832
-0.940898
-0.874301
-1.10243
-1.07809
-1.37519
-1.50061
-1.68317
-1.60879
-1.56787
-1.49153
-1.40914
-1.35493
-1.2472
-1.20562
-1.07258
-1.03744
-0.954204
-0.957428
-0.879291
-0.896938
-0.882125
-0.892371
-0.88462
-0.522614
-0.511054
-0.489286
-0.488644
-0.472301
-0.458986
-0.459564
-0.49285
-0.526538
-0.554279
-0.586721
-0.664933
-0.812254
-0.972242
-1.01307
-1.06696
-1.07872
-1.17696
-1.1511
-1.42669
-1.43008
-1.77588
-1.88897
-2.06861
-1.99706
-1.97319
-1.89544
-1.81269
-1.73329
-1.60654
-1.50733
-1.33694
-1.18804
-1.03974
-1.02201
-0.940309
-0.942234
-0.912752
-0.917343
-0.912484
-0.505708
-0.495802
-0.489006
-0.472204
-0.462802
-0.444301
-0.478941
-0.49524
-0.567377
-0.659368
-0.846447
-1.00163
-1.10841
-1.21861
-1.27314
-1.33615
-1.36433
-1.45124
-1.44302
-1.67924
-1.72474
-2.031
-2.18396
-2.32302
-2.29404
-2.23991
-2.1675
-2.0645
-1.97295
-1.82505
-1.72352
-1.54871
-1.39486
-1.12586
-0.993903
-0.964908
-0.955531
-0.943059
-0.944182
-0.948219
-0.481383
-0.495831
-0.490207
-0.487548
-0.473892
-0.489309
-0.512085
-0.654265
-0.892111
-1.06679
-1.15477
-1.23184
-1.3336
-1.42869
-1.47802
-1.54637
-1.5711
-1.68711
-1.66293
-1.86645
-1.91277
-2.15006
-2.32087
-2.43507
-2.41828
-2.40365
-2.32951
-2.25729
-2.15489
-2.02404
-1.89824
-1.74443
-1.57805
-1.35502
-1.11334
-1.04777
-1.02724
-0.999691
-0.997744
-0.999571
-0.498471
-0.502932
-0.523274
-0.527504
-0.564402
-0.610699
-0.854324
-1.07744
-1.18447
-1.27633
-1.3837
-1.46845
-1.57221
-1.64744
-1.71776
-1.76213
-1.7762
-1.82861
-1.8049
-1.935
-1.92309
-2.28636
-2.28738
-2.48886
-2.49739
-2.49978
-2.47077
-2.37205
-2.2795
-2.11944
-2.02447
-1.83673
-1.67352
-1.50859
-1.22224
-1.08244
-0.992085
-1.00622
-1.0125
-1.02448
-0.497147
-0.536101
-0.586435
-0.665409
-0.755739
-0.921172
-1.13086
-1.24825
-1.37821
-1.48342
-1.57775
-1.65629
-1.7538
-1.81116
-1.86396
-1.90802
-1.9121
-1.92218
-1.87725
-1.88323
-1.87471
-1.88221
-2.29287
-2.43435
-2.57286
-2.57729
-2.58779
-2.51738
-2.42503
-2.28377
-2.10337
-1.9957
-1.78152
-1.63508
-1.3847
-1.17121
-1.13328
-1.08891
-1.0797
-1.09044
-0.523309
-0.567743
-0.637225
-0.756848
-0.901305
-1.11859
-1.28909
-1.42526
-1.5433
-1.6469
-1.75633
-1.84465
-1.93298
-2.00161
-2.0475
-2.07395
-2.06438
-2.03482
-1.96648
-1.91615
-1.83072
-1.72928
-2.17096
-2.31042
-2.5498
-2.64813
-2.67056
-2.62985
-2.53364
-2.3867
-2.23745
-2.03994
-1.91325
-1.66127
-1.53353
-1.20533
-1.13771
-1.05037
-1.10139
-1.12113
-0.576926
-0.630443
-0.724751
-0.872845
-1.09036
-1.2761
-1.43896
-1.5522
-1.68648
-1.79092
-1.88666
-1.99015
-2.07094
-2.13581
-2.17862
-2.20778
-2.20811
-2.16578
-2.07765
-1.94201
-1.78484
-1.49716
-1.58238
-2.45129
-2.59464
-2.73751
-2.76672
-2.72147
-2.64268
-2.52024
-2.37871
-2.22148
-2.02081
-1.83446
-1.6232
-1.40036
-1.19908
-1.21919
-1.17
-1.20502
-0.650197
-0.706511
-0.81473
-1.00674
-1.24702
-1.40838
-1.55124
-1.69217
-1.80485
-1.91724
-2.02003
-2.1269
-2.20803
-2.26649
-2.30851
-2.33416
-2.34203
-2.30228
-2.18025
-1.93934
-1.66478
-1.346
-1.63251
-2.11026
-2.5794
-2.73618
-2.82697
-2.78492
-2.716
-2.62525
-2.51536
-2.35702
-2.16778
-1.92487
-1.69664
-1.48529
-1.25707
-1.22303
-1.2055
-1.24522
-0.75837
-0.820128
-0.950942
-1.1876
-1.39057
-1.54169
-1.69182
-1.80611
-1.91998
-2.02771
-2.12986
-2.24426
-2.31262
-2.36951
-2.40086
-2.42543
-2.44596
-2.41231
-2.27593
-1.91039
-1.46405
-1.15906
-1.2718
-1.74319
-2.48542
-2.75339
-2.84734
-2.83934
-2.7896
-2.72554
-2.61327
-2.48698
-2.3036
-2.09706
-1.83009
-1.63833
-1.35649
-1.2782
-1.28691
-1.31677
-0.868211
-0.924557
-1.09792
-1.33247
-1.51444
-1.65392
-1.79795
-1.90988
-2.03292
-2.14071
-2.25387
-2.34913
-2.41228
-2.44146
-2.47366
-2.50319
-2.53132
-2.49781
-2.32752
-1.83167
-1.27525
-1.03873
-1.09507
-1.56042
-2.1288
-2.73279
-2.84436
-2.90081
-2.85618
-2.79336
-2.71488
-2.59143
-2.42315
-2.21083
-1.95919
-1.6933
-1.50039
-1.33678
-1.37939
-1.37335
-1.01665
-1.09164
-1.27965
-1.48103
-1.65647
-1.79792
-1.93195
-2.03755
-2.15333
-2.25393
-2.34984
-2.42397
-2.46741
-2.49893
-2.53035
-2.54664
-2.55117
-2.51095
-2.18023
-1.62312
-1.2064
-1.04964
-1.03294
-1.43283
-1.91512
-2.62003
-2.88919
-2.918
-2.9108
-2.86254
-2.77991
-2.68294
-2.52486
-2.33469
-2.07572
-1.84924
-1.57136
-1.44099
-1.40821
-1.47758
-1.08858
-1.14925
-1.34133
-1.54302
-1.7255
-1.87358
-2.02225
-2.13622
-2.2637
-2.36374
-2.45047
-2.49229
-2.5226
-2.50099
-2.5123
-2.51695
-2.52217
-2.29453
-1.82377
-1.41549
-1.20237
-1.07733
-1.02781
-1.34909
-1.71896
-2.13525
-2.76495
-2.90831
-2.92174
-2.91305
-2.85602
-2.77192
-2.63977
-2.46583
-2.22336
-1.97635
-1.73795
-1.56947
-1.46376
-1.55803
-1.25659
-1.3214
-1.52712
-1.66683
-1.86531
-2.03178
-2.16289
-2.26432
-2.37437
-2.43456
-2.46142
-2.43491
-2.43705
-2.42115
-2.45555
-2.39365
-2.12406
-1.70798
-1.40691
-1.26851
-1.16843
-1.07556
-1.03338
-1.30941
-1.62068
-1.91788
-2.29355
-2.81614
-2.93698
-2.92704
-2.88985
-2.83517
-2.71979
-2.56253
-2.33987
-2.09731
-1.84244
-1.70864
-1.57763
-1.65844
-1.08982
-1.21594
-1.36106
-1.57238
-1.78328
-1.91806
-2.03779
-2.15181
-2.23571
-2.31595
-2.35456
-2.34394
-2.32027
-2.19624
-2.01162
-1.68382
-1.39054
-1.23179
-1.18089
-1.14917
-1.11206
-1.05199
-1.03384
-1.25482
-1.55469
-1.76288
-1.98845
-2.29132
-2.73656
-2.93626
-2.95287
-2.91034
-2.82521
-2.70165
-2.49196
-2.25526
-1.9768
-1.81511
-1.66772
-1.70838
-1.28517
-1.28931
-1.41378
-1.54746
-1.73114
-1.84467
-1.98973
-2.05233
-2.14488
-2.13263
-2.0158
-1.73972
-1.53853
-1.31003
-1.15354
-1.05779
-1.00894
-0.992016
-1.01314
-1.02726
-1.03022
-1.01093
-1.00803
-1.20308
-1.50855
-1.71967
-1.87401
-2.0359
-2.22738
-2.52614
-2.81784
-2.9186
-2.87638
-2.75297
-2.59181
-2.3779
-2.10519
-1.97491
-1.90744
-2.01832
-0.519518
-0.595606
-0.695736
-0.869234
-1.04469
-1.19314
-1.27035
-1.34229
-1.22648
-1.15213
-1.02326
-1.03697
-0.968048
-0.926044
-0.865336
-0.828866
-0.817179
-0.826628
-0.868665
-0.896559
-0.943254
-0.950149
-1.00124
-1.14963
-1.44478
-1.65946
-1.80722
-1.92266
-2.02739
-2.14158
-2.30475
-2.52202
-2.78259
-2.83965
-2.69744
-2.45572
-2.17002
-1.95366
-1.81169
-1.7758
-0.386191
-0.383573
-0.431721
-0.509449
-0.629041
-0.713189
-0.815399
-0.858234
-0.877638
-0.880158
-0.874656
-0.838747
-0.763734
-0.761862
-0.708632
-0.695865
-0.68744
-0.691808
-0.734857
-0.773919
-0.853549
-0.890227
-0.997475
-1.11809
-1.37573
-1.61162
-1.76606
-1.8734
-1.94433
-1.99162
-2.0406
-2.07113
-2.17148
-2.38888
-2.67404
-2.58108
-2.49149
-2.36688
-2.34448
-2.55476
-0.28982
-0.216252
-0.233416
-0.283205
-0.388382
-0.474776
-0.570333
-0.646482
-0.683178
-0.731204
-0.741588
-0.766987
-0.747938
-0.704568
-0.62773
-0.618792
-0.584502
-0.588756
-0.63242
-0.675533
-0.783697
-0.840648
-0.964358
-1.1031
-1.29601
-1.54419
-1.70852
-1.81554
-1.88211
-1.91215
-1.9473
-1.94636
-1.96039
-1.87852
-1.84142
-1.84229
-1.86374
-1.79185
-1.81933
-1.95404
-0.357222
-0.294115
-0.301674
-0.329681
-0.423459
-0.491693
-0.598104
-0.667092
-0.7482
-0.796124
-0.812683
-0.789809
-0.723884
-0.656977
-0.599663
-0.579023
-0.507204
-0.503915
-0.545522
-0.60408
-0.732197
-0.819043
-0.970142
-1.11931
-1.29336
-1.48492
-1.67274
-1.78956
-1.86084
-1.88794
-1.93982
-1.94272
-2.00176
-1.98666
-1.95619
-1.88968
-1.8262
-1.73083
-1.61588
-1.67782
-0.361228
-0.302659
-0.31858
-0.347996
-0.442162
-0.497359
-0.619045
-0.698482
-0.782157
-0.835466
-0.851385
-0.823781
-0.741597
-0.65902
-0.561957
-0.495184
-0.477911
-0.495237
-0.557901
-0.574072
-0.748084
-0.803662
-0.957319
-1.10696
-1.28279
-1.43223
-1.58552
-1.6987
-1.80035
-1.84126
-1.90744
-1.88823
-1.91015
-1.82497
-1.8543
-1.82214
-1.81971
-1.71627
-1.60493
-1.65107
-0.412519
-0.360494
-0.37857
-0.404346
-0.498572
-0.565519
-0.672717
-0.754427
-0.844437
-0.898742
-0.913145
-0.871181
-0.783495
-0.680546
-0.570701
-0.495096
-0.462385
-0.456067
-0.546368
-0.620385
-0.748437
-0.892729
-1.02962
-1.17898
-1.38505
-1.41725
-1.57914
-1.65994
-1.7831
-1.8302
-1.94073
-1.94135
-2.0287
-1.99624
-2.08018
-2.02966
-2.06376
-1.99403
-1.83891
-1.8086
-0.455474
-0.402439
-0.420635
-0.443984
-0.536672
-0.614348
-0.721095
-0.808352
-0.899441
-0.958004
-0.979475
-0.951006
-0.870903
-0.767251
-0.657519
-0.60374
-0.625338
-0.673197
-0.79137
-0.760397
-0.855174
-0.932789
-1.05023
-1.18463
-1.36829
-1.44685
-1.57848
-1.64949
-1.76918
-1.74754
-1.83342
-1.79867
-1.86123
-1.771
-1.83692
-1.72862
-1.78961
-1.66814
-1.63846
-1.66632
-0.468213
-0.441693
-0.464852
-0.48329
-0.569358
-0.646872
-0.757118
-0.849039
-0.947053
-1.01587
-1.05763
-1.05871
-1.01957
-0.966669
-0.923245
-0.950677
-1.02815
-1.0229
-1.05574
-0.863388
-0.938335
-0.993458
-1.14056
-1.23199
-1.39146
-1.47257
-1.62827
-1.70005
-1.81742
-1.8247
-1.99228
-1.98604
-2.10761
-2.03865
-2.16727
-2.04175
-2.10465
-1.87875
-1.83772
-1.74011
-0.564308
-0.509282
-0.531831
-0.554187
-0.629137
-0.707873
-0.817486
-0.919592
-1.02773
-1.11151
-1.17944
-1.22339
-1.24699
-1.27454
-1.31529
-1.37471
-1.40664
-1.33963
-1.31903
-0.978385
-1.02463
-1.0456
-1.15925
-1.26445
-1.40144
-1.48317
-1.65021
-1.73475
-1.92311
-1.98191
-2.10856
-2.08407
-2.22395
-2.11635
-2.25429
-2.11741
-2.22262
-2.04616
-2.1356
-2.12186
-0.552107
-0.518445
-0.531132
-0.574482
-0.650033
-0.719277
-0.829607
-0.938341
-1.05929
-1.1606
-1.2574
-1.33813
-1.40647
-1.46612
-1.51917
-1.53891
-1.58724
-1.52518
-1.49858
-1.0619
-1.08951
-1.07322
-1.18127
-1.21637
-1.39945
-1.44918
-1.65628
-1.73486
-1.97144
-1.96986
-2.13497
-2.02983
-2.16869
-2.00325
-2.17998
-1.95242
-2.08761
-1.86518
-1.90248
-1.81761
-0.620621
-0.5874
-0.592769
-0.620201
-0.721756
-0.791011
-0.909558
-1.00871
-1.13536
-1.2407
-1.34691
-1.43606
-1.50656
-1.55249
-1.58499
-1.57368
-1.63885
-1.58313
-1.61078
-1.15724
-1.15523
-1.10729
-1.20045
-1.23256
-1.37474
-1.38671
-1.64957
-1.79038
-2.00517
-1.94073
-2.08054
-1.95236
-2.15163
-1.95362
-2.08591
-1.87866
-1.98409
-1.71911
-1.64675
-1.46784
-0.600762
-0.564964
-0.57532
-0.563177
-0.690305
-0.744369
-0.860397
-0.962629
-1.092
-1.19869
-1.31076
-1.39756
-1.46999
-1.50508
-1.54204
-1.52125
-1.59775
-1.53799
-1.62049
-1.21136
-1.17611
-1.10078
-1.19747
-1.20665
-1.37783
-1.32205
-1.75744
-1.79099
-2.04871
-1.91844
-2.12264
-1.92065
-2.1282
-1.90288
-2.16467
-1.75677
-2.01729
-1.6159
-1.57116
-1.29274
-0.681027
-0.659173
-0.660635
-0.64336
-0.73692
-0.824417
-0.919525
-1.00085
-1.11972
-1.2224
-1.32664
-1.40754
-1.48097
-1.51606
-1.57583
-1.55644
-1.6595
-1.56561
-1.65982
-1.30396
-1.21783
-1.11995
-1.19946
-1.17321
-1.36573
-1.26072
-1.83401
-1.79669
-2.07985
-1.89119
-2.13165
-1.87661
-2.11837
-1.80688
-2.06001
-1.77401
-1.92223
-1.55693
-1.48419
-1.14578
-0.618994
-0.588326
-0.599134
-0.553625
-0.607713
-0.711328
-0.812135
-0.87859
-0.988627
-1.07925
-1.19679
-1.28344
-1.38428
-1.43427
-1.54332
-1.54042
-1.67845
-1.56745
-1.65574
-1.33837
-1.20083
-1.08872
-1.16329
-1.09744
-1.34355
-1.1704
-1.85825
-1.79437
-2.12224
-1.8837
-2.1658
-1.83689
-2.13815
-1.73611
-2.06456
-1.60694
-1.92594
-1.40376
-1.43683
-0.968596
-0.725422
-0.720887
-0.703457
-0.683986
-0.666555
-0.755598
-0.864109
-0.917399
-1.01625
-1.09479
-1.20331
-1.29528
-1.41033
-1.4703
-1.60232
-1.60028
-1.76245
-1.66052
-1.73247
-1.43716
-1.22678
-1.10001
-1.15852
-1.05245
-1.30738
-1.14602
-1.88273
-1.78356
-2.22874
-1.87747
-2.23237
-1.81825
-2.17888
-1.70216
-2.08186
-1.51944
-1.91864
-1.25154
-1.34379
-0.731572
-0.610063
-0.578705
-0.59543
-0.513752
-0.526839
-0.494302
-0.686925
-0.709719
-0.835995
-0.911145
-1.04858
-1.1431
-1.29115
-1.35816
-1.52192
-1.5232
-1.72263
-1.64422
-1.73748
-1.44293
-1.15895
-1.00667
-1.0673
-0.918026
-1.21401
-0.985606
-1.82368
-1.81169
-2.2862
-1.92776
-2.2713
-1.78423
-2.19717
-1.60147
-2.06758
-1.34404
-1.80807
-0.926364
-1.09093
-0.169395
-0.763353
-0.773388
-0.73228
-0.688827
-0.639123
-0.560074
-0.713106
-0.7433
-0.860351
-0.936584
-1.07627
-1.17893
-1.33216
-1.39926
-1.57462
-1.56303
-1.80847
-1.76907
-1.85258
-1.56047
-1.16943
-0.980546
-1.02682
-0.826618
-1.11159
-0.882625
-1.78699
-1.76151
-2.34559
-1.96507
-2.38267
-1.81991
-2.29558
-1.63198
-2.1384
-1.36932
-1.79938
-0.816587
-0.740312
0.49548
-0.590647
-0.542033
-0.597181
-0.422231
-0.436981
-0.270167
-0.441142
-0.480189
-0.633214
-0.718824
-0.897244
-1.01496
-1.22375
-1.31144
-1.54094
-1.55803
-1.83472
-1.80093
-1.88412
-1.5418
-1.0562
-0.803157
-0.842096
-0.591719
-0.970433
-0.718706
-1.74346
-1.76223
-2.42532
-1.95982
-2.47237
-1.7604
-2.31832
-1.49122
-2.10677
-1.10247
-1.61604
-0.158454
-0.0870814
2.36563
-0.76469
-0.860078
-0.757271
-0.709348
-0.62127
-0.375921
-0.467345
-0.519428
-0.639019
-0.733433
-0.905621
-1.04542
-1.26026
-1.37825
-1.63249
-1.69248
-1.98906
-1.98355
-2.02919
-1.65917
-1.07814
-0.759731
-0.741109
-0.42667
-0.832853
-0.577684
-1.67552
-1.7352
-2.52185
-2.02876
-2.561
-1.87764
-2.43386
-1.58081
-2.28991
-1.22108
-1.79145
0.0106405
0.620519
4.54513
-0.948388
-0.546694
-0.666837
-0.265339
-0.332588
-0.0491961
-0.17162
-0.210632
-0.386978
-0.495791
-0.716529
-0.874444
-1.14019
-1.30578
-1.63139
-1.74569
-2.06498
-2.05662
-2.05286
-1.55315
-0.963599
-0.490333
-0.437657
-0.0877973
-0.540362
-0.394979
-1.63546
-1.75295
-2.62447
-2.0664
-2.67431
-1.77251
-2.37745
-1.39496
-2.07381
-0.821298
-1.22639
1.1801
3.1467
10.3072
-0.557336
-1.03801
-0.925089
-0.873027
-0.502459
-0.322173
-0.21444
-0.26598
-0.387977
-0.510055
-0.714721
-0.877298
-1.1422
-1.3302
-1.70261
-1.87468
-2.19377
-2.22836
-2.19644
-1.60594
-1.05357
-0.413651
-0.281017
0.108629
-0.238447
-0.164178
-1.53083
-1.63694
-2.77429
-2.20119
-2.8303
-1.85651
-2.43637
-1.38629
-2.06685
-0.861668
-1.31447
2.00416
5.52526
17.2174
-3.16651
-0.346063
-0.568307
-0.0836523
-0.00799229
0.160886
0.0520197
0.0144036
-0.186153
-0.323991
-0.549479
-0.712972
-1.00602
-1.25952
-1.71698
-1.97099
-2.29018
-2.29159
-2.08613
-1.3496
-0.815531
-0.0547461
0.088586
0.538298
0.0506224
-0.0978082
-1.51659
-1.70968
-2.97351
-2.32882
-2.85152
-1.75292
-2.19311
-1.10082
-1.55778
0.113751
0.887454
6.83969
16.007
34.9749
-0.525564
-0.52281
-0.508773
-0.472885
-0.478881
-0.486235
-0.502714
-0.526189
-0.54066
-0.580234
-0.600391
-0.640361
-0.660622
-0.71135
-0.722802
-0.762304
-0.781442
-0.831232
-0.7261
-0.930596
-0.617998
-1.01273
-0.926186
-1.0446
-0.915529
-0.869756
-0.78177
-0.69702
-0.67632
-0.614642
-0.676804
-0.664752
-0.716471
-0.757657
-0.816246
-0.828713
-0.868748
-0.849331
-0.872781
-0.866934
-0.537559
-0.528032
-0.516169
-0.470232
-0.474465
-0.474265
-0.487329
-0.500036
-0.518706
-0.564882
-0.560171
-0.585811
-0.596794
-0.617088
-0.62752
-0.685927
-0.698276
-0.75587
-0.659395
-0.85782
-0.694753
-1.00958
-1.01166
-1.15118
-1.04172
-1.00768
-0.939405
-0.876308
-0.857053
-0.817505
-0.812717
-0.81102
-0.829041
-0.772436
-0.816612
-0.804185
-0.841625
-0.838391
-0.862705
-0.856195
-0.527816
-0.518631
-0.510987
-0.467159
-0.465726
-0.454883
-0.488662
-0.490805
-0.510278
-0.529929
-0.556589
-0.586475
-0.610165
-0.676835
-0.774335
-0.852556
-0.846308
-0.909357
-0.835513
-1.07633
-0.995522
-1.37852
-1.44826
-1.63193
-1.57066
-1.55732
-1.49749
-1.41772
-1.36586
-1.25643
-1.21172
-1.0895
-1.06161
-0.951718
-0.913257
-0.86867
-0.882644
-0.872541
-0.885667
-0.880195
-0.526803
-0.514731
-0.503476
-0.469038
-0.474135
-0.466175
-0.470671
-0.492323
-0.520597
-0.544686
-0.56725
-0.634987
-0.74115
-0.853158
-0.946041
-0.997667
-1.02836
-1.11755
-1.09952
-1.35965
-1.36943
-1.72252
-1.84317
-2.02553
-1.97725
-1.95995
-1.88512
-1.78779
-1.71428
-1.57038
-1.44935
-1.26789
-1.17095
-1.07213
-0.952228
-0.918068
-0.913022
-0.899622
-0.906414
-0.902902
-0.50617
-0.503199
-0.511665
-0.475602
-0.483723
-0.458343
-0.488423
-0.495211
-0.558091
-0.636494
-0.790353
-0.930685
-1.00329
-1.10727
-1.20219
-1.27288
-1.31198
-1.40429
-1.40355
-1.6649
-1.69656
-2.02993
-2.14458
-2.30925
-2.29988
-2.26758
-2.18309
-2.0586
-1.95567
-1.78936
-1.67322
-1.49708
-1.33137
-1.1474
-1.03309
-0.971927
-0.96586
-0.945851
-0.949425
-0.94998
-0.513029
-0.508028
-0.499332
-0.511448
-0.497013
-0.510927
-0.529818
-0.664019
-0.863698
-1.01598
-1.09406
-1.17194
-1.23974
-1.33004
-1.41939
-1.46749
-1.54834
-1.61825
-1.62219
-1.83792
-1.84077
-2.11801
-2.25554
-2.39339
-2.37401
-2.36434
-2.27776
-2.19832
-2.08762
-1.95797
-1.82369
-1.65852
-1.49389
-1.33198
-1.12775
-1.04266
-1.00869
-0.982899
-0.987449
-0.989727
-0.546438
-0.531636
-0.560917
-0.583147
-0.627519
-0.668796
-0.885452
-1.04931
-1.14775
-1.22819
-1.32248
-1.41112
-1.48084
-1.58468
-1.64311
-1.69345
-1.71384
-1.78282
-1.76536
-1.91451
-1.92673
-2.19729
-2.32319
-2.43568
-2.44231
-2.43075
-2.37853
-2.28281
-2.21409
-2.07402
-1.97692
-1.82685
-1.61637
-1.49446
-1.22957
-1.10496
-1.05535
-1.03155
-1.03003
-1.03687
-0.552156
-0.564337
-0.609935
-0.683172
-0.771262
-0.920058
-1.11836
-1.22186
-1.34014
-1.44015
-1.52642
-1.6064
-1.70357
-1.77202
-1.82822
-1.8609
-1.87375
-1.88031
-1.84985
-1.89962
-1.93037
-2.00524
-2.30193
-2.39415
-2.45334
-2.45295
-2.43904
-2.38384
-2.26372
-2.19038
-2.08018
-1.94543
-1.77065
-1.58389
-1.42294
-1.14473
-1.10422
-1.06424
-1.07243
-1.08031
-0.593875
-0.609372
-0.667581
-0.770366
-0.905557
-1.11606
-1.27951
-1.39855
-1.50128
-1.60492
-1.70321
-1.78922
-1.88004
-1.95447
-1.99697
-2.02055
-2.01043
-1.99176
-1.93206
-1.92802
-1.90867
-1.88771
-2.16804
-2.3457
-2.44665
-2.48531
-2.53045
-2.4531
-2.4377
-2.30066
-2.18164
-2.05178
-1.90011
-1.69873
-1.50631
-1.29396
-1.1331
-1.13514
-1.11948
-1.13731
-0.641753
-0.663714
-0.747973
-0.872053
-1.07286
-1.26672
-1.41873
-1.54569
-1.65044
-1.75012
-1.83733
-1.92266
-2.01687
-2.08919
-2.13348
-2.15505
-2.15184
-2.10492
-2.02592
-1.95192
-1.86337
-1.71954
-1.80652
-2.27679
-2.43197
-2.51967
-2.58831
-2.61545
-2.50808
-2.41654
-2.30783
-2.15002
-1.99593
-1.79709
-1.64337
-1.38099
-1.24668
-1.17019
-1.17946
-1.19495
-0.715343
-0.740761
-0.832841
-0.992824
-1.22914
-1.38962
-1.54003
-1.67002
-1.78483
-1.87486
-1.96614
-2.04417
-2.13853
-2.20863
-2.25194
-2.26916
-2.26972
-2.21417
-2.11396
-1.92368
-1.72063
-1.47443
-1.47895
-2.02768
-2.38665
-2.59966
-2.67748
-2.6877
-2.65333
-2.56431
-2.45505
-2.30432
-2.11048
-1.87811
-1.68886
-1.49787
-1.30068
-1.20023
-1.23979
-1.25766
-0.80836
-0.835147
-0.936494
-1.16906
-1.348
-1.50687
-1.64767
-1.7791
-1.88873
-1.98945
-2.0734
-2.14939
-2.23493
-2.30472
-2.33359
-2.34902
-2.35504
-2.30566
-2.21273
-1.89881
-1.45484
-1.11685
-1.13026
-1.65244
-2.31109
-2.53265
-2.73944
-2.77115
-2.74426
-2.68719
-2.58854
-2.43261
-2.24434
-2.01287
-1.76383
-1.60304
-1.38504
-1.32678
-1.28183
-1.32936
-0.909052
-0.9112
-1.09645
-1.2768
-1.45012
-1.59907
-1.74975
-1.86951
-1.99617
-2.08596
-2.18191
-2.25654
-2.33829
-2.37134
-2.39111
-2.40858
-2.42256
-2.38548
-2.28908
-1.85239
-1.24416
-0.875349
-0.970265
-1.47256
-1.92042
-2.57223
-2.7242
-2.82655
-2.80507
-2.76432
-2.65436
-2.53217
-2.35369
-2.15613
-1.86369
-1.6888
-1.47327
-1.38647
-1.34343
-1.40241
-1.03817
-1.08423
-1.20143
-1.39743
-1.5609
-1.75091
-1.84767
-1.97213
-2.07775
-2.17048
-2.25322
-2.33359
-2.40134
-2.42885
-2.4384
-2.44577
-2.43116
-2.40947
-2.19846
-1.64767
-1.13937
-0.906975
-0.968661
-1.43776
-1.94624
-2.61206
-2.79564
-2.84207
-2.85504
-2.78913
-2.71618
-2.6044
-2.45478
-2.25568
-2.02933
-1.75479
-1.5928
-1.44826
-1.40761
-1.47156
-1.05255
-1.10673
-1.2548
-1.40996
-1.61637
-1.7729
-1.91161
-2.0291
-2.19145
-2.25237
-2.36364
-2.42248
-2.45139
-2.4261
-2.40546
-2.40542
-2.40207
-2.28505
-1.88955
-1.46291
-1.17904
-1.02566
-1.02159
-1.34151
-1.77678
-2.20786
-2.71396
-2.80114
-2.83269
-2.82409
-2.77054
-2.70197
-2.57306
-2.40813
-2.16719
-1.94376
-1.67793
-1.57894
-1.52248
-1.5452
-1.23657
-1.28229
-1.41726
-1.57942
-1.74098
-1.87218
-2.02213
-2.15665
-2.24623
-2.29822
-2.36225
-2.32547
-2.35203
-2.33835
-2.34802
-2.31037
-2.11155
-1.78522
-1.47511
-1.2996
-1.19535
-1.12538
-1.10013
-1.30565
-1.66158
-1.93781
-2.379
-2.73902
-2.81546
-2.82098
-2.79656
-2.74532
-2.64031
-2.4872
-2.27616
-2.03771
-1.81438
-1.66715
-1.61536
-1.67733
-1.03204
-1.10677
-1.26503
-1.4448
-1.65291
-1.79532
-1.93272
-2.01869
-2.11233
-2.18385
-2.23266
-2.27523
-2.27078
-2.10899
-1.92471
-1.68018
-1.43967
-1.26883
-1.21339
-1.18142
-1.16243
-1.14605
-1.15208
-1.2624
-1.55552
-1.77734
-2.01502
-2.38654
-2.70561
-2.82848
-2.85825
-2.83864
-2.7613
-2.63715
-2.43352
-2.19491
-1.93632
-1.7806
-1.66973
-1.68501
-1.29804
-1.27276
-1.3621
-1.50268
-1.68017
-1.81568
-1.93445
-2.00927
-2.05195
-1.99083
-1.79352
-1.5427
-1.4791
-1.22512
-1.16937
-1.08828
-1.0639
-1.04315
-1.06403
-1.08315
-1.09748
-1.10947
-1.16508
-1.20912
-1.50569
-1.73496
-1.91123
-2.0877
-2.31379
-2.57352
-2.74571
-2.80378
-2.76614
-2.66498
-2.51704
-2.28766
-2.10315
-1.96743
-1.88146
-1.99332
-0.410193
-0.480205
-0.596065
-0.753557
-0.966566
-1.08318
-1.2046
-1.20602
-1.11352
-1.02782
-0.989251
-0.979279
-0.999025
-0.968838
-0.911208
-0.889575
-0.8912
-0.899724
-0.945724
-0.976857
-1.02367
-1.04965
-1.14923
-1.20716
-1.44245
-1.67198
-1.8416
-1.96645
-2.07256
-2.20575
-2.42307
-2.6108
-2.74114
-2.73015
-2.57741
-2.37017
-2.14423
-1.9096
-1.80404
-1.82405
-0.462694
-0.426272
-0.462577
-0.520324
-0.644888
-0.709845
-0.805666
-0.857791
-0.889194
-0.879121
-0.866866
-0.842913
-0.824731
-0.818003
-0.806853
-0.780946
-0.77959
-0.795131
-0.840695
-0.87858
-0.945764
-0.985453
-1.07136
-1.18244
-1.38412
-1.63843
-1.80813
-1.92453
-1.98746
-2.0176
-2.04259
-2.08542
-2.26682
-2.53671
-2.72117
-2.63628
-2.49748
-2.3552
-2.27425
-2.40292
-0.30598
-0.238432
-0.254498
-0.296349
-0.411454
-0.474792
-0.586476
-0.652174
-0.716496
-0.761044
-0.790905
-0.801123
-0.787254
-0.763378
-0.739121
-0.742613
-0.716199
-0.709088
-0.744153
-0.796676
-0.877899
-0.951845
-1.04887
-1.17625
-1.33553
-1.5578
-1.76448
-1.87145
-1.93373
-1.94644
-1.97076
-1.95805
-1.94694
-1.85067
-1.83464
-1.84966
-1.84394
-1.80177
-1.81045
-1.93985
-0.400704
-0.332807
-0.337465
-0.358774
-0.451804
-0.511719
-0.607067
-0.691774
-0.774739
-0.819534
-0.840868
-0.828597
-0.779964
-0.742347
-0.695415
-0.665796
-0.647509
-0.670306
-0.699433
-0.754482
-0.835096
-0.931099
-1.06773
-1.19442
-1.33969
-1.51862
-1.70078
-1.8404
-1.92419
-1.92989
-1.9662
-1.96181
-2.01375
-1.98137
-1.94455
-1.87052
-1.80612
-1.68613
-1.61324
-1.67437
-0.393269
-0.327936
-0.339515
-0.361737
-0.455633
-0.519141
-0.628313
-0.708731
-0.796301
-0.856902
-0.877923
-0.853939
-0.800342
-0.736812
-0.666278
-0.613011
-0.592834
-0.613339
-0.684341
-0.731455
-0.86184
-0.964333
-1.04437
-1.19184
-1.3349
-1.47695
-1.61949
-1.72948
-1.83573
-1.87958
-1.93968
-1.91236
-1.91356
-1.82541
-1.84569
-1.79184
-1.77332
-1.62877
-1.57017
-1.65269
-0.442093
-0.378154
-0.394505
-0.411112
-0.501721
-0.566461
-0.676351
-0.755072
-0.844811
-0.904767
-0.926661
-0.902526
-0.840496
-0.764166
-0.682395
-0.647118
-0.658113
-0.665269
-0.764048
-0.803798
-0.915026
-0.980948
-1.13956
-1.24758
-1.39522
-1.48356
-1.60643
-1.69682
-1.8091
-1.85842
-1.95892
-1.96221
-2.04327
-2.00947
-2.08577
-2.0248
-2.03012
-1.85308
-1.79816
-1.8049
-0.474467
-0.416863
-0.431953
-0.444759
-0.533032
-0.606191
-0.709482
-0.795433
-0.891425
-0.956647
-0.986876
-0.970739
-0.916815
-0.843882
-0.793815
-0.786393
-0.797501
-0.828487
-0.923111
-0.866663
-0.956605
-1.02963
-1.12303
-1.26036
-1.40796
-1.49583
-1.63269
-1.64411
-1.75975
-1.77751
-1.85897
-1.82087
-1.8744
-1.79093
-1.85034
-1.75002
-1.78987
-1.67405
-1.64329
-1.6846
-0.497092
-0.457712
-0.476435
-0.483895
-0.561836
-0.634241
-0.735096
-0.826489
-0.924443
-0.998726
-1.04581
-1.05798
-1.04052
-1.01422
-1.0049
-1.02388
-1.09527
-1.07922
-1.12722
-0.942637
-1.02561
-1.06084
-1.19348
-1.30698
-1.42787
-1.54587
-1.64336
-1.7166
-1.85256
-1.83187
-1.97495
-1.97091
-2.10409
-2.03097
-2.13787
-1.99219
-2.04042
-1.80183
-1.76611
-1.69964
-0.535815
-0.504625
-0.529202
-0.552812
-0.620044
-0.687555
-0.790685
-0.891621
-0.997909
-1.08174
-1.14696
-1.18819
-1.20865
-1.22943
-1.25827
-1.28319
-1.32287
-1.26889
-1.29054
-1.02028
-1.07989
-1.0954
-1.19434
-1.3265
-1.45068
-1.53554
-1.69518
-1.7661
-1.9103
-1.96249
-2.08247
-2.05327
-2.18546
-2.10575
-2.23877
-2.14053
-2.25218
-2.12041
-2.10678
-2.10731
-0.554289
-0.517745
-0.52613
-0.556395
-0.626636
-0.698074
-0.80155
-0.908874
-1.02124
-1.11812
-1.20539
-1.2745
-1.32665
-1.36721
-1.39828
-1.39714
-1.42014
-1.32064
-1.36189
-1.06716
-1.13459
-1.11753
-1.22088
-1.30071
-1.44924
-1.50715
-1.69313
-1.7608
-1.96838
-1.99545
-2.07409
-1.98656
-2.14216
-1.98451
-2.16435
-1.96133
-2.08921
-1.85716
-1.87771
-1.81187
-0.610333
-0.581722
-0.585144
-0.603438
-0.692059
-0.754924
-0.862219
-0.980868
-1.08859
-1.18955
-1.2811
-1.35804
-1.41457
-1.44951
-1.48411
-1.46501
-1.51806
-1.40998
-1.46301
-1.14414
-1.19775
-1.15254
-1.23712
-1.27843
-1.42658
-1.4254
-1.66979
-1.77274
-1.99491
-1.92341
-2.05972
-1.92226
-2.07112
-1.92453
-2.0774
-1.85222
-1.96383
-1.67425
-1.60485
-1.48667
-0.590835
-0.560386
-0.566076
-0.551346
-0.660246
-0.715871
-0.827362
-0.925045
-1.04355
-1.14726
-1.25007
-1.32748
-1.39426
-1.42747
-1.47222
-1.45521
-1.53117
-1.43889
-1.515
-1.19733
-1.21953
-1.15693
-1.22112
-1.24015
-1.4103
-1.34368
-1.76556
-1.76885
-2.0281
-1.90023
-2.07727
-1.86069
-2.09622
-1.82352
-2.09858
-1.75419
-1.96267
-1.57098
-1.55022
-1.26974
-0.670765
-0.65074
-0.65138
-0.627891
-0.709941
-0.792061
-0.889794
-0.977821
-1.06576
-1.16662
-1.26779
-1.35064
-1.42089
-1.45498
-1.5251
-1.49816
-1.60466
-1.49104
-1.59156
-1.28049
-1.2506
-1.1874
-1.22231
-1.20421
-1.41659
-1.27355
-1.86584
-1.75597
-2.05498
-1.86391
-2.06852
-1.84638
-2.0392
-1.81639
-1.98172
-1.6826
-1.89203
-1.48698
-1.46655
-1.07075
-0.609067
-0.580801
-0.590245
-0.543565
-0.589624
-0.688788
-0.790738
-0.862037
-0.968419
-1.04043
-1.15443
-1.23754
-1.33931
-1.38971
-1.49525
-1.4744
-1.60814
-1.48709
-1.60838
-1.30379
-1.22398
-1.1452
-1.22328
-1.13266
-1.37736
-1.16862
-1.88852
-1.72949
-2.08918
-1.83552
-2.11286
-1.77497
-2.09113
-1.65708
-2.03165
-1.54433
-1.8532
-1.33243
-1.36064
-0.825804
-0.720692
-0.708815
-0.69816
-0.673168
-0.660728
-0.743415
-0.851956
-0.909523
-1.0066
-1.08322
-1.17634
-1.27089
-1.37738
-1.42986
-1.56456
-1.54982
-1.7074
-1.58547
-1.69832
-1.39878
-1.25519
-1.13863
-1.20738
-1.07907
-1.34957
-1.07586
-1.91939
-1.73389
-2.19366
-1.83871
-2.17017
-1.77064
-2.10509
-1.65642
-1.99607
-1.47407
-1.81381
-1.21251
-1.21099
-0.531413
-0.601181
-0.576471
-0.581778
-0.520543
-0.525501
-0.515925
-0.689618
-0.72213
-0.846003
-0.919313
-1.05719
-1.14664
-1.29024
-1.3548
-1.51782
-1.50444
-1.70942
-1.59267
-1.71197
-1.35006
-1.16953
-1.03421
-1.09086
-0.94516
-1.24635
-0.939888
-1.87643
-1.72574
-2.22654
-1.85572
-2.21535
-1.70745
-2.13959
-1.52938
-1.98689
-1.25048
-1.65528
-0.830179
-0.900365
0.0584195
-0.764402
-0.764212
-0.743936
-0.681917
-0.661936
-0.586131
-0.748032
-0.767624
-0.88087
-0.952947
-1.08076
-1.1963
-1.34938
-1.41299
-1.59013
-1.58415
-1.80799
-1.71431
-1.8247
-1.49676
-1.17391
-1.00343
-1.10736
-0.844376
-1.1665
-0.83468
-1.8612
-1.74029
-2.35927
-1.90985
-2.34099
-1.75851
-2.23846
-1.57075
-2.06285
-1.26361
-1.62501
-0.642321
-0.597326
0.813204
-0.586219
-0.53928
-0.588592
-0.46276
-0.463856
-0.334888
-0.502488
-0.531445
-0.674945
-0.759228
-0.934155
-1.04948
-1.24062
-1.31844
-1.5364
-1.53341
-1.81545
-1.72651
-1.83181
-1.47225
-1.06347
-0.823819
-0.885851
-0.613831
-0.976883
-0.755145
-1.79747
-1.74056
-2.37725
-1.90892
-2.40422
-1.70579
-2.24703
-1.42455
-1.9992
-1.00925
-1.38267
-0.00868837
0.272981
2.57266
-0.762057
-0.843434
-0.766503
-0.715289
-0.667559
-0.469875
-0.560828
-0.587547
-0.70525
-0.791141
-0.955304
-1.08293
-1.28171
-1.38343
-1.62735
-1.65943
-1.94936
-1.89401
-1.96997
-1.5637
-1.07001
-0.715076
-0.775698
-0.415946
-0.908406
-0.586721
-1.74383
-1.71334
-2.50356
-2.00347
-2.53625
-1.80726
-2.3866
-1.50042
-2.16633
-1.07681
-1.55193
0.286806
0.921611
4.84463
-0.965501
-0.558289
-0.685268
-0.332086
-0.383153
-0.179024
-0.280343
-0.309607
-0.472458
-0.572701
-0.775908
-0.917731
-1.15837
-1.2965
-1.59199
-1.67583
-1.97916
-1.95346
-1.97895
-1.50239
-0.980994
-0.525416
-0.501113
-0.155764
-0.602127
-0.460653
-1.68052
-1.69601
-2.58512
-2.00612
-2.55035
-1.73988
-2.28134
-1.31115
-1.90098
-0.654903
-0.936407
1.52962
3.45169
10.4627
-0.59428
-1.0362
-0.939345
-0.898963
-0.566112
-0.3847
-0.335584
-0.35182
-0.469231
-0.573081
-0.759146
-0.902075
-1.14354
-1.30069
-1.62957
-1.75388
-2.0711
-2.09126
-2.1
-1.53756
-1.06716
-0.432551
-0.356116
0.0154559
-0.377086
-0.308787
-1.60926
-1.66103
-2.70441
-2.14384
-2.72073
-1.81825
-2.34195
-1.31018
-1.93745
-0.675647
-0.972071
2.39781
5.96206
17.0885
-3.22116
-0.415933
-0.674991
-0.207851
-0.147793
0.0170435
-0.0705745
-0.0978789
-0.281188
-0.405144
-0.612673
-0.756266
-1.0179
-1.21396
-1.59666
-1.78837
-2.12697
-2.15156
-2.03073
-1.33963
-0.857812
-0.0902697
0.037681
0.36792
-0.116111
-0.267575
-1.65137
-1.75917
-2.89267
-2.21329
-2.74279
-1.652
-2.13863
-1.07948
-1.47139
0.241131
1.10906
7.03335
16.1731
34.2528
-0.535378
-0.532856
-0.516076
-0.478941
-0.481162
-0.48988
-0.507966
-0.529807
-0.55505
-0.578893
-0.600749
-0.637286
-0.657373
-0.689984
-0.71525
-0.743458
-0.73361
-0.779193
-0.752135
-0.948393
-0.669143
-0.95801
-0.88624
-0.990862
-0.870228
-0.849425
-0.777736
-0.717867
-0.706394
-0.668676
-0.704594
-0.696667
-0.768626
-0.777505
-0.823146
-0.823645
-0.860261
-0.857964
-0.882526
-0.871834
-0.544121
-0.538621
-0.528594
-0.48322
-0.480259
-0.48533
-0.495975
-0.519156
-0.520248
-0.553972
-0.552682
-0.61248
-0.611253
-0.627185
-0.629216
-0.660325
-0.674454
-0.737996
-0.650854
-0.844343
-0.678366
-0.944495
-0.880349
-0.995067
-0.886995
-0.886037
-0.830702
-0.784543
-0.773445
-0.723613
-0.752136
-0.74416
-0.754973
-0.758952
-0.80958
-0.80966
-0.849364
-0.845959
-0.871346
-0.860924
-0.537324
-0.531555
-0.524725
-0.475996
-0.472811
-0.476691
-0.487625
-0.493131
-0.537452
-0.557661
-0.581042
-0.600338
-0.615901
-0.659038
-0.713525
-0.796159
-0.793154
-0.856435
-0.790628
-1.00248
-0.904384
-1.21024
-1.24111
-1.39658
-1.33444
-1.34786
-1.31145
-1.25974
-1.22867
-1.13645
-1.0776
-0.984958
-0.956448
-0.910391
-0.883021
-0.859776
-0.88161
-0.873584
-0.890352
-0.883534
-0.540314
-0.538015
-0.530903
-0.499157
-0.486426
-0.476042
-0.495475
-0.524175
-0.541524
-0.561827
-0.577887
-0.633147
-0.718117
-0.798011
-0.843914
-0.924238
-0.945693
-1.04261
-1.00967
-1.24817
-1.21385
-1.54933
-1.61212
-1.78022
-1.72717
-1.73816
-1.68998
-1.61381
-1.55334
-1.42979
-1.34453
-1.1875
-1.0946
-1.00078
-0.959738
-0.913106
-0.938677
-0.901412
-0.919924
-0.91361
-0.538257
-0.524347
-0.522803
-0.49999
-0.508163
-0.479274
-0.519806
-0.518574
-0.579665
-0.642751
-0.776761
-0.891683
-0.956777
-1.02428
-1.08894
-1.17833
-1.20905
-1.30695
-1.29901
-1.4963
-1.46721
-1.77904
-1.88794
-2.02712
-1.99871
-2.00162
-1.96392
-1.89312
-1.81185
-1.67624
-1.57078
-1.43332
-1.29413
-1.13904
-1.01172
-0.975342
-0.964433
-0.946566
-0.953746
-0.953543
-0.540397
-0.543145
-0.55419
-0.570172
-0.519304
-0.546105
-0.552917
-0.69313
-0.853718
-0.986495
-1.05648
-1.1224
-1.18625
-1.24428
-1.30077
-1.38587
-1.41286
-1.51725
-1.49768
-1.69976
-1.67728
-1.96983
-2.07952
-2.21632
-2.19027
-2.17365
-2.1239
-2.02506
-1.97462
-1.83594
-1.73292
-1.60259
-1.47088
-1.36133
-1.14887
-1.06768
-1.03865
-1.00396
-1.00662
-1.00647
-0.598196
-0.582677
-0.615415
-0.645302
-0.706552
-0.705939
-0.914924
-1.03071
-1.12586
-1.19264
-1.28509
-1.35918
-1.43054
-1.49312
-1.56288
-1.60607
-1.63681
-1.69299
-1.67082
-1.79005
-1.79277
-2.02885
-2.16188
-2.27865
-2.27167
-2.25406
-2.21805
-2.14364
-2.06414
-1.95258
-1.8481
-1.70103
-1.55539
-1.42193
-1.24682
-1.10011
-1.0595
-1.03284
-1.03681
-1.04081
-0.601984
-0.615471
-0.66248
-0.726662
-0.806553
-0.871812
-1.11086
-1.17959
-1.30573
-1.3968
-1.48207
-1.56328
-1.627
-1.69604
-1.74179
-1.77523
-1.78075
-1.80779
-1.7787
-1.8445
-1.86997
-1.95114
-2.22195
-2.30462
-2.33688
-2.31338
-2.3015
-2.22909
-2.18865
-2.06514
-1.96635
-1.84083
-1.68906
-1.54168
-1.3795
-1.19722
-1.13906
-1.10111
-1.09689
-1.10098
-0.660272
-0.670114
-0.704571
-0.81475
-0.909822
-1.07287
-1.23878
-1.34828
-1.46509
-1.55723
-1.65692
-1.72777
-1.80145
-1.86878
-1.91145
-1.93103
-1.92496
-1.91575
-1.87108
-1.88295
-1.89837
-1.90172
-2.14226
-2.29738
-2.3442
-2.36696
-2.36181
-2.31712
-2.25102
-2.16783
-2.06639
-1.94271
-1.80392
-1.59414
-1.45908
-1.23784
-1.168
-1.12606
-1.12851
-1.14041
-0.691854
-0.707621
-0.798533
-0.897329
-1.06009
-1.18119
-1.38113
-1.46216
-1.58733
-1.69765
-1.77935
-1.8684
-1.92543
-1.9941
-2.03536
-2.05276
-2.04516
-2.00492
-1.94394
-1.92302
-1.91284
-1.85468
-1.93676
-2.27706
-2.3433
-2.40297
-2.43105
-2.36529
-2.3531
-2.24483
-2.19131
-2.09923
-1.96933
-1.81808
-1.60717
-1.38552
-1.24864
-1.21526
-1.1967
-1.21317
-0.751819
-0.767088
-0.854839
-1.00651
-1.2178
-1.32289
-1.48773
-1.5878
-1.7084
-1.82079
-1.90559
-1.97714
-2.03685
-2.0846
-2.14329
-2.15146
-2.14957
-2.08304
-2.01074
-1.87985
-1.75725
-1.61592
-1.5643
-2.05816
-2.28987
-2.41678
-2.46554
-2.46129
-2.39508
-2.38462
-2.31512
-2.17749
-2.03217
-1.83915
-1.68707
-1.46423
-1.28253
-1.26066
-1.24266
-1.26334
-0.817147
-0.834499
-0.954904
-1.15186
-1.32571
-1.45265
-1.58481
-1.70883
-1.81347
-1.89758
-1.98651
-2.06141
-2.10004
-2.15612
-2.21136
-2.22174
-2.22159
-2.14938
-2.10446
-1.88106
-1.52529
-1.20379
-1.17172
-1.71987
-2.20372
-2.39942
-2.49831
-2.47287
-2.51563
-2.48279
-2.37545
-2.30989
-2.18025
-2.04561
-1.86452
-1.65646
-1.37097
-1.32241
-1.312
-1.3348
-0.885729
-0.913711
-1.06041
-1.24355
-1.42007
-1.55622
-1.69912
-1.77911
-1.92802
-1.9885
-2.07433
-2.10019
-2.18847
-2.1889
-2.26486
-2.26965
-2.28625
-2.22085
-2.20159
-1.89207
-1.32162
-0.851705
-0.942255
-1.48486
-1.99029
-2.38713
-2.48041
-2.58684
-2.60263
-2.5537
-2.547
-2.43011
-2.28472
-2.09382
-1.9031
-1.74675
-1.5295
-1.36278
-1.38114
-1.40079
-1.00634
-1.0335
-1.17269
-1.34743
-1.52175
-1.67438
-1.79995
-1.89409
-1.97521
-2.02782
-2.11337
-2.16053
-2.19801
-2.27441
-2.31269
-2.30947
-2.29362
-2.25617
-2.18722
-1.72687
-1.17649
-0.882726
-0.925946
-1.35174
-1.83433
-2.40499
-2.51593
-2.64056
-2.63111
-2.67863
-2.5934
-2.51076
-2.37012
-2.21353
-1.98309
-1.80455
-1.63175
-1.46936
-1.4186
-1.49145
-1.00578
-1.04177
-1.18271
-1.35184
-1.53235
-1.70164
-1.85368
-1.93869
-2.04446
-2.10244
-2.18398
-2.19433
-2.28018
-2.23359
-2.282
-2.26117
-2.27831
-2.22623
-1.949
-1.55844
-1.26346
-1.14648
-1.09828
-1.27101
-1.65792
-2.03582
-2.48133
-2.49217
-2.68789
-2.67899
-2.66873
-2.60847
-2.49383
-2.33914
-2.12968
-1.91895
-1.7344
-1.64137
-1.46591
-1.56358
-1.20135
-1.22406
-1.3559
-1.50653
-1.67845
-1.84903
-1.95269
-2.03977
-2.11972
-2.1436
-2.16299
-2.14453
-2.17872
-2.14623
-2.23523
-2.22206
-2.09971
-1.83712
-1.58006
-1.4011
-1.3434
-1.33796
-1.29859
-1.30894
-1.55998
-1.93897
-2.47293
-2.7107
-2.69443
-2.72268
-2.69478
-2.65482
-2.55487
-2.41741
-2.22131
-2.02998
-1.81049
-1.73128
-1.59571
-1.66
-0.958815
-1.03102
-1.16858
-1.34958
-1.53177
-1.68085
-1.81579
-1.90895
-2.00665
-2.07501
-2.12181
-2.12687
-2.12833
-1.96117
-1.80787
-1.66772
-1.50652
-1.31145
-1.27443
-1.25661
-1.29071
-1.32528
-1.33355
-1.31333
-1.49124
-1.72081
-2.01948
-2.48569
-2.67069
-2.72809
-2.76525
-2.75145
-2.6794
-2.56836
-2.37942
-2.18285
-1.95501
-1.78875
-1.6862
-1.65591
-1.30168
-1.26801
-1.34696
-1.46712
-1.62187
-1.74186
-1.8652
-1.93917
-2.00041
-1.89743
-1.69567
-1.47197
-1.31207
-1.13818
-1.1137
-1.08676
-1.09831
-1.09218
-1.12182
-1.15109
-1.19866
-1.25897
-1.29609
-1.32214
-1.4472
-1.75016
-1.95512
-2.1426
-2.41371
-2.57662
-2.67556
-2.70531
-2.66979
-2.6029
-2.48556
-2.31881
-2.09768
-1.95634
-1.95134
-1.91348
-0.348823
-0.439941
-0.528919
-0.690011
-0.820496
-0.986926
-1.10471
-1.10212
-0.990345
-0.948012
-0.942599
-0.969016
-0.972846
-0.95294
-0.950575
-0.94622
-0.961042
-0.959717
-1.00808
-1.04666
-1.10861
-1.1787
-1.23626
-1.2992
-1.36864
-1.64772
-1.85498
-2.0168
-2.10695
-2.28448
-2.504
-2.62879
-2.66132
-2.64364
-2.54861
-2.34635
-2.08202
-1.87939
-1.79129
-1.79392
-0.529208
-0.475287
-0.490243
-0.526214
-0.595796
-0.67557
-0.764334
-0.822092
-0.868272
-0.878529
-0.883404
-0.867221
-0.848694
-0.834824
-0.842285
-0.848932
-0.89046
-0.87046
-0.925685
-0.959555
-1.03493
-1.10235
-1.18692
-1.22095
-1.36616
-1.60057
-1.8318
-1.97166
-2.02694
-2.03534
-2.02337
-2.09919
-2.33478
-2.62055
-2.71446
-2.56931
-2.4094
-2.25826
-2.16101
-2.15854
-0.345126
-0.273698
-0.281525
-0.31637
-0.377144
-0.466616
-0.539362
-0.650648
-0.719772
-0.774765
-0.809913
-0.829816
-0.822951
-0.813903
-0.79977
-0.804424
-0.804879
-0.820086
-0.860525
-0.911976
-0.959654
-1.05612
-1.14808
-1.22751
-1.33996
-1.54144
-1.7595
-1.9175
-1.97677
-1.97008
-1.97295
-1.94185
-1.90147
-1.78651
-1.81018
-1.81192
-1.81047
-1.76672
-1.80163
-1.96072
-0.444898
-0.373307
-0.375086
-0.386174
-0.452564
-0.508424
-0.583696
-0.686906
-0.775504
-0.825077
-0.850511
-0.844074
-0.818559
-0.797397
-0.774635
-0.762284
-0.754293
-0.767028
-0.814542
-0.875317
-0.989942
-1.00109
-1.14381
-1.22966
-1.35677
-1.51991
-1.69821
-1.84651
-1.94873
-1.96101
-1.97779
-1.96126
-2.00135
-1.93775
-1.9016
-1.79398
-1.72262
-1.58972
-1.54484
-1.64181
-0.41096
-0.353234
-0.359337
-0.376273
-0.454698
-0.505662
-0.59625
-0.69233
-0.784907
-0.846914
-0.875259
-0.869537
-0.843955
-0.816005
-0.780663
-0.759775
-0.763657
-0.770761
-0.822511
-0.860502
-0.94927
-1.05744
-1.12791
-1.24057
-1.35248
-1.49419
-1.61978
-1.7388
-1.8383
-1.88279
-1.93595
-1.90541
-1.9026
-1.81129
-1.82219
-1.73601
-1.69937
-1.56307
-1.49043
-1.64433
-0.441301
-0.405861
-0.413222
-0.423451
-0.49746
-0.548107
-0.638394
-0.731652
-0.822954
-0.887678
-0.917817
-0.914726
-0.888165
-0.858468
-0.833101
-0.824248
-0.807478
-0.783581
-0.870011
-0.901934
-1.00231
-1.05511
-1.19717
-1.28846
-1.39231
-1.49618
-1.61324
-1.69792
-1.80891
-1.85674
-1.95388
-1.94774
-2.02292
-1.97182
-2.03342
-1.93941
-1.93142
-1.74958
-1.62674
-1.75459
-0.458935
-0.441613
-0.4474
-0.456945
-0.528085
-0.586114
-0.683466
-0.774052
-0.865931
-0.935009
-0.972332
-0.978287
-0.958433
-0.938832
-0.924885
-0.901302
-0.897272
-0.901222
-0.994188
-0.93766
-1.03181
-1.10111
-1.18503
-1.31265
-1.39898
-1.53592
-1.57352
-1.67347
-1.74574
-1.77721
-1.84834
-1.8153
-1.86748
-1.77741
-1.83149
-1.71893
-1.74169
-1.59922
-1.56856
-1.68644
-0.489152
-0.467636
-0.49137
-0.498625
-0.561589
-0.621583
-0.71298
-0.801446
-0.893989
-0.968482
-1.01866
-1.04186
-1.04387
-1.04146
-1.03608
-1.02962
-1.06402
-1.05526
-1.1233
-0.975858
-1.08424
-1.108
-1.25667
-1.33039
-1.4571
-1.51092
-1.6545
-1.70259
-1.79998
-1.81616
-1.95768
-1.94537
-2.07671
-1.99847
-2.1063
-1.96471
-1.99126
-1.81689
-1.73032
-1.67196
-0.54406
-0.515872
-0.530784
-0.548634
-0.611939
-0.677641
-0.767468
-0.864124
-0.961898
-1.0411
-1.09977
-1.13887
-1.1553
-1.16752
-1.17426
-1.16798
-1.20219
-1.147
-1.21858
-1.02959
-1.14656
-1.15502
-1.25562
-1.36234
-1.47002
-1.56383
-1.65482
-1.79384
-1.83358
-1.92812
-2.05451
-2.03695
-2.16749
-2.08666
-2.23525
-2.11978
-2.23237
-2.08815
-2.07233
-2.09333
-0.549116
-0.525851
-0.528512
-0.552517
-0.61482
-0.678664
-0.773178
-0.876601
-0.975721
-1.06384
-1.13865
-1.19665
-1.2356
-1.26163
-1.28447
-1.28043
-1.32362
-1.24164
-1.30306
-1.0741
-1.17795
-1.18409
-1.28486
-1.33914
-1.48954
-1.52829
-1.71884
-1.75929
-1.90091
-1.9028
-2.06004
-1.97653
-2.12487
-1.97972
-2.16272
-1.98049
-2.12938
-1.8987
-1.90481
-1.81656
-0.606396
-0.58702
-0.586225
-0.598192
-0.67725
-0.740158
-0.840238
-0.925417
-1.02867
-1.11737
-1.20096
-1.26825
-1.31646
-1.34469
-1.38089
-1.36366
-1.43204
-1.32373
-1.41997
-1.11783
-1.23937
-1.19396
-1.3043
-1.32079
-1.46047
-1.44262
-1.65701
-1.74627
-1.95732
-1.87747
-2.01008
-1.90206
-2.07731
-1.90224
-2.08448
-1.86245
-2.00682
-1.69327
-1.71769
-1.52485
-0.588855
-0.567498
-0.568963
-0.551265
-0.646829
-0.698509
-0.811494
-0.901731
-0.988582
-1.07279
-1.16595
-1.24497
-1.31161
-1.34421
-1.38935
-1.3747
-1.4533
-1.36624
-1.46518
-1.18822
-1.24813
-1.23493
-1.30602
-1.28039
-1.45308
-1.32466
-1.7706
-1.74118
-2.00039
-1.82276
-2.05714
-1.85685
-2.06198
-1.82832
-2.09577
-1.74712
-1.98475
-1.55336
-1.54842
-1.27527
-0.666994
-0.652417
-0.650925
-0.629111
-0.698632
-0.77851
-0.876965
-0.960094
-1.05192
-1.12376
-1.20447
-1.27878
-1.3548
-1.3915
-1.46121
-1.4304
-1.53175
-1.43283
-1.51427
-1.24129
-1.22987
-1.22541
-1.30168
-1.24357
-1.45393
-1.24057
-1.89312
-1.70571
-2.02656
-1.80154
-2.03811
-1.84383
-2.07731
-1.75432
-2.01555
-1.68575
-1.91635
-1.45067
-1.39564
-1.02505
-0.607421
-0.585457
-0.593725
-0.544785
-0.590228
-0.67847
-0.784546
-0.85538
-0.96344
-1.04179
-1.13652
-1.21017
-1.30176
-1.33861
-1.43149
-1.41048
-1.5369
-1.40141
-1.5593
-1.2655
-1.24697
-1.17431
-1.27001
-1.17309
-1.43093
-1.14324
-1.94867
-1.69235
-2.05428
-1.77701
-2.07824
-1.77525
-2.08238
-1.72026
-2.04293
-1.50942
-1.93891
-1.29473
-1.31796
-0.742709
-0.712717
-0.713222
-0.689356
-0.681968
-0.658267
-0.748653
-0.850554
-0.912108
-1.012
-1.08734
-1.18954
-1.26417
-1.37397
-1.41459
-1.54694
-1.514
-1.64686
-1.53708
-1.62487
-1.34162
-1.23133
-1.16127
-1.25039
-1.12374
-1.40803
-1.06374
-1.96112
-1.68648
-2.13571
-1.76499
-2.14097
-1.72453
-2.13912
-1.65719
-2.09186
-1.52664
-1.85743
-1.25034
-1.25205
-0.429334
-0.600392
-0.578042
-0.600629
-0.518667
-0.547114
-0.527241
-0.704385
-0.731408
-0.856874
-0.936006
-1.06628
-1.15302
-1.30801
-1.3456
-1.49608
-1.47855
-1.66277
-1.5291
-1.65638
-1.3499
-1.15448
-1.0617
-1.15217
-1.00005
-1.31459
-0.963518
-1.90794
-1.70778
-2.22457
-1.79888
-2.16797
-1.69158
-2.12033
-1.54864
-2.05374
-1.33975
-1.9135
-0.870401
-1.10504
0.153279
-0.745442
-0.759145
-0.737398
-0.718072
-0.665562
-0.618598
-0.779794
-0.791395
-0.904653
-0.974029
-1.1069
-1.21113
-1.3308
-1.39635
-1.56629
-1.51357
-1.75964
-1.64422
-1.74259
-1.4604
-1.16255
-1.0141
-1.09826
-0.899021
-1.22429
-0.868347
-1.86837
-1.70413
-2.30723
-1.82678
-2.28403
-1.71406
-2.22678
-1.55435
-2.10536
-1.35144
-1.91094
-0.945129
-0.816446
0.807037
-0.597392
-0.545188
-0.605005
-0.457971
-0.554203
-0.339562
-0.573818
-0.553619
-0.707248
-0.774001
-0.950687
-1.03203
-1.23291
-1.30165
-1.52978
-1.51056
-1.77458
-1.64907
-1.73658
-1.39138
-1.04111
-0.837218
-0.906131
-0.684844
-1.04716
-0.732527
-1.79289
-1.69893
-2.37182
-1.86369
-2.38058
-1.66894
-2.23988
-1.40661
-2.04014
-1.03916
-1.6796
-0.279409
-0.44889
2.49216
-0.754562
-0.850708
-0.76326
-0.75069
-0.677961
-0.559327
-0.636641
-0.635967
-0.744649
-0.815753
-0.953547
-1.07733
-1.25276
-1.34673
-1.56982
-1.59335
-1.86347
-1.81927
-1.85657
-1.49333
-1.0853
-0.751057
-0.802941
-0.531528
-0.907214
-0.620975
-1.74275
-1.67887
-2.46827
-1.93726
-2.51706
-1.76673
-2.36838
-1.48065
-2.20057
-1.10814
-1.77563
-0.00150052
0.00857169
4.31799
-0.967256
-0.555647
-0.709434
-0.372885
-0.462214
-0.253957
-0.36882
-0.357959
-0.513481
-0.586161
-0.781422
-0.89764
-1.1221
-1.24705
-1.52179
-1.62314
-1.87424
-1.8578
-1.89286
-1.407
-0.941009
-0.516301
-0.544077
-0.234516
-0.660177
-0.494655
-1.68942
-1.67196
-2.52914
-1.97649
-2.59243
-1.72997
-2.31437
-1.33817
-2.00518
-0.670622
-1.13949
1.22939
2.42666
9.6019
-0.652875
-1.08003
-0.975926
-0.951682
-0.673261
-0.429848
-0.444901
-0.408787
-0.507304
-0.577491
-0.734651
-0.872914
-1.09613
-1.22022
-1.51925
-1.612
-1.9649
-1.99783
-2.02911
-1.50392
-1.05838
-0.427694
-0.363402
-0.0319411
-0.479081
-0.374265
-1.65041
-1.62774
-2.63822
-2.08001
-2.66631
-1.75638
-2.35125
-1.34317
-2.03307
-0.777902
-1.17444
2.14146
4.80766
15.8213
-3.25567
-0.495787
-0.808589
-0.366209
-0.329596
-0.13419
-0.203093
-0.192366
-0.344548
-0.437506
-0.617075
-0.733441
-0.968204
-1.14337
-1.47277
-1.64621
-2.01633
-2.11476
-2.02968
-1.35828
-0.913145
-0.113813
-0.0342022
0.233652
-0.33756
-0.415737
-1.71395
-1.72651
-2.80444
-2.09829
-2.61045
-1.64922
-2.18537
-1.14661
-1.6257
0.0889953
0.737414
6.61492
14.5241
32.2097
-0.531199
-0.534589
-0.515074
-0.476498
-0.486685
-0.492398
-0.507262
-0.529816
-0.545669
-0.576649
-0.583206
-0.628432
-0.643699
-0.68395
-0.699474
-0.736351
-0.71451
-0.783527
-0.668102
-0.916497
-0.580072
-0.943681
-0.776444
-0.9145
-0.78165
-0.759423
-0.676619
-0.596058
-0.612013
-0.545796
-0.619766
-0.62693
-0.715827
-0.741258
-0.800516
-0.810764
-0.855192
-0.852862
-0.87604
-0.870209
-0.53927
-0.532571
-0.528274
-0.474619
-0.482699
-0.48681
-0.500054
-0.518877
-0.530796
-0.558198
-0.563776
-0.591466
-0.600463
-0.613775
-0.618649
-0.625596
-0.675257
-0.729556
-0.62546
-0.814039
-0.524137
-0.847806
-0.731382
-0.842242
-0.712034
-0.688539
-0.619549
-0.559933
-0.555974
-0.538523
-0.590192
-0.593349
-0.680583
-0.706066
-0.769809
-0.781602
-0.829104
-0.835499
-0.865551
-0.864611
-0.532128
-0.528997
-0.5277
-0.485278
-0.483397
-0.486614
-0.494147
-0.505235
-0.518309
-0.539818
-0.562775
-0.594003
-0.603836
-0.673137
-0.713849
-0.765218
-0.759664
-0.824608
-0.734035
-0.94925
-0.725988
-1.07755
-1.04462
-1.19542
-1.12063
-1.12571
-1.0849
-1.02494
-1.00185
-0.921101
-0.923405
-0.868335
-0.885881
-0.840165
-0.84961
-0.841815
-0.863526
-0.862545
-0.88244
-0.88215
-0.526748
-0.516702
-0.516962
-0.488885
-0.476986
-0.478092
-0.496594
-0.512844
-0.541838
-0.56077
-0.578767
-0.643415
-0.719705
-0.784815
-0.820439
-0.865258
-0.899053
-0.987619
-0.939776
-1.17606
-0.996408
-1.35771
-1.38333
-1.5566
-1.51222
-1.52814
-1.48752
-1.42434
-1.37113
-1.27411
-1.2093
-1.09636
-1.03656
-0.975606
-0.930243
-0.894854
-0.918621
-0.890556
-0.910253
-0.909612
-0.529864
-0.513295
-0.531831
-0.508294
-0.494798
-0.48228
-0.51263
-0.510561
-0.566581
-0.628936
-0.75973
-0.877238
-0.920714
-1.01115
-1.06034
-1.13377
-1.1717
-1.2504
-1.20532
-1.44205
-1.30319
-1.64346
-1.71435
-1.88022
-1.8722
-1.88055
-1.84705
-1.7683
-1.71707
-1.60282
-1.52466
-1.3932
-1.27152
-1.13271
-1.00559
-0.967441
-0.951233
-0.93843
-0.949349
-0.949152
-0.532721
-0.523834
-0.529402
-0.55853
-0.543616
-0.540448
-0.556171
-0.695684
-0.842607
-0.976681
-1.04491
-1.10912
-1.16627
-1.22204
-1.26737
-1.34629
-1.33966
-1.47186
-1.43949
-1.65679
-1.54292
-1.86652
-1.94509
-2.09235
-2.07564
-2.07978
-2.03252
-1.96714
-1.89336
-1.80234
-1.69542
-1.58271
-1.44914
-1.36933
-1.15039
-1.04521
-1.01861
-0.984556
-0.996308
-0.996052
-0.57577
-0.58583
-0.585918
-0.644065
-0.721755
-0.751344
-0.961526
-1.00798
-1.11907
-1.17953
-1.26878
-1.34268
-1.40591
-1.47579
-1.51749
-1.57169
-1.59355
-1.6519
-1.62085
-1.80293
-1.74796
-1.95466
-2.09966
-2.1987
-2.20995
-2.19946
-2.16616
-2.10693
-2.05252
-1.96551
-1.85719
-1.72183
-1.57133
-1.43695
-1.24717
-1.08528
-1.04922
-1.01691
-1.03929
-1.03668
-0.588747
-0.58377
-0.622203
-0.703559
-0.789143
-0.893642
-1.10035
-1.15549
-1.29408
-1.38328
-1.47312
-1.54358
-1.60908
-1.65289
-1.70429
-1.7436
-1.75461
-1.8042
-1.7403
-1.90422
-1.90398
-1.93824
-2.19378
-2.25796
-2.28704
-2.26922
-2.24268
-2.20167
-2.1583
-2.08349
-1.98738
-1.85436
-1.71239
-1.54932
-1.39885
-1.16602
-1.11413
-1.07264
-1.08341
-1.08873
-0.648781
-0.621219
-0.673588
-0.779173
-0.897427
-1.08996
-1.23644
-1.33095
-1.44564
-1.54451
-1.64157
-1.7142
-1.78195
-1.82757
-1.87295
-1.90247
-1.90746
-1.92968
-1.86981
-1.93737
-1.97675
-1.93199
-2.16965
-2.2788
-2.30856
-2.32268
-2.29705
-2.283
-2.26108
-2.20035
-2.10045
-1.96522
-1.8197
-1.62762
-1.48582
-1.25307
-1.15157
-1.11821
-1.1227
-1.13659
-0.659722
-0.651718
-0.735337
-0.852847
-1.04056
-1.20971
-1.36636
-1.45883
-1.58146
-1.66421
-1.79293
-1.84649
-1.9095
-1.94561
-1.98102
-1.99915
-2.00329
-1.98179
-1.89419
-1.98968
-2.00922
-1.95796
-1.97412
-2.27166
-2.28493
-2.33834
-2.33087
-2.34256
-2.3381
-2.27685
-2.21082
-2.07664
-1.93211
-1.75662
-1.60208
-1.38555
-1.23225
-1.18929
-1.18071
-1.20124
-0.724032
-0.712596
-0.801172
-0.960968
-1.1778
-1.33485
-1.48543
-1.5963
-1.71109
-1.80381
-1.88577
-1.94184
-2.03319
-2.03961
-2.06817
-2.06849
-2.08397
-1.99344
-1.94602
-1.9098
-1.842
-1.76336
-1.60751
-2.12305
-2.22928
-2.34662
-2.3601
-2.40367
-2.4005
-2.37329
-2.28969
-2.18496
-2.02753
-1.83913
-1.66206
-1.48781
-1.29548
-1.24372
-1.23265
-1.26034
-0.779114
-0.770478
-0.88978
-1.08294
-1.28006
-1.44307
-1.58996
-1.7047
-1.81628
-1.89612
-1.97814
-2.03359
-2.066
-2.11869
-2.11781
-2.1231
-2.13696
-1.97825
-2.06736
-1.90981
-1.68677
-1.37936
-1.25653
-1.79709
-2.14677
-2.30111
-2.4001
-2.43269
-2.4585
-2.43268
-2.38388
-2.26047
-2.13657
-1.96572
-1.77228
-1.594
-1.3867
-1.32408
-1.29868
-1.32834
-0.831462
-0.841904
-0.974557
-1.15796
-1.35736
-1.52616
-1.67797
-1.79126
-1.90621
-1.98222
-2.05448
-2.09111
-2.13455
-2.12813
-2.15653
-2.16244
-2.19481
-2.04591
-2.15717
-1.96778
-1.51943
-0.978901
-1.08064
-1.6005
-2.01156
-2.3238
-2.42218
-2.50116
-2.5113
-2.50496
-2.44628
-2.38841
-2.24458
-2.09316
-1.88515
-1.70787
-1.48274
-1.39881
-1.3674
-1.39786
-0.947919
-0.952939
-1.08027
-1.25564
-1.44689
-1.63461
-1.76454
-1.87162
-1.95848
-2.01708
-2.06917
-2.10498
-2.13102
-2.15845
-2.16838
-2.20962
-2.19165
-2.07898
-2.21365
-1.84753
-1.28584
-1.05628
-1.10363
-1.47069
-1.86909
-2.34876
-2.4646
-2.53719
-2.56317
-2.55537
-2.54222
-2.45912
-2.34107
-2.1742
-1.99344
-1.79551
-1.59743
-1.47091
-1.43792
-1.47735
-0.928286
-0.949746
-1.08528
-1.25458
-1.4492
-1.61453
-1.7671
-1.87017
-1.98165
-2.04681
-2.10785
-2.1316
-2.17211
-2.146
-2.13121
-2.14976
-2.14309
-2.1653
-1.99841
-1.61013
-1.39701
-1.32976
-1.30322
-1.3987
-1.7042
-2.10559
-2.44088
-2.48346
-2.59816
-2.62195
-2.6148
-2.57211
-2.46037
-2.32491
-2.12017
-1.94006
-1.73882
-1.58428
-1.5103
-1.54477
-1.17933
-1.16585
-1.2789
-1.42659
-1.60214
-1.75033
-1.87579
-1.96339
-2.02888
-2.03746
-2.03477
-2.02961
-2.07042
-2.08541
-2.13283
-2.13602
-2.08589
-1.84868
-1.66294
-1.50232
-1.48451
-1.43941
-1.41734
-1.43616
-1.58041
-1.91526
-2.39658
-2.48982
-2.6025
-2.62812
-2.62225
-2.58722
-2.50261
-2.3789
-2.20845
-2.01139
-1.82268
-1.7243
-1.62031
-1.66315
-0.821777
-0.884196
-1.02727
-1.19123
-1.38101
-1.52906
-1.69377
-1.78173
-1.89251
-1.98635
-2.05577
-2.11015
-2.13869
-2.02811
-1.86267
-1.58752
-1.51823
-1.28834
-1.28437
-1.29946
-1.36082
-1.36131
-1.38786
-1.40998
-1.4744
-1.73334
-1.98643
-2.42813
-2.53712
-2.62547
-2.69967
-2.69058
-2.61846
-2.51254
-2.34057
-2.1554
-1.94004
-1.7752
-1.6593
-1.66771
-1.30269
-1.27086
-1.33737
-1.4378
-1.57652
-1.69653
-1.82664
-1.92133
-2.0052
-1.89504
-1.65382
-1.41301
-1.25677
-1.08613
-1.05863
-1.05883
-1.13787
-1.13126
-1.17502
-1.21856
-1.2642
-1.29679
-1.3367
-1.38855
-1.43984
-1.73102
-2.00479
-2.20253
-2.42635
-2.39138
-2.52656
-2.56977
-2.56898
-2.54314
-2.4405
-2.26402
-2.08824
-1.98712
-1.89054
-1.92384
-0.195658
-0.234861
-0.362855
-0.4891
-0.692739
-0.829696
-1.00563
-0.979399
-0.873845
-0.841717
-0.900845
-0.962688
-1.01375
-1.01268
-1.01227
-0.998976
-1.01916
-1.01419
-1.06878
-1.10568
-1.19862
-1.2212
-1.27921
-1.34156
-1.38438
-1.61911
-1.84738
-2.10277
-2.15894
-2.49247
-2.649
-2.61914
-2.56078
-2.44594
-2.26466
-2.14663
-1.99937
-1.79768
-1.76934
-1.72886
-0.661593
-0.521403
-0.51464
-0.51338
-0.591989
-0.648254
-0.731614
-0.817976
-0.907984
-0.942159
-0.957888
-0.946492
-0.930138
-0.909798
-0.914024
-0.912005
-0.931469
-0.944016
-0.978466
-1.02398
-1.1136
-1.17447
-1.24319
-1.28805
-1.37158
-1.56757
-1.85358
-2.05156
-2.09052
-2.05563
-1.98498
-2.16458
-2.50859
-2.81651
-2.82873
-2.72113
-2.56361
-2.42538
-2.19787
-2.16314
-0.279481
-0.264545
-0.288834
-0.332347
-0.443038
-0.527866
-0.634671
-0.704406
-0.786501
-0.842292
-0.882349
-0.898505
-0.891813
-0.877133
-0.866613
-0.867806
-0.87625
-0.874517
-0.915656
-0.965902
-1.03058
-1.14059
-1.15234
-1.27687
-1.36812
-1.55831
-1.77735
-1.95352
-2.04011
-2.0443
-2.05059
-1.98587
-1.87868
-1.70706
-1.77639
-1.8199
-1.84531
-1.83269
-1.86401
-1.72622
-0.449087
-0.396545
-0.40452
-0.414115
-0.489875
-0.557642
-0.638468
-0.722795
-0.811213
-0.864087
-0.897568
-0.899656
-0.882906
-0.869654
-0.851817
-0.843853
-0.844725
-0.856815
-0.904399
-0.931043
-1.04223
-1.08108
-1.2336
-1.26662
-1.38572
-1.54308
-1.71462
-1.86864
-1.97232
-2.01312
-2.02463
-2.01983
-2.08302
-2.02629
-1.983
-1.84763
-1.75016
-1.62814
-1.618
-1.75885
-0.390269
-0.374006
-0.379271
-0.398187
-0.467987
-0.538617
-0.620201
-0.71408
-0.810532
-0.878827
-0.915263
-0.918687
-0.908565
-0.895738
-0.879455
-0.866962
-0.852753
-0.827547
-0.877671
-0.906776
-0.999609
-1.11418
-1.17983
-1.32847
-1.37077
-1.5277
-1.64826
-1.76452
-1.86407
-1.91198
-1.97024
-1.95181
-1.96102
-1.87412
-1.88914
-1.80526
-1.76336
-1.6257
-1.59386
-1.70238
-0.441877
-0.410017
-0.434131
-0.439587
-0.512868
-0.571179
-0.653236
-0.739776
-0.830845
-0.90267
-0.943819
-0.95637
-0.951995
-0.94872
-0.932585
-0.896968
-0.880688
-0.845041
-0.945332
-0.957689
-1.06501
-1.08499
-1.24596
-1.30686
-1.4404
-1.53924
-1.64713
-1.73191
-1.83817
-1.8876
-1.98142
-1.98347
-2.06526
-2.01839
-2.07027
-1.96803
-1.9515
-1.78658
-1.71687
-1.79952
-0.466439
-0.439555
-0.471844
-0.473706
-0.546899
-0.600098
-0.690428
-0.77918
-0.876121
-0.950733
-0.992001
-1.00942
-1.00782
-1.01304
-0.991287
-0.962808
-0.961918
-0.938994
-1.05007
-0.964697
-1.09344
-1.14485
-1.23997
-1.33688
-1.42718
-1.55496
-1.63475
-1.70265
-1.7814
-1.82011
-1.89046
-1.86227
-1.91185
-1.82928
-1.87568
-1.76869
-1.7866
-1.66219
-1.6611
-1.78609
-0.495274
-0.456544
-0.500252
-0.500546
-0.572342
-0.630358
-0.708044
-0.784626
-0.873507
-0.950164
-1.01058
-1.04312
-1.07029
-1.08232
-1.07432
-1.05962
-1.07755
-1.04814
-1.14286
-0.969031
-1.13375
-1.14072
-1.28243
-1.35063
-1.47501
-1.54985
-1.68089
-1.75346
-1.83797
-1.85851
-1.99388
-1.99877
-2.12505
-2.05369
-2.14276
-1.99564
-2.00344
-1.80764
-1.73968
-1.697
-0.537245
-0.504209
-0.537714
-0.547336
-0.611592
-0.678536
-0.75902
-0.856271
-0.953498
-1.0266
-1.07697
-1.11798
-1.13181
-1.1543
-1.17284
-1.15799
-1.19497
-1.15557
-1.2512
-1.04557
-1.19681
-1.20381
-1.30529
-1.38171
-1.49362
-1.57466
-1.70085
-1.80918
-1.88902
-1.97818
-2.09305
-2.07266
-2.18902
-2.12172
-2.2651
-2.17288
-2.28642
-2.1483
-2.18491
-2.17393
-0.543479
-0.518706
-0.519847
-0.556501
-0.611524
-0.684696
-0.764534
-0.863337
-0.952833
-1.03347
-1.09831
-1.15265
-1.19488
-1.22595
-1.25438
-1.26352
-1.30708
-1.23796
-1.29529
-1.07496
-1.22679
-1.22352
-1.31965
-1.37355
-1.52297
-1.54955
-1.75561
-1.78857
-1.94017
-1.94585
-2.05212
-1.96713
-2.08864
-1.95002
-2.11195
-1.93649
-2.07423
-1.8604
-1.91699
-1.8256
-0.598753
-0.580716
-0.576814
-0.599264
-0.674347
-0.743081
-0.841596
-0.929097
-1.01688
-1.09036
-1.15244
-1.21056
-1.26057
-1.29643
-1.35511
-1.33192
-1.4312
-1.26895
-1.4286
-1.13973
-1.27334
-1.26185
-1.33746
-1.3743
-1.51554
-1.44537
-1.71523
-1.70384
-1.97283
-1.87855
-2.0073
-1.89629
-2.0366
-1.86783
-2.02517
-1.81089
-1.92897
-1.64885
-1.64518
-1.53641
-0.580972
-0.565706
-0.555216
-0.550787
-0.644307
-0.681596
-0.8063
-0.892925
-0.990641
-1.06639
-1.14164
-1.20032
-1.26328
-1.30815
-1.36889
-1.38156
-1.45295
-1.37994
-1.46289
-1.18172
-1.27277
-1.26942
-1.33002
-1.33139
-1.5165
-1.34389
-1.79872
-1.71975
-1.99097
-1.84567
-2.04127
-1.84968
-2.0412
-1.78876
-2.02248
-1.68262
-1.85825
-1.47225
-1.46862
-1.31728
-0.658828
-0.647155
-0.641761
-0.61767
-0.697948
-0.771051
-0.870146
-0.950434
-1.04361
-1.1199
-1.19693
-1.26137
-1.33305
-1.36047
-1.46724
-1.39556
-1.53997
-1.40766
-1.53581
-1.20897
-1.2503
-1.2748
-1.3333
-1.29925
-1.53191
-1.22209
-1.97042
-1.6116
-2.03237
-1.79847
-2.05049
-1.84275
-2.02099
-1.73112
-1.93651
-1.58688
-1.74841
-1.30029
-1.23435
-0.965851
-0.601308
-0.578038
-0.59363
-0.529916
-0.583803
-0.674003
-0.776591
-0.851054
-0.954516
-1.03353
-1.13374
-1.20349
-1.29475
-1.34343
-1.41091
-1.38938
-1.53144
-1.40573
-1.55855
-1.26417
-1.24335
-1.23412
-1.29743
-1.22885
-1.5197
-1.10314
-2.03724
-1.57454
-2.05485
-1.76131
-2.09492
-1.76541
-2.07844
-1.63884
-1.95853
-1.40942
-1.68959
-1.07149
-1.00345
-0.550529
-0.705272
-0.704768
-0.685782
-0.677143
-0.645902
-0.747069
-0.84361
-0.903004
-0.997249
-1.07345
-1.17112
-1.25153
-1.35686
-1.37194
-1.50578
-1.45659
-1.62098
-1.48922
-1.62731
-1.33784
-1.23304
-1.22802
-1.28041
-1.18344
-1.50565
-1.00615
-2.07663
-1.57791
-2.16591
-1.73026
-2.14661
-1.75318
-2.07495
-1.65879
-1.95715
-1.37744
-1.58051
-0.894862
-0.707231
-0.0564212
-0.594344
-0.571631
-0.584623
-0.532583
-0.532127
-0.534735
-0.698027
-0.724635
-0.849935
-0.922693
-1.06061
-1.12923
-1.26328
-1.31797
-1.46366
-1.43089
-1.61816
-1.48231
-1.62133
-1.32761
-1.14143
-1.13785
-1.18311
-1.06357
-1.41848
-0.89674
-2.01615
-1.62658
-2.1355
-1.73881
-2.16948
-1.68188
-2.11365
-1.50541
-1.97701
-1.1718
-1.48979
-0.440584
-0.330914
0.742761
-0.738861
-0.751336
-0.725335
-0.693583
-0.689274
-0.602749
-0.777467
-0.77248
-0.886819
-0.946167
-1.05576
-1.16179
-1.30125
-1.35882
-1.5277
-1.4927
-1.70151
-1.57531
-1.6951
-1.41345
-1.10712
-1.1106
-1.13596
-0.965665
-1.32353
-0.80238
-1.97508
-1.65318
-2.27516
-1.75515
-2.24378
-1.70976
-2.20069
-1.51323
-2.01461
-1.21563
-1.49192
-0.238626
0.0683011
1.64868
-0.606368
-0.528728
-0.582866
-0.453032
-0.511472
-0.364688
-0.560064
-0.533233
-0.668485
-0.740672
-0.910167
-1.01019
-1.19618
-1.26262
-1.47142
-1.45651
-1.68008
-1.57344
-1.67067
-1.35877
-0.969726
-0.941694
-0.952426
-0.745794
-1.14718
-0.693371
-1.88434
-1.67726
-2.31685
-1.79577
-2.31344
-1.59758
-2.22244
-1.38409
-1.88943
-0.924095
-1.27739
0.433046
0.895516
3.46878
-0.762426
-0.834105
-0.740815
-0.719767
-0.635481
-0.537795
-0.610344
-0.577542
-0.688841
-0.757797
-0.903276
-1.01812
-1.19687
-1.28691
-1.5081
-1.52483
-1.75579
-1.66932
-1.74333
-1.39216
-0.964332
-0.820456
-0.83299
-0.558451
-0.97294
-0.591864
-1.81694
-1.67632
-2.41335
-1.88466
-2.46214
-1.69407
-2.32975
-1.34806
-2.14554
-0.903735
-1.47678
0.76482
1.47861
5.26076
-1.03795
-0.580641
-0.705512
-0.339154
-0.43061
-0.196314
-0.337979
-0.314672
-0.453645
-0.526074
-0.708709
-0.827386
-1.04323
-1.15533
-1.41417
-1.46693
-1.72292
-1.67988
-1.70856
-1.30151
-0.817195
-0.537051
-0.557413
-0.285144
-0.706516
-0.497607
-1.75295
-1.67668
-2.45935
-1.90827
-2.48582
-1.6768
-2.21621
-1.21596
-1.83464
-0.345179
-0.809607
1.92744
3.55771
9.94184
-0.87352
-1.11602
-0.942278
-0.890048
-0.480721
-0.393427
-0.346792
-0.324205
-0.431194
-0.503371
-0.655381
-0.774959
-0.984761
-1.10486
-1.37491
-1.45022
-1.75483
-1.75943
-1.7935
-1.25549
-0.816908
-0.375239
-0.356578
-0.069626
-0.526688
-0.420155
-1.70618
-1.63823
-2.5778
-2.00536
-2.59639
-1.73608
-2.33263
-1.32896
-2.01241
-0.674127
-1.05769
2.54299
4.6046
13.5282
-3.38869
-0.591843
-0.925773
-0.440571
-0.363324
-0.114621
-0.18879
-0.170739
-0.308166
-0.393254
-0.575894
-0.69552
-0.918168
-1.04829
-1.33218
-1.44673
-1.81783
-1.8762
-1.77557
-1.13714
-0.761292
-0.0959724
-0.0539751
0.163752
-0.421591
-0.489228
-1.79259
-1.7399
-2.72731
-2.0305
-2.5547
-1.62973
-2.17671
-1.17259
-1.64189
0.0222565
0.584431
6.39571
11.6075
25.7486
)
;
boundaryField
{
movingWall
{
type zeroGradient;
}
fixedWalls
{
type zeroGradient;
}
frontAndBack
{
type zeroGradient;
}
}
// ************************************************************************* //
| |
cd551e3a029e71ea27efa21f5579e6e4784dcccc | aca4cad71a5bd1304b29d30dd5404a4fe4359e35 | /code/hgGR.cpp | ca7659c2cbfa95db59ee4142d4dfaae8c7f7b177 | [] | no_license | daeyeon22/hgRouter2.0 | 4d91389f137eeddf30531d464bf5defb06a98faa | a18388b60472a18b87dd285e491eb3e1c1601f2f | refs/heads/master | 2023-02-08T12:07:43.934844 | 2019-05-31T07:18:07 | 2019-05-31T07:18:07 | 189,545,775 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 31,116 | cpp | hgGR.cpp | #include "hgRouter.h"
#include "hgTypeDef.h"
#include "hgHeap.h"
#include "hgGeometry.h"
#include <boost/format.hpp>
#include <tuple>
#include <queue>
#include <deque>
#include <boost/foreach.hpp>
#include <boost/config.hpp>
#include <boost/assign/std/vector.hpp>
#include <boost/graph/prim_minimum_spanning_tree.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/dijkstra_shortest_paths.hpp>
#include <boost/property_map/property_map.hpp>
#include <boost/graph/kruskal_min_spanning_tree.hpp>
#include <boost/icl/interval_map.hpp>
#include <boost/icl/interval_set.hpp>
#include <boost/icl/interval_base_map.hpp>
using namespace HGR;
ostream& operator << (ostream& _os, Segment* _seg)
{
Gcell* c1 = grid->gcell(_seg->g1);
Gcell* c2 = grid->gcell(_seg->g2);
int lx = min(c1->x, c2->x);
int ly = min(c1->y, c2->y);
int ux = max(c1->x, c2->x);
int uy = max(c1->y, c2->y);
return _os << boost::format("Segment[%d] %s (%d %d) (%d %d)") % _seg->id % get_metal(_seg->layer)->name % lx % ly % ux % uy;
}
bool exist(set<int>& _set, int _elem)
{
return _set.find(_elem) == _set.end() ? false : true;
}
bool HGR::fine_grained_routing()
{
/*
int prevCongestion = INT_MAX;
for(int trial=0; trial < 5; trial++)
{
dense_hash_map<int, Topology> backup;
backup.set_empty_key(INT_MAX);
for(int i=0; i < num_nets(); i++)
{
if(trial!=0)
{
if(check_congest
}
}
}
*/
for(int i=0; i < num_nets(); i++)
{
Net* net = get_net(i);
if(net->is_routed() || net->is_single_pin())
continue;
if(!route(i))
{
continue;
}
topology_generation(i);
}
}
bool HGR::route(int _net, int _trial)
{
Net* net = get_net(_net);
if(net->is_single_pin())
return false;
int bufferDistance = (1 + 3*_trial) * min(grid->GCwidth, grid->GCheight);
vector<int> terminals = net->terminals;
set<int> rGuide, rSpace;
//
net->get_routing_space(bufferDistance, rGuide, rSpace);
typedef pair<int,int> TwoPin;
vector<pair<TwoPin, double>> twopins;
for(size_t i=0; i < terminals.size(); i++)
{
for(size_t j=i+1; j < terminals.size(); j++)
{
double p2pDist = pin_to_pin_distance(terminals[i], terminals[j]);
TwoPin pinPair = { terminals[i], terminals[j] };
twopins.push_back( { pinPair, p2pDist } );
}
}
sort(twopins.begin(), twopins.end(), [](const pair<TwoPin, double>& left, const pair<TwoPin, double>& right){
return left.second < right.second;
});
// Route Twopin Net
while(true)
{
if(twopins.size() == 0)
return false;
int p1 = twopins.begin()->first.first;
int p2 = twopins.begin()->first.second;
twopins.erase(twopins.begin());
if(route_twopin_net(_net, p1, p2, rGuide, rSpace))
{
remove(terminals, p1);
remove(terminals, p2);
break;
}
else
{
cout << boost::format("Route Twopin net Failed... [%s] %s -> %s\n") %
net->name % get_pin(p1)->name % get_pin(p2)->name;
}
}
// Route Pin to Topology
while(true)
{
if(terminals.size() == 0)
break;
int p = terminals[0];
remove(terminals, p);
if(!route_pin_to_tp(_net, p, rGuide, rSpace))
{
cout << boost::format("Route Pin to Topology Failed... [%s] %s\n") %
net->name % get_pin(p)->name;
return false;
}
}
return true;
}
/*
void HGR::get_routing_space(int _net, int _bufferDistance, set<int> &_rGuide, set<int> &_rSpace)
{
Net* net = get_net(_net);
for(size_t i=0; i < net->guides.size(); i++)
{
int layer = net->guides[i].first;
Rect<int> guideRect = net->guides[i].second;
Rect<int> bufferRect = buffer(guideRect, _bufferDistance);
grid->intersects(layer-1, bufferRect, _rSpace);
grid->intersects(layer, bufferRect, _rSpace);
grid->intersects(layer+1, bufferRect, _rSpace);
grid->intersects(layer, guideRect, _rGuide);
}
}
*/
void HGR::HeapNode::init(int _id, bool _isSource)
{
if(id == INT_MAX)
{
id = _id;
depth = -1;
backtrace = -1;
est = DBL_MAX;
act = DBL_MAX;
if(_isSource)
{
depth = 0;
backtrace = id; //-1;
act = 0; //DBL_MAX;
est = 0;
}
}
}
// Actual Cost
double HGR::HeapNode::get_act_cost(int _prevNode, double _prevActCost, set<int> &_rGuide)
{
int g1 = _prevNode;
int g2 = id;
double _act =
_prevActCost;
+ grid->wirelength(g1, g2)
+ grid->segment(g1, g2)
+ grid->offguide(g2, _rGuide)
+ grid->npref(g1, g2)
+ grid->overflow(g2);
return _act;
}
// Estimation Cost (Single Target)
double HGR::HeapNode::get_est_cost(int _targetNode)
{
return 1.0 * grid->distance(id, _targetNode);
}
// Estimation Cost (Multi Target)
double HGR::HeapNode::get_est_cost(vector<int> &_targetNodes)
{
double _est = DBL_MAX;
for(auto target : _targetNodes)
{
_est = min(_est, grid->distance(id, target));
}
return _est;
}
void HGR::HeapNode::update(int _depth, int _backtrace, double _act, double _est)
{
depth = _depth;
backtrace = _backtrace;
act = _act;
est = _est;
}
/*
double HGR::HeapNode::get_cost(int _prevNode, double _prevActCost, vector<int> &_targetNodes, set<int> &_rGuide)
{
int g1 = _prevNode;
int g2 = id;
int g3;
double _act =
_prevActCost;
+ grid->wirelength(g1, g2)
+ grid->segment(g1, g2)
+ grid->offguide(g2, _rGuide)
+ grid->npref(g1, g2)
+ grid->overflow(g2);
double _est = DBL_MAX;
for(auto target : _targetNodes)
{
g3 = target;
_est = min(_est, grid->distance(g2, g3));
}
return _act + _est;
}
void HGR::HeapNode::update(int _prevNode, int _prevDepth, double _prevActCost, vector<int> &_targetNodes, set<int> &_rGuide)
{
int g1 = _parent->id;
int g2 = id;
int g3;
act = _parent->act
+ grid->wirelength(g1, g2)
+ grid->segment(g1, g2)
+ grid->offguide(g2, _rGuide)
+ grid->npref(g1, g2)
+ grid->overflow(g2);
est = DBL_MAX; // grid->distance(g2, g3);
for(auto target : _targets)
{
g3 = target->id;
est = min(est, grid->distance(g2, g3));
}
depth = _parent->depth + 1;
backtrace = _parent->id;
}
double HGR::HeapNode::get_cost(int _prevNode, double _prevActCost, int _targetNode, set<int> &_rGuide)
{
int g1 = _prevNode;
int g2 = id;
int g3 = _targetNode;
cout << g1 << " " << g2 << " " << g3 << endl;
double _act =
_prevActCost
+ grid->wirelength(g1, g2)
+ grid->segment(g1, g2)
+ grid->offguide(g2, _rGuide)
+ grid->npref(g1, g2)
+ grid->overflow(g2);
double _est = grid->distance(g2, g3);
return _act + _est;
}
void HGR::HeapNode::update(int _prevNode, int _prevDepth, double _prevActCost, int _targetNode, set<int> &_rGuide)
{
int g1 = _prevNode;
int g2 = id;
int g3 = _targetNode;
act = _prevActCost
+ grid->wirelength(g1, g2)
+ grid->segment(g1, g2)
+ grid->offguide(g2, _rGuide)
+ grid->npref(g1, g2)
+ grid->overflow(g2);
est = grid->distance(g2, g3);
depth = _prevDepth + 1;
backtrace = _prevNode;
}
*/
bool HGR::route_pin_to_tp(int _net, int _pin, set<int> &_rGuide, set<int> &_rSpace)
{
Net* net = get_net(_net);
Pin* pin = get_pin(_pin);
Topology* tp = get_topology(_net);
dense_hash_map<int, HeapNode> nodes;
nodes.set_empty_key(INT_MAX);
Heap<HeapNode> heap;
cout << boost::format("Route Pin to Topology [%s]\n") % net->name;
vector<int> multiTarget = tp->gcells;
//
int minNode = INT_MAX;
double minCost = DBL_MAX;
bool hasSolution = false;
if(!is_extended(_pin))
{
return false;
}
else
{
Ext *ext = get_extension(_pin);
int n = grid->index(ext->layer, ext->access);
//
nodes[n].init(n, true);
_rSpace.insert(n);
//
if(exist(multiTarget,n) && minCost > nodes[n].cost())
{
hasSolution = true;
minNode = n;
minCost = nodes[n].cost();
}
heap.push(nodes[n]);
}
for(auto target : multiTarget)
{
_rSpace.insert(target);
}
typedef tuple<int,int,int> Coord3D;
Coord3D adjV[] = { Coord3D(0,0,-1), Coord3D(0,0,1), Coord3D(0,1,0), Coord3D(0,-1,0) };
Coord3D adjH[] = { Coord3D(0,0,-1), Coord3D(0,0,1), Coord3D(1,0,0), Coord3D(-1,0,0) };
int n1, n2;
int x1, y1, z1;
int x2, y2, z2;
///////////////////
while(!heap.empty())
{
HeapNode temp = heap.pop();
n1 = temp.id;
if(temp.cost() != nodes[n1].cost())
continue;
if(n1 == minNode)
break;
grid->coord(n1, x1, y1, z1);
for(size_t i=0; i < 4; i++)
{
if(is_vertical(z1))
{
x2 = x1 + get<0>(adjV[i]);
y2 = y1 + get<1>(adjV[i]);
z2 = z1 + get<2>(adjV[i]);
}
else
{
x2 = x1 + get<0>(adjH[i]);
y2 = y1 + get<1>(adjH[i]);
z2 = z1 + get<2>(adjH[i]);
}
if(z2 == 0)
continue;
if(grid->out_of_index(x2,y2,z2))
continue;
n2 = grid->index(x2, y2, z2);
if(nodes.find(n2) == nodes.end())
{
nodes[n2].init(n2);
}
if(nodes[n1].backtrace == n2)
continue;
if(grid->cap(n2) == 0)
continue;
if(!exist(_rSpace, n2))
continue;
double act = nodes[n2].get_act_cost(n1, nodes[n1].act, _rGuide);
double est = nodes[n2].get_est_cost(multiTarget);
if(nodes[n2].cost() > act + est)
{
nodes[n2].update(nodes[n1].depth+1, n1, act, est);
if(exist(multiTarget, n2) && minCost > nodes[n2].cost())
{
hasSolution = true;
minNode = n2;
minCost = nodes[n2].cost();
}
heap.push(nodes[n2]);
}
}
}
if(hasSolution)
{
cout << "Found Solution!" << endl;
int iterNode = minNode;
Topology* tp = get_topology(_net);
vector<int> gcells;
while(true)
{
grid->gc_assign(iterNode);
gcells.push_back(iterNode);
if(iterNode == nodes[iterNode].backtrace)
break;
iterNode = nodes[iterNode].backtrace;
}
subnet_segmentation(_net, _pin, INT_MAX, gcells);
return true;
}
else
{
cout << "No Soultion..." << endl;
exit(0);
}
return false;
}
bool HGR::route_twopin_net(int _net, int _p1, int _p2, set<int> &_rGuide, set<int> &_rSpace)
{
Net* net = get_net(_net);
Pin* pin1 = get_pin(_p1);
Pin* pin2 = get_pin(_p2);
dense_hash_map<int, HeapNode> nodes;
nodes.set_empty_key(INT_MAX);
Heap<HeapNode> heap;
//vector<int> multiSource;
//vector<int> multiTarget;
cout << boost::format("Route Twopin Net [%s] %s -> %s\n") %
net->name % pin1->name % pin2->name;
//
int minNode = INT_MAX;
int destNode = INT_MAX;
double minCost = DBL_MAX;
bool hasSolution = false;
if(!is_extended(_p1) || !is_extended(_p2))
{
return false;
}
else
{
Ext *ext1 = get_extension(_p1);
Ext *ext2 = get_extension(_p2);
int n1 = grid->index(ext1->layer, ext1->access);
int n2 = grid->index(ext2->layer, ext2->access);
_rSpace.insert(n1);
_rSpace.insert(n2);
//cout << "Extension -> Gcell[n1] : " << n1 << endl;
//cout << "Extension -> Gcell[n2] : " << n2 << endl;
//
destNode = n2;
nodes[n1].init(n1, true);
nodes[n2].init(n2); //, false);
//
if(n1 == destNode)
{
if(minCost > nodes[n1].cost())
{
hasSolution = true;
minNode = n1;
minCost = nodes[n1].cost();
}
}
heap.push(nodes[n1]);
}
typedef tuple<int,int,int> Coord3D;
Coord3D adjV[] = { Coord3D(0,0,-1), Coord3D(0,0,1), Coord3D(0,1,0), Coord3D(0,-1,0) };
Coord3D adjH[] = { Coord3D(0,0,-1), Coord3D(0,0,1), Coord3D(1,0,0), Coord3D(-1,0,0) };
int n1, n2;
int x1, y1, z1;
int x2, y2, z2;
///////////////////
while(!heap.empty())
{
HeapNode temp = heap.pop();
n1 = temp.id;
//cout << "Current Node : " << n1 << endl;
if(temp.cost() != nodes[n1].cost())
continue;
if(n1 == minNode)
break;
grid->coord(n1, x1, y1, z1);
for(size_t i=0; i < 4; i++)
{
if(is_vertical(z1))
{
x2 = x1 + get<0>(adjV[i]);
y2 = y1 + get<1>(adjV[i]);
z2 = z1 + get<2>(adjV[i]);
}
else
{
x2 = x1 + get<0>(adjH[i]);
y2 = y1 + get<1>(adjH[i]);
z2 = z1 + get<2>(adjH[i]);
}
if(z2 == 0)
continue;
if(grid->out_of_index(x2,y2,z2))
continue;
n2 = grid->index(x2, y2, z2);
if(nodes.find(n2) == nodes.end())
{
nodes[n2].init(n2);
}
if(nodes[n1].backtrace == n2)
continue;
if(grid->cap(n2) == 0)
continue;
if(!exist(_rSpace, n2))
continue;
double act = nodes[n2].get_act_cost(n1, nodes[n1].act, _rGuide);
double est = nodes[n2].get_est_cost(destNode);
if(nodes[n2].cost() > act + est)
{
nodes[n2].update(nodes[n1].depth+1, n1, act, est);
if(n2 == destNode && minCost > nodes[n2].cost())
{
hasSolution = true;
minNode = n2; //nNode->id;
minCost = nodes[n2].cost(); //nNode->cost();
}
heap.push(nodes[n2]);
}
}
}
if(hasSolution)
{
cout << boost::format("Has Solution ! [%s]\n") % net->name;
int iterNode = minNode;
Topology* tp = get_topology(_net);
vector<int> paths;
while(true)
{
grid->gc_assign(iterNode);
paths.push_back(iterNode);
if(iterNode == nodes[iterNode].backtrace)
break;
iterNode = nodes[iterNode].backtrace;
}
subnet_segmentation(_net, _p1, _p2, paths);
return true;
}
else
{
cout << "No Solution..." << endl;
exit(0);
}
return false;
}
void HGR::subnet_segmentation(int _net, int _p1, int _p2, vector<int> &_gcells)
{
cout << boost::format("Subnet Segmentation [%s]\n") % get_net(_net)->name;
Topology* tp = get_topology(_net);
int g1, g2, g3;
int numSegs = 0;
for(auto& it : _gcells)
{
//cout << "Gcell : " << it << endl;
if(!exist(tp->gcells, it))
{
tp->gcells.push_back(it);
}
}
if(_gcells.size() == 1)
{
g1 = _gcells[0];
Segment* s1 = create_segment(_net);
s1->g1 = g1;
s1->g2 = g1;
s1->layer = grid->gcell(g1)->z;
s1->direction = grid->direction(g1, g1);
//s1->ll = grid->gcell(g1)->rect.ll;
//s1->ur = grid->gcell(g1)->rect.ur;
s1->access = true;
s1->pins.push_back(_p1);
s1->exts.push_back(*get_extension(_p1));
//seg sElem1(pt(grid->gcell(g1)->x, grid->gcell(g1)->y), pt(grid->gcell(g1)->x, grid->gcell(g1)->y));
//tp->trees[s1->layer].insert({sElem1, s1->id});
cout << s1 << endl;
if(_p2 = INT_MAX)
{
/*
g2 = grid->index(g1, 0, 0, 1);
if(!exist(tp->gcells, g2))
{
tp->gcells.push_back(g2);
}
Segment *s2 = create_segment(_net);
s2->g1 = g2;
s2->g2 = g2;
s2->layer = grid->gcell(g2)->z;
s2->access = false;
s2->direction = grid->direction(g2, g2);
//s2->ll = grid->gcell(g2)->rect.ll;
//s2->ur = grid->gcell(g2)->rect.ur;
seg sElem2(pt(grid->gcell(g2)->x, grid->gcell(g2)->y), pt(grid->gcell(g2)->x, grid->gcell(g2)->y));
tp->trees[s2->layer].insert({sElem2, s2->id});
*/
Segment *s3 = create_segment(_net);
s3->g1 = g1;
s3->g2 = g1;
s3->layer = grid->gcell(g1)->z;
s3->direction = grid->direction(g1, g1);
//s3->ll = grid->gcell(g1)->rect.ll;
//s3->ur = grid->gcell(g1)->rect.ur;
s3->access = true;
s3->pins.push_back(_p2);
s3->exts.push_back(*get_extension(_p2));
//seg sElem3(pt(grid->gcell(g1)->x, grid->gcell(g1)->y), pt(grid->gcell(g1)->x, grid->gcell(g1)->y));
//tp->trees[s3->layer].insert({sElem3, s3->id});
//cout << s3 << endl;
}
}
else
{
typedef pair<int,int> GcellPair;
Gcell *c1, *c2, *c3;
vector<GcellPair> gcellPairs;
g1 = _gcells[0];
for(size_t i=1; i < _gcells.size(); i++)
{
g2 = _gcells[i-1];
g3 = _gcells[i];
c1 = grid->gcell(g1);
c2 = grid->gcell(g2);
c3 = grid->gcell(g3);
bool diffZ = (c1->z != c3->z) ? true : false;
bool diffXY = (c1->x != c3->x && c1->y != c3->y) ? true : false;
if(diffZ | diffXY)
{
gcellPairs.push_back( {g1, g2} );
g1 = (diffXY) ? g2 : g3;
}
if((i+1) == _gcells.size())
{
gcellPairs.push_back( {g1, g3} );
}
}
if(gcellPairs.size() == 1 && _p2 != INT_MAX)
{
g1 = gcellPairs.begin()->first;
g2 = gcellPairs.begin()->second;
c1 = grid->gcell(g1);
c2 = grid->gcell(g2);
Segment* s1 = create_segment(_net);
s1->g1 = g1;
s1->g2 = g2;
s1->layer = c1->z;
s1->direction = grid->direction(g1, g2);
s1->access = true;
s1->pins.push_back(_p2);
s1->exts.push_back(*get_extension(_p2));
//s1->ll.x = min(c1->rect.ll.x, c2->rect.ll.x);
//s1->ll.y = min(c1->rect.ll.y, c2->rect.ll.y);
//s1->ur.x = max(c1->rect.ur.x, c2->rect.ur.x);
//s1->ur.y = max(c1->rect.ur.y, c2->rect.ur.y);
//int lx = min(c1->x, c2->x);
//int ly = min(c1->y, c2->y);
//int ux = max(c1->x, c2->x);
//int uy = max(c1->y, c2->y);
//seg sElem1(pt(lx, ly), pt(ux, uy));
//tp->trees[s1->layer].insert({sElem1, s1->id});
Segment* s2 = create_segment(_net);
s2->g1 = g2;
s2->g2 = g2;
s2->layer = c2->z;
s2->direction = grid->direction(g2, g2);
s2->access = true;
s2->pins.push_back(_p1);
s2->exts.push_back(*get_extension(_p1));
//s2->ll = c2->rect.ll;
//s2->ur = c2->rect.ur;
//seg sElem2(pt(c2->x, c2->y), pt(c2->x, c2->y));
//tp->trees[s2->layer].insert({sElem2, s2->id});
//cout << "g1 : " << g1 << " g2 : " << g2 << endl;
//cout << s1->layer << " " << s2->layer << endl;
//cout << "Gcell : " << grid->gcell(g1)->x << " " << grid->gcell(g1)->y << " " << grid->gcell(g1)->z << endl;
//cout << "Gcell : " << grid->gcell(g2)->x << " " << grid->gcell(g2)->y << " " << grid->gcell(g2)->z << endl;
//cout << "!" << endl;
//cout << s1 << endl;
//cout << s2 << endl;
//cout << "@" << endl;
}
else
{
for(size_t i=0; i < gcellPairs.size(); i++)
{
g1 = gcellPairs[i].first;
g2 = gcellPairs[i].second;
c1 = grid->gcell(g1);
c2 = grid->gcell(g2);
Segment* s = create_segment(_net);
s->g1 = g1;
s->g2 = g2;
s->layer = c1->z;
s->direction = grid->direction(g1, g2);
if(i==0 && _p2 != INT_MAX)
{
s->access = true;
s->pins.push_back(_p2);
s->exts.push_back(*get_extension(_p2));
}
if(i==gcellPairs.size()-1)
{
s->access = true;
s->pins.push_back(_p1);
s->exts.push_back(*get_extension(_p1));
}
//s->ll.x = min(c1->rect.ll.x, c2->rect.ll.x);
//s->ll.y = min(c1->rect.ll.y, c2->rect.ll.y);
//s->ur.x = max(c1->rect.ur.x, c2->rect.ur.x);
//s->ur.y = max(c1->rect.ur.y, c2->rect.ur.y);
//int lx = min(c1->x, c2->x);
//int ly = min(c1->y, c2->y);
//int ux = max(c1->x, c2->x);
//int uy = max(c1->y, c2->y);
//seg sElem(pt(lx, ly), pt(ux, uy));
//tp->trees[s->layer].insert({sElem, s->id});
//cout << s << endl;
}
}
}
}
void HGR::topology_generation(int _net)
{
using EdgeWeightProperty = boost::property<boost::edge_weight_t, int>;
using GraphType = boost::adjacency_list<boost::vecS, boost::vecS, boost::undirectedS, boost::no_property, EdgeWeightProperty>;
using PredecessorContainer = vector<boost::graph_traits<GraphType>::vertex_descriptor>;
using EdgeDescriptor = boost::graph_traits<GraphType>::edge_descriptor;
Topology* tp = get_topology(_net);
if(tp->segments.size() == 0) return;
GraphType G(tp->segments.size());
int dz[] = { -1, 0, 1 };
int lx, ly, ux, uy, layer;
int edgeType12, edgeType13, edgeType23;
int cutL13, cutL23;
int n1, n2, n3, w;
Gcell *c1, *c2;
Segment *s, *s1, *s2, *s3;
for(int i=0; i < (int)tp->segments.size(); i++)
{
s = &tp->segments[i];
c1 = grid->gcell(s->g1);
c2 = grid->gcell(s->g2);
lx = min(c1->x, c2->x);
ly = min(c1->y, c2->y);
ux = max(c1->x, c2->x);
uy = max(c1->y, c2->y);
seg sElem(pt(lx, ly), pt(ux, uy));
tp->trees[s->layer].insert({sElem, s->id});
cout << s << endl;
}
for(int i=0; i < (int)tp->segments.size(); i++)
{
s1 = &tp->segments[i];
//cout << s1->g1 << " " << s1->g2 << endl;
c1 = grid->gcell(s1->g1);
c2 = grid->gcell(s1->g2);
for(int j=0; j < 3; j++)
{
layer = s1->layer + dz[j];
if(layer < 0 || layer >= num_layers())
continue;
lx = min(c1->x, c2->x);
ly = min(c1->y, c2->y);
ux = max(c1->x, c2->x);
uy = max(c1->y, c2->y);
SegRtree* tree = &tp->trees[layer];
for(SegRtree::const_query_iterator it = tree->qbegin(bgi::intersects(seg(pt(lx, ly), pt(ux, uy))));
it != tree->qend(); it++)
{
s2 = &tp->segments[it->second];
if(s1->id == s2->id)
continue;
n1 = min(s1->id, s2->id);
n2 = max(s1->id, s2->id);
w = (s1->access || s2->access) ? 100 : 0;
if(dz[j] == 0)
w += (s1->direction == s2->direction) ? 30 : 5;
else
w += (s1->direction == s2->direction) ? 50 : 1;
boost::add_edge(n1, n2, EdgeWeightProperty(w), G);
}
}
}
vector<EdgeDescriptor> edges;
boost::kruskal_minimum_spanning_tree(G, back_inserter(edges));
for(vector<EdgeDescriptor>::iterator it = edges.begin(); it != edges.end(); it++)
{
n1 = boost::source(*it, G);
n2 = boost::target(*it, G);
s1 = &tp->segments[n1];
s2 = &tp->segments[n2];
if(s1->direction == s2->direction)
edgeType12 = (s1->layer == s2->layer) ? PRL : VIA_PRL;
else
edgeType12 = (s1->layer == s2->layer) ? CROSS : VIA_CROSS;
tp->add_edge(n1, n2, edgeType12);
/*
if(s1->direction == s2->direction)
{
s3 = create_segment(_net);
n3 = s3->id;
//cout << "n1 : " << n1 << " n2 : " << n2 << " n3 : " << n3 << endl;
if(s1->layer != s2->layer)
{
if(!is_preferred(s1->layer, s1->direction))
{
s3->layer = s1->layer;
s3->direction = preferred(s1->layer);
edgeType13 = CROSS;
edgeType23 = VIA_CROSS;
}
else if(!is_preferred(s2->layer, s2->direction))
{
s3->layer = s2->layer;
s3->direction = preferred(s2->layer);
edgeType13 = VIA_CROSS;
edgeType23 = CROSS;
}
}
else
{
s3->layer = s1->layer + 1;
s3->direction = preferred(s3->layer);
edgeType13 = VIA_CROSS;
edgeType23 = VIA_CROSS;
}
//cutL13 = max(s1->layer, s3->layer);
//cutL23 = max(s2->layer, s3->layer);
int lx1 = min(grid->gcell(s1->g1)->x, grid->gcell(s1->g2)->x);
int lx2 = min(grid->gcell(s2->g1)->x, grid->gcell(s2->g2)->x);
int ly1 = min(grid->gcell(s1->g1)->y, grid->gcell(s1->g2)->y);
int ly2 = min(grid->gcell(s2->g1)->y, grid->gcell(s2->g2)->y);
s3->g1 = grid->index(max(lx1, lx2), max(ly1, ly2), s3->layer);
s3->g2 = grid->index(max(lx1, lx2), max(ly1, ly2), s3->layer);
s3->net = s1->net;
s3->direction = preferred(s3->layer);
s3->assign = false;
s3->access = false;
//s3->ll = grid->gcell(s3->g1)->rect.ll;
//s3->ur = grid->gcell(s3->g2)->rect.ur;
tp->add_edge(n1, n3);
tp->add_edge(n2, n3);
tp->set_edge_type(n1, n3, edgeType13);
tp->set_edge_type(n2, n3, edgeType23);
}
else
{
//cout << "n1 : " << n1 << " n2 : " << n2<< endl;
edgeType12 = (s1->layer == s2->layer) ? CROSS : VIA_CROSS;
tp->add_edge(n1, n2, edgeType12);
tp->set_edge_type(n1, n2, edgeType12);
}
*/
}
//#ifdef DEBUG_TOPOLOGY
cout << "Topology Generation <" << get_net(_net)->name << ">" << endl;
for(size_t i=0; i < tp->segments.size(); i++)
{
cout << &tp->segments[i] << endl;
}
//for(size_t i=0; i < topologies[netid].edges.size(); i++)
for(auto it : tp->edge)
{
Edge e = it.second;
int n1 = e.s1;
int n2 = e.s2;
int type = e.type;
//tp->get_edge_type(n1, n2);
cout << "Edge : " << &tp->segments[n1] << " <--> " << &tp->segments[n2] << " ";
switch(type)
{
case VIA_PRL : cout << "VIA_PRL"; break;
case VIA_CROSS : cout << "VIA_CROSS"; break;
case PRL : cout << "PRL"; break;
case CROSS : cout << "CROSS"; break;
default: break;
}
cout << endl;
}
cout << endl;
//#endif
}
bool HGR::Topology::check_parallel_edge_connectivity(int _layer)
{
bool brokenEdge = false;
int xl, xh, yl, yh;
int edgeType;
int g1, g2;
Segment *s1, *s2, *s3;
vector<edge_t> temp = edges;
for(auto it : temp)
{
Edge* e = &edge[it];
s1 = get_segment(net, e->s1);
s2 = get_segment(net, e->s2);
edgeType = e->type;
if(edgeType != PRL)
continue;
if(s1->layer != _layer)
continue;
if(!s1->assign || !s2->assign)
{
cout << s1 << endl;
cout << s2 << endl;
cout << "Not Assigned!" << endl;
continue;
}
if(s1->track != s2->track)
{
xl = max( min(grid->gcell(s1->g1)->x, grid->gcell(s1->g2)->x), min(grid->gcell(s2->g1)->x, grid->gcell(s2->g2)->x) );
xh = min( max(grid->gcell(s1->g1)->x, grid->gcell(s1->g2)->x), max(grid->gcell(s2->g1)->x, grid->gcell(s2->g2)->x) );
yl = max( min(grid->gcell(s1->g1)->y, grid->gcell(s1->g2)->y), min(grid->gcell(s2->g1)->y, grid->gcell(s2->g2)->y) );
yh = min( max(grid->gcell(s1->g1)->y, grid->gcell(s1->g2)->y), max(grid->gcell(s2->g1)->y, grid->gcell(s2->g2)->y) );
g1 = grid->index(xl, yl, _layer+1);
g2 = grid->index(xl, yl, _layer+1);
s3 = create_segment(net);
s3->g1 = g1;
s3->g2 = g2;
s3->layer = _layer + 1;
s3->direction = grid->direction(g1, g2);
s3->net = net;
s3->assign = false;
s3->access = false;
// Remove edge and Add new Segment, Edge
remove_edge(s1->id, s2->id);
add_edge(s1->id, s3->id, VIA_CROSS);
add_edge(s2->id, s3->id, VIA_CROSS);
brokenEdge = true;
cout << boost::format("%s edge (%d %d) removed -> edge (%d %d) and (%d %d) added\n")
% get_net(net)->name % s1->id % s2->id % s1->id % s3->id % s2->id % s3->id;
}
}
return brokenEdge;
}
|
5b34ad9aca39e8f17ffb31c64c26506f273fa603 | 923ec52872ac4faada05ebc24183331232283406 | /Tb/TbUT/src/TbUTNoiseCalculatorfactory.cpp | f76fc13c30db3bb0029b78597f34a78db2172469 | [] | no_license | chrisburr/Kepler | d92b594be8fe426720e8c61c4eafc193087a8596 | ed84e81bd959485ebc1be05bde6954917302244a | refs/heads/master | 2021-01-13T14:30:12.666857 | 2016-11-04T15:44:26 | 2016-11-04T15:44:26 | 72,861,615 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 714 | cpp | TbUTNoiseCalculatorfactory.cpp | /*
* TbUTNoiseCalculatorfactory.cpp
*
* Created on: Jan 3, 2015
* Author: ADendek
*/
#include "TbUTNoiseCalculatorfactory.h"
#include "TbUTNoiseCalculator.h"
#include "TbUTNoiseCalculatorFake.h"
using namespace TbUT;
NoiseCalculatorFactory::NoiseCalculatorFactory()
{
}
NoiseCalculatorFactory::NoiseCalcualtorPtr NoiseCalculatorFactory::createNoiseCalculator(const std::string& p_noiseCalculatorType)
{
if(p_noiseCalculatorType==TbUT::NoiseCalculatorType::calculator)
return NoiseCalcualtorPtr(new NoiseCalculator());
else if (p_noiseCalculatorType ==TbUT::NoiseCalculatorType::fake)
return NoiseCalcualtorPtr(new NoiseCalculatorFake());
else
throw NoSuchState(p_noiseCalculatorType);
}
|
c11485b9388982442a26b97f8f3639befb179064 | 2141c1bfb4fcad9aa63db5c3fa38dae3b4cde6ef | /src/ofxImGuiParameter.h | b6283ea835082f62c41e686a0f72d87f5e855b2e | [] | no_license | UltraCombos/ofxImGui | 19412e9a319ebf5685e74caeb09bf1767e85e8cd | 9f0e479ee7c1c034df8d1c5369521c38c1e8f3b0 | refs/heads/master | 2023-06-23T13:59:11.299921 | 2023-06-20T19:39:49 | 2023-06-20T19:39:49 | 109,094,947 | 3 | 0 | null | 2017-11-01T06:21:28 | 2017-11-01T06:21:28 | null | UTF-8 | C++ | false | false | 8,515 | h | ofxImGuiParameter.h | /*
The78ester
*/
#ifndef INCLUDE_OF_ADDONS_OFXIMGUIPARAMETER_H_
#define INCLUDE_OF_ADDONS_OFXIMGUIPARAMETER_H_
#include <ofMain.h>
typedef void(*gf_draw_func)(ofAbstractParameter*, void*);
struct ofxImGuiParamInfo
{
shared_ptr<ofAbstractParameter> sp_param;
gf_draw_func func;
size_t arg;
char fmt[8];
std::vector< ofxImGuiParamInfo* > children;
bool enable_sl;
};
template < typename TYPE >
class ofxROPSetter
{
typedef ofxROPSetter < TYPE > Self;
public:
static void setName(ofReadOnlyParameter< TYPE, Self >& param, std::string const& name)
{
param.setName(name);
}
static void set(ofReadOnlyParameter< TYPE, Self >& param, TYPE val)
{
param = val;
}
};
typedef ofReadOnlyParameter< int, ofxROPSetter< int > > ofxROParamInt;
typedef ofReadOnlyParameter< float, ofxROPSetter< float > > ofxROParamFloat;
typedef ofReadOnlyParameter< std::string, ofxROPSetter< std::string > > ofxROParamString;
class ofxImGuiParameter
{
public:
class Context;
typedef ofxImGuiParamInfo ParamInfo;
typedef uintptr_t BindedID;
static BindedID const InvalidBindedID ;
static ofRectangle const DefaultPosAndSize;
enum Style
{
StyleNone,
StyleInputField,
StyleSlider,
StyleDrag,
};
template < bool >
struct EventType
{
};
struct EnumType
{
int select;
std::vector < std::string > content;
friend std::ostream& operator<<(std::ostream& os, const EnumType& et)
{
os << et.content[et.select];
return os;
}
friend std::istream& operator>> (std::istream& is, EnumType& et)
{
is >> et.content[et.select];
return is;
}
};
template< typename TYPE >
struct ValueType
{
TYPE value;
TYPE arg0; //(Slider)min or (InputField)step
TYPE arg1; //(Slider)max or (InputField)step fast
Style style;
ValueType()
: value(0)
, arg0(0)
, arg1(0)
, style(StyleInputField)
{}
ValueType(TYPE v)
: value(v)
, arg0(0)
, arg1(0)
, style(StyleInputField)
{}
ValueType(TYPE v, TYPE a0, TYPE a1 = 0)
: value(v)
, arg0(a0)
, arg1(a1)
, style(StyleInputField)
{}
ValueType(TYPE v, TYPE a0, TYPE a1, Style s)
: value(v)
, arg0(a0)
, arg1(a1)
, style(s)
{}
friend std::ostream& operator<<(std::ostream& os, const ValueType& v)
{
os << v.value;
return os;
}
friend std::istream& operator>> (std::istream& is, ValueType& v)
{
is >> v.value;
return is;
}
};
template < typename TYPE >
struct LabelType
{
TYPE value;
};
static bool GetEnumTypeFormDirectory(EnumType* p_out, std::string const& in_path, std::string const& ext_filter);
static Context* Initialize();
static void Finalize(Context* pContext = NULL);
static Context* GetCurrentContext();
static void SetCurrentContext(Context* pContext);
static bool IsMouseCaptured(Context* pContext = NULL);
static bool IsKeyboardCaptured(Context* pContext = NULL);
static void Draw(Context* pContext = NULL);
static ofEvent< void >& GetOnDrawEvent(Context* pContext = NULL);
ofxImGuiParameter();
~ofxImGuiParameter();
bool setup(std::string const& title = "ofxImGuiParameter", ofRectangle const& rect = DefaultPosAndSize, Style default_style = StyleDrag);
bool setup(std::string const& title, Style default_style);
bool setup(Context* pContext, std::string const& title = "ofxImGuiParameter", ofRectangle const& rect = DefaultPosAndSize, Style default_style = StyleDrag);
bool setup(Context* pContext, std::string const& title, Style default_style);
bool is_setup();
void exit();
BindedID bind(ofAbstractParameter const& param, Style style = StyleNone, char const* fmt = NULL);
void unbind(BindedID bid);
bool enable_save_and_load(BindedID bid, bool yes);
void draw();
bool save(std::string const& filepath = "");
bool load(std::string const& filepath = "");
void set_xml_filepath(std::string const& file);
void set_help(std::string const& help);
bool is_visible();
bool is_locked_shortcut();
bool is_enable_dialog();
bool is_fitting_window();
void set_visible(bool yes);
void lock_shortcut(bool yes);
void enable_dialog(bool yes);
void set_fit_window(bool yes);
ofEvent< void >& get_on_pre_draw_parameter_event();
ofEvent< void >& get_on_post_draw_parameter_event();
ofEvent< std::string const >& get_on_pre_save_event();
ofEvent< std::string const >& get_on_pre_load_event();
ofEvent< std::string const >& get_on_save_event();
ofEvent< std::string const >& get_on_load_event();
private:
//static std::vector< ofxImGuiParameter* > s_box;
static ofMutex s_mutex;
//static ofEvent< void > s_event;
static void sf_draw(ParamInfo* p_param_info);
Context* m_p_context;
ofEvent< void > m_pre_draw_event;
ofEvent< void > m_post_draw_event;
ofEvent< std::string const > m_on_pre_save_event;
ofEvent< std::string const > m_on_pre_load_event;
ofEvent< std::string const > m_on_save_event;
ofEvent< std::string const > m_on_load_event;
ofMutex m_mutex;
gf_draw_func m_default_draw_i_func;
gf_draw_func m_default_draw_f_func;
std::string m_title;
std::string m_xml_filepath;
std::string m_msg_of_dialog;
std::string m_title_of_dialog;
std::string m_help;
std::string m_fmt_input;
std::string m_fmt_label;
ofRectangle m_pos_and_size;
std::vector< ParamInfo* > m_parameters;
size_t m_show_dialog;
bool m_is_visible;
bool m_is_setup;
bool m_is_locked_shortcut;
bool m_is_focused;
bool m_is_enable_dialog;
bool m_is_dialog_auto_gone;
bool m_is_fitting_window;
bool mf_setup(Context* pContext, std::string const& title, ofRectangle const& rect, Style default_style);
void mf_exit();
void mf_draw_dialog();
BindedID mf_bind(ofAbstractParameter const& param, std::vector< ParamInfo* >& contanier, Style style, char const* fmt);
void mf_unbind(std::vector< ParamInfo* >& contanier);
void mf_unbind(BindedID bid, std::vector< ParamInfo* >& contanier);
bool mf_enable_save_and_load(std::vector< ParamInfo* >& contanier, bool yes);
bool mf_enable_save_and_load(BindedID bid, std::vector< ParamInfo* >& contanier, bool yes);
void mf_show_dialog(std::string const& tittle, std::string const& message);
void mf_internal_save();
void mf_internal_load();
void mf_check_and_exe_general_shortcut(ofKeyEventArgs& arg);
void mf_on_key_pressed(ofKeyEventArgs& arg);
bool mf_is_force_to_use_shortcut();
//void mf_on_key_released(ofKeyEventArgs& arg)
};
inline void ofxImGuiParameter::set_xml_filepath(std::string const& file)
{
m_xml_filepath = file;
}
inline void ofxImGuiParameter::set_help(std::string const& help)
{
m_help = help;
}
inline bool ofxImGuiParameter::is_visible()
{
return m_is_visible;
}
inline bool ofxImGuiParameter::is_locked_shortcut()
{
return m_is_locked_shortcut;
}
inline bool ofxImGuiParameter::is_enable_dialog()
{
return m_is_enable_dialog;
}
inline bool ofxImGuiParameter::is_fitting_window()
{
return m_is_fitting_window;
}
inline void ofxImGuiParameter::set_visible(bool yes)
{
m_is_visible = yes;
}
inline void ofxImGuiParameter::lock_shortcut(bool yes)
{
m_is_locked_shortcut = yes;
}
inline void ofxImGuiParameter::enable_dialog(bool yes)
{
m_is_enable_dialog = yes;
}
inline void ofxImGuiParameter::set_fit_window(bool yes)
{
m_is_fitting_window = yes;
}
inline ofEvent< void >& ofxImGuiParameter::get_on_pre_draw_parameter_event()
{
return m_pre_draw_event;
}
inline ofEvent< void >& ofxImGuiParameter::get_on_post_draw_parameter_event()
{
return m_post_draw_event;
}
inline ofEvent< std::string const >& ofxImGuiParameter::get_on_pre_save_event()
{
return m_on_pre_save_event;
}
inline ofEvent< std::string const >& ofxImGuiParameter::get_on_pre_load_event()
{
return m_on_pre_load_event;
}
inline ofEvent< std::string const >& ofxImGuiParameter::get_on_save_event()
{
return m_on_save_event;
}
inline ofEvent< std::string const >& ofxImGuiParameter::get_on_load_event()
{
return m_on_load_event;
}
typedef ofxImGuiParameter::ValueType< int > ofxImGuiInt;
typedef ofxImGuiParameter::ValueType< float > ofxImGuiFloat;
typedef ofxImGuiParameter::EnumType ofxImGuiEnum;
typedef ofxImGuiParameter::EventType< false > ofxImGuiButton;
typedef ofxImGuiParameter::EventType< true > ofxImGuiButtonSL;
typedef ofxImGuiParameter::LabelType< int > ofxImGuiLabelInt;
typedef ofxImGuiParameter::LabelType< float > ofxImGuiLabelFloat;
typedef ofxImGuiParameter::LabelType< std::string > ofxImGuiLabel;
#endif//INCLUDE_OF_ADDONS_OFXIMGUIPARAMETER_H_
|
cdd8885d2f608e5089ceb6b4ae4524ff2a9feb74 | 17c3833af2a3d0bdb5ddb0db400b447c2ff5d5bf | /src/components/Clock.cpp | 8a8a633112a114ab4076cdb03bea98acee8fa5a5 | [] | no_license | arthurphilippe/cpp_nanotekspice | c83149fc2923a9f0977e7995ee1c8e5ed48d1418 | f37c562a7d19a2a79147de46d2d03340178432f1 | refs/heads/master | 2021-03-22T01:06:31.728802 | 2018-03-04T12:23:01 | 2018-03-04T12:23:01 | 119,529,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 451 | cpp | Clock.cpp | /*
** EPITECH PROJECT, 2017
** nanotekspice
** File description:
** clock
*/
#include "components/Clock.hpp"
nts::Tristate nts::Clock::_state = TRUE;
nts::Clock::Clock(const std::string &name)
{
_name.assign(name);
_type.assign("clock");
}
nts::Tristate nts::Clock::compute(std::size_t pin)
{
if (pin == 2)
_state = TRUE;
else if (pin == 3)
_state = FALSE;
else if (pin == 4)
_state = (_state == TRUE) ? FALSE : TRUE;
return _state;
}
|
8e0dc79524f0776210fcadac0f9d850241205e6e | 26e0dc433c759110cd0860bef329a79eea1a95d9 | /example/ti/sdo/ce/examples/apps/armlivemedia/core/.svn/text-base/audioEncodeFactory.h.svn-base | 3898f02e9950c78a228e944c071b3f7ea4714d9c | [] | no_license | houstar/codec_engine | c824ce8f99278098b960abf694e9b105bc8adc78 | d433b77426636195c4942bab875b1ef88a53610b | refs/heads/master | 2020-05-26T19:32:21.897604 | 2014-10-09T07:57:02 | 2014-10-09T07:57:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 145 | audioEncodeFactory.h.svn-base | #pragma once
#include "audioEncodeInterface.h"
class AudioEncodeFactory {
public:
static IAudioEncodeInterface* createInstance(bool bOMX);
};
| |
098bf9433e84a8cb60beb7c88c2544d430b7ecc4 | 079dc0044cd3cf48223e2012b1588c3332ca32ba | /Packet/App/exampleCode/test.cpp | 2d180cd5aa9f68af834ac813f53e4a1761444125 | [] | no_license | 3dElf/packet-manipulation-library | dddfdcfce3b35c0b224638960bf8e11e2d74aacf | ab4c12e5a745184daac408b6ec2a237cc520bba8 | refs/heads/master | 2023-03-17T06:42:24.080775 | 2013-08-26T20:19:31 | 2013-08-26T20:19:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,516 | cpp | test.cpp | /*
* PacMan - Packet Manipulation Library
* Copyright © 2008 Jeff Scaparra, Gaurav Yadav, Andrie Tanusetiawan
*
* This file is a part of PacMan.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//! \file test.cpp
//! This is a test program for PacMan
//
//This is file is to ensure that all instances of an object work
//This is to find problems with templates and abstract pure functions and
//classes.
#include "../raw.h"
#include <vector>
#include "../app.h"
#include <iostream>
int main()
{
Raw raw;
AppData* aptr = &raw;
std::cout << "Is RAW? " << ( aptr->isRaw() ? "Yes" : "No" ) << std::endl;
std::vector< App > data;
data.push_back( raw );
std::cout << "Is Raw? " << ( data.at( 0 ).is<Raw>() ? "YES!" : "NO" ) << std::endl;
std::cout << "Is vector<int>? " << ( data.at( 0 ).is< std::vector<int> >() ? "YES" : "NO" ) << std::endl;
raw = data.at( 0 ).get<Raw>();
return 0;
}
|
2f4a98bff9cf7099b9fb86e08eb41ab5b455a258 | 5cba01363531ef35f3fd63eaafdf5d8610fd64df | /client/SecureClient.cpp | fd1e5897f51a537e88f684762be551bd114703e3 | [] | no_license | ikonst/seminar | 9181d0c7867f8e75fa5286d90cc76007ac278d31 | 979312a725b62c561e802628222418ad991f5c4c | refs/heads/master | 2021-05-05T20:37:22.210423 | 2017-12-25T10:36:25 | 2017-12-26T02:42:23 | 115,330,095 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,608 | cpp | SecureClient.cpp | #include <string>
#include <sys/errno.h>
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <sstream>
#include <algorithm>
#include <openssl/err.h>
#include <openssl/ssl.h>
#include "SecureClient.h"
#include "Exceptions.h"
using namespace std;
SecureClient::SecureClient(int socket): SecureClient()
{
this->_socket = dup(socket);
this->_ssl_ctx = SSL_CTX_new(SSLv23_client_method());
this->_ssl = SSL_new(this->_ssl_ctx);
SSL_set_fd(this->_ssl, this->_socket);
int ret = SSL_connect(this->_ssl);
if (ret != 1) {
throw_openssl();
}
}
SecureClient::SecureClient(): _socket(0), _ssl(nullptr), _ssl_ctx(nullptr) {
}
SecureClient::SecureClient(SecureClient &&other) noexcept
: SecureClient()
{
swap(*this, other);
}
SecureClient& SecureClient::operator=(SecureClient &&other) {
swap(*this, other);
return *this;
}
SecureClient::~SecureClient() {
SSL_free(this->_ssl);
SSL_CTX_free(this->_ssl_ctx);
if (this->_socket != 0) {
close(this->_socket);
}
}
size_t SecureClient::ReadIntoBuffer(vector<char>& buffer, size_t offset, size_t length) {
if (offset > buffer.size()) {
throw out_of_range("offset");
}
if (buffer.size() - offset < length) {
throw out_of_range("length");
}
buffer.resize(offset + length);
ssize_t actual = SSL_read(this->_ssl, &buffer[offset], (int)length);
if (actual < 0) {
throw_openssl();
}
buffer.resize(offset + actual);
return (size_t)actual;
}
vector<char> SecureClient::Read(size_t length) {
vector<char> v;
v.resize(length);
size_t actual = this->ReadIntoBuffer(v, 0, length);
v.resize(actual);
return v;
}
string SecureClient::ReadUntil(char value) {
stringstream s;
ssize_t actual;
char c;
do {
actual = SSL_read(this->_ssl, &c, 1);
if (actual < 0) {
throw_openssl();
} else if (actual == 1 && c != value) {
s << c;
}
} while (actual == 1 && c != value);
return s.str();
}
std::string SecureClient::ReadLine() {
return this->ReadUntil('\n');
}
void SecureClient::Write(const unsigned char *str, size_t length) {
ssize_t ret = SSL_write(this->_ssl, str, (int)length);
if (ret < 0) {
throw_openssl();
}
}
void SecureClient::Write(const string &str) {
ssize_t ret = SSL_write(this->_ssl, str.c_str(), (int)str.size());
if (ret < 0) {
throw_openssl();
}
}
void SecureClient::ExecuteCode(const char *code) {
this->Write(code);
this->Write("\nEND CODE\n");
}
|
0bc26b1594b90ed5a3d4c117ee4234cf524bd725 | 90d85e95309ff749ee9c73d70e3d8c1335511c0e | /src/server.cpp | ed4196e172fc5d801c17b57f19254779edf425ff | [] | no_license | IlliaDmitriiev/ToDoList | a2fa8e218c3f4499e440c0305eeb1665383f4c52 | e7e35bd50af3e34d53c03ccfca512eb873bb9d16 | refs/heads/master | 2023-01-05T12:32:45.846124 | 2020-11-01T21:26:22 | 2020-11-01T21:26:22 | 280,368,615 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,129 | cpp | server.cpp | //
// Created by ilya on 25.10.2020.
//
#include "Core/api/GRPCServer.h"
#include "Core/utils/Creators/DataHolderCreator.h"
int main() {
std::string server_address("0.0.0.0:50051");
grpc::EnableDefaultHealthCheckService(true);
grpc::reflection::InitProtoReflectionServerBuilderPlugin();
auto model = todo_list_model::createDataHolder();
GRPCServer service(std::move(model));
ServerBuilder builder;
// Listen on the given address without any authentication mechanism.
builder.AddListeningPort(server_address, grpc::InsecureServerCredentials());
// Register "service" as the instance through which we'll communicate with
// clients. In this case it corresponds to an *synchronous* service.
builder.RegisterService(&service);
// Finally assemble the server.
std::unique_ptr<Server> server(builder.BuildAndStart());
std::cout << "Server listening on " << server_address << std::endl;
// Wait for the server to shutdown. Note that some other thread must be
// responsible for shutting down the server for this call to ever return.
server->Wait();
return 0;
} |
bbd38ec2439999b9a020642af91e9ad3d68f0ab5 | 791c27e89ac6c51709bc996ab4a66742573a489d | /PROGRAMMERS/약수의합.cpp | fdd3b2607623bfb84bbbd17c31963438751b4ff1 | [] | no_license | JeongYeonUk/Problem | 6f031abed61c6229f3da86c20b188fc4481ed46d | 12ff42c72e0c91ab4a2927f17c874d791362530d | refs/heads/master | 2021-06-27T10:51:52.409707 | 2020-12-14T15:48:31 | 2020-12-14T15:48:31 | 188,515,199 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 479 | cpp | 약수의합.cpp | #include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstring>
using namespace std;
#define endl '\n'
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
int solution(int n) {
int answer = 0;
for (int i = 1; i <= n; ++i) {
if (n % i == 0) {
answer += i;
}
}
return answer;
}
int main()
{
ios_base::sync_with_stdio(false);
cout.tie(nullptr); cin.tie(nullptr);
cout << solution(12) << endl;
return 0;
}
|
6db7c43c079c75873c41f6890dbceefe5056dcb5 | 8e5cb7ecef402efa86f63d82b434e34d2cffb7db | /include/pid.hpp | a4f24548b29569b9c674329a8bd3fb5546d258da | [
"MIT"
] | permissive | timtro/pid-unfolding | 956336acb828e3d365b75219b07f900aee4eff57 | 15477efc9774b6ade5df108cb136eafb16bf470c | refs/heads/master | 2022-11-28T05:11:04.616093 | 2022-11-14T19:46:04 | 2022-11-14T19:46:04 | 135,348,683 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,035 | hpp | pid.hpp | #pragma once
#include <boost/hana.hpp>
#include <chrono>
#include <cmath>
#include <functional>
#include <iostream>
#include <memory>
#include <optional>
#include "SignalPt.hpp"
namespace chrono = std::chrono;
using namespace std::chrono_literals;
template <typename Clock = chrono::steady_clock>
struct PIDState {
chrono::time_point<Clock> time;
double errSum;
double error;
double ctrlVal;
};
template <typename Clock = chrono::steady_clock>
auto pid_algebra(double kp, double ki, double kd) {
return [kp, ki, kd](PIDState<Clock> prev,
SignalPt<double, Clock> errSigl) -> PIDState<Clock> {
const chrono::duration<double> deltaT = errSigl.time - prev.time;
if (deltaT <= chrono::seconds{0}) return prev;
const auto errSum = std::fma(errSigl.value, deltaT.count(), prev.errSum);
const auto dErr = (errSigl.value - prev.error) / deltaT.count();
const auto ctrlVal = kp * errSigl.value + ki * errSum + kd * dErr;
return {errSigl.time, errSum, errSigl.value, ctrlVal};
};
}
|
9e31e6a50621a4ba39322a1777d041d05f34ceeb | abdb1ec5ec909bee16528ca0769f8f3b8a3344e7 | /My_code/code library/SHAHINVAICODE/Math/Prime (Sieve of Eratosthenes).cpp | 3107feb65a03b6e9306e69337663b7f58e599fdf | [] | no_license | ronee12/Code-Library | 3aba7e3d2d9097309702a4fc8ca4c86052d64073 | 41f6bfae5eaa9ef474b792c12b938964003a5862 | refs/heads/master | 2020-04-02T00:11:37.360873 | 2018-10-19T14:12:15 | 2018-10-19T14:12:15 | 153,792,980 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,729 | cpp | Prime (Sieve of Eratosthenes).cpp | #include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <list>
#include <stack>
#include <map>
#include <set>
#include <stdio.h>
#include<math.h>
using namespace std;
#define DEBUG
#define REP(i,a) for(i=0;i<a;i++)
#define FOR(i,a,b) for(i=a;i<b;i++)
#define VE vector<int>
#define SZ size()
#define PB push_back
int N = 1000002;
bool status[1000002];
long prime[80000];
void StorPrime()
{
long i, j, sqrtN,k=0;
for( i = 2; i <= N; i++ )
status[i] = 0;
prime[0]=2;
k=1;
sqrtN = long( sqrt((double)N) ); // have to check primes up to (sqrt(N))
for( i = 3; i <= sqrtN; i += 2 )
{
if( status[i] == 0 )
{
prime[k]=i;
k++;
for( j = i * i; j <= N; j += i + i )
status[j] = 1; // status of the multiple is 1
}
}
for(;i<1000002;i+=2)
if( status[i] == 0 )
{
prime[k]=i;
k++;
}
// printf("%ld\n",k);
}
void primcator(long n)
{
int j=0;
while(n>1)
{
/*if(status[n]==0&&n%2!=0)
{
printf("%ld",n);
break;
}*/
while(n%prime[j]==0)
{
n=n/prime[j];
printf("%ld ",prime[j]);
}
j++;
}
printf("\n");
}
int main()
{
StorPrime();
long n,p,q,m;
while(scanf("%ld",&n))
{
for(n=900;n<=999;n++)
if(n==2||(n%2!=0&&status[n]==0))
{
cout<<n<<endl;
}
if(n==0)
break;
if(n==2||(n%2!=0&&status[n]==0))
printf("This number is prime\n");
else
{
printf("This number is not prime\n");
primcator(n);
}
}
return 0;
}
|
98ff8df78f292e08e03777feb8eaf2d6b661e63a | e04f52ed50f42ad255c66d7b6f87ba642f41e125 | /appseed/core/filesystem/filemanager/filemanager_fs_simple_tree.h | 8344770eeb91c7dc6542ab0048bbd958874b6323 | [] | no_license | ca2/app2018 | 6b5f3cfecaa56b0e8c8ec92ed26e8ce44f9b44c0 | 89e713c36cdfb31329e753ba9d7b9ff5b80fe867 | refs/heads/main | 2023-03-19T08:41:48.729250 | 2018-11-15T16:27:31 | 2018-11-15T16:27:31 | 98,031,531 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,927 | h | filemanager_fs_simple_tree.h | #pragma once
namespace filemanager
{
namespace fs
{
namespace simple
{
class view;
enum EFolderType
{
FolderTypeNormal,
FolderTypeArtist,
};
class Folder :
virtual public object
{
public:
int64_t m_iFolder;
string m_strName;
EFolderType m_etype;
int32_t m_iImage;
int32_t m_iImageSelected;
};
class FolderArray :
public spa(Folder)
{
public:
int32_t FindAbsolute(int64_t iFolder);
};
class CLASS_DECL_CORE tree :
virtual public ::user::tree_data
{
public:
int32_t m_iIconFolderNormal;
int32_t m_iIconFolderSelected;
int32_t m_iIconArtistNormal;
int32_t m_iIconArtistSelected;
sp(::filemanager::fs::simple::view) m_pserver;
FolderArray m_foldera;
int64_t m_iParentFolder;
//sp(::data::simple_tree_data) m_spdataFs;
tree(::aura::application * papp);
virtual ~tree();
void _001OnItemExpand(::data::tree_item * pitem, ::action::context actioncontext);
void parse(const char * lpszSource);
sp(::data::tree_item) FindTreeItem(int64_t iFolder);
index _001GetItemImage(sp(::data::tree_item) pitem, bool bSelected);
virtual void assert_valid() const;
virtual void dump(dump_context & dumpcontext) const;
};
} // namespace simple
} // namespace fs
} // namespace filemanager
|
3398373abaf2c6b51abc6f4439c11830a84882ca | 5004238013c63fbb6b26fe3f5af98aa8b546a616 | /Practicas/2.2 Cadenas/funcion strspn.cpp | 5aede2530ff43005ebde9734afcd0c2e12151f2f | [] | no_license | UzzielSW/Curso-de-Cplus | 353d715c34f6bd9907ef9673b70243297dd0c80e | e79bc46596484c3accf0f3fd2708a5ef72a9cf42 | refs/heads/master | 2022-06-22T02:25:07.492179 | 2019-12-23T21:43:23 | 2019-12-23T21:43:23 | 224,347,418 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 540 | cpp | funcion strspn.cpp | #include <iostream>
#include <string.h>
using namespace std;
int main()
{
const char *cadena1 = "El valor es 3.14159";
const char *cadena2 = "aerls Eov";
cout<<"cadena1 = " << cadena1 << "\ncadena2 = " << cadena2
<<"\n\nLa longitud del segmento inicial de cadena1\n"
<<"que solo contiene caracteres de cadena 2 cadena2 = " << strspn(cadena1, cadena2) << endl;
return 0;
}
/*salida:
cadena1 = El valor es 3.14159
cadena2 = aerls Eov
La longitud del segmento inicial de cadena1
que solo contiene caracteres de cadena 2 = 12
*/ |
a845506ede83d10174d065b75335b4e4ca47c240 | a02ccb5dff094fad8bcd691dda234d50ff768299 | /tools/pytorch-quantization/src/tensor_quant.cpp | 4ea305fdb185c1e5aa495e60c687caf5810a2ffa | [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"ISC",
"BSD-2-Clause"
] | permissive | NVIDIA/TensorRT | 5520d5a6a5926a2b30dbdd2c5b2e4dfe6d1b429b | a167852705d74bcc619d8fad0af4b9e4d84472fc | refs/heads/release/8.6 | 2023-07-29T05:39:45.688091 | 2023-06-09T22:29:09 | 2023-06-09T23:04:18 | 184,657,328 | 8,026 | 2,096 | Apache-2.0 | 2023-09-13T17:30:16 | 2019-05-02T22:02:08 | C++ | UTF-8 | C++ | false | false | 3,218 | cpp | tensor_quant.cpp | /*
* SPDX-FileCopyrightText: Copyright (c) 1993-2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* 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 <torch/extension.h>
void fake_tensor_quant_cuda_inplace(at::Tensor, at::Tensor, int, bool);
at::Tensor fake_tensor_quant_cuda(at::Tensor, at::Tensor, int, bool);
at::Tensor fake_tensor_quant_with_axis_cuda(at::Tensor, at::Tensor, int, int, bool);
float bits_to_bound(int, int);
void fake_tensor_quant_inplace(at::Tensor inputs, at::Tensor amax, int num_bits=8, bool is_unsigned=false) {
TORCH_CHECK(amax.numel(), 1);
float bound = bits_to_bound(num_bits, is_unsigned);
float scale = bound / amax.data_ptr<float>()[0];
for (int i = 0; i < inputs.numel(); ++i) {
float output = round(inputs.data_ptr<float>()[i] * scale);
output = output > bound ? bound : output;
output = output < -bound ? -bound : output;
inputs.data_ptr<float>()[i] = output / scale;
}
}
void fake_tensor_quant_(at::Tensor inputs, at::Tensor amax, int num_bits=8, bool is_unsigned=false) {
TORCH_CHECK(amax.numel(), 1);
if (inputs.type().is_cuda()) {
fake_tensor_quant_cuda_inplace(inputs, amax, num_bits, is_unsigned);
} else {
fake_tensor_quant_inplace(inputs, amax, num_bits, is_unsigned);
}
}
at::Tensor fake_tensor_quant(at::Tensor inputs, at::Tensor amax, int num_bits=8, bool is_unsigned=false) {
TORCH_CHECK(amax.numel(), 1);
if (inputs.type().is_cuda()) {
return fake_tensor_quant_cuda(inputs, amax, num_bits, is_unsigned);
} else {
auto outputs = torch::clone(inputs);
fake_tensor_quant_inplace(outputs, amax, num_bits, is_unsigned);
return outputs;
}
}
at::Tensor fake_tensor_quant_with_axis(
at::Tensor inputs, at::Tensor amax, int axis, int num_bits=8, bool is_unsigned=false) {
TORCH_CHECK(amax.numel(), inputs.size(axis));
if (inputs.type().is_cuda()) {
return fake_tensor_quant_with_axis_cuda(
inputs, amax, axis, num_bits, is_unsigned);
} else {
throw std::runtime_error("axis is only supported on GPU.");
}
}
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
m.def("fake_tensor_quant_", &fake_tensor_quant_, "Fake Tensor Quant Inplace", py::arg("inputs"), py::arg("amax"),
py::arg("num_bits")=8, py::arg("unsigned")=false);
m.def("fake_tensor_quant", &fake_tensor_quant, "Fake Tensor Quant", py::arg("inputs"), py::arg("amax"),
py::arg("num_bits")=8, py::arg("unsigned")=false);
m.def("fake_tensor_quant_with_axis", &fake_tensor_quant_with_axis,
"Fake Tensor Quant with axis", py::arg("inputs"), py::arg("amax"),
py::arg("axis"), py::arg("num_bits")=8, py::arg("unsigned")=false);
}
|
cd4a08428f7660180507e2893ee53536c7062832 | 87464fd51294f061472244148aebce14e454f2a6 | /Practice/LeetCode/Problems/367.cpp | e520a0f7744baa512f192191f3b405557762c722 | [] | no_license | msk4862/DS-Algo | 6fb348e4ae0f685f58b89f619ce4edc6690c3817 | 10e41a8ce1879fceee6f064c81192aa3e981d8d4 | refs/heads/master | 2021-08-02T23:31:44.813569 | 2021-07-24T11:18:51 | 2021-07-24T11:18:51 | 199,693,163 | 4 | 3 | null | 2020-10-07T19:28:55 | 2019-07-30T16:56:48 | C++ | UTF-8 | C++ | false | false | 576 | cpp | 367.cpp | class Solution {
public:
bool isPerfectSquareHelper1(int num) {
double root = sqrt(num);
return root-(int)root == 0 ? true:false;
}
bool isPerfectSquareHelper2(int num) {
int l = 1, h = num;
while(l <= h) {
int mid = (h-l)/2 +l;
long sq = (long)mid*mid;
if(sq == num) return true;
else if(sq < num) l = mid+1;
else h = mid-1;
}
return false;
}
bool isPerfectSquare(int num) {
return isPerfectSquareHelper2(num);
}
};
|
c17f57f294255841df6578733443aee3a22846bb | 5456a27ad995b95714ea318fe1dec2426416d736 | /heap/main.cpp | ff1b4a7daeab6777f17ea5545a966b26829bbe5b | [] | no_license | anderson-pids/misc-estruturas_de_dados | a9b6dca9c8508e896488191411bf2332f2b400b2 | b06759211d1dff7d7735cbbcc155b503d8568aeb | refs/heads/master | 2021-05-29T15:24:55.929679 | 2015-04-11T04:16:00 | 2015-04-11T04:16:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,558 | cpp | main.cpp | #include <iostream>
using namespace std;
void troca(int *&vet, int num1, int num2)
{
int aux;
aux = vet[num1];
vet[num1] = vet[num2];
vet[num2] = aux;
}
void heapify(int *vet, int pai, int heapsize) {
int fl, fr, imaior;
while (true)
{
// O Operador << significa 2*pai
fl = (pai << 1) + 1;
// Filho esquerdo
fr = fl + 1;
// Filho direito
// Seleciona o maior entre o pai e o filho esquerdo
if ((fl < heapsize) && (vet[fl] > vet[pai])) imaior = fl;
else imaior = pai;
// Seleciona o maior entre o maior e o filho direito
if ((fr < heapsize) && (vet[fr] > vet[imaior])) imaior = fr;
// Se o maior for algum dos filhos, realizamos a troca
if (imaior != pai){
troca(vet, pai, imaior);
// Se houver a troca, temos que reajustar a subárvore
pai = imaior;
}
else break;
// Senão, acabou o reajuste
}
}
void build_heap(int *vet, int n) {
for (int i=(n>>1)-1; i>=0; i--)
{
heapify(vet, i, n);
};
}
void heapsort(int *vet, int n)
{
build_heap(vet, n);
for (int i=n-1; i > 0; i--)
{
troca(vet, 0,i);
heapify(vet, 0, i);
// imprime o heapify gerados
for(int x=0;x<n;x++)
{
cout << vet[x] << " ";
}
cout << endl;
}
}
int main()
{
int v[] = {45,32,9,10,23,1,89};
heapsort(v,7);
for(int i=0;i<=6;i++)
{
cout << v[i] << endl;
}
return 0;
}
|
974b33f83073f654ca5d4a56560e47c6fe1dce0d | e6b5d019e565ce55b2febfbe21b82c2a21723385 | /CodeLibrary/4 Geometry/2 直线与圆.cpp | e2c6ce3b84f1a015de7c1e0d43cc4c05854e9cf2 | [] | no_license | Sd-Invol/shoka | a628f7e8544d8eb110014316ab16ef3aed7b7433 | 1281cb43501d9ef127a2c67aebfba1905229502b | refs/heads/master | 2023-06-06T07:23:09.496837 | 2023-05-13T14:46:23 | 2023-05-13T14:46:23 | 13,319,608 | 37 | 17 | null | null | null | null | UTF-8 | C++ | false | false | 4,380 | cpp | 2 直线与圆.cpp | struct Line {
Point P , V; // P + Vt
double angle;
Line () {}
Line (Point A , Point B) {
P = A , V = B - A;
angle = atan2(V.y , V.x);
}
bool operator < (const Line& R) const {
return angle < R.angle;
}
Point point(double t) {
return P + V * t;
}
};
struct Circle {
Point O;
double r;
Circle () {}
Circle (Point _O , double _r) {
O = _O , r = _r;
}
Point point(double arc) {
return Point(O.x + cos(arc) * r , O.y + sin(arc) * r);
}
void input() {
O.input() , scanf("%lf",&r);
}
};
// 判定直线与圆相交
// 方法为连立直线的参数方程与圆的方程,很好理解
// t1,t2为两个参数,sol为点集。有了参数,射线线段什么的也很方便
int getLineCircleIntersection(Line L , Circle C , double& t1 , double& t2 , vector<Point>& sol) {
double a = L.V.x , b = L.P.x - C.O.x , c = L.V.y , d = L.P.y - C.O.y;
double e = a * a + c * c , f = 2 * (a * b + c * d);
double g = b * b + d * d - C.r * C.r;
double delta = f * f - 4 * e * g;
if (dcmp(delta) < 0) return 0;
if (dcmp(delta) == 0) {
t1 = t2 = -f / (2 * e);
sol.push_back(L.point(t1));
return 1;
}
t1 = (-f - sqrt(delta)) / (e + e);
t2 = (-f + sqrt(delta)) / (e + e);
sol.push_back(L.point(t1)) , sol.push_back(L.point(t2));
return 2;
}
// 判定圆和圆之间的关系
// 内含,内切,相交,重合,外切,相离
int getCircleCircleIntersection(Circle C1 , Circle C2 , vector<Point>& sol) {
double d = (C1.O - C2.O).len();
if (dcmp(d) == 0) { //同心
if (dcmp(C1.r - C2.r) == 0)//重合
return -1;
return 0;//内含
}
if (dcmp(C1.r + C2.r - d) < 0) return 0;//相离
if (dcmp(fabs(C1.r - C2.r) - d) > 0) return 0;//内含
double a = (C2.O - C1.O).angle();
double p = (C1.r * C1.r + d * d - C2.r * C2.r) / (2 * C1.r * d);
p = max(-1.0 , min(1.0 , p));
double da = acos(p);
Point P1 = C1.point(a - da) , P2 = C1.point(a + da);
sol.push_back(P1);
if (dcmp(da) == 0) return 1; //切
sol.push_back(P2);
return 2;
}
// 过点p到圆C的切线。返回切线条数,sol里为方向向量
int getTangents(Point P, Circle C, vector<Point>& sol) {
Point u = C.O - P;
double dist = u.len();
if(dist < C.r) return 0;
if(dcmp(dist - C.r) == 0) {
sol.push_back(Rotate(u, pi / 2));
return 1;
} else {
double ang = asin(C.r / dist);
sol.push_back(Rotate(u, +ang));
sol.push_back(Rotate(u, -ang));
return 2;
}
}
//两个圆的公切线,对应切点存在ab里面
int getTangents(Circle A , Circle B , Point* a , Point* b) {
int cnt = 0;
if (A.r < B.r) swap(A , B) , swap(a , b);
double dist = (A.O - B.O).len() , dr = A.r - B.r , sr = A.r + B.r;
if (dcmp(dist - dr) < 0) // 内含
return 0;
double base = (B.O - A.O).angle();
if (dcmp(dist) == 0 && dcmp(A.r - B.r) == 0)
return -1;//重合
if (dcmp(dist - dr) == 0) {//内切
a[cnt] = A.point(base);
b[cnt] = B.point(base);
return 1;
}
double ang = acos(dr / dist);//非上述情况,两条外公切线
a[cnt] = A.point(base + ang) , b[cnt] = B.point(base + ang) , ++ cnt;
a[cnt] = A.point(base - ang) , b[cnt] = B.point(base - ang) , ++ cnt;
if (dcmp(dist - sr) == 0) {// 外切,中间一条内公切线
a[cnt] = A.point(base) , b[cnt] = B.point(pi + base) , ++ cnt;
} else if (dcmp(dist - sr) > 0) {
ang = acos(sr / dist);//相离,两条内公切线
a[cnt] = A.point(base + ang) , b[cnt] = B.point(pi + base + ang) , ++ cnt;
a[cnt] = A.point(base - ang) , b[cnt] = B.point(pi + base - ang) , ++ cnt;
}
return cnt;
}
// 外接圆,三根中线交点
Circle CircumscribedCircle(Point A , Point B , Point C) {
Point D = (B + C) / 2 , d = Normal(B - C);
Point E = (A + C) / 2 , e = Normal(A - C);
Point P = GetLineIntersection(D , d , E , e);
return Circle(P , (C - P).len());
}
// 内接圆,黑科技
Circle InscribedCircle(Point A , Point B , Point C) {
double a = (B - C).len() , b = (A - C).len() , c = (A - B).len();
Point P = (A * a + B * b + C * c) / (a + b + c);
return Circle(P , fabs(DistancePointToLine(P , A , B)));
}
|
66df006907dda357aa8a3f9911a4d5959be59942 | 6939c6a61ade606e60333b00bb0048029236b2a3 | /include/libcargo/file.h | 395069b0278505f65f8e26ed63a7ae7b2e6ab457 | [
"MIT"
] | permissive | masatoshihanai/Cargo | 78ff64f5a725fdf9bf3aa394aaf4186789a4f2b8 | ecdb3c8910cdeef8fdc39f145b896d5e75730ca7 | refs/heads/master | 2020-09-07T03:44:49.223885 | 2019-11-09T13:36:08 | 2019-11-09T13:36:08 | 220,646,242 | 1 | 0 | null | 2019-11-09T13:28:15 | 2019-11-09T13:28:15 | null | UTF-8 | C++ | false | false | 3,486 | h | file.h | // MIT License
//
// Copyright (c) 2018 the Cargo authors
//
// 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.
#ifndef CARGO_INCLUDE_LIBCARGO_FILE_H_
#define CARGO_INCLUDE_LIBCARGO_FILE_H_
#include <condition_variable>
#include <fstream>
#include <map>
#include <mutex>
#include <queue>
#include <string>
#include <vector>
#include "classes.h"
#include "types.h"
namespace cargo {
std::pair<std::string, std::string> parse_road_path(const std::string &);
Speed parse_speed(const std::string &);
/* These functions throw runtime_errors if the file cannot be read. */
size_t read_nodes(const Filepath &, KVNodes &); // return # nodes
size_t read_nodes(const Filepath &, KVNodes &, BoundingBox &); // output bbox
size_t read_edges(const Filepath &, KVEdges &); // return # edges
size_t read_problem(const Filepath &, ProblemSet &); // return # trips
/* Thread-safe Logger for generating solplot.py input
* The logger is "event-based"; certain events trigger putting different
* messages into the log file. */
class Logger {
public:
Logger(const Filepath &);
~Logger();
void run();
void stop();
/* put_r_message: route update
* put_v_message: vehicle position update
* put_m_message: match update
* put_a_message: vehicle arrived
* put_t_message: customer timeout
* put_p_message: customer pickup
* put_d_message: customer dropoff
* put_l_message: vehicle load change
* put_q_message: queue size
* */
static void put_r_message(const vec_t<Wayp> &, const Vehicle &);
static void put_r_message(const vec_t<Wayp> &, const VehlId &, const RteIdx &);
static void put_v_message(const std::map<VehlId, vec_t<std::pair<NodeId, DistInt>>> &);
static void put_m_message(const vec_t<CustId> &,
const vec_t<CustId> &,
const VehlId &);
static void put_a_message(const vec_t<VehlId> &);
static void put_t_message(const vec_t<CustId> &);
static void put_p_message(const vec_t<CustId> &);
static void put_d_message(const vec_t<CustId> &);
static void put_l_message(const vec_t<VehlId> &);
static void put_q_message(const int &);
static void push(std::string);
std::string pop();
private:
static std::queue<std::string> queue_;
static std::condition_variable condition_;
static std::mutex mutex_;
std::ofstream file_output_;
bool done_;
};
} // namespace cargo
#endif // CARGO_INCLUDE_LIBCARGO_FILE_H_
|
7f2d697d7ca13e164ede2fed1afd7529bc80ac86 | f090a5185d7bdd47608346d9ed94fe522d4cbe2b | /ADS1/ADS_Unit04/datatypes/Source.cpp | e14d6e0a936d24f61a6ba1ecb1616f168394981a | [] | no_license | Breenori/Programs | 71c08eac6bca815e5df62ff9191e62585275019b | 4cbe74d7efa02cbb4d7910bc601bcbbbc21aeebf | refs/heads/master | 2020-12-06T10:29:01.485633 | 2020-10-31T13:45:30 | 2020-10-31T13:45:30 | 232,439,000 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 113 | cpp | Source.cpp | #include<iostream>
using std::cout;
using std::string;
void main()
{
string s("hallo");
cout << s;
} |
2856576efe7fb71c19bbff47bef8360004678f61 | 6a149b00b43b0eef02a6cb13b9ec878cdae40fbc | /src/monitor/instrument.hpp | 372a467036921d35984d2604dcb8ba5e8e65087d | [] | no_license | 3343/edge | 300e56d3c96015c43596f1aafa00f00e6d0f145b | ee2af08e249b078778835df2f63acc15e762d2c7 | refs/heads/master | 2023-06-11T19:59:00.111629 | 2022-04-14T11:26:38 | 2022-04-14T11:26:38 | 93,911,911 | 33 | 28 | null | 2023-05-25T13:11:04 | 2017-06-10T02:52:57 | C++ | UTF-8 | C++ | false | false | 3,262 | hpp | instrument.hpp | /**
* @file This file is part of EDGE.
*
* @author Alexander Breuer (anbreuer AT ucsd.edu)
*
* @section LICENSE
* Copyright (c) 2021, Friedrich Schiller University Jena
* Copyright (c) 2016-2018, Regents of the University of California
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* @section DESCRIPTION
* Instrumentation macros.
**/
#ifndef EDGE_MONITOR_INSTRUMENT_H_
#define EDGE_MONITOR_INSTRUMENT_H_
#ifdef PP_USE_INSTR
#include <scorep/SCOREP_User.h>
#ifdef __GNUC__
// gcc throws unused variable errors and the ignored diagnostic doesn't work (5.4.1) -> touch manually
class gccDisableUnusedScoreP {
void dummy() { SCOREP_User_LastFileHandle+=0; SCOREP_User_LastFileName+=0; }
};
#endif
// forward scorep-macros for instrumentation
#define PP_INSTR_FUN(str) SCOREP_USER_REGION(str,SCOREP_USER_REGION_TYPE_FUNCTION)
#define PP_INSTR_REG_DEF(str) SCOREP_USER_REGION_DEFINE(str)
#define PP_INSTR_REG_BEG(str1,str2) SCOREP_USER_REGION_BEGIN(str1,str2,SCOREP_USER_REGION_TYPE_COMMON)
#define PP_INSTR_REG_BEG_DYN(str1,str2) SCOREP_USER_REGION_BEGIN(str1,str2,SCOREP_USER_REGION_TYPE_DYNAMIC)
#define PP_INSTR_PAR_UINT64(str1,str2) SCOREP_USER_PARAMETER_UINT64(str1,str2)
#define PP_INSTR_REG_END(str) SCOREP_USER_REGION_END(str)
#define PP_INSTR_REG_NAME_BEG(str) SCOREP_USER_REGION_BY_NAME_BEGIN(str,SCOREP_USER_REGION_TYPE_COMMON)
#define PP_INSTR_REG_NAME_END(str) SCOREP_USER_REGION_BY_NAME_END(str)
#else
// set empty macros in the case of disabled instrumentation
#define PP_INSTR_FUN(str)
#define PP_INSTR_REG_DEF(str)
#define PP_INSTR_REG_BEG(str1,str2)
#define PP_INSTR_REG_BEG_DYN(str1,str2)
#define PP_INSTR_PAR_UINT64(str1,str2)
#define PP_INSTR_REG_END(str)
#define PP_INSTR_REG_NAME_BEG(str)
#define PP_INSTR_REG_NAME_END(str)
#endif
#endif
|
735c440fce49c68df649d960946acfa8ebc08a33 | eae5f9ef31c485c290d8ccd6e865d1a1b49ba9a4 | /src/exception/exception-traces.cpp | a02858182e5873c009b241d3e94973960261635f | [
"BSD-2-Clause"
] | permissive | corentinberge/dynamic-graph | a2fb731c51a6306ddfab25b6385b000d1c7f43c5 | 89b3ab9cbac71daaa2eddb75947299270868a31b | refs/heads/master | 2020-06-14T13:43:56.204017 | 2019-08-12T07:24:53 | 2019-08-12T07:24:53 | 194,625,084 | 1 | 0 | NOASSERTION | 2019-07-01T07:49:34 | 2019-07-01T07:49:32 | null | UTF-8 | C++ | false | false | 1,055 | cpp | exception-traces.cpp | /*
* Copyright 2010,
* François Bleibel,
* Olivier Stasse,
*
* CNRS/AIST
*
*/
#include <dynamic-graph/exception-traces.h>
#include <stdarg.h>
#include <cstdio>
using namespace dynamicgraph;
/* --------------------------------------------------------------------- */
/* --- CLASS ----------------------------------------------------------- */
/* --------------------------------------------------------------------- */
const std::string ExceptionTraces::EXCEPTION_NAME = "Traces";
ExceptionTraces::
ExceptionTraces ( const ExceptionTraces::ErrorCodeEnum& errcode,
const std::string & msg )
:ExceptionAbstract(errcode,msg)
{
}
ExceptionTraces::
ExceptionTraces ( const ExceptionTraces::ErrorCodeEnum& errcode,
const std::string & msg,const char* format, ... )
:ExceptionAbstract(errcode,msg)
{
va_list args;
va_start(args,format);
const unsigned int SIZE = 256;
char buffer[SIZE];
vsnprintf(buffer,SIZE,format,args);
message += buffer;
va_end(args);
}
/*
* Local variables:
* c-basic-offset: 2
* End:
*/
|
f43cc8256aa2515acb02c634d52aa0984e164570 | edfacb30dda27b2537c47e7c42996f8489fac39d | /example/http/httpscontext.cpp | fdcbcca73ca2f8f412e1a8e752c9dd03d9871d09 | [
"Apache-2.0"
] | permissive | hvuSyslogic/librapid | 6b5a7a264f1cffe442ba2098b2802150de209c15 | 95864eed190bee0752502f88c57c7dcef6965050 | refs/heads/master | 2020-03-26T00:29:16.793294 | 2016-07-04T03:10:00 | 2016-07-04T03:10:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,925 | cpp | httpscontext.cpp | //---------------------------------------------------------------------------------------------------------------------
// Copyright (c) 2015-2016 librapid project. All rights reserved.
// More license information, please see LICENSE file in module root folder.
//---------------------------------------------------------------------------------------------------------------------
#include "httpserverconfigfacade.h"
#include "openssl/sslmanager.h"
#include "httpscontext.h"
HttpsContext::HttpsContext()
: selectedALPN_(ALPN_HTTP_V1_1)
, engine_(*SSLManager::getInstance().getDefaultSSLContext()) {
engine_.reset();
}
HttpsContext::~HttpsContext() {
}
void HttpsContext::handshake(rapid::ConnectionPtr &pConn) {
auto pSource = pConn->getReceiveBuffer();
auto pDest = pConn->getSendBuffer();
do {
if (engine_.handshake(pSource, pDest)) {
selectedALPN_ = engine_.getALPN();
if (selectedALPN_ == APLNProtocols::ALPN_HTTP_V2) {
hasUpgraded_ = true; // Upgrade HTTP2 from HTTPs
}
HttpContext::handshake(pConn);
break;
}
if (!pDest->isEmpty()) {
if (!pDest->send(pConn)) break;
}
} while (pSource->readSome(pConn));
}
void HttpsContext::readLoop(rapid::ConnectionPtr &pConn) {
uint32_t bytesToRead = 0;
auto pBuffer = pConn->getReceiveBuffer();
do {
if (!pBuffer->isEmpty()) {
if (engine_.decrypt(pBuffer)) {
pHttpCodec_->readLoop(pConn, bytesToRead);
if (!bytesToRead) break; // Decode done!
}
}
} while (pBuffer->readSome(pConn));
}
void HttpsContext::sendMessage(rapid::ConnectionPtr &pConn) {
auto pBuffer = pConn->getSendBuffer();
while (!pHttpResponse_->send(pConn, pHttpRequest_)) {
engine_.encrypt(pBuffer);
if (!pConn->sendAsync()) {
return;
}
}
pHttpResponse_->reset();
pHttpRequest_->removeAll();
readLoop(pConn);
}
void HttpsContext::onDisconnect(rapid::ConnectionPtr &pConn) {
engine_.reset();
HttpContext::onDisconnect(pConn);
} |
e5286d291ea0e3bb58ff086a1ecd8f487f78a451 | c2e2ca8922f572ee70415b108e30ac118f5678df | /Qt/Components/pqApplyPropertiesManager.cxx | bb7995e459f0597db0d0d3661da972e4c8d973ab | [
"MIT",
"LicenseRef-scancode-paraview-1.2",
"Apache-2.0",
"LicenseRef-scancode-protobuf",
"BSD-3-Clause"
] | permissive | niboliang/ParaView | 78386708a74621592683155ed72bcacd3e7f9bee | 8c5941f9f5f0579e05d4c08220521e1585ce5b13 | refs/heads/master | 2023-05-01T02:44:25.827048 | 2021-05-24T03:11:20 | 2021-05-24T03:11:20 | 369,718,664 | 0 | 0 | NOASSERTION | 2021-05-24T03:11:21 | 2021-05-22T04:59:41 | null | UTF-8 | C++ | false | false | 2,376 | cxx | pqApplyPropertiesManager.cxx | /*=========================================================================
Program: ParaView
Module: pqApplyPropertiesManager.cxx
Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
All rights reserved.
ParaView is a free software; you can redistribute it and/or modify it
under the terms of the ParaView license version 1.2.
See License_v1.2.txt for the full ParaView license.
A copy of this license can be obtained by contacting
Kitware Inc.
28 Corporate Drive
Clifton Park, NY 12065
USA
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 AUTHORS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
#include "pqApplyPropertiesManager.h"
#include "pqApplicationCore.h"
#include "pqUndoStack.h"
#include "vtkTimerLog.h"
#include <QDebug>
//-----------------------------------------------------------------------------
pqApplyPropertiesManager::pqApplyPropertiesManager(QObject *p)
: QObject(p)
{
pqApplicationCore::instance()->registerManager("APPLY_PROPERTIES", this);
}
//-----------------------------------------------------------------------------
pqApplyPropertiesManager::~pqApplyPropertiesManager()
{
}
//-----------------------------------------------------------------------------
void pqApplyPropertiesManager::applyProperties()
{
BEGIN_UNDO_SET("Apply");
vtkTimerLog::MarkStartEvent("Apply");
emit this->preApply();
emit this->apply();
emit this->postApply();
END_UNDO_SET();
vtkTimerLog::MarkEndEvent("Apply");
// Essential to render all views.
pqApplicationCore::instance()->render();
emit this->applyStateChanged(false);
emit this->resetStateChanged(false);
}
|
574d47abc04e81d25ab7f1934237e990e0296afe | 60c3887edb48c9f19a1698211376e2fd344dfc88 | /makeup.cpp | cff453318246b8d38963b11fd97f022d50f73926 | [
"MIT"
] | permissive | takemegod/-matching_rotation_kidtoy | 9d10bba60f8cd6aa817ed1d3c6970c804d1c28e1 | 9164e0a05a10668993ea0ebaa6640a5962259492 | refs/heads/master | 2020-06-16T05:31:09.234468 | 2016-12-01T01:29:28 | 2016-12-01T01:29:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,100 | cpp | makeup.cpp | #include "stdafx.h"
#include "opencv2/objdetect.hpp"
#include "opencv2/videoio.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
#include <opencv2/core/utility.hpp>
#include <opencv2/core/core.hpp>
#include <opencv2/opencv.hpp>
#include "opencv2/video/tracking.hpp"
#include <opencv2/video/background_segm.hpp>
#include <iostream>
#include <stdio.h>
#include <string>
#include <sstream>
#include <ctype.h>
#include <thread>
#include <time.h>
#include <stdlib.h>
#include <vector>
#include <iomanip>
#include <crtdbg.h> //memory leak detector
#ifdef _DEBUG
#define TRACE(s) OutputDebugString(s)
#else // _DEBUG
#define TRACE(s)
#endif // _DEBUG
using namespace std;
using namespace cv;
/////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// opencv 1st detection square 2nd object detection 3rd matching and comput position to return
// 2016-09-12 Author xyz email: yongzhexu@hotmail.com based code from opencv example
//
/////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <opencv2/features2d.hpp>
#include <opencv2/features2d/features2d.hpp>
#include <xfeatures2d/nonfree.hpp>
#include "opencv2/calib3d/calib3d.hpp"
#include "stats.h" // Stats structure definition
#include "utils.h" // Drawing and printing functions
using namespace cv;
using namespace std;
Mat src; Mat src_gray; Mat subimage_roi; Mat matchMat;
//for image rotation parameter
static int rotation_angle = 0;
Mat imgRotated;
//for subimage rect
int x, y, w, h;
Rect bounding_rect; Rect bounding_rect2;
Mat canny_output; Mat subimage; Mat subimagerotation;
CvPoint pointx, pointy;
vector<vector<Point> > contours;
vector<vector<Point> > contours_sub;
vector<Vec4i> hierarchy;
vector<Point> approx_poly;
vector<Point2f> bb;
//check position value data
bool check_positiondata = false;
//time performance check
double t = (double)getTickCount();
//for canny edge threshold
int thresh = 80; int max_thresh = 255;
RNG rng(12345);
bool check_squre;
float queryidx_x, queryidx_y, trainidx_x, trainidx_y;
double max_dist = 0; double min_dist = 100; double angle(Point pt1, Point pt2, Point pt0);
long double average_value_max, average_value_min;
long double matching_count = 0;
long double data_avg = 0;
// Function header and parameter & thresh_callback find submatrix
void thresh_callback(int, void*);
void cacFeature_Compare(cv::Mat img_object, cv::Mat img_scene, int angle);
//warpaffine rotation input submatrix
//Mat image2rotation(Mat subimagerotation, int angle);
//test code here
Mat sub_test1;
void thresh_square_detection(int, void*);
Mat test_drawing; Mat test_src_gray;
void thresh_callback_test(int, void*);
void surftest(Mat baseimge, Mat scene);
void useSurfDetector(Mat img_1, Mat img_2,int roi_angle);
Mat test_subimage;
Mat kaka; Mat kaka2;
Mat imagegray1, imagegray2, imageresult1, imageresult2;
//test code2 here
void cornerHarris_demo(Mat src_gray);
void cacFeature_Compare(cv::Mat img_object, cv::Mat img_scene, int angle)
{
cout << "angle_value is : " << angle << endl;
//rotation img_object
int iImageHieght = img_object.rows / 2 + 0.5;
int iImageWidth = img_object.cols / 2 + 0.5;
Mat matRotation = getRotationMatrix2D(Point(iImageWidth, iImageHieght), angle, 1); //change 0 to 180 rotation
warpAffine(img_object, imgRotated, matRotation, img_object.size());
img_object = imgRotated.clone();
imgRotated.release();
Mat img_matches;
matching_count++;
int matching_data = 0;
CV_Assert(img_object.data != NULL && img_scene.data != NULL);
// keypoint initial
std::vector<KeyPoint> img_object_keypoint, img_scene_keypoint;
//cv::Ptr<cv::ORB> detector = cv::ORB::create();
//cv::Ptr<cv::ORB> detector = cv::ORB::create(800, 1.0f, 2, 10, 0, 2, 0, 10);
//Ptr <xfeatures2d::SURF> detector = xfeatures2d::SURF::create(2000, 4, 3, true, true);
//Ptr <xfeatures2d::SIFT> detector = xfeatures2d::SIFT::create(800, 3, 0.04, 10, 1.6);
//Ptr <xfeatures2d::SIFT> detector = xfeatures2d::SIFT::create();
Ptr <xfeatures2d::SURF> detector = xfeatures2d::SURF::create(); //maybe it's your silver buillet
//cv::Ptr<cv::AKAZE> detector = cv::AKAZE::create();
detector->detect(img_object, img_object_keypoint);
detector->detect(img_scene, img_scene_keypoint);
// compute feature
Mat descriptorMat1, descriptorMat2;
detector->compute(img_object, img_object_keypoint, descriptorMat1);
detector->compute(img_scene, img_scene_keypoint, descriptorMat2);
// feature matching for orb
//BFMatcher matcher;
//BFMatcher matcher(NORM_L2);
//feature matching for surf
//BFMatcher matcher(NORM_HAMMING); // orb
FlannBasedMatcher matcher;
vector<DMatch> mathces;
vector <vector<DMatch>> matches2;
vector< DMatch > good_matches;
matcher.match(descriptorMat1, descriptorMat2, mathces);
const float minratio = 1.f / 1.5f;
mathces.clear();
matcher.knnMatch(descriptorMat1, descriptorMat2, matches2, 2);
try
{
//if (mathces.size() || matches2.size())
for (size_t i = 0; i<matches2.size(); i++)
{
const cv::DMatch& bestMatch = matches2[i][0];
const cv::DMatch& betterMatch = matches2[i][1];
float distanceRatio = bestMatch.distance / betterMatch.distance;
// Pass only matches where distance ratio between
// nearest matches is greater than 1.5
// (distinct criteria)
if (distanceRatio < minratio)
{
mathces.push_back(bestMatch);
}
}
//drawMatches(img_object, keyPoint1, img_scene, keyPoint2, mathces, img_matches);
//-- Show detected matches
// find good match
max_dist = 0;
min_dist = 100;
for (int i = 0; i < descriptorMat1.rows; i++)
{
double dist = mathces[i].distance;
if (dist < min_dist) min_dist = dist;
if (dist > max_dist) max_dist = dist;
if (mathces[i].distance <= (3 * min_dist))
{
good_matches.push_back(mathces[i]);
matching_data++;
}
}
////matching data count and show avg matching dataset
//data_avg += matching_data;
//cout << " data set is : " << matching_data << endl;
//cout << " count data is : " << matching_count << " avg data value is : " << (data_avg / matching_count) << endl;
if (good_matches.size() == 0)
{
cout << good_matches.size() << endl;
cout << "have empty good_matches resut count is: " << matching_count << endl;
}
//else if (good_matches.size() > 5)
{
////-- Localize the object
std::vector<Point2f> obj;
std::vector<Point2f> scene;
drawMatches(img_object, img_object_keypoint, img_scene, img_scene_keypoint,
good_matches, img_matches, Scalar(255, 0, 0), Scalar::all(-1),
vector<char>(), DrawMatchesFlags::DEFAULT);
//-- Show detected matches
imshow("Good Matches & Object detection 1", img_matches);
//-- Localize the object
//std::vector<Point2f> obj;
//std::vector<Point2f> scene;
for (int i = 0; i < good_matches.size(); i++)
{
//-- Get the keypoints from the good matches
obj.push_back(img_object_keypoint[good_matches[i].queryIdx].pt);
scene.push_back(img_scene_keypoint[good_matches[i].trainIdx].pt);
}
Mat H = findHomography(obj, scene, CV_RANSAC);
//-- Get the corners from the image_1 ( the object to be "detected" )
std::vector<Point2f> obj_corners(4);
std::vector<Point2f> scene_corners(4);
obj_corners[0] = cvPoint(0, 0);
obj_corners[1] = cvPoint(img_object.cols, 0);
obj_corners[2] = cvPoint(img_object.cols, img_object.rows);
obj_corners[3] = cvPoint(0, img_object.rows);
perspectiveTransform(obj_corners, scene_corners, H);
cout.setf(ios::fixed);
int distance_value_min = 15;
int distance_value_max = 400;
if (
(scene_corners[1].x > scene_corners[0].x) && (scene_corners[2].x > scene_corners[3].x) &&
(scene_corners[3].y > scene_corners[0].y) && (scene_corners[2].y > scene_corners[1].y) &&
(scene_corners[0].x > 0) && (scene_corners[0].y > 0) &&
(scene_corners[1].x > 0) && (scene_corners[1].y > 0) &&
(scene_corners[2].x > 0) && (scene_corners[2].y > 0) &&
(scene_corners[3].x > 0) && (scene_corners[3].y > 0) &&
(abs(scene_corners[0].x - scene_corners[0].y > distance_value_min)) &&
(abs(scene_corners[1].x - scene_corners[1].y > distance_value_min)) &&
(abs(scene_corners[2].x - scene_corners[2].y > distance_value_min)) &&
(abs(scene_corners[3].x - scene_corners[3].y > distance_value_min)) &&
(abs(scene_corners[0].x - scene_corners[0].y) > distance_value_min) &&
(abs(scene_corners[1].x - scene_corners[1].y) > distance_value_min) &&
(abs(scene_corners[2].x - scene_corners[2].y) > distance_value_min) &&
(abs(scene_corners[3].x - scene_corners[3].y) > distance_value_min) &&
// distance from square fix small square small value each positon neeed different
(abs(scene_corners[0].x - scene_corners[1].x) > distance_value_min) &&
(abs(scene_corners[0].y - scene_corners[1].y) > distance_value_min) &&
(abs(scene_corners[1].x - scene_corners[2].x) > distance_value_min) &&
(abs(scene_corners[1].y - scene_corners[2].y) > distance_value_min) &&
(abs(scene_corners[2].x - scene_corners[3].x) > distance_value_min) &&
(abs(scene_corners[2].y - scene_corners[3].y) > distance_value_min) &&
(abs(scene_corners[0].x - scene_corners[3].x) > distance_value_min) &&
(abs(scene_corners[0].y - scene_corners[3].y) > distance_value_min) &&
(abs(scene_corners[0].y - scene_corners[3].y) > distance_value_min) &&
(abs(scene_corners[1].y - scene_corners[2].y) > distance_value_min) &&
(abs(scene_corners[2].x - scene_corners[3].x) > distance_value_min) &&
(abs(scene_corners[1].y - scene_corners[3].y) > distance_value_min) &&
(abs(scene_corners[1].x - scene_corners[3].x) > distance_value_min) &&
(abs(scene_corners[0].x - scene_corners[2].x) > distance_value_min) &&
(abs(scene_corners[0].y - scene_corners[2].y) > distance_value_min) &&
// distance from square fix small square big value
(abs(scene_corners[0].x - scene_corners[1].x) < distance_value_max) &&
(abs(scene_corners[0].y - scene_corners[3].y) < distance_value_max) &&
(abs(scene_corners[1].y - scene_corners[2].y) < distance_value_max) &&
(abs(scene_corners[2].x - scene_corners[3].x) < distance_value_max) &&
(abs(scene_corners[0].y - scene_corners[1].y) + abs(scene_corners[3].y - scene_corners[2].y) > distance_value_min)
)
{
cout << "it's value is nice to me " << endl;
check_positiondata = true;
}
if (check_positiondata == true)
{
//-- Draw lines between the corners (the mapped object in the scene - image_2 )
line(src, scene_corners[0], scene_corners[1], Scalar(0, 255, 0), 4);
line(src, scene_corners[1], scene_corners[2], Scalar(0, 255, 0), 4);
line(src, scene_corners[2], scene_corners[3], Scalar(0, 255, 0), 4);
line(src, scene_corners[3], scene_corners[0], Scalar(0, 255, 0), 4);
cout << "******************" << endl;
cout << setprecision(0) << scene_corners[0] + Point2f(img_object.cols, 0) << scene_corners[1] + Point2f(img_object.cols, 0) << endl;
cout << setprecision(0) << scene_corners[1] + Point2f(img_object.cols, 0) << scene_corners[2] + Point2f(img_object.cols, 0) << endl;
cout << setprecision(0) << scene_corners[2] + Point2f(img_object.cols, 0) << scene_corners[3] + Point2f(img_object.cols, 0) << endl;
cout << setprecision(0) << scene_corners[3] + Point2f(img_object.cols, 0) << scene_corners[0] + Point2f(img_object.cols, 0) << endl;
cout << "******************" << endl;
cout << "angle is " << angle << endl;
stringstream angle_w;
angle_w << "Good Matches & Object detection result 1 angle is";
angle_w << angle;
cout << "***----------------------------------***" << endl;
cout << "Good Matches & Object detection result 1" << endl;
cout << "***----------------------------------***" << endl;
imshow(angle_w.str(), src);
cvWaitKey(0);
}
obj_corners.clear();
scene_corners.clear();
obj.clear();
scene.clear();
H.release();
src.release();
}
check_positiondata = false;
good_matches.clear();
img_matches.release();
img_object.release();
img_scene.release();
mathces.clear();
descriptorMat1.release();
descriptorMat2.release();
}
catch (exception e)
{
cout << "my function T^T ;" << endl;
}
}
/** @function thresh_callback */
void thresh_callback(int, void*)
{
check_squre = false;
/// Detect edges using canny
Canny(src_gray, canny_output, thresh, thresh * 2, 3);
/// Find contours
findContours(canny_output, contours, hierarchy, CV_RETR_CCOMP, CHAIN_APPROX_SIMPLE, Point(0, 0));
//findContours(canny_output, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, Point(0, 0));
/// Get the moments
vector<Moments> mu(contours.size());
vector<Point2f> mc(contours.size());
// Draw contours and Calculate the area with the moments 00 and compare with the result of the OpenCV function
Mat drawing = Mat::zeros(canny_output.size(), CV_8UC3);
/// Get the mass centers:
for (int i = 0; i < (int)(contours.size()); i++)
{
Scalar color = Scalar(rng.uniform(255, 255), rng.uniform(255, 255), rng.uniform(255, 255));
mu[i] = moments(contours[i], false);
double eps = contours[i].size()*0.04;
approxPolyDP(contours[i], approx_poly, eps, true);
///*approx find square edge and rectangle and countare more than value *///
if ((approx_poly.size() == 4) && fabs(contourArea(Mat(approx_poly))>1500 && isContourConvex(Mat(approx_poly))))
{
double maxCosine = 0;
for (int j = 2; j < 5; j++)
{
// find the maximum cosine of the angle between joint edges
double cosine = fabs(angle(approx_poly[j % 4], approx_poly[j - 2], approx_poly[j - 1]));
maxCosine = MAX(maxCosine, cosine);
}
if (maxCosine < 0.3)
{
Scalar color = Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255));
mc[i] = Point2f((float)(mu[i].m10) / (float)(mu[i].m00), (float)(mu[i].m01) / (float)(mu[i].m00));
bounding_rect = boundingRect(contours[i]);
x = bounding_rect.x;
y = bounding_rect.y;
w = bounding_rect.width;
h = bounding_rect.height;
Rect rect(x, y, w, h);
rectangle(src_gray, Point(x, y), Point(x + w, y + h), Scalar(255, 255, 255), 1, 1, 0);
//subimage = src_gray(rect);
rectangle(drawing, Point(x, y), Point(x + w, y + h), Scalar(255, 255, 255), 1, 1, 0);
subimage = drawing(rect);
subimage_roi = subimage.clone();
check_squre = true;
//test code improve performance thread
//std::thread image2rotation_thread[119];
//for (int count_t = 0; count_t < 360; count_t = count_t + 5)
//{
//image2rotation_thread[count_t] = (image2rotation(subimage, count_t));
//}
//subimagerotation = warpaffine(subimage, count_angle);
//imshow("matrix show", subimage);
}
}
else
{
check_squre = false;
drawContours(src_gray, contours, i, color, 4, 8, hierarchy, 0, Point());
drawContours(drawing, contours, i, color, 4, 8, hierarchy, 0, Point());
mc[i] = Point2f((float)(mu[i].m10) / (float)(mu[i].m00), (float)(mu[i].m01) / (float)(mu[i].m00));
//cornerHarris_demo(src_gray);
}
if (check_squre = true)
{
subimage_roi = subimage.clone();
circle(drawing, mc[i], 4, color, -1, 8, 0);
}
//circle(drawing, mc[i], 4, color, -1, 8, 0);
}
if (check_squre == true)
{
src_gray(cv::Rect(x, y, w, h)) = 0;
drawing(cv::Rect(x, y, w, h)) = 0;
}
// for count rectangle
vector<vector<Point> >poly(contours.size());
findContours(canny_output, contours_sub, hierarchy, CV_RETR_EXTERNAL, CHAIN_APPROX_SIMPLE, Point(0, 0));
for (int k = 0; k < (int)(contours_sub.size()); k++)
{
Scalar color = Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255));
double eps = contours[k].size()*0.16;
approxPolyDP(contours[k], approx_poly, eps, true);
approxPolyDP(Mat(contours[k]), poly[k], 5, true);
drawContours(drawing, poly, k, color, 1, 8, vector<Vec4i>(), 0, Point());
double maxCosine = 0;
//for (int j = 0; j < 35; j++)
//{
// find the maximum cosine of the angle between joint edges
//}
for (maxCosine = 0; maxCosine < 1; maxCosine += 0.1)
{
double cosine = fabs(angle(approx_poly[k], approx_poly[k], approx_poly[k]));
maxCosine = MAX(maxCosine, cosine);
stringstream rect_sub_roi;
rect_sub_roi << k;
cv::Rect bounding_rect2 = boundingRect(contours_sub[k]);
x = bounding_rect2.x;
y = bounding_rect2.y;
w = bounding_rect2.width;
h = bounding_rect2.height;
Rect rect2(x, y, w, h);
//if (fabs(contourArea(Mat(approx_poly)) > 10))
rectangle(src_gray, Point(x, y), Point(x + w, y + h), Scalar(255, 255, 255), 1, 1, 0);
rectangle(drawing, Point(x, y), Point(x + w, y + h), Scalar(255, 255, 255), 1, 1, 0);
//cout << "approx_poly.size() is : " << approx_poly.size() << endl;
int data_conx = poly[k].size();
char data_pchar[6];
const char *pchar = _itoa(data_conx, data_pchar, 5);
Mat rect_sub_image_roi = drawing(rect2);
IplImage ipl_img(rect_sub_image_roi);
CvFont font;
cvInitFont(&font, CV_FONT_HERSHEY_COMPLEX, 1, 0.25, 0.25, 0.25, 1);
cvPutText(&ipl_img, pchar, cvPoint(15, 15), &font, CV_RGB(255, 255, 0));
Mat rect_sub_image_roi2 = src_gray(rect2);
IplImage ipl_img2(rect_sub_image_roi2);
CvFont font2;
cvInitFont(&font2, CV_FONT_HERSHEY_COMPLEX, 1, 0.25, 0.25, 0.25, 1);
cvPutText(&ipl_img2, pchar, cvPoint(15, 15), &font2, CV_RGB(255, 255, 0));
//imshow(rect_sub_roi.str(), rect_sub_image_roi);
//cvWaitKey(0);
//imshow(rect_sub_roi.str(), rect_sub_image_roi);
}
}
if ((!src_gray.empty()) || (check_squre == true))
{
if ((!subimage_roi.empty()) && (!src_gray.empty()))
{
//Mat img_test = imread("rick2.png");
//cvtColor(img_test, img_test, CV_BGR2GRAY);
//cacFeature_Compare(img_test, src_gray);
//cacFeature_Compare(subimage_roi, drawing, 0);
//test code for thread language
int angle_value = 0;
imshow("subimage roi ", subimage_roi);
//cacFeature_Compare(subimage_roi, drawing, 0);
for (angle_value = 0; angle_value <= 360; angle_value = angle_value + 3)
{
cout << angle_value << endl;
//cacFeature_Compare(subimage_roi, drawing, angle_value);
//useSurfDetector(subimage_roi, drawing, angle_value);
std::thread t_subimage_roi1(cacFeature_Compare, subimage_roi, drawing, angle_value);
cvWaitKey(100);
std::thread t_subimage_roi2(cacFeature_Compare, subimage_roi, drawing, angle_value +90);
cvWaitKey(100);
std::thread t_subimage_roi3(cacFeature_Compare, subimage_roi, drawing, angle_value +180);
cvWaitKey(100);
std::thread t_subimage_roi4(cacFeature_Compare, subimage_roi, drawing, angle_value +270);
cvWaitKey(100);
t_subimage_roi1.join();
t_subimage_roi2.join();
t_subimage_roi3.join();
t_subimage_roi4.join();
}
}
else
{
cout << "subimage_roi and src_gray image can't find" << endl;
}
}
/// Show in a window
//cv::namedWindow("Contours", CV_WINDOW_AUTOSIZE);
cv::imshow("Contours", drawing);
//cv::imshow("blurgray", src_gray);
subimage_roi.release();
src_gray.release();
canny_output.release();
drawing.release();
contours.clear();
approx_poly.clear();
matchMat.release();
test_drawing.release();
test_src_gray.release();
}
/** @thresh_callback 函数 */
void thresh_square_detection(int, void*)
{
Mat canny_output;
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
/// 使用Canndy检测边缘
Canny(src_gray, canny_output, thresh, thresh * 2, 3);
/// 找到轮廓
findContours(canny_output, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, Point(0, 0));
/// 计算矩
vector<Moments> mu(contours.size());
vector<Moments> mu_last(contours.size());
for (int i = 0; i < contours.size(); i++)
{
mu[i] = moments(contours[i], false);
}
/// caculate matrix center
vector<Point2f> mc(contours.size());
for (int i = 0; i < contours.size(); i++)
{
mc[i] = Point2f(mu[i].m10 / mu[i].m00, mu[i].m01 / mu[i].m00);
}
/// draw silhouete
Mat drawing = Mat::zeros(canny_output.size(), CV_8UC3);
for (int i = 0; i< contours.size(); i++)
{
Scalar color = Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255));
drawContours(drawing, contours, i, color, 2, 8, hierarchy, 0, Point());
//circle(drawing, mc[i], 4, color, -1, 8, 0);
}
/// show window
namedWindow("Contours", CV_WINDOW_AUTOSIZE);
imshow("Contours", drawing);
cout << "contours.size is : " << contours.size() << endl;
/// 通过m00计算轮廓面积并且和OpenCV函数比较
//printf("\t Info: Area and Contour Length \n");
for (int i = 0; i< contours.size(); i++)
{
cout << " contour area is : " << mu[i].m00 << endl;
cout << " contour position value set is :" << contours[i] << endl;
//printf(" * Contour[%d] - Area (M_00) = %.2f - Area OpenCV: %.2f - Length: %.2f \n", i, mu[i].m00, contourArea(contours[i]), arcLength(contours[i], true));
Scalar color = Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255));
//drawContours(drawing, contours, i, color, 2, 8, hierarchy, 0, Point());
//circle(drawing, mc[i], 4, color, -1, 8, 0);
}
}
/** @function angle */
double angle(Point pt1, Point pt2, Point pt0)
{
double dx1 = pt1.x - pt0.x;
double dy1 = pt1.y - pt0.y;
double dx2 = pt2.x - pt0.x;
double dy2 = pt2.y - pt0.y;
return (dx1*dx2 + dy1*dy2) / sqrt((dx1*dx1 + dy1*dy1)*(dx2*dx2 + dy2*dy2) + 1e-10);
}
/** @function main */
int main()
{
matching_count = 1;
Mat image;
VideoCapture cap(0);
if (!cap.isOpened()) { printf("--(!)Error opening video capture\n"); return -1; }
//Mat element = getStructuringElement(MORPH_RECT, Size(1, 1));
/// Load source image and convert it to gray
while (true)
{
//test code 3 here
//src = imread("silhouette_test.png");
src = cap.read(image);
cap >> src;
/// Convert image to gray and blur it
//定义核
//进行形态学操作
//morphologyEx(src, src, MORPH_ERODE, element);
//imshow("after black hat ", src);
cvtColor(src, src_gray, CV_BGR2GRAY);
//blur(src_gray, src_gray, Size(3, 3));
/// Create Window
char* source_window = "Source";
cv::namedWindow(source_window, CV_WINDOW_AUTOSIZE);
cv::imshow(source_window, src);
createTrackbar("Canny thresh:", "Source", &thresh, max_thresh, thresh_callback);
thresh_callback(0, 0);
//createTrackbar("Canny thresh:", "Source", &thresh, max_thresh, thresh_callback_test);
//thresh_callback_test(0, 0);
if (waitKey(30) == 27)
{
cout << "esc key is pressed by user" << endl;
break;
}
src.release();
image.release();
imgRotated.release();
src_gray.release();
_CrtDumpMemoryLeaks();
}
return(0);
}
//test code
/** @function thresh_callback */
void thresh_callback_test(int, void*)
{
Mat threshold_output;
vector<vector<Point> > contours;
vector<Vec4i> hierarchy;
/// 对图像进行二值化
threshold(src_gray, threshold_output, thresh, 255, THRESH_BINARY);
/// 寻找轮廓
findContours(threshold_output, contours, hierarchy, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, Point(0, 0));
/*Mat drawing = Mat::zeros(threshold_output.size(), CV_8UC3);*/
/* 对每个轮廓计算其凸包*/
vector<vector<Point> >poly(contours.size());
for (int i = 0; i < contours.size(); i++)
{
approxPolyDP(Mat(contours[i]), poly[i], 5, true);
}
/* 绘出轮廓及其凸包*/
Mat drawing = Mat::zeros(threshold_output.size(), CV_8UC3);
for (int i = 0; i< contours.size(); i++)
{
Scalar color = Scalar(rng.uniform(255, 255), rng.uniform(255, 255), rng.uniform(255, 255));
drawContours(drawing, contours, i, color, 1, 8, vector<Vec4i>(), 0, Point());
drawContours(drawing, poly, i, color, 1, 8, vector<Vec4i>(), 0, Point());
cout << poly[i].size() << endl;
}
// matchshape use one same image vector not two!!!
RNG rng(12345);
kaka = imread("rick3.png", 1);
kaka2 = drawing;
cvtColor(kaka, imagegray1, CV_BGR2GRAY);
cvtColor(kaka2, imagegray2, CV_BGR2GRAY);
vector<vector<Point>>contours1, contours2;
vector<Vec4i>hierarchy1, hierarchy2;
double ans = 0, result = 0;
Canny(imagegray1, imageresult1, thresh, thresh * 2);
Canny(imagegray2, imageresult2, thresh, thresh * 2);
try
{
findContours(imageresult1, contours1, hierarchy1, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, cvPoint(0, 0));
for (int i = 0; i<contours1.size(); i++)
{
Scalar color = Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255));
drawContours(imageresult1, contours1, i, color, 1, 8, hierarchy1, 0, Point());
}
findContours(imageresult2, contours2, hierarchy2, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, cvPoint(0, 0));
for (int i = 0; i<contours2.size(); i++)
{
Scalar color = Scalar(rng.uniform(0, 255), rng.uniform(0, 255), rng.uniform(0, 255));
drawContours(imageresult2, contours2, i, color, 1, 8, hierarchy2, 0, Point());
}
//cout << contours1[1] << contours2[1] << endl;
//ans = matchShapes(contours1[1], contours2[1], CV_CONTOURS_MATCH_I1, 0);
//cout << ans << endl;
//cvWaitKey(1000);
}
catch (exception e)
{
cout << "computer too slow have copy need more time hahaha" << endl;
}
try
{
hierarchy1.clear();
hierarchy2.clear();
contours1.clear();
contours2.clear();
imageresult1.release();
imageresult2.release();
imagegray1.release();
imagegray2.release();
kaka.release();
kaka2.release();
}
catch (const std::exception&)
{
cout << "memory freeze have problem" << endl;
}
}
void cornerHarris_demo(Mat sub_src)
{
Mat dst, dst_norm; // , dst_norm_scaled;
dst = Mat::zeros(src_gray.size(), CV_32FC1);
/// Detector parameters
int blockSize = 3;
int apertureSize = 3;
double k = 0.01;
/// Detecting corners
cornerHarris(sub_src, dst, blockSize, apertureSize, k, BORDER_DEFAULT);
/// Normalizing
normalize(dst, dst_norm, 0, 255, NORM_MINMAX, CV_32FC1, Mat());
//convertScaleAbs(dst_norm, dst_norm_scaled);
/// Drawing a circle around corners
for (int j = 0; j < dst_norm.rows; j++)
{
for (int i = 0; i < dst_norm.cols; i++)
{
if ((int)dst_norm.at<float>(j, i) > thresh)
{
//circle(dst_norm_scaled, Point(i, j), 5, Scalar(255, 0, 0), -1, 8, 0);
circle(src, Point(i, j), 5, Scalar(255, 0, 0), -1, 8, 0);
//cout << Point(i, j) << endl;
}
}
}
/// Showing the result
//imshow("corners_window", dst_norm_scaled);
imshow("source_window", src);
}
//angle 360 to 4 quater 90, 180, 270, 360
Mat image2rotation(Mat subimagerotation, int angle)
{
if (rotation_angle >= 90)
{
rotation_angle = 0;
angle = 0;
}
int iImageHieght = subimagerotation.rows / 2 + 0.5;
int iImageWidth = subimagerotation.cols / 2 + 0.5;
Mat matRotation = getRotationMatrix2D(Point(iImageWidth, iImageHieght), rotation_angle, 1); //change 0 to 180 rotation
warpAffine(subimagerotation, imgRotated, matRotation, subimagerotation.size());
subimagerotation = imgRotated.clone();
imshow("rotation subimage ", subimagerotation);
rotation_angle = angle + 2;
return subimagerotation;
}
//test code 4
void useSurfDetector(Mat img_1, Mat img_2, int roi_angle)
{
imshow("subimage rotaiton", img_1);
vector< DMatch > good_matches;
//rotation img_object
int iImageHieght = img_1.rows / 2 + 0.5;
int iImageWidth = img_1.cols / 2 + 0.5;
Mat matRotation = getRotationMatrix2D(Point(iImageWidth, iImageHieght), roi_angle, 1); //change 0 to 180 rotation
warpAffine(img_1, imgRotated, matRotation, img_1.size());
img_1 = imgRotated.clone();
imgRotated.release();
imshow("subimage", img_1);
good_matches.clear();
double t = (double)getTickCount();
vector<KeyPoint> keypoints_1, keypoints_2;
Mat descriptor_1, descriptor_2;
int minHessian = 2000;
//Ptr <xfeatures2d::SURF> detector = xfeatures2d::SURF::create(minHessian, 4, 3, true, true);
Ptr <xfeatures2d::SURF> detector = xfeatures2d::SURF::create();
//cv::Ptr<cv::ORB> detector = cv::ORB::create(minHessian);
// Step -1, Detect keypoints using SURF detector
detector->detect(img_1, keypoints_1);
detector->detect(img_2, keypoints_2);
// Step -2, Calculate descriptors (feature vector)
detector->compute(img_1, keypoints_1, descriptor_1);
detector->compute(img_2, keypoints_2, descriptor_2);
//step - 3, Matching descriptor vectors with a brute force mathcher
BFMatcher matcher(NORM_L2);//surf
//BFMatcher matcher(NORM_HAMMING); //orb
vector<DMatch> matches;
matcher.match(descriptor_1, descriptor_2, matches);
// quick calcualation of max and min distances between keypoints
double max_dist = 0; double min_dist = 1000;
for (int i = 0; i < descriptor_1.rows; i++)
{
double dist = matches[i].distance;
if (max_dist<dist) max_dist = dist;
if (min_dist>dist) min_dist = dist;
}
//cout << " SURF Time (senconds): " << t << endl;
for (int i = 0; i<descriptor_1.rows; i++)
{
if (matches[i].distance<3 * min_dist)
good_matches.push_back(matches[i]);
}
// Draw Good Matches
Mat img_goodmatches;
drawMatches(img_1, keypoints_1, img_2, keypoints_2, good_matches, img_goodmatches);
imshow("Good Matches & Object detection 2", img_goodmatches);
try
{
std::vector<Point2f> obj;
std::vector<Point2f> scene;
for (int i = 0; i < good_matches.size(); i++)
{
//-- Get the keypoints from the good matches
obj.push_back(keypoints_1[good_matches[i].queryIdx].pt);
scene.push_back(keypoints_2[good_matches[i].trainIdx].pt);
}
Mat H = findHomography(obj, scene, CV_RANSAC);
//-- Get the corners from the image_1 ( the object to be "detected" )
std::vector<Point2f> obj_corners(4);
obj_corners[0] = cvPoint(0, 0);
obj_corners[1] = cvPoint(img_1.cols, 0);
obj_corners[2] = cvPoint(img_1.cols, img_1.rows); obj_corners[3] = cvPoint(0, img_1.rows);
std::vector<Point2f> scene_corners(4);
perspectiveTransform(obj_corners, scene_corners, H);
cout.setf(ios::fixed);
int distance_value_min = 0;
int distance_value_max = 300;
if ((scene_corners[1].x > scene_corners[0].x) && (scene_corners[2].x > scene_corners[3].x) &&
(scene_corners[3].y > scene_corners[0].y) && (scene_corners[2].y > scene_corners[1].y) &&
(scene_corners[0].x > 0) && (scene_corners[0].y > 0) &&
(scene_corners[1].x > 0) && (scene_corners[1].y > 0) &&
(scene_corners[2].x > 0) && (scene_corners[2].y > 0) &&
(scene_corners[3].x > 0) && (scene_corners[3].y > 0) &&
(abs(scene_corners[0].x - scene_corners[0].y) > distance_value_min) &&
(abs(scene_corners[1].x - scene_corners[1].y) > distance_value_min) &&
(abs(scene_corners[2].x - scene_corners[2].y) > distance_value_min) &&
(abs(scene_corners[3].x - scene_corners[3].y) > distance_value_min) &&
// distance from square fix small square small value each positon neeed different
(abs(scene_corners[0].x - scene_corners[1].x) > distance_value_min) &&
(abs(scene_corners[0].y - scene_corners[1].y) > distance_value_min) &&
(abs(scene_corners[1].x - scene_corners[2].x) > distance_value_min) &&
(abs(scene_corners[1].y - scene_corners[2].y) > distance_value_min) &&
(abs(scene_corners[2].x - scene_corners[3].x) > distance_value_min) &&
(abs(scene_corners[2].y - scene_corners[3].y) > distance_value_min) &&
(abs(scene_corners[0].x - scene_corners[3].x) > distance_value_min) &&
(abs(scene_corners[0].y - scene_corners[3].y) > distance_value_min) &&
(abs(scene_corners[0].y - scene_corners[3].y) > distance_value_min) &&
(abs(scene_corners[1].y - scene_corners[2].y) > distance_value_min) &&
(abs(scene_corners[2].x - scene_corners[3].x) > distance_value_min) &&
(abs(scene_corners[1].y - scene_corners[3].y) > distance_value_min) &&
(abs(scene_corners[1].x - scene_corners[3].x) > distance_value_min) &&
(abs(scene_corners[0].x - scene_corners[2].x) > distance_value_min) &&
(abs(scene_corners[0].y - scene_corners[2].y) > distance_value_min) &&
//// distance from square fix small square big value
(abs(scene_corners[0].x - scene_corners[1].x) < distance_value_max) &&
(abs(scene_corners[0].y - scene_corners[3].y) < distance_value_max) &&
(abs(scene_corners[1].y - scene_corners[2].y) < distance_value_max) &&
(abs(scene_corners[2].x - scene_corners[3].x) < distance_value_max) &&
(abs(scene_corners[0].y - scene_corners[1].y) + abs(scene_corners[3].y - scene_corners[2].y) > distance_value_min)
)
{
cout << "it's value is nice to me " << endl;
check_positiondata = true;
}
if (check_positiondata == true)
{
//-- Draw lines between the corners (the mapped object in the scene - image_2 )
line(src, scene_corners[0], scene_corners[1], Scalar(0, 255, 0), 4);
line(src, scene_corners[1], scene_corners[2], Scalar(0, 255, 0), 4);
line(src, scene_corners[2], scene_corners[3], Scalar(0, 255, 0), 4);
line(src, scene_corners[3], scene_corners[0], Scalar(0, 255, 0), 4);
cout << "******************" << endl;
cout << setprecision(0) << scene_corners[0] + Point2f(img_1.cols, 0) << scene_corners[1] + Point2f(img_1.cols, 0) << endl;
cout << setprecision(0) << scene_corners[1] + Point2f(img_1.cols, 0) << scene_corners[2] + Point2f(img_1.cols, 0) << endl;
cout << setprecision(0) << scene_corners[2] + Point2f(img_1.cols, 0) << scene_corners[3] + Point2f(img_1.cols, 0) << endl;
cout << setprecision(0) << scene_corners[3] + Point2f(img_1.cols, 0) << scene_corners[0] + Point2f(img_1.cols, 0) << endl;
cout << "******************" << endl;
cout << "angle is " << roi_angle << endl;
stringstream angle_w;
angle_w << "Good Matches & Object detection result 2 angle is";
angle_w << roi_angle;
cout << "***----------------------------------***" << endl;
cout << "Good Matches & Object detection result 2" << endl;
cout << "***----------------------------------***" << endl;
imshow(angle_w.str(), src);
cvWaitKey(0);
}
obj_corners.clear();
scene_corners.clear();
obj.clear();
scene.clear();
H.release();
t = ((double)getTickCount() - t) / getTickFrequency();
cout << "time is " << t << endl;
check_positiondata = false;
}
catch (exception e)
{
cout << "it's also impposoble" << endl;
}
} |
7ad83b31dba1e6fecad41a1ea57a995058b55380 | a67066320c312060f4c4f90e7ac6f13e41ec2dac | /Pig.h | 4d78ba8802bc69ed28db34b9eec683aaad450a61 | [] | no_license | liknlie7/Pig | dffe8ca229be6cc3e2e70ed2cf39ac8c9352bd28 | b6b3f13b25a8b808d1f3b1536d373f5c160b7897 | refs/heads/master | 2020-04-05T20:04:24.140238 | 2018-11-12T06:01:17 | 2018-11-12T06:01:17 | 157,144,692 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 151 | h | Pig.h | #include"Dice.h"
#pragma once
class Pig
{
private:
int m_sum;
int m_result;
bool m_next;
Dice m_dice;
public:
Pig();
void Jugdment();
}; |
8d7cb557cae64d59a5ec0f97c6500217787d49c1 | 7c71410d765d366a388d940c7859538c3b916198 | /CPPMOD03.cpp | d9c72b05a1826d2dea7c1b221a89ff4d60748c91 | [] | no_license | dinhtai1104/SPOJ_PTIT | 790f8474682e7c8d1a90f01bdd55aa697000897d | e7aef29eda3b0dea6ae5a833810f0a70d4ea4423 | refs/heads/master | 2022-12-03T22:27:23.397741 | 2020-08-26T16:00:07 | 2020-08-26T16:00:07 | 290,542,452 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,175 | cpp | CPPMOD03.cpp | #include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
typedef long long ll;
void Solve();
int main()
{
int Test_Case;
cin >> Test_Case;
while (Test_Case--)
{
Solve();
}
// system("pause");
return 0;
}
void Solve()
{
int n; ll k;
cin >> n >> k;
ll s = 0;
ll x = n / k, y = n % k;
s += ((k - 1)*k / 2)*x;
s += (y*(y + 1) / 2);
cout << s << endl;
}
/*
Cho hai sá» nguyên không âm N và K. Nhiá»m vụ cá»§a bạn là tìm S = 1%K + 2%K + ..+ N%K. Và dụ vá»i N = 10, K=2
ta có S = 1%2 + 2%2+3%2 + 4%2+5%2+6%2+7%2+8%2+9%2+10%2 = 5. Yêu cầu Äá» phức tạp thuáºt toán lÃ
hằng sá»
Input:
ï· Dòng Äầu tiên ÄÆ°a và o sá» lượng test T.
ï· Những dòng kế tiếp má»i dòng ÄÆ°a và o má»t test. Má»i test là bá» Äôi N, K ÄÆ°á»£c viết cách nhau
má»t và i khoảng trá»ng.
ï· T, N, K thá»a mãn rà ng buá»c : 1â¤Tâ¤100; 0⤠N â¤1000; 0⤠K â¤10^12.
*/
|
711990d134c70917afdf8ccba005d33feac5a111 | be5b2a65fa71e1d91f255d83acd4662105fa04db | /HW_3/part2/csce310hw03pt02.cpp | 373eaaf1ac30db08708161fb4aafb2e8ba1ac38f | [] | no_license | CaseyNolte22/CSCE310 | fa0b25531956e324cf2b40d92fff32dc5d46869e | 7c5f235ef8c245e2300783a6a45d471195b29610 | refs/heads/main | 2023-04-13T11:13:25.307208 | 2021-04-27T19:01:48 | 2021-04-27T19:01:48 | 339,200,746 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 224 | cpp | csce310hw03pt02.cpp | #include <vector>
#include "csce310hw03pt02.h"
#include <cmath>
#include <iostream>
using namespace std;
vector< vector<double> > allPairsSP( vector< vector<double> > adjacencyMatrix , int i ){
return adjacencyMatrix;
}
|
4dae077dabd00d26c3bd3fc4fbe5e76aab9118a5 | 760217a3df984d4e295506c3aa1b0bbb8b2c9b46 | /CommDemo/DifferentSensorsTest/pump/pump.ino | 4b7c4fb5d55e494bacf1044a65b5157936f952e1 | [] | no_license | TheoGT/Aquaponics_MonitorAndControl | ce9aa3fb402384c8d6a92be2eab4e154cf0d9de2 | 1627d7cd70d7f6fca46af763ebe4974148eb9747 | refs/heads/main | 2023-01-21T10:43:01.204759 | 2020-12-09T05:14:33 | 2020-12-09T05:14:33 | 300,659,337 | 1 | 1 | null | 2020-10-19T16:13:51 | 2020-10-02T15:32:24 | JavaScript | UTF-8 | C++ | false | false | 2,094 | ino | pump.ino | #include <SoftwareSerial.h>
#define rx 2
#define tx 3
//RX = Receive Data
//TX = Transmit Data
//Pins are arbitary
SoftwareSerial myserial(rx, tx);
//Put the RX pin first, followed by the TX pin
//Mnemomic: Listen (receive) before you speak (transmit)
String inputstring = "";
String devicestring = "";
boolean input_string_complete = false;
boolean device_string_complete = false;
float ml;
void setup()
{
Serial.begin(9600);
myserial.begin(9600);
//Serial used by pump
inputstring.reserve(10);
devicestring.reserve(30);
}
//Used for inputed command in Arduino serial monitor
void serialEvent()
{
inputstring = Serial.readStringUntil(13);
input_string_complete = true;
}
void loop()
{
//User types a command in the serial monitor
if (input_string_complete == true)
{
myserial.print(inputstring);
myserial.print('\r');
//Command is sent to pump
//IF YOU ONLY CARE ABOUT HOW TO USE THE PUMP
//THE ABOVE TWO LINES OF CODE ARE TO SEND COMMNANDS
//Removes the user original command
inputstring = "";
input_string_complete = false;
}
//Pump sends information back
//Exampes of inforamtion are things such as pumping status and total volumed pump
if (myserial.available() > 0)
char inchar = (char)myserial.read();
devicestring += inchar;
//All the information from the pump has been transmitted
if (inchar == '\r')
{
device_string_complete = true;
}
}
//Prints the information from the pump onto the serial monitor
if (device_string_complete == true)
{
Serial.println(devicestring);
if (isdigit(devicestring[0]) || devicestring[0]== '-')
{
ml = devicestring.toFloat();
}
//Remove the original data sent by the pump
devicestring = "";
device_string_complete = false;
}
}
|
3e1461384b3f57bbbf17bf08d028091237dc17f8 | 3de40a703d5329a3803acc2bc2f31e4e54830784 | /include/open_loop_diff_drive/open_loop_diff_drive.h | 75bb86233d06a76ecf9402009afb5d273d679e8d | [] | no_license | ab3nd/open_loop_diff_drive | 3c689077ac3fd5729609ec6311005ad960aed21d | 3108b3f1e26c28ee94c0cdd05103176c68ce02b9 | refs/heads/main | 2023-04-14T04:45:44.835015 | 2021-04-16T01:28:12 | 2021-04-16T01:28:12 | 314,437,083 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 613 | h | open_loop_diff_drive.h | #ifndef OPEN_LOOP_DIFF_DRIVE_H_
#define OPEN_LOOP_DIFF_DRIVE_H_
#include <ros/ros.h>
#include <cmath>
#include <geometry_msgs/Twist.h>
#include <std_msgs/Int8.h>
#include <vector>
class MotorTranslator
{
protected:
//Publishes motor speeds based on twist messages
ros::Publisher leftMotorPub;
ros::Publisher rightMotorPub;
//Listens for twist messages to convert to motor drive messages
ros::Subscriber cmdSub;
public:
//Receives twists and converts them to motor drive signals
void cmdCallback(const geometry_msgs::Twist::ConstPtr& msg);
MotorTranslator(ros::NodeHandle node);
};
#endif |
634d6e42f72a7adb9012c917dac917b3ad2870be | e99102ce4042804a4e7ab6cdef3e257684aa1658 | /leetcode/216.cpp | 37d4977202e78f4f49d068cfc31084d64832d9a8 | [] | no_license | dicksiano/Coding-Interview | 3d3ce09fa1c0ec4d66656eb800b5715d06c3ff5e | 8b9230019a490ac7b0e270681dc65b312eee9c63 | refs/heads/master | 2021-07-03T08:47:15.590963 | 2020-08-28T04:10:20 | 2020-08-28T04:10:20 | 148,711,195 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 685 | cpp | 216.cpp | class Solution {
public:
void backtrack(vector<vector<int> > &sol, vector<int>& aux, vector<int>& v, int x, int k, int start) {
if(aux.size() == k) {
if(x == 0) sol.push_back(aux);
return;
}
for(int i = start; i < v.size() && v[i] <= x; i++) {
aux.push_back(v[i]);
backtrack(sol, aux, v, x - v[i], k, i+1);
aux.pop_back();
}
}
vector<vector<int>> combinationSum3(int k, int n) {
vector<vector<int> > sol;
vector<int> aux;
vector<int> v{1,2,3,4,5,6,7,8,9};
backtrack(sol, aux, v, n, k, 0);
return sol;
}
};
|
90bf2b60e86bd97a8903b0099e17e724efd4adc0 | db6f3e6486ad8367c62163a4f124da185a64ab5d | /src/demangler/borland_ast/function_node.cpp | b80368c2c42e4a89f362b30f3c4153958f573fc9 | [
"MIT",
"Zlib",
"JSON",
"LicenseRef-scancode-unknown-license-reference",
"MPL-2.0",
"BSD-3-Clause",
"GPL-2.0-only",
"NCSA",
"WTFPL",
"BSL-1.0",
"LicenseRef-scancode-proprietary-license",
"Apache-2.0"
] | permissive | avast/retdec | c199854e06454a0e41f5af046ba6f5b9bfaaa4b4 | b9791c884ad8f5b1c1c7f85c88301316010bc6f2 | refs/heads/master | 2023-08-31T16:03:49.626430 | 2023-08-07T08:15:07 | 2023-08-14T14:09:09 | 113,967,646 | 3,111 | 483 | MIT | 2023-08-17T05:02:35 | 2017-12-12T09:04:24 | C++ | UTF-8 | C++ | false | false | 1,440 | cpp | function_node.cpp | /**
* @file src/demangler/borland_ast/function_node.cpp
* @brief Representation of functions.
* @copyright (c) 2019 Avast Software, licensed under the MIT license
*/
#include "retdec/demangler/borland_ast/function_node.h"
namespace retdec {
namespace demangler {
namespace borland {
/**
* @brief Private function node constructor. Use create().
* @param name Pointer to Name or NestedName node.
* @param funcType
*/
FunctionNode::FunctionNode(
std::shared_ptr<Node> name,
std::shared_ptr<FunctionTypeNode> funcType) :
Node(Kind::KFunction, false),
_name(std::move(name)),
_funcType(std::move(funcType)) {}
/**
* @brief Creates shared pointer to function node.
* @param name Pointer to Name or NestedName node.
* @param funcType
* @return Unique pointer to constructed FunctionNode.
*/
std::shared_ptr<FunctionNode> FunctionNode::create(
std::shared_ptr<Node> name,
std::shared_ptr<FunctionTypeNode> funcType)
{
return std::shared_ptr<FunctionNode>(
new FunctionNode(std::move(name), std::move(funcType)));
}
std::shared_ptr<Node> FunctionNode::name()
{
return _name;
}
std::shared_ptr<FunctionTypeNode> FunctionNode::funcType()
{
return _funcType;
}
/**
* @brief Prints text representation of function.
* @param s Output stream.
*/
void FunctionNode::printLeft(std::ostream &s) const
{
_funcType->printLeft(s);
_name->print(s);
_funcType->printRight(s);
}
} // borland
} // demangler
} // retdec
|
036bb61e9c81279430cefaed2bc56c90a6ef7cf8 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/printscan/faxsrv/src/faxbvt/bvt/dummybvt.cpp | a29c422a212f363b222d85ce1cd28b1ff17bee20 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18 | cpp | dummybvt.cpp | #include "Bvt.cpp" |
08118c5a03c7888ee14c5097dac6e4f1a8514879 | 893b49242c4e6e1c39bced06262f0b527b92f761 | /Semester_3/Programming/labs/Lab5/Lab5/Figures.h | 123add23d5c91f67452ae6dc74e943eff7d62168 | [] | no_license | chastis/UniversityStuff | a9e1896ef8bf63e22fc9aae8b9661dfcb5ad398a | cfc2730c9b66d287a128c822d171a8f3e384ed8e | refs/heads/master | 2022-12-09T09:17:15.762297 | 2021-04-14T17:44:50 | 2021-04-14T17:44:50 | 215,631,068 | 48 | 14 | null | 2022-12-08T08:10:37 | 2019-10-16T19:45:58 | C++ | UTF-8 | C++ | false | false | 2,755 | h | Figures.h | #ifndef FIGURES_H
#define FIGURES_H
#include <cmath>
#include <limits>
bool double_is_equal(const double &a,const double &b) {
return abs(a - b) < std::numeric_limits<double>::epsilon();
}
class Point
{
public:
Point(double x = 0, double y = 0) {
this->x = x;
this->y = y;
}
~Point() {};
double get_x() {
return x;
}
double get_y() {
return y;
}
void set(double x, double y) {
this->x = x;
this->y = y;
}
void set_x(double x) {
this->x = x;
}
void set_y(double y) {
this->y = y;
}
double distance_to_point(Point a) {
return sqrt((a.get_x() - x)*(a.get_x() - x) + (a.get_y() - y)*(a.get_y() - y));
}
private:
double x;
double y;
};
class Line
{
public:
Line() {
first.set(0, 0);
second.set(0, 0);
}
Line(double x1, double y1, double x2 = 0, double y2 = 0) {
first.set(x1, y1);
second.set(x2, y2);
}
void set(double x1, double y1, double x2 = 0, double y2 = 0) {
first.set(x1, y1);
second.set(x2, y2);
}
void set_first(double x1, double y1) {
first.set(x1, y1);
}
void set_second(double x2, double y2) {
second.set(x2, y2);
}
Point get_first() {
return first;
}
Point get_second() {
return second;
}
//AX+BY+C=0
double get_A() {
return (second.get_y() - first.get_y());
}
//AX+BY+C=0
double get_B() {
return (first.get_x() - second.get_x());
}
//AX+BY+C=0
double get_C() {
return (this->get_A * -first.get_x() + this->get_B * first.get_y());
}
~Line() {}
double length() {
return first.distance_to_point(second);
}
double distance_to_point(Point a) {
double temp = sqrt(this->get_A()*this->get_A() + this->get_B()*this->get_B());
temp = abs(this->get_A()*a.get_x() + this->get_B()*a.get_y() + this->get_C) / temp;
return temp;
}
bool is_parallel(Line a) {
return (double_is_equal(get_A() / a.get_A(), get_B() / a.get_B()) && !double_is_equal(get_A() / a.get_A(), get_C() / a.get_C()));
}
bool is_equal(Line a) {
return (double_is_equal(get_A() / a.get_A(), get_B() / a.get_B()) && double_is_equal(get_A() / a.get_A(), get_C() / a.get_C()));
}
private:
Point first;
Point second;
};
class Parallelogram
{
public:
Parallelogram() {
first.set(0, 0);
second.set(0, 0);
}
Line get_first() {
return first;
}
Line get_second() {
return second;
}
void set_fisrt(Line first) {
this->first = first;
}
void set_second(Line second) {
this->second = second;
}
void set(Line first, Line second) {
set_fisrt(first);
set_second(second);
}
double perimeter() {
return (first.length() * 2 + 2 * first.get_first().distance_to_point(second.get_first));
}
double square() {
return (first.length()*second.distance_to_point(first.get_first()));
}
~Parallelogram() {}
private:
Line first;
Line second;
};
#endif // !FIGURES_H
|
a82f5b504adf1a30e681bdedb6e96266a7228449 | df394bb8066cf9e2ee96ac6a2dab7389aaeeff60 | /src/ONVIFOptDeviceTime.cpp | f13a6a53529932a3ff631d766f64171bf314136c | [] | no_license | chxj1980/yyhonviflib | 265fdbffbd69bfddaa795652199060f1fd4ff610 | b1a4b7c14d17ace35a11b75241f51f33dd7ab043 | refs/heads/master | 2021-09-11T17:07:11.456131 | 2018-04-10T08:10:58 | 2018-04-10T08:10:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,447 | cpp | ONVIFOptDeviceTime.cpp | #include "ONVIFOptDeviceTime.h"
#include <time.h>
namespace yyhonviflib
{
ONVIFOptDeviceTime::ONVIFOptDeviceTime()
{
}
ONVIFOptDeviceTime::~ONVIFOptDeviceTime()
{
}
int ONVIFOptDeviceTime::GetDeviceTime(const char *DeviceXAddr, int _timeout)//PRE_AUTH
{
int result = 0;
struct soap *soap = NULL;
_tds__GetSystemDateAndTime GetTm_req;
_tds__GetSystemDateAndTimeResponse GetTm_rep;
soap = SoapInit.SoapInit(_timeout);
if(soap == NULL)
{
SoapTool.SoapPerror(soap, "SoapInit");
return -1;
}
result = soap_call___tds__GetSystemDateAndTime(soap, DeviceXAddr, NULL, &GetTm_req, GetTm_rep);
if(result != SOAP_OK)
SoapTool.SoapPerror(soap, "GetDeviceTime");
else
{
cout<<"SystemDateAndTime->TimeZone->TZ :"<<GetTm_rep.SystemDateAndTime->TimeZone->TZ<<endl;
cout<<"SystemDateAndTime->DateTimeType :"<<GetTm_rep.SystemDateAndTime->DateTimeType<<endl;
cout<<"SystemDateAndTime->LocalDateTime->Time->Hour :"<<GetTm_rep.SystemDateAndTime->LocalDateTime->Time->Hour<<endl;
cout<<"SystemDateAndTime->LocalDateTime->Time->Minute :"<<GetTm_rep.SystemDateAndTime->LocalDateTime->Time->Minute<<endl;
cout<<"SystemDateAndTime->LocalDateTime->Time->Second :"<<GetTm_rep.SystemDateAndTime->LocalDateTime->Time->Second<<endl;
cout<<"SystemDateAndTime->LocalDateTime->Date->Year :"<<GetTm_rep.SystemDateAndTime->LocalDateTime->Date->Year<<endl;
cout<<"SystemDateAndTime->LocalDateTime->Date->Month :"<<GetTm_rep.SystemDateAndTime->LocalDateTime->Date->Month<<endl;
cout<<"SystemDateAndTime->LocalDateTime->Date->Day :"<<GetTm_rep.SystemDateAndTime->LocalDateTime->Date->Day<<endl;
}
SoapTool.SoapFree(soap);
return result;
}
int ONVIFOptDeviceTime::SetDeviceTime(const char *DeviceXAddr, int _timeout, const char *UserName, const char *PassWord)
{
int result = 0;
struct soap *soap = NULL;
_tds__SetSystemDateAndTime SetTm_req;
_tds__SetSystemDateAndTimeResponse SetTm_rep;
char *TZ;
time_t t;
struct tm tm;
soap = SoapInit.SoapInit(_timeout);
if(soap == NULL)
{
SoapTool.SoapPerror(soap, "SoapInit");
return -1;
}
result = SoapInit.SetAuthInfo(soap, UserName, PassWord);
if(result != SOAP_OK)
{
SoapTool.SoapPerror(soap, "SetAuthInfo");
SoapTool.SoapFree(soap);
return result;
}
TZ = (char *)SoapTool.SoapMalloc(soap, 20);
GetHostTZ(TZ, 20);
t = time(NULL);
gmtime_r(&t, &tm);
tt__TimeZone TimeZone;
tt__DateTime DateTime;
tt__Date Date;
tt__Time Time;
SetTm_req.TimeZone = &TimeZone;
SetTm_req.UTCDateTime = &DateTime;
DateTime.Date = &Date;
DateTime.Time = &Time;
SetTm_req.DateTimeType = tt__SetDateTimeType__Manual;
SetTm_req.DaylightSavings = false;
SetTm_req.TimeZone->TZ = TZ;
SetTm_req.UTCDateTime->Date->Year = tm.tm_year + 1900;
SetTm_req.UTCDateTime->Date->Month = tm.tm_mon + 1;
SetTm_req.UTCDateTime->Date->Day = tm.tm_mday;
SetTm_req.UTCDateTime->Time->Hour = tm.tm_hour;
SetTm_req.UTCDateTime->Time->Minute = tm.tm_min;
SetTm_req.UTCDateTime->Time->Second = tm.tm_sec;
result = soap_call___tds__SetSystemDateAndTime(soap, DeviceXAddr, NULL, &SetTm_req, SetTm_rep);
if(result != SOAP_OK)
SoapTool.SoapPerror(soap, "SetDeviceTime");
else
cout<<"SetDeviceTime OK"<<endl;
SoapTool.SoapFree(soap);
return result;
}
void ONVIFOptDeviceTime::GetHostTZ(char *TZ, unsigned int sizeTZ)
{
char timezone[20] = {0};
FILE *fp = NULL;
char time_fmt[32] = {0};
fp = popen("date +%z", "r");
fread(time_fmt, sizeof(time_fmt), 1, fp);
pclose(fp);
if( ((time_fmt[0] == '+') || (time_fmt[0] == '-')) &&
isdigit(time_fmt[1]) && isdigit(time_fmt[2]) && isdigit(time_fmt[3]) && isdigit(time_fmt[4]) )
{
sprintf(timezone, "CST-%c%c:%c%c", time_fmt[1], time_fmt[2], time_fmt[3], time_fmt[4]);
}
else
{
strcpy(timezone, "CST-08:00");
}
if (sizeTZ > strlen(timezone))
{
strcpy(TZ, timezone);
}
}
} //end namespace
|
48e49e09577bbd059645b6a5583da9eed0fde8a3 | eb10bd476aa1ce5b8325d88db7195af216f1c32d | /laboratory-1/src/matrix_lib.h | 6c8ed43a9ff6a3f951dd9ff16d5333bf6eb33a1f | [] | no_license | zsxoff/course-programming-technology | f1925c908fd3cf188b44a68456fc6b64dbb58959 | 04c2db90f97b3fe17d62965f2f13acde1e92273e | refs/heads/master | 2021-05-23T14:42:40.097357 | 2020-04-17T18:42:24 | 2020-04-17T18:42:24 | 253,345,445 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 376 | h | matrix_lib.h | /*
* Created on Mon Apr 06 2020
*
* Copyright (c) 2020 Konstantin Dobratulin
*/
#ifndef LABORATORY_1_SRC_MATRIX_LIB_H_
#define LABORATORY_1_SRC_MATRIX_LIB_H_
#include <vector>
extern "C" const std::vector<std::vector<float>> matmul(
const std::vector<std::vector<float>>& A,
const std::vector<std::vector<float>>& B);
#endif // LABORATORY_1_SRC_MATRIX_LIB_H_
|
18504cfea056b1ab106709965925b568e0ada9b6 | 9ee6b3ba658fb674433ade32d71d59bff9086325 | /.removed/include/fullscore/ui/ComponentTemplate/Actions.hpp | a75f2cd127ae8904f027366b957adbb43f5e7823 | [] | no_license | MarkOates/fullscore | 01f7aa843805f221b1547ab16deaaf91b513446e | ccd9449aa235d355bf1c24b0ff8fcc3a0fa83e23 | refs/heads/master | 2022-09-15T14:54:01.980708 | 2022-09-14T12:52:50 | 2022-09-14T12:52:50 | 33,223,354 | 1 | 0 | null | 2019-08-25T00:06:51 | 2015-04-01T02:59:18 | C++ | UTF-8 | C++ | false | false | 126 | hpp | Actions.hpp | #pragma once
namespace UI::ComponentTemplate::Actions
{
std::string const SAY_HELLO_ACTION_IDENTIFIER = "say_hello";
}
|
455e97d702d6355969ed41a1577aa1d645354409 | b30c7717acbcace38eaa9e8939b952dc3245ebd6 | /200-300/288.cpp | a62b4a06e1c34d363e920c861332126fc35086cb | [
"MIT"
] | permissive | Thomaw/Project-Euler | e7dbfae93b26eb0d658c09e18fdaa932998d7a12 | bcad5d8a1fd3ebaa06fa52d92d286607e9372a8d | refs/heads/main | 2023-09-06T08:16:35.045015 | 2021-10-07T18:44:42 | 2021-10-07T18:44:42 | 407,856,542 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 586 | cpp | 288.cpp | #include <stdio.h>
#define p 61LL
#define power 10LL
#define q 10000000LL
long long T[q+10];
long long pp[30];
long long ans;
long long c,n,m;
int main(){
/*Calculate powers of p*/
pp[0]=1;
for(c=1;c<25;c++) pp[c]=p*pp[c-1];
/*Calculate T[n]*/
T[0]=290797;
for(c=1;c<=q+5;c++){
T[c]=(T[c-1]*T[c-1])%50515093;
T[c-1]%=p;
}
/*Calculate answer by adding up the relevant things
and ignoring the terms that will be modded out*/
for(n=1;n<=q;n++)
for(m=n;(m<n+power)&&(m<=q);m++){
ans+=T[m]*pp[m-n];
ans%=pp[power];
}
printf("%lld\n",ans);
return 0;
} |
054915788d53772142479ae93363519e8245a62d | e58f51956e0ff4004cdec9492c6811a32ceb3026 | /AtoZ.cpp | f4101fc93f98761a82b0fb215c1ebb96ef737df1 | [] | no_license | sumitnlab/DailyAssignment | 9f6983bff9b1df0059b99f27294a7d5ef8307f2e | 3ca1fbfa1032ab9f71d869bacb5fe92784bd71c5 | refs/heads/main | 2023-07-07T15:28:00.614320 | 2021-08-09T09:12:24 | 2021-08-09T09:12:24 | 332,130,117 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 993 | cpp | AtoZ.cpp | // C++ program to print alphabets
#include <iostream>
using namespace std;
// Function to print the alphabet
// in lower case
void lowercaseAlphabets()
{
// lowercase
for (int c = 97; c <= 122; ++c)
cout << c << " ";
cout << endl;
}
// Function to print the alphabet
// in upper case
void uppercaseAlphabets()
{
// uppercase
for (int c = 65; c <= 90; ++c)
cout << c << " ";
cout << endl;
}
// Driver code
int main()
{
cout << "Uppercase Alphabets" << endl;
uppercaseAlphabets(ch);
cout << "Lowercase Alphabets " << endl;
lowercaseAlphabets(ch);
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a = 5, b = 10, temp;
cout << "Before swapping." << endl;
cout << "a = " << a << ", b = " << b << endl;
temp = a;
a = b;
b = temp;
cout << "\nAfter swapping." << endl;
cout << "a = " << a << ", b = " << b << endl;
return 0;
}
|
4e23021ac93d3f24c6c43670e9228db42d0cbefb | 5b3ea57ffda2c0c948e63e202fa6bf64fb284553 | /Actions/Copy.cpp | 6f838e19cd4ecb1b735d04d5e69145229d43a81e | [] | no_license | EngPeterAtef/LogicCircuitSimulator | b249180f8cd5a3fe8136e9a4f35c2a540f295b9e | 92797107801eb94fdb5a5066e6b531c6ea0db467 | refs/heads/master | 2023-08-23T00:34:52.891934 | 2021-09-25T18:23:23 | 2021-09-25T18:23:23 | 510,504,581 | 1 | 0 | null | 2022-07-04T21:13:41 | 2022-07-04T21:13:40 | null | UTF-8 | C++ | false | false | 845 | cpp | Copy.cpp | #include "Copy.h"
#include "..\ApplicationManager.h"
Copy::Copy(ApplicationManager* pApp) : Action(pApp)
{
}
void Copy::Execute()
{
ReadActionParameters();
Output* pOut = pManager->GetOutput();
//get the selected gate
Component* C = pManager->getSelectedComponent(Cx, Cy);
//check if there is no gate selected
if (C == NULL)
{
pOut->PrintMsg("There is no component here !!");
return;
}
pManager->setTemp(C);
pOut->PrintMsg("The component has been copied");
}
Copy::~Copy(void)
{
}
void Copy::ReadActionParameters()
{
Output* pOut = pManager->GetOutput();
Input* pIn = pManager->GetInput();
//Print Action Message
pOut->PrintMsg("Click on the component to be Copied");
//Wait for User Input
pIn->GetPointClicked(Cx, Cy);
//Clear Status Bar
pOut->ClearStatusBar();
}
void Copy::Undo()
{
}
void Copy::Redo()
{
}
|
384a7349ff708e04f9b86f9d7a9a80d975cd0f98 | 777a75e6ed0934c193aece9de4421f8d8db01aac | /src/Providers/UNIXProviders/SystemStatistics/UNIX_SystemStatistics_LINUX.hxx | 7b16e82a2c0196e60354faf9be0e13efa4bf4a28 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers-old | 20fc13958016e35dc4d87f93d1999db0eae9010a | b00f1aad575bae144b8538bf57ba5fd5582a4ec7 | refs/heads/master | 2021-01-01T20:05:44.559362 | 2014-04-30T17:50:06 | 2014-04-30T17:50:06 | 19,132,738 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 128 | hxx | UNIX_SystemStatistics_LINUX.hxx | #ifdef PEGASUS_OS_LINUX
#ifndef __UNIX_SYSTEMSTATISTICS_PRIVATE_H
#define __UNIX_SYSTEMSTATISTICS_PRIVATE_H
#endif
#endif
|
c4b61deff43caabfce31c50d4e38dd51ce990c08 | 35c54837e56fe87f375bfae20c8fbe73e6da0df9 | /PhysicsEngine/Catapult.h | ca052b5bca4f3d22d206d5e2c460ef5c7439fe57 | [] | no_license | bdawson1993/physics-engine | bea09da7ed0d8dbc663787b4f9d0927a8235849a | a834511e5576ff35fe11632fba03a179acdd7e43 | refs/heads/master | 2021-10-26T11:47:40.106568 | 2019-04-12T09:28:53 | 2019-04-12T09:28:53 | 168,467,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,697 | h | Catapult.h | #pragma once
#include <iostream>
#include "Actor.h"
#include "Scene.h"
#include "Projectile.h"
#include "GameObject.h"
using namespace std;
class CatapultBase : public Actor
{
public:
CatapultBase()
{
};
CatapultBase(const char* name, PxPhysics* phy) : Actor(name, phy)
{
};
void CreateDynamic(PxVec3 pos, PxVec3 size, PxMaterial* mat)
{
actor = (PxRigidDynamic*)physics->createRigidDynamic(PxTransform(pos));
//sides
CreateShape(PxBoxGeometry(0.5f, 0.5f, 3.0f), *mat, 100, PxVec3(0, 0, 0));
CreateShape(PxBoxGeometry(0.5, 0.5f, 3.0f), *mat, 100, PxVec3(5.0f, 0.0f, 0.0f));
CreateShape(PxBoxGeometry(3.0f, 0.5f, 0.5f), *mat, 100, PxVec3(2.5f, 0.0f, 3.5f)); //top
CreateShape(PxBoxGeometry(3.0f, 0.5f, 0.5f), *mat, 100, PxVec3(2.5f, 0.0f, -3.5f)); //bottom
//left stilts
CreateShape(PxBoxGeometry(0.5f, 1.0f, 0.5f), *mat, 1000, PxVec3(6.0f, -0.5f, 3.5f)); //left
CreateShape(PxBoxGeometry(0.5f, 1.0f, 0.5f), *mat, 1000, PxVec3(6.0f, -0.5f, -3.5f)); //right
//right stilitts
CreateShape(PxBoxGeometry(0.5f, 1.0f, 0.5f), *mat, 1000, PxVec3(-1.0f, -0.5f, 3.5f)); //left
CreateShape(PxBoxGeometry(0.5f, 1.0f, 0.5f), *mat, 1000, PxVec3(-1.0f, -0.5f, -3.5f)); //left
//pass trigger box
//CreateShape(PxBoxGeometry(5.0f, 12.0f, 6.5f), *mat, -1, PxVec3(3.0f, 10.0f, 0.0f));
//SetTrigger(true, 8);
}
void OnTriggerEnter(Actor* collidedObject);
void SetHasBall(bool value);
void SetHasRecived(bool value);
bool GetRecived();
private:
bool hasBall;
bool hasRecivedBall = false;
};
class CatapultArm : public Actor
{
public:
CatapultArm()
{
};
CatapultArm(const char* name, PxPhysics* phy) : Actor(name, phy)
{
};
void CreateDynamic(PxVec3 pos, PxVec3 size, PxMaterial* mat)
{
actor = (PxRigidDynamic*)physics->createRigidDynamic(PxTransform(pos));
CreateShape(PxBoxGeometry(1.5f, 0.5f, 0.5f), *mat, 100, PxVec3(0.0f, 1.0f, 0.0f));
CreateShape(PxBoxGeometry(.5f, 2.0f, 0.5f), *mat, 100, PxVec3(0.0f, 3.50f, 0.0f));
CreateShape(PxBoxGeometry(1.0f, 1.0f, 1.0f), *mat, 100, PxVec3(0.0f, 6.5f, 0.0f));
}
};
class Catapult : public GameObject
{
public:
Scene* scene;
CatapultBase* base;
CatapultArm* arm;
PxPhysics* phys;
PxRevoluteJoint* leftJoint;
PxRevoluteJoint* rightJoint;
Catapult();
Catapult(const char* name, PxPhysics* phy, Scene* scene, PxVec3 pos, PxMaterial* mat, PxMaterial* ballMat, bool _hasBall = false);
Projectile* GetBall();
int GetLaunchForce();
void Update();
void KeyPress(char key);
void KeyHold(char key);
bool hasBall;
private:
PxFixedJoint* ballJoint;
void CreateBall();
int launchForce = 5;
Projectile* ball;
PxMaterial* ballMat;
};
|
66a743f77e09fcd9549d044b0b44bb7a9de2627b | 51a6a102af47dbb76a1a2e708c6be02a23c39f1d | /src/player.cpp | 907f222ba46babeeaec9f9f8144d7d41a7b1815b | [] | no_license | ar664/rwars2 | 8951f26392553b8af787c721d4aae07b007c611d | ea04d09d34cd008067913e69f8535ceaf36c4de8 | refs/heads/master | 2020-05-29T15:41:06.598226 | 2016-10-03T20:49:27 | 2016-10-03T20:49:27 | 60,388,862 | 0 | 0 | null | 2016-10-03T21:24:36 | 2016-06-04T02:17:27 | C++ | UTF-8 | C++ | false | false | 1,652 | cpp | player.cpp | #include <SFML/Graphics.hpp>
#include <iostream>
#include <math.h>
#include "statemachine.h"
#include "player.h"
#include "globals.h"
CharacterStateMachine movement;
Player::Player()
{
mLastStateChange = 0;
}
void Player::HandleInput()
{
}
void Player::ChangeState(PlayerState state)
{
int delta = 0;
int atk_delta = 0;
int curr_time = gClock.getElapsedTime().asMilliseconds();
delta = curr_time - mLastStateChange;
mNextStateChange -= delta;
mState |= state;
if(mNextStateChange <= 0)
{
//testing purpose
//should be fixed later to manually unset state
mState = 0;
mCurrState = P_State_Neutral;
}
//can only change states when we are in neutral state
//if(mCurrState != P_State_Neutral || state == P_State_Neutral) return;
if(mCurrState == state)
return;
//@TODO Need to find a better spot to put this line of code becuase its currently running
//Every frame which could slow down the game
if(state == P_State_Charge_Atk)
{
if(mAtkPressTime == 0)
{
mAtkPressTime = curr_time;
return;
}
atk_delta = curr_time - mAtkPressTime;
//std::cout<<"Atk delta is: " << atk_delta << std::endl;
//hard coding 400 miliseconds as time btn needs to be held
if(atk_delta < 400)
{
return;
}
}
//std:: cout <<"Last change time " << mLastStateChange << " Next change time " << mNextStateChange << std::endl;
mAtkPressTime = 0;
mState =state;
mPrevState = mCurrState;
mCurrState = state;
mLastStateChange = gClock.getElapsedTime().asMilliseconds();
mNextStateChange = 5000;//hard coded 500 miliseconds for now
//std::cout <<"Character State is " << mCurrState << std::endl;
}
|
448cc7c2f3c1cb490b436033a6f76e69b38c79e5 | 92af649433b83c241c0220d20d580414823f1bdb | /Homework/Homework6-GeoCalc.cpp | 8efa795d2e45ed9248509e0559c18406d9a6d9e3 | [] | no_license | VictorNguyen031900/Computer-Science-I | eaf000e37a4ce8cd83c607274ff4e9dcb26dceb1 | 97e0cc6de90e610d5cbb8f4b1522a40961c5b884 | refs/heads/master | 2022-11-23T07:58:53.859725 | 2020-07-27T05:58:09 | 2020-07-27T05:58:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,131 | cpp | Homework6-GeoCalc.cpp | /*******************************************************
Victor Nguyen
CS111
10/10/18
In this program, the user will pick from a menu and it will calculate the area of a shape
********************************************************/
#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
int main()
{
int choice;
double area;
double radius;
double length;
double width;
double base;
double height;
const double PI = 3.14159265359;
cout << "Geometry Calculator" << endl;
cout << "1. Calculate the Area of a Circle" << endl;
cout << "2. Calculate the Area of a Rectangle" << endl;
cout << "3. Calculate the Area of a Triangle" << endl;
cout << "4. Quit" << endl;
cout << "Enter your choice (1-4):";
cin >> choice;
switch (choice)
{
case 1:
cout << "Enter the radius of the circle." << endl;
cin >> radius;
area = PI * pow(radius,2);
cout << "The area of the circle is " << area << endl;
break;
case 2:
cout << "Enter the length of the rectangle." << endl;
cin >> length;
cout << "Enter the width of the rectangle." << endl;
cin >> width;
area = length * width;
cout << "The area of the rectangle is " << area << endl;
if (area < 100 || area > 10000)
{
cout << "The field size is not in the range." << endl;
}
else if (area < 162)
{
cout << "Smaller than a volleyball field." << endl;
}
else if (area < 436)
{
cout << "Smaller than a basketball field." << endl;
}
else if (area < 6400)
{
cout << "Smaller than a soccer field." << endl;
}
else
{
cout << "A large field" << endl;
}
break;
case 3:
cout << "Enter the base length of the triangle." << endl;
cin >> base;
cout << "Enter the height of the triangle." << endl;
cin >> height;
area = base * (height * 0.5);
cout << "The area of the triangle is " << area << endl;
break;
case 4:
cout << "You quit the program." << endl;
break;
default:
cout << "Invalid item chosen." << endl;
break;
}
return 0;
}
|
d47c9476b704871d0a487897cd1891c8e36bd3c7 | d4c7d3a7986cac85d806642d4714be0716190d4e | /telemetry-pcb/sketch_jul10a/sketch_jul10a.ino | 62e756fceeb2cf19e52cb22d91061b9c85ff7fa7 | [] | no_license | matt-ketk/tarc-telemetry | d8a7ab9d8358fcf567eeb88521a72cc18eaa663a | c3fc4b803b22953d55bc36fb994a4f8ece4e6567 | refs/heads/master | 2022-12-09T12:22:08.791367 | 2020-09-16T18:32:58 | 2020-09-16T18:32:58 | 296,116,689 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,850 | ino | sketch_jul10a.ino | #include <Adafruit_Sensor.h>
#include <Adafruit_BME280.h>
#include <SD.h>
#include <SPI.h>
#define BME_SCK 13
#define BME_MISO 12
#define BME_MOSI 11
#define BME_CS 10
#define SD_CS 9
#define SEALEVELPRESSURE_HPA (1013.25)
Adafruit_BME280 bme(BME_CS);
Sd2Card card;
SdVolume volume;
SdFile root;
const int bme_cs = 10;
const int sd_cs = 9;
unsigned long DATA_POINTS;
const int data_frequency_hz = 100;
File data_log;
boolean ran = false;
void setup() {
// put your setup code here, to run once:
unsigned status;
pinMode(BME_CS, OUTPUT);
pinMode(SD_CS, OUTPUT);
pinMode(BME_SCK, OUTPUT);
pinMode(BME_MISO, INPUT);
pinMode(BME_MOSI, OUTPUT);
Serial.begin(9600);
SPI.begin();
digitalWrite(SD_CS, HIGH);
digitalWrite(BME_CS, LOW);
while(!Serial);
DATA_POINTS = 1000;
status = bme.begin(); //bme begin
if (!status) {
Serial.println("Could not find a valid BME280 sensor, check wiring, address, sensor ID!");
Serial.print("SensorID was: 0x"); Serial.println(bme.sensorID(),16);
Serial.print(" ID of 0xFF probably means a bad address, a BMP 180 or BMP 085\n");
Serial.print(" ID of 0x56-0x58 represents a BMP 280,\n");
Serial.print(" ID of 0x60 represents a BME 280.\n");
Serial.print(" ID of 0x61 represents a BME 680.\n");
while (1);
}
digitalWrite(BME_CS, HIGH);
digitalWrite(SD_CS, LOW);
if (!SD.begin(SD_CS)) {
Serial.println("initialization failed!");
while(1);
}
Serial.println("initialization done.");
// open the file. note that only one file can be open at a time,
// so you have to close this one before opening another.
//String fileName = "flight" + String(DATA_POINTS) + "_" + String(data_frequency_hz);
String fileName = "test.txt";
//Serial.println(fileName + ".txt");
data_log = SD.open(fileName, FILE_WRITE);
// if the file opened okay, write to it:
//Serial.println(data_log);
if (data_log) {
Serial.print("writing to file: ");
Serial.println(fileName + ".txt");
digitalWrite(SD_CS, HIGH);
digitalWrite(BME_CS, LOW);
// if the file didn't open, print an error:
} else {
Serial.println("error opening " + fileName + ".txt");
data_log.close();
while(1);
}
}
float sensorVals[] = {0, 0, 0};
int counter = 0;
void loop() {
// put your main code here, to run repeatedly:
while (counter < 1000) {
digitalWrite(SD_CS, HIGH);
digitalWrite(BME_CS, LOW);
/*
data_point.concat(String(bme.readTemperature()));
data_point.concat("\t");
data_point.concat(String(bme.readPressure() / 1000.0F));
data_point.concat("\t");
data_point.concat(String(bme.readHumidity()));
*/
sensorVals[0] = bme.readTemperature();
sensorVals[1] = bme.readPressure() / 1000.0F;
sensorVals[2] = bme.readHumidity();
digitalWrite(BME_CS, HIGH);
digitalWrite(SD_CS, LOW);
/*
data_log.println(DATA_POINTS + "/" + data_frequency_hz); // num of pts / freq = recording duration (s)
data_log.print(data_point.concat("\n"));
*/
data_log.print(String(sensorVals[0]) + ",");
data_log.print(String(sensorVals[1]) + ",");
data_log.println(sensorVals[2]);
digitalWrite(SD_CS, HIGH);
Serial.print(counter + ": ");
Serial.print(sensorVals[0]);
Serial.print(",");
Serial.print(sensorVals[1]);
Serial.print(",");
Serial.println(sensorVals[1]);
counter++;
delay(1000 / data_frequency_hz);
}
if ((counter >= DATA_POINTS) && !ran) {
digitalWrite(SD_CS, LOW);
data_log.close();
Serial.println("data recording finished");
ran = true;
digitalWrite(SD_CS, HIGH);
}
return;
}
|
dd76f14630a0949a717a9198d42f5f2d2696b06c | de9d4be027e5383bcf1e0624e3e00d7982ff7736 | /Prueba01/pagcamera.cpp | 8e6eb20fb487caf34d27fd919ff6502ce1d244ec | [] | no_license | JavierPin/Animacion3D | d24de65a557d0154e13d6e5f5dd01a32537ee9d9 | f24dce9cca3ffa0a3294fc3f3cf440455d5f3762 | refs/heads/master | 2021-01-10T16:31:30.682879 | 2016-03-04T12:41:54 | 2016-03-04T12:41:54 | 53,126,329 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,317 | cpp | pagcamera.cpp | #include "pagcamera.h"
#include <QtDebug>
#include <QFileInfo>
#include <math.h>
PagCamera::PagCamera()
{
initializeOpenGLFunctions();
setWidth(4);
setHeight(3);
setAspect();
resetCamera();
}
QMatrix4x4 PagCamera::getProjection(){
return p;
}
QMatrix4x4 PagCamera::getView(){
return v;
}
void PagCamera::setAspect(){
aspect=getWidth()/getHeight();
}
void PagCamera::setWidth(int width){
w=width;
}
int PagCamera::getWidth(){
return w;
}
void PagCamera::setHeight(int height){
h=height;
}
int PagCamera::getHeight(){
return h;
}
void PagCamera::changePerspective(){
if(cParameters.perspective=="ortho"){
p.setToIdentity();
p.perspective(cParameters.angle,cParameters.aspect,cParameters.znear, cParameters.zfar);
cParameters.perspective="parallel";
}
else{
p.setToIdentity();
p.ortho(cParameters.xmin,cParameters.xmax,cParameters.ymin,cParameters.ymax,cParameters.znear,cParameters.zfar);
cParameters.perspective="ortho";
}
}
void PagCamera::resetCamera()
{
p.setToIdentity();
v.setToIdentity();
cParameters.position=QVector3D(0.0f, 3.0f, 90.0f);
cParameters.lookAt=QVector3D(0.0f, 3.0f, 0.0f);
cParameters.up=QVector3D(0.0f, 1.0f, 0.0f);
cParameters.vn=QVector3D(cParameters.position-cParameters.lookAt).normalized();
cParameters.vu= QVector3D::crossProduct(cParameters.vn, cParameters.up);
cParameters.vv=QVector3D::crossProduct(cParameters.vu,cParameters.vn);
//matriz de vision
v.lookAt(cParameters.position,cParameters.lookAt,cParameters.vv);
//matriz de proyección
cParameters.xmin=-8;
cParameters.xmax=8;
cParameters.ymin=-8;
cParameters.ymax=8;
cParameters.znear=0.1f;
cParameters.zfar=100;
cParameters.angle=(2*atan(((abs(cParameters.xmin)+abs(cParameters.xmax))/2)/(sqrt(pow(cParameters.position.x(),2)+pow(cParameters.position.y(),2)+pow(cParameters.position.z(),2)))))*(180/3.14159265358979323846);
cParameters.aspect=aspect;
p.perspective(cParameters.angle,cParameters.aspect,cParameters.znear, cParameters.zfar);
cParameters.perspective="parallel";
}
//panning, izquierda y derecha sobre el propio eje Y de la cámara.
void PagCamera::rotateCameraX(float newX){
p.rotate(newX, 0, 1, 0);
QMatrix4x4 rotation;
rotation.setToIdentity();
rotation.rotate(newX,0,1,0);
cParameters.vn=cParameters.vn*rotation;
cParameters.vu=cParameters.vu*rotation;
cParameters.vv=cParameters.vv*rotation;
}
//tilt, arriba y abajo sobre el propio eje X de la cámara.
void PagCamera::rotateCameraY(float newY){
p.rotate(newY, 1, 0, 0);
QMatrix4x4 rotation;
rotation.setToIdentity();
rotation.rotate(newY,1,0,0);
cParameters.vn=cParameters.vn*rotation;
cParameters.vu=cParameters.vu*rotation;
cParameters.vv=cParameters.vv*rotation;
}
//Up, cambio del vector up, izquierda y derecha sobre el propio eje Z de la cámara.
void PagCamera::rotateCameraZ(int newZ){
int angleR=10*newZ;
p.rotate(-angleR, 0, 0, 1);
QMatrix4x4 rotation;
rotation.setToIdentity();
rotation.rotate(-angleR,0,0,1);
cParameters.vn=cParameters.vn*rotation;
cParameters.vu=cParameters.vu*rotation;
cParameters.vv=cParameters.vv*rotation;
}
//track, movimiento hacia la izquierda y la derecha de la cámara en el eje X.
void PagCamera::moveCameraX(float newX){
p.translate(newX,0,0);
QMatrix4x4 translation;
translation.setToIdentity();
translation.translate(newX,0,0);
cParameters.vn=cParameters.vn*translation;
cParameters.vu=cParameters.vu*translation;
cParameters.vv=cParameters.vv*translation;
}
//pedestal, movimiento hacia arriba y hacia abajo de la cámara en el eje Y.
void PagCamera::moveCameraY(float newY){
p.translate(0,newY,0);
QMatrix4x4 translation;
translation.setToIdentity();
translation.translate(0,newY,0);
cParameters.vn=cParameters.vn*translation;
cParameters.vu=cParameters.vu*translation;
cParameters.vv=cParameters.vv*translation;
}
//dolly in-out, movimiento hacia delante y hacia atrás de la cámara en el eje Z.
void PagCamera::moveCameraZ(float newZ){
p.translate(0,0,newZ);
QMatrix4x4 translation;
translation.setToIdentity();
translation.translate(0,0,newZ);
cParameters.vn=cParameters.vn*translation;
cParameters.vu=cParameters.vu*translation;
cParameters.vv=cParameters.vv*translation;
}
//orbit horizontal, rotación hacia la izquierda y la derecha de la cámara sobre un punto en el eje X.
void PagCamera::orbit(int angle, int x, int y){
QMatrix4x4 rotationMatrix;
rotationMatrix.setToIdentity();
rotationMatrix.translate(cParameters.lookAt);
if(x==1){
rotationMatrix.rotate(angle*3, cParameters.vv);
}
else if(y==1){
rotationMatrix.rotate(angle*3, cParameters.vu);
}
rotationMatrix.translate(-cParameters.lookAt);
cParameters.position=rotationMatrix*cParameters.position;
rotationMatrix.setToIdentity();
if(x==1){
rotationMatrix.rotate(angle*3, cParameters.vv);
}
else if(y==1){
rotationMatrix.rotate(angle*3, cParameters.vu);
}
cParameters.vu=rotationMatrix*cParameters.vu;
cParameters.vv=rotationMatrix*cParameters.vv;
cParameters.vn=rotationMatrix*cParameters.vn;
v.setToIdentity();
v.lookAt(cParameters.position,cParameters.lookAt,cParameters.vv);
}
//zoom, movimiento de zoom hacia adentro.
void PagCamera::zoom(float newW){
if((cParameters.xmin<-1.3) || newW<0){
cParameters.xmin+=newW;
cParameters.xmax-=newW;
cParameters.ymin+=newW;
cParameters.ymax-=newW;
cParameters.angle=(2*atan(((abs(cParameters.xmin)+abs(cParameters.xmax))/2)/(sqrt(pow(cParameters.position.x(),2)+pow(cParameters.position.y(),2)+pow(cParameters.position.z(),2)))))*(180/3.14159265358979323846);
p.setToIdentity();
if(cParameters.perspective=="ortho"){
p.ortho(cParameters.xmin,cParameters.xmax,cParameters.ymin,cParameters.ymax,cParameters.znear,cParameters.zfar);
}
else{
p.perspective(cParameters.angle, cParameters.aspect, cParameters.znear, cParameters.zfar);
}
}
}
|
1268f7e43ca9dceb748bcbeb6716ebb9e089f56c | ad13e1c4fb65b810cd6d7232ab618e29d864a3d9 | /c_plus_code/Chapter2-linear-list/2.1.2.cpp | d47f970b941b901ff2ebaeeaeefe4f13ccbd6fe0 | [] | no_license | shuaiyin/pystudy | 688994f728e6a8e678325e63b3d8caa446caae20 | fe017cb94582b5e3af68807915447ea99983b742 | refs/heads/master | 2021-01-13T10:27:53.808830 | 2017-05-07T08:17:03 | 2017-05-07T08:17:03 | 63,121,870 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 670 | cpp | 2.1.2.cpp | //leetcode,Remove Duplicates from Sorted Array II
#include<iostream>
#include<vector>
using namespace std;
class Solution{
public:
int removeDuplicates(vector<int> & nums){
if(nums.size() <=2 ) return nums.size();
int index =2 ;
for(int i=2;i<nums.size();i++){
if(nums[i] != nums[index-2]) nums[index++] = nums[i];
}
return index;
};
};
int main(){
vector<int> v(10,2);
Solution so = Solution();
int b = so.removeDuplicates(v);
cout << b << endl;
}
//1.not only did the input type is same as the output,but also the output is smaller than the input ,so we can reuse the space of the input to ensure the O(1) space complexiy
|
c0dee945a44a323e1397bc2b460e8b38e9edefb2 | a2477c5d8423d7121e99e42c5e166909d50f7825 | /cpp/ric-packet-spy/ricpacketspy.pb.cc | 0c794cfb3a2606d65cf1b2bb713b627981555535 | [] | no_license | Rightech/ric-proto | 18b04949a14a0f89bb8371501f3c1645d61f3f7e | b6320f91149f1320a18f58eca62aebe853813bb4 | refs/heads/master | 2023-07-19T04:24:42.649744 | 2023-06-28T11:26:46 | 2023-06-28T11:26:46 | 202,419,228 | 0 | 4 | null | 2023-07-11T04:25:57 | 2019-08-14T20:12:18 | JavaScript | UTF-8 | C++ | false | true | 127,204 | cc | ricpacketspy.pb.cc | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: ric-packet-spy/ricpacketspy.proto
#include "ric-packet-spy/ricpacketspy.pb.h"
#include <algorithm>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/extension_set.h>
#include <google/protobuf/wire_format_lite_inl.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
namespace ric {
namespace packet {
namespace spy {
class GetStateRequestDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<GetStateRequest> _instance;
} _GetStateRequest_default_instance_;
class GetStateResponseDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<GetStateResponse> _instance;
} _GetStateResponse_default_instance_;
class StartWatchRequestDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<StartWatchRequest> _instance;
} _StartWatchRequest_default_instance_;
class StartWatchResponseDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<StartWatchResponse> _instance;
} _StartWatchResponse_default_instance_;
class CancelWatchRequestDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<CancelWatchRequest> _instance;
} _CancelWatchRequest_default_instance_;
class CancelWatchResponseDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<CancelWatchResponse> _instance;
} _CancelWatchResponse_default_instance_;
class CommitModelRequestDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<CommitModelRequest> _instance;
} _CommitModelRequest_default_instance_;
class CommitModelResponseDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<CommitModelResponse> _instance;
} _CommitModelResponse_default_instance_;
class WatchUpdateRequestDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<WatchUpdateRequest> _instance;
} _WatchUpdateRequest_default_instance_;
class ObjectUpdateDefaultTypeInternal {
public:
::google::protobuf::internal::ExplicitlyConstructed<ObjectUpdate> _instance;
} _ObjectUpdate_default_instance_;
} // namespace spy
} // namespace packet
} // namespace ric
static void InitDefaultsGetStateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_GetStateRequest_default_instance_;
new (ptr) ::ric::packet::spy::GetStateRequest();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::GetStateRequest::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_GetStateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsGetStateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsGetStateResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_GetStateResponse_default_instance_;
new (ptr) ::ric::packet::spy::GetStateResponse();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::GetStateResponse::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_GetStateResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsGetStateResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsStartWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_StartWatchRequest_default_instance_;
new (ptr) ::ric::packet::spy::StartWatchRequest();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::StartWatchRequest::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_StartWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsStartWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsStartWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_StartWatchResponse_default_instance_;
new (ptr) ::ric::packet::spy::StartWatchResponse();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::StartWatchResponse::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_StartWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsStartWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsCancelWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_CancelWatchRequest_default_instance_;
new (ptr) ::ric::packet::spy::CancelWatchRequest();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::CancelWatchRequest::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_CancelWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCancelWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsCancelWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_CancelWatchResponse_default_instance_;
new (ptr) ::ric::packet::spy::CancelWatchResponse();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::CancelWatchResponse::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_CancelWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCancelWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsCommitModelRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_CommitModelRequest_default_instance_;
new (ptr) ::ric::packet::spy::CommitModelRequest();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::CommitModelRequest::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_CommitModelRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCommitModelRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsCommitModelResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_CommitModelResponse_default_instance_;
new (ptr) ::ric::packet::spy::CommitModelResponse();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::CommitModelResponse::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_CommitModelResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsCommitModelResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsWatchUpdateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_WatchUpdateRequest_default_instance_;
new (ptr) ::ric::packet::spy::WatchUpdateRequest();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::WatchUpdateRequest::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_WatchUpdateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsWatchUpdateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
static void InitDefaultsObjectUpdate_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
GOOGLE_PROTOBUF_VERIFY_VERSION;
{
void* ptr = &::ric::packet::spy::_ObjectUpdate_default_instance_;
new (ptr) ::ric::packet::spy::ObjectUpdate();
::google::protobuf::internal::OnShutdownDestroyMessage(ptr);
}
::ric::packet::spy::ObjectUpdate::InitAsDefaultInstance();
}
::google::protobuf::internal::SCCInfo<0> scc_info_ObjectUpdate_ric_2dpacket_2dspy_2fricpacketspy_2eproto =
{{ATOMIC_VAR_INIT(::google::protobuf::internal::SCCInfoBase::kUninitialized), 0, InitDefaultsObjectUpdate_ric_2dpacket_2dspy_2fricpacketspy_2eproto}, {}};
void InitDefaults_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
::google::protobuf::internal::InitSCC(&scc_info_GetStateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_GetStateResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_StartWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_StartWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_CancelWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_CancelWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_CommitModelRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_CommitModelResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_WatchUpdateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
::google::protobuf::internal::InitSCC(&scc_info_ObjectUpdate_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
}
::google::protobuf::Metadata file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[10];
constexpr ::google::protobuf::EnumDescriptor const** file_level_enum_descriptors_ric_2dpacket_2dspy_2fricpacketspy_2eproto = nullptr;
constexpr ::google::protobuf::ServiceDescriptor const** file_level_service_descriptors_ric_2dpacket_2dspy_2fricpacketspy_2eproto = nullptr;
const ::google::protobuf::uint32 TableStruct_ric_2dpacket_2dspy_2fricpacketspy_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = {
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::GetStateRequest, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::GetStateRequest, object_id_),
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::GetStateResponse, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::GetStateResponse, data_),
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::StartWatchRequest, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::StartWatchRequest, object_id_),
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::StartWatchRequest, timeout_),
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::StartWatchResponse, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::StartWatchResponse, timeout_),
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::CancelWatchRequest, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::CancelWatchRequest, object_id_),
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::CancelWatchResponse, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::CommitModelRequest, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::CommitModelRequest, object_id_),
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::CommitModelRequest, fields_),
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::CommitModelResponse, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::WatchUpdateRequest, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::WatchUpdateRequest, object_id_),
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::ObjectUpdate, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::ric::packet::spy::ObjectUpdate, data_),
};
static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = {
{ 0, -1, sizeof(::ric::packet::spy::GetStateRequest)},
{ 6, -1, sizeof(::ric::packet::spy::GetStateResponse)},
{ 12, -1, sizeof(::ric::packet::spy::StartWatchRequest)},
{ 19, -1, sizeof(::ric::packet::spy::StartWatchResponse)},
{ 25, -1, sizeof(::ric::packet::spy::CancelWatchRequest)},
{ 31, -1, sizeof(::ric::packet::spy::CancelWatchResponse)},
{ 36, -1, sizeof(::ric::packet::spy::CommitModelRequest)},
{ 43, -1, sizeof(::ric::packet::spy::CommitModelResponse)},
{ 48, -1, sizeof(::ric::packet::spy::WatchUpdateRequest)},
{ 54, -1, sizeof(::ric::packet::spy::ObjectUpdate)},
};
static ::google::protobuf::Message const * const file_default_instances[] = {
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_GetStateRequest_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_GetStateResponse_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_StartWatchRequest_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_StartWatchResponse_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_CancelWatchRequest_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_CancelWatchResponse_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_CommitModelRequest_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_CommitModelResponse_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_WatchUpdateRequest_default_instance_),
reinterpret_cast<const ::google::protobuf::Message*>(&::ric::packet::spy::_ObjectUpdate_default_instance_),
};
::google::protobuf::internal::AssignDescriptorsTable assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto = {
{}, AddDescriptors_ric_2dpacket_2dspy_2fricpacketspy_2eproto, "ric-packet-spy/ricpacketspy.proto", schemas,
file_default_instances, TableStruct_ric_2dpacket_2dspy_2fricpacketspy_2eproto::offsets,
file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto, 10, file_level_enum_descriptors_ric_2dpacket_2dspy_2fricpacketspy_2eproto, file_level_service_descriptors_ric_2dpacket_2dspy_2fricpacketspy_2eproto,
};
const char descriptor_table_protodef_ric_2dpacket_2dspy_2fricpacketspy_2eproto[] =
"\n!ric-packet-spy/ricpacketspy.proto\022\016ric"
".packet.spy\"$\n\017GetStateRequest\022\021\n\tobject"
"_id\030\001 \001(\t\" \n\020GetStateResponse\022\014\n\004data\030\001 "
"\001(\014\"7\n\021StartWatchRequest\022\021\n\tobject_id\030\001 "
"\001(\t\022\017\n\007timeout\030\002 \001(\003\"%\n\022StartWatchRespon"
"se\022\017\n\007timeout\030\001 \001(\003\"\'\n\022CancelWatchReques"
"t\022\021\n\tobject_id\030\001 \001(\t\"\025\n\023CancelWatchRespo"
"nse\"7\n\022CommitModelRequest\022\021\n\tobject_id\030\001"
" \001(\t\022\016\n\006fields\030\002 \003(\t\"\025\n\023CommitModelRespo"
"nse\"\'\n\022WatchUpdateRequest\022\021\n\tobject_id\030\001"
" \001(\t\"\034\n\014ObjectUpdate\022\014\n\004data\030\001 \001(\0142\265\003\n\014R"
"icPacketSpy\022M\n\010GetState\022\037.ric.packet.spy"
".GetStateRequest\032 .ric.packet.spy.GetSta"
"teResponse\022S\n\nStartWatch\022!.ric.packet.sp"
"y.StartWatchRequest\032\".ric.packet.spy.Sta"
"rtWatchResponse\022V\n\013CancelWatch\022\".ric.pac"
"ket.spy.CancelWatchRequest\032#.ric.packet."
"spy.CancelWatchResponse\022V\n\013CommitModel\022\""
".ric.packet.spy.CommitModelRequest\032#.ric"
".packet.spy.CommitModelResponse\022Q\n\013Watch"
"Update\022\".ric.packet.spy.WatchUpdateReque"
"st\032\034.ric.packet.spy.ObjectUpdate0\001B\037Z\035./"
"ric-packet-spy;ricpacketspyb\006proto3"
;
::google::protobuf::internal::DescriptorTable descriptor_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto = {
false, InitDefaults_ric_2dpacket_2dspy_2fricpacketspy_2eproto,
descriptor_table_protodef_ric_2dpacket_2dspy_2fricpacketspy_2eproto,
"ric-packet-spy/ricpacketspy.proto", &assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto, 915,
};
void AddDescriptors_ric_2dpacket_2dspy_2fricpacketspy_2eproto() {
static constexpr ::google::protobuf::internal::InitFunc deps[1] =
{
};
::google::protobuf::internal::AddDescriptors(&descriptor_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto, deps, 0);
}
// Force running AddDescriptors() at dynamic initialization time.
static bool dynamic_init_dummy_ric_2dpacket_2dspy_2fricpacketspy_2eproto = []() { AddDescriptors_ric_2dpacket_2dspy_2fricpacketspy_2eproto(); return true; }();
namespace ric {
namespace packet {
namespace spy {
// ===================================================================
void GetStateRequest::InitAsDefaultInstance() {
}
class GetStateRequest::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int GetStateRequest::kObjectIdFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
GetStateRequest::GetStateRequest()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.GetStateRequest)
}
GetStateRequest::GetStateRequest(const GetStateRequest& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.GetStateRequest)
}
void GetStateRequest::SharedCtor() {
::google::protobuf::internal::InitSCC(
&scc_info_GetStateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
GetStateRequest::~GetStateRequest() {
// @@protoc_insertion_point(destructor:ric.packet.spy.GetStateRequest)
SharedDtor();
}
void GetStateRequest::SharedDtor() {
object_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void GetStateRequest::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const GetStateRequest& GetStateRequest::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_GetStateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void GetStateRequest::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.GetStateRequest)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
object_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* GetStateRequest::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<GetStateRequest*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
// string object_id = 1;
case 1: {
if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual;
ptr = ::google::protobuf::io::ReadSize(ptr, &size);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
ctx->extra_parse_data().SetFieldName("ric.packet.spy.GetStateRequest.object_id");
object = msg->mutable_object_id();
if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) {
parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8;
goto string_till_end;
}
GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx));
::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx);
ptr += size;
break;
}
default: {
handle_unusual:
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
string_till_end:
static_cast<::std::string*>(object)->clear();
static_cast<::std::string*>(object)->reserve(size);
goto len_delim_till_end;
len_delim_till_end:
return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg},
{parser_till_end, object}, size);
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool GetStateRequest::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.GetStateRequest)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// string object_id = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_object_id()));
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::PARSE,
"ric.packet.spy.GetStateRequest.object_id"));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.GetStateRequest)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.GetStateRequest)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void GetStateRequest::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.GetStateRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.GetStateRequest.object_id");
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
1, this->object_id(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.GetStateRequest)
}
::google::protobuf::uint8* GetStateRequest::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.GetStateRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.GetStateRequest.object_id");
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->object_id(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.GetStateRequest)
return target;
}
size_t GetStateRequest::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.GetStateRequest)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->object_id());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void GetStateRequest::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.GetStateRequest)
GOOGLE_DCHECK_NE(&from, this);
const GetStateRequest* source =
::google::protobuf::DynamicCastToGenerated<GetStateRequest>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.GetStateRequest)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.GetStateRequest)
MergeFrom(*source);
}
}
void GetStateRequest::MergeFrom(const GetStateRequest& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.GetStateRequest)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
}
void GetStateRequest::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.GetStateRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void GetStateRequest::CopyFrom(const GetStateRequest& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.GetStateRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool GetStateRequest::IsInitialized() const {
return true;
}
void GetStateRequest::Swap(GetStateRequest* other) {
if (other == this) return;
InternalSwap(other);
}
void GetStateRequest::InternalSwap(GetStateRequest* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
object_id_.Swap(&other->object_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
}
::google::protobuf::Metadata GetStateRequest::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void GetStateResponse::InitAsDefaultInstance() {
}
class GetStateResponse::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int GetStateResponse::kDataFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
GetStateResponse::GetStateResponse()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.GetStateResponse)
}
GetStateResponse::GetStateResponse(const GetStateResponse& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.data().size() > 0) {
data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.data_);
}
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.GetStateResponse)
}
void GetStateResponse::SharedCtor() {
::google::protobuf::internal::InitSCC(
&scc_info_GetStateResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
GetStateResponse::~GetStateResponse() {
// @@protoc_insertion_point(destructor:ric.packet.spy.GetStateResponse)
SharedDtor();
}
void GetStateResponse::SharedDtor() {
data_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void GetStateResponse::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const GetStateResponse& GetStateResponse::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_GetStateResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void GetStateResponse::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.GetStateResponse)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* GetStateResponse::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<GetStateResponse*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
// bytes data = 1;
case 1: {
if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual;
ptr = ::google::protobuf::io::ReadSize(ptr, &size);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
object = msg->mutable_data();
if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) {
parser_till_end = ::google::protobuf::internal::GreedyStringParser;
goto string_till_end;
}
GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheck(ptr, size, ctx));
::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx);
ptr += size;
break;
}
default: {
handle_unusual:
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
string_till_end:
static_cast<::std::string*>(object)->clear();
static_cast<::std::string*>(object)->reserve(size);
goto len_delim_till_end;
len_delim_till_end:
return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg},
{parser_till_end, object}, size);
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool GetStateResponse::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.GetStateResponse)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// bytes data = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_data()));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.GetStateResponse)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.GetStateResponse)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void GetStateResponse::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.GetStateResponse)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes data = 1;
if (this->data().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
1, this->data(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.GetStateResponse)
}
::google::protobuf::uint8* GetStateResponse::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.GetStateResponse)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes data = 1;
if (this->data().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
1, this->data(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.GetStateResponse)
return target;
}
size_t GetStateResponse::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.GetStateResponse)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// bytes data = 1;
if (this->data().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->data());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void GetStateResponse::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.GetStateResponse)
GOOGLE_DCHECK_NE(&from, this);
const GetStateResponse* source =
::google::protobuf::DynamicCastToGenerated<GetStateResponse>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.GetStateResponse)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.GetStateResponse)
MergeFrom(*source);
}
}
void GetStateResponse::MergeFrom(const GetStateResponse& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.GetStateResponse)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.data().size() > 0) {
data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.data_);
}
}
void GetStateResponse::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.GetStateResponse)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void GetStateResponse::CopyFrom(const GetStateResponse& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.GetStateResponse)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool GetStateResponse::IsInitialized() const {
return true;
}
void GetStateResponse::Swap(GetStateResponse* other) {
if (other == this) return;
InternalSwap(other);
}
void GetStateResponse::InternalSwap(GetStateResponse* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
data_.Swap(&other->data_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
}
::google::protobuf::Metadata GetStateResponse::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void StartWatchRequest::InitAsDefaultInstance() {
}
class StartWatchRequest::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int StartWatchRequest::kObjectIdFieldNumber;
const int StartWatchRequest::kTimeoutFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
StartWatchRequest::StartWatchRequest()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.StartWatchRequest)
}
StartWatchRequest::StartWatchRequest(const StartWatchRequest& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
timeout_ = from.timeout_;
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.StartWatchRequest)
}
void StartWatchRequest::SharedCtor() {
::google::protobuf::internal::InitSCC(
&scc_info_StartWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
timeout_ = PROTOBUF_LONGLONG(0);
}
StartWatchRequest::~StartWatchRequest() {
// @@protoc_insertion_point(destructor:ric.packet.spy.StartWatchRequest)
SharedDtor();
}
void StartWatchRequest::SharedDtor() {
object_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void StartWatchRequest::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const StartWatchRequest& StartWatchRequest::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_StartWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void StartWatchRequest::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.StartWatchRequest)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
object_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
timeout_ = PROTOBUF_LONGLONG(0);
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* StartWatchRequest::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<StartWatchRequest*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
// string object_id = 1;
case 1: {
if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual;
ptr = ::google::protobuf::io::ReadSize(ptr, &size);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
ctx->extra_parse_data().SetFieldName("ric.packet.spy.StartWatchRequest.object_id");
object = msg->mutable_object_id();
if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) {
parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8;
goto string_till_end;
}
GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx));
::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx);
ptr += size;
break;
}
// int64 timeout = 2;
case 2: {
if (static_cast<::google::protobuf::uint8>(tag) != 16) goto handle_unusual;
msg->set_timeout(::google::protobuf::internal::ReadVarint(&ptr));
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
break;
}
default: {
handle_unusual:
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
string_till_end:
static_cast<::std::string*>(object)->clear();
static_cast<::std::string*>(object)->reserve(size);
goto len_delim_till_end;
len_delim_till_end:
return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg},
{parser_till_end, object}, size);
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool StartWatchRequest::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.StartWatchRequest)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// string object_id = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_object_id()));
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::PARSE,
"ric.packet.spy.StartWatchRequest.object_id"));
} else {
goto handle_unusual;
}
break;
}
// int64 timeout = 2;
case 2: {
if (static_cast< ::google::protobuf::uint8>(tag) == (16 & 0xFF)) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>(
input, &timeout_)));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.StartWatchRequest)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.StartWatchRequest)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void StartWatchRequest::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.StartWatchRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.StartWatchRequest.object_id");
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
1, this->object_id(), output);
}
// int64 timeout = 2;
if (this->timeout() != 0) {
::google::protobuf::internal::WireFormatLite::WriteInt64(2, this->timeout(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.StartWatchRequest)
}
::google::protobuf::uint8* StartWatchRequest::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.StartWatchRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.StartWatchRequest.object_id");
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->object_id(), target);
}
// int64 timeout = 2;
if (this->timeout() != 0) {
target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(2, this->timeout(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.StartWatchRequest)
return target;
}
size_t StartWatchRequest::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.StartWatchRequest)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->object_id());
}
// int64 timeout = 2;
if (this->timeout() != 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::Int64Size(
this->timeout());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void StartWatchRequest::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.StartWatchRequest)
GOOGLE_DCHECK_NE(&from, this);
const StartWatchRequest* source =
::google::protobuf::DynamicCastToGenerated<StartWatchRequest>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.StartWatchRequest)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.StartWatchRequest)
MergeFrom(*source);
}
}
void StartWatchRequest::MergeFrom(const StartWatchRequest& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.StartWatchRequest)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
if (from.timeout() != 0) {
set_timeout(from.timeout());
}
}
void StartWatchRequest::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.StartWatchRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void StartWatchRequest::CopyFrom(const StartWatchRequest& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.StartWatchRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool StartWatchRequest::IsInitialized() const {
return true;
}
void StartWatchRequest::Swap(StartWatchRequest* other) {
if (other == this) return;
InternalSwap(other);
}
void StartWatchRequest::InternalSwap(StartWatchRequest* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
object_id_.Swap(&other->object_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
swap(timeout_, other->timeout_);
}
::google::protobuf::Metadata StartWatchRequest::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void StartWatchResponse::InitAsDefaultInstance() {
}
class StartWatchResponse::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int StartWatchResponse::kTimeoutFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
StartWatchResponse::StartWatchResponse()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.StartWatchResponse)
}
StartWatchResponse::StartWatchResponse(const StartWatchResponse& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
timeout_ = from.timeout_;
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.StartWatchResponse)
}
void StartWatchResponse::SharedCtor() {
timeout_ = PROTOBUF_LONGLONG(0);
}
StartWatchResponse::~StartWatchResponse() {
// @@protoc_insertion_point(destructor:ric.packet.spy.StartWatchResponse)
SharedDtor();
}
void StartWatchResponse::SharedDtor() {
}
void StartWatchResponse::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const StartWatchResponse& StartWatchResponse::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_StartWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void StartWatchResponse::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.StartWatchResponse)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
timeout_ = PROTOBUF_LONGLONG(0);
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* StartWatchResponse::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<StartWatchResponse*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
// int64 timeout = 1;
case 1: {
if (static_cast<::google::protobuf::uint8>(tag) != 8) goto handle_unusual;
msg->set_timeout(::google::protobuf::internal::ReadVarint(&ptr));
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
break;
}
default: {
handle_unusual:
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool StartWatchResponse::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.StartWatchResponse)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// int64 timeout = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) == (8 & 0xFF)) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::int64, ::google::protobuf::internal::WireFormatLite::TYPE_INT64>(
input, &timeout_)));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.StartWatchResponse)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.StartWatchResponse)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void StartWatchResponse::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.StartWatchResponse)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// int64 timeout = 1;
if (this->timeout() != 0) {
::google::protobuf::internal::WireFormatLite::WriteInt64(1, this->timeout(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.StartWatchResponse)
}
::google::protobuf::uint8* StartWatchResponse::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.StartWatchResponse)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// int64 timeout = 1;
if (this->timeout() != 0) {
target = ::google::protobuf::internal::WireFormatLite::WriteInt64ToArray(1, this->timeout(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.StartWatchResponse)
return target;
}
size_t StartWatchResponse::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.StartWatchResponse)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// int64 timeout = 1;
if (this->timeout() != 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::Int64Size(
this->timeout());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void StartWatchResponse::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.StartWatchResponse)
GOOGLE_DCHECK_NE(&from, this);
const StartWatchResponse* source =
::google::protobuf::DynamicCastToGenerated<StartWatchResponse>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.StartWatchResponse)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.StartWatchResponse)
MergeFrom(*source);
}
}
void StartWatchResponse::MergeFrom(const StartWatchResponse& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.StartWatchResponse)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.timeout() != 0) {
set_timeout(from.timeout());
}
}
void StartWatchResponse::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.StartWatchResponse)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void StartWatchResponse::CopyFrom(const StartWatchResponse& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.StartWatchResponse)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool StartWatchResponse::IsInitialized() const {
return true;
}
void StartWatchResponse::Swap(StartWatchResponse* other) {
if (other == this) return;
InternalSwap(other);
}
void StartWatchResponse::InternalSwap(StartWatchResponse* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
swap(timeout_, other->timeout_);
}
::google::protobuf::Metadata StartWatchResponse::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void CancelWatchRequest::InitAsDefaultInstance() {
}
class CancelWatchRequest::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int CancelWatchRequest::kObjectIdFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
CancelWatchRequest::CancelWatchRequest()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.CancelWatchRequest)
}
CancelWatchRequest::CancelWatchRequest(const CancelWatchRequest& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.CancelWatchRequest)
}
void CancelWatchRequest::SharedCtor() {
::google::protobuf::internal::InitSCC(
&scc_info_CancelWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
CancelWatchRequest::~CancelWatchRequest() {
// @@protoc_insertion_point(destructor:ric.packet.spy.CancelWatchRequest)
SharedDtor();
}
void CancelWatchRequest::SharedDtor() {
object_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void CancelWatchRequest::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const CancelWatchRequest& CancelWatchRequest::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_CancelWatchRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void CancelWatchRequest::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.CancelWatchRequest)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
object_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* CancelWatchRequest::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<CancelWatchRequest*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
// string object_id = 1;
case 1: {
if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual;
ptr = ::google::protobuf::io::ReadSize(ptr, &size);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
ctx->extra_parse_data().SetFieldName("ric.packet.spy.CancelWatchRequest.object_id");
object = msg->mutable_object_id();
if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) {
parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8;
goto string_till_end;
}
GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx));
::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx);
ptr += size;
break;
}
default: {
handle_unusual:
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
string_till_end:
static_cast<::std::string*>(object)->clear();
static_cast<::std::string*>(object)->reserve(size);
goto len_delim_till_end;
len_delim_till_end:
return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg},
{parser_till_end, object}, size);
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool CancelWatchRequest::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.CancelWatchRequest)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// string object_id = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_object_id()));
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::PARSE,
"ric.packet.spy.CancelWatchRequest.object_id"));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.CancelWatchRequest)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.CancelWatchRequest)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void CancelWatchRequest::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.CancelWatchRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.CancelWatchRequest.object_id");
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
1, this->object_id(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.CancelWatchRequest)
}
::google::protobuf::uint8* CancelWatchRequest::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.CancelWatchRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.CancelWatchRequest.object_id");
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->object_id(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.CancelWatchRequest)
return target;
}
size_t CancelWatchRequest::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.CancelWatchRequest)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->object_id());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void CancelWatchRequest::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.CancelWatchRequest)
GOOGLE_DCHECK_NE(&from, this);
const CancelWatchRequest* source =
::google::protobuf::DynamicCastToGenerated<CancelWatchRequest>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.CancelWatchRequest)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.CancelWatchRequest)
MergeFrom(*source);
}
}
void CancelWatchRequest::MergeFrom(const CancelWatchRequest& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.CancelWatchRequest)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
}
void CancelWatchRequest::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.CancelWatchRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void CancelWatchRequest::CopyFrom(const CancelWatchRequest& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.CancelWatchRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool CancelWatchRequest::IsInitialized() const {
return true;
}
void CancelWatchRequest::Swap(CancelWatchRequest* other) {
if (other == this) return;
InternalSwap(other);
}
void CancelWatchRequest::InternalSwap(CancelWatchRequest* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
object_id_.Swap(&other->object_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
}
::google::protobuf::Metadata CancelWatchRequest::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void CancelWatchResponse::InitAsDefaultInstance() {
}
class CancelWatchResponse::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
CancelWatchResponse::CancelWatchResponse()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.CancelWatchResponse)
}
CancelWatchResponse::CancelWatchResponse(const CancelWatchResponse& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.CancelWatchResponse)
}
void CancelWatchResponse::SharedCtor() {
}
CancelWatchResponse::~CancelWatchResponse() {
// @@protoc_insertion_point(destructor:ric.packet.spy.CancelWatchResponse)
SharedDtor();
}
void CancelWatchResponse::SharedDtor() {
}
void CancelWatchResponse::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const CancelWatchResponse& CancelWatchResponse::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_CancelWatchResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void CancelWatchResponse::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.CancelWatchResponse)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* CancelWatchResponse::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<CancelWatchResponse*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
default: {
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool CancelWatchResponse::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.CancelWatchResponse)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.CancelWatchResponse)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.CancelWatchResponse)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void CancelWatchResponse::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.CancelWatchResponse)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.CancelWatchResponse)
}
::google::protobuf::uint8* CancelWatchResponse::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.CancelWatchResponse)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.CancelWatchResponse)
return target;
}
size_t CancelWatchResponse::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.CancelWatchResponse)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void CancelWatchResponse::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.CancelWatchResponse)
GOOGLE_DCHECK_NE(&from, this);
const CancelWatchResponse* source =
::google::protobuf::DynamicCastToGenerated<CancelWatchResponse>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.CancelWatchResponse)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.CancelWatchResponse)
MergeFrom(*source);
}
}
void CancelWatchResponse::MergeFrom(const CancelWatchResponse& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.CancelWatchResponse)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
}
void CancelWatchResponse::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.CancelWatchResponse)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void CancelWatchResponse::CopyFrom(const CancelWatchResponse& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.CancelWatchResponse)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool CancelWatchResponse::IsInitialized() const {
return true;
}
void CancelWatchResponse::Swap(CancelWatchResponse* other) {
if (other == this) return;
InternalSwap(other);
}
void CancelWatchResponse::InternalSwap(CancelWatchResponse* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
}
::google::protobuf::Metadata CancelWatchResponse::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void CommitModelRequest::InitAsDefaultInstance() {
}
class CommitModelRequest::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int CommitModelRequest::kObjectIdFieldNumber;
const int CommitModelRequest::kFieldsFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
CommitModelRequest::CommitModelRequest()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.CommitModelRequest)
}
CommitModelRequest::CommitModelRequest(const CommitModelRequest& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr),
fields_(from.fields_) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.CommitModelRequest)
}
void CommitModelRequest::SharedCtor() {
::google::protobuf::internal::InitSCC(
&scc_info_CommitModelRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
CommitModelRequest::~CommitModelRequest() {
// @@protoc_insertion_point(destructor:ric.packet.spy.CommitModelRequest)
SharedDtor();
}
void CommitModelRequest::SharedDtor() {
object_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void CommitModelRequest::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const CommitModelRequest& CommitModelRequest::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_CommitModelRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void CommitModelRequest::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.CommitModelRequest)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
fields_.Clear();
object_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* CommitModelRequest::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<CommitModelRequest*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
// string object_id = 1;
case 1: {
if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual;
ptr = ::google::protobuf::io::ReadSize(ptr, &size);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
ctx->extra_parse_data().SetFieldName("ric.packet.spy.CommitModelRequest.object_id");
object = msg->mutable_object_id();
if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) {
parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8;
goto string_till_end;
}
GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx));
::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx);
ptr += size;
break;
}
// repeated string fields = 2;
case 2: {
if (static_cast<::google::protobuf::uint8>(tag) != 18) goto handle_unusual;
do {
ptr = ::google::protobuf::io::ReadSize(ptr, &size);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
ctx->extra_parse_data().SetFieldName("ric.packet.spy.CommitModelRequest.fields");
object = msg->add_fields();
if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) {
parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8;
goto string_till_end;
}
GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx));
::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx);
ptr += size;
if (ptr >= end) break;
} while ((::google::protobuf::io::UnalignedLoad<::google::protobuf::uint64>(ptr) & 255) == 18 && (ptr += 1));
break;
}
default: {
handle_unusual:
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
string_till_end:
static_cast<::std::string*>(object)->clear();
static_cast<::std::string*>(object)->reserve(size);
goto len_delim_till_end;
len_delim_till_end:
return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg},
{parser_till_end, object}, size);
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool CommitModelRequest::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.CommitModelRequest)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// string object_id = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_object_id()));
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::PARSE,
"ric.packet.spy.CommitModelRequest.object_id"));
} else {
goto handle_unusual;
}
break;
}
// repeated string fields = 2;
case 2: {
if (static_cast< ::google::protobuf::uint8>(tag) == (18 & 0xFF)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->add_fields()));
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->fields(this->fields_size() - 1).data(),
static_cast<int>(this->fields(this->fields_size() - 1).length()),
::google::protobuf::internal::WireFormatLite::PARSE,
"ric.packet.spy.CommitModelRequest.fields"));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.CommitModelRequest)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.CommitModelRequest)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void CommitModelRequest::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.CommitModelRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.CommitModelRequest.object_id");
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
1, this->object_id(), output);
}
// repeated string fields = 2;
for (int i = 0, n = this->fields_size(); i < n; i++) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->fields(i).data(), static_cast<int>(this->fields(i).length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.CommitModelRequest.fields");
::google::protobuf::internal::WireFormatLite::WriteString(
2, this->fields(i), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.CommitModelRequest)
}
::google::protobuf::uint8* CommitModelRequest::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.CommitModelRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.CommitModelRequest.object_id");
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->object_id(), target);
}
// repeated string fields = 2;
for (int i = 0, n = this->fields_size(); i < n; i++) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->fields(i).data(), static_cast<int>(this->fields(i).length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.CommitModelRequest.fields");
target = ::google::protobuf::internal::WireFormatLite::
WriteStringToArray(2, this->fields(i), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.CommitModelRequest)
return target;
}
size_t CommitModelRequest::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.CommitModelRequest)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// repeated string fields = 2;
total_size += 1 *
::google::protobuf::internal::FromIntSize(this->fields_size());
for (int i = 0, n = this->fields_size(); i < n; i++) {
total_size += ::google::protobuf::internal::WireFormatLite::StringSize(
this->fields(i));
}
// string object_id = 1;
if (this->object_id().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->object_id());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void CommitModelRequest::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.CommitModelRequest)
GOOGLE_DCHECK_NE(&from, this);
const CommitModelRequest* source =
::google::protobuf::DynamicCastToGenerated<CommitModelRequest>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.CommitModelRequest)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.CommitModelRequest)
MergeFrom(*source);
}
}
void CommitModelRequest::MergeFrom(const CommitModelRequest& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.CommitModelRequest)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
fields_.MergeFrom(from.fields_);
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
}
void CommitModelRequest::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.CommitModelRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void CommitModelRequest::CopyFrom(const CommitModelRequest& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.CommitModelRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool CommitModelRequest::IsInitialized() const {
return true;
}
void CommitModelRequest::Swap(CommitModelRequest* other) {
if (other == this) return;
InternalSwap(other);
}
void CommitModelRequest::InternalSwap(CommitModelRequest* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
fields_.InternalSwap(CastToBase(&other->fields_));
object_id_.Swap(&other->object_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
}
::google::protobuf::Metadata CommitModelRequest::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void CommitModelResponse::InitAsDefaultInstance() {
}
class CommitModelResponse::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
CommitModelResponse::CommitModelResponse()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.CommitModelResponse)
}
CommitModelResponse::CommitModelResponse(const CommitModelResponse& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.CommitModelResponse)
}
void CommitModelResponse::SharedCtor() {
}
CommitModelResponse::~CommitModelResponse() {
// @@protoc_insertion_point(destructor:ric.packet.spy.CommitModelResponse)
SharedDtor();
}
void CommitModelResponse::SharedDtor() {
}
void CommitModelResponse::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const CommitModelResponse& CommitModelResponse::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_CommitModelResponse_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void CommitModelResponse::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.CommitModelResponse)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* CommitModelResponse::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<CommitModelResponse*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
default: {
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool CommitModelResponse::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.CommitModelResponse)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.CommitModelResponse)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.CommitModelResponse)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void CommitModelResponse::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.CommitModelResponse)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.CommitModelResponse)
}
::google::protobuf::uint8* CommitModelResponse::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.CommitModelResponse)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.CommitModelResponse)
return target;
}
size_t CommitModelResponse::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.CommitModelResponse)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void CommitModelResponse::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.CommitModelResponse)
GOOGLE_DCHECK_NE(&from, this);
const CommitModelResponse* source =
::google::protobuf::DynamicCastToGenerated<CommitModelResponse>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.CommitModelResponse)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.CommitModelResponse)
MergeFrom(*source);
}
}
void CommitModelResponse::MergeFrom(const CommitModelResponse& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.CommitModelResponse)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
}
void CommitModelResponse::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.CommitModelResponse)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void CommitModelResponse::CopyFrom(const CommitModelResponse& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.CommitModelResponse)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool CommitModelResponse::IsInitialized() const {
return true;
}
void CommitModelResponse::Swap(CommitModelResponse* other) {
if (other == this) return;
InternalSwap(other);
}
void CommitModelResponse::InternalSwap(CommitModelResponse* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
}
::google::protobuf::Metadata CommitModelResponse::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void WatchUpdateRequest::InitAsDefaultInstance() {
}
class WatchUpdateRequest::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int WatchUpdateRequest::kObjectIdFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
WatchUpdateRequest::WatchUpdateRequest()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.WatchUpdateRequest)
}
WatchUpdateRequest::WatchUpdateRequest(const WatchUpdateRequest& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.WatchUpdateRequest)
}
void WatchUpdateRequest::SharedCtor() {
::google::protobuf::internal::InitSCC(
&scc_info_WatchUpdateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
object_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
WatchUpdateRequest::~WatchUpdateRequest() {
// @@protoc_insertion_point(destructor:ric.packet.spy.WatchUpdateRequest)
SharedDtor();
}
void WatchUpdateRequest::SharedDtor() {
object_id_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void WatchUpdateRequest::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const WatchUpdateRequest& WatchUpdateRequest::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_WatchUpdateRequest_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void WatchUpdateRequest::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.WatchUpdateRequest)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
object_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* WatchUpdateRequest::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<WatchUpdateRequest*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
// string object_id = 1;
case 1: {
if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual;
ptr = ::google::protobuf::io::ReadSize(ptr, &size);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
ctx->extra_parse_data().SetFieldName("ric.packet.spy.WatchUpdateRequest.object_id");
object = msg->mutable_object_id();
if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) {
parser_till_end = ::google::protobuf::internal::GreedyStringParserUTF8;
goto string_till_end;
}
GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheckUTF8(ptr, size, ctx));
::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx);
ptr += size;
break;
}
default: {
handle_unusual:
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
string_till_end:
static_cast<::std::string*>(object)->clear();
static_cast<::std::string*>(object)->reserve(size);
goto len_delim_till_end;
len_delim_till_end:
return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg},
{parser_till_end, object}, size);
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool WatchUpdateRequest::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.WatchUpdateRequest)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// string object_id = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadString(
input, this->mutable_object_id()));
DO_(::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::PARSE,
"ric.packet.spy.WatchUpdateRequest.object_id"));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.WatchUpdateRequest)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.WatchUpdateRequest)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void WatchUpdateRequest::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.WatchUpdateRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.WatchUpdateRequest.object_id");
::google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(
1, this->object_id(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.WatchUpdateRequest)
}
::google::protobuf::uint8* WatchUpdateRequest::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.WatchUpdateRequest)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
::google::protobuf::internal::WireFormatLite::VerifyUtf8String(
this->object_id().data(), static_cast<int>(this->object_id().length()),
::google::protobuf::internal::WireFormatLite::SERIALIZE,
"ric.packet.spy.WatchUpdateRequest.object_id");
target =
::google::protobuf::internal::WireFormatLite::WriteStringToArray(
1, this->object_id(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.WatchUpdateRequest)
return target;
}
size_t WatchUpdateRequest::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.WatchUpdateRequest)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// string object_id = 1;
if (this->object_id().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::StringSize(
this->object_id());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void WatchUpdateRequest::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.WatchUpdateRequest)
GOOGLE_DCHECK_NE(&from, this);
const WatchUpdateRequest* source =
::google::protobuf::DynamicCastToGenerated<WatchUpdateRequest>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.WatchUpdateRequest)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.WatchUpdateRequest)
MergeFrom(*source);
}
}
void WatchUpdateRequest::MergeFrom(const WatchUpdateRequest& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.WatchUpdateRequest)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.object_id().size() > 0) {
object_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.object_id_);
}
}
void WatchUpdateRequest::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.WatchUpdateRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void WatchUpdateRequest::CopyFrom(const WatchUpdateRequest& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.WatchUpdateRequest)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool WatchUpdateRequest::IsInitialized() const {
return true;
}
void WatchUpdateRequest::Swap(WatchUpdateRequest* other) {
if (other == this) return;
InternalSwap(other);
}
void WatchUpdateRequest::InternalSwap(WatchUpdateRequest* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
object_id_.Swap(&other->object_id_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
}
::google::protobuf::Metadata WatchUpdateRequest::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// ===================================================================
void ObjectUpdate::InitAsDefaultInstance() {
}
class ObjectUpdate::HasBitSetters {
public:
};
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int ObjectUpdate::kDataFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
ObjectUpdate::ObjectUpdate()
: ::google::protobuf::Message(), _internal_metadata_(nullptr) {
SharedCtor();
// @@protoc_insertion_point(constructor:ric.packet.spy.ObjectUpdate)
}
ObjectUpdate::ObjectUpdate(const ObjectUpdate& from)
: ::google::protobuf::Message(),
_internal_metadata_(nullptr) {
_internal_metadata_.MergeFrom(from._internal_metadata_);
data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
if (from.data().size() > 0) {
data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.data_);
}
// @@protoc_insertion_point(copy_constructor:ric.packet.spy.ObjectUpdate)
}
void ObjectUpdate::SharedCtor() {
::google::protobuf::internal::InitSCC(
&scc_info_ObjectUpdate_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
data_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
ObjectUpdate::~ObjectUpdate() {
// @@protoc_insertion_point(destructor:ric.packet.spy.ObjectUpdate)
SharedDtor();
}
void ObjectUpdate::SharedDtor() {
data_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
void ObjectUpdate::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
const ObjectUpdate& ObjectUpdate::default_instance() {
::google::protobuf::internal::InitSCC(&::scc_info_ObjectUpdate_ric_2dpacket_2dspy_2fricpacketspy_2eproto.base);
return *internal_default_instance();
}
void ObjectUpdate::Clear() {
// @@protoc_insertion_point(message_clear_start:ric.packet.spy.ObjectUpdate)
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
_internal_metadata_.Clear();
}
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
const char* ObjectUpdate::_InternalParse(const char* begin, const char* end, void* object,
::google::protobuf::internal::ParseContext* ctx) {
auto msg = static_cast<ObjectUpdate*>(object);
::google::protobuf::int32 size; (void)size;
int depth; (void)depth;
::google::protobuf::uint32 tag;
::google::protobuf::internal::ParseFunc parser_till_end; (void)parser_till_end;
auto ptr = begin;
while (ptr < end) {
ptr = ::google::protobuf::io::Parse32(ptr, &tag);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
switch (tag >> 3) {
// bytes data = 1;
case 1: {
if (static_cast<::google::protobuf::uint8>(tag) != 10) goto handle_unusual;
ptr = ::google::protobuf::io::ReadSize(ptr, &size);
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr);
object = msg->mutable_data();
if (size > end - ptr + ::google::protobuf::internal::ParseContext::kSlopBytes) {
parser_till_end = ::google::protobuf::internal::GreedyStringParser;
goto string_till_end;
}
GOOGLE_PROTOBUF_PARSER_ASSERT(::google::protobuf::internal::StringCheck(ptr, size, ctx));
::google::protobuf::internal::InlineGreedyStringParser(object, ptr, size, ctx);
ptr += size;
break;
}
default: {
handle_unusual:
if ((tag & 7) == 4 || tag == 0) {
ctx->EndGroup(tag);
return ptr;
}
auto res = UnknownFieldParse(tag, {_InternalParse, msg},
ptr, end, msg->_internal_metadata_.mutable_unknown_fields(), ctx);
ptr = res.first;
GOOGLE_PROTOBUF_PARSER_ASSERT(ptr != nullptr);
if (res.second) return ptr;
}
} // switch
} // while
return ptr;
string_till_end:
static_cast<::std::string*>(object)->clear();
static_cast<::std::string*>(object)->reserve(size);
goto len_delim_till_end;
len_delim_till_end:
return ctx->StoreAndTailCall(ptr, end, {_InternalParse, msg},
{parser_till_end, object}, size);
}
#else // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
bool ObjectUpdate::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!PROTOBUF_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:ric.packet.spy.ObjectUpdate)
for (;;) {
::std::pair<::google::protobuf::uint32, bool> p = input->ReadTagWithCutoffNoLastTag(127u);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// bytes data = 1;
case 1: {
if (static_cast< ::google::protobuf::uint8>(tag) == (10 & 0xFF)) {
DO_(::google::protobuf::internal::WireFormatLite::ReadBytes(
input, this->mutable_data()));
} else {
goto handle_unusual;
}
break;
}
default: {
handle_unusual:
if (tag == 0) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, _internal_metadata_.mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:ric.packet.spy.ObjectUpdate)
return true;
failure:
// @@protoc_insertion_point(parse_failure:ric.packet.spy.ObjectUpdate)
return false;
#undef DO_
}
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void ObjectUpdate::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:ric.packet.spy.ObjectUpdate)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes data = 1;
if (this->data().size() > 0) {
::google::protobuf::internal::WireFormatLite::WriteBytesMaybeAliased(
1, this->data(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
_internal_metadata_.unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:ric.packet.spy.ObjectUpdate)
}
::google::protobuf::uint8* ObjectUpdate::InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:ric.packet.spy.ObjectUpdate)
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
// bytes data = 1;
if (this->data().size() > 0) {
target =
::google::protobuf::internal::WireFormatLite::WriteBytesToArray(
1, this->data(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:ric.packet.spy.ObjectUpdate)
return target;
}
size_t ObjectUpdate::ByteSizeLong() const {
// @@protoc_insertion_point(message_byte_size_start:ric.packet.spy.ObjectUpdate)
size_t total_size = 0;
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
_internal_metadata_.unknown_fields());
}
::google::protobuf::uint32 cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
// bytes data = 1;
if (this->data().size() > 0) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::BytesSize(
this->data());
}
int cached_size = ::google::protobuf::internal::ToCachedSize(total_size);
SetCachedSize(cached_size);
return total_size;
}
void ObjectUpdate::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:ric.packet.spy.ObjectUpdate)
GOOGLE_DCHECK_NE(&from, this);
const ObjectUpdate* source =
::google::protobuf::DynamicCastToGenerated<ObjectUpdate>(
&from);
if (source == nullptr) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:ric.packet.spy.ObjectUpdate)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:ric.packet.spy.ObjectUpdate)
MergeFrom(*source);
}
}
void ObjectUpdate::MergeFrom(const ObjectUpdate& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:ric.packet.spy.ObjectUpdate)
GOOGLE_DCHECK_NE(&from, this);
_internal_metadata_.MergeFrom(from._internal_metadata_);
::google::protobuf::uint32 cached_has_bits = 0;
(void) cached_has_bits;
if (from.data().size() > 0) {
data_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.data_);
}
}
void ObjectUpdate::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:ric.packet.spy.ObjectUpdate)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void ObjectUpdate::CopyFrom(const ObjectUpdate& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:ric.packet.spy.ObjectUpdate)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool ObjectUpdate::IsInitialized() const {
return true;
}
void ObjectUpdate::Swap(ObjectUpdate* other) {
if (other == this) return;
InternalSwap(other);
}
void ObjectUpdate::InternalSwap(ObjectUpdate* other) {
using std::swap;
_internal_metadata_.Swap(&other->_internal_metadata_);
data_.Swap(&other->data_, &::google::protobuf::internal::GetEmptyStringAlreadyInited(),
GetArenaNoVirtual());
}
::google::protobuf::Metadata ObjectUpdate::GetMetadata() const {
::google::protobuf::internal::AssignDescriptors(&::assign_descriptors_table_ric_2dpacket_2dspy_2fricpacketspy_2eproto);
return ::file_level_metadata_ric_2dpacket_2dspy_2fricpacketspy_2eproto[kIndexInFileMessages];
}
// @@protoc_insertion_point(namespace_scope)
} // namespace spy
} // namespace packet
} // namespace ric
namespace google {
namespace protobuf {
template<> PROTOBUF_NOINLINE ::ric::packet::spy::GetStateRequest* Arena::CreateMaybeMessage< ::ric::packet::spy::GetStateRequest >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::GetStateRequest >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::GetStateResponse* Arena::CreateMaybeMessage< ::ric::packet::spy::GetStateResponse >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::GetStateResponse >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::StartWatchRequest* Arena::CreateMaybeMessage< ::ric::packet::spy::StartWatchRequest >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::StartWatchRequest >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::StartWatchResponse* Arena::CreateMaybeMessage< ::ric::packet::spy::StartWatchResponse >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::StartWatchResponse >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::CancelWatchRequest* Arena::CreateMaybeMessage< ::ric::packet::spy::CancelWatchRequest >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::CancelWatchRequest >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::CancelWatchResponse* Arena::CreateMaybeMessage< ::ric::packet::spy::CancelWatchResponse >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::CancelWatchResponse >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::CommitModelRequest* Arena::CreateMaybeMessage< ::ric::packet::spy::CommitModelRequest >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::CommitModelRequest >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::CommitModelResponse* Arena::CreateMaybeMessage< ::ric::packet::spy::CommitModelResponse >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::CommitModelResponse >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::WatchUpdateRequest* Arena::CreateMaybeMessage< ::ric::packet::spy::WatchUpdateRequest >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::WatchUpdateRequest >(arena);
}
template<> PROTOBUF_NOINLINE ::ric::packet::spy::ObjectUpdate* Arena::CreateMaybeMessage< ::ric::packet::spy::ObjectUpdate >(Arena* arena) {
return Arena::CreateInternal< ::ric::packet::spy::ObjectUpdate >(arena);
}
} // namespace protobuf
} // namespace google
// @@protoc_insertion_point(global_scope)
#include <google/protobuf/port_undef.inc>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.