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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
81cfd709ba84d3c96b7cfc3dad3b799b1f7305bd | b4145c423da8e47e2c3daf66cfbf51084ffe0edd | /MeshWork/mwtool.cpp | 078491d82f3acb8e363b712e51512028981c7f10 | [] | no_license | yfguo91/remesh | 7cf21938b4d39ee9746e15d2f5867c0a7bf0f331 | 31d020402b9cb826b0ab570e9642d17e615152e1 | refs/heads/master | 2023-01-06T07:11:58.015907 | 2023-01-03T09:51:42 | 2023-01-03T09:51:42 | 277,212,308 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 30,961 | cpp | mwtool.cpp | #include"externalcommon.h"
#include"internalcommon.h"
namespace meshwork
{
double GetDistFromLine(const Point<3> & lp1, const Point<3> & lp2, Point<3> & p)
{
Vec<3> vn = lp2 - lp1;
Vec<3> v1 = p - lp1;
Vec<3> v2 = lp2 - p;
Point<3> pold = p;
Point<3> pp;
if (v2 * vn <= 0) {pp = lp2; return (pold - pp).Length();}
if (v1 * vn <= 0) {pp = lp1; return (pold - pp).Length();}
double vnl = vn.Length();
if (vnl == 0) {return Dist(lp1,p);}
vn /= vnl;
pp = lp1 + (v1 * vn) * vn;
return (pold - pp).Length();
}
double GetDistFromInfiniteLine(const Point<3>& lp1, const Point<3>& lp2, const Point<3>& p)
{
Vec<3> vn= lp2-lp1;
Vec<3> v1= p-lp1;
double vnl = vn.Length();
if (vnl == 0)
{
return Dist (lp1, p);
}
else
{
return Cross (vn, v1).Length() / vnl;
}
}
double ComputeCylinderRadius (const Vec<3> & n1, const Vec<3> & n2,
double h1, double h2)
{
Vec<3> t1, t2;
double n11 = n1 * n1;
double n12 = n1 * n2;
double n22 = n2 * n2;
double det = n11 * n22 - n12 * n12;
if (fabs (det) < 1e-14 * n11 * n22)
return 1e20;
// a biorthogonal bases (ti * nj) = delta_ij:
t1 = (n22/det) * n1 + (-n12/det) * n2;
t2 = (-n12/det) * n1 + (n11/det) * n2;
// normalize:
t1 /= t1.Length();
t2 /= t2.Length();
/*
vector to center point has form
v = lam1 n1 + lam2 n2
and fulfills
t2 v = h1/2
t1 v = h2/2
*/
double lam1 = 0.5 * h2 / (n1 * t1);
double lam2 = 0.5 * h1 / (n2 * t2);
double rad = (lam1 * n1 + lam2 * n2).Length();
return rad;
}
//add a point into a pointlist, return pointnumber
int AddPointIfNotExists(vector<Point<3>>& ap, const Point<3> p, double eps)
{
double eps2 = eps*eps;
for (int i = 0; i < ap.size(); i++)
if (Dist(ap[i],p) <= eps2 )
return i;
ap.push_back(p);
return ap.size()-1;
}
int IntersectionOfCircleAndSegment3d( Point<3> p , double rc ,
Point<3> plp1 , Point<3> plp2 , Point<3> pip[2] )
{
double xc=p[0];
double yc=p[1];
double zc=p[2];
double dp1p2 , p1m , dltsq ,dlt ,blt, v1 ;
Point<3> unitvecp1p2 , vecm ;
int it = 0 ;
dp1p2 = Dist( plp1 , plp2 ) ; //if dp1p2 very small,error
unitvecp1p2[0] = ( plp2[0] - plp1[0] )/dp1p2 ;
unitvecp1p2[1] = ( plp2[1] - plp1[1] )/dp1p2 ;
unitvecp1p2[2] = ( plp2[2] - plp1[2] )/dp1p2 ;
p1m = ( xc - plp1[0] ) * unitvecp1p2[0]
+ ( yc - plp1[1] ) * unitvecp1p2[1]
+ ( zc - plp1[2] ) * unitvecp1p2[2] ;
vecm[0] = plp1[0] + p1m * unitvecp1p2[0] ;
vecm[1] = plp1[1] + p1m * unitvecp1p2[1] ;
vecm[2] = plp1[2] + p1m * unitvecp1p2[2] ;
dltsq = rc * rc-( (vecm[0]-xc)*( vecm[0]-xc) + (vecm[1]-yc)*( vecm[1]-yc)
+(vecm[2]-zc) * ( vecm[2]-zc) ) ;
if( dltsq < 0 ) return(0) ;
dlt = sqrt( dltsq ) ;
blt=0. ; //0.01 * min(dp1p2,rc) ;
if( (v1 = p1m + dlt) >=-blt && v1<=dp1p2+blt ){
pip[it][0] = plp1[0] + v1 * unitvecp1p2[0] ;
pip[it][1] = plp1[1] + v1 * unitvecp1p2[1] ;
pip[it++][2] = plp1[2] + v1 * unitvecp1p2[2] ;
}
if( (v1 = p1m - dlt) >=-blt && v1<=dp1p2+blt ){
pip[it][0] = plp1[0] + v1 * unitvecp1p2[0] ;
pip[it][1] = plp1[1] + v1 * unitvecp1p2[1] ;
pip[it++][2] = plp1[2] + v1 * unitvecp1p2[2] ;
}
return(it) ;
}
void GetNearNodes( int node , double maxr, double grad,vector<Point<3>>& snodesf ,vector<double> & nodesf_r ,vector<int> &nearnodes)
{
int i ;
double dist0 , dlx , drx , dly , dry , dlz , drz ;
double a=nodesf_r[node];
double g_maxincresize=grad+1.;
dist0=a+2.01*a*g_maxincresize+a*g_maxincresize*g_maxincresize ;
if( dist0>4.*maxr ) dist0=4.*maxr ;
dlx=snodesf[node][0]-dist0 ;
drx=snodesf[node][0]+dist0 ;
dly=snodesf[node][1]-dist0 ;
dry=snodesf[node][1]+dist0 ;
dlz=snodesf[node][2]-dist0 ;
drz=snodesf[node][2]+dist0 ;
for( i=0 ; i<snodesf.size() ; i++ ){
if( snodesf[i][0]<dlx||snodesf[i][0]>drx||
snodesf[i][1]<dly||snodesf[i][1]>dry||
snodesf[i][2]<dlz||snodesf[i][2]>drz )continue ;
if( 0.9*Dist( snodesf[i],snodesf[node] ) < nodesf_r[i]+
nodesf_r[node]+2.*sqrt(nodesf_r[i]*nodesf_r[node])&&(i!= node) ){
nearnodes.push_back(i);
if( nearnodes.size() >= 500 ) /* test every time or here only 1 */
cout<<( " error-near_snodef\n") ;
}
}
}
int CalculateCircleFromTwoPoints3d( Point<3> p1 , Point<3> p2 , double r ,Point<3> &pcb , double *prb )
{
double d ;
pcb[0] = ( p1[0] + p2[0] ) /2. ;
pcb[1] = ( p1[1] + p2[1] ) /2. ;
pcb[2] = ( p1[2] + p2[2] ) /2. ;
d = Dist( p1 , p2 ) /2. ;
if( r <= 1.0000001*d ) return(0) ; //rev.12.11
*prb = sqrt( r * r - d * d ) ;
return(1) ;
}
int IsBoxAndTriangleIntersect( double x1 , double y1 ,double z1 , double x2 , double y2
,double z2 , Point<3> p1 , Point<3> p2 , Point<3> p3 )
{
if( p1[0]<x1 && p2[0]<x1 && p3[0]<x1 || p1[0]>x2 && p2[0]>x2 && p3[0]>x2
|| p1[1]<y1 && p2[1]<y1 && p3[1]<y1 || p1[1]>y2 && p2[1]>y2 && p3[1]>y2
|| p1[2]<z1 && p2[2]<z1 && p3[2]<z1 || p1[2]>z2 && p2[2]>z2 && p3[2]>z2
) return(0) ;
return(1) ;
}
int IsPointOnTriangle( Point<3> p , Point<3> p1 , Point<3> p2 , Point<3> p3 )
{
Vec<3> vpp1,vpp2,vpp3,vp1p2,vp1p3,
varea1,varea2,varea3,vare ;
//vec_2p( p , p1 , vpp1 ) ;
vpp1=p1-p;
//vec_2p( p , p2 , vpp2 ) ;
vpp2=p2-p;
//vec_2p( p , p3 , vpp3 ) ;
vpp3=p3-p;
//vec_2p( p1 , p2 , vp1p2 ) ;
vp1p2=p2-p1;
//vec_2p( p1 , p3 , vp1p3 ) ;
vp1p3=p3-p1;
//vec_crop( vpp1 , vpp2 , varea1 ) ;
varea1=Cross(vpp1 , vpp2 );
//vec_crop( vpp2 , vpp3 , varea2 ) ;
varea2=Cross( vpp2 , vpp3);
//vec_crop( vpp3 , vpp1 , varea3 ) ;
varea3=Cross(vpp3 , vpp1);
//vec_crop( vp1p2 , vp1p3 , vare ) ;
vare=Cross(vp1p2 , vp1p3);
#define eps4 1.01 // 1.1->1.01
if( varea1.Length() +varea2.Length() +varea3.Length()<
eps4 * vare.Length() ) return(1) ;
return(0) ;
}
int CalculateBoxOfCircle3d( Point<3> pcent , Point<3> p1 ,double r , double *x1 ,
double *y1, double *z1 , double *x2 , double *y2 , double *z2 )
{
double mx , my , mz , dx , dy , dz , ds ;
mx = p1[0] - pcent[0] ;
my = p1[1] - pcent[1] ;
mz = p1[2] - pcent[2] ;
ds = sqrt( mx * mx + my * my + mz * mz ) ;
if( ds < 0.0000001 ) return(0) ; //rev.12.11
dx = r * sqrt( my * my +mz * mz ) /ds * 1.01 ;
dy = r * sqrt( mx * mx +mz * mz ) /ds * 1.01 ;
dz = r * sqrt( my * my +mx * mx ) /ds * 1.01 ;
*x1 = pcent[0] - dx ; *y1 = pcent[1] - dy ; *z1 = pcent[2] - dz ;
*x2 = pcent[0] + dx ; *y2 = pcent[1] + dy ; *z2 = pcent[2] + dz ;
return(1) ; /* change to box of sphere good or not */
}
void EquationOfPlane( Point<3> p1 , Point<3> p2 , double norm[4] )
{
norm[0] = p2[0] - p1[0] ;
norm[1] = p2[1] - p1[1] ;
norm[2] = p2[2] - p1[2] ;
norm[3] = -p1[0] * norm[0] - p1[1] * norm[1] - p1[2] *norm[2] ;
}
int IntersectionOfPlaneAndTriangle( Point<3> p1 , Point<3> p2 , Point<3> p3 , double a ,
double b , double c , double d , Point<3> pip[2] )
{
double h1 , h2 , h3 ;
h1 = a * p1[0] + b * p1[1] + c * p1[2] + d ;
h2 = a * p2[0] + b * p2[1] + c * p2[2] + d ;
h3 = a * p3[0] + b * p3[1] + c * p3[2] + d ;
if( h1 >=0&&h2 >= 0&&h3 >= 0 || h1 <= 0&&h2 <= 0&&h3 <= 0 ) return(0) ;
if( h1 * h2 >= 0&&fabs(h1-h3)>=0.0000001&&fabs(h2-h3)>=0.0000001 ){
pip[0][0] = ( h1 * p3[0] - h3 * p1[0] ) / ( h1 - h3 ) ;
pip[0][1] = ( h1 * p3[1] - h3 * p1[1] ) / ( h1 - h3 ) ;
pip[0][2] = ( h1 * p3[2] - h3 * p1[2] ) / ( h1 - h3 ) ;
pip[1][0] = ( h2 * p3[0] - h3 * p2[0] ) / ( h2 - h3 ) ;
pip[1][1] = ( h2 * p3[1] - h3 * p2[1] ) / ( h2 - h3 ) ;
pip[1][2] = ( h2 * p3[2] - h3 * p2[2] ) / ( h2 - h3 ) ;
return 1 ;
}else if( h3 * h2 >= 0&&fabs(h1-h3)>=0.0000001&&fabs(h2-h1)>=0.0000001 ){
pip[0][0] = ( h1 * p3[0] - h3 * p1[0] ) / ( h1 - h3 ) ;
pip[0][1] = ( h1 * p3[1] - h3 * p1[1] ) / ( h1 - h3 ) ;
pip[0][2] = ( h1 * p3[2] - h3 * p1[2] ) / ( h1 - h3 ) ;
pip[1][0] = ( h2 * p1[0] - h1 * p2[0] ) / ( h2 - h1 ) ;
pip[1][1] = ( h2 * p1[1] - h1 * p2[1] ) / ( h2 - h1 ) ;
pip[1][2] = ( h2 * p1[2] - h1 * p2[2] ) / ( h2 - h1 ) ;
return 1 ;
}else if( h1 * h3 >= 0&&fabs(h1-h2)>=0.0000001&&fabs(h2-h3)>=0.0000001 ){
pip[0][0] = ( h1 * p2[0] - h2 * p1[0] ) / ( h1 - h2 ) ;
pip[0][1] = ( h1 * p2[1] - h2 * p1[1] ) / ( h1 - h2 ) ;
pip[0][2] = ( h1 * p2[2] - h2 * p1[2] ) / ( h1 - h2 ) ;
pip[1][0] = ( h2 * p3[0] - h3 * p2[0] ) / ( h2 - h3 ) ;
pip[1][1] = ( h2 * p3[1] - h3 * p2[1] ) / ( h2 - h3 ) ;
pip[1][2] = ( h2 * p3[2] - h3 * p2[2] ) / ( h2 - h3 ) ;
return 1 ;
}
return(0) ; // rev.12.11
}
int IsOnePointNearOthers( Point<3> p , double r, vector<Point<3>> &snodesf ,vector<double> &nodesf_r, vector<int> &nearnodes,int nj )
{
int i ; double wp ;
for(i=0 ;i<nearnodes.size(); i++ ){
if(nearnodes[i]==nj)continue;
wp = Dist( p , snodesf[ nearnodes[i] ]) ;
if( 1.3 * wp < nodesf_r[ nearnodes[i] ] + r) return(1) ; //1.6=>1.4 2002 9 11
}
return(0) ;
}
double SquareDistanceOfPointToBox( Point<3> p,const Box<3> &bd)
{
double a[3];
double q=0;
for(int i=0; i<3; i++){
if(p[i]>bd[i+3]) a[i]=p[i]-bd[i+3];
else if(p[i]<bd[i]) a[i]=bd[i]-p[i];
else a[i]=0;
q+=a[i]*a[i];
}
return q;
}
double SquareDistanceOfInnerPointToBoxBound( Point<3> p,const Box<3> &bd)
{
double a=min(p[0]-bd[0],bd[3]-p[0]);
double b=min(p[1]-bd[1],bd[4]-p[1]);
double c=min(p[2]-bd[2],bd[5]-p[2]);
double d= min(c,min(a,b));
return d*d;
}
void GetTheLongestDistanceOfBox(const Box<3> &b,int &di, double *pdist)
{
di=0;
double dist=0.;
for(int i=0; i<3; i++)
if(b[i+3]-b[i]>dist){
dist=b[i+3]-b[i];
di=i;
}
if(pdist!=0) *pdist=dist;
}
bool IsTwoBoxOverlap(const Box<3> &a,const Box<3> &b)
{
if(a[0]>b[3]||a[1]>b[4]||a[2]>b[5]||a[3]<b[0]||a[4]<b[1]||a[5]<b[2])
return false;
return true;
}
void Copy3DPoint(const Point<3> &pfr,Point<3> &pto)
{ //const or not?
pto[0]=pfr[0];
pto[1]=pfr[1];
pto[2]=pfr[2];
}
void jf_error(char *ch)
{
printf("%s\n",ch);
exit(1);
}
bool IsBoxContainPoint( Point<3> p,const Box<3> &bound,const Box<3> &rootbound)
{
if(p[0]<bound[0]||p[1]<bound[1]||p[2]<bound[2]||p[0]>bound[3]||p[1]>bound[4]||p[2]>bound[5])
return false;
else if(bound[0]!=rootbound[0]&&p[0]==bound[0]||
bound[1]!=rootbound[1]&&p[1]==bound[1]||
bound[2]!=rootbound[2]&&p[2]==bound[2] ) //need or not to follow the convention?
return false;
else
return true;
}
bool IsPointOverlapWithBox(const Point<3> &p,const Box<3> &bd,const Box<3> &rootbound,double eps)
{
Box<3> bound;
double a[3];
for(int i=0; i<3; i++)
a[i]=bd[i+3]-bd[i];
for(int i=0; i<3; i++){
bound[i]=bd[i]-eps*a[i];
bound[i+3]=bd[i+3]+eps*a[i];
}//convention
if(p[0]<bound[0]||p[1]<bound[1]||p[2]<bound[2]||p[0]>bound[3]||p[1]>bound[4]||p[2]>bound[5])
return false;
else if(bound[0]!=rootbound[0]&&p[0]==bound[0]||
bound[1]!=rootbound[1]&&p[1]==bound[1]||
bound[2]!=rootbound[2]&&p[2]==bound[2] )
return false;
else
return true;
}
bool IsTwoBoxNeighber(const Box<3> &a,const Box<3> &b)
{
if(a[0]>b[3]||a[1]>b[4]||a[2]>b[5]||a[3]<b[0]||a[4]<b[1]||a[5]<b[2])
return false;
return true;
}
void BoxOfVertices( void **v, int num ,Box<3> &box,void (*pofv)(Point<3> &p,void *v) )
{
int i , j ;
double a ;
Point<3> p;
pofv(p,v[0]);
for(i=0 ; i<3 ; i++ )
{
box[i]=box[i+3]=p[i] ;
}
for(j=1 ; j<num ; j++ )
{
pofv(p,v[j]);
for( i=0 ; i<3 ; i++ )
{
if( p[i]<box[i] ) box[i]=p[i] ;
if( p[i]>box[i+3] ) box[i+3]=p[i] ;
}
}
a=max( box[3]-box[0] ,max(box[4]-box[1],box[5]-box[2]) ) ;
for( i=0 ; i<3 ; i++ ){
box[i] -= 0.01*a ;
box[i+3] += 0.01*a ; //keep unchanged for a undegenerate 3D box or use a,b and c?
}
}
/*
void vec_2p(double *pointa , double *pointb , double *vector)
{
int i;
for(i=0; i<3; i++)
vector[i]=pointb[i]-pointa[i];
}
void
vec_neg(double *vector)
{
vector[0]= -vector[0];
vector[1]= -vector[1];
vector[2]= -vector[2];
}
int
vec_uni(double *vector)
{
double len; int i;
len=(double)sqrt(vector[0]*vector[0]+vector[1]*vector[1]
+vector[2]*vector[2]);
if(len<=0.00000000001) return(0); // eps_2 zero vector bound :min_siz/2.
for(i=0; i<3; i++) vector[i]/=len;
return(1);
}
double vec_val( double *vec )
{
return( sqrt(vec[0] * vec[0] +vec[1] * vec[1] + vec[2] *vec[2] )) ;
}
double vec_sqval( double *vec )
{
return vec[0] * vec[0] +vec[1] * vec[1] + vec[2] *vec[2] ;
}
double
vec_dotp(double *vector1,double *vector2)
{
return(vector1[0]*vector2[0]+vector1[1]*vector2[1]+vector1[2]*vector2[2]);
}
void
vec_crop(double *vector1,double *vector2,double *vector3)
{
vector3[0]=vector1[1]*vector2[2]-vector2[1]*vector1[2];
vector3[1]=vector2[0]*vector1[2]-vector1[0]*vector2[2];
vector3[2]=vector1[0]*vector2[1]-vector2[0]*vector1[1];
}
double
Distance3D( double *v1,double *v2){
return( sqrt( (v1[0]-v2[0])*(v1[0]-v2[0]) +
(v1[1]-v2[1])*(v1[1]-v2[1]) +
(v1[2]-v2[2])*(v1[2]-v2[2]) )
) ;
}
double
SqDistance3D( double *v1,double *v2){
return( (v1[0]-v2[0])*(v1[0]-v2[0]) +
(v1[1]-v2[1])*(v1[1]-v2[1]) +
(v1[2]-v2[2])*(v1[2]-v2[2])
) ;
}
double vec_blep( double *vec1 , double *vec2 , double *vec3 )
{
double vecp[3] ;
vec_crop( vec2 , vec3 , vecp ) ;
return( vec_dotp(vec1 , vecp ) ) ;
}
void norm_3p( double *p1 , double *p2 ,double *p3 ,double *normal )
{
double v12[3] , v13[3] ;
vec_2p( p1 , p2 , v12 ) ;
vec_2p( p1 , p3 , v13 ) ; // the direction of crop has changed ?!
vec_crop( v12 , v13 , normal ) ;
}
double VolumOf4p(jf_point p0,jf_point p1,jf_point p2,jf_point p3)
{
jf_point vec ,p01,p02,p03 ;
p01[0] = p1[0] -p0[0] ; p01[1] = p1[1] -p0[1] ; p01[2] = p1[2] -p0[2] ;
p02[0] = p2[0] -p0[0] ; p02[1] = p2[1] -p0[1] ; p02[2] = p2[2] -p0[2] ;
p03[0] = p3[0] -p0[0] ; p03[1] = p3[1] -p0[1] ; p03[2] = p3[2] -p0[2] ;
vec_crop(p01,p02,vec) ; // valu or parem ?
return vec_dotp(vec,p03) ;
}
int triBoxOverlap(double boxcenter[3],double boxhalfsize[3],double triverts[3][3]);
bool isTriangleBoxOver(jf_point p1 ,jf_point p2 ,jf_point p3 ,const double bd[6],double eps ){
// int i ;
double bound[6];
double a[3];
for(int i=0; i<3; i++)
a[i]=bd[i+3]-bd[i];
for(int i=0; i<3; i++){
bound[i]=bd[i]-eps*a[i];
bound[i+3]=bd[i+3]+eps*a[i];
}
double boxcenter[3],boxhalfsize[3],triverts[3][3];
for(int i=0; i<3; i++){
boxcenter[i]=(bound[i]+bound[i+3])/2.;
boxhalfsize[i]=(bound[i+3]-bound[i])/2;
triverts[0][i]=p1[i];
triverts[1][i]=p2[i];
triverts[2][i]=p3[i];
}
if(triBoxOverlap(boxcenter,boxhalfsize,triverts)==0) return false;
else return true;
// for(i=0 ; i<3 ; i++ )
// if( (p1[i]<box[i]&&p2[i]<box[i]&&p3[i]<box[i])||
// (p1[i]>box[i+3]&&p2[i]>box[i+3]&&p3[i]>box[i+3]) )return false ;
// return true ;
}*/
bool IsTriangleAndRayIntersect(double p0[3],double p1[3],double p2[3],double orig[3],double dir[3])
{//, double &t){
double tvec[3], pvec[3], qvec[3]; //revised from gel
double det,inv_det;
double edge[3][3];
// return true;
vec_2p(p0,p1,edge[0]);
vec_2p(p0,p2,edge[2]);
/* begin calculating determinant - also used to calculate U parameter */
vec_crossproduct(dir,edge[2],pvec);
/* if determinant is near zero, ray lies in plane of triangle */
det = vec_dotproduct(edge[0], pvec);
if (det > -0.00000000001 && det < 0.00000000001)
return false;
inv_det = 1.0 / det;
/* calculate distance from v0 to ray origin */
vec_2p(p0,orig,tvec);
/* calculate U parameter and test bounds */
double u = vec_dotproduct(tvec, pvec) * inv_det;
if (u < 0.0 || u > 1.0)
return false;
/* prepare to test V parameter */
vec_crossproduct(tvec, edge[0],qvec);
/* calculate V parameter and test bounds */
double v = vec_dotproduct(dir, qvec) * inv_det;
if (v < 0.0 || u + v > 1.0)
return false;
/* calculate t, ray intersects triangle */
return vec_dotproduct(edge[2], qvec) * inv_det>=0;
// return true;
}
/********************************************************/
/* AABB-triangle overlap test code */
/* by Tomas Akenine-Moller */
/* Function: int triBoxOverlap(double boxcenter[3], */
/* double boxhalfsize[3],double triverts[3][3]); */
/* History: */
/* 2001-03-05: released the code in its first version */
/* 2001-06-18: changed the order of the tests, faster */
/* */
/* Acknowledgement: Many thanks to Pierre Terdiman for */
/* suggestions and discussions on how to optimize code. */
/* Thanks to David Hunt for finding a ">="-bug! */
/********************************************************/
#include <math.h>
#include <stdio.h>
#define X 0
#define Y 1
#define Z 2
#define CROSS(dest,v1,v2) \
dest[0]=v1[1]*v2[2]-v1[2]*v2[1]; \
dest[1]=v1[2]*v2[0]-v1[0]*v2[2]; \
dest[2]=v1[0]*v2[1]-v1[1]*v2[0];
#define DOT(v1,v2) (v1[0]*v2[0]+v1[1]*v2[1]+v1[2]*v2[2])
#define SUB(dest,v1,v2) \
dest[0]=v1[0]-v2[0]; \
dest[1]=v1[1]-v2[1]; \
dest[2]=v1[2]-v2[2];
#define FINDMINMAX(x0,x1,x2,min,max) \
min = max = x0; \
if(x1<min) min=x1;\
if(x1>max) max=x1;\
if(x2<min) min=x2;\
if(x2>max) max=x2;
int planeBoxOverlap(double normal[3], double vert[3], double maxbox[3]) // -NJMP-
{
int q;
double vmin[3],vmax[3],v;
for(q=X;q<=Z;q++)
{
v=vert[q]; // -NJMP-
if(normal[q]>0.0f)
{
vmin[q]=-maxbox[q] - v; // -NJMP-
vmax[q]= maxbox[q] - v; // -NJMP-
}
else
{
vmin[q]= maxbox[q] - v; // -NJMP-
vmax[q]=-maxbox[q] - v; // -NJMP-
}
}
if(DOT(normal,vmin)>0.0f) return 0; // -NJMP-
if(DOT(normal,vmax)>=0.0f) return 1; // -NJMP-
return 0;
}
/*======================== X-tests ========================*/
#define AXISTEST_X01(a, b, fa, fb) \
p0 = a*v0[Y] - b*v0[Z]; \
p2 = a*v2[Y] - b*v2[Z]; \
if(p0<p2) {min=p0; max=p2;} else {min=p2; max=p0;} \
rad = fa * boxhalfsize[Y] + fb * boxhalfsize[Z]; \
if(min>rad || max<-rad) return 0;
#define AXISTEST_X2(a, b, fa, fb) \
p0 = a*v0[Y] - b*v0[Z]; \
p1 = a*v1[Y] - b*v1[Z]; \
if(p0<p1) {min=p0; max=p1;} else {min=p1; max=p0;} \
rad = fa * boxhalfsize[Y] + fb * boxhalfsize[Z]; \
if(min>rad || max<-rad) return 0;
/*======================== Y-tests ========================*/
#define AXISTEST_Y02(a, b, fa, fb) \
p0 = -a*v0[X] + b*v0[Z]; \
p2 = -a*v2[X] + b*v2[Z]; \
if(p0<p2) {min=p0; max=p2;} else {min=p2; max=p0;} \
rad = fa * boxhalfsize[X] + fb * boxhalfsize[Z]; \
if(min>rad || max<-rad) return 0;
#define AXISTEST_Y1(a, b, fa, fb) \
p0 = -a*v0[X] + b*v0[Z]; \
p1 = -a*v1[X] + b*v1[Z]; \
if(p0<p1) {min=p0; max=p1;} else {min=p1; max=p0;} \
rad = fa * boxhalfsize[X] + fb * boxhalfsize[Z]; \
if(min>rad || max<-rad) return 0;
/*======================== Z-tests ========================*/
#define AXISTEST_Z12(a, b, fa, fb) \
p1 = a*v1[X] - b*v1[Y]; \
p2 = a*v2[X] - b*v2[Y]; \
if(p2<p1) {min=p2; max=p1;} else {min=p1; max=p2;} \
rad = fa * boxhalfsize[X] + fb * boxhalfsize[Y]; \
if(min>rad || max<-rad) return 0;
#define AXISTEST_Z0(a, b, fa, fb) \
p0 = a*v0[X] - b*v0[Y]; \
p1 = a*v1[X] - b*v1[Y]; \
if(p0<p1) {min=p0; max=p1;} else {min=p1; max=p0;} \
rad = fa * boxhalfsize[X] + fb * boxhalfsize[Y]; \
if(min>rad || max<-rad) return 0;
int triBoxOverlap(double boxcenter[3],double boxhalfsize[3],double triverts[3][3])
{
/* use separating axis theorem to test overlap between triangle and box */
/* need to test for overlap in these directions: */
/* 1) the {x,y,z}-directions (actually, since we use the AABB of the triangle */
/* we do not even need to test these) */
/* 2) normal of the triangle */
/* 3) crossproduct(edge from tri, {x,y,z}-directin) */
/* this gives 3x3=9 more tests */
double v0[3],v1[3],v2[3];
// double axis[3];
double min,max,p0,p1,p2,rad,fex,fey,fez; // -NJMP- "d" local variable removed
double normal[3],e0[3],e1[3],e2[3];
/* This is the fastest branch on Sun */
/* move everything so that the boxcenter is in (0,0,0) */
SUB(v0,triverts[0],boxcenter);
SUB(v1,triverts[1],boxcenter);
SUB(v2,triverts[2],boxcenter);
/* compute triangle edges */
SUB(e0,v1,v0); /* tri edge 0 */
SUB(e1,v2,v1); /* tri edge 1 */
SUB(e2,v0,v2); /* tri edge 2 */
/* Bullet 3: */
/* test the 9 tests first (this was faster) */
fex = fabs(e0[X]);
fey = fabs(e0[Y]);
fez = fabs(e0[Z]);
AXISTEST_X01(e0[Z], e0[Y], fez, fey);
AXISTEST_Y02(e0[Z], e0[X], fez, fex);
AXISTEST_Z12(e0[Y], e0[X], fey, fex);
fex = fabs(e1[X]);
fey = fabs(e1[Y]);
fez = fabs(e1[Z]);
AXISTEST_X01(e1[Z], e1[Y], fez, fey);
AXISTEST_Y02(e1[Z], e1[X], fez, fex);
AXISTEST_Z0(e1[Y], e1[X], fey, fex);
fex = fabs(e2[X]);
fey = fabs(e2[Y]);
fez = fabs(e2[Z]);
AXISTEST_X2(e2[Z], e2[Y], fez, fey);
AXISTEST_Y1(e2[Z], e2[X], fez, fex);
AXISTEST_Z12(e2[Y], e2[X], fey, fex);
/* Bullet 1: */
/* first test overlap in the {x,y,z}-directions */
/* find min, max of the triangle each direction, and test for overlap in */
/* that direction -- this is equivalent to testing a minimal AABB around */
/* the triangle against the AABB */
/* test in X-direction */
FINDMINMAX(v0[X],v1[X],v2[X],min,max);
if(min>boxhalfsize[X] || max<-boxhalfsize[X]) return 0;
/* test in Y-direction */
FINDMINMAX(v0[Y],v1[Y],v2[Y],min,max);
if(min>boxhalfsize[Y] || max<-boxhalfsize[Y]) return 0;
/* test in Z-direction */
FINDMINMAX(v0[Z],v1[Z],v2[Z],min,max);
if(min>boxhalfsize[Z] || max<-boxhalfsize[Z]) return 0;
/* Bullet 2: */
/* test if the box intersects the plane of the triangle */
/* compute plane equation of triangle: normal*x+d=0 */
CROSS(normal,e0,e1);
// -NJMP- (line removed here)
if(!planeBoxOverlap(normal,v0,boxhalfsize)) return 0; // -NJMP-
return 1; /* box and triangle overlaps */
}
//vector operator
void vec_2p(double *pointa , double *pointb , double *vector)
{
int i;
for(i=0; i<3; i++)
vector[i]=pointb[i]-pointa[i];
}
int vec_unit(double *vector)
{
double len; int i;
len=(double)sqrt(vector[0]*vector[0]+vector[1]*vector[1]
+vector[2]*vector[2]);
if(len<=0.0000000000000000001) return(0); /* eps_2 zero vector bound :min_siz/2. */
for(i=0; i<3; i++) vector[i]/=len;
return(1);
}
void vec_negation(double *vector)
{
vector[0]= -vector[0];
vector[1]= -vector[1];
vector[2]= -vector[2];
}
double vec_value( double *vec )
{
return( sqrt(vec[0] * vec[0] +vec[1] * vec[1] + vec[2] *vec[2] )) ;
}
double
vec_dotproduct(double *vector1,double *vector2)
{
return(vector1[0]*vector2[0]+vector1[1]*vector2[1]+vector1[2]*vector2[2]);
}
void
vec_crossproduct(double *vector1,double *vector2,double *vector3)
{
vector3[0]=vector1[1]*vector2[2]-vector2[1]*vector1[2];
vector3[1]=vector2[0]*vector1[2]-vector1[0]*vector2[2];
vector3[2]=vector1[0]*vector2[1]-vector2[0]*vector1[1];
}
double vec_squarevalue( double *vec )
{
return vec[0] * vec[0] +vec[1] * vec[1] + vec[2] *vec[2] ;
}
double
Distance3D( double *v1,double *v2){
return( sqrt( (v1[0]-v2[0])*(v1[0]-v2[0]) +
(v1[1]-v2[1])*(v1[1]-v2[1]) +
(v1[2]-v2[2])*(v1[2]-v2[2]) )
) ;
}
double
SquareDistance3D( double *v1,double *v2){
return ( (v1[0]-v2[0])*(v1[0]-v2[0]) +
(v1[1]-v2[1])*(v1[1]-v2[1]) +
(v1[2]-v2[2])*(v1[2]-v2[2])
) ;
}
double vec_blendproduct( double *vec1 , double *vec2 , double *vec3 )
{
double vecp[3] ;
vec_crossproduct( vec2 , vec3 , vecp ) ;
return( vec_dotproduct(vec1 , vecp ) ) ;
}
void normal_3p( double *p1 , double *p2 ,double *p3 ,double *normal )
{
double v12[3] , v13[3] ;
vec_2p( p1 , p2 , v12 ) ;
vec_2p( p1 , p3 , v13 ) ; // the direction of crop has changed ?!
vec_crossproduct( v12 , v13 , normal ) ;
}
double Volume_4p(Point<3> p0,Point<3> p1,Point<3> p2,Point<3> p3)
{
double vec[3] ,p01[3],p02[3],p03[3] ;
p01[0] = p1[0] -p0[0] ; p01[1] = p1[1] -p0[1] ; p01[2] = p1[2] -p0[2] ;
p02[0] = p2[0] -p0[0] ; p02[1] = p2[1] -p0[1] ; p02[2] = p2[2] -p0[2] ;
p03[0] = p3[0] -p0[0] ; p03[1] = p3[1] -p0[1] ; p03[2] = p3[2] -p0[2] ;
vec_crossproduct(p01,p02,vec) ; /* valu or parem ? */
return vec_dotproduct(vec,p03) ;
}
double modevects( double p0[3] , double p1[3] )
{
double vec[3] ;
vec_crossproduct( p0 , p1 , vec ) ;
return( sqrt(vec[0] * vec[0] + vec[1] * vec[1] + vec[2] * vec[2]) ) ;
}
double area4p(double p0[3] , double p1[3] ,double p2[3] ,double p3[3] )
{
double p01[3],p02[3],p03[3], v1[3] , v2[3] ;
p01[0] = p1[0] -p0[0] ; p01[1] = p1[1] -p0[1] ; p01[2] = p1[2] -p0[2] ;
p02[0] = p2[0] -p0[0] ; p02[1] = p2[1] -p0[1] ; p02[2] = p2[2] -p0[2] ;
p03[0] = p3[0] -p0[0] ; p03[1] = p3[1] -p0[1] ; p03[2] = p3[2] -p0[2] ;
v1[0] = p1[0] -p3[0] ; v1[1] = p1[1] -p3[1] ; v1[2] = p1[2] -p3[2] ;
v2[0] = p2[0] -p3[0] ; v2[1] = p2[1] -p3[1] ; v2[2] = p2[2] -p3[2] ;
return( modevects(p01,p02)+modevects(p02,p03)+modevects(p01,p03)+
modevects(v1,v2)) ;
}
bool IsTriangleAndBoxOverlap(Point<3> p1 ,Point<3> p2 ,Point<3> p3 ,const double bd[6],double eps ){
// int i ;
double bound[6];
double a[3];
for(int i=0; i<3; i++)
a[i]=bd[i+3]-bd[i];
for(int i=0; i<3; i++)
{
bound[i]=bd[i]-eps*a[i];
bound[i+3]=bd[i+3]+eps*a[i];
}
double boxcenter[3],boxhalfsize[3],triverts[3][3];
for(int i=0; i<3; i++)
{
boxcenter[i]=(bound[i]+bound[i+3])/2.;
boxhalfsize[i]=(bound[i+3]-bound[i])/2;
triverts[0][i]=p1[i];
triverts[1][i]=p2[i];
triverts[2][i]=p3[i];
}
if(triBoxOverlap(boxcenter,boxhalfsize,triverts)==0) return false;
else return true;
// for(i=0 ; i<3 ; i++ )
// if( (p1[i]<box[i]&&p2[i]<box[i]&&p3[i]<box[i])||
// (p1[i]>box[i+3]&&p2[i]>box[i+3]&&p3[i]>box[i+3]) )return false ;
// return true ;
}
void CompRatioPoint( double p0[3] ,double p1[3] ,double dlt,double p[3] )
{
int i ;
for( i=0 ; i<3 ; i++ )
p[i]=p0[i]+dlt*(p1[i]-p0[i]) ;
}
double sqDistPointToRatioPoint(double p[3],double p0[3],double p1[3],double dlt)
{
double prt[3];
CompRatioPoint(p0,p1,dlt,prt);
return SquareDistance3D(p,prt);
}
double sqDistPointToTri(double p[3],double p0[3],double p1[3],double p2[3])
{//,double sqdist0){
//return signed_distance(p,p0,p1,p2);
double v0p[3],v20[3],v01[3];
vec_2p(p0,p,v0p);
vec_2p(p2,p0,v20);
vec_2p(p0,p1,v01);
//double nm012[3];
//vec_crop(v20,v01,nm012);
//double sqdptoinner=vec_dotp(nm012,v0p);
//sqdptoinner*=sqdptoinner/vec_sqval(nm012);
//if(sqdptoinner>=sqdist0) return sqdptoinner;
double d0p20=vec_dotproduct(v0p,v20);
double d0p01=vec_dotproduct(v0p,v01);
if(d0p20>=0&&d0p01<=0) return SquareDistance3D(p,p0);
double v1p[3],v12[3];
vec_2p(p1,p,v1p);
vec_2p(p1,p2,v12);
double d1p01=vec_dotproduct(v1p,v01);
double d1p12=vec_dotproduct(v1p,v12);
if(d1p01>=0&&d1p12<=0) return SquareDistance3D(p,p1);
double v2p[3];
vec_2p(p2,p,v2p);
double d2p12=vec_dotproduct(v2p,v12);
double d2p20=vec_dotproduct(v2p,v20);
if(d2p12>=0&&d2p20<=0) return SquareDistance3D(p,p2);
double
nm012[3],
nm01p[3],nm12p[3],nm20p[3];
vec_crossproduct(v20,v01,nm012);
vec_crossproduct(v01,v0p,nm01p);
double dt01=vec_dotproduct(nm012,nm01p);
if(dt01<=0&&d0p01>=0&&d1p01<=0)
return sqDistPointToRatioPoint(p,p0,p1,d0p01/(d0p01-d1p01));
// return sqDistPointToSeg3D(p,p0,p1); // rt==0;
vec_crossproduct(v12,v1p,nm12p);
double dt12=vec_dotproduct(nm012,nm12p);
if(dt12<=0&&d1p12>=0&&d2p12<=0)
return sqDistPointToRatioPoint(p,p1,p2,d1p12/(d1p12-d2p12));
// return sqDistPointToSeg3D(p,p1,p2);
vec_crossproduct(v20,v2p,nm20p);
double dt20=vec_dotproduct(nm012,nm20p);
if(dt20<=0&&d2p20>=0&&d0p20<=0)
return sqDistPointToRatioPoint(p,p2,p0,d2p20/(d2p20-d0p20));
// return sqDistPointToSeg3D(p,p2,p0);
if(dt01>=0&&dt12>=0&&dt20>=0){
double a=vec_dotproduct(nm012,v0p);
return a*a/vec_squarevalue(nm012);
// return sqdptoinner;
}else{
double a=vec_dotproduct(nm012,v0p);
return a*a/vec_squarevalue(nm012); //2014-5-27 previous version 2011-4-13
}
}
int is_point_same( Point<3>p1 , Point<3> p2 )
{
if( p1[0]==p2[0]&&p1[1]==p2[1]&&p1[2]==p2[2] ) return(1) ;
return(0) ;
}
double DistPointToSegm( double p[3] , double ps[3] , double pe[3] ,double pnear[3],int *ip)
{
double vsp[3] , vse[3] /*, vsep*/,pj[3] ;
double dsp , dse , dep ,dist , dsptose ;
vec_2p(ps , p , vsp ) ;
vec_2p(ps , pe , vse ) ;
dsp=Distance3D(ps , p) ;
dse=Distance3D(ps , pe) ;
if(vec_unit(vse)==0)
{
if(pnear!=NULL) memcpy(pnear,ps,3*sizeof(double));
if(ip!=NULL) *ip=0;
return Distance3D(p,ps);
}
if( (dsptose=vec_dotproduct(vsp , vse))>0.000001*dse&&dsptose<0.999999*dse )
{
for(int i=0 ; i<3 ; i++ ) pj[i]=ps[i]+dsptose*vse[i] ;
if(pnear!=NULL) memcpy(pnear,pj,3*sizeof(double));
if(ip!=NULL) *ip=1;
return Distance3D(p,pj);
}else
{
dep=Distance3D(pe,p) ;
dist=min( dsp , dep ) ;
if(dist==dsp){
if(pnear!=NULL) memcpy(pnear,ps,3*sizeof(double));
if(ip!=NULL) *ip=0;
}else{
if(pnear!=NULL) memcpy(pnear,pe,3*sizeof(double));
if(ip!=NULL) *ip=2;
}
}
return dist ;
}
void PointProjectTo2PLine(double p[3] ,double p0[3] ,double p1[3] ,double pb[3])
{
double v01[3] , v0p[3] ;
double dlt ;
int i ;
vec_2p(p0,p1,v01) ;
vec_2p(p0,p,v0p) ;
if(vec_unit( v01 )==0) jf_error("norm err ppt2pl" ) ;
dlt= vec_dotproduct(v01,v0p) ;
for( i=0 ; i<3 ; i++ )
pb[i]=p0[i]+dlt*v01[i] ;
}
double Comp2fAngleTestDegenerate( double pa[3] ,double pb[3] ,double pc[3] ,double pd[3] )
{
double norm1[3] , norm2[3] ;
normal_3p( pa , pb , pc , norm1 ) ;
normal_3p( pa , pb , pd , norm2 ) ;
if(vec_unit( norm1 )==0)
return -2.;
if(vec_unit( norm2 )==0)
return -2.;
return( vec_dotproduct(norm1 , norm2 ) ) ;
}
double compMinCos2Faceangle1pTo4p(double p[3],double p4t[4][3])
{
double a1,a2,a3,a4;
if((a1=Comp2fAngleTestDegenerate(p4t[0],p4t[1],p4t[2],p))<=0) return -1;
if((a2=Comp2fAngleTestDegenerate(p4t[1],p4t[2],p4t[0],p))<=0) return -1;
if((a3=Comp2fAngleTestDegenerate(p4t[2],p4t[3],p4t[0],p))<=0) return -1;
if((a4=Comp2fAngleTestDegenerate(p4t[3],p4t[0],p4t[2],p))<=0) return -1;
return min(min(a1,a2),min(a3,a4));
}
void rotatePoints(double (*pts)[3],int numpt)
{
double tmpt[3];
memcpy(tmpt,pts[0],3*sizeof(double));
for(int i =0; i<numpt-1; i++)
memcpy(pts[i],pts[i+1],3*sizeof(double));
memcpy(pts[numpt-1],tmpt,3*sizeof(double));
}
}
|
3e99f649d4304b630197a8c9849e2f34166c772d | 81bd3e115716aa7aad27cd3e69f3e63c3fcf1bab | /bootloader/cobs.cpp | 46e2c4f779aa7740ae166bb674c3a1d9dd191045 | [] | no_license | 00mjk/f303k8-bootloader | 8745520c97f4e082c0dbc5f8a015e027164768e8 | 551c38ef3bee1921381cbab6e62ce1870bcb3f2b | refs/heads/master | 2022-03-08T06:43:47.613679 | 2016-09-02T01:39:05 | 2016-09-02T01:39:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,788 | cpp | cobs.cpp | #include "cobs.h"
COBSDecoder::COBSResult COBSDecoder::decode(uint8_t* chunk, size_t length, size_t *read_out) {
*read_out = 0;
if (currReader == NULL) {
return kErrorNoBuffer;
}
while (length > 0) {
uint8_t byte = *chunk;
(*read_out) += 1;
if (byte == 0x00) {
if (decoderStatus == kDecodeNormal) {
nextSpecial -= 1;
if (nextSpecial == 0 && insertZeroAtNextSpecial) {
decoderStatus = kDecodeBegin;
return kResultDone;
} else {
currReader->reset();
decoderStatus = kDecodeBegin;
return kErrorInvalidFormat;
}
} else {
decoderStatus = kDecodeBegin;
}
} else {
if (decoderStatus == kDecodeBegin) {
if (byte == 0xff) {
nextSpecial = byte - 1;
insertZeroAtNextSpecial = false;
} else {
nextSpecial = byte;
insertZeroAtNextSpecial = true;
}
decoderStatus = kDecodeNormal;
} else if (decoderStatus == kDecodeNormal) {
nextSpecial -= 1;
if (nextSpecial == 0) {
if (insertZeroAtNextSpecial) {
if (!currReader->putByte(0)) {
decoderStatus = kDecodeError;
return kErrorOverflow;
}
}
if (byte == 0xff) {
nextSpecial = byte - 1;
insertZeroAtNextSpecial = false;
} else {
nextSpecial = byte;
insertZeroAtNextSpecial = true;
}
} else {
if (!currReader->putByte(byte)) {
decoderStatus = kDecodeError;
return kErrorOverflow;
}
}
} else {
// Drop bytes otherwise
}
}
chunk += 1;
length -= 1;
}
return kResultWorking;
}
|
168270bcfe408651c7a1cd55882eaa19c311516d | 791fbbae9692629756cd2c7760b90f7fb234166d | /main.cpp | ca8672c31e2864bc8d733dec793f903250e4eb81 | [
"MIT",
"BSD-3-Clause"
] | permissive | kmingulov/MAnalyzer | f6f87d7c190927187024c6f7e2b61be73568404a | ce0e56e0d02be1117f1c17fe751a5ed3e6cbd74f | refs/heads/master | 2020-04-14T00:43:25.824421 | 2012-09-10T09:53:47 | 2012-09-10T09:53:47 | 5,161,426 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,331 | cpp | main.cpp | /**
* @file main.cpp
* @brief The example of MAnalyzer using.
*/
#include <vector>
#include <iostream>
#include <fstream>
#include <cstring>
#include <cstdlib>
#include "analyzer/word_infos.h"
#include "analyzer/analyzer.h"
int main()
{
Analyzer * analyzer = analyzer_new("dics_ru");
WordInfos * wi = infos_new(1024);
std::ifstream input("dics_ru/gramtab");
std::vector <std::string> gramtab;
int num;
std::string id, info;
while(input >> num >> id >> info)
gramtab.push_back(info);
std::string word;
char * buffer = (char *) malloc(sizeof(char) * 1024);
while(std::cin >> word)
{
strcpy(buffer, word.c_str());
analyzer_get_word_info(analyzer, buffer, word.size(), wi);
#ifndef MANALYZER_DEBUG
std::cout << infos_get_size(wi) << " (prediction = " << infos_is_prediction(wi) << "):\n";
for(int i = 0; i < infos_get_size(wi); i++)
std::cout << "\t" << buffer <<
" " << gramtab[infos_get_form_id(wi, i) - 1] << " -> " <<
infos_get_normal_form(wi, i) <<
" " << gramtab[infos_get_normal_form_id(wi, i) - 1] << "\n";
#endif
infos_erase(wi);
}
free(buffer);
infos_free(wi);
analyzer_free(analyzer);
return 0;
}
|
ce3f6843c9e88eacf4f0632b272772728170a2d3 | d8228663d2858a48a2988fdcb9e2715b47a20fc7 | /class_19/constructor_4.cpp | dc176e9332b6f93f5f3101dc77f090c7eb7198f2 | [] | no_license | stackCuiBin/CPP_DiTai | 9f42480c8040080e2c8590fe1008ef2fab7d2da6 | e85e41eb644df698ccd027b9173199d37f19110f | refs/heads/master | 2021-06-14T22:27:55.265925 | 2019-07-21T13:53:49 | 2019-07-21T13:53:49 | 184,539,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,148 | cpp | constructor_4.cpp | /*************************************************************************
******* File Name: constructor_4.cpp
******* Author: bb.cui
******* Mail: bb.cui@foxmail.com
******* Created Time: Tue 28 May 2019 06:43:44 AM PDT
************************************************************************/
#include <iostream>
using namespace std;
class Test
{
private:
int i;
int j;
int *p;
public:
int getI()
{
return i;
}
int getJ()
{
return j;
}
int* getP()
{
return p;
}
Test(const Test& t)
{
i = t.i;
j = t.j;
p = new int;
*p = *t.p;
}
Test(int v)
{
i = 1;
j = 2;
p = new int;
*p = v;
}
void free()
{
delete p;
}
};
int main(int argc, char** argv)
{
Test t1(3);
Test t2(t1);
cout << "t1.i = " << t1.getI() << ", t1.j = " << t1.getJ() << ", *t1.p = " << *t1.getP() << ", t1.p = " << t1.getP() << endl;
cout << "t2.i = " << t2.getI() << ", t2.j = " << t2.getJ() << ", *t2.p = " << *t2.getP() << ", t2.p = " << t2.getP() << endl;
t1.free();
t2.free();
return 0;
}
/*
* result:
* t1.i = 1, t1.j = 2, *t1.p = 3, t1.p = 0x102dc20
* t2.i = 1, t2.j = 2, *t2.p = 3, t2.p = 0x102dc40
*/
|
013a3228f4c2fd254b4326a09f6448db63a6c2c9 | a4bcc6764b7ee37437446f19eaed815c89633564 | /37 - DP - problem nadluzszego rosnacego podciagu LIS/lis.cpp | e7a516360cd359c6071c7c12ea0253b3515bafec | [] | no_license | gjasinski/algorithms-and-data-structures | bca80c19d3a6b426631ab548d109e533f07992c8 | 9b8b82c5223d0862a408b5cf492201f0e71bc9d5 | refs/heads/master | 2021-06-01T07:45:56.193183 | 2016-07-05T17:07:18 | 2016-07-05T17:07:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,570 | cpp | lis.cpp | /*
Problem nadluzszego rosnacego podciagu - LIS
Dane:
A[0, n-1] - tablica liczb
Zadanie:
Obliczyc dlugosc najdluzszego rosnacego podciagu niekoniecznie spojnego.
Tests:
https://www.hackerrank.com/challenges/longest-increasing-subsequent
*/
#include <stdio.h>
#include <cstdio>
int lis(int* A, int n);
void printSolution(int* A, int* P, int i);
struct node{
int val, rank;
};
int lis_nlogn(int* A, int n);
int main(){
int n;
scanf("%d", &n);
int* A = new int[n];
for(int i=0;i<n;i++) scanf("%d", &A[i]);
//printf("%d", lis(A,n));
printf("%d", lis_nlogn(A, n));
}
//N^2 solution
int lis(int* A, int n){
int F[n];
int max=0;
int P[n];
F[0]=1;
P[0]=-1;
for(int i=1; i<n; i++){
F[i]=1;
P[i]=-1;
for(int j=0; j<i; j++){
if(A[j]<A[i] && F[j]+1>F[i]){
F[i]=F[j]+1;
P[i]=j;
}
}
if(F[max]<F[i])max=i;
}
printSolution(A,P,max);
return F[max];
}
void printSolution(int* A, int* P, int i){
if(P[i]!=-1){
printSolution(A, P, P[i]);
printf("%d ", A[i]);
}
}
int bsearch(node A[], int l, int r, int s){
if (A[r].val<s)return r;
while(r-1>l and r!=l){
int m=(l+r)/2;
if(A[m].val>=s) r=m;
else l=m;
}
return l;
}
/*
Nlogn solution
http://www.geeksforgeeks.org/longest-monotonically-increasing-subsequence-size-n-log-n/
*/
int lis_nlogn(int* A, int n){
node* auxTable= new node[n];
int length=1;
for(int i=0;i<n;i++) auxTable[i].val=auxTable[i].rank=-1;
node ptr;
ptr.rank=1;
ptr.val=A[0];
auxTable[0]=ptr;
for(int i=1;i<n;i++){
//Solution is correct, but it is complicated.
int j=bsearch(auxTable, 0,length-1, A[i]);
if(auxTable[j].val>A[i]) auxTable[j].val=A[i]; //Case1 - decrease value
else{
if(j+1<length && auxTable[j].rank+1==auxTable[j+1].rank) auxTable[j+1].val=A[i]; //Case2 - for delta rank==1
else{
//case3 - for delta rank >1 or end of matrix
ptr.rank=auxTable[j].rank+1;
ptr.val=A[i];
if(A[i]>auxTable[j].val) j++;
for(j; j<length;j++){
node ptr2=auxTable[j];
auxTable[j]=ptr;
ptr=ptr2;
}
auxTable[length]=ptr;
length++;
}
}
}
int max=auxTable[length-1].rank;
delete [] auxTable;
return max;
}
|
377eb4d624cbbf1313dc4efbdaa0031094ab32f6 | 9cda6331f1240a1f9fbf366cfc8fbf8c55efbd36 | /udacity/class_1_ basic/header_first.hpp | 6ada98e08b0ab644547be610cb265f60952c98bb | [] | no_license | Wiliansster/project_c_cpp | 8a5cd3cbca47e0e8f7fec10bd5ac86a1f07e2acb | 6f1d0158052a99b6688b518f6016e9bb6c0e742c | refs/heads/master | 2022-11-05T03:05:32.906479 | 2020-06-28T15:32:07 | 2020-06-28T15:32:07 | 273,983,144 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 67 | hpp | header_first.hpp | // This is a header file.
#include<iostream>
using namespace std; |
e302848bf7c1db3eddd9caed04f7cb173d86f188 | ef8dcbacd194ba7a694d70fd642e594f11c46e3d | /src/scripting/scripting/script_state.h | a119a3c6843a76a926c2035dff260acb037fda2a | [] | no_license | RikoOphorst/blowbox-2018 | b4a590f483348562eda6919935d8f2cd27e55c11 | a1d7d69f0637c9ecefa3ce9f79808f13b2f808d7 | refs/heads/master | 2020-03-09T17:19:44.702439 | 2018-05-17T22:14:04 | 2018-05-17T22:14:04 | 128,906,460 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | h | script_state.h | #pragma once
#include <core/data/path.h>
extern "C"
{
struct lua_State;
}
namespace blowbox
{
namespace scripting
{
class ScriptState
{
public:
ScriptState();
~ScriptState();
void Initialize();
void Shutdown();
void StackDump();
void CompileAndRun(const Path& path_to_script);
inline lua_State* Get() const;
operator lua_State*() const;
private:
lua_State* state_;
};
//------------------------------------------------------------------------------------------------------
lua_State* ScriptState::Get() const
{
return state_;
}
}
} |
8ccd7b4c2c6e2e8fc632fa9ac9469052614ce538 | 53d93802dd0f9d852cffcc244394be275e57d19d | /MainMenu.cpp | 376a256c6af7a233e66f995219bb72b7ee2fa93f | [] | no_license | vfrolov263/stealth_action | 675a5b30bf4e707061a3ca570495f5c716d7aa7b | 115ad094a206850fdff220d11e73d5d8d372c3d1 | refs/heads/master | 2020-12-24T18:51:02.075525 | 2016-06-02T07:47:10 | 2016-06-02T07:47:10 | 59,055,472 | 0 | 1 | null | 2016-05-18T18:26:03 | 2016-05-17T20:14:48 | C++ | WINDOWS-1251 | C++ | false | false | 7,531 | cpp | MainMenu.cpp | #include "MainMenu.h"
#include "Game.h"
void CALLBACK CMainMenu::Init(){
pComponentsManager->GetComponent((IComponent *&)_pBackSprite, GCT_SPRITE); // ะะพะปััะฐะตะผ ัะฟัะฐะนั ะธ ะทะฐะฟะธััะฒะฐะตะผ ะตะณะพ ะฒ ัะบะฐะทะฐัะตะปั _pBackSprite
pComponentsManager->GetComponent((IComponent *&)_pButtonAnim, GCT_ANIMATION); // ะะพะปััะฐะตะผ ะฐะฝะธะผะฐัะธั ะธ ะทะฐะฟะธััะฒะฐะตะผ ะตะต ะฒ ัะบะฐะทะฐัะตะปั _pBackSprite
pComponentsManager->GetComponent((IComponent *&)_pButtonะกontinue, GCT_ANIMATION);
pComponentsManager->GetComponent((IComponent *&)_pButtonSettings, GCT_ANIMATION);
pComponentsManager->GetComponent((IComponent *&)_pButtonManagement, GCT_ANIMATION);
pComponentsManager->GetComponent((IComponent *&)_pButtonExit, GCT_ANIMATION);
_pBackSprite->SetTexture("data/background.png"); // ะะฐะทะฝะฐัะฐะตะผ ะธัะฟะพะปัะทัะตะผัั ัะฟัะฐะนัะพะผ ัะตะบััััั.
_pButtonAnim->SetTexture("data/new_game.png"); // ะะฐะทะฝะฐัะฐะตะผ ะธัะฟะพะปัะทัะตะผัั ะฐะฝะธะผะฐัะธะตะน ัะตะบััััั.
_pButtonAnim->SetFrameSize(Vector2ui(363, 65)); // ะะฐะทะฝะฐัะฐะตะผ ัะฐะทะผะตั ะพะดะฝะพะณะพ ะบะฐะดัะฐ.
_pButtonAnim->SetPosition(Vector2f(1095, 100)); // ะฃััะฐะฝะฐะฒะปะธะฒะฐะตะผ ะฟะพะทะธัะธั ะฝะฐ ัะบัะฐะฝะต.
_pButtonะกontinue->SetTexture("data/continue_the_game.png");
_pButtonะกontinue->SetFrameSize(Vector2ui(363, 115));
_pButtonะกontinue->SetPosition(Vector2f(1095, 210));
_pButtonSettings->SetTexture("data/settings.png");
_pButtonSettings->SetFrameSize(Vector2ui(363, 65));
_pButtonSettings->SetPosition(Vector2f(1095, 370));
_pButtonManagement->SetTexture("data/management.png");
_pButtonManagement->SetFrameSize(Vector2ui(363, 65));
_pButtonManagement->SetPosition(Vector2f(1095, 470));
_pButtonExit->SetTexture("data/exit.png");
_pButtonExit->SetFrameSize(Vector2ui(363, 65));
_pButtonExit->SetPosition(Vector2f(1095, 580));
pComponentsManager->GetComponent((IComponent *&)_pManagementSprite, GCT_SPRITE);
pComponentsManager->GetComponent((IComponent *&)_pButtonBack, GCT_ANIMATION);
_pManagementSprite->SetTexture("data/BackgroundOfManagement.png");
_pButtonBack->SetTexture("data/back.png");
_pButtonBack->SetFrameSize(Vector2ui(327, 65));
_pButtonBack->SetPosition(Vector2f(1155, 750));
pComponentsManager->GetComponent((IComponent *&)_SettingsSprite, GCT_SPRITE);
pComponentsManager->GetComponent((IComponent *&)_pButtonSettingsBack, GCT_ANIMATION);
pComponentsManager->GetComponent((IComponent *&)_pButtonLouder, GCT_ANIMATION);
pComponentsManager->GetComponent((IComponent *&)_pButtonHush, GCT_ANIMATION);
pComponentsManager->GetComponent((IComponent *&)_pButtonFull_screen, GCT_ANIMATION);
pComponentsManager->GetComponent((IComponent *&)_pButtonWindow, GCT_ANIMATION);
_SettingsSprite->SetTexture("data/BackgroundOfSetting.png");
_pButtonSettingsBack->SetTexture("data/back.png");
_pButtonSettingsBack->SetFrameSize(Vector2ui(327, 65));
_pButtonSettingsBack->SetPosition(Vector2f(900, 750));
_pButtonLouder->SetTexture("data/volume_minus.png");
_pButtonLouder->SetFrameSize(Vector2ui(327, 65));
_pButtonLouder->SetPosition(Vector2f(1200, 120));
_pButtonHush->SetTexture("data/volume_plus.png");
_pButtonHush->SetFrameSize(Vector2ui(327, 65));
_pButtonHush->SetPosition(Vector2f(1200, 220));
_pButtonFull_screen->SetTexture("data/full_screen.png");
_pButtonFull_screen->SetFrameSize(Vector2ui(360, 65));
_pButtonFull_screen->SetPosition(Vector2f(1190, 350));
_pButtonWindow->SetTexture("data/window.png");
_pButtonWindow->SetFrameSize(Vector2ui(327, 65));
_pButtonWindow->SetPosition(Vector2f(1200, 450));
_curMenu = 0;
}
CMainMenu::CMainMenu(CGame *pGame): _pGame(pGame){
Init();
}
CMainMenu::~CMainMenu(){
if (_pBackSprite)
_pBackSprite->Release(); //ะัะธััะบะฐ ะฟะฐะผััะธ ะพั ะฝะตะฝัะถะฝะพะณะพ ะฑะพะปะตะต ะบะพะผะฟะพะฝะตะฝัะฐ.
if (_pButtonAnim)
_pButtonAnim->Release();
if (_pButtonะกontinue)
_pButtonะกontinue->Release();
if (_pButtonSettings)
_pButtonSettings->Release();
if (_pButtonManagement)
_pButtonManagement->Release();
if (_pButtonExit)
_pButtonExit->Release();
}
void CALLBACK CMainMenu::Draw(){
// ะ ะธััะตะผ ะทะฐะดะฝะธะน ัะพะฝ ะธ ะบะฝะพะฟะบะธ.
switch (_curMenu){
case 0:
_pBackSprite->Draw();
_pButtonAnim->Draw();
_pButtonะกontinue->Draw();
_pButtonSettings->Draw();
_pButtonManagement->Draw();
_pButtonExit->Draw();
break;
case 1:
_SettingsSprite->Draw();
_pButtonSettingsBack->Draw();
_pButtonLouder->Draw();
_pButtonHush->Draw();
_pButtonFull_screen->Draw();
_pButtonWindow->Draw();
break;
case 2:
_pManagementSprite->Draw();
_pButtonBack->Draw();
break;
default:
break;
}
}
void CALLBACK CMainMenu::Update(){
Vector2i mousePos = pInput->GetMousePosition(); // ะะพะทะธัะธั ะบัััะพัะฐ.
switch (_curMenu){
case 0:
// ะัะพะฒะตััะตะผ ะฟะตัะตัะตัะตะฝะธะต ะบัััะพัะฐ ั ะบะฝะพะฟะบะพะน.
if (_pButtonAnim->GetBox().IsContain(mousePos)){
// ะะตัะพะดั SetCurrentFrame ะฒ ัะบะพะฑะบะฐั
ะฟะตัะตะดะฐะตััั ะฝะพะผะตั ะบะฐะดัะฐ, ะบะพัะพััะน ะฝะฐะดะพ ะฒะบะปััะธัั. (ะัััะตั ะธะดะตั ั 0).
// ะัะปะธ ะฟะตัะตัะตะบะปะธัั - ะผะตะฝัะตะผ ะบะฐะดั ะฝะฐ 1.
_pButtonAnim->SetCurrentFrame(1);
if (pInput->IsKeyHit(KEY_LEFT_MOUSE_BUTTON))
_pGame->SetState(GS_ACTION);
//_pGame->SetState(GS_LEVELS_MENU);
}
else
// ะัะปะธ ะฝะตั ะฟะตัะตัะตัะตะฝะธั ั ะบัััะพัะพะผ - ะบะฐะดั 0.
_pButtonAnim->SetCurrentFrame(0);
if (_pButtonะกontinue->GetBox().IsContain(mousePos)){
_pButtonะกontinue->SetCurrentFrame(1);
if (pInput->IsKeyHit(KEY_LEFT_MOUSE_BUTTON))
_pGame->SetState(GS_ACTION); // ะัะพะดะพะปะถะฐะตะผ ะธะณัั
//_pGame->SetState(GS_LEVELS_MENU);
}
else
_pButtonะกontinue->SetCurrentFrame(0);
if (_pButtonSettings->GetBox().IsContain(mousePos)){
_pButtonSettings->SetCurrentFrame(1);
if (pInput->IsKeyHit(KEY_LEFT_MOUSE_BUTTON))
_curMenu = 1; // ะะฐัััะพะนะบะธ
}
else
_pButtonSettings->SetCurrentFrame(0);
if (_pButtonManagement->GetBox().IsContain(mousePos)){
_pButtonManagement->SetCurrentFrame(1);
if (pInput->IsKeyHit(KEY_LEFT_MOUSE_BUTTON)) // ะฃะฟัะฐะฒะปะตะฝะธะต
_curMenu = 2;
}
else
_pButtonManagement->SetCurrentFrame(0);
if (_pButtonExit->GetBox().IsContain(mousePos)){
_pButtonExit->SetCurrentFrame(1);
if (pInput->IsKeyHit(KEY_LEFT_MOUSE_BUTTON))
PostQuitMessage(0); // ะะฐะฒะตััะตะฝะธะต ะธะณัั
}
else
_pButtonExit->SetCurrentFrame(0);
break;
case 1:
if (_pButtonSettingsBack->GetBox().IsContain(mousePos)){
_pButtonSettingsBack->SetCurrentFrame(1);
if (pInput->IsKeyHit(KEY_LEFT_MOUSE_BUTTON))
_curMenu = 0;
}
else
_pButtonSettingsBack->SetCurrentFrame(0);
break;
case 2:
if (_pButtonBack->GetBox().IsContain(mousePos)){
_pButtonBack->SetCurrentFrame(1);
if (pInput->IsKeyHit(KEY_LEFT_MOUSE_BUTTON))
_curMenu = 0;
}
else
_pButtonBack->SetCurrentFrame(0);
break;
default:
break;
}
} |
150e7f99a916e8f5e4ea7aa5f3966181d28fb0bc | d2fc7fb55ce6acc1f274efc51789dc1dc06c3eb2 | /idea/Jojo/go/detail/config/thread_forward.h | ec13277d46e58db00a55c8d10e19d93a9acd51b2 | [] | no_license | Strongc/isu | 31dc6b7049e009bc753d000307936141787942d1 | d40f16c3841552b00329b16a61f5c9893ea6c4eb | refs/heads/master | 2021-01-15T18:14:32.458687 | 2014-11-03T14:22:02 | 2014-11-03T14:22:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | h | thread_forward.h | #ifndef ISU_GO_THREAD_FORWARD_H
#define ISU_GO_THREAD_FORWARD_H
//File:thread_forward.h
// (C) Copyright 2013 ๅๅ
้ฃ
// Use, modification and distribution is subject to the Isu source code
// License, Version 0.1. (See local file LICENSE_0_1.txt)
// See http://blog.csdn.net/fq_hayate for updates, documentation, and revision history.
//Q&A:a313865974@sina.com
#include <go/detail/context/context.h>
namespace isu
{
namespace go
{
namespace detail
{
struct thread_forward
{
typedef context context_type;
};
}
}
}
#endif |
a020a22e6ac7199ff0b0bfaec2251f9898cf6fb3 | 3460bdb87a859f64c204c57c694bca33c9c10cd7 | /SpaceInvaders/LCFramework/message.h | c8dea5b4def7c6aea45a7b62b8ba9eab9250707f | [] | no_license | ruulaasz/SpaceInvaders | 6040eab3aa425d8f513830464e2ed5a32fc1fcaf | 76e50c43083cac54b85a871178ef3643a70d6eb3 | refs/heads/master | 2021-05-02T15:06:58.792354 | 2018-03-05T22:47:18 | 2018-03-05T22:47:18 | 120,684,951 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,298 | h | message.h | #pragma once
#include <iostream>
#define MESSAGE_LOG char*
#define M_ERROR "ERROR"
#define M_SUCCESS "SUCCESS"
#define M_WARNING "WARNING"
#ifdef _DEBUG
static bool PrinteMessage = false;
static inline MESSAGE_LOG ReturnCallMessage(MESSAGE_LOG Descriptor, MESSAGE_LOG aditionalText, int line, char* foo, char* file)
{
if(PrinteMessage)
std::cout << "\n" <<line << "::" << foo << "::" << file << "::" << Descriptor << "::" << aditionalText << ".\n";
return Descriptor;
}
#define ENABLE_PRINT_MESSAGE(value) PrinteMessage = value
#define PPRINT_MESSAGE(Descriptor, aditionalText, line, foo, file) ReturnCallMessage(Descriptor, aditionalText, line, foo, file)
#define MESSAGE_ERROR(Text) PPRINT_MESSAGE(M_ERROR , Text, __LINE__, __FUNCTION__, __FILE__)
#define MESSAGE_SUCCESS(Text) PPRINT_MESSAGE(M_SUCCESS, Text, __LINE__, __FUNCTION__, __FILE__)
#define MESSAGE_WARNING(Text) PPRINT_MESSAGE(M_WARNING, Text, __LINE__, __FUNCTION__, __FILE__)
#else
#define ENABLE_PRINT_MESSAGE(...)
#define PPRINT_MESSAGE(...)
#define MESSAGE_ERROR(...) M_ERROR
#define MESSAGE_SUCCESS(...) M_SUCCESS
#define MESSAGE_WARNING(...) M_WARNING
static MESSAGE_LOG ReturnCallMessage(MESSAGE_LOG Descriptor, MESSAGE_LOG aditionalText, int line, char* foo, char* file)
{
return Descriptor;
}
#endif// !_DEBUG
|
96d09f537a582eea60ae95469a56623d02b22785 | 502b8e183b5602136eeb78c2ea6a4eb3db7769db | /driver.h | 97f071f614cdc8aebdedd113f4d328fc2d701022 | [] | no_license | eliogovea/vibration-analysis | f9007ac9ee08af6cf970416bae1e425b885b4736 | db665b402004a02218156e4e4ba3f26e37865618 | refs/heads/master | 2020-05-07T20:00:33.759720 | 2019-09-20T01:00:24 | 2019-09-20T01:00:24 | 180,840,665 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 639 | h | driver.h | #pragma once
#include <QWidget>
#include <QFrame>
#include "reader.h"
#include "signalchart.h"
class Driver : public QFrame {
Q_OBJECT
public:
Driver(int windowSize, QWidget* parent = 0);
public slots:
void getNewData(AccData);
void getNewX(double);
void getNewY(double);
void getNewZ(double);
void getNewAbs(double);
private:
int width = 900;
int height = 640;
int windowSize;
Reader* reader;
SignalChart* x;
SignalChart* y;
SignalChart* z;
SignalChart* l;
void processNew(double, SignalChart*);
};
|
a393da5e9400b58e8d0d9ba060043bbe8155d59a | b3e525a3c48800303019adac8f9079109c88004e | /nic/sdk/platform/elba/elba_barco_crypto.hpp | 216c5f430331357e97ae19767e145d6b4f90869e | [] | no_license | PsymonLi/sw | d272aee23bf66ebb1143785d6cb5e6fa3927f784 | 3890a88283a4a4b4f7488f0f79698445c814ee81 | refs/heads/master | 2022-12-16T21:04:26.379534 | 2020-08-27T07:57:22 | 2020-08-28T01:15:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,889 | hpp | elba_barco_crypto.hpp | //
// {C} Copyright 2020 Pensando Systems Inc. All rights reserved
//
//----------------------------------------------------------------------------
///
/// \file
/// elba barco crypto headers
///
//----------------------------------------------------------------------------
#ifndef __ELBA_BARCO_CRYPTO_HPP__
#define __ELBA_BARCO_CRYPTO_HPP__
#include "gen/proto/types.pb.h"
#include "include/sdk/base.hpp"
#include "include/sdk/crypto_apis.hpp"
#include "platform/elba/elba_cfg.hpp"
#include "asic/asic.hpp"
namespace sdk {
namespace platform {
namespace elba {
#define ELBA_BARCO_KEY_MEM "key-mem"
#define ELBA_BARCO_KEY_DESC "key-desc-array"
#define ASIC_HBM_REG_TLS_PROXY_PAD_TABLE "tls-proxy-pad-table"
#define BARCO_CRYPTO_DESC_SZ 128 /* 1024 bits */
#define BARCO_CRYPTO_DESC_ALIGN_BYTES 128
#define BARCO_CRYPTO_KEY_DESC_SZ 16 /* 128 bits */
#define BARCO_CRYPTO_KEY_DESC_ALIGN_BYTES 16
/* FIXME: this needs to be driven from HAL PD, but the includes do not make it to elba */
#define CRYPTO_KEY_COUNT_MAX (64 * 1024)
#define CRYPTO_SYM_KEY_SIZE_MAX 64 /* 2 * 256 bit key */
#define ELBA_MAX_TLS_PAD_SIZE 512
#define BARCO_RING_SHADOW_PI_SIZE 2
#define BARCO_RING_SHADOW_CI_SIZE 2
#define BARCO_RING_QSTATS_SIZE 12
#define BARCO_GCM0_PI_HBM_TABLE_OFFSET ELBA_MAX_TLS_PAD_SIZE
#define BARCO_GCM0_CI_HBM_TABLE_OFFSET (BARCO_GCM0_PI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_PI_SIZE)
#define BARCO_GCM0_QSTATS_HBM_TABLE_OFFSET (BARCO_GCM0_CI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_CI_SIZE)
// GC is just using unused space in the Barco TLS pad region, can
// be moved elsewhere too
#define ELBA_GC_GLOBAL_TABLE (ELBA_MAX_TLS_PAD_SIZE + 128)
#define ELBA_GC_GLOBAL_RNMDPR_FP_PI (ELBA_GC_GLOBAL_TABLE + 0)
#define ELBA_GC_GLOBAL_TNMDPR_FP_PI (ELBA_GC_GLOBAL_TABLE + 4)
#define ELBA_GC_GLOBAL_OOQ_TX2RX_FP_PI (ELBA_GC_GLOBAL_TABLE + 8)
#define ELBA_IPSEC_ENC_NMDR_ALLOC_PI (ELBA_GC_GLOBAL_TABLE + 16)
#define ELBA_IPSEC_ENC_NMDR_ALLOC_CI (ELBA_GC_GLOBAL_TABLE + 20)
#define ELBA_IPSEC_DEC_NMDR_ALLOC_PI (ELBA_GC_GLOBAL_TABLE + 24)
#define ELBA_IPSEC_DEC_NMDR_ALLOC_CI (ELBA_GC_GLOBAL_TABLE + 28)
#define BARCO_GCM1_PI_HBM_TABLE_OFFSET (BARCO_GCM0_QSTATS_HBM_TABLE_OFFSET + BARCO_RING_QSTATS_SIZE)
#define BARCO_GCM1_CI_HBM_TABLE_OFFSET (BARCO_GCM1_PI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_PI_SIZE)
#define BARCO_GCM1_QSTATS_HBM_TABLE_OFFSET (BARCO_GCM1_CI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_CI_SIZE)
#define BARCO_MPP0_PI_HBM_TABLE_OFFSET (BARCO_GCM1_QSTATS_HBM_TABLE_OFFSET + BARCO_RING_QSTATS_SIZE)
#define BARCO_MPP0_CI_HBM_TABLE_OFFSET (BARCO_MPP0_PI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_PI_SIZE)
#define BARCO_MPP0_QSTATS_HBM_TABLE_OFFSET (BARCO_MPP0_CI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_CI_SIZE)
#define BARCO_MPP1_PI_HBM_TABLE_OFFSET (BARCO_MPP0_QSTATS_HBM_TABLE_OFFSET + BARCO_RING_QSTATS_SIZE)
#define BARCO_MPP1_CI_HBM_TABLE_OFFSET (BARCO_MPP0_PI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_PI_SIZE)
#define BARCO_MPP1_QSTATS_HBM_TABLE_OFFSET (BARCO_MPP0_CI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_CI_SIZE)
#define BARCO_MPP2_PI_HBM_TABLE_OFFSET (BARCO_MPP1_QSTATS_HBM_TABLE_OFFSET + BARCO_RING_QSTATS_SIZE)
#define BARCO_MPP2_CI_HBM_TABLE_OFFSET (BARCO_MPP1_PI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_PI_SIZE)
#define BARCO_MPP2_QSTATS_HBM_TABLE_OFFSET (BARCO_MPP1_CI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_CI_SIZE)
#define BARCO_MPP3_PI_HBM_TABLE_OFFSET (BARCO_MPP2_QSTATS_HBM_TABLE_OFFSET + BARCO_RING_QSTATS_SIZE)
#define BARCO_MPP3_CI_HBM_TABLE_OFFSET (BARCO_MPP2_PI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_PI_SIZE)
#define BARCO_MPP3_QSTATS_HBM_TABLE_OFFSET (BARCO_MPP2_CI_HBM_TABLE_OFFSET + BARCO_RING_SHADOW_CI_SIZE)
sdk_ret_t elba_barco_rings_init(platform_type_t platform);
sdk_ret_t elba_barco_res_allocator_init(void);
sdk_ret_t elba_barco_crypto_init(platform_type_t platform);
sdk_ret_t elba_barco_sym_alloc_key(int32_t *key_idx);
sdk_ret_t elba_barco_sym_alloc_key_withid(int32_t key_idx,
bool allow_dup_alloc);
sdk_ret_t elba_barco_sym_free_key(int32_t key_idx);
sdk_ret_t elba_barco_init_key(uint32_t key_idx, uint64_t key_addr);
sdk_ret_t elba_barco_setup_key(uint32_t key_idx, sdk::crypto_key_type_t key_type,
uint8_t *key, uint32_t key_size);
sdk_ret_t elba_barco_read_key(uint32_t key_idx, sdk::crypto_key_type_t *key_type,
uint8_t *key, uint32_t *key_size);
sdk_ret_t elba_barco_crypto_init_tls_pad_table(void);
/* Barco Crypto specific definitions */
typedef struct elba_barco_key_desc_s {
uint64_t key_address;
uint32_t key_type;
uint32_t reserved;
} __PACK__ elba_barco_key_desc_t;
#define ELBA_BARCO_KEYTYPE_SHIFT 28
#define ELBA_BARCO_KEYTYPE_AES (0x0 << ELBA_BARCO_KEYTYPE_SHIFT)
#define ELBA_BARCO_KEYTYPE_AES128 (ELBA_BARCO_KEYTYPE_AES | 0x0000010)
#define ELBA_BARCO_KEYTYPE_AES192 (ELBA_BARCO_KEYTYPE_AES | 0x0000018)
#define ELBA_BARCO_KEYTYPE_AES256 (ELBA_BARCO_KEYTYPE_AES | 0x0000020)
#define ELBA_BARCO_KEYTYPE_DES ((0x1 << ELBA_BARCO_KEYTYPE_SHIFT) | (0x0000070))
#define ELBA_BARCO_KEYTYPE_CHACHA20 ((0x2 << ELBA_BARCO_KEYTYPE_SHIFT) | (0x0000020))
#define ELBA_BARCO_KEYTYPE_POY1305 ((0x3 << ELBA_BARCO_KEYTYPE_SHIFT) | (0x0000020))
#define ELBA_BARCO_KEYTYPE_HMAC_TYPE (0x4 << ELBA_BARCO_KEYTYPE_SHIFT)
#define ELBA_BARCO_KEYTYPE_HMAC_LEN_MASK (0xfffffff)
#define ELBA_BARCO_KEYTYPE_HMAC(len) ((ELBA_BARCO_KEYTYPE_HMAC_TYPE) | \
(len & ELBA_BARCO_KEYTYPE_HMAC_LEN_MASK))
/* Barco Crypto Asym specific definitions */
typedef struct elba_barco_asym_key_desc_s {
uint64_t key_param_list;
uint32_t command_reg;
uint32_t reserved;
} __PACK__ elba_barco_asym_key_desc_t;
sdk_ret_t elba_barco_asym_alloc_key(int32_t *key_idx);
sdk_ret_t elba_barco_asym_free_key(int32_t key_idx);
sdk_ret_t elba_barco_asym_read_key(int32_t key_idx,
elba_barco_asym_key_desc_t *key);
sdk_ret_t elba_barco_asym_write_key(int32_t key_idx,
elba_barco_asym_key_desc_t *key);
/* Asymmetric/PKE Command Definitions */
#define ELBA_BARCO_ASYM_CMD_CALCR2 0x80000000
#define ELBA_BARCO_ASYM_CMD_FLAGB 0x40000000
#define ELBA_BARCO_ASYM_CMD_FLAGA 0x20000000
#define ELBA_BARCO_ASYM_CMD_SWAP_BYTES 0x10000000
#define ELBA_BARCO_ASYM_CMD_BUFFER_SEL 0x08000000
#define ELBA_BARCO_ASYM_CMD_R_AND_PROJ 0x02000000
#define ELBA_BARCO_ASYM_CMD_R_AND_KE 0x01000000
#define ELBA_BARCO_ASYM_CMD_SEL_CURVE_NO_ACCEL 0x00000000
#define ELBA_BARCO_ASYM_CMD_SEL_CURVE_P256 0x00100000
#define ELBA_BARCO_ASYM_CMD_SEL_CURVE_P384 0x00200000
#define ELBA_BARCO_ASYM_CMD_SEL_CURVE_P521_E521 0x00300000
#define ELBA_BARCO_ASYM_CMD_SEL_CURVE_P192 0x00400000
#define ELBA_BARCO_ASYM_CMD_SEL_CURVE_CURVE25519_ED25519 0x00500000
#define ELBA_BARCO_ASYM_CMD_SIZE_OF_OP_SHIFT 8
#define ELBA_BARCO_ASYM_CMD_SIZE_OF_OP(size) ((size - 1) << ELBA_BARCO_ASYM_CMD_SIZE_OF_OP_SHIFT)
#define ELBA_BARCO_ASYM_CMD_FIELD_GFP 0x00000000
#define ELBA_BARCO_ASYM_CMD_FIELD_GF2M 0x00000080
/* Primitive Arithmetic Operations GF(p) and GF(2^m) */
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_NA 0x00
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_ADD 0x01
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_SUB 0x02
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_MUL_ODD_N 0x03
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_RED_ODD_N 0x04
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_DIV_ODD_N 0x05
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_INV_ODD_N 0x06
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_SQRT 0x07
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MUL 0x08
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_INV_EVEN_N 0x09
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_MOD_RED_EVEN_N 0x0a
#define ELBA_BARCO_ASYM_CMD_OP_TYPE_CLEAR_DATA_MEM 0x0f
/* High-level RSA, CRT & DSA Operations - GF(p) only */
#define ELBA_BARCO_ASYM_CMD_MOD_EXPO 0x10
#define ELBA_BARCO_ASYM_CMD_RSA_PK_GEN 0x11
#define ELBA_BARCO_ASYM_CMD_RSA_CRT_KEY_PARAM_GEN 0x12
#define ELBA_BARCO_ASYM_CMD_RSA_CRT_DECRYPT 0x13
#define ELBA_BARCO_ASYM_CMD_RSA_ENCRYPT 0x14
#define ELBA_BARCO_ASYM_CMD_RSA_DECRYPT 0x15
#define ELBA_BARCO_ASYM_CMD_RSA_SIG_GEN 0x16
#define ELBA_BARCO_ASYM_CMD_RSA_SIG_VERIFY 0x17
#define ELBA_BARCO_ASYM_CMD_DSA_KEY_GEN 0x18
#define ELBA_BARCO_ASYM_CMD_DSA_SIG_GEN 0x19
#define ELBA_BARCO_ASYM_CMD_DSA_SIG_VERIFY 0x1a
#define ELBA_BARCO_ASYM_CMD_SRP_SERVER_SESS_KEY 0x1b
#define ELBA_BARCO_ASYM_CMD_SRP_CLIENT_SESS_KEY 0x1c
#define ELBA_BARCO_ASYM_CMD_RSA_HALF_CRT_RECOMB 0x1d
#define ELBA_BARCO_ASYM_CMD_SRP_SERVER_PUB_KEY 0x1e
#define ELBA_BARCO_ASYM_CMD_RSA_HALF_CRT_DECRYPT 0x1f
/* Primitive ECC & Check Point Operations GF(p) & GF(2m) */
#define ELBA_BARCO_ASYM_CMD_ECC_POINT_DOUBLE 0x20
#define ELBA_BARCO_ASYM_CMD_ECC_POINT_ADD 0x21
#define ELBA_BARCO_ASYM_CMD_ECC_POINT_MUL 0x22
#define ELBA_BARCO_ASYM_CMD_ECC_CHECK_A_AND_B 0x23
#define ELBA_BARCO_ASYM_CMD_ECC_CHECK_N_NE_Q 0x24
#define ELBA_BARCO_ASYM_CMD_ECC_CHECK_X_Y_LT_Q 0x25
#define ELBA_BARCO_ASYM_CMD_ECC_CHECK_POINT_ON_CURVE 0x26
#define ELBA_BARCO_ASYM_CMD_ECC_POINT_DECOMPRESS 0x27
#define ELBA_BARCO_ASYM_CMD_ECC_MONT_POINT_MUL 0x28
#define ELBA_BARCO_ASYM_CMD_SM2_SIG_GEN 0x2d
#define ELBA_BARCO_ASYM_CMD_SM2_SIG_VERIFY 0x2e
#define ELBA_BARCO_ASYM_CMD_SM2_KEX 0x2f
/* High-level ECC โ ECDSA Operations GF(p) & GF(2m) */
#define ELBA_BARCO_ASYM_ECDSA_SIG_GEN 0x30
#define ELBA_BARCO_ASYM_ECDSA_SIG_VERIFY 0x31
#define ELBA_BARCO_ASYM_ECDSA_DOMAIN_PARAM_VALIDATION 0x32
#define ELBA_BARCO_ASYM_ECKCDSA_PUB_KEY_GEN 0x33
#define ELBA_BARCO_ASYM_ECKCDSA_SIG_GEN 0x34
#define ELBA_BARCO_ASYM_ECKCDSA_SIG_VERIFY 0x35
#define ELBA_BARCO_ASYM_JPAKE_GEN_ZKP 0x36
#define ELBA_BARCO_ASYM_JPAKE_VERIFY_ZKP 0x37
#define ELBA_BARCO_ASYM_JPAKE_2_POINT_ADD 0x38
#define ELBA_BARCO_ASYM_JPAKE_GEN_SESS_KEY 0x39
#define ELBA_BARCO_ASYM_JPAKE_GEN_STEP_2 0x3a
#define ELBA_BARCO_ASYM_EDDSA_POINT_MUL 0x3b
#define ELBA_BARCO_ASYM_EDDSA_SIG_GEN 0x3c
#define ELBA_BARCO_ASYM_EDDSA_SIG_VERIFY 0x3d
#define ELBA_BARCO_ASYM_EDDSA_GEN_SESS_KEY 0x3e
/* Primality Test โ Rabin-Miller */
#define ELBA_BARCO_ASYM_ROUND_RABIN_MILLER 0x40
#define ELBA_BARCO_ASYM_INIT_RABIN_MILLER 0x41
/*
* Command encoding for Barco symmetric crypto requests.
* Based on Table 5. in Pensando_CryptoDMA_1.18.pdf.
*/
#define ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT 28
#define ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT 24
#define ELBA_BARCO_SYM_COMMAND_OPER_SHIFT 20
#define ELBA_BARCO_SYM_COMMAND_ID_BA411E_AES (0x0 << ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT)
#define ELBA_BARCO_SYM_COMMAND_ID_BA412_DES (0x1 << ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT)
#define ELBA_BARCO_SYM_COMMAND_ID_BA413_HASH (0x2 << ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT)
#define ELBA_BARCO_SYM_COMMAND_ID_BA415_AES_GCM (0x3 << ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT)
#define ELBA_BARCO_SYM_COMMAND_ID_BA416_AES_XTS (0x4 << ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT)
#define ELBA_BARCO_SYM_COMMAND_ID_BA417_CHACHAPOLY (0x5 << ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT)
#define ELBA_BARCO_SYM_COMMAND_ID_BA418_SHA3 (0x6 << ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT)
#define ELBA_BARCO_SYM_COMMAND_ID_AES_HASH (0x7 << ELBA_BARCO_SYM_COMMAND_BARCO_ID_SHIFT)
#define ELBA_BARCO_SYM_COMMAND_ALGO_AES_CBC \
(ELBA_BARCO_SYM_COMMAND_ID_BA411E_AES | (0x1 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_AES_CCM \
(ELBA_BARCO_SYM_COMMAND_ID_BA411E_AES | (0x5 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_DES_ECB \
(ELBA_BARCO_SYM_COMMAND_ID_BA412_DES | (0x0 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_DES_CBC \
(ELBA_BARCO_SYM_COMMAND_ID_BA412_DES | (0x1 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA1 \
(ELBA_BARCO_SYM_COMMAND_ID_BA413_HASH | (0x1 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA224 \
(ELBA_BARCO_SYM_COMMAND_ID_BA413_HASH | (0x2 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA256 \
(ELBA_BARCO_SYM_COMMAND_ID_BA413_HASH | (0x3 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA384 \
(ELBA_BARCO_SYM_COMMAND_ID_BA413_HASH | (0x4 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA512 \
(ELBA_BARCO_SYM_COMMAND_ID_BA413_HASH | (0x5 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_AES_GCM \
(ELBA_BARCO_SYM_COMMAND_ID_BA415_AES_GCM | (0x0 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_AES_XTS \
(ELBA_BARCO_SYM_COMMAND_ID_BA416_AES_XTS | (0x0 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_CHACHA20 \
(ELBA_BARCO_SYM_COMMAND_ID_BA417_CHACHAPOLY | (0x0 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_CHACHA20_POLY1305 \
(ELBA_BARCO_SYM_COMMAND_ID_BA417_CHACHAPOLY | (0x1 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_224 \
(ELBA_BARCO_SYM_COMMAND_ID_BA418_SHA3 | (0x0 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_256 \
(ELBA_BARCO_SYM_COMMAND_ID_BA418_SHA3 | (0x1 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_384 \
(ELBA_BARCO_SYM_COMMAND_ID_BA418_SHA3 | (0x2 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_512 \
(ELBA_BARCO_SYM_COMMAND_ID_BA418_SHA3 | (0x3 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA256 \
(ELBA_BARCO_SYM_COMMAND_ID_AES_HASH | (0x1 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA384 \
(ELBA_BARCO_SYM_COMMAND_ID_AES_HASH | (0x2 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA256_CBC \
(ELBA_BARCO_SYM_COMMAND_ID_AES_HASH | (0x3 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA384_CBC \
(ELBA_BARCO_SYM_COMMAND_ID_AES_HASH | (0x4 << ELBA_BARCO_SYM_COMMAND_ALGO_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_CBC_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_CBC | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_CBC_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_CBC | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_CCM_NONCE_SHIFT 8
#define ELBA_BARCO_SYM_COMMAND_AES_CCM_NONCE_SIZE_MASK (0xf)
#define ELBA_BARCO_SYM_COMMAND_AES_CCM_TAG_SIZE_MASK (0xff)
#define ELBA_BARCO_SYM_COMMAND_AES_CCM_Encrypt(Nonce_size, Tag_size) \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_CCM | \
(0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT) | \
((Nonce_size & ELBA_BARCO_SYM_COMMAND_AES_CCM_NONCE_SIZE_MASK) \
<< ELBA_BARCO_SYM_COMMAND_AES_CCM_NONCE_SHIFT) | \
(Tag_size & ELBA_BARCO_SYM_COMMAND_AES_CCM_TAG_SIZE_MASK))
#define ELBA_BARCO_SYM_COMMAND_AES_CCM_Decrypt(Nonce_size, Tag_size) \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_CCM | \
(0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT) | \
((Nonce_size & ELBA_BARCO_SYM_COMMAND_AES_CCM_NONCE_SIZE_MASK) \
<< ELBA_BARCO_SYM_COMMAND_AES_CCM_NONCE_SHIFT) | \
(Tag_size & ELBA_BARCO_SYM_COMMAND_AES_CCM_TAG_SIZE_MASK))
#define ELBA_BARCO_SYM_COMMAND_DES_ECB_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_DES_ECB | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_DES_ECB_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_DES_ECB | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_DES_CBC_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_DES_CBC | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_DES_CBC_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_DES_CBC | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA1_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA1 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA1_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA1 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA1_Generate_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA1 | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA1_Verify_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA1 | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA224_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA224 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA224_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA224 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA224_Generate_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA224 | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA224_Verify_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA224 | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA256_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA256 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA256_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA256 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA256_Generate_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA256 | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA256_Verify_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA256 | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA384_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA384 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA384_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA384 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA384_Generate_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA384 | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA384_Verify_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA384 | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA512_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA512 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA512_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA512 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA512_Generate_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA512 | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA512_Verify_HMAC \
(ELBA_BARCO_SYM_COMMAND_ALGO_HASH_SHA512 | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_GCM_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_GCM | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_GCM_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_GCM | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_XTS_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_XTS | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_XTS_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_XTS | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_CHACHA20_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_CHACHA20 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_CHACHA20_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_CHACHA20 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_CHACHA20_POLY1305_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_CHACHA20_POLY1305 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_CHACHA20_POLY1305_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_CHACHA20_POLY1305 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA3_224_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_224 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA3_224_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_224 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA3_256_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_256 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA3_256_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_256 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA3_384_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_384 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA3_384_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_384 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA3_512_Generate_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_512 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_SHA3_512_Verify_Hash \
(ELBA_BARCO_SYM_COMMAND_ALGO_SHA3_512 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_CBC_SHA256_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA256 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_CBC_SHA256_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA256 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_CBC_HMAC_SHA256_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA256 | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_CBC_HMAC_SHA256_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA256 | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_CBC_SHA384_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA384 | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_CBC_SHA384_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA384 | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_CBC_HMAC_SHA384_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA384 | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_CBC_HMAC_SHA384_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_CBC_SHA384 | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_SHA256_CBC_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA256_CBC | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_SHA256_CBC_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA256_CBC | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_HMAC_SHA256_CBC_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA256_CBC | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_HMAC_SHA256_CBC_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA256_CBC | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_SHA384_CBC_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA384_CBC | (0x0 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_SHA384_CBC_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA384_CBC | (0x1 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_HMAC_SHA384_CBC_Encrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA384_CBC | (0x2 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
#define ELBA_BARCO_SYM_COMMAND_AES_HASH_HMAC_SHA384_CBC_Decrypt \
(ELBA_BARCO_SYM_COMMAND_ALGO_AES_HASH_SHA384_CBC | (0x3 << ELBA_BARCO_SYM_COMMAND_OPER_SHIFT))
/*
* Barco Symmetric Crypto Error encoding.
* Based on Table 8. in Pensando_CryotoDMA_1.18.pdf.
*/
#define ELBA_BARCO_SYM_ERR_PUSH_LEN_ERR (1 << 15)
#define ELBA_BARCO_SYM_ERR_ZERO_PUSH_ERR (1 << 14)
#define ELBA_BARCO_SYM_ERR_BUS_PUSH_ERR (1 << 13)
#define ELBA_BARCO_SYM_ERR_ZERO_FETCH_ERR (1 << 12)
#define ELBA_BARCO_SYM_ERR_BUS_FETCH_ERR (1 << 11)
#define ELBA_BARCO_SYM_ERR_DMA_OVFL_ERR (1 << 10)
#define ELBA_BARCO_SYM_ERR_BUS_ERR (1 << 9)
#define ELBA_BARCO_SYM_ERR_GEN_PUSH_ERR (1 << 8)
#define ELBA_BARCO_SYM_ERR_GEN_FETCH_ERR (1 << 7)
#define ELBA_BARCO_SYM_ERR_BUS_UNSUP_MODE (1 << 6)
#define ELBA_BARCO_SYM_ERR_BUS_RSVD (1 << 5)
#define ELBA_BARCO_SYM_ERR_BUS_BAD_CMD (1 << 4)
#define ELBA_BARCO_SYM_ERR_BUS_UNK_STATE (1 << 3)
#define ELBA_BARCO_SYM_ERR_BUS_AXI_BUS_RESP (1 << 2)
#define ELBA_BARCO_SYM_ERR_BUS_WRONG_KEYTYPE (1 << 1)
#define ELBA_BARCO_SYM_ERR_BUS_KEYTYPE_RANGE (1 << 0)
#define ELBA_BARCO_SYM_ERR_UNRECOV_MASK \
(ELBA_BARCO_SYM_ERR_PUSH_LEN_ERR | \
ELBA_BARCO_SYM_ERR_ZERO_PUSH_ERR | \
ELBA_BARCO_SYM_ERR_BUS_PUSH_ERR | \
ELBA_BARCO_SYM_ERR_ZERO_FETCH_ERR | \
ELBA_BARCO_SYM_ERR_BUS_FETCH_ERR | \
ELBA_BARCO_SYM_ERR_DMA_OVFL_ERR | \
ELBA_BARCO_SYM_ERR_BUS_ERR | \
ELBA_BARCO_SYM_ERR_BUS_UNSUP_MODE | \
ELBA_BARCO_SYM_ERR_BUS_BAD_CMD | \
ELBA_BARCO_SYM_ERR_BUS_UNK_STATE | \
ELBA_BARCO_SYM_ERR_BUS_AXI_BUS_RESP | \
ELBA_BARCO_SYM_ERR_BUS_WRONG_KEYTYPE | \
ELBA_BARCO_SYM_ERR_BUS_KEYTYPE_RANGE)
#define ELBA_BARCO_SYM_ERR_RECOVERABLE \
(ELBA_BARCO_SYM_ERR_GEN_PUSH_ERR | \
ELBA_BARCO_SYM_ERR_GEN_FETCH_ERR)
} // namespace elba
} // namespace platform
} // namespace sdk
using sdk::platform::elba::elba_barco_sym_alloc_key;
using sdk::platform::elba::elba_barco_sym_alloc_key_withid;
using sdk::platform::elba::elba_barco_sym_free_key;
using sdk::platform::elba::elba_barco_asym_alloc_key;
using sdk::platform::elba::elba_barco_asym_free_key;
using sdk::crypto_key_type_t;
using sdk::platform::elba::elba_barco_asym_key_desc_t;
#endif // __ELBA_BARCO_CRYPTO_HPP__
|
1c1c729ce62552a6a2a2bcc147d6af1594645f8f | b6986d606ce256b293cd6f43aa99b3255e9352a7 | /software/libraries/Uberdust/examples/airconditioner/airconditioner.ino | 61a9421936edf20f9e4d8f2edd89447d53a11150 | [] | no_license | Vammoso/arduino | 85b0038bcc782a7fdff88c8b41024b95326edb11 | 79161be94f0dc2c97401777c4c1aedf99df2c457 | refs/heads/master | 2023-05-09T17:54:24.680821 | 2012-05-28T07:22:06 | 2012-05-28T07:22:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,652 | ino | airconditioner.ino | #include <Uberdust.h>
#include <XbeeRadio.h>
#include <XBee.h>
#include <stdio.h>
#include <string.h>
#include <SoftwareSerial.h>
// Create the xbee object
XBeeRadio xbee = XBeeRadio();
// Create reusable response objects for responses we expect to handle
XBeeRadioResponse response = XBeeRadioResponse();
// Allocate two bytes for to hold a 32-bit analog reading
uint8_t payload[] = {
102, 0, 0, 0, 0, 0};
// 16-bit addressing: Enter address of remote XBee, typically the coordinator
Tx16Request tx = Tx16Request(0xffff, payload, sizeof(payload));
TxStatusResponse txStatus = TxStatusResponse();
uint8_t ledPin = 13;
Uberdust uber = Uberdust();
void setup()
{
xbee.initialize_xbee_module();
// setup xbee
xbee.begin(38400);
xbee.init();
uber.setup(&xbee, &tx);
delay(1000);
sendCapabilities();
}
void loop()
{
static unsigned long ledTimestamp = 0;
if(millis() - ledTimestamp > 5000)
{
uber.blinkLED(1,100);
ledTimestamp = millis();
}
checkAC();
periodicCapabilities();
}
void periodicCapabilities()
{
static unsigned long capabTimestamp = 0;
if(millis() - capabTimestamp > 60000)
{
digitalWrite(13, HIGH);
sendCapabilities();
digitalWrite(13, LOW);
delay(100);
capabTimestamp = millis();
}
}
void sendCapabilities(void)
{
uber.sendValue("report", "AC");
}
void checkAC(void)
{
if(xbee.checkForData(112))
{
xbee.getResponse(response);
if(response.getData(0) == 1 && response.getData(1) == 1)
{
int value = response.getData(2);
if(value)
{
//open AC
}
else
{
//close AC
}
uber.blinkLED(2,100);
}
}
}
|
36c7ccf03f167b419699941a86c1f16e719a042d | 6f4cd6b32182507f5dc5c5da3077899ff68e9bc8 | /manipulator_cout_setf.cpp | 17abc86ce2519ca851a96bddfd8e91820e48d5ff | [] | no_license | LEEleonardo/cpp | adf559e3346c9e282a29005b9e4eb642b8872aaf | 5053ba5ebb42363a5c4b8832a57e3fc70b2448d2 | refs/heads/master | 2021-09-01T10:21:47.499370 | 2017-12-26T12:45:02 | 2017-12-26T12:45:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,782 | cpp | manipulator_cout_setf.cpp | #include "stdafx.h"
#include <iostream>
#include <fstream>
//#include <iomanip>
using namespace std;
//int main()
//{
// ifstream inStream; //1/๊ฐ์ฒด์์ฑ
// ofstream outStream; //1.๊ฐ์ฒด ์์ฑ
// inStream.open("infile.txt"); //2.๊ฐ์ฒด ์ฐ๋(infile.txt๋ผ๋ ํ์ผ๊ณผ์ ์ฐ๋์ ์งํํจ)
// if (inStream.fail())//instream์ด๋ผ๋ ํ์ผ์ด ์์๋์ ๊ฒฐ๊ณผ๋ฅผ ์ ์
// {
// cout << "File doesnt open";
// exit(0);
// }
// outStream.open("outfile.txt"); //outstream.์ฆ ๋ญ๊ฐ์ฐ๊ฑฐ๋ ๋ง๋คํ์ผ๋ก outfile์ ์ ์ํ์ฌ์ค๋ค.
// int *pnData;
// int nSizeOfArray = 0;
// int nIndex = 0;
// int nDummy;
// while (!inStream.eof()) //์ฝ์ด๋ค์ด๋๊ฒ์ด ๋๋ ๋๊น์ง ์ซ์์ด ๋จ์๋ก ๋ค์๊ณผ๊ฐ์ ์์
์ ๋ฐ๋ณตํ์ฌ์ค๋ค.
// {
// inStream >> nDummy;
// nSizeOfArray++;
// }
// inStream.seekg(inStream.beg); //์คํธ๋ฆผ์ ์์์ผ๋ก ๋ค์ ๋์๊ฐ์
// pnData = new int[nSizeOfArray];
// while (!inStream.eof())
// {
// inStream >> pnData[nIndex];
// nIndex++;
// }
// int nSum = 0;
// for (nIndex = 0; nIndex < nSizeOfArray; nIndex++)
// {
// nSum += pnData[nIndex]; //๋ชจ๋ ํญ์ ํฉ์ ๊ตฌํด์ค๋ค.
// }
//
// outStream.setf(ios::fixed);
// outStream.setf(ios::showpoint);
// outStream.precision(2);
// outStream.setf(ios::fixed | ios::showpoint | ios::right);//์ค๋ฅธ์ชฝ ์ ๋ ฌ
// outStream << "!@#!@#The sum of number in infile.txt is : ";
//// outStream.setw(100) << nSum+0.22222 << endl;
//
// inStream.close();
// outStream.close();
// return 0;
//}
int main()
{
ifstream inStream; //1/๊ฐ์ฒด์์ฑ
ofstream outStream; //1.๊ฐ์ฒด ์์ฑ
inStream.open("infile.txt"); //2.๊ฐ์ฒด ์ฐ๋(infile.txt๋ผ๋ ํ์ผ๊ณผ์ ์ฐ๋์ ์งํํจ)
if (inStream.fail())//instream์ด๋ผ๋ ํ์ผ์ด ์์๋์ ๊ฒฐ๊ณผ๋ฅผ ์ ์
{
cout << "File doesnt open";
exit(0);
}
outStream.open("outfile.txt"); //outstream.์ฆ ๋ญ๊ฐ์ฐ๊ฑฐ๋ ๋ง๋คํ์ผ๋ก outfile์ ์ ์ํ์ฌ์ค๋ค.
int *pnData;
int nSizeOfArray = 0;
int nIndex = 0;
int nDummy;
while (!inStream.eof()) //์ฝ์ด๋ค์ด๋๊ฒ์ด ๋๋ ๋๊น์ง ์ซ์์ด ๋จ์๋ก ๋ค์๊ณผ๊ฐ์ ์์
์ ๋ฐ๋ณตํ์ฌ์ค๋ค.
{
inStream >> nDummy;
nSizeOfArray++;
}
inStream.seekg(inStream.beg); //์คํธ๋ฆผ์ ์์์ผ๋ก ๋ค์ ๋์๊ฐ์
pnData = new int[nSizeOfArray];
while (!inStream.eof())
{
inStream >> pnData[nIndex];
nIndex++;
}
int nSum = 0;
for (nIndex = 0; nIndex < nSizeOfArray; nIndex++) //3.๊ฐ์ข
์ฌ์ฉ
{
nSum += pnData[nIndex]; //๋ชจ๋ ํญ์ ํฉ์ ๊ตฌํด์ค๋ค.
}
outStream << "!@#!@#The sum of number in infile.txt is : " //์ปดํ์ผํ ์์ํ์ผ์ด ์ ์์ฑ๋์๋์ง ํ์ธํด๋ณด์.
<< nSum << endl;
inStream.close();
outStream.close();//4.๋ซ๊ธฐ
bool a = true;
if (a==2)
{
cout << "hi";
}
return 0;
}
|
fd5a2279dcc8b17423ff1c0021c833bffdce3889 | 11ef4bbb8086ba3b9678a2037d0c28baaf8c010e | /Source Code/server/binaries/chromium/gen/chrome/common/offline_page_auto_fetcher.mojom-params-data.h | dd2f6af8605d20efa6a3bcc9b2132b616aee659a | [] | no_license | lineCode/wasmview.github.io | 8f845ec6ba8a1ec85272d734efc80d2416a6e15b | eac4c69ea1cf0e9af9da5a500219236470541f9b | refs/heads/master | 2020-09-22T21:05:53.766548 | 2019-08-24T05:34:04 | 2019-08-24T05:34:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,235 | h | offline_page_auto_fetcher.mojom-params-data.h | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_COMMON_OFFLINE_PAGE_AUTO_FETCHER_MOJOM_PARAMS_DATA_H_
#define CHROME_COMMON_OFFLINE_PAGE_AUTO_FETCHER_MOJOM_PARAMS_DATA_H_
#include "base/logging.h"
#include "base/macros.h"
#include "mojo/public/cpp/bindings/lib/bindings_internal.h"
#include "mojo/public/cpp/bindings/lib/buffer.h"
#include "mojo/public/cpp/bindings/lib/validation_context.h"
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-private-field"
#elif defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable:4056)
#pragma warning(disable:4065)
#pragma warning(disable:4756)
#endif
namespace chrome {
namespace mojom {
namespace internal {
class OfflinePageAutoFetcher_TrySchedule_Params_Data {
public:
class BufferWriter {
public:
BufferWriter() = default;
void Allocate(mojo::internal::Buffer* serialization_buffer) {
serialization_buffer_ = serialization_buffer;
index_ = serialization_buffer_->Allocate(sizeof(OfflinePageAutoFetcher_TrySchedule_Params_Data));
new (data()) OfflinePageAutoFetcher_TrySchedule_Params_Data();
}
bool is_null() const { return !serialization_buffer_; }
OfflinePageAutoFetcher_TrySchedule_Params_Data* data() {
DCHECK(!is_null());
return serialization_buffer_->Get<OfflinePageAutoFetcher_TrySchedule_Params_Data>(index_);
}
OfflinePageAutoFetcher_TrySchedule_Params_Data* operator->() { return data(); }
private:
mojo::internal::Buffer* serialization_buffer_ = nullptr;
size_t index_ = 0;
DISALLOW_COPY_AND_ASSIGN(BufferWriter);
};
static bool Validate(const void* data,
mojo::internal::ValidationContext* validation_context);
mojo::internal::StructHeader header_;
uint8_t user_requested : 1;
uint8_t padfinal_[7];
private:
OfflinePageAutoFetcher_TrySchedule_Params_Data();
~OfflinePageAutoFetcher_TrySchedule_Params_Data() = delete;
};
static_assert(sizeof(OfflinePageAutoFetcher_TrySchedule_Params_Data) == 16,
"Bad sizeof(OfflinePageAutoFetcher_TrySchedule_Params_Data)");
class OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data {
public:
class BufferWriter {
public:
BufferWriter() = default;
void Allocate(mojo::internal::Buffer* serialization_buffer) {
serialization_buffer_ = serialization_buffer;
index_ = serialization_buffer_->Allocate(sizeof(OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data));
new (data()) OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data();
}
bool is_null() const { return !serialization_buffer_; }
OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data* data() {
DCHECK(!is_null());
return serialization_buffer_->Get<OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data>(index_);
}
OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data* operator->() { return data(); }
private:
mojo::internal::Buffer* serialization_buffer_ = nullptr;
size_t index_ = 0;
DISALLOW_COPY_AND_ASSIGN(BufferWriter);
};
static bool Validate(const void* data,
mojo::internal::ValidationContext* validation_context);
mojo::internal::StructHeader header_;
int32_t out;
uint8_t padfinal_[4];
private:
OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data();
~OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data() = delete;
};
static_assert(sizeof(OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data) == 16,
"Bad sizeof(OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data)");
class OfflinePageAutoFetcher_CancelSchedule_Params_Data {
public:
class BufferWriter {
public:
BufferWriter() = default;
void Allocate(mojo::internal::Buffer* serialization_buffer) {
serialization_buffer_ = serialization_buffer;
index_ = serialization_buffer_->Allocate(sizeof(OfflinePageAutoFetcher_CancelSchedule_Params_Data));
new (data()) OfflinePageAutoFetcher_CancelSchedule_Params_Data();
}
bool is_null() const { return !serialization_buffer_; }
OfflinePageAutoFetcher_CancelSchedule_Params_Data* data() {
DCHECK(!is_null());
return serialization_buffer_->Get<OfflinePageAutoFetcher_CancelSchedule_Params_Data>(index_);
}
OfflinePageAutoFetcher_CancelSchedule_Params_Data* operator->() { return data(); }
private:
mojo::internal::Buffer* serialization_buffer_ = nullptr;
size_t index_ = 0;
DISALLOW_COPY_AND_ASSIGN(BufferWriter);
};
static bool Validate(const void* data,
mojo::internal::ValidationContext* validation_context);
mojo::internal::StructHeader header_;
private:
OfflinePageAutoFetcher_CancelSchedule_Params_Data();
~OfflinePageAutoFetcher_CancelSchedule_Params_Data() = delete;
};
static_assert(sizeof(OfflinePageAutoFetcher_CancelSchedule_Params_Data) == 8,
"Bad sizeof(OfflinePageAutoFetcher_CancelSchedule_Params_Data)");
} // namespace internal
class OfflinePageAutoFetcher_TrySchedule_ParamsDataView {
public:
OfflinePageAutoFetcher_TrySchedule_ParamsDataView() {}
OfflinePageAutoFetcher_TrySchedule_ParamsDataView(
internal::OfflinePageAutoFetcher_TrySchedule_Params_Data* data,
mojo::internal::SerializationContext* context)
: data_(data) {}
bool is_null() const { return !data_; }
bool user_requested() const {
return data_->user_requested;
}
private:
internal::OfflinePageAutoFetcher_TrySchedule_Params_Data* data_ = nullptr;
};
class OfflinePageAutoFetcher_TrySchedule_ResponseParamsDataView {
public:
OfflinePageAutoFetcher_TrySchedule_ResponseParamsDataView() {}
OfflinePageAutoFetcher_TrySchedule_ResponseParamsDataView(
internal::OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data* data,
mojo::internal::SerializationContext* context)
: data_(data) {}
bool is_null() const { return !data_; }
template <typename UserType>
WARN_UNUSED_RESULT bool ReadOut(UserType* output) const {
auto data_value = data_->out;
return mojo::internal::Deserialize<::chrome::mojom::OfflinePageAutoFetcherScheduleResult>(
data_value, output);
}
OfflinePageAutoFetcherScheduleResult out() const {
return static_cast<OfflinePageAutoFetcherScheduleResult>(data_->out);
}
private:
internal::OfflinePageAutoFetcher_TrySchedule_ResponseParams_Data* data_ = nullptr;
};
class OfflinePageAutoFetcher_CancelSchedule_ParamsDataView {
public:
OfflinePageAutoFetcher_CancelSchedule_ParamsDataView() {}
OfflinePageAutoFetcher_CancelSchedule_ParamsDataView(
internal::OfflinePageAutoFetcher_CancelSchedule_Params_Data* data,
mojo::internal::SerializationContext* context)
: data_(data) {}
bool is_null() const { return !data_; }
private:
internal::OfflinePageAutoFetcher_CancelSchedule_Params_Data* data_ = nullptr;
};
} // namespace mojom
} // namespace chrome
#if defined(__clang__)
#pragma clang diagnostic pop
#elif defined(_MSC_VER)
#pragma warning(pop)
#endif
#endif // CHROME_COMMON_OFFLINE_PAGE_AUTO_FETCHER_MOJOM_PARAMS_DATA_H_ |
5161375c34fadc6907f5bae4c8c315a87f92b04b | 59eafae3bc4d13b9844c47d2e12aaa2b04fb6da0 | /AtCoder/ABC158/C.cpp | e73874f5a5a7ac1483c0e4aa745b358b20c43e6f | [] | no_license | pes-magic/procon | 004d7cd877e1cb56fea8d4b8b6cc8ba564a93a29 | 7afd1564b9228144d53920cc8e6a91012144b530 | refs/heads/master | 2023-08-31T17:29:06.829263 | 2023-08-25T12:32:27 | 2023-08-25T12:32:27 | 228,394,327 | 3 | 0 | null | 2023-08-24T11:48:04 | 2019-12-16T13:33:20 | Jupyter Notebook | UTF-8 | C++ | false | false | 314 | cpp | C.cpp | #include <iostream>
using namespace std;
int solve(int A, int B){
for(int i=1;i<=20*B;i++){
int a = int(0.08*i);
int b = int(0.1*i);
if(a == A && b == B) return i;
}
return -1;
}
int main(){
int A, B;
while(cin >> A >> B){
cout << solve(A, B) << endl;
}
} |
31a78eb6c9c591fa4aa49889cb663cb31ce8765a | 5e2e27daacfddfe119015736fcc6e9a864d66c49 | /GameEngine/Graphics/Cube.cpp | c0778e02b286b7347646afa06c4b9a1185462784 | [] | no_license | mdubovoy/Animation_System | 17ddc22740962209e7edbd8ea85bec108499f3e2 | b356d0ea6812e0548336bc4813662463e786de93 | refs/heads/master | 2021-01-22T11:41:13.637727 | 2014-09-22T14:01:20 | 2014-09-22T14:01:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,532 | cpp | Cube.cpp | #include "OpenGLWrapper.h"
#include "Cube.h"
#include "MathEngine.h"
#include "Camera.h"
#include "File.h"
#include "GraphicsObjectFileHdr.h"
#include "TextureManager.h"
#include "TextureMap.h"
#define CREATE_CUBE_DATA 1 // 1 - creates file, 0 - uses file
#define COLLISION_DEMO 0
void Cube::loadTexture(void)
{
// ------ declare file handle -----------------
FileHandle fh;
FileError ferror;
#if CREATE_CUBE_DATA
//----------- WRITE ------------------------------------------
ferror = File::open(fh, "cube.cdm", FILE_WRITE );
assert( ferror == FILE_SUCCESS );
// instantiate File Header on the stack
// gObjFileHdr graphicsFileHdr;
// set object name - _TRUnCATE PARAM makes sure it's always 0 terminated (secure string copy)
strncpy_s(this->graphicsFileHdr.objName, OBJECT_NAME_SIZE, "cube", _TRUNCATE);
// set texture params
this->graphicsFileHdr.textData[0].target = GL_TEXTURE_2D;
this->graphicsFileHdr.textData[0].minFilter = GL_LINEAR;
this->graphicsFileHdr.textData[0].magFilter = GL_LINEAR;
this->graphicsFileHdr.textData[0].wrapMode = GL_CLAMP_TO_EDGE;
strncpy_s(this->graphicsFileHdr.textData[0].textName, TEXTURE_NAME_SIZE, "cube1.tga", _TRUNCATE);
this->graphicsFileHdr.textData[1].target = GL_TEXTURE_2D;
this->graphicsFileHdr.textData[1].minFilter = GL_LINEAR;
this->graphicsFileHdr.textData[1].magFilter = GL_LINEAR;
this->graphicsFileHdr.textData[1].wrapMode = GL_CLAMP_TO_EDGE;
strncpy_s(this->graphicsFileHdr.textData[1].textName, TEXTURE_NAME_SIZE, "earth.tga", _TRUNCATE);
// write the data
ferror = File::write( fh, &this->graphicsFileHdr, sizeof(gObjFileHdr) );
assert( ferror == FILE_SUCCESS );
// close for now
ferror = File::close( fh );
assert( ferror == FILE_SUCCESS );
#else
ferror = File::open(fh, "cube.cdm", FILE_READ );
assert( ferror == FILE_SUCCESS );
// we'll read file data into this object, and use it in our call to load the texture
// gObjFileHdr graphicsFileHdr;
// Read the header
ferror = File::read( fh, &this->graphicsFileHdr, sizeof(gObjFileHdr) );
assert( ferror == FILE_SUCCESS );
// close
ferror = File::close( fh );
assert( ferror == FILE_SUCCESS );
#endif
// install the texture
this->textureID[0] = TextureManager::addTexture(this->graphicsFileHdr.textData[0]);
this->textureID[1] = TextureManager::addTexture(this->graphicsFileHdr.textData[1]);
}
void Cube::createVAO(void)
{
struct MyVertex_stride
{
float x;
float y;
float z;
float s;
float t;
float nx;
float ny;
float nz;
};
struct MyTriList
{ // short is ~64K, we only have a list of 36 vertices, OK as long as it's < 64K
unsigned short v1;
unsigned short v2;
unsigned short v3;
};
#if CREATE_CUBE_DATA
// 1 buffer for index data - 6 faces to cube, each with 2 triangles
MyTriList tlist[12];
// top 1
tlist[0].v1 = 0;
tlist[0].v2 = 1;
tlist[0].v3 = 2;
// top 2
tlist[1].v1 = 3;
tlist[1].v2 = 4;
tlist[1].v3 = 5;
// bottom 1
tlist[2].v1 = 6;
tlist[2].v2 = 7;
tlist[2].v3 = 8;
// bottom 2
tlist[3].v1 = 9;
tlist[3].v2 = 10;
tlist[3].v3 = 11;
// left 1
tlist[4].v1 = 12;
tlist[4].v2 = 13;
tlist[4].v3 = 14;
// left 2
tlist[5].v1 = 15;
tlist[5].v2 = 16;
tlist[5].v3 = 17;
// right 1
tlist[6].v1 = 18;
tlist[6].v2 = 19;
tlist[6].v3 = 20;
// right 2
tlist[7].v1 = 21;
tlist[7].v2 = 22;
tlist[7].v3 = 23;
// front 1
tlist[8].v1 = 24;
tlist[8].v2 = 25;
tlist[8].v3 = 26;
// front 2
tlist[9].v1 = 27;
tlist[9].v2 = 28;
tlist[9].v3 = 29;
// back 1
tlist[10].v1 = 30;
tlist[10].v2 = 31;
tlist[10].v3 = 32;
// back 2
tlist[11].v1 = 33;
tlist[11].v2 = 34;
tlist[11].v3 = 35;
// 1 buffer for stride
MyVertex_stride cVerts[36];
#if COLLISION_DEMO
this->radius = 0.5f;
#else
this->radius = .15f;
#endif
// top 1,1,1
cVerts[0].x = radius;
cVerts[0].y = radius;
cVerts[0].z = radius;
cVerts[0].s = radius;
cVerts[0].t = radius;
cVerts[0].nx = 0;
cVerts[0].ny = radius;
cVerts[0].nz = 0;
this->topNorm = Vect(cVerts[0].nx, cVerts[0].ny, cVerts[0].nz);
//1,1,-1 FarTopRight
cVerts[1].x = radius;
cVerts[1].y = radius;
cVerts[1].z = -radius;
cVerts[1].s = radius;
cVerts[1].t = 0;
cVerts[1].nx = 0;
cVerts[1].ny = radius;
cVerts[1].nz = 0;
this->farTopRight = Vect(cVerts[1].x, cVerts[1].y, cVerts[1].z);
//-1,1,-1
cVerts[2].x = -radius;
cVerts[2].y = radius;
cVerts[2].z = -radius;
cVerts[2].s = 0;
cVerts[2].t = 0;
cVerts[2].nx = 0;
cVerts[2].ny = radius;
cVerts[2].nz = 0;
//1,1,1
cVerts[3].x = radius;
cVerts[3].y = radius;
cVerts[3].z = radius;
cVerts[3].s = radius;
cVerts[3].t = radius;
cVerts[3].nx = 0;
cVerts[3].ny = radius;
cVerts[3].nz = 0;
//-1,1,-1
cVerts[4].x = -radius;
cVerts[4].y = radius;
cVerts[4].z = -radius;
cVerts[4].s = 0;
cVerts[4].t = 0;
cVerts[4].nx = 0;
cVerts[4].ny = radius;
cVerts[4].nz = 0;
//-1,1,1
cVerts[5].x = -radius;
cVerts[5].y = radius;
cVerts[5].z = radius;
cVerts[5].s = 0;
cVerts[5].t = radius;
cVerts[5].nx = 0;
cVerts[5].ny = radius;
cVerts[5].nz = 0;
// bottom -1,-1,-1
cVerts[6].x = -radius;
cVerts[6].y = -radius;
cVerts[6].z = -radius;
cVerts[6].s = 0;
cVerts[6].t = 0;
cVerts[6].nx = 0;
cVerts[6].ny = -radius;
cVerts[6].nz = 0;
this->bottomNorm = Vect(cVerts[6].nx, cVerts[6].ny, cVerts[6].nz);
// 1, -1, -1
cVerts[7].x = radius;
cVerts[7].y = -radius;
cVerts[7].z = -radius;
cVerts[7].s = radius;
cVerts[7].t = 0;
cVerts[7].nx = 0;
cVerts[7].ny = -radius;
cVerts[7].nz = 0;
// 1, -1, 1
cVerts[8].x = radius;
cVerts[8].y = -radius;
cVerts[8].z = radius;
cVerts[8].s = radius;
cVerts[8].t = radius;
cVerts[8].nx = 0;
cVerts[8].ny = -radius;
cVerts[8].nz = 0;
// -1, -1, 1
cVerts[9].x = -radius;
cVerts[9].y = -radius;
cVerts[9].z = radius;
cVerts[9].s = 0;
cVerts[9].t = radius;
cVerts[9].nx = 0;
cVerts[9].ny = -radius;
cVerts[9].nz = 0;
this->nearBottomLeft = Vect(cVerts[9].x, cVerts[9].y, cVerts[9].z);
// -1, -1, -1
cVerts[10].x = -radius;
cVerts[10].y = -radius;
cVerts[10].z = -radius;
cVerts[10].s = 0;
cVerts[10].t = 0;
cVerts[10].nx = 0;
cVerts[10].ny = -radius;
cVerts[10].nz = 0;
// 1, -1, 1
cVerts[11].x = radius;
cVerts[11].y = -radius;
cVerts[11].z = radius;
cVerts[11].s = radius;
cVerts[11].t = radius;
cVerts[11].nx = 0;
cVerts[11].ny = -radius;
cVerts[11].nz = 0;
// left
cVerts[12].x = -radius;
cVerts[12].y = radius;
cVerts[12].z = radius;
cVerts[12].s = radius;
cVerts[12].t = radius;
cVerts[12].nx = -radius;
cVerts[12].ny = 0;
cVerts[12].nz = 0;
this->leftNorm = Vect(cVerts[12].nx, cVerts[12].ny, cVerts[12].nz);
cVerts[13].x = -radius;
cVerts[13].y = radius;
cVerts[13].z = -radius;
cVerts[13].s = radius;
cVerts[13].t = 0;
cVerts[13].nx = -radius;
cVerts[13].ny = 0;
cVerts[13].nz = 0;
cVerts[14].x = -radius;
cVerts[14].y = -radius;
cVerts[14].z = -radius;
cVerts[14].s = 0;
cVerts[14].t = 0;
cVerts[14].nx = -radius;
cVerts[14].ny = 0;
cVerts[14].nz = 0;
cVerts[15].x = -radius;
cVerts[15].y = radius;
cVerts[15].z = radius;
cVerts[15].s = radius;
cVerts[15].t = radius;
cVerts[15].nx = -radius;
cVerts[15].ny = 0;
cVerts[15].nz = 0;
cVerts[16].x = -radius;
cVerts[16].y = -radius;
cVerts[16].z = -radius;
cVerts[16].s = 0;
cVerts[16].t = 0;
cVerts[16].nx = -radius;
cVerts[16].ny = 0;
cVerts[16].nz = 0;
cVerts[17].x = -radius;
cVerts[17].y = -radius;
cVerts[17].z = radius;
cVerts[17].s = 0;
cVerts[17].t = radius;
cVerts[17].nx = -radius;
cVerts[17].ny = 0;
cVerts[17].nz = 0;
// right
cVerts[18].x = radius;
cVerts[18].y = -radius;
cVerts[18].z = -radius;
cVerts[18].s = 0;
cVerts[18].t = 0;
cVerts[18].nx = radius;
cVerts[18].ny = 0;
cVerts[18].nz = 0;
this->rightNorm = Vect(cVerts[18].nx, cVerts[18].ny, cVerts[18].nz);
cVerts[19].x = radius;
cVerts[19].y = radius;
cVerts[19].z = -radius;
cVerts[19].s = radius;
cVerts[19].t = 0;
cVerts[19].nx = radius;
cVerts[19].ny = 0;
cVerts[19].nz = 0;
cVerts[20].x = radius;
cVerts[20].y = radius;
cVerts[20].z = radius;
cVerts[20].s = radius;
cVerts[20].t = radius;
cVerts[20].nx = radius;
cVerts[20].ny = 0;
cVerts[20].nz = 0;
cVerts[21].x = radius;
cVerts[21].y = radius;
cVerts[21].z = radius;
cVerts[21].s = radius;
cVerts[21].t = radius;
cVerts[21].nx = radius;
cVerts[21].ny = 0;
cVerts[21].nz = 0;
cVerts[22].x = radius;
cVerts[22].y = -radius;
cVerts[22].z = radius;
cVerts[22].s = 0;
cVerts[22].t = radius;
cVerts[22].nx = radius;
cVerts[22].ny = 0;
cVerts[22].nz = 0;
cVerts[23].x = radius;
cVerts[23].y = -radius;
cVerts[23].z = -radius;
cVerts[23].s = 0;
cVerts[23].t = 0;
cVerts[23].nx = radius;
cVerts[23].ny = 0;
cVerts[23].nz = 0;
// front 1, -1, 1
cVerts[24].x = radius;
cVerts[24].y = -radius;
cVerts[24].z = radius;
cVerts[24].s = radius;
cVerts[24].t = 0;
cVerts[24].nx = 0;
cVerts[24].ny = 0;
cVerts[24].nz = radius;
this->frontNorm = Vect(cVerts[24].nx, cVerts[24].ny, cVerts[24].nz);
this->nearBottomRight = Vect(cVerts[24].x, cVerts[24].y, cVerts[24].z);
// 1, 1, 1
cVerts[25].x = radius;
cVerts[25].y = radius;
cVerts[25].z = radius;
cVerts[25].s = radius;
cVerts[25].t = radius;
cVerts[25].nx = 0;
cVerts[25].ny = 0;
cVerts[25].nz = radius;
this->nearTopRight = Vect(cVerts[25].x, cVerts[25].y, cVerts[25].z);
// -1, 1, 1
cVerts[26].x = -radius;
cVerts[26].y = radius;
cVerts[26].z = radius;
cVerts[26].s = 0;
cVerts[26].t = radius;
cVerts[26].nx = 0;
cVerts[26].ny = 0;
cVerts[26].nz = radius;
this->nearTopLeft = Vect(cVerts[26].x, cVerts[26].y, cVerts[26].z);
cVerts[27].x = -radius;
cVerts[27].y = radius;
cVerts[27].z = radius;
cVerts[27].s = 0;
cVerts[27].t = radius;
cVerts[27].nx = 0;
cVerts[27].ny = 0;
cVerts[27].nz = radius;
cVerts[28].x = -radius;
cVerts[28].y = -radius;
cVerts[28].z = radius;
cVerts[28].s = 0;
cVerts[28].t = 0;
cVerts[28].nx = 0;
cVerts[28].ny = 0;
cVerts[28].nz = radius;
cVerts[29].x = radius;
cVerts[29].y = -radius;
cVerts[29].z = radius;
cVerts[29].s = radius;
cVerts[29].t = 0;
cVerts[29].nx = 0;
cVerts[29].ny = 0;
cVerts[29].nz = radius;
// back 1, -1, -1
cVerts[30].x = radius;
cVerts[30].y = -radius;
cVerts[30].z = -radius;
cVerts[30].s = radius;
cVerts[30].t = 0;
cVerts[30].nx = 0;
cVerts[30].ny = 0;
cVerts[30].nz = -radius;
this->backNorm = Vect(cVerts[30].nx, cVerts[30].ny, cVerts[30].nz);
this->farBottomRight = Vect(cVerts[30].x, cVerts[30].y, cVerts[30].z);
// -1, -1, -1
cVerts[31].x = -radius;
cVerts[31].y = -radius;
cVerts[31].z = -radius;
cVerts[31].s = 0;
cVerts[31].t = 0;
cVerts[31].nx = 0;
cVerts[31].ny = 0;
cVerts[31].nz = -radius;
this->farBottomLeft = Vect(cVerts[31].x, cVerts[31].y, cVerts[31].z);
// -1, 1, -1
cVerts[32].x = -radius;
cVerts[32].y = radius;
cVerts[32].z = -radius;
cVerts[32].s = 0;
cVerts[32].t = radius;
cVerts[32].nx = 0;
cVerts[32].ny = 0;
cVerts[32].nz = -radius;
this->farTopLeft = Vect(cVerts[32].x, cVerts[32].y, cVerts[32].z);
cVerts[33].x = -radius;
cVerts[33].y = radius;
cVerts[33].z = -radius;
cVerts[33].s = 0;
cVerts[33].t = radius;
cVerts[33].nx = 0;
cVerts[33].ny = 0;
cVerts[33].nz = -radius;
cVerts[34].x = radius;
cVerts[34].y = radius;
cVerts[34].z = -radius;
cVerts[34].s = radius;
cVerts[34].t = radius;
cVerts[34].nx = 0;
cVerts[34].ny = 0;
cVerts[34].nz = -radius;
cVerts[35].x = radius;
cVerts[35].y = -radius;
cVerts[35].z = -radius;
cVerts[35].s = radius;
cVerts[35].t = 0;
cVerts[35].nx = 0;
cVerts[35].ny = 0;
cVerts[35].nz = -radius;
// ----------------------Write the data to a file------------------------
FileHandle fh;
FileError ferror;
// 1) Get the existing GraphicsFileHeader from the file
// Since we didn't wrap the ReOpen functionality,
// I need to read, close then write again
ferror = File::open(fh, "cube.cdm", FILE_READ );
assert( ferror == FILE_SUCCESS );
// create object to which file header data will be read
// gObjFileHdr graphicsFileHdr;
// Read the header
ferror = File::read( fh, &this->graphicsFileHdr, sizeof(gObjFileHdr) );
assert( ferror == FILE_SUCCESS );
// close
ferror = File::close( fh );
assert( ferror == FILE_SUCCESS );
// 2) Write the data (Header, Buffers) to the file
// create the file, write the header (Take 1)
ferror = File::open(fh, "cube.cdm", FILE_READ_WRITE );
assert( ferror == FILE_SUCCESS );
// write texture data that we have to this point - now my file pointer will be where all vertex data will go
ferror = File::write( fh, &this->graphicsFileHdr, sizeof(gObjFileHdr) );
assert( ferror == FILE_SUCCESS );
// Now that we created vertex/index buffers and know their info, update the header: numVerts, VertBufferOffset
// ****to be written to file header in Take 2****
this->graphicsFileHdr.numVerts = 36;
ferror = File::tell( fh, this->graphicsFileHdr.vertBufferOffset );
assert( ferror == FILE_SUCCESS );
// write the vertex data to the file contents (NOT THE HEADER)
ferror = File::write( fh, cVerts, 36 * sizeof(MyVertex_stride) );
assert( ferror == FILE_SUCCESS );
// update the header: numTriList, triListBufferOffset
// ****to be written to file header in Take 2****
this->graphicsFileHdr.numTriList = 12;
ferror = File::tell( fh, this->graphicsFileHdr.triListBufferOffset );
assert( ferror == FILE_SUCCESS );
// write the triListBuffer data to the file contents (NOT THE HEADER)
ferror = File::write( fh, tlist, 12 * sizeof(MyTriList) );
assert( ferror == FILE_SUCCESS );
// update the header: cubeRadius - to be written to file header in Take2
this->graphicsFileHdr.cubeRadius = 1.25f;
// write the header (Take 2) now with updated data for Vert buffer and Index buffer
// reset to the beginning of file
ferror = File::seek( fh, FILE_SEEK_BEGIN, 0 );
assert( ferror == FILE_SUCCESS );
// write the buffer - with update data
ferror = File::write( fh, &this->graphicsFileHdr, sizeof(gObjFileHdr) );
assert( ferror == FILE_SUCCESS );
// All done
ferror = File::close( fh );
assert( ferror == FILE_SUCCESS );
#else
// read number of Verts/triangles and their offsets from file to become data driven!!!
FileHandle fh;
FileError ferror;
ferror = File::open(fh, "cube.cdm", FILE_READ );
assert( ferror == FILE_SUCCESS );
// read the data into this object, and get the data we need from it to create vertex/index buffers
// gObjFileHdr gFileHdr;
// Read the header
ferror = File::read( fh, &this->graphicsFileHdr, sizeof(gObjFileHdr) );
assert( ferror == FILE_SUCCESS );
// create the vertex buffer
MyVertex_stride *cVerts = (MyVertex_stride *)malloc( this->graphicsFileHdr.numVerts * sizeof(MyVertex_stride) );
// load the verts
// seek to the location using the offset in the file header
ferror = File::seek( fh, FILE_SEEK_BEGIN, this->graphicsFileHdr.vertBufferOffset );
assert( ferror == FILE_SUCCESS );
// read it into cVerts, which we just allocated
ferror = File::read( fh, cVerts, this->graphicsFileHdr.numVerts * sizeof(MyVertex_stride) );
assert( ferror == FILE_SUCCESS );
// create the triLists buffer
MyTriList *tlist = (MyTriList*) malloc( this->graphicsFileHdr.numTriList * sizeof(MyTriList) );
// load the triList
// seek to the location using the offset in the file header
ferror = File::seek( fh, FILE_SEEK_BEGIN, this->graphicsFileHdr.triListBufferOffset );
assert( ferror == FILE_SUCCESS );
// read it into tlist, which we just allocated
ferror = File::read( fh, tlist, this->graphicsFileHdr.numTriList * sizeof(MyTriList) );
assert( ferror == FILE_SUCCESS );
// close
ferror = File::close( fh );
assert( ferror == FILE_SUCCESS );
#endif
/* Allocate and assign a Vertex Array Object to our handle */
glGenVertexArrays(1, &this->vao);
/* Bind our Vertex Array Object as the current used object */
glBindVertexArray(this->vao);
// now we have 1 buffer for stride, and one for index data
GLuint vbo[2];
// allocate and assign two VBO to my handle
glGenBuffers(2, vbo);
// Load the combined data: ---------------------------------------------------------
// Bind our first VBO as being the active buffer and storing vertex attributes (coordinates)
glBindBuffer(GL_ARRAY_BUFFER, vbo[0]);
// Copy the vertex data to our buffer
// glBufferData(type, size in bytes, data, usage) - copy the contents of data
glBufferData(GL_ARRAY_BUFFER, sizeof(MyVertex_stride) * 36, cVerts, GL_STATIC_DRAW);
// VERTEX data: ---------------------------------------------------------
// Specifies the index of the generic vertex attribute to be enabled - GLT_ATTRIBUTE_VERTEX = 0 in ShaderManager.h
glEnableVertexAttribArray(0);
// Specify that our coordinate data is going into attribute index 0, and contains 3 floats per vertex
// ( GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid * pointer);
// first calculate offset into first vert coofdinate as & of x - beginning & of buffer
void *offsetVert = (void *) ( (unsigned int)&cVerts[0].x - (unsigned int)&cVerts[0].x );
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, sizeof(MyVertex_stride), offsetVert);
// Texture data: ---------------------------------------------------------
// Specifies the index of the generic vertex attribute to be enabled - GLT_ATTRIBUTE_TEXTURE0 = 3 in ShaderManager.h
glEnableVertexAttribArray(3);
// Specify that our coordinate data is going into attribute index 3, and contains 2 floats per vertex
// ( GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid * pointer);
// offset into first Tex coordinate = & of s - beggining & of buffer
void *offsetTex = (void *) ( (unsigned int)&cVerts[0].s - (unsigned int)&cVerts[0].x );
glVertexAttribPointer(3, 2, GL_FLOAT, GL_FALSE, sizeof(MyVertex_stride), offsetTex);
// Normal data: ---------------------------------------------------------
// Specifies the index of the generic vertex attribute to be enabled - GLT_ATTRIBUTE_NORMAL = 2 in ShaderManager.h
glEnableVertexAttribArray(2);
// Specify that our coordinate data is going into attribute index 3, and contains 2 floats per vertex
// ( GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid * pointer);
// offset into first Norm coordinate = & of nx - beggining & of buffer
void *offsetNorm = (void *) ( (unsigned int)&cVerts[0].nx - (unsigned int)&cVerts[0].x );
glVertexAttribPointer(2, 3, GL_FLOAT, GL_FALSE, sizeof(MyVertex_stride), offsetNorm);
// Load the index data: ---------------------------------------------------------
// Bind our 2nd VBO as being the active buffer and storing index )
// notice the type - GL_ELEMENT_ARRAY_BUFFER - it's a lookup into GL_ARRAY_BUFFER
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, vbo[1]);
// Copy the index data to our buffer
// glBufferData(type, size in bytes, data, usage)
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(MyTriList)*12, tlist, GL_STATIC_DRAW);
};
|
168671887b18558ee093e2002922c65b7830479d | 9e2ac192df50dd211f214e0c9d40f2d8f0afca29 | /src/Logic/Game.h | 9236ee2bd7d576756c7c1d0205877638bc7720ca | [] | no_license | pwl-salach/ZCpp_MissionImpossible | 77e4ab327cffa0d9b6388956330f81202958135e | 960d35872f9933b7126bd8bd166bec520a02a844 | refs/heads/master | 2021-04-28T13:25:00.533073 | 2018-06-19T22:02:23 | 2018-06-19T22:02:23 | 122,104,154 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,275 | h | Game.h | //
// Created by Salach on 19.02.2018.
//
/*!
* @file Game.h
* @brief Deklaracja klasy Game
*/
#ifndef ZCPP_MISSIONIMPOSSIBLE_GAME_H
#define ZCPP_MISSIONIMPOSSIBLE_GAME_H
#include <thread>
#include "../GUI/StartWindow.h"
#include "Environment.h"
#include "Headquarters.h"
/*!
* @brief Gลowna klasa w grze zarzฤ
dzajฤ
ca caลฤ
jej logikฤ
*/
class Game {
public:
/*!
* @brief Enum okreลlajฤ
cy stan rozgrywki
*/
enum State {
RUNNING = 0, /*!< gra w trakcie */
PAUSE = 1, /*!< gra wstrzymana */
VICTORY = 3, /*!< gra zakonczona zwyciฤstwem*/
LOSE = 4 /*!< gra zakonczona poraลผkฤ
*/
};
/*!
* @brief Wykorzystywany konstruktor
* @param pSettings ustawienia rozgrywki
* @param pAgents wektor ze wskaลบnikami na agentรณw
*/
Game(Settings *pSettings, std::vector<Agent *> pAgents);
/*!
* @brief Rozpoczyna rozgrywkฤ, tworzฤ
c wฤ
tek i rozpoczynajฤ
c planowanie poszukiwaล
*/
void start();
/*!
* @brief Ponownie startuje wฤ
tek z logikฤ
rozgrywki
*/
void resume();
/*!
* @brief Pฤtla z logikฤ
rozgrywki
*/
void loop();
/*!
* @brief Metoda w ktรณrej odbywa siฤ aktualizacja stanรณw wszystkich obiektรณw
*/
void update();
/*!
* @brief Zakoลczenie rozgrywki wraz z usuniฤciem wskaลบnikรณw do obiektรณw zarzฤ
dzanych przez ten obiekt
*/
void quit();
/*!
* @brief Wstrzymuje gลรณwny wฤ
tek
*/
void pause();
/*!
* @return status rozgrywki
*/
State getState() const;
/*!
* @return referencja do obiektu gracza
*/
Player &getPlayer();
/*!
* @return referencja do obiektu ลrodowiska
*/
Environment &getEnvironment();
/*!
* @return referencja do obiektu ustawieล
*/
Settings *getSettings() const;
/*!
* @return referencja do wektora wskลบnikรณw do graczy
*/
const std::vector<Agent *> &getAgents() const;
private:
State state;
Player player;
Settings *settings;
std::vector<Agent *> agents;
Environment environment;
Headquarters headquarters;
std::thread updateLoop;
uint8_t updatesPerSecond;
};
#endif //ZCPP_MISSIONIMPOSSIBLE_GAME_H
|
78e6459f56606a24586742743edbd483f7681d29 | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/dc/b4f40944e35e35/main.cpp | fb6dfdea42e9407fea358458b315e9fd1491b380 | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 739 | cpp | main.cpp | #include <iostream>
#include <algorithm>
#include <functional>
#include <vector>
using namespace std::placeholders;
using namespace std;
struct MyType {};
struct MyType2 {};
ostream& operator<<(ostream &os, const MyType &n)
{
cout << "MyType" << endl;
return os;
}
ostream& operator<<(ostream &os, const MyType2 &n)
{
cout << "MyType2" << endl;
return os;
}
int main()
{
std::vector<MyType> vec;
MyType mt;
vec.push_back(mt);
std::for_each(vec.begin(), vec.end(), [](const MyType &mt) {cout << mt;}); // this works
std::for_each(vec.begin(), vec.end(), std::bind(static_cast<ostream&(&)(ostream&, const MyType&)>(::operator<<), std::ref(std::cout), _1)); // this does nothing !
return 0;
}
|
3225e9c96ece503280317de58c65f365a00e587c | 84fb8960760e29c20d25597aa86213ae35b374fc | /Cellule.cpp | 6c0d7d32544443611f262bf25235c8d0340f549c | [] | no_license | teeyo/popmaze | c5e486d7c2f89292fe03f1b966903c20f8dbb896 | 1479e49e972d4c04485c99a325b11b3c16e65545 | refs/heads/master | 2021-01-20T09:56:53.227802 | 2017-05-04T21:07:51 | 2017-05-04T21:07:51 | 90,309,494 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 2,565 | cpp | Cellule.cpp | #include "Cellule.h"
//________________________________________
// constructeur par dรฉfaut
// on initialise les portes en "true" ( cela veut dire qu'elles sont fermรฉe )
// et le type initialisรฉ en 1 cela veut dire que la mรชme chose que la ligne de commentaire en haut
// toutes les portes fermรฉe ( c'est pas une sorte de rรฉpitition cela va nous servire par la suite dans l'affichage
// aussi l'attribut visitรฉe est en "false" donc toutes les cellules sont jamais visitรฉes
Cellule::Cellule():visitee(false),type(1),p_nord(true),p_sud(true),p_est(true),p_ouest(true){}
//________________________________________
// desctructeur
Cellule::~Cellule(){}
//________________________________________
// les getters et les setters
int Cellule::get_x() const{
return x;
}
//________________________________________
int Cellule::get_y() const{
return y;
}
//________________________________________
int Cellule::get_id() const{
return id;
}
//________________________________________
short Cellule::get_type() const{
return type;
}
//________________________________________
bool Cellule::get_visitee() const{
return visitee;
}
//________________________________________
bool Cellule::get_p_nord() const{
return p_nord;
}
//________________________________________
bool Cellule::get_p_sud() const{
return p_sud;
}
//________________________________________
bool Cellule::get_p_est() const{
return p_est;
}
//________________________________________
bool Cellule::get_p_ouest() const{
return p_ouest;
}
//________________________________________
void Cellule::set_x(int nx){
x = nx ;
}
//________________________________________
void Cellule::set_y(int ny){
y = ny ;
}
//________________________________________
void Cellule::set_id(int nid){
id = nid ;
}
//________________________________________
void Cellule::set_type(short ntype){
type = ntype;
}
//________________________________________
void Cellule::set_p_nord(bool np_nord){
p_nord = np_nord;
}
//________________________________________
void Cellule::set_p_sud(bool np_sud){
p_sud = np_sud;
}
//________________________________________
void Cellule::set_p_est(bool np_est){
p_est =np_est;
}
//________________________________________
void Cellule::set_p_ouest(bool np_ouest){
p_ouest = np_ouest;
}
//________________________________________
void Cellule::set_visitee(bool nvisitee){
visitee = nvisitee;
}
|
17473dcddf63472a21196114b83a4d9633b9cc35 | b02f404aa833b685997f8421a2c4bc31706da30b | /Leetcode/้ข่ฏ้ข/167.cpp | 885e049f27a49ede4b39d5bbd5e8e3b705b054a1 | [] | no_license | Super-long/Leetcode | a596fda29cb0d210048957c9e6798586486316f1 | d16d16a8e6076f37889c21f4c2c04ded7b915a85 | refs/heads/master | 2021-07-01T19:31:45.559894 | 2021-03-18T06:54:51 | 2021-03-18T06:54:51 | 226,631,026 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,070 | cpp | 167.cpp | // ไธคๆฐไนๅ II - ่พๅ
ฅๆๅบๆฐ็ป
#include <bits/stdc++.h>
using namespace std;
// https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted/solution/yi-zhang-tu-gao-su-ni-on-de-shuang-zhi-zhen-jie-fa/
// ่ฟ้ๅๆ้ๆณๆฌ่ดจ็ฑปไผผไบๆจๆฐ็ฉ้ต
// ไธ่ฌ่่จๆ็ดข็ฉบ้ด้ฝๆฏไธไธช้ ๅณไธ็ไธ่งๅฝข๏ผlhs <= rhs๏ผ๏ผๅฝ็ถ่ฟ้้ขๆฒกๆ็ญไบ
// ็ถๅ้็ไธคไธชๆ้็ๆจ็งปๅฏไปฅ้ไฝๆถ้ดๅคๆๅบฆ
// ่ฟ้้ขๆๅคง็ๆถ่ทๅฐฑๆฏ็ฅ้ไบๅๆ้ๆณ็ๆฌ่ดจ
class Solution {
public:
vector<int> twoSum(vector<int>& numbers, int target) {
vector<int> res;
int index1 = 0;
int index2 = numbers.size() - 1;
while(true){
int sum = numbers[index1] + numbers[index2];
if(sum < target){
index1++;
}else if(sum > target){
index2--;
}else {
break; // ไฟ่ฏๆ่งฃ
}
}
res.push_back(move(index1 + 1));
res.push_back(move(index2 + 1));
return res;
}
}; |
bbe940fd6282f0343d08a002a2648b4dab778699 | 89d71656f1ba411c081f7e26258b498b7f10aaa2 | /MathAlgorithm/3.7/Text_3_7_4.cpp | be520ff35831944f69e36e52e63dd8cf427951bc | [] | no_license | noblesseoblige6/Algorithms | 4b06d01b7ca015c5b2b28398ae3142f10a281048 | ae8d1085009e0cd98e805795b4cc31a4e2e161ac | refs/heads/master | 2023-08-29T09:22:47.419651 | 2023-08-02T06:50:05 | 2023-08-02T06:50:05 | 51,254,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 739 | cpp | Text_3_7_4.cpp | #include <iostream>
#include <algorithm>
#include <iterator>
#include <cmath>
#include <vector>
int main()
{
std::uint32_t n, s;
std::cin >> n >> s;
std::vector<std::int32_t> a(n+1);
std::copy_n(std::istream_iterator<std::int32_t>{std::cin}, n, a.begin()+1);
std::vector<std::vector<std::int32_t>> dp(n+1, std::vector<std::int32_t>(s+1, 0));
for (decltype(n) i = 1; i <= n; ++i)
for (decltype(n) j = 0; j <= s; ++j)
if (j >= a[i])
dp[i][j] = std::max(dp[i - 1][j-a[i]] + a[i], dp[i-1][j]);
else
dp[i][j] = dp[i-1][j];
if (dp[n][s] == s)
std::cout << "Yes" << std::endl;
else
std::cout << "No" << std::endl;
return 0;
} |
a92eb545c6f28aa999e7017e8e3403aeac26449d | 5acc13dd0db7a1ac7324ada2a19c18b794aadfe1 | /MyStr.cpp | e705f43cb0d4154386d44923b60c2d1064fc7d84 | [
"BSD-3-Clause"
] | permissive | josue-nsiama/MyLib | de159bd5d9b7fb6cd4940b962b8a405012bbfd8f | f399e839a9264dd1c155f1750e2fea0e67667c56 | refs/heads/master | 2021-05-18T14:23:23.361534 | 2020-04-01T15:09:57 | 2020-04-01T15:09:57 | 251,280,192 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 368 | cpp | MyStr.cpp | #include "MyStr.h"
String::MyStr(const char*__STR) {
len = strlen(__STR)+1;
STR = new char[len];
STR= __STR;
}
String String::operator=(const char*__STR) {
len = strlen(__STR) + 1;
STR = new char[len];
STR = __STR;
return STR;
}
std::ostream& operator<<(std::ostream& so, const String& a) {
so << a.STR;
return so;
}
String::MyStr(void) {
}
|
c000d123dc6e06e05af88c8b3c83cf5ab2704fe0 | 3edeb989d73634546fde869695eda0aefad5d396 | /Add_complex.cpp | fbf4de93eae83b917d3d204a3bd150ed941cc36a | [] | no_license | sriabhik/Oops | 531f2d98d7670c74e03b8df4b3b09a432db79467 | c92fcfb35695f4b39e4d4473d491258b619c0621 | refs/heads/master | 2023-06-10T01:35:52.167805 | 2021-06-30T07:18:04 | 2021-06-30T07:18:04 | 381,610,989 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 346 | cpp | Add_complex.cpp | #include<bits/stdc++.h>
using namespace std;
class complex{
int a ;
int b;
public:
complex(){}
complex(int val1 , int val3){
a = val1;b = val3;
}
friend complex sum(complex,complex){
}
friend void Display(){
}
};
int main(){
complex A;
complex A(12,32);
} |
183b86f046e560211b256ee262dbadda5c0d55bc | 9329fb1dc8d8534a940f1a0e34b2c8c208f4e959 | /ros_ws/src/graph_slam/src/create_map_node.cpp | 6574793550d02f130dfac157121b8fe39ac209cc | [] | no_license | pasqualecortese/pose-landmark-graph-slam | 428504ad915fb802c34764509daced99ffc023b3 | efe84492d7b7ec12f9188e8e42546329cd1a8647 | refs/heads/master | 2023-02-17T21:44:25.208824 | 2020-10-14T02:18:35 | 2020-10-14T02:18:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,595 | cpp | create_map_node.cpp |
#include <geometry_msgs/TransformStamped.h>
#include <pcl_conversions/pcl_conversions.h>
#include <graph_slam/create_map_node.h>
namespace graph_slam
{
CreateMapNode::CreateMapNode(
const std::string& in_odom_topic, const std::string& in_cloud_topic,
const std::string& out_cloud_topic, bool use_odom_as_correct_poses) :
use_odom_as_correct_poses_(use_odom_as_correct_poses)
{
ros::NodeHandle nh;
// Setup subscribers
odom_sub_.subscribe(nh, in_odom_topic, 5);
cloud_sub_.subscribe(nh, in_cloud_topic, 5);
sync_ = std::make_shared<
message_filters::TimeSynchronizer<nav_msgs::Odometry, sensor_msgs::PointCloud2>>(
odom_sub_, cloud_sub_, 5);
if (use_odom_as_correct_poses_)
{
sync_->registerCallback(
boost::bind(&CreateMapNode::CallbackCreateMapWithOdomPoses, this, _1, _2));
}
else
{
// TODO(deepak): Create Callback that uses optimized poses
}
// Setup publisher
map_cloud_pub_ = nh.advertise<sensor_msgs::PointCloud2>(out_cloud_topic, 5);
// Initialize map cloud
curr_map_cloud_ = boost::make_shared<pcl::PointCloud<pcl::PointXYZ>>();
tf_buffer_ = std::make_shared<tf2_ros::Buffer>();
tf_listener_ = std::make_shared<tf2_ros::TransformListener>(*tf_buffer_);
}
CreateMapNode::~CreateMapNode() = default;
void CreateMapNode::CallbackCreateMapWithOdomPoses(
const nav_msgs::OdometryConstPtr& odom_msg, const sensor_msgs::PointCloud2ConstPtr& cloud_msg)
{
// Get Point cloud from cloud_msg
pcl::PointCloud<pcl::PointXYZ>::Ptr curr_cloud =
boost::make_shared<pcl::PointCloud<pcl::PointXYZ>>();
pcl::fromROSMsg(*cloud_msg, *curr_cloud);
// Getting translation and rotation from odom to OAK-D
geometry_msgs::TransformStamped odom_to_oak_transform_stamped_msg;
try
{
odom_to_oak_transform_stamped_msg =
tf_buffer_->lookupTransform("odom", "OAK-D-right", ros::Time(cloud_msg->header.stamp));
}
catch (const tf2::TransformException& e)
{
std::cout << "Transform exception: " << e.what() << std::endl;
return;
}
tf2::Transform odom_to_oak_transform;
tf2::fromMsg(odom_to_oak_transform_stamped_msg.transform, odom_to_oak_transform);
tf2::Vector3 odom_to_oak_origin_tf2 = odom_to_oak_transform.getOrigin();
tf2::Quaternion odom_to_oak_quat_tf2 = odom_to_oak_transform.getRotation();
Eigen::Vector3f odom_to_oak_origin = {static_cast<float>(odom_to_oak_origin_tf2.getX()),
static_cast<float>(odom_to_oak_origin_tf2.getY()),
static_cast<float>(odom_to_oak_origin_tf2.getZ())};
Eigen::Quaternionf odom_to_oak_quat = {static_cast<float>(odom_to_oak_quat_tf2.getW()),
static_cast<float>(odom_to_oak_quat_tf2.getX()),
static_cast<float>(odom_to_oak_quat_tf2.getY()),
static_cast<float>(odom_to_oak_quat_tf2.getZ())};
// Transform current cloud into the odometry frame
pcl::transformPointCloud(*curr_cloud, *curr_cloud, odom_to_oak_origin, odom_to_oak_quat);
// Concatenate current cloud into the map cloud
*curr_map_cloud_ += *curr_cloud;
// Convert Point Cloud to ROS message
sensor_msgs::PointCloud2Ptr out_cloud_msg = boost::make_shared<sensor_msgs::PointCloud2>();
pcl::toROSMsg(*curr_map_cloud_, *out_cloud_msg);
out_cloud_msg->header.frame_id = odom_msg->header.frame_id;
out_cloud_msg->header.stamp = cloud_msg->header.stamp;
// Publish cloud
map_cloud_pub_.publish(out_cloud_msg);
}
} // namespace graph_slam
int main(int argc, char** argv)
{
ros::init(argc, argv, "create_map_node");
ros::NodeHandle pnh("~");
std::string in_odom_topic = "";
std::string in_cloud_topic = "";
std::string out_cloud_topic = "";
bool use_odom_as_correct_poses = true;
int bad_params = 0;
bad_params += !pnh.getParam("in_odom_topic", in_odom_topic);
bad_params += !pnh.getParam("in_cloud_topic", in_cloud_topic);
bad_params += !pnh.getParam("out_cloud_topic", out_cloud_topic);
bad_params += !pnh.getParam("use_odom_as_correct_poses", use_odom_as_correct_poses);
if (bad_params != 0)
{
std::cout << "One or more parameters are not set! Exiting." << std::endl;
return 1;
}
graph_slam::CreateMapNode cmn(
in_odom_topic, in_cloud_topic, out_cloud_topic, use_odom_as_correct_poses);
ros::spin();
return 0;
}
|
0caec2a9424b1825a6ed6463b76142a2b79d1c57 | 25f8154b8f03966e2dce56c466b3e2ccfce88d48 | /shared/include/hw/led.hpp | 112a3326f069409ed13c76566c62cadc9725f907 | [] | no_license | idubrov/garage-firmware | 8e7a29420c9a8d24b9b2f44746f7bdca1bbb6510 | d36f6bfbeb8605a1fda735b737ff73df1d922c6c | refs/heads/master | 2021-01-20T13:38:12.052104 | 2017-05-25T01:28:44 | 2017-05-25T01:28:44 | 90,509,781 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 863 | hpp | led.hpp | #ifndef __HW_LED_HPP
#define __HW_LED_HPP
#include "stm32_hal.h"
#include "core.hpp"
namespace hw {
namespace led {
template<uint32_t PortBase, uint16_t Pin, bool HighOn = true>
class led_t {
using port_ref = core::port_ref<PortBase>;
public:
static void initialize() {
off();
GPIO_InitTypeDef init = {0};
init.Pin = Pin;
init.Mode = GPIO_MODE_OUTPUT_PP;
init.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(port_ref(), &init);
}
inline static void on() {
::hw::core::toggle<HighOn>(port_ref(), Pin);
}
inline static void off() {
::hw::core::toggle<!HighOn>(port_ref(), Pin);
}
};
}
}
#endif /* __HW_LED_HPP */ |
2c376c86d9bbc506c949a33d6bf5d2e79759ded3 | 179d44748113f5d6504ee05f268d87aaf8ec9862 | /src/NodePopplerAsync.cc | 8cbdb26a723ac967b238ad51b0a808d6e89fe676 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT"
] | permissive | tpisto/pdf-fill-form | 27390572321616af396478cea7d302cbd0e5e297 | a6779ba18f1e5340b9df4f40cb93117e0bc80976 | refs/heads/master | 2023-01-21T20:27:14.779912 | 2023-01-05T09:54:14 | 2023-01-05T09:54:14 | 33,435,927 | 220 | 71 | MIT | 2023-01-05T09:54:15 | 2015-04-05T09:11:49 | C++ | UTF-8 | C++ | false | false | 1,718 | cc | NodePopplerAsync.cc | #include <nan.h>
#include <QtCore/QBuffer>
#include "NodePoppler.h"
using v8::Function;
using v8::Local;
using v8::Null;
using v8::Number;
using v8::Value;
using v8::Object;
using v8::String;
using v8::Array;
using namespace std;
class PdfWriteWorker : public Nan::AsyncWorker {
public:
PdfWriteWorker(Nan::Callback *callback, struct WriteFieldsParams params)
: Nan::AsyncWorker(callback), params(params) {}
~PdfWriteWorker() {}
// Executed inside the worker-thread.
// It is not safe to access V8, or V8 data structures
// here, so everything we need for input and output
// should go on `this`.
void Execute () {
try
{
buffer = writePdfFields(params);
}
catch (string error)
{
SetErrorMessage(error.c_str());
}
}
// Executed when the async work is complete
// this function will be run inside the main event loop
// so it is safe to use V8 again
void HandleOKCallback () {
Nan:: HandleScope scope;
Local<Value> argv[] = {
Nan::Null()
, Nan::CopyBuffer((char *)buffer->data().data(), buffer->size()).ToLocalChecked()
};
buffer->close();
delete buffer;
Nan::AsyncResource resource("pdf-fill-form:worker.HandleOKCallback");
callback->Call(2, argv, &resource);
}
private:
QBuffer *buffer;
WriteFieldsParams params;
};
// Asynchronous access to the `writePdfFields` function
NAN_METHOD(WriteAsync) {
WriteFieldsParams params = v8ParamsToCpp(info);
Nan::Callback *callback = new Nan::Callback(info[3].As<Function>());
PdfWriteWorker *writeWorker = new PdfWriteWorker(callback, params);
Nan::AsyncQueueWorker(writeWorker);
}
|
b96d70acb8610b8d831a3c02e0b757b318e85a25 | 5bd3eaf8c38d4d784b0cda4473bb0d774243c52a | /src/UI/TextUI/formater/ViewFormater.cpp | 4dc49c82b14b2b0e5fba8ab896312ab722c51dd5 | [] | no_license | michalPietraszko/Demo-Sensor-Network | 1d731cb6caf9b1114581b7b5f03031707fefb3c0 | c8011476aa12652182d073182fd8fa78cef1057b | refs/heads/master | 2022-12-05T18:37:35.521773 | 2020-07-29T17:03:42 | 2020-08-03T10:28:38 | 277,131,144 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,145 | cpp | ViewFormater.cpp | #include <BasicFormater.hpp>
#include <MenuViewFormater.hpp>
/* MenuViewFormater */
const std::vector<FormatGlyphs> MenuViewFormater::headline{FormatGlyphs::element,
FormatGlyphs::newLine,
FormatGlyphs::newLine};
const std::vector<FormatGlyphs> MenuViewFormater::cellName{FormatGlyphs::nextInList,
FormatGlyphs::element,
FormatGlyphs::newLine};
const std::vector<FormatGlyphs> MenuViewFormater::cellStatus{FormatGlyphs::tab,
FormatGlyphs::element,
FormatGlyphs::newLine,
FormatGlyphs::newLine};
/* BasicFormater */
const std::vector<FormatGlyphs> BasicFormater::any{FormatGlyphs::element, FormatGlyphs::newLine};
/**
* headline\n
* \\n
* 1. cellName\n
* \t cellStatus\n
* \\n
* 2. ...
*/ |
c09d13644808e72f451947c78e80f62f0b03c537 | 1b6b5f630696eb5ca848399a7cf8910ebc5d3fc2 | /skinnyleetcode/reverse.cpp | 8b4b7bd6065ba44185629651ce62798e5b32a178 | [] | no_license | hmofrad/CodingPractice | bde55f7616d44f20aaaf544cf3c88b37f05651a0 | 7f642e4b9a2e3db0fe54ba66e8d3bf98b8407dce | refs/heads/master | 2022-12-10T03:49:06.226039 | 2020-09-02T02:48:29 | 2020-09-02T02:48:29 | 63,923,207 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,084 | cpp | reverse.cpp | /*
* https://leetcode.com/problems/reverse-integer/submissions/
* (c) Mohammad Hasanzadeh Mofrad, 2020
* (e) m.hasanzadeh.mofrad@gmail.com
*/
class Solution {
public:
int reverse(int32_t x) {
printf("%d %d\n", INT_MAX, INT_MIN);
int y = 0;
while(x) {
int r = x%10;
x/=10;
if(y>INT_MAX/10 or (y==INT_MAX/10 and r>7)) return 0;
if(y<INT_MIN/10 or (y==INT_MIN/10 and r<-8)) return 0;
y = (y*10)+r;
}
return y;
}
int reverse1(int32_t x, bool sign = false) {
if(x<0) return reverse1(-x, true);
x=1534236469;
int n = 0;
int x0 = x;
while(x0) {
x0/=10;
n++;
}
n--;
int y=0;
while(x) {
int r = (x%10);
int d = pow(10, n); n--;
//if(r*d>INT_MAX or r*d<INT_MIN) return 0;
y+=r*d; //overflow
x/=10;
}
return sign ? -y:y;
}
}; |
707740b88e59bb9bc927ebdf96b0c9f56002f86a | d7a68eaf3365cb41ea3ad5ca90ad57873d283f9b | /sourcecode/MainScene.h | af6cd4fe0294eeb850504a4465f2b7b3f9d73a2a | [] | no_license | SeongHyunJeong/2016DiCon | e4d5697b872a2af2c31ccac2ac4cc1fcc2d66cd7 | 6d0b9480701f0c09766cad020cfc8cc4cc6353ad | refs/heads/master | 2020-01-19T21:40:34.094445 | 2017-06-13T15:01:18 | 2017-06-13T15:01:18 | 94,222,656 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 417 | h | MainScene.h | #pragma once
#include "Scene.h"
#include "Sprite.h"
#include"SText.h"
#include"Sound.h"
#include"Scene_Village.h"
#include"Button.h"
#include"Inventory.h"
class MainScene :
public Scene
{
public:
MainScene();
~MainScene();
Button * startButton;
Button * howButton;
Button * exitButton;
//Button * settingButton;
Sprite * background;
//Inventory * test;
void Render();
void Update(float dTime);
};
|
b0ec0097c206f69dd3f780e9a52dc3e1e2236c99 | c05ec6793dc48b2e966f204989a32a65623288f9 | /src/dinput8drv/keyboard.hh | 08fa7439bb9afb8f425dfa2f9038f8a8d9aa32ce | [] | no_license | pkamenarsky/hastegame | b29741a7f2f38d51ce445f14a3dd4f656e204102 | 5320863576804e51f799bdeacf29321ed50a0962 | refs/heads/master | 2021-01-13T02:06:26.613636 | 2015-08-17T13:18:40 | 2015-08-17T13:18:40 | 40,895,961 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,813 | hh | keyboard.hh | #ifndef ION_DINPUT8DRV_KEYBOARD_HH_INCLUDED
#define ION_DINPUT8DRV_KEYBOARD_HH_INCLUDED
#include "di8.hh"
#include "../base/dll.hh"
#include "../base/iontypes.hh"
#include "../input/inputdevice.hh"
namespace ion {
namespace dinput8drv {
class Keyboard:public input::Inputdevice
{
public:
Keyboard(HWND hWnd,LPDIRECTINPUTDEVICE8 pDIDevice,const char *name,const char *model);
~Keyboard();
inline input::Devicetype devicetype() const { return ::ion::input::Inputdevice_Keyboard; }
inline const char* devicename() const { return m_pName; }
inline const char* devicemodel() const { return m_pModel; }
inline bool exclusiveaccess() const { return m_Exclusiveaccess; }
void exclusiveaccess(const bool state);
void backgroundaccess();
void foregroundaccess();
inline bool foregroundaccess() const { return m_Foregroundaccess; }
const Event* event(const ion_uint32 eventNr) const;
ion_uint32 numEvents() const;
bool buttonstate(const unsigned int index) const;
unsigned int numButtons() const;
inline ion_int32 axisstate(const unsigned int index) const { return 0; }
inline unsigned int numAxis() const { return 0; }
bool buttondescription(const unsigned int index,base::String& description) const;
void acquire();
void unacquire();
void update();
void buffered(const bool state);
bool buffered() const;
input::Devicestate state();
bool isValid() const;
inline LPDIRECTINPUTDEVICE8 DIdevice() const { return m_pDIDevice; }
protected:
void setCooperativeLevel();
ion_uint8 m_Buttons[256];
DIDEVICEOBJECTDATA m_DIData[256];
Event m_Events[256];
ion_uint32 m_NumEvents;
bool m_Exclusiveaccess,m_Foregroundaccess,m_Acquired,m_Lost,m_Buffered;
LPDIRECTINPUTDEVICE8 m_pDIDevice;
HWND m_hWnd;
char *m_pName,*m_pModel;
};
}
}
#endif
|
cdc14fbafbd61e8cc6db166306fb0e50ec7fe884 | 37c4eef2f778788afebf37efe643dafefc290960 | /STL/string3.cc | 89c2620e96c93b4ab312af4e2acc2d7515bbfb52 | [] | no_license | i-sushant/CP | 27833b166923f6ce9f385e0f6b9b8c47c95017ab | fcc01898f8d254690ba9400c6a48e13b2f772b63 | refs/heads/master | 2022-11-24T16:22:24.194259 | 2020-07-28T08:39:21 | 2020-07-28T08:39:21 | 264,732,968 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 346 | cc | string3.cc | #include <algorithm>
#include <cstring>
#include <iostream>
using namespace std;
int main()
{
char s[100] = "Today is sunday";
char* ptr = strtok(s, " ");
cout << ptr << endl;
// ptr = strtok(NULL, " ");
// cout << ptr << endl;
while (ptr != NULL) {
cout << ptr << endl;
ptr = strtok(NULL, " ");
}
} |
6381d5544c1968640f74b4a56a79b92e7ab4ff19 | 8bcd1514663f8f0914490da201ce5b9e36064756 | /SFML-Editor/StaticObject.cpp | 9e9e0af39d99c8bfc4ec64436aa3dfd3405d5cf9 | [] | no_license | KarlOfDuty/LuaProjekt | 02a8a8bbd4332f280306c9836f213d996def042e | cc25243cd18c353cfdcf9da82afd8bec4c2291a2 | refs/heads/master | 2021-03-24T13:50:15.921952 | 2018-08-13T22:43:43 | 2018-08-13T22:43:43 | 89,336,870 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 726 | cpp | StaticObject.cpp | #include "StaticObject.h"
StaticObject::StaticObject(sf::RectangleShape shape) : Tile(shape)
{
tileNumber = 0;
}
StaticObject::StaticObject(sf::RectangleShape shape, int number) : Tile(shape)
{
tileNumber = number;
}
StaticObject::~StaticObject()
{
}
int StaticObject::getTileNumber()
{
return tileNumber;
}
void StaticObject::addNumber(std::vector<sf::Texture*> allTextures)
{
if (tileNumber < 7)
{
tileNumber++;
shape.setTexture(allTextures[tileNumber]);
}
}
void StaticObject::subtractNumber(std::vector<sf::Texture*> allTextures)
{
if (tileNumber > 0)
{
tileNumber--;
shape.setTexture(allTextures[tileNumber]);
}
}
std::string StaticObject::getTileOutput()
{
return std::to_string(tileNumber);
}
|
f4c8ec0d08e3d02fc88400e2ef80682b19590325 | c05ec6793dc48b2e966f204989a32a65623288f9 | /src/base/string.cpp | 49e79c9e12a356945a1fc408b55ec702c2310458 | [] | no_license | pkamenarsky/hastegame | b29741a7f2f38d51ce445f14a3dd4f656e204102 | 5320863576804e51f799bdeacf29321ed50a0962 | refs/heads/master | 2021-01-13T02:06:26.613636 | 2015-08-17T13:18:40 | 2015-08-17T13:18:40 | 40,895,961 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,284 | cpp | string.cpp | #include <algorithm>
#include <functional>
#include "string.hh"
namespace ion {
namespace base {
String::String():m_String(new std::string)
{
}
String::String(const char *cstr)
{
m_String=cstr ? (new std::string(cstr)) : new std::string;
}
String::String(const std::string& str):m_String(new std::string(str))
{
}
String::String(const String& str):m_String(new std::string(str.STLstring()))
{
}
String::~String()
{
delete m_String;
}
String& String::operator =(const char *cstr)
{
(*m_String)=cstr;
return *this;
}
String& String::operator =(const std::string& str)
{
(*m_String)=str;
return *this;
}
String& String::operator =(const String& str)
{
(*m_String)=str.STLstring();
return *this;
}
String& String::operator +=(const char *cstr)
{
(*m_String)+=cstr;
return *this;
}
String& String::operator +=(const std::string& str)
{
(*m_String)+=str;
return *this;
}
String& String::operator +=(const String& str)
{
(*m_String)+=str.STLstring();
return *this;
}
void String::set(const char *cstr)
{
(*m_String)=cstr;
}
void String::set(const std::string& str)
{
(*m_String)=str;
}
void String::set(const String& str)
{
(*m_String)=str.STLstring();
}
bool String::compare(const std::string& str,const bool caseSensitive) const
{
return compare(String(str),caseSensitive);
}
bool String::compare(const char *cstr,const bool caseSensitive) const
{
return compare(String(cstr),caseSensitive);
}
bool String::compare(const String& str,const bool caseSensitive) const
{
if (length()!=str.length()) return false;
if (caseSensitive) {
for (unsigned long l=0;l<length();++l) {
if (m_String->c_str()[l]!=str.cstr()[l]) return false;
}
} else {
for (unsigned long l=0;l<length();++l) {
if (toupper(m_String->c_str()[l])!=toupper(str.cstr()[l])) return false;
}
}
return true;
}
bool String::contains(const String& str,const unsigned long startpos) const
{
return (m_String->find(str.STLstring(),startpos)!=std::string::npos);
}
bool String::contains(const std::string& str,const unsigned long startpos) const
{
return (m_String->find(str,startpos)!=std::string::npos);
}
bool String::contains(const char *str,const unsigned long startpos) const
{
return (m_String->find(std::string(str),startpos)!=std::string::npos);
}
bool String::empty() const
{
return m_String->empty();
}
unsigned long String::length() const
{
return static_cast<unsigned long>(m_String->length());
}
const char* String::cstr() const
{
return m_String->c_str();
}
const std::string& String::STLstring() const
{
return *m_String;
}
String::operator const std::string& () const
{
return *m_String;
}
bool String::isValid() const
{
return (m_String!=0);
}
bool operator ==(const String& s1,const String& s2)
{
return s1.compare(s2,true);
}
bool operator ==(const String& s,const char *cstr)
{
return s.compare(cstr,true);
}
bool operator ==(const char *cstr,const String& s)
{
return s.compare(cstr,true);
}
bool operator ==(const String& s,const std::string& str)
{
return s.compare(str,true);
}
bool operator ==(const std::string& str,const String& s)
{
return s.compare(str,true);
}
bool operator !=(const String& s1,const String& s2)
{
return !s1.compare(s2,true);
}
bool operator !=(const String& s,const char *cstr)
{
return !s.compare(cstr,true);
}
bool operator !=(const char *cstr,const String& s)
{
return !s.compare(cstr,true);
}
bool operator !=(const String& s,const std::string& str)
{
return !s.compare(str,true);
}
bool operator !=(const std::string& str,const String& s)
{
return !s.compare(str,true);
}
String operator +(const String& s1,const String& s2)
{
return String(s1.STLstring()+s2.STLstring());
}
String operator +(const String& s1,const std::string& s2)
{
return String(s1.STLstring()+s2);
}
String operator +(const String& s1,const char *cstr)
{
return String(s1.STLstring()+std::string(cstr));
}
String operator +(const std::string& s1,const String& s2)
{
return String(s1+s2.STLstring());
}
String operator +(const char *cstr,const String& s2)
{
return String(std::string(cstr)+s2.STLstring());
}
}
}
|
a58546a581692251fd3124235db9b78932fab90d | a49f3c8a9a9b382c8ea170530c1400b33aa3e2fb | /src/sudoku/sudoku.cpp | b81d5c82bf61178eae51df0d3acf1b416c73884e | [] | no_license | Lion1Blue/MySolutionsQt | 88a21d383f872797c1e5b52df646d83bfd485b15 | e4639558a3cb4b7909b4dd488f3ac83f9d97f5ba | refs/heads/main | 2023-03-26T11:09:30.788726 | 2021-03-22T09:03:40 | 2021-03-22T09:03:40 | 350,268,681 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,208 | cpp | sudoku.cpp | #include "sudoku.h"
#include "qdebug.h"
#include "qmessagebox.h"
#include <QRandomGenerator>
Sudoku::Sudoku()
{
}
Sudoku::Sudoku(ISudokuMainWindow* sudokuMainWindow)
{
m_sudokuMainWindow = sudokuMainWindow;
for (int i = 0; i < 9; i++) {
m_startingSudoku[i].fill(0);
}
m_currentSudoku = m_startingSudoku;
m_sudokuMainWindow->fillView(m_currentSudoku, m_startingSudoku);
setIsSolveable(true);
}
Sudoku::Sudoku(ISudokuMainWindow* sudokuMainWindow, std::array<std::array<short, 9>, 9> grid)
{
m_sudokuMainWindow = sudokuMainWindow;
m_startingSudoku = grid;
m_currentSudoku = grid;
m_sudokuMainWindow->fillView(m_currentSudoku, m_startingSudoku);
setIsSolveable(solveSudoku(grid, false));
}
void Sudoku::setCell(short number, short rowIndex, short columnIndex)
{
short numberPreClick = m_currentSudoku[rowIndex][columnIndex];
m_currentSudoku[rowIndex][columnIndex] = number;
//if Cell is filled with a staring value return
if (m_startingSudoku[rowIndex][columnIndex] != 0 || number == numberPreClick) { return; }
Move move(rowIndex, columnIndex, number, numberPreClick, this->m_isSolveable);
moves.push_back(move);
m_sudokuMainWindow->setCellText(rowIndex, columnIndex, number);
//checking for wincondition
if (!isValidGrid(m_currentSudoku, true)) {
//checking for a valid grid
bool validRowColumnBox = isValidGrid(m_currentSudoku, false);
//checking if the grid is solveable
if (validRowColumnBox && solveSudoku(m_currentSudoku, false)) {
setIsSolveable(true);
}
else {
setIsSolveable(false);
}
}
else {
QMessageBox msgBox;
msgBox.setText("The Sudoku is solved :D");
msgBox.exec();
setIsSolveable(true);
}
}
void Sudoku::newClicked(short numberOfFilledCells)
{
m_sudokuMainWindow->updateProgressBar(0);
//checking if number is a viable number
if (-1 < numberOfFilledCells && numberOfFilledCells < 82) {
//create new Puzzle
std::array<std::array<short, 9>, 9> sudoku = newSudoku(numberOfFilledCells);
//only if the sudoku wasnt cancelled
if (!m_cancelSudokuSolving) {
m_currentSudoku = sudoku;
m_startingSudoku = sudoku;
moves.clear();
setIsSolveable(true);
//fill View with values
m_sudokuMainWindow->fillView(m_currentSudoku, m_startingSudoku);
}
}
m_cancelSudokuSolving = false;
}
void Sudoku::undoClicked()
{
if (!moves.isEmpty()) {
Move move = moves.last(); // get last move
moves.pop_back(); // remove last move
//undo last move
m_currentSudoku[move.row][move.column] = move.numberPreClick;
setIsSolveable(move.isValid);
m_sudokuMainWindow->setCellText(move.row, move.column, move.numberPreClick);
m_sudokuMainWindow->selectCell(move.row, move.column);
}
}
void Sudoku::solveClicked()
{
moves.clear();
setIsSolveable(true);
//solve Sudoku
//m_currentSudoku = m_startingSudoku;
if (!solveSudoku(m_currentSudoku, true)) {
}
m_sudokuMainWindow->fillView(m_currentSudoku, m_startingSudoku);
}
void Sudoku::resetClicked()
{
moves.clear();
setIsSolveable(true);
m_currentSudoku = m_startingSudoku;
m_sudokuMainWindow->fillView(m_currentSudoku, m_startingSudoku);
}
bool Sudoku::solveSudoku(std::array<std::array<short, 9>, 9>& grid, bool fillSudoku)
{
m_sudokuMainWindow->processEvents();
short row, column;
//looking for empty cells
if (!findUnassignedLocation(grid, row, column)) {
return true;
}
else if (m_cancelSudokuSolving) {
return false;
}
//going through numbers from 1 to 9
for (short number = 1; number < 10; number++) {
//set number if it is valid
if (isValid(grid, row, column, number)) {
grid[row][column] = number;
if (solveSudoku(grid, fillSudoku)) {
if (!fillSudoku) {
grid[row][column] = 0;
}
return true;
}
else {
//undo if not correct
grid[row][column] = 0;
}
}
}
//triggering backtracking
return false;
}
std::array<std::array<short, 9>, 9> Sudoku::newSudoku(short numberOfFilledCells)
{
std::array<std::array<short, 9>, 9> grid;
for (short i = 0; i < 9; i++) {
grid[i].fill(0);
}
unsigned short counter = 0;
long counterRandom = 0;
while (counter < numberOfFilledCells && !m_cancelSudokuSolving) {
short row = QRandomGenerator::global()->bounded(0, 9);
short column = QRandomGenerator::global()->bounded(0, 9);
short number = QRandomGenerator::global()->bounded(1, 10);
counterRandom++;
// was ist das hier gridbool = !grid[row][column] ???
bool gridbool = !grid[row][column];
bool isValidBool = isValid(grid, row, column, number);
if (gridbool && isValidBool) {
grid[row][column] = number;
time_t now = time(0);
char* dt = ctime(&now);
qDebug() << dt;
PrintSudoku(grid);
m_sudokuMainWindow->updateProgressBar(counter * 100 / numberOfFilledCells);
if (solveSudoku(grid, false)) {
counter++;
}
else {
grid[row][column] = 0;
}
}
}
qDebug() << "CounterRandom:" << counterRandom;
m_sudokuMainWindow->updateProgressBar(100);
//m_cancelSudokuSolving = false;
return grid;
}
bool Sudoku::findUnassignedLocation(std::array<std::array<short, 9>, 9>& grid, short & row, short & column)
{
for (short i = 0; i < 9; i++) {
for (short j = 0; j < 9; j++) {
if (grid[i][j] == 0) {
row = i;
column = j;
return true;
}
}
}
return false;
}
bool Sudoku::isValid(std::array<std::array<short, 9>, 9>& grid, short row, short column, short number)
{
//check rows and columns
for (short i = 0; i < 9; i++) {
if (grid[row][i] == number || grid[i][column] == number) { return false; }
}
short startRow = row - row % 3;
short startColumn = column - column % 3;
//check 3x3 box
for (short i = 0; i < 3; i++) {
for (short j = 0; j < 3; j++) {
if (grid[startRow + i][startColumn + j] == number) { return false; }
}
}
return true;
}
bool Sudoku::isValidCell(std::array<std::array<short, 9>, 9>& grid, short row, short column)
{
short number = grid[row][column];
if (number != 0) {
grid[row][column] = 0;
if (isValid(grid, row, column, number)) {
grid[row][column] = number;
return true;
}
else {
grid[row][column] = number;
return false;
}
}
else {
return true;
}
}
bool Sudoku::isValidGrid(std::array<std::array<short, 9>, 9>& grid, bool checkForEmpty)
{
if (checkForEmpty) {
short row, column;
//checking for empty cells
if (findUnassignedLocation(grid, row, column)) {
return false;
}
}
for (short row = 0; row < 9; row++) {
for (short column = 0; column < 9; column++) {
if (!isValidCell(grid, row, column)) { return false; }
}
}
return true;
}
void Sudoku::PrintSudoku(std::array<std::array<short, 9>, 9>& grid)
{
for (int i = 0; i < 9; i++) {
std::string row = "";
for (int j = 0; j < 9; j++) {
row += std::to_string(grid[i][j]) + ", ";
}
qDebug() << row.c_str();
}
qDebug() << "\n";
}
void Sudoku::setIsSolveable(bool isSolveable)
{
m_isSolveable = isSolveable;
m_sudokuMainWindow->setIsValidLable(isSolveable);
}
|
bc2bb6a9082059daac1b5e85c76f9b97601e2931 | 9612905f19ea864f344cd3176ed8512cc6d4af79 | /GuiaTelefonos/diccionario.h | 7ee3efaae01a5acec3cefb973fa2e4f330997ff7 | [] | no_license | marlenelis/CC | f1a49a1edcdd7eda297989edc1a4ecd04a599eb6 | ea09d2d9647f81eb4e8d0e5bb8e453313ec088e4 | refs/heads/master | 2021-01-01T19:55:38.510785 | 2015-02-06T11:40:17 | 2015-02-06T11:40:17 | 30,026,736 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,742 | h | diccionario.h | #ifndef DICCION__H
#define DICCION__H
#include <utility> // para pair
#include <vector>
using namespace std;
template <class t1,class t2>
class Diccionario{
private:
vector<pair<t1,vector<t2> > > data;
void Copiar(const Diccionario<t1,t2> &D){
data = D.data;
}
void Borrar(){
data.erase(data.begin(),data.end());
}
public:
/*Contructor por defecto*/
Diccionario():data(vector<pair<t1,vector<t2> > >()){}
Diccionario(const Diccionario &D){
Copiar(D);
}
/*Destructor*/
~Diccionario(){}
/*Operador de asignacion*/
Diccionario<t1,t2> & operator=(const Diccionario<t1,t2> &D){
if (this!=&D){
Borrar();
Copiar(D);
}
return *this;
}
/*Devuelve si el elemento con un determinada clave (p) estรก en el diccionario.
Si estรก devuelve true y un iterador apuntando a donde estรก
En caso contrario devuelve false y un iterador indicando donde debe ser insertado
*/
bool Esta_Clave(const t1 &p, typename vector<pair<t1,vector<t2> > >::iterator &it_out){
if (data.size()>0){
typename vector <pair <t1,vector<t2> > >::iterator it;
for (it=data.begin(); it!=data.end() ;++it){
if ((*it).first==p) {
it_out=it;
return true;
}
else if ((*it).first>p){
it_out=it;
return false;
}
}
it_out=it;
return false;
}
else {
it_out=data.end();
return false;
}
}
/*Inserta un nuevo elemento en el diccionario, si no existe la clave.*/
void Insertar(const t1 & clave,const vector<t2> &info){
typename vector <pair <t1,vector<t2> > >::iterator it;
if (!Esta_Clave(clave,it)){
pair <t1,vector<t2> > p;
p.first = clave;
p.second=info;
/*Usamos el metodo insertar de vector*/
data.insert(it,p);
}
}
void AddSignificado_Palabra(const t2 & s ,const t1 &p){
typename vector<pair<t1,vector<t2> > >::iterator it;
pair<t1,vector<t2> > aux;
aux.first=p;
if (!Esta_Clave(p,it)){
data.insert(it,aux);
}
//Insertamos el siginificado al final
(*it).second.insert(s);
}
vector<t2> getInfo_Asoc(const t1 & p) {
typename vector<pair<t1,vector<t2> > >::iterator it;
if (!Esta_Clave(p,it)){
return vector<t2>();
}
else{
return (*it).second;
}
}
// data<T,U> & operator[](int pos){ return datos.at(pos);}
//const data<T,U> & operator[](int pos)const { return datos.at(pos);}
int size()const{
return data.size();
}
class const_iterator;
class iterator{
private:
pair<t1,vector<t2> > * punt;
public:
iterator(){}
iterator & operator ++(){
punt++;
return *this;
}
iterator & operator --(){
punt--;
return *this;
}
bool operator ==(const iterator & it){
return it.punt==punt;
}
bool operator !=(const iterator & it){
return it.punt!=punt;
}
pair<t1,vector<t2> > & operator *(){
return *punt;
}
friend class Diccionario;
friend class const_iterator;
};
class const_iterator{
private:
const pair<t1,vector<t2> > * punt;
public:
const_iterator(){}
const_iterator(const iterator &it){
punt = it.punt;
}
const_iterator & operator ++(){
punt++;
return *this;
}
const_iterator & operator --(){
punt--;
return *this;
}
bool operator ==(const const_iterator & it){
return it.punt==punt;
}
bool operator !=(const const_iterator & it){
return it.punt!=punt;
}
const pair<t1,vector<t2> > & operator *()const{
return *punt;
}
friend class Diccionario;
};
iterator begin(){
iterator it;
it.punt = &(data[0]);
return it;
}
iterator end(){
iterator it;
it.punt = &(data[data.size()]);
return it;
}
const_iterator begin()const{
const_iterator it;
it.punt = &(data[0]);
return it;
}
const_iterator end()const {
const_iterator it;
it.punt = &(data[data.size()]);
return it;
}
};
#endif
|
47ce337f79bc7aac376092b0a6118bc39ec26d97 | 85ba56df8b459a2e3c4c7e3d66bf4d96c7f8c9b1 | /Codeforces/1092A.cpp | 74a57a94ecb9c6fec33bf8a0824aa16eee135741 | [] | no_license | raghavaggarwal99/Competitive | 80c29213a4f81b39a01d5b2b5e70ab22ceb9738c | fa8a472eddf612f969ec67104110bcdfe03332c9 | refs/heads/master | 2021-07-10T09:31:01.666951 | 2020-09-26T17:03:40 | 2020-09-26T17:03:40 | 203,055,409 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 637 | cpp | 1092A.cpp | #include <iostream>
#include<bits/stdc++.h>
#include<unordered_map>
using namespace std;
int main()
{
long long int t;
cin>>t;
for(int i=0; i<t; i++){
long long int a,b;
cin>>a>>b;
long long int count=0;
int v=0;
while(1){
for(char j='a'; j<=('a'+b-1); j++){
if(count==a){
v=1;
break;
}
cout<<j;
count++;
}
if(v==1){
break;
}
}
cout<<endl;
}
}
|
81a9e330bd6381a2768a761fa6aa61de56e552d2 | 55f5d42e9e2cbfb2c3d41c1dd0050fbb6ad13781 | /ejemplo_1/ejemplo_1.ino | 7abf765122c99ea78abef6a4bbcc49732dd8cf0c | [] | no_license | juchani/respaldp | 97c2f4555134c376f132306dbe846adc7e7c0722 | 0e46792a35d076c45562e0b58cbaec3ae08cd4f5 | refs/heads/master | 2021-09-01T21:52:58.353039 | 2021-08-03T15:26:27 | 2021-08-03T15:26:27 | 134,037,744 | 0 | 0 | null | 2018-05-19T06:55:22 | 2018-05-19T06:51:54 | null | UTF-8 | C++ | false | false | 213 | ino | ejemplo_1.ino | int led=12;
int tiempo=1000;
void setup() {
pinMode(led,OUTPUT);
}
void loop() {
digitalWrite(led,HIGH);//enciende led que se encuentra en el pin 13
delay(tiempo);
digitalWrite(led,LOW);
delay(tiempo);
}
|
f23cf3f843a11d5bd1ca28da224fce1a202280a3 | 8b05f84f414b53f4aa89ead06621de99996ae140 | /MonsterChase/Engine/Memory/Source/ReferenceCounter.h | 7fcd941ad87fce60cef965f950cfc8ebe0d0fc8a | [] | no_license | luyao795/PersonalCodeApplication | a32b42ab962aa943b09301a20ee973b9c4203ab7 | 9599c8ddd527a34781c8a50e867fa6c6f1b9bc07 | refs/heads/master | 2021-01-19T20:57:17.349736 | 2018-02-06T16:22:03 | 2018-02-06T16:22:03 | 101,242,133 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 486 | h | ReferenceCounter.h | #ifndef REFERENCECOUNTER_H
#define REFERENCECOUNTER_H
namespace Engine
{
class ReferenceCounter
{
public:
ReferenceCounter() :
smartCount(1),
weakCount(0)
{
}
~ReferenceCounter();
long IncrementSmartReferenceCount();
long DecrementSmartReferenceCount();
long IncrementWeakReferenceCount();
long DecrementWeakReferenceCount();
long GetSmartCount();
long GetWeakCount();
private:
long smartCount;
long weakCount;
};
}
#endif // !REFERENCECOUNTER_H
|
e2b2813e2124831b0983238247a60f85375f7a5e | aaf52e3f7570f40b0905ae1a04933697156518f8 | /src/autores.h | 28d08697648ce459754d92060a0cda4510656d14 | [
"MIT"
] | permissive | prantlf/node-posix-ext | a84e0859aee4eb9b12942627e99aab6818377963 | 56631788edc6f2acc666fb549f3eb49d59cbd1e3 | refs/heads/master | 2020-06-02T07:54:19.781754 | 2018-04-29T01:47:25 | 2018-04-29T01:47:25 | 15,496,247 | 6 | 2 | MIT | 2018-06-08T15:33:00 | 2013-12-28T17:35:40 | C++ | UTF-8 | C++ | false | false | 18,091 | h | autores.h | #ifndef AUTORES_H
#define AUTORES_H
#ifdef _WIN32
#include <windows.h>
#include <lm.h>
#endif
#include <cstdlib>
#include <cassert>
#include <new>
namespace autores {
// abstract class for wrappers of resources which need to be freed;
// the destructor disposes of the wrapped resource autmatically
//
// descendant class template:
// template <class T> class ManagedResource :
// public ManagedResource<Managed<T>, T> { ... };
// variable declaration:
// ManagedResource<ResourceHandle> resource = OpenResource(...);
template <
typename Derived,
typename T
>
class AutoRes {
protected:
T handle;
public:
// the default constructor; creates an empty wrapper
AutoRes() : handle(Derived::InitialValue()) {}
// initializing constructor; this object will own the handle
AutoRes(T handle) : handle(handle) {}
// ownership moving constructor; the source object will become empty
// and this object will own its handle
AutoRes(AutoRes & source) : handle(source.Detach()) {}
// the destructor disposes of the wrapped handle, if it is valid
~AutoRes() {
static_cast<Derived *>(this)->Dispose();
}
// ownership moving assignment operator
Derived & operator =(Derived & source) {
// dispose of the owned handle before hosting the new one
static_cast<Derived *>(this)->Dispose();
// read the handle from the source object and leave it empty
// so that its destructor doesn't dispose of it when owned here
handle = source.Detach();
return static_cast<Derived &>(*this);
}
Derived & operator =(T source) {
// dispose of the owned handle before hosting the new one
static_cast<Derived *>(this)->Dispose();
handle = source;
return static_cast<Derived &>(*this);
}
// getting a pointer to the wrapper returns a pointer to the
// the wrapped value to be able to ue it as output parameter
// as well as the wrapped value alone would be
T * operator &() {
return &handle;
}
// the wrapper instance can be used as input parameter as well
// as the wrapped value alone would be, thanks to this cast
operator T() const {
return handle;
}
// gets the wrapped handle in statements where the casting
// operator is not practicable
T Get() const {
return handle;
}
// returns the wrapped handle and removes it from the wrapper; so that
// when the wrapper is disposed of, the handle will stay intact
T Detach() {
T result = handle;
// the wrapper is left with an invalid value
handle = Derived::InitialValue();
return result;
}
// disposes of the wrapped handle, if the handle is valid
bool Dispose() {
// proceed only if the wrapped handle is valid
if (static_cast<Derived *>(this)->IsValid()) {
// delegate the disposal to the descended class; the DisposeInternal
// should be protected and AutoRes should be friend to the descendant
static_cast<Derived *>(this)->DisposeInternal();
// leave the wrapper with an invalid value to allow multiple calls
// to this metod without failures
handle = Derived::InitialValue();
}
return true;
}
// checks whether a valid handle is stored in the wrapper; more values
// can be invalid, but at least one must be the InitialValue
bool IsValid() const {
return Derived::IsValidValue(handle);
}
// checks whether the specified handle is valid
static bool IsValidValue(T handle) {
return handle != Derived::InitialValue();
}
// returns an invalid handle value stored in an empty wrapper
static T InitialValue() {
return NULL;
}
};
// abstract class for wrappers of allocated memory blocks
//
// descendant class template:
// template <class T> class ManagedMemory :
// public AutoMem<ManagedMemory<T>, T> { ... };
// variable declaration:
// ManagedMemory<Item *> item = AllocateAndInitializeItem(...);
template <
typename Derived,
typename T
>
class AutoMem : public AutoRes<
Derived, T
> {
private:
typedef AutoRes<
Derived, T
> Base;
protected:
typedef Base Res;
bool DisposeInternal() {
return Derived::Unallocate(Base::handle);
}
T & Dereference() {
// the value in the dereferenced memory is being accessed;
// it must not be posible if the wrapper is empty
assert(static_cast<Derived *>(this)->IsValid());
return Base::handle;
}
T const & Dereference() const {
// the value in the dereferenced memory is being accessed;
// it must not be posible if the wrapper is empty
assert(static_cast<Derived const *>(this)->IsValid());
return Base::handle;
}
public:
AutoMem() {}
AutoMem(T handle) : Base(handle) {}
// ownership moving constructor
AutoMem(AutoMem & source) : Base(source) {}
Derived & operator =(Derived & source) {
return Base::operator =(source);
}
Derived & operator =(T source) {
return Base::operator =(source);
}
// chain the dereferencing operator to make the members of the
// wrapped value accessible via the wrapper instance the same way
T operator ->() {
return Dereference();
}
};
// abstract class for wrappers of fixed-size arrays of objects to be
// constructed by new and destructed by delete, while placed in a memory
// block pre-allocated by the descended class
//
// descendant class template:
// template <class T> class ManagedArray :
// public AutoArray<ManagedArray<T>, T> { ... };
// variable declaration:
// ManagedArray<Item> items(itemCount);
template <
typename Derived,
typename T
>
class AutoArray : public AutoMem<
Derived, T *
> {
private:
typedef AutoMem<
Derived, T *
> Base;
AutoArray & operator =(T * source);
protected:
int size;
public:
AutoArray() : size(0) {}
AutoArray(int size)
: Base(Derived::Allocate(size * sizeof(T))), size(size) {}
AutoArray(T * handle, int size)
: Base(handle), size(size) {}
AutoArray(AutoArray & source)
: Base(source), size(source.size) {}
Derived & operator =(Derived & source) {
Base::operator =(source);
size = source.size;
return *this;
}
T const & operator [](int index) const {
assert(index < size);
return Base::Dereference()[index];
}
T & operator [](int index) {
assert(index < size);
return Base::Dereference()[index];
}
bool Dispose() {
if (static_cast<Derived *>(this)->IsValid()) {
// call destructors of all array items
for (int i = 0; i < size; ++i) {
Base::handle[i].~T();
}
// explicitly marking the array empty
size = 0;
// dispose of the memory buffer hosting the late array
return Base::Dispose();
}
return true;
}
int Size() const {
return size;
}
bool Resize(int newSize) {
// dispose of all array items and the underlying memory block
// before making space for the new array
if (!static_cast<Derived *>(this)->Dispose()) {
return false;
}
if (newSize > 0) {
// allocate the underlying memory buffer to host the array;
// the allocating method accepts byte size; not item count
Base::handle = static_cast<Derived *>(this)->
AllocateInternal(newSize * sizeof(T));
if (!static_cast<Derived *>(this)->IsValid()) {
return false;
}
// remember the array size for future access checks
size = newSize;
// call default constructors of all array items
for (int i = 0; i < size; ++i) {
new (&Base::handle[i]) T();
}
}
return true;
}
};
// wraps a pointer to memory allocated by malloc and disposed by free
//
// variable declaration:
// CrtMem<Item *> memory = malloc(sizeof item);
template <
typename T
>
class CrtMem : public AutoMem<
CrtMem<T>, T
> {
private:
typedef AutoMem<
CrtMem<T>, T
> Base;
friend class Base::Res;
public:
CrtMem() {}
CrtMem(T handle) : Base(handle) {}
CrtMem(CrtMem & source) : Base(source) {}
// ownership moving assignment operator
CrtMem & operator =(CrtMem & source) {
Base::operator =(source);
return *this;
}
CrtMem & operator =(T source) {
Base::operator =(source);
return *this;
}
static T Allocate(size_t size) {
return (T) malloc(size);
}
static bool Unallocate(T handle) {
free(handle);
return true;
}
};
// wraps a pointer to an object allocated by new and disposed by delete
//
// variable declaration:
// CppObj<Item *> item = new Item(...);
template <
typename T
>
class CppObj : public AutoMem<
CppObj<T>, T
> {
private:
typedef AutoMem<
CppObj<T>, T
> Base;
friend class Base::Res;
public:
CppObj() {}
CppObj(T handle) : Base(handle) {}
CppObj(CppObj & source) : Base(source) {}
// ownership moving assignment operator
CppObj & operator =(CppObj & source) {
Base::operator =(source);
return *this;
}
CppObj & operator =(T source) {
Base::operator =(source);
return *this;
}
static bool Unallocate(T handle) {
delete handle;
return true;
}
};
#ifdef _WIN32
// wraps a handle to a kernel object which is disposed by CloseHandle
//
// variable declaration:
// WinHandle<HANDLE> file = CreateFile(...);
template <
typename T
>
class WinHandle : public AutoRes<
WinHandle<T>, T
> {
private:
typedef AutoRes<
WinHandle<T>, T
> Base;
friend class Base;
protected:
bool DisposeInternal() {
return CloseHandle(Base::handle) != FALSE;
}
public:
WinHandle() {}
WinHandle(T handle) : Base(handle) {}
WinHandle(WinHandle & source) : Base(source) {}
// ownership moving assignment operator
WinHandle & operator =(WinHandle & source) {
Base::operator =(source);
return *this;
}
WinHandle & operator =(T source) {
Base::operator =(source);
return *this;
}
static bool IsValidValue(T handle) {
return Base::IsValidValue(handle) && handle != INVALID_HANDLE_VALUE;
}
};
// wraps a pointer to memory allocated by LocalAlloc and disposed by LocalFree
//
// variable declaration:
// LocalMem<Item *> memory = LocalAlloc(LMEM_FIXED, size);
template <
typename T
>
class LocalMem : public AutoMem<
LocalMem<T>, T
> {
private:
typedef AutoMem<
LocalMem<T>, T
> Base;
friend class Base::Res;
public:
LocalMem() {}
LocalMem(T handle) : Base(handle) {}
LocalMem(LocalMem & source) : Base(source) {}
// ownership moving assignment operator
LocalMem & operator =(LocalMem & source) {
Base::operator =(source);
return *this;
}
LocalMem & operator =(T source) {
Base::operator =(source);
return *this;
}
static T Allocate(size_t size) {
return (T) LocalAlloc(LMEM_FIXED, size);
}
static bool Unallocate(T handle) {
return LocalFree(handle) == NULL;
}
};
// wraps a pointer to memory allocated by GlobalAlloc and disposed by GlobalFree
//
// variable declaration:
// GlobalMem<Item *> memory = GlobAlloc(GMEM_FIXED, size);
template <
typename T
>
class GlobalMem : public AutoMem<
GlobalMem<T>, T
> {
private:
typedef AutoMem<
GlobalMem<T>, T
> Base;
friend class Base::Res;
public:
GlobalMem() {}
GlobalMem(T handle) : Base(handle) {}
GlobalMem(GlobalMem & source) : Base(source) {}
// ownership moving assignment operator
GlobalMem & operator =(GlobalMem & source) {
Base::operator =(source);
return *this;
}
GlobalMem & operator =(T source) {
Base::operator =(source);
return *this;
}
static T Allocate(size_t size) {
return (T) GlobalAlloc(GMEM_FIXED, size);
}
static bool Unallocate(T handle) {
return GlobalFree(handle) == NULL;
}
};
// wraps a pointer to memory allocated by AllocateAndInitializeSid
// and disposed by FreeSid
//
// variable declaration:
// Sid<> sid = AllocateAndInitializeSid(...);
template <
typename T = PSID
>
class Sid : public AutoMem<
Sid<T>, T
> {
private:
typedef AutoMem<
Sid<T>, T
> Base;
friend class Base::Res;
public:
Sid() {}
Sid(T handle) : Base(handle) {}
Sid(Sid & source) : Base(source) {}
// ownership moving assignment operator
Sid & operator =(Sid & source) {
Base::operator =(source);
return *this;
}
Sid & operator =(T source) {
Base::operator =(source);
return *this;
}
static bool Unallocate(T handle) {
FreeSid(handle);
return true;
}
};
// wraps a pointer to memory allocated by NetApiBufferAllocate
// and disposed by NetApiBufferFree
//
// variable declaration:
// NetApiBuffer<Item *> buffer = NetApiBufferAllocate(size);
template <
typename T
>
class NetApiBuffer : public AutoMem<
NetApiBuffer<T>, T
> {
private:
typedef AutoMem<
NetApiBuffer<T>, T
> Base;
friend class Base::Res;
public:
NetApiBuffer() {}
NetApiBuffer(T handle) : Base(handle) {}
NetApiBuffer(NetApiBuffer & source) : Base(source) {}
// ownership moving assignment operator
NetApiBuffer & operator =(NetApiBuffer & source) {
Base::operator =(source);
return *this;
}
NetApiBuffer & operator =(T source) {
Base::operator =(source);
return *this;
}
static T Allocate(size_t size) {
return (T) NetApiBufferAllocate(size);
}
static bool Unallocate(T handle) {
return NetApiBufferFree(handle) == NERR_Success;
}
};
// base class storing the heap which the memory block was allocated from;
// the descended class can set it or rely on the process heap by default
class HeapBase {
private:
static HANDLE processHeap;
protected:
mutable HANDLE heap;
public:
HeapBase() : heap(NULL) {}
HeapBase(HANDLE heap) : heap(heap) {}
HeapBase(HeapBase const & source) : heap(source.heap) {}
HANDLE Heap() const {
if (heap == NULL) {
heap = ProcessHeap();
}
return heap;
}
static HANDLE ProcessHeap() {
if (processHeap == NULL) {
processHeap = GetProcessHeap();
}
return processHeap;
}
};
// wraps a pointer to memory allocated by HeapAlloc and disposed by HeapFree
//
// variable declaration:
// HeapMem<Item *> memory = HeapAlloc(GetProcessHeap(), 0, size);
template <
typename T
>
class HeapMem : public AutoMem<
HeapMem<T>, T
>,
public HeapBase {
private:
typedef AutoMem<
HeapMem<T>, T
> Base;
friend class Base::Res;
protected:
bool DisposeInternal() {
return Unallocate(Base::handle, HeapBase::Heap());
}
public:
HeapMem() {}
HeapMem(T handle) : Base(handle) {}
HeapMem(T handle, HANDLE heap) : Base(handle), HeapBase(heap) {}
HeapMem(HeapMem & source) : Base(source), HeapBase(source.heap) {}
// ownership moving assignment operator
HeapMem & operator =(HeapMem & source) {
Base::operator =(source);
heap = source.heap;
return *this;
}
HeapMem & operator =(T source) {
Base::operator =(source);
return *this;
}
HeapMem & Assign(T source, HANDLE heap = NULL) {
Base::operator =(source);
heap = heap;
return *this;
}
static T Allocate(size_t size, HANDLE heap = NULL) {
if (heap == NULL) {
heap = HeapBase::ProcessHeap();
}
return (T) HeapAlloc(heap, 0, size);
}
static bool Unallocate(T handle, HANDLE heap = NULL) {
if (heap == NULL) {
heap = HeapBase::ProcessHeap();
}
return HeapFree(heap, 0, handle) != FALSE;
}
};
// wraps an array of objects in memory pre-allocated by HeapAlloc
// and disposed by HeapFree; objects created by default constructors
//
// variable declaration:
// HeapArray<Item> items(itemCount);
template <
typename T
>
class HeapArray : public AutoArray<
HeapArray<T>, T
>,
public HeapBase {
private:
typedef AutoArray<
HeapArray<T>, T
> Base;
friend class Base;
friend class Base::Res;
HeapArray & operator =(T * source);
protected:
bool DisposeInternal() {
return Unallocate(Base::handle, HeapBase::Heap());
}
T * AllocateInternal(int newSize) {
return Allocate(newSize, HeapBase::Heap());
}
public:
HeapArray() {}
HeapArray(int size)
: Base(size) {}
HeapArray(int size, HANDLE heap)
: Base(Allocate(size * sizeof(T), heap), size), HeapBase(heap) {}
HeapArray(HeapArray & source)
: Base(source), HeapBase(source.heap) {}
HeapArray & operator =(HeapArray & source) {
Base::operator =(source);
heap = source.heap;
return *this;
}
bool Resize(int newSize, HANDLE heap = NULL) {
if (!Dispose()) {
return false;
}
if (heap != NULL) {
HeapBase::heap = heap;
}
return Base::Resize(newSize);
}
static T * Allocate(size_t size, HANDLE heap = NULL) {
return HeapMem<T *>::Allocate(size, heap);
}
static bool Unallocate(T * handle, HANDLE heap = NULL) {
return HeapMem<T *>::Unallocate(handle, heap);
}
};
#endif // _WIN32
} // namespace autores
#endif // AUTORES_H
|
98f007a53b67e14f023d29a6b26721d082377b90 | d3f1ad1e684f35225a8b162f2a39160e18257634 | /sketch_may16a.ino | 2321a9cb9a9f48776888334a14e663e11133f9ee | [] | no_license | 4RTY05HK4/IoT-Refrigirator | daa2f2359aa26b31830ce9caf37692a76e32d43d | e85d487c9a6ddb17775848a62aac1713ab74dba0 | refs/heads/main | 2023-07-13T02:39:27.076621 | 2021-08-23T17:32:50 | 2021-08-23T17:32:50 | 399,187,936 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,568 | ino | sketch_may16a.ino | #include <LiquidCrystal_I2C.h>
#include <Wire.h>
#include <RTClib.h>
#include <OneWire.h>
#include <DallasTemperature.h>
#include <WiFi.h>
#include <ESP32Ping.h>
#include <HTTPClient.h>
RTC_DS3231 rtc;
OneWire oneWire(27);
DallasTemperature sensors(&oneWire);
LiquidCrystal_I2C lcd(0x27, 16, 2);
DeviceAddress Device1Address;
int lod = 13, zamr = 14, buzz = 25;
bool flagLOD = false, backup_flagLOD = false, flagZAMR = false, backup_flagZAMR = false, DataSent = true;
int hC = 1000, mC = 1000, sC = 1000, hO = 1000, mO = 1000, sO = 1000, LoC = 0, ZoC = 0, mCtmp = 0, DeviceIDtmp = 13;
float DOtemperatureC, DCtemperatureC;
String timeOD, timeDC, dataNow;
void setup() {
//esp_sleep_enable_ext0_wakeup(GPIO_NUM_13,1);
esp_sleep_enable_ext1_wakeup(0x6000,ESP_EXT1_WAKEUP_ANY_HIGH);
if(digitalRead(lod) == 1 && flagLOD == false && backup_flagLOD == false)
{
backup_flagLOD = true;
}
if(digitalRead(zamr) == 1 && flagZAMR == false && backup_flagZAMR == false)
{
backup_flagZAMR = true;
}
Wire.begin(32, 33);
lcd.init();
lcd.backlight();
lcd.setCursor(0, 0);
lcd.print("Hello, World!");
pinMode(lod, INPUT_PULLUP);
pinMode(zamr, INPUT_PULLUP);
Serial.begin(115200);
WiFi.mode(WIFI_OFF);
delay(1000);
WiFi.mode(WIFI_STA);
WiFi.begin("TP-Link_24", "pasz12port");
while (WiFi.status() != WL_CONNECTED){
//Serial.println("Brak polaczenia");
lcd.clear();
lcd.print("Brak polaczenia");
delay(500);
}
lcd.clear();
lcd.print("Polaczono z WiFi");
//Serial.print("Nawiazano polaczenie, addres IP : ");
//Serial.println(WiFi.localIP());
while(!Ping.ping("192.168.0.169", 1)){
lcd.clear();
lcd.print("Serwer nie");
lcd.setCursor(0, 1);
lcd.print("odpowiada");
}
lcd.clear();
lcd.setCursor(0, 0);
delay(500);
pinMode(buzz, OUTPUT);
if (!rtc.begin()) {
AlertsHandler(4);
while(1);
}
//rtc.adjust(DateTime(2021, 5, 20, 17, 56, 0));
sensors.begin();
DateTime nowTmp = rtc.now();
mCtmp = nowTmp.minute();
if(mCtmp > 58) mCtmp += 1 - 60;
else mCtmp += 1;
sC = nowTmp.second();
lcd.clear();
lcd.noBacklight();
}
void loop() {
if(digitalRead(lod) == 1 && digitalRead(zamr) == 0){
DeviceIDtmp = 13;
}else if(digitalRead(zamr) == 1 && digitalRead(lod) == 0){
DeviceIDtmp = 14;
}
DeviceHandler(DeviceIDtmp);
//delay(1000);
}
void DeviceHandler(int DeviceID){
DateTime now = rtc.now();
if((digitalRead(DeviceID) == 1 && returnflagValue(DeviceID) == false) || returnBackupFlagValue(DeviceID) == true){
lcd.clear();
lcd.backlight();
//flag = true;
setFlag(DeviceID, true);
//backup_flag = false;
setBackupFlag(DeviceID, false);
incrementCounter(DeviceID);
hO = now.hour();
mO = now.minute();
sO = now.second();
timeOD = (String)hO + ":" + (String)mO + ":" + (String)sO;
//Serial.println(timeOD);
lcd.print(timeOD);
DOtemperatureC = getTempFromDeviceID(DeviceID);
lcd.setCursor(10, 0);
lcd.print((String)DOtemperatureC);
lcd.print("C");
//Serial.print(DOtemperatureC);
//Serial.println("ยบC");
delay(1000);
}
else if(digitalRead(DeviceID) == 1 && returnflagValue(DeviceID) == true){
if((mO < now.minute() && sO <= now.second())){
AlertsHandler(2);
}else if(returnCounterValue(DeviceID) > 3){
AlertsHandler(1);
}else if(mO < now.minute() && sO <= now.second() && returnCounterValue(DeviceID) > 3){
AlertsHandler(6);
}
//Serial.println("Door opened!");
}
else if(digitalRead(DeviceID) == 0 && returnflagValue(DeviceID) == true){
if(returnCounterValue(DeviceID) > 3){
lcd.clear();
}
//flag = false;
setFlag(DeviceID, false);
hC = now.hour();
mC = now.minute();
if(mC > 56) mCtmp = mC + 3 - 60;
else mCtmp = mC + 3;
sC = now.second();
timeDC = (String)hC + ":" + (String)mC+ ":" + (String)sC;
//Serial.println(timeDC);
lcd.setCursor(0, 1);
lcd.print(timeDC);
DCtemperatureC = getTempFromDeviceID(DeviceID);
//Serial.print(DCtemperatureC);
//Serial.println("ยบC");
lcd.setCursor(10, 1);
lcd.print((String)DCtemperatureC);
lcd.print("C");
String dane = "DeviceID=" + (String)DeviceID + "&DataSent=" + (String)DataSent + "&DCtemperatureC=" + (String)DCtemperatureC + "&DOtemperatureC=" + (String)DOtemperatureC + "&timeOD=" + timeOD + "&timeDC=" + timeDC;
HTTPClient http;
http.begin("http://192.168.0.169/index/index.php");
http.setConnectTimeout(1000);
int httpCode = http.GET();
if(httpCode < 0)
{
if(httpCode == HTTPC_ERROR_CONNECTION_REFUSED)
AlertsHandler(3);
}else if(httpCode >= 0){
http.addHeader("Content-Type", "application/x-www-form-urlencoded");
http.POST(dane);
//Serial.println(dane);
http.end();
}
}
else if(digitalRead(DeviceID) == 0 && returnflagValue(DeviceID) == false){
if(mCtmp == now.minute() && sC <= now.second()){
//Serial.println("going to sleep");
lcd.clear();
lcd.backlight();
lcd.print("Ide spac");
delay(3000);
lcd.clear();
lcd.noBacklight();
esp_deep_sleep_start();
}
HTTPClient http;
http.begin("http://192.168.0.169/index/index.php");
http.setConnectTimeout(1000);
int httpCode = http.GET();
if(httpCode < 0)
{
if(httpCode == HTTPC_ERROR_CONNECTION_REFUSED){
lcd.backlight();
AlertsHandler(3);
}
}else{
//Serial.println("Door closed");
lcd.clear();
lcd.noBacklight();
}
}
}
int getTempFromDeviceID(int DeviceID){
int sensorID;
if(DeviceID == 13){
sensorID = 0;
}else if(DeviceID == 14){
sensorID = 1;
}
sensors.requestTemperatures();
sensors.getAddress(Device1Address, sensorID);
return sensors.getTempC(Device1Address);
}
void incrementCounter(int DeviceID){
if(DeviceID == 13){
LoC++;
}else if(DeviceID == 14){
ZoC++;
}
}
int returnCounterValue(int DeviceID){
if(DeviceID == 13){
return LoC;
}else if(DeviceID == 14){
return ZoC;
}
}
void setFlag(int DeviceID, bool value){
if(DeviceID == 13){
flagLOD = value;
}else if(DeviceID == 14){
flagZAMR = value;
}
}
void setBackupFlag(int DeviceID, bool value){
if(DeviceID == 13){
backup_flagLOD = value;
}else if(DeviceID == 14){
backup_flagZAMR = value;
}
}
bool returnflagValue(int DeviceID){
if(DeviceID == 13){
return flagLOD;
}else if(DeviceID == 14){
return flagZAMR;
}
}
bool returnBackupFlagValue(int DeviceID){
if(DeviceID == 13){
return backup_flagLOD;
}else if(DeviceID == 14){
return backup_flagZAMR;
}
}
void AlertsHandler(int errCode){
switch (errCode) {
case 1:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("ZBYT CZESTE ");
lcd.setCursor(0, 1);
lcd.print("OTWIERANIE DRZWI");
digitalWrite(buzz, HIGH);
delay(1000);
digitalWrite(buzz, LOW);
lcd.clear();
break;
case 2:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("ZBYT DLUGO ");
lcd.setCursor(0, 1);
lcd.print("OTWARTE DRZWI");
digitalWrite(buzz, HIGH);
delay(1000);
digitalWrite(buzz, LOW);
lcd.clear();
break;
case 3:
lcd.clear();
lcd.print("Serwer nie");
lcd.setCursor(0, 1);
lcd.print("odpowiada");
break;
case 4:
lcd.clear();
lcd.print("RTC nie");
lcd.setCursor(0, 1);
lcd.print("odpowiada");
break;
case 5:
lcd.clear();
lcd.print("Czujnik nie");
lcd.setCursor(0, 1);
lcd.print("odpowiada");
break;
case 6:
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("ZA DLUGO/CZESTO ");
lcd.setCursor(0, 1);
lcd.print("OTWARTE DRZWI");
digitalWrite(buzz, HIGH);
delay(1000);
digitalWrite(buzz, LOW);
lcd.clear();
break;
default:
break;
}
}
|
46568ac0ff607617e057b5e95238dab0e2ea5cb8 | 338f16b907cdca5d99f6fc4ee978b3dede217615 | /src/authentication/executor/jwt_secret_generator.cpp | 1d7c010a111c8dfcb574e8044694d670b641cf33 | [
"Apache-2.0",
"GPL-2.0-or-later",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-protobuf",
"LGPL-2.1-only",
"PSF-2.0",
"BSL-1.0",
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | apache/mesos | 24c92eb34ea9cbb2912d6471815a433c9942e0c9 | 8856d6fba11281df898fd65b0cafa1e20eb90fe8 | refs/heads/master | 2023-08-28T06:36:36.458732 | 2023-01-13T21:00:06 | 2023-01-14T00:29:23 | 11,469,439 | 4,860 | 2,034 | Apache-2.0 | 2023-04-12T06:10:25 | 2013-07-17T07:00:13 | C++ | UTF-8 | C++ | false | false | 2,070 | cpp | jwt_secret_generator.cpp | // Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "jwt_secret_generator.hpp"
#include <process/jwt.hpp>
#include <stout/json.hpp>
#include <stout/stringify.hpp>
namespace mesos {
namespace authentication {
namespace executor {
using process::Failure;
using process::Future;
using process::http::authentication::JWT;
using process::http::authentication::JWTError;
using process::http::authentication::Principal;
using std::string;
JWTSecretGenerator::JWTSecretGenerator(const string& secret)
: secret_(secret) {}
JWTSecretGenerator::~JWTSecretGenerator() {}
Future<Secret> JWTSecretGenerator::generate(const Principal& principal)
{
if (principal.value.isSome()) {
return Failure("Principal has a value, but only claims are supported");
}
JSON::Object payload;
foreachpair (const string& key, const string& value, principal.claims) {
payload.values[key] = value;
}
Try<JWT, JWTError> jwt = JWT::create(payload, secret_);
if (jwt.isError()) {
return Failure("Error creating JWT: " + jwt.error().message);
}
Secret::Value value;
value.set_data(stringify(jwt.get()));
Secret result;
result.set_type(Secret::VALUE);
result.mutable_value()->CopyFrom(value);
return result;
}
} // namespace executor {
} // namespace authentication {
} // namespace mesos {
|
1da969c5538cddb5b518632e027a97cbf62151bc | 46fda2ea47f311ee7fefc6f6210811c7f4bd74ad | /www/chromium/files/patch-chrome_services_speech_soda_soda__test__paths.h | 9775a8f1fcec1885ffd6820f652fabacc2db1377 | [
"BSD-2-Clause"
] | permissive | truenas/ports | ad560a8adde884dc0cfc4b292bbbcad91903b287 | da4ed13ad08a6af5c54361f45964fa1177367c68 | refs/heads/truenas/13.0-stable | 2023-09-02T03:00:28.652837 | 2023-08-16T16:05:00 | 2023-08-16T16:05:00 | 8,656,293 | 18 | 9 | NOASSERTION | 2023-09-12T15:15:34 | 2013-03-08T17:35:37 | null | UTF-8 | C++ | false | false | 503 | h | patch-chrome_services_speech_soda_soda__test__paths.h | --- chrome/services/speech/soda/soda_test_paths.h.orig 2021-09-14 01:51:52 UTC
+++ chrome/services/speech/soda/soda_test_paths.h
@@ -34,7 +34,7 @@ constexpr base::FilePath::CharType kSodaResourcePath[]
constexpr base::FilePath::CharType kSodaTestBinaryRelativePath[] =
FILE_PATH_LITERAL("SODA_for_testing.dll");
-#elif defined(OS_LINUX)
+#elif defined(OS_LINUX) || defined(OS_BSD)
constexpr base::FilePath::CharType kSodaResourcePath[] =
FILE_PATH_LITERAL("third_party/soda/resources");
|
ec63520dd8c133c56bde0fc7d6748c8887520b06 | 19fde8ce837204bc8ab1a2d34445a7326d95b153 | /wust/1588.cpp | 1a9e40e73cf16f0ac8cca28b57c9037db08eef98 | [] | no_license | JS00000/acmCode | aad59f1fdd66bb3b4b2208c8c5be0f26b7169405 | eda5dbcef4a66618fc27e79184a2ae93618ee6b1 | refs/heads/master | 2021-05-24T04:27:11.966469 | 2021-03-01T08:55:35 | 2021-03-01T08:55:35 | 55,392,212 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,304 | cpp | 1588.cpp | #include <iostream>
#include <cstdio>
using namespace std;
int md[12] = {31,29,31,30,31,30,31,31,30,31,30,31};
int whatDay(int y, int m, int d)
{
int ans;
if (m == 1 || m == 2)
m += 12, y--;
if ((y < 1752) || (y == 1752 && m < 9) || (y == 1752 && m == 9 && d < 3))
ans = (d + 2*m + 3*(m + 1)/5 + y + y /4 + 5) % 7;
else
ans = (d + 2*m + 3*(m + 1)/5 + y + y /4 - y/100 + y/400) % 7;
return ans;
}
bool ifLeapYear(int y)
{
if ((y % 4 == 0) && ((y % 100 != 0) || (y % 400 == 0))) return 1;
else return 0;
}
int main(int argc, char const *argv[])
{
int t, k, n, tot, week;
cin >> t;
while(t--)
{
cin >> k >> n;
tot = 184500 * n;
int needDay = (tot-1) / k + 1;
int d = 1, m = 4, y = 2016;
int r = needDay / 728483;
needDay %= 728483;
while(needDay)
{
d++;
if (d > md[m-1])
{
m++;
d = 1;
}
if (m > 12)
{
y++;
m = 1;
if (ifLeapYear(y)) md[1] = 29;
else md[1] = 28;
}
if (d == 1 && m == 4) continue;
week = whatDay(y, m, d);
if (week == 5 || week == 6) continue;
needDay--;
}
y += r*2800;
printf("%d/", y);
if (m < 10)
printf("0%d/", m);
else
printf("%d/", m);
if (d < 10)
printf("0%d", d);
else
printf("%d", d);
if (y > 2060)
printf(", A sad story ==");
printf("\n");
}
return 0;
} |
3d20e97b34656135dd97cbca09d09486345f1fd6 | ee979b1a63104896fe94686f689e593c2df2d4c1 | /datastructures/experimentalProfiling/max_k_heap.h | 51dba7ab22fd706ec66220b383e060d87382855d | [] | no_license | ajgrowney/compscience_intro | dc295704388eb5590b455839466ce6458097e43b | df69b419ef0aee4da812cbe0009f811ad5f235be | refs/heads/master | 2023-08-24T23:03:04.127988 | 2022-05-28T16:40:54 | 2022-05-28T16:40:54 | 253,696,336 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 518 | h | max_k_heap.h | #ifndef MAX_K_HEAP
#define MAX_K_HEAP
#include <math.h>
#include "HeapInterface.h"
template<typename T>
class MaxKHeap: public HeapInterface<T>{
// See Implementation for Pre,Post,Return Conditions
public:
MaxKHeap(int size);
void insert_bottomup(T val);
void insert_upheap(T val);
void buildheap();
bool isEmpty() const;
bool deleteMin();
int findMin();
int findMax();
bool deleteMax();
void levelOrder();
private:
T m_array[10000000];
int k;
int num_elements;
};
#include "max_k_heap.hpp"
#endif
|
caa6dd806eb433d9858ac684271e7ec91d3f055d | 1e02ed3f3369d36379be725a6b4cec6b155e97c9 | /threads/main.cpp | cb6f5782e82a91f6beadd08dedb03add14c3ef54 | [] | no_license | dormon/prj | 0f803287f316606ff4e0f475930a6f9e7a6b3bb9 | 7ab62eedccd8153ac905fc27f74adcaf634771c7 | refs/heads/master | 2023-08-04T04:23:12.785661 | 2023-07-20T23:19:45 | 2023-07-20T23:19:45 | 89,816,202 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 563 | cpp | main.cpp | #include<iostream>
#include<memory>
#include<set>
#include<vector>
#include<map>
#include<sstream>
#include<thread>
#include<mutex>
#include<chrono>
int data = 0;
std::mutex mtx;
void thread_a(){
std::lock_guard<std::mutex>guard(mtx);
for(int i=0;i<100;++i)
data += 1;
}
void thread_b(){
std::lock_guard<std::mutex>guard(mtx);
for(int i=0;i<100;++i)
data += 2;
}
int main(){
std::thread a(thread_a);
std::thread b(thread_b);
a.join();
b.join();
std::cout<<"main thread ends"<<std::endl;
std::cout<<data<<std::endl;
return 0;
}
|
de670e0fbfab5517d8f469223c0115fd530d7093 | 9a1e18c88790eb05dfcf4a8f6ef50ade8ff4f731 | /objcLib/test/bench/doc/ctut/tmp/boss.h | 0ee19ea794321f1c19a2ce0b649fc8d64ce16c0d | [] | no_license | CodeFarmsInc/QSP | 25d6af4d5bfc064f115ade014a39290f7cc02149 | 031c9fe2ee4008fce3837ed08bff1f6511c26b15 | refs/heads/master | 2021-01-25T14:58:32.496669 | 2018-03-04T01:13:45 | 2018-03-04T01:13:45 | 123,725,986 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,320 | h | boss.h |
// -------- data structure SINGLE LINK ---------------
// EQUIVALENT OF:
// template <class Parent, class Child> class boss_SingleLink
// ---------------------------------------------------
#ifndef ZZ_boss_SINGLE_LINK_INCLUDED
#define ZZ_boss_SINGLE_LINK_INCLUDED
class Department;
class Manager;
// ----------------------------------------------------------
// description of the cooperating classes
// ----------------------------------------------------------
class boss_SingleLinkParent {
public:
Manager* linkTo;
boss_SingleLinkParent(){ linkTo=NULL; }
};
class boss_SingleLinkChild {
};
// The following class is used when Parent==Child
class boss_SingleLinkParentSingleLinkChild {
public:
Manager* linkTo;
boss_SingleLinkParentSingleLinkChild(){ linkTo=NULL; }
};
// ----------------------------------------------------------
class boss_SingleLink {
public:
static void add(Department *p,Manager *c);
static void remove(Department *p);
static Manager* const target(Department *p);
// historical, DOL and earlier versions of IN_CODE interfaces
static void del(Department *p){ remove(p); }
static Manager* const fwd(Department *p){ return target(p); }
static Manager* const next(Department *p){ return target(p); }
};
#endif // ZZ_boss_SINGLE_LINK_INCLUDED
|
9a444b2b066dc7158bb09617ea2704d5ee9d475d | 59f03b13be6b0518a3368ee63443c02bc3afb301 | /src/OrbitGl/CaptureViewElement.cpp | 2aecc95158b0a5f7e5402dc6a8665066891c43e7 | [
"BSD-2-Clause",
"LicenseRef-scancode-free-unknown"
] | permissive | idfumg/orbit | f91e8d58c3dbe4b88ea19d2b9bc5245d1f3257e4 | 578b20d3647b483b0d7834072b76933891c442fc | refs/heads/main | 2023-07-25T06:29:18.090625 | 2021-08-31T12:54:05 | 2021-09-01T16:36:15 | 402,305,769 | 1 | 0 | BSD-2-Clause | 2021-09-02T05:51:40 | 2021-09-02T05:51:39 | null | UTF-8 | C++ | false | false | 1,264 | cpp | CaptureViewElement.cpp | // Copyright (c) 2020 The Orbit Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "CaptureViewElement.h"
#include "TimeGraph.h"
#include "Viewport.h"
namespace orbit_gl {
CaptureViewElement::CaptureViewElement(CaptureViewElement* parent, TimeGraph* time_graph,
orbit_gl::Viewport* viewport, TimeGraphLayout* layout)
: viewport_(viewport), layout_(layout), time_graph_(time_graph), parent_(parent) {
CHECK(layout != nullptr);
}
void CaptureViewElement::SetWidth(float width) {
if (width != width_) {
width_ = width;
RequestUpdate();
}
}
void CaptureViewElement::OnPick(int x, int y) {
mouse_pos_last_click_ = viewport_->ScreenToWorldPos(Vec2i(x, y));
picking_offset_ = mouse_pos_last_click_ - pos_;
mouse_pos_cur_ = mouse_pos_last_click_;
picked_ = true;
}
void CaptureViewElement::OnRelease() {
picked_ = false;
RequestUpdate();
}
void CaptureViewElement::OnDrag(int x, int y) {
mouse_pos_cur_ = viewport_->ScreenToWorldPos(Vec2i(x, y));
RequestUpdate();
}
void CaptureViewElement::RequestUpdate() {
if (parent_ != nullptr) {
parent_->RequestUpdate();
}
}
} // namespace orbit_gl |
493e859d4e6ad32e93c422ce4825bd0388c52618 | 4e3183ff9dcc6a3bc2318deaec8eff6901d6967f | /BaseDataStructure/tree/binarylinkedlist.cpp | 9e25d446f6f1b87e922d3bc7722256fbd787be71 | [
"MIT"
] | permissive | accountos/LeetCodeLearning | 54a471afe974bd1413defacdb9804588131d2041 | 3c22a4fcdfe8b47f9f64b939c8b27742c4e30b79 | refs/heads/master | 2023-08-15T00:41:09.522876 | 2021-02-26T02:36:14 | 2021-02-26T02:36:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,838 | cpp | binarylinkedlist.cpp | //
// Created by Jesson on 2021/2/21.
//
#pragma once
#include<iostream>
#include<stack>
#include<queue>
using namespace std;
struct binary_tree {
int data ; // Data area
binary_tree * left;
binary_tree * right;
};
typedef struct binary_tree node;
/**
*
*่พน็้ฎ้ข
* @param tree
* @param val
*/
void insert(node ** tree, int val) {
node * temp = NULL;
if(!(*tree)) {
temp = (node *)malloc(sizeof(node));
temp->left = temp->right = NULL;
temp->data = val;
*tree = temp;
return ;
}
if (val < (*tree)->data) {
insert(&(*tree)->left,val);
}else if (val > (*tree)->data) {
insert(&(*tree)->right,val);
}
}
void deltree(node * tree) {
if(tree) {
deltree(tree->left);
deltree(tree->right);
free(tree);
}
}
void print_preorder(node * tree) {
if(tree) {
printf("%d\n",tree->data);
print_preorder(tree->left);
print_preorder(tree->right);
}
}
void print_inorder(node * tree) {
if(tree) {
print_inorder(tree->left);
printf("%d\n",tree->data);
print_inorder(tree->right);
}
}
void print_postorder(node * tree) {
if(tree) {
print_postorder(tree->left);
print_postorder(tree->right);
printf("%d\n",tree->data);
}
}
int main(void)
{
node * root;
node * tmp;
root = NULL;
/* Inserting nodes into tree */
insert(&root,9);
insert(&root,4);
insert(&root,15);
insert(&root,6);
insert(&root,12);
insert(&root,17);
insert(&root,2);
printf("Pre Order Display\n");
print_preorder(root);
printf("In Order Display\n");
print_inorder(root);
printf("Post Order Display\n");
print_postorder(root);
/* Deleting all nodes of tree */
deltree(root);
} |
ebe03b3069d17f4aabccff8384eb48eb698c28df | ed854678ba4f278144e26bcfeba9ce6227353f80 | /gravity/gravity.h | 26732beb3700a984a33ccd8e171dbaa65b08a7a9 | [
"BSD-3-Clause"
] | permissive | moses-mugoya/gehuehist | d246115e280d8e8d79cf4dd5075f9a86a3a8c4b2 | 02e69352410c5e2455c74076226868cc1183129c | refs/heads/master | 2020-08-06T00:38:21.480755 | 2016-01-25T11:16:23 | 2016-01-25T11:16:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 250 | h | gravity.h | #ifndef GRAVITY_H
#define GRAVITY_H
#include <vector>
#include <cmath>
using namespace std;
struct Point {
double x;
double y;
Point(double a, double b) : x(a), y(b){};
};
extern void gravity(vector<double>&,vector<double>&);
#endif
|
4f3d2ac5a5c48d0bc5d1c78e449e348ece94b626 | b22588340d7925b614a735bbbde1b351ad657ffc | /athena/Reconstruction/Jet/JetInterface/Root/IJetConsumer.cxx | c274fa1b6c6cebad41bb89fcdcab2f43f588f8e4 | [] | 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 | 324 | cxx | IJetConsumer.cxx | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// IJetConsumer.cxx
#include "JetInterface/IJetConsumer.h"
//**********************************************************************
IJetConsumer::~IJetConsumer() { }
//**********************************************************************
|
77fab655a65f634e0fd56b18a3ae485b2628801d | 6d254e667d22baa19f96aeca858391792589fc9c | /UserService.h | 8de1ab607a3c3dd33c9355d9f93fc78beeee4851 | [] | no_license | mikshaspolya/kursach_oop | feb3a338ab2624d11cfcf1c0397cae0fb3d9805f | 53b90d1a0e43c78210e7ea454c27a0b9a0a6b97a | refs/heads/master | 2023-08-28T20:13:23.665244 | 2021-11-09T15:02:33 | 2021-11-09T15:02:33 | 425,566,593 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 839 | h | UserService.h | #pragma once
#include "BaseService.h"
#include "UserDTO.h"
class UserService : public BaseService<UserDTO>
{
private:
static bool CompareLogin(string login);
static bool CompareLoginAndPassword(string login, string password);
static bool CheckIsAdmin(UserDTO obj);
public:
void Create(UserDTO obj);
vector<UserDTO> Read();
void Update(vector<UserDTO> users, int idOfUser, int numOfField);
void Delete(vector<UserDTO> users, int idOfUser);
UserDTO* ReadSpecific(int id);
void Authorization(UserDTO& auth);
void MakeAdmin(vector<UserDTO> users, int idOfUser);
static int CountNumOfStr();
static int GetLastId();
static void UpdateLastId(int newId);
static void EncryptPassword(string& password);
static void Print(vector<UserDTO> users);
ostream& printLine(ostream& stream);
ostream& printContent(ostream& stream);
};
|
292c826f894194849ce86f1a09d01e07210ccc36 | 065b12aa319f0431d1ab2912b0893ca357b7109c | /StExBar/src/ContextMenu.cpp | 8406e9b2c3eed4e8bd85c094046ce7cca4d3b2de | [] | no_license | mcjt/tools | 1dfef3e35091292c3901031c3a7cd273936210fb | ed896afbd0e85980a33fc02b5e3dc7372dbc6d8d | refs/heads/master | 2021-05-20T08:40:23.596696 | 2020-03-18T12:58:47 | 2020-03-18T12:58:47 | 252,202,387 | 1 | 0 | null | 2020-04-01T14:42:42 | 2020-04-01T14:42:41 | null | UTF-8 | C++ | false | false | 12,347 | cpp | ContextMenu.cpp | // StExBar - an explorer toolbar
// Copyright (C) 2007-2010, 2012, 2014, 2017 - Stefan Kueng
// 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 2
// 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, write to the Free Software Foundation,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
#include "stdafx.h"
#include "SRBand.h"
#include "ItemIDList.h"
#include "VistaIcons.h"
#include "PathUtils.h"
#include "resource.h"
#include <VersionHelpers.h>
#define GetPIDLFolder(pida) (LPCITEMIDLIST)(((LPBYTE)pida)+(pida)->aoffset[0])
#define GetPIDLItem(pida, i) (LPCITEMIDLIST)(((LPBYTE)pida)+(pida)->aoffset[i+1])
int g_shellidlist = RegisterClipboardFormat(CFSTR_SHELLIDLIST);
LPCTSTR g_MenuIDString = _T("StEx");
STDMETHODIMP CDeskBand::Initialize(LPCITEMIDLIST pIDFolder,
LPDATAOBJECT pDataObj,
HKEY /* hRegKey */)
{
m_ContextItems.clear();
m_ContextDirectory.clear();
// get selected files/folders
if (pDataObj)
{
STGMEDIUM medium;
FORMATETC fmte = {(CLIPFORMAT)g_shellidlist,
(DVTARGETDEVICE FAR *)NULL,
DVASPECT_CONTENT,
-1,
TYMED_HGLOBAL};
HRESULT hres = pDataObj->GetData(&fmte, &medium);
if (SUCCEEDED(hres) && medium.hGlobal)
{
//Enumerate PIDLs which the user has selected
CIDA* cida = (CIDA*)GlobalLock(medium.hGlobal);
ItemIDList parent( GetPIDLFolder (cida));
int count = cida->cidl;
for (int i = 0; i < count; ++i)
{
ItemIDList child (GetPIDLItem (cida, i), &parent);
tstring str = child.toString();
if (str.empty() == false)
{
m_ContextItems[str] = ENABLED_VIEWPATH|ENABLED_FOLDERSELECTED|ENABLED_FILESELECTED;
}
}
GlobalUnlock(medium.hGlobal);
ReleaseStgMedium ( &medium );
if (medium.pUnkForRelease)
{
IUnknown* relInterface = (IUnknown*)medium.pUnkForRelease;
relInterface->Release();
}
}
}
// get folder background
if (pIDFolder)
{
ItemIDList list(pIDFolder);
m_ContextDirectory = list.toString();
}
return NOERROR;
}
STDMETHODIMP CDeskBand::QueryContextMenu(HMENU hMenu,
UINT indexMenu,
UINT idCmdFirst,
UINT /*idCmdLast*/,
UINT uFlags)
{
if ((uFlags & CMF_DEFAULTONLY)!=0)
return S_OK; //we don't change the default action
if (((uFlags & 0x000f)!=CMF_NORMAL)&&(!(uFlags & CMF_EXPLORE))&&(!(uFlags & CMF_VERBSONLY)))
return S_OK;
if ((m_ContextDirectory.empty()) && (m_ContextItems.empty()))
return S_OK;
if (m_ContextDirectory.empty())
{
// folder is empty, but maybe files are selected
if (m_ContextItems.empty())
return S_OK; // nothing selected - we don't have a menu to show
// check whether a selected entry is an UID - those are namespace extensions
// which we can't handle
for (std::map<tstring, ULONG>::const_iterator it = m_ContextItems.begin(); it != m_ContextItems.end(); ++it)
{
if (_tcsncmp(it->first.c_str(), _T("::{"), 3)==0)
return S_OK;
}
}
else
{
// ignore namespace extensions
if (_tcsncmp(m_ContextDirectory.c_str(), _T("::{"), 3)==0)
return S_OK;
}
if (DWORD(CRegStdDWORD(_T("Software\\StefansTools\\StExBar\\ContextMenu"), TRUE)) == FALSE)
return S_OK;
//check if we already added our menu entry for a folder.
//we check that by iterating through all menu entries and check if
//the dwItemData member points to our global ID string. That string is set
//by our shell extension when the folder menu is inserted.
TCHAR menubuf[MAX_PATH];
int count = GetMenuItemCount(hMenu);
for (int i=0; i<count; ++i)
{
MENUITEMINFO miif;
SecureZeroMemory(&miif, sizeof(MENUITEMINFO));
miif.cbSize = sizeof(MENUITEMINFO);
miif.fMask = MIIM_DATA;
miif.dwTypeData = menubuf;
miif.cch = _countof(menubuf);
GetMenuItemInfo(hMenu, i, TRUE, &miif);
if (miif.dwItemData == (ULONG_PTR)g_MenuIDString)
return S_OK;
}
UINT idCmd = idCmdFirst;
//create the sub menu
HMENU subMenu = CreateMenu();
int indexSubMenu = 0;
m_commands.LoadFromFile();
int index = 0;
for (int j = 0; j < m_commands.GetCount(); ++j)
{
MENUITEMINFO menuiteminfo = {0};
Command cmd = m_commands.GetCommand(j);
m_hotkeys[cmd.key] = j;
if ((cmd.commandline.compare(INTERNALCOMMANDHIDDEN)==0)&&(cmd.name.compare(_T("Options")) == 0))
{
cmd.commandline = INTERNALCOMMAND; // make sure the options button is never hidden.
m_commands.SetCommand(j, cmd);
}
if ((cmd.name.compare(_T("StexBar Internal Edit Box")) == 0)||
(cmd.commandline.compare(INTERNALCOMMANDHIDDEN) == 0)||
(cmd.name.compare(_T("New Folder")) == 0))
{
continue;
}
bool bEnabled = cmd.enabled_viewpath ||
(cmd.enabled_fileselected && !m_ContextItems.empty()) ||
(cmd.enabled_folderselected && (!m_ContextItems.empty() || !m_ContextDirectory.empty())) ||
(cmd.enabled_noselection && (m_ContextItems.empty())) ||
(cmd.enabled_selectedcount && (cmd.enabled_selectedcount == (int)!m_ContextItems.empty()));
HICON hIcon = LoadCommandIcon(cmd);
if (hIcon)
{
menuiteminfo.hbmpItem = IsWindowsVistaOrGreater() ? IconToBitmapPARGB32(hIcon) : HBMMENU_CALLBACK;
DestroyIcon(hIcon);
}
else
menuiteminfo.hbmpItem = NULL;
if (!cmd.separator)
m_tooltips[j] = cmd.name.c_str();
myIDMap[idCmd - idCmdFirst] = j;
myIDMap[idCmd] = j;
menuiteminfo.cbSize = sizeof(menuiteminfo);
menuiteminfo.fMask = cmd.separator ? MIIM_FTYPE : MIIM_FTYPE | MIIM_ID | MIIM_BITMAP | MIIM_STRING | MIIM_STATE;
menuiteminfo.fType = cmd.separator ? MFT_SEPARATOR : MFT_STRING;
menuiteminfo.fState = bEnabled ? MFS_ENABLED : MFS_DISABLED;
TCHAR menutextbuf[100];
_tcscpy_s(menutextbuf, _countof(menutextbuf), m_commands.GetCommandPtr(j)->name.c_str());
menuiteminfo.dwTypeData = menutextbuf;
menuiteminfo.wID = idCmd++;
InsertMenuItem(subMenu, indexSubMenu++, TRUE, &menuiteminfo);
index++;
}
//add sub menu to main context menu
//don't use InsertMenu because this will lead to multiple menu entries in the explorer file menu.
//see http://support.microsoft.com/default.aspx?scid=kb;en-us;214477 for details of that.
MENUITEMINFO menuiteminfo = {0};
SecureZeroMemory(&menuiteminfo, sizeof(menuiteminfo));
menuiteminfo.cbSize = sizeof(menuiteminfo);
menuiteminfo.fMask = MIIM_FTYPE | MIIM_ID | MIIM_SUBMENU | MIIM_DATA | MIIM_STRING;
menuiteminfo.fType = MFT_STRING;
menuiteminfo.dwTypeData = _T("StEx");
menuiteminfo.hSubMenu = subMenu;
menuiteminfo.wID = idCmd++;
InsertMenuItem(hMenu, indexMenu++, TRUE, &menuiteminfo);
//return number of menu items added
return ResultFromScode(MAKE_SCODE(SEVERITY_SUCCESS, 0, (USHORT)(idCmd - idCmdFirst)));
}
// This is called when you invoke a command on the menu:
STDMETHODIMP CDeskBand::InvokeCommand(LPCMINVOKECOMMANDINFO lpcmi)
{
HRESULT hr = E_INVALIDARG;
if (lpcmi == NULL)
return hr;
if ((!m_ContextDirectory.empty()) || (!m_ContextItems.empty()))
{
UINT_PTR idCmd = LOWORD(lpcmi->lpVerb);
// See if we have a handler interface for this id
std::map<UINT_PTR, UINT_PTR>::const_iterator id_it = myIDMap.lower_bound(idCmd);
if (id_it != myIDMap.end() && id_it->first == idCmd)
{
if (id_it->second >= (UINT_PTR)m_commands.GetCount())
DebugBreak();
Command cmd = m_commands.GetCommand((int)id_it->second);
if (m_ContextDirectory.empty())
{
if (m_ContextItems.size() == 1)
{
if (PathIsDirectory(m_ContextItems.begin()->first.c_str()))
m_ContextDirectory = m_ContextItems.begin()->first;
else
m_ContextDirectory = CPathUtils::GetParentDirectory(m_ContextItems.begin()->first);
}
else
m_ContextDirectory = CPathUtils::GetParentDirectory(m_ContextItems.begin()->first);
if (m_ContextDirectory.empty())
m_ContextDirectory = m_currentDirectory;
}
HandleCommand(lpcmi->hwnd, cmd, m_ContextDirectory, m_ContextItems);
myIDMap.clear();
hr = S_OK;
}
}
return hr;
}
// This is for the status bar and things like that:
STDMETHODIMP CDeskBand::GetCommandString(UINT_PTR idCmd,
UINT uFlags,
UINT FAR * /*reserved*/,
LPSTR pszName,
UINT cchMax)
{
HRESULT hr = E_INVALIDARG;
//do we know the id?
std::map<UINT_PTR, UINT_PTR>::const_iterator id_it = myIDMap.lower_bound(idCmd);
if (id_it == myIDMap.end() || id_it->first != idCmd)
{
return hr; //no, we don't
}
if (m_tooltips.find((int)id_it->first) == m_tooltips.end())
return hr;
const TCHAR * desc = m_tooltips[(int)id_it->first].c_str();
switch(uFlags)
{
case GCS_HELPTEXTW:
{
std::wstring help = desc;
lstrcpynW((LPWSTR)pszName, help.c_str(), cchMax);
hr = S_OK;
break;
}
}
return hr;
}
STDMETHODIMP CDeskBand::HandleMenuMsg(UINT uMsg, WPARAM wParam, LPARAM lParam)
{
LRESULT res;
return HandleMenuMsg2(uMsg, wParam, lParam, &res);
}
STDMETHODIMP CDeskBand::HandleMenuMsg2(UINT uMsg, WPARAM /*wParam*/, LPARAM lParam, LRESULT *pResult)
{
LRESULT res;
if (pResult == NULL)
pResult = &res;
*pResult = FALSE;
switch (uMsg)
{
case WM_MEASUREITEM:
{
MEASUREITEMSTRUCT* lpmis = (MEASUREITEMSTRUCT*)lParam;
if (lpmis==NULL)
break;
lpmis->itemWidth += 2;
if (lpmis->itemHeight < 16)
lpmis->itemHeight = 16;
*pResult = TRUE;
}
break;
case WM_DRAWITEM:
{
DRAWITEMSTRUCT* lpdis = (DRAWITEMSTRUCT*)lParam;
if ((lpdis==NULL)||(lpdis->CtlType != ODT_MENU))
return S_OK; //not for a menu
int cmdID = (int)myIDMap[lpdis->itemID];
if (m_commands.GetCount() <= cmdID)
return S_OK;
Command cmd = m_commands.GetCommand(cmdID);
HICON hIcon = LoadCommandIcon(cmd);
if (hIcon == NULL)
return S_OK;
DrawIconEx(lpdis->hDC,
lpdis->rcItem.left - 16,
lpdis->rcItem.top + (lpdis->rcItem.bottom - lpdis->rcItem.top - 16) / 2,
hIcon, 16, 16,
0, NULL, DI_NORMAL);
DestroyIcon(hIcon);
*pResult = TRUE;
}
break;
default:
return S_OK;
}
return S_OK;
}
|
7c551fea12892c93b7887e31a7960d6c80e30724 | 53e5f3b52f6d3aab128be556f473e9645be9b069 | /include/moost/utils/yesno.hpp | f3dd4c24aca4718763df70b9b1875644fbf9f69d | [
"MIT"
] | permissive | 1901/libmoost | 7fe1fecdbec78f026c40a2d06eb3885dc2105bdf | 895db7cc5468626f520971648741488c373c5cff | refs/heads/master | 2021-01-21T04:11:53.023058 | 2013-02-22T11:49:18 | 2013-02-22T11:49:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,035 | hpp | yesno.hpp | /* vim:set ts=3 sw=3 sts=3 et: */
/**
* Copyright ยฉ 2008-2013 Last.fm Limited
*
* This file is part of libmoost.
*
* 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 MOOST_UTILS_YESNO_HPP__
#define MOOST_UTILS_YESNO_HPP__
#include <stdexcept>
#include <string>
#include <iostream>
namespace moost { namespace utils {
class YesNo
{
public:
YesNo(std::string const & sMsg, bool bImplicitNo = false) : bYes(false)
{
std::string s;
for(;;)
{
std::cout << sMsg << " <yes|no> " << std::flush;
if(!std::getline(std::cin, s))
{
throw std::runtime_error("Invalid input stream");
}
if(s == "yes")
{
bYes = true;
break;
}
else
if(bImplicitNo || s == "no")
{
break;
}
}
}
bool IsYes() const { return bYes; }
bool IsNo() const { return !bYes; }
private:
bool bYes;
};
}}
#endif // MOOST_UTILS_YESNO_HPP__
|
8eea565594ee2f328bc9983e89f6085c6d0e3beb | 02df7f45b5e6a451aa660532bc97422f266f4636 | /playground/ast.cpp | df582252bdb243ba81570514743c75a09225f116 | [
"MIT"
] | permissive | tobiashienzsch/tcc | 70a64209ace15282b14a08ffac398daa1b1f217e | 0311a92804fb32baca8b562bb18683e40f4686e2 | refs/heads/master | 2021-06-25T04:08:17.219726 | 2021-04-21T03:30:57 | 2021-04-21T03:30:57 | 227,749,111 | 0 | 0 | MIT | 2020-04-06T21:16:54 | 2019-12-13T03:36:15 | C++ | UTF-8 | C++ | false | false | 523 | cpp | ast.cpp | #include "ast.hpp"
auto operator<<(std::ostream &out, ast_node_type const type) -> std::ostream & {
switch (type) {
case ast_node_type::op: {
out << "Operator";
break;
}
case ast_node_type::constant: {
out << "Constant";
break;
}
case ast_node_type::binary_expression: {
out << "BinaryExpr";
break;
}
case ast_node_type::unary_expression: {
out << "UnaryExpr";
break;
}
case ast_node_type::braced_expression: {
out << "BracedExpr";
break;
}
}
return out;
} |
9413bd4426b98253bc1906693654554d64c2ca3b | 51bfe0ba28825cdd60d9980a7a4d35700c3462f9 | /copy cons.cpp | 5e9c5fd7b39834c652115f81272d811b95a6f3f1 | [] | no_license | ManasviRaj/cpp-programs | 0f5ac00f06f6ccf080ba3a85b08b265f28639a89 | cbf3bc43fa164045ba4a3cf5898d472d99fe6c6a | refs/heads/master | 2022-12-28T20:43:55.164369 | 2020-10-17T17:00:37 | 2020-10-17T17:00:37 | 304,926,535 | 0 | 0 | null | 2020-10-17T17:00:39 | 2020-10-17T16:57:43 | null | UTF-8 | C++ | false | false | 413 | cpp | copy cons.cpp | #include<iostream>
using namespace std;
class example
{
int a,b;
public:
example(int x,int y)
{
a=x;
b=y;
cout<<"i m constructor:";
}
example(const example&obj)
{
a=obj.a;
b=obj.b;
cout<<"i m copy constructor:";
}
void display()
{
cout<<"\nvalues:"<<a<<b;
}
};
int main()
{
example obj(36,78);
example obj2=obj;
obj.display();
obj2.display();
return 0;
}
|
77df212d4f1d70bb9633ef7ff440ffa069a21bb7 | bc43ce4c2c6dc1217b4a607eaa63bcaa7fdaebd1 | /UVA_code/pset2/forest.cpp | 3bc2aaf1a476a07d21761c5d59e3200492b3d168 | [] | no_license | AlanCBH/ICPC-code-sample | 8216424e94c65a2235f06f2d97889bd626ecc0f8 | 2eebb8496a8f2c50569ff96da98b9bb46f357d7d | refs/heads/master | 2021-08-17T00:13:14.386838 | 2021-06-24T22:04:05 | 2021-06-24T22:04:05 | 219,434,819 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 422 | cpp | forest.cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int num;
string read;
cin >> num;
getline(cin, read);
for (int i = 0; i < num; i++) {
map<int, set<int>> heard;
getline(cin, read);
while (read != '\n') {
size sz;
int p = stoi(read, &sz);
int t = stoi(read.substr(sz));
heard[p].insert(t);
getline(cin, read);
}
map<set<int>, int> total_map;
}
return 0;
} |
c43bef1993a3ae8c995ede94a1ecf9389af7d3d6 | 1eef5d9ce175dd7efca403b3412457b631512bfd | /core/Item_factory.h | 1341fb26531f420d4d02d72edcb412c2e715601a | [] | no_license | AnyaIliyina/geo | 27cd7808ec4b9b1bd750d2ded028d430ba81928b | c4d6617fa6c33a21a6bcfa6b1887b64a010fb146 | refs/heads/master | 2021-01-13T14:37:13.258111 | 2016-05-05T13:44:10 | 2016-05-05T13:44:10 | 53,266,650 | 1 | 0 | null | 2016-04-26T12:20:55 | 2016-03-06T17:17:32 | C++ | UTF-8 | C++ | false | false | 286 | h | Item_factory.h | /*!
\file
\brief ะคะฐะฑัะธะบะฐ ัะปะตะผะตะฝัะพะฒ
\author ะงะตัะฝััะตะฒ ะ.ะ .
\date ะะฟัะตะปั 2016
*/
#pragma once
#include <QVariant>
class BaseItem;
static class ItemFactory
{
public:
static BaseItem* loadFromDb(int type);
static BaseItem* createNew(int type);
}; |
bdcbc748294c6ba0eb12ec2b40421e906baf13cc | 38b9daafe39f937b39eefc30501939fd47f7e668 | /tutorials/2WayCouplingOceanWave3D/EvalResults180628-Eta-W/28.6/p_rgh | 49d080944719d2b4a737e4717b9e798e8cdee946 | [] | no_license | rubynuaa/2-way-coupling | 3a292840d9f56255f38c5e31c6b30fcb52d9e1cf | a820b57dd2cac1170b937f8411bc861392d8fbaa | refs/heads/master | 2020-04-08T18:49:53.047796 | 2018-08-29T14:22:18 | 2018-08-29T14:22:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196,990 | p_rgh | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "28.6";
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
21420
(
392.879
379.031
361.623
340.858
316.996
290.366
261.339
230.299
197.639
163.803
129.209
94.2669
59.4037
25.0029
-8.39322
-40.3866
-71.7614
-101.889
-130.536
-157.532
-182.78
-206.214
-227.795
-247.521
-265.407
-281.482
-295.786
-308.365
-319.27
-328.551
-336.255
-342.428
-347.111
-350.336
-352.075
-352.353
-351.248
-348.701
-344.693
-339.217
-332.238
-323.728
-313.628
-301.902
-288.508
-273.409
-256.543
-237.908
-217.484
-195.272
-171.306
-145.657
-118.408
-89.6914
-59.6724
-28.614
3.27177
35.8455
68.7962
101.754
134.38
166.306
197.164
226.6
254.26
279.789
302.862
323.171
340.429
354.384
364.81
371.525
374.418
373.374
368.425
359.554
346.808
330.394
310.501
287.402
261.396
232.817
202.064
169.522
135.599
100.728
65.318
29.7727
-5.5222
-40.2107
-73.9446
-106.489
-137.569
-166.972
-194.53
-220.118
-243.648
-265.073
-284.385
-301.605
-316.781
-329.983
-341.283
-350.777
-358.556
-364.698
-369.299
-372.43
-374.127
-374.435
-373.436
-371.123
-367.513
-362.617
-356.434
-348.951
-340.157
-330.04
-318.576
-305.745
-291.526
-275.895
-258.832
-240.318
-220.34
-198.89
-175.974
-151.613
-125.843
-98.7272
-70.3592
-40.8507
-10.415
20.7475
52.3863
84.2033
115.861
146.988
177.18
206.017
233.07
257.916
280.148
299.387
315.289
327.561
335.966
340.327
340.449
336.471
328.298
316.042
299.896
280.106
256.978
230.883
202.234
171.476
139.083
105.542
71.3321
36.915
2.7253
-30.8486
-63.4668
-94.7671
-124.665
-152.916
-179.406
-204.062
-226.85
-247.773
-266.852
-284.133
-299.669
-313.518
-325.749
-336.425
-345.615
-353.38
-359.769
-364.834
-368.616
-371.141
-372.453
-372.544
-371.397
-369.062
-365.495
-360.663
-354.529
-347.054
-338.178
-327.843
-315.994
-302.569
-287.51
-270.78
-252.34
-232.17
-210.275
-186.677
-161.42
-134.58
-106.264
-76.6131
-45.7619
-13.9906
18.4748
51.3488
84.3112
117.008
149.064
180.091
209.689
237.462
263.022
286.002
306.059
322.89
336.229
345.869
351.661
353.431
351.288
345.165
335.167
321.444
304.202
283.698
260.243
234.182
205.889
175.773
144.252
111.745
78.6692
45.427
12.3954
-20.0801
-51.6846
-82.1565
-111.268
-138.834
-164.71
-188.791
-211.008
-231.326
-249.733
-266.242
-280.883
-293.702
-304.753
-314.102
-321.817
-327.965
-332.615
-335.834
-337.691
-338.223
-337.457
-335.482
-332.298
-327.921
-322.36
-315.599
-307.621
-298.416
-287.931
-276.125
-262.959
-248.357
-232.27
-214.653
-195.458
-174.656
-152.257
-128.271
-102.761
-75.7862
-47.457
-17.7715
13.7253
45.2703
77.1436
109.085
140.8
171.947
202.136
230.968
258.045
282.956
305.332
324.826
341.111
353.919
363.031
368.266
369.493
366.78
360.05
349.41
335.082
317.324
296.432
272.73
246.625
218.524
188.849
158.029
126.473
94.5914
62.7633
31.2983
0.981514
-28.027
-56.3918
-83.6708
-109.633
-134.14
-157.104
-178.468
-198.208
-216.332
-232.854
-247.808
-261.228
-273.151
-283.619
-292.661
-300.306
-306.574
-311.481
-315.035
-317.222
-318.009
-317.119
-314.783
-310.979
-305.688
-298.903
-290.62
-280.806
-269.459
-256.557
-242.103
-226.101
-208.561
-189.493
-168.928
-146.907
-123.492
-98.812
-73.0812
-46.7883
-22.7312
-16.1979
393.03
379.171
361.75
340.97
317.091
290.443
261.398
230.339
197.661
163.807
129.196
94.2389
59.3624
24.9499
-8.45315
-40.4553
-71.8362
-101.969
-130.618
-157.616
-182.864
-206.298
-227.877
-247.601
-265.485
-281.557
-295.858
-308.434
-319.336
-328.615
-336.316
-342.487
-347.169
-350.391
-352.13
-352.411
-351.307
-348.759
-344.751
-339.277
-332.3
-323.792
-313.694
-301.971
-288.58
-273.483
-256.619
-237.986
-217.564
-195.353
-171.386
-145.736
-118.484
-89.7634
-59.7392
-28.6725
3.22249
35.8062
68.7688
101.74
134.38
166.321
197.195
226.647
254.323
279.868
302.956
323.28
340.55
354.517
364.951
371.675
374.579
373.523
368.572
359.697
346.945
330.521
310.614
287.499
261.476
232.879
202.107
169.546
135.605
100.716
65.29
29.7298
-5.57844
-40.2784
-74.0222
-106.575
-137.66
-167.068
-194.629
-220.218
-243.748
-265.171
-284.481
-301.698
-316.871
-330.069
-341.364
-350.854
-358.629
-364.769
-369.367
-372.496
-374.188
-374.497
-373.497
-371.183
-367.574
-362.678
-356.495
-349.014
-340.221
-330.105
-318.643
-305.813
-291.596
-275.967
-258.906
-240.394
-220.417
-198.968
-176.053
-151.692
-125.921
-98.8033
-70.4312
-40.918
-10.4753
20.6961
52.3457
84.1755
115.848
146.991
177.201
206.057
233.129
257.994
280.244
299.5
315.417
327.701
336.115
340.481
340.615
336.62
328.447
316.183
300.025
280.219
257.073
230.959
202.289
171.51
139.097
105.536
71.3073
36.8737
2.66982
-30.9157
-63.5417
-94.8521
-124.753
-153.007
-179.497
-204.152
-226.939
-247.859
-266.936
-284.213
-299.746
-313.591
-325.818
-336.492
-345.679
-353.442
-359.828
-364.891
-368.671
-371.196
-372.507
-372.597
-371.452
-369.118
-365.551
-360.72
-354.589
-347.116
-338.244
-327.911
-316.066
-302.643
-287.587
-270.859
-252.422
-232.253
-210.359
-186.76
-161.502
-134.66
-106.34
-76.6834
-45.8266
-14.0465
18.4292
51.3152
84.2911
117.003
149.075
180.119
209.735
237.525
263.103
286.099
306.171
323.015
336.365
346.013
351.809
353.589
351.432
345.309
335.303
321.57
304.314
283.795
260.324
234.244
205.934
175.799
144.26
111.736
78.6441
45.3877
12.3435
-20.1426
-51.756
-82.2348
-111.352
-138.921
-164.8
-188.881
-211.098
-231.414
-249.819
-266.326
-280.964
-293.78
-304.828
-314.174
-321.886
-328.031
-332.678
-335.895
-337.75
-338.277
-337.512
-335.536
-332.351
-327.974
-322.414
-315.653
-307.677
-298.473
-287.991
-276.188
-263.024
-248.426
-232.341
-214.726
-195.534
-174.733
-152.334
-128.348
-102.837
-75.8599
-47.5271
-17.8386
13.6733
45.2284
77.1114
109.065
140.795
171.958
202.165
231.015
258.11
283.039
305.432
324.942
341.24
354.06
363.181
368.421
369.658
366.928
360.196
349.549
335.209
317.437
296.528
272.807
246.684
218.564
188.871
158.033
126.461
94.565
62.7248
31.2499
0.927651
-28.0898
-56.4591
-83.7417
-109.707
-134.214
-157.179
-178.541
-198.28
-216.401
-232.921
-247.873
-261.29
-273.211
-283.677
-292.717
-300.361
-306.629
-311.535
-315.089
-317.277
-318.064
-317.176
-314.84
-311.036
-305.747
-298.963
-290.681
-280.869
-269.523
-256.622
-242.168
-226.167
-208.628
-189.56
-168.994
-146.974
-123.557
-98.8748
-73.1388
-46.8342
-22.7463
-16.2599
393.331
379.451
362.003
341.193
317.281
290.598
261.516
230.42
197.704
163.814
129.17
94.1826
59.2799
24.8437
-8.57318
-40.5924
-71.9859
-102.127
-130.783
-157.784
-183.034
-206.466
-228.042
-247.761
-265.64
-281.706
-296.002
-308.572
-319.469
-328.742
-336.439
-342.606
-347.284
-350.502
-352.239
-352.528
-351.423
-348.873
-344.868
-339.397
-332.423
-323.919
-313.826
-302.109
-288.723
-273.63
-256.771
-238.142
-217.723
-195.513
-171.545
-145.892
-118.635
-89.9058
-59.871
-28.7874
3.12591
35.7298
68.7162
101.714
134.382
166.354
197.259
226.744
254.452
280.029
303.148
323.499
340.796
354.784
365.238
371.977
374.894
373.833
368.871
359.989
347.223
330.778
310.844
287.698
261.641
233.009
202.2
169.602
135.626
100.702
65.2434
29.6538
-5.68043
-40.4029
-74.1659
-106.734
-137.832
-167.248
-194.814
-220.405
-243.934
-265.355
-284.66
-301.87
-317.035
-330.224
-341.511
-350.993
-358.76
-364.893
-369.485
-372.609
-374.293
-374.603
-373.601
-371.286
-367.677
-362.782
-356.6
-349.12
-340.33
-330.216
-318.756
-305.93
-291.716
-276.09
-259.033
-240.524
-220.55
-199.104
-176.19
-151.829
-126.057
-98.9353
-70.5552
-41.0325
-10.576
20.6128
52.2838
84.139
115.84
147.016
177.261
206.155
233.265
258.167
280.454
299.743
315.689
327.997
336.428
340.805
340.958
336.936
328.758
316.477
300.294
280.457
257.276
231.122
202.411
171.59
139.135
105.534
71.2686
36.8018
2.56942
-31.0394
-63.6818
-95.0106
-124.919
-153.177
-179.669
-204.323
-227.105
-248.021
-267.091
-284.362
-299.888
-313.726
-325.947
-336.614
-345.795
-353.553
-359.934
-364.994
-368.771
-371.294
-372.604
-372.69
-371.548
-369.216
-365.651
-360.823
-354.697
-347.229
-338.361
-328.035
-316.195
-302.778
-287.728
-271.005
-252.571
-232.405
-210.512
-186.913
-161.652
-134.805
-106.478
-76.8103
-45.9423
-14.1448
18.3516
51.2615
84.2643
117.006
149.111
180.188
209.84
237.665
263.276
286.305
306.407
323.278
336.648
346.312
352.117
353.913
351.733
345.606
335.586
321.832
304.549
283.999
260.494
234.379
206.031
175.86
144.284
111.726
78.6032
45.3184
12.249
-20.2585
-51.8895
-82.382
-111.509
-139.085
-164.968
-189.051
-211.267
-231.581
-249.982
-266.483
-281.116
-293.926
-304.967
-314.306
-322.012
-328.15
-332.792
-336.004
-337.855
-338.374
-337.61
-335.632
-332.446
-328.069
-322.509
-315.75
-307.778
-298.577
-288.099
-276.302
-263.143
-248.551
-232.472
-214.863
-195.675
-174.877
-152.48
-128.494
-102.979
-75.9998
-47.6605
-17.9663
13.575
45.1498
77.0516
109.029
140.789
171.984
202.225
231.111
258.242
283.207
305.634
325.176
341.501
354.344
363.482
368.733
369.989
367.227
360.49
349.827
335.464
317.662
296.719
272.963
246.802
218.644
188.915
158.042
126.438
94.5123
62.6478
31.1531
0.819771
-28.2153
-56.5937
-83.8836
-109.854
-134.363
-157.327
-178.688
-198.424
-216.54
-233.055
-248.002
-261.414
-273.331
-283.792
-292.83
-300.471
-306.737
-311.642
-315.196
-317.386
-318.173
-317.289
-314.952
-311.15
-305.864
-299.083
-290.803
-280.993
-269.65
-256.751
-242.3
-226.3
-208.761
-189.694
-169.128
-147.106
-123.688
-99.0005
-73.2543
-46.9261
-22.7781
-16.3821
393.784
379.871
362.384
341.529
317.567
290.83
261.692
230.54
197.769
163.826
129.132
94.0981
59.1557
24.6841
-8.7532
-40.7982
-72.2106
-102.366
-131.031
-158.037
-183.287
-206.718
-228.289
-248.002
-265.873
-281.931
-296.217
-308.779
-319.668
-328.933
-336.624
-342.785
-347.457
-350.67
-352.405
-352.703
-351.596
-349.045
-345.043
-339.576
-332.608
-324.11
-314.025
-302.315
-288.937
-273.852
-257
-238.377
-217.962
-195.753
-171.784
-146.127
-118.862
-90.1197
-60.0688
-28.9601
2.98059
35.6147
68.637
101.675
134.386
166.403
197.356
226.889
254.645
280.27
303.434
323.828
341.164
355.186
365.668
372.43
375.356
374.306
369.324
360.428
347.642
331.164
311.189
287.997
261.889
233.205
202.34
169.686
135.657
100.682
65.1747
29.5412
-5.83215
-40.5882
-74.38
-106.971
-138.087
-167.516
-195.09
-220.684
-244.212
-265.628
-284.926
-302.126
-317.279
-330.455
-341.729
-351.199
-358.954
-365.077
-369.661
-372.776
-374.451
-374.762
-373.755
-371.439
-367.829
-362.936
-356.755
-349.278
-340.491
-330.381
-318.925
-306.104
-291.895
-276.275
-259.223
-240.719
-220.748
-199.306
-176.394
-152.033
-126.259
-99.132
-70.7399
-41.2027
-10.7258
20.4892
52.1925
84.0858
115.831
147.055
177.354
206.303
233.471
258.43
280.77
300.109
316.099
328.443
336.901
341.293
341.468
337.418
329.228
316.921
300.701
280.816
257.581
231.369
202.596
171.711
139.193
105.533
71.2119
36.6954
2.42016
-31.2237
-63.892
-95.2457
-125.166
-153.431
-179.925
-204.577
-227.355
-248.262
-267.324
-284.584
-300.099
-313.927
-326.138
-336.795
-345.968
-353.718
-360.093
-365.147
-368.92
-371.44
-372.748
-372.829
-371.692
-369.361
-365.799
-360.977
-354.857
-347.396
-338.537
-328.22
-316.388
-302.979
-287.938
-271.222
-252.794
-232.632
-210.741
-187.141
-161.877
-135.023
-106.685
-76.9999
-46.1143
-14.2911
18.2364
51.1821
84.2253
117.012
149.166
180.294
209.998
237.876
263.539
286.616
306.763
323.673
337.075
346.762
352.58
354.395
352.192
346.055
336.011
322.225
304.902
284.306
260.751
234.581
206.179
175.953
144.323
111.714
78.5432
45.2157
12.1086
-20.4308
-52.0883
-82.6013
-111.744
-139.331
-165.219
-189.305
-211.52
-231.83
-250.225
-266.719
-281.343
-294.143
-305.175
-314.503
-322.199
-328.329
-332.962
-336.167
-338.011
-338.521
-337.756
-335.774
-332.586
-328.21
-322.651
-315.895
-307.927
-298.731
-288.261
-276.472
-263.321
-248.738
-232.67
-215.067
-195.887
-175.094
-152.697
-128.712
-103.194
-76.2098
-47.861
-18.1585
13.4277
45.0317
76.9615
108.976
140.779
172.022
202.315
231.254
258.441
283.459
305.937
325.526
341.893
354.769
363.933
369.2
370.475
367.682
360.931
350.246
335.847
318
297.007
273.196
246.979
218.764
188.981
158.055
126.402
94.4329
62.5319
31.0081
0.657469
-28.4037
-56.7957
-84.0965
-110.074
-134.587
-157.551
-178.908
-198.639
-216.749
-233.257
-248.196
-261.601
-273.511
-283.966
-292.998
-300.636
-306.899
-311.803
-315.356
-317.548
-318.341
-317.459
-315.12
-311.321
-306.039
-299.262
-290.987
-281.181
-269.841
-256.945
-242.496
-226.499
-208.962
-189.895
-169.329
-147.306
-123.884
-99.1893
-73.4281
-47.0648
-22.8299
-16.5604
394.388
380.431
362.892
341.976
317.948
291.14
261.928
230.701
197.855
163.84
129.08
93.985
58.9896
24.4705
-8.99293
-41.0729
-72.5106
-102.684
-131.361
-158.374
-183.626
-207.053
-228.619
-248.323
-266.184
-282.23
-296.505
-309.055
-319.932
-329.188
-336.87
-343.023
-347.688
-350.894
-352.627
-352.934
-351.824
-349.273
-345.276
-339.815
-332.855
-324.365
-314.289
-302.59
-289.223
-274.147
-257.305
-238.689
-218.28
-196.073
-172.103
-146.44
-119.164
-90.4052
-60.3329
-29.1904
2.78615
35.4609
68.531
101.622
134.39
166.468
197.484
227.081
254.903
280.591
303.816
324.267
341.655
355.722
366.241
373.032
375.969
374.934
369.934
361.015
348.2
331.68
311.651
288.397
262.22
233.466
202.528
169.799
135.699
100.656
65.083
29.391
-6.03477
-40.8354
-74.6655
-107.288
-138.427
-167.874
-195.457
-221.056
-244.583
-265.993
-285.281
-302.467
-317.605
-330.763
-342.02
-351.474
-359.213
-365.322
-369.894
-372.997
-374.665
-374.972
-373.96
-371.642
-368.033
-363.141
-356.963
-349.489
-340.706
-330.6
-319.151
-306.336
-292.134
-276.521
-259.475
-240.978
-221.013
-199.575
-176.667
-152.306
-126.529
-99.3945
-70.9871
-41.4298
-10.9257
20.3242
52.0702
84.0145
115.818
147.107
177.477
206.501
233.745
258.779
281.192
300.597
316.647
329.039
337.532
341.944
342.138
338.071
329.857
317.514
301.243
281.296
257.99
231.699
202.842
171.872
139.271
105.531
71.1361
36.5534
2.22077
-31.47
-64.1743
-95.5577
-125.495
-153.769
-180.266
-204.916
-227.687
-248.584
-267.633
-284.881
-300.381
-314.195
-326.393
-337.038
-346.199
-353.938
-360.304
-365.351
-369.118
-371.634
-372.939
-373.016
-371.884
-369.555
-365.998
-361.182
-355.071
-347.619
-338.771
-328.466
-316.645
-303.248
-288.219
-271.512
-253.091
-232.935
-211.046
-187.445
-162.177
-135.313
-106.96
-77.2536
-46.3434
-14.4862
18.0825
51.076
84.1732
117.02
149.238
180.435
210.209
238.157
263.889
287.032
307.238
324.2
337.645
347.364
353.199
355.028
352.813
346.656
336.58
322.751
305.374
284.717
261.095
234.852
206.376
176.076
144.374
111.697
78.4632
45.0787
11.9213
-20.6607
-52.3535
-82.894
-112.057
-139.658
-165.555
-189.643
-211.856
-232.161
-250.549
-267.032
-281.645
-294.432
-305.451
-314.766
-322.449
-328.566
-333.189
-336.384
-338.217
-338.718
-337.951
-335.964
-332.774
-328.398
-322.841
-316.089
-308.127
-298.937
-288.476
-276.7
-263.558
-248.988
-232.933
-215.341
-196.169
-175.382
-152.988
-129.004
-103.479
-76.49
-48.129
-18.4157
13.2318
44.8736
76.8405
108.904
140.765
172.072
202.434
231.446
258.705
283.796
306.341
325.994
342.416
355.337
364.535
369.824
371.117
368.298
361.523
350.804
336.357
318.452
297.391
273.507
247.215
218.924
189.068
158.072
126.355
94.3266
62.3766
30.8147
0.440218
-28.6551
-57.0653
-84.3807
-110.368
-134.885
-157.849
-179.202
-198.926
-217.027
-233.525
-248.454
-261.849
-273.75
-284.198
-293.223
-300.856
-307.116
-312.018
-315.569
-317.762
-318.565
-317.685
-315.345
-311.55
-306.273
-299.501
-291.231
-281.43
-270.095
-257.204
-242.759
-226.764
-209.229
-190.163
-169.597
-147.572
-124.145
-99.4416
-73.6609
-47.2524
-22.9056
-16.7881
395.143
381.133
363.527
342.535
318.424
291.527
262.222
230.901
197.962
163.858
129.014
93.8429
58.781
24.2022
-9.29218
-41.4168
-72.8862
-103.083
-131.775
-158.796
-184.05
-207.473
-229.031
-248.725
-266.572
-282.604
-296.864
-309.4
-320.264
-329.506
-337.177
-343.32
-347.976
-351.174
-352.908
-353.221
-352.108
-349.559
-345.567
-340.114
-333.162
-324.683
-314.62
-302.933
-289.58
-274.516
-257.686
-239.079
-218.678
-196.474
-172.502
-146.832
-119.542
-90.7627
-60.6634
-29.4785
2.54207
35.2679
68.3978
101.555
134.395
166.549
197.644
227.322
255.225
280.992
304.294
324.816
342.269
356.392
366.958
373.784
376.738
375.713
370.702
361.751
348.899
332.324
312.227
288.896
262.634
233.792
202.762
169.94
135.751
100.622
64.9679
29.2025
-6.28891
-41.1451
-75.0233
-107.684
-138.853
-168.321
-195.918
-221.522
-245.047
-266.449
-285.724
-302.894
-318.012
-331.149
-342.385
-351.818
-359.537
-365.628
-370.186
-373.272
-374.933
-375.235
-374.217
-371.897
-368.288
-363.397
-357.222
-349.753
-340.975
-330.876
-319.433
-306.627
-292.433
-276.828
-259.791
-241.302
-221.345
-199.912
-177.008
-152.647
-126.867
-99.723
-71.2979
-41.7142
-11.1765
20.1171
51.9165
83.9245
115.801
147.171
177.63
206.747
234.087
259.216
281.72
301.208
317.331
329.784
338.322
342.76
342.967
338.894
330.644
318.256
301.922
281.896
258.5
232.111
203.15
172.074
139.369
105.529
71.0406
36.3749
1.97052
-31.7789
-64.5283
-95.9484
-125.908
-154.193
-180.694
-205.34
-228.102
-248.986
-268.021
-285.252
-300.734
-314.531
-326.712
-337.34
-346.487
-354.213
-360.568
-365.606
-369.365
-371.877
-373.176
-373.251
-372.123
-369.797
-366.245
-361.438
-355.338
-347.899
-339.064
-328.773
-316.967
-303.585
-288.569
-271.874
-253.463
-233.315
-211.428
-187.826
-162.552
-135.677
-107.305
-77.5721
-46.63
-14.7306
17.8894
50.9427
84.1075
117.03
149.329
180.611
210.472
238.508
264.326
287.551
307.832
324.86
338.358
348.117
353.974
355.813
353.595
347.408
337.293
323.409
305.964
285.231
261.524
235.191
206.623
176.231
144.438
111.675
78.3627
44.9067
11.6864
-20.9487
-52.6856
-83.2604
-112.449
-140.068
-165.974
-190.066
-212.278
-232.576
-250.954
-267.425
-282.022
-294.794
-305.796
-315.095
-322.762
-328.864
-333.473
-336.655
-338.474
-338.966
-338.193
-336.201
-333.008
-328.633
-323.077
-316.33
-308.376
-299.195
-288.746
-276.983
-263.854
-249.301
-233.262
-215.683
-196.522
-175.744
-153.352
-129.368
-103.837
-76.8404
-48.4649
-18.7393
12.9883
44.6753
76.6879
108.813
140.747
172.135
202.583
231.685
259.036
284.216
306.847
326.578
343.07
356.047
365.288
370.604
371.91
369.077
362.266
351.504
336.996
319.016
297.871
273.896
247.509
219.124
189.176
158.092
126.295
94.193
62.1815
30.5732
0.167228
-28.9695
-57.4025
-84.7363
-110.736
-135.259
-158.222
-179.57
-199.285
-217.375
-233.861
-248.777
-262.16
-274.049
-284.487
-293.504
-301.131
-307.387
-312.286
-315.835
-318.03
-318.845
-317.965
-315.626
-311.836
-306.565
-299.8
-291.537
-281.742
-270.413
-257.527
-243.087
-227.095
-209.563
-190.498
-169.932
-147.904
-124.472
-99.7576
-73.9537
-47.4917
-23.0123
-17.0554
396.05
381.975
364.29
343.207
318.995
291.991
262.575
231.141
198.09
163.879
128.934
93.6715
58.5291
23.8785
-9.65078
-41.8301
-73.3378
-103.562
-132.272
-159.303
-184.559
-207.978
-229.526
-249.207
-267.038
-283.053
-297.296
-309.814
-320.661
-329.888
-337.545
-343.677
-348.323
-351.512
-353.246
-353.562
-352.448
-349.901
-345.916
-340.472
-333.531
-325.065
-315.017
-303.345
-290.009
-274.959
-258.144
-239.548
-219.156
-196.955
-172.981
-147.303
-119.996
-91.1924
-61.0605
-29.8247
2.24781
35.0353
68.2371
101.474
134.4
166.646
197.835
227.611
255.611
281.473
304.868
325.475
343.006
357.197
367.819
374.687
377.662
376.647
371.625
362.637
349.738
333.097
312.92
289.496
263.131
234.183
203.042
170.109
135.812
100.58
64.8289
28.9752
-6.59496
-41.5178
-75.4538
-108.161
-139.366
-168.859
-196.471
-222.082
-245.605
-266.998
-286.257
-303.407
-318.501
-331.612
-342.822
-352.23
-359.925
-365.996
-370.535
-373.603
-375.256
-375.549
-374.525
-372.202
-368.594
-363.705
-357.534
-350.069
-341.298
-331.206
-319.773
-306.976
-292.792
-277.198
-260.171
-241.691
-221.743
-200.318
-177.418
-153.058
-127.272
-100.118
-71.6726
-42.0563
-11.4784
19.8674
51.7308
83.815
115.779
147.248
177.813
207.042
234.497
259.741
282.354
301.942
318.154
330.679
339.271
343.741
343.96
339.883
331.592
319.147
302.737
282.617
259.114
232.606
203.519
172.316
139.485
105.524
70.9248
36.1593
1.66878
-32.151
-64.9547
-96.4181
-126.403
-154.703
-181.207
-205.85
-228.602
-249.47
-268.486
-285.697
-301.157
-314.933
-327.094
-337.703
-346.833
-354.543
-360.884
-365.912
-369.662
-372.167
-373.461
-373.535
-372.41
-370.087
-366.542
-361.745
-355.659
-348.234
-339.415
-329.142
-317.353
-303.989
-288.99
-272.309
-253.91
-233.77
-211.888
-188.284
-163.003
-136.114
-107.72
-77.9558
-46.9749
-15.0247
17.6566
50.7818
84.0278
117.04
149.437
180.822
210.788
238.93
264.851
288.174
308.545
325.652
339.215
349.021
354.906
356.755
354.533
348.312
338.148
324.199
306.673
285.848
262.039
235.597
206.918
176.415
144.515
111.649
78.2408
44.6992
11.4035
-21.2953
-53.0853
-83.7011
-112.921
-140.56
-166.478
-190.575
-212.783
-233.074
-251.44
-267.896
-282.476
-295.229
-306.211
-315.489
-323.137
-329.221
-333.813
-336.979
-338.782
-339.264
-338.484
-336.485
-333.29
-328.916
-323.361
-316.62
-308.676
-299.504
-289.069
-277.323
-264.211
-249.677
-233.657
-216.093
-196.946
-176.179
-153.79
-129.806
-104.268
-77.261
-48.8698
-19.1313
12.6991
44.4364
76.503
108.704
140.724
172.209
202.761
231.972
259.432
284.721
307.454
327.28
343.855
356.9
366.194
371.54
372.855
370.015
363.161
352.345
337.763
319.693
298.447
274.362
247.862
219.364
189.305
158.117
126.221
94.0316
61.9456
30.2835
-0.162498
-29.3469
-57.8076
-85.1638
-111.179
-135.707
-158.67
-180.012
-199.716
-217.793
-234.263
-249.165
-262.533
-274.409
-284.834
-293.842
-301.461
-307.711
-312.608
-316.155
-318.352
-319.18
-318.3
-315.963
-312.178
-306.916
-300.159
-291.904
-282.116
-270.795
-257.916
-243.48
-227.493
-209.964
-190.901
-170.335
-148.304
-124.865
-100.138
-74.3075
-47.7861
-23.161
-17.3478
397.11
382.958
365.18
343.991
319.662
292.533
262.986
231.42
198.239
163.902
128.84
93.4702
58.2329
23.4985
-10.0684
-42.3132
-73.8657
-104.122
-132.853
-159.896
-185.153
-208.567
-230.105
-249.77
-267.583
-283.577
-297.799
-310.296
-321.124
-330.334
-337.975
-344.093
-348.727
-351.907
-353.639
-353.958
-352.844
-350.301
-346.323
-340.89
-333.961
-325.51
-315.48
-303.826
-290.509
-275.476
-258.678
-240.096
-219.715
-197.517
-173.541
-147.853
-120.527
-91.6946
-61.5242
-30.2299
1.90264
34.7625
68.0483
101.379
134.406
166.758
198.058
227.947
256.061
282.035
305.537
326.244
343.866
358.137
368.824
375.74
378.743
377.737
372.703
363.673
350.719
334
313.729
290.196
263.711
234.639
203.368
170.305
135.883
100.529
64.6654
28.7084
-6.95343
-41.9539
-75.9577
-108.718
-139.965
-169.487
-197.118
-222.736
-246.257
-267.639
-286.879
-304.005
-319.072
-332.152
-343.332
-352.711
-360.378
-366.425
-370.942
-373.991
-375.632
-375.916
-374.884
-372.559
-368.951
-364.065
-357.897
-350.438
-341.675
-331.592
-320.168
-307.383
-293.211
-277.629
-260.614
-242.146
-222.208
-200.791
-177.897
-153.537
-127.747
-100.579
-72.1118
-42.4565
-11.8321
19.5744
51.5126
83.6856
115.753
147.336
178.025
207.386
234.975
260.352
283.093
302.799
319.114
331.724
340.38
344.889
345.121
341.036
332.7
320.189
303.689
283.459
259.83
233.183
203.949
172.597
139.619
105.517
70.7881
35.9057
1.3148
-32.5872
-65.4543
-96.9677
-126.983
-155.299
-181.807
-206.445
-229.185
-250.034
-269.028
-286.216
-301.651
-315.403
-327.54
-338.127
-347.237
-354.928
-361.254
-366.269
-370.008
-372.506
-373.793
-373.866
-372.743
-370.426
-366.889
-362.104
-356.033
-348.625
-339.826
-329.573
-317.805
-304.461
-289.482
-272.818
-254.432
-234.302
-212.424
-188.82
-163.529
-136.625
-108.206
-78.4049
-47.3788
-15.3692
17.3836
50.5927
83.9335
117.051
149.562
181.066
211.155
239.421
265.464
288.902
309.378
326.577
340.216
350.077
355.996
357.856
355.627
349.368
339.148
325.122
307.502
286.568
262.64
236.071
207.263
176.63
144.602
111.617
78.0973
44.4556
11.0719
-21.7011
-53.553
-84.2167
-113.473
-141.136
-167.068
-191.169
-213.374
-233.656
-252.008
-268.446
-283.006
-295.736
-306.695
-315.95
-323.575
-329.637
-334.209
-337.357
-339.143
-339.613
-338.823
-336.816
-333.618
-329.244
-323.693
-316.958
-309.025
-299.866
-289.447
-277.72
-264.627
-250.115
-234.118
-216.573
-197.441
-176.686
-154.302
-130.317
-104.771
-77.7519
-49.3449
-19.5946
12.3671
44.1561
76.2852
108.574
140.695
172.294
202.968
232.306
259.894
285.309
308.162
328.099
344.771
357.897
367.25
372.634
373.962
371.109
364.208
353.327
338.659
320.485
299.119
274.906
248.273
219.642
189.455
158.144
126.135
93.8419
61.668
29.9452
-0.54997
-29.7872
-58.2807
-85.6635
-111.696
-136.232
-159.193
-180.527
-200.219
-218.28
-234.734
-249.617
-262.968
-274.827
-285.239
-294.235
-301.845
-308.09
-312.983
-316.529
-318.728
-319.568
-318.688
-316.355
-312.578
-307.325
-300.577
-292.332
-282.553
-271.24
-258.369
-243.94
-227.958
-210.433
-191.371
-170.804
-148.771
-125.325
-100.583
-74.7234
-48.1387
-23.369
-17.6446
398.323
384.083
366.199
344.887
320.424
293.151
263.455
231.738
198.408
163.928
128.731
93.2384
57.8918
23.0602
-10.5446
-42.8668
-74.4706
-104.763
-133.519
-160.574
-185.834
-209.241
-230.766
-250.413
-268.205
-284.176
-298.374
-310.848
-321.654
-330.843
-338.466
-344.568
-349.19
-352.359
-354.089
-354.409
-353.296
-350.758
-346.788
-341.367
-334.453
-326.019
-316.009
-304.375
-291.081
-276.068
-259.29
-240.723
-220.354
-198.16
-174.182
-148.483
-121.134
-92.2697
-62.0541
-30.6953
1.50576
34.4492
67.831
101.268
134.41
166.885
198.312
228.33
256.575
282.676
306.302
327.123
344.851
359.212
369.973
376.945
379.981
378.985
373.935
364.861
351.841
335.033
314.654
290.996
264.374
235.16
203.74
170.528
135.963
100.47
64.4769
28.4015
-7.36499
-42.4541
-76.5356
-109.357
-140.652
-170.207
-197.859
-223.485
-247.004
-268.372
-287.591
-304.69
-319.725
-332.771
-343.916
-353.26
-360.895
-366.914
-371.407
-374.434
-376.061
-376.334
-375.295
-372.966
-369.358
-364.475
-358.312
-350.859
-342.105
-332.033
-320.621
-307.848
-293.69
-278.122
-261.121
-242.666
-222.74
-201.333
-178.445
-154.086
-128.29
-101.108
-72.6157
-42.9155
-12.2382
19.2376
51.2614
83.5358
115.72
147.434
178.266
207.778
235.521
261.05
283.938
303.779
320.213
332.921
341.649
346.202
346.451
342.354
333.968
321.382
304.779
284.422
260.648
233.842
204.44
172.918
139.771
105.508
70.6296
35.6135
0.907707
-33.0883
-66.0279
-97.5977
-127.648
-155.982
-182.495
-207.126
-229.852
-250.68
-269.649
-286.809
-302.216
-315.94
-328.05
-338.611
-347.698
-355.368
-361.676
-366.676
-370.403
-372.893
-374.173
-374.244
-373.125
-370.812
-367.284
-362.514
-356.46
-349.072
-340.294
-330.065
-318.321
-305.001
-290.044
-273.4
-255.03
-234.911
-213.039
-189.432
-164.133
-137.21
-108.762
-78.92
-47.8421
-15.7646
17.0699
50.3747
83.8243
117.062
149.703
181.345
211.575
239.982
266.164
289.734
310.331
327.636
341.361
351.286
357.244
359.118
356.879
350.577
340.291
326.178
308.449
287.392
263.326
236.613
207.656
176.874
144.702
111.578
77.9317
44.1752
10.691
-22.1669
-54.0893
-84.8079
-114.104
-141.795
-167.742
-191.849
-214.051
-234.322
-252.658
-269.075
-283.612
-296.316
-307.248
-316.476
-324.075
-330.112
-334.662
-337.79
-339.555
-340.011
-339.209
-337.195
-333.993
-329.619
-324.071
-317.344
-309.423
-300.279
-289.877
-278.172
-265.103
-250.617
-234.645
-217.122
-198.008
-177.267
-154.888
-130.902
-105.347
-78.3135
-49.8913
-20.1311
11.9941
43.8333
76.034
108.423
140.661
172.389
203.203
232.686
260.421
285.982
308.972
329.036
345.82
359.038
368.459
373.886
375.232
372.36
365.408
354.453
339.685
321.39
299.888
275.527
248.743
219.96
189.624
158.173
126.034
93.6231
61.3472
29.5576
-0.995853
-30.2901
-58.8221
-86.2359
-112.288
-136.832
-159.792
-181.117
-200.795
-218.838
-235.271
-250.134
-263.464
-275.306
-285.702
-294.685
-302.284
-308.522
-313.411
-316.955
-319.158
-320.009
-319.131
-316.804
-313.035
-307.793
-301.056
-292.821
-283.053
-271.749
-258.887
-244.465
-228.489
-210.968
-191.908
-171.342
-149.305
-125.851
-101.094
-75.2027
-48.5525
-23.6362
-17.9433
399.689
385.35
367.346
345.897
321.282
293.847
263.983
232.096
198.596
163.955
128.607
92.9756
57.5053
22.5656
-11.0826
-43.4918
-75.153
-105.487
-134.269
-161.339
-186.601
-210
-231.511
-251.138
-268.905
-284.85
-299.021
-311.469
-322.249
-331.416
-339.018
-345.103
-349.71
-352.868
-354.594
-354.914
-353.802
-351.271
-347.311
-341.903
-335.006
-326.591
-316.605
-304.993
-291.724
-276.734
-259.978
-241.428
-221.074
-198.885
-174.905
-149.194
-121.82
-92.9183
-62.6502
-31.222
1.05626
34.0945
67.5847
101.143
134.414
167.027
198.597
228.761
257.153
283.398
307.163
328.113
345.959
360.423
371.267
378.303
381.376
380.391
375.322
366.2
353.106
336.196
315.697
291.898
265.121
235.745
204.156
170.779
136.052
100.401
64.2627
28.0539
-7.83046
-43.0193
-77.1882
-110.078
-141.426
-171.019
-198.694
-224.329
-247.845
-269.199
-288.394
-305.461
-320.46
-333.467
-344.572
-353.878
-361.477
-367.465
-371.929
-374.933
-376.543
-376.804
-375.756
-373.424
-369.817
-364.936
-358.779
-351.334
-342.59
-332.528
-321.13
-308.372
-294.228
-278.676
-261.691
-243.251
-223.339
-201.943
-179.062
-154.705
-128.902
-101.705
-73.1851
-43.434
-12.6974
18.8559
50.9763
83.3649
115.681
147.543
178.536
208.217
236.134
261.836
284.89
304.883
321.451
334.27
343.079
347.683
347.95
343.839
335.398
322.726
306.007
285.507
261.57
234.583
204.992
173.277
139.94
105.495
70.4486
35.2817
0.446478
-33.6554
-66.6764
-98.3089
-128.398
-156.752
-183.27
-207.894
-230.603
-251.408
-270.348
-287.477
-302.852
-316.545
-328.623
-339.156
-348.217
-355.862
-362.151
-367.134
-370.848
-373.328
-374.6
-374.67
-373.553
-371.246
-367.73
-362.975
-356.941
-349.575
-340.821
-330.619
-318.902
-305.608
-290.677
-274.055
-255.703
-235.596
-213.731
-190.123
-164.813
-137.87
-109.389
-79.5024
-48.3649
-16.2114
16.7148
50.127
83.6993
117.073
149.861
181.657
212.046
240.613
266.952
290.671
311.404
328.828
342.652
352.649
358.651
360.539
358.288
351.94
341.58
327.367
309.517
288.319
264.099
237.222
208.097
177.147
144.812
111.533
77.7431
43.8571
10.2598
-22.6932
-54.6948
-85.4753
-114.817
-142.539
-168.503
-192.615
-214.813
-235.072
-253.39
-269.783
-284.293
-296.969
-307.871
-317.069
-324.638
-330.647
-335.172
-338.275
-340.019
-340.458
-339.644
-337.62
-334.415
-330.041
-324.496
-317.779
-309.871
-300.743
-290.361
-278.68
-265.64
-251.181
-235.237
-217.741
-198.647
-177.922
-155.549
-131.56
-105.997
-78.9459
-50.509
-20.7441
11.5818
43.4663
75.7483
108.251
140.619
172.495
203.465
233.114
261.014
286.738
309.884
330.091
347.002
360.323
369.822
375.297
376.656
373.769
366.761
355.721
340.84
322.409
300.753
276.226
249.27
220.315
189.813
158.205
125.918
93.3744
60.9815
29.1187
-1.49976
-30.8551
-59.4322
-86.8815
-112.956
-137.509
-160.466
-181.782
-201.443
-219.465
-235.875
-250.715
-264.023
-275.844
-286.222
-295.19
-302.778
-309.007
-313.892
-317.435
-319.641
-320.503
-319.628
-317.308
-313.55
-308.319
-301.594
-293.371
-283.615
-272.322
-259.47
-245.057
-229.087
-211.57
-192.514
-171.946
-149.906
-126.444
-101.671
-75.7464
-49.0298
-23.9579
-18.2466
401.21
386.76
368.622
347.019
322.236
294.62
264.569
232.491
198.804
163.983
128.466
92.6809
57.0727
22.0158
-11.685
-44.189
-75.9135
-106.293
-135.105
-162.19
-187.454
-210.846
-232.34
-251.943
-269.684
-285.599
-299.74
-312.158
-322.911
-332.051
-339.631
-345.697
-350.288
-353.434
-355.155
-355.474
-354.364
-351.841
-347.892
-342.498
-335.619
-327.227
-317.266
-305.68
-292.44
-277.474
-260.743
-242.213
-221.875
-199.692
-175.71
-149.985
-122.583
-93.6407
-63.3131
-31.8104
0.553298
33.698
67.3087
101.001
134.416
167.183
198.912
229.239
257.795
284.2
308.12
329.214
347.191
361.77
372.706
379.813
382.929
381.956
376.866
367.691
354.514
337.491
316.856
292.899
265.951
236.394
204.618
171.056
136.148
100.322
64.0222
27.6645
-8.35072
-43.6504
-77.9165
-110.882
-142.29
-171.925
-199.625
-225.269
-248.782
-270.12
-289.286
-306.319
-321.277
-334.24
-345.302
-354.564
-362.124
-368.076
-372.509
-375.487
-377.079
-377.325
-376.268
-373.933
-370.326
-365.449
-359.297
-351.861
-343.128
-333.08
-321.696
-308.953
-294.827
-279.293
-262.325
-243.902
-224.005
-202.622
-179.749
-155.394
-129.584
-102.37
-73.8206
-44.0124
-13.2105
18.4287
50.6562
83.1719
115.634
147.661
178.833
208.703
236.814
262.708
285.947
306.111
322.829
335.771
344.673
349.333
349.62
345.492
336.991
324.222
307.373
286.715
262.596
235.408
205.605
173.675
140.126
105.478
70.244
34.9091
-0.0699818
-34.2897
-67.4011
-99.1023
-129.234
-157.61
-184.134
-208.749
-231.439
-252.217
-271.126
-288.22
-303.559
-317.216
-329.26
-339.761
-348.793
-356.412
-362.678
-367.643
-371.341
-373.811
-375.075
-375.142
-374.028
-371.728
-368.224
-363.487
-357.474
-350.133
-341.407
-331.234
-319.548
-306.284
-291.38
-274.784
-256.452
-236.359
-214.501
-190.891
-165.571
-138.605
-110.089
-80.1525
-48.9484
-16.7102
16.3176
49.8491
83.5579
117.082
150.034
182.002
212.569
241.314
267.828
291.712
312.598
330.155
344.089
354.167
360.217
362.123
359.856
353.457
343.014
328.69
310.705
289.35
264.957
237.898
208.586
177.449
144.932
111.48
77.5308
43.5006
9.77753
-23.2811
-55.3704
-86.2198
-115.612
-143.367
-169.35
-193.468
-215.661
-235.906
-254.204
-270.571
-285.052
-297.695
-308.562
-317.727
-325.263
-331.242
-335.737
-338.815
-340.535
-340.954
-340.126
-338.092
-334.882
-330.508
-324.969
-318.261
-310.368
-301.259
-290.899
-279.245
-266.236
-251.808
-235.895
-218.43
-199.358
-178.649
-156.285
-132.293
-106.721
-79.6488
-51.1976
-21.437
11.1319
43.0533
75.4267
108.057
140.569
172.61
203.755
233.587
261.672
287.577
310.898
331.265
348.318
361.753
371.34
376.867
378.239
375.336
368.269
357.133
342.126
323.543
301.714
277.002
249.854
220.709
190.021
158.238
125.786
93.0951
60.5691
28.6239
-2.05888
-31.4817
-60.1116
-87.6009
-113.7
-138.263
-161.218
-182.521
-202.163
-220.163
-236.547
-251.361
-264.644
-276.442
-286.799
-295.751
-303.326
-309.547
-314.426
-317.968
-320.178
-321.048
-320.178
-317.868
-314.121
-308.903
-302.191
-293.982
-284.239
-272.959
-260.119
-245.714
-229.752
-212.24
-193.187
-172.619
-150.575
-127.105
-102.314
-76.3556
-49.573
-24.3319
-18.5554
402.886
388.314
370.028
348.255
323.286
295.471
265.212
232.924
199.03
164.011
128.307
92.3534
56.5932
21.4111
-12.3538
-44.9596
-76.7529
-107.182
-136.027
-163.129
-188.395
-211.777
-233.252
-252.83
-270.541
-286.424
-300.531
-312.917
-323.638
-332.751
-340.305
-346.35
-350.923
-354.057
-355.772
-356.089
-354.981
-352.468
-348.53
-343.153
-336.294
-327.925
-317.994
-306.436
-293.226
-278.29
-261.586
-243.078
-222.757
-200.581
-176.598
-150.858
-123.425
-94.4379
-64.0438
-32.4612
-0.00407874
33.2587
67.0025
100.842
134.417
167.352
199.257
229.763
258.501
285.081
309.172
330.426
348.547
363.254
374.292
381.476
384.641
383.681
378.568
369.334
356.065
338.917
318.133
294.001
266.864
237.107
205.124
171.359
136.251
100.233
63.7548
27.2324
-8.92673
-44.3489
-78.7207
-111.77
-143.243
-172.924
-200.652
-226.307
-249.815
-271.134
-290.27
-307.264
-322.177
-335.092
-346.105
-355.319
-362.835
-368.748
-373.146
-376.097
-377.667
-377.898
-376.832
-374.493
-370.885
-366.012
-359.868
-352.441
-343.72
-333.686
-322.318
-309.593
-295.486
-279.971
-263.023
-244.618
-224.738
-203.369
-180.506
-156.153
-130.337
-103.103
-74.5234
-44.6515
-13.7783
17.955
50.3002
82.9556
115.58
147.787
179.157
209.236
237.561
263.668
287.111
307.464
324.347
337.426
346.43
351.152
351.461
347.313
338.747
325.872
308.879
288.047
263.724
236.314
206.279
174.111
140.327
105.456
70.0146
34.4948
-0.642984
-34.9925
-68.2031
-99.979
-130.158
-158.557
-185.086
-209.691
-232.36
-253.108
-271.982
-289.037
-304.337
-317.955
-329.96
-340.426
-349.426
-357.016
-363.258
-368.201
-371.884
-374.342
-375.597
-375.662
-374.55
-372.257
-368.768
-364.05
-358.061
-350.747
-342.052
-331.911
-320.258
-307.027
-292.155
-275.586
-257.277
-237.2
-215.349
-191.739
-166.406
-139.416
-110.861
-80.8705
-49.5939
-17.2622
15.8772
49.5401
83.3994
117.09
150.222
182.38
213.143
242.085
268.791
292.859
313.913
331.617
345.672
355.839
361.944
363.869
361.584
355.129
344.596
330.149
312.013
290.486
265.902
238.642
209.122
177.78
145.061
111.42
77.2938
43.1049
9.24311
-23.9313
-56.1171
-87.0421
-116.489
-144.281
-170.285
-194.409
-216.596
-236.826
-255.101
-271.439
-285.886
-298.494
-309.324
-318.451
-325.95
-331.895
-336.36
-339.408
-341.103
-341.501
-340.656
-338.611
-335.396
-331.022
-325.488
-318.792
-310.914
-301.825
-291.491
-279.867
-266.892
-252.498
-236.621
-219.188
-200.142
-179.451
-157.096
-133.101
-107.518
-80.4226
-51.9565
-22.2123
10.6454
42.5918
75.0678
107.838
140.511
172.734
204.072
234.106
262.395
288.501
312.014
332.557
349.766
363.33
373.011
378.599
379.992
377.064
369.931
358.689
343.543
324.791
302.773
277.855
250.495
221.141
190.247
158.272
125.637
92.784
60.1086
28.0632
-2.66589
-32.169
-60.8607
-88.3951
-114.521
-139.094
-162.045
-183.336
-202.957
-220.931
-237.287
-252.071
-265.327
-277.099
-287.434
-296.368
-303.929
-310.139
-315.013
-318.553
-320.767
-321.648
-320.781
-318.483
-314.748
-309.546
-302.849
-294.655
-284.926
-273.659
-260.832
-246.438
-230.484
-212.978
-193.928
-173.36
-151.313
-127.833
-103.025
-77.0313
-50.1841
-24.7573
-18.8692
404.718
390.012
371.564
349.605
324.432
296.398
265.912
233.395
199.274
164.038
128.131
91.992
56.0656
20.7514
-13.0908
-45.8044
-77.672
-108.156
-137.036
-164.156
-189.424
-212.794
-234.25
-253.799
-271.477
-287.323
-301.394
-313.744
-324.432
-333.513
-341.04
-347.062
-351.616
-354.736
-356.443
-356.757
-355.654
-353.151
-349.225
-343.866
-337.031
-328.688
-318.787
-307.261
-294.085
-279.18
-262.506
-244.023
-223.72
-201.553
-177.569
-151.812
-124.348
-95.3106
-64.8431
-33.1749
-0.616782
32.7758
66.6654
100.666
134.415
167.534
199.633
230.334
259.27
286.043
310.321
331.75
350.029
364.875
376.025
383.293
386.512
385.568
380.429
371.131
357.761
340.477
319.528
295.204
267.861
237.884
205.676
171.689
136.36
100.132
63.4591
26.7569
-9.55959
-45.1159
-79.6018
-112.744
-144.287
-174.017
-201.775
-227.442
-250.945
-272.243
-291.345
-308.297
-323.159
-336.021
-346.981
-356.142
-363.61
-369.481
-373.841
-376.761
-378.309
-378.521
-377.445
-375.102
-371.495
-366.626
-360.49
-353.074
-344.366
-334.347
-322.997
-310.292
-296.206
-280.711
-263.784
-245.4
-225.539
-204.186
-181.333
-156.983
-131.16
-103.907
-75.2942
-45.3522
-14.402
17.4338
49.9073
82.7153
115.516
147.922
179.508
209.816
238.374
264.715
288.382
308.941
326.007
339.236
348.351
353.142
353.475
349.305
340.668
327.677
310.527
289.502
264.957
237.304
207.013
174.584
140.543
105.427
69.7592
34.0374
-1.2741
-35.7653
-69.0835
-100.94
-131.169
-159.594
-186.127
-210.721
-233.366
-254.081
-272.916
-289.929
-305.186
-318.76
-330.724
-341.151
-350.116
-357.674
-363.89
-368.811
-372.475
-374.92
-376.166
-376.228
-375.118
-372.834
-369.36
-364.663
-358.7
-351.417
-342.755
-332.65
-321.034
-307.839
-293.001
-276.463
-258.179
-238.119
-216.277
-192.666
-167.32
-140.304
-111.707
-81.6571
-50.3021
-17.8687
15.3928
49.199
83.2227
117.095
150.424
182.79
213.767
242.925
269.842
294.111
315.35
333.215
347.403
357.669
363.833
365.778
363.473
356.957
346.324
331.743
313.443
291.725
266.933
239.452
209.706
178.138
145.2
111.349
77.0312
42.6692
8.65522
-24.6449
-56.9359
-87.9429
-117.45
-145.282
-171.307
-195.438
-217.618
-237.83
-256.08
-272.387
-286.798
-299.367
-310.155
-319.241
-326.701
-332.608
-337.038
-340.056
-341.722
-342.096
-341.232
-339.176
-335.956
-331.582
-326.054
-319.37
-311.508
-302.443
-292.136
-280.544
-267.606
-253.252
-237.413
-220.016
-200.999
-180.327
-157.984
-133.985
-108.39
-81.268
-52.7841
-23.0712
10.1216
42.0784
74.6699
107.594
140.443
172.865
204.415
234.67
263.183
289.508
313.233
333.969
351.349
365.054
374.839
380.492
381.907
378.954
371.749
360.392
345.092
326.155
303.928
278.786
251.194
221.609
190.49
158.305
125.472
92.4394
59.5992
27.4339
-3.32088
-32.9169
-61.6803
-89.2648
-115.419
-140.003
-162.95
-184.226
-203.824
-221.769
-238.094
-252.846
-266.071
-277.815
-288.126
-297.04
-304.586
-310.785
-315.653
-319.191
-321.408
-322.302
-321.438
-319.154
-315.433
-310.247
-303.566
-295.388
-285.676
-274.424
-261.611
-247.228
-231.283
-213.783
-194.737
-174.168
-152.118
-128.63
-103.803
-77.7748
-50.8651
-25.2351
-19.1867
406.706
391.855
373.23
351.069
325.674
297.403
266.67
233.903
199.535
164.064
127.936
91.5952
55.4885
20.036
-13.8978
-46.7238
-78.6715
-109.216
-138.133
-165.272
-190.54
-213.899
-235.331
-254.85
-272.491
-288.298
-302.329
-314.64
-325.291
-334.338
-341.836
-347.832
-352.366
-355.471
-357.171
-357.479
-356.382
-353.89
-349.977
-344.638
-337.828
-329.514
-319.646
-308.155
-295.015
-280.146
-263.503
-245.048
-224.766
-202.609
-178.624
-152.85
-125.351
-96.2602
-65.7129
-33.9515
-1.28541
32.2481
66.2964
100.471
134.41
167.729
200.037
230.951
260.102
287.086
311.565
333.185
351.636
366.634
377.906
385.265
388.543
387.617
382.45
373.083
359.602
342.17
321.042
296.509
268.942
238.724
206.272
172.043
136.473
100.019
63.1333
26.2371
-10.2509
-45.952
-80.5609
-113.803
-145.422
-175.207
-202.996
-228.675
-252.172
-273.447
-292.512
-309.417
-324.225
-337.028
-347.929
-357.034
-364.449
-370.273
-374.592
-377.479
-379.003
-379.196
-378.109
-375.762
-372.155
-367.292
-361.163
-353.759
-345.065
-335.063
-323.732
-311.048
-296.985
-281.514
-264.609
-246.248
-226.407
-205.072
-182.231
-157.885
-132.055
-104.78
-76.1341
-46.115
-15.0832
16.8639
49.476
82.4495
115.441
148.063
179.884
210.441
239.254
265.849
289.76
310.544
327.808
341.201
350.439
355.305
355.664
351.469
342.755
329.637
312.316
291.082
266.294
238.377
207.807
175.093
140.773
105.391
69.4764
33.5354
-1.96488
-36.6097
-70.0437
-101.987
-132.27
-160.722
-187.259
-211.84
-234.459
-255.137
-273.929
-290.896
-306.105
-319.633
-331.552
-341.937
-350.863
-358.388
-364.573
-369.47
-373.115
-375.546
-376.782
-376.84
-375.732
-373.459
-370.001
-365.327
-359.392
-352.142
-343.517
-333.45
-321.874
-308.72
-293.919
-277.415
-259.157
-239.117
-217.285
-193.673
-168.314
-141.27
-112.627
-82.5132
-51.074
-18.5307
14.8636
48.825
83.0265
117.097
150.64
183.232
214.442
243.834
270.98
295.469
316.908
334.949
349.283
359.655
365.885
367.852
365.525
358.942
348.202
333.473
314.995
293.07
268.051
240.329
210.337
178.523
145.346
111.269
76.742
42.1921
8.01284
-25.423
-57.8281
-88.9235
-118.496
-146.369
-172.417
-196.555
-218.727
-238.921
-257.143
-273.415
-287.786
-300.313
-311.055
-320.097
-327.513
-333.38
-337.773
-340.756
-342.391
-342.74
-341.857
-339.788
-336.562
-332.188
-326.667
-319.995
-312.151
-303.111
-292.834
-281.277
-268.38
-254.069
-238.273
-220.913
-201.93
-181.279
-158.947
-134.946
-109.335
-82.1856
-53.6758
-24.006
9.54864
41.5089
74.2314
107.323
140.365
173.003
204.783
235.278
264.035
290.599
314.553
335.501
353.067
366.926
376.826
382.549
383.987
381.006
373.724
362.241
346.774
327.636
305.18
279.793
251.948
222.113
190.749
158.336
125.288
92.0601
59.0394
26.7327
-4.02326
-33.7256
-62.5716
-90.2109
-116.396
-140.991
-163.933
-185.192
-204.764
-222.678
-238.968
-253.686
-266.877
-278.591
-288.875
-297.768
-305.297
-311.485
-316.345
-319.881
-322.102
-323.009
-322.151
-319.879
-316.175
-311.007
-304.344
-296.183
-286.489
-275.252
-262.456
-248.084
-232.15
-214.657
-195.615
-175.046
-152.993
-129.495
-104.651
-78.5874
-51.6177
-25.7676
-19.5051
408.853
393.844
375.028
352.647
327.012
298.485
267.484
234.446
199.813
164.087
127.72
91.161
54.8603
19.2639
-14.7763
-47.7184
-79.7524
-110.361
-139.318
-166.477
-191.746
-215.091
-236.498
-255.983
-273.584
-289.349
-303.336
-315.605
-326.216
-335.226
-342.692
-348.661
-353.174
-356.263
-357.953
-358.257
-357.166
-354.684
-350.787
-345.469
-338.685
-330.404
-320.57
-309.118
-296.016
-281.187
-264.578
-246.154
-225.893
-203.748
-179.763
-153.971
-126.437
-97.2875
-66.6551
-34.7912
-2.01074
31.6744
65.8946
100.258
134.4
167.936
200.47
231.613
260.996
288.208
312.904
334.733
353.369
368.531
379.937
387.393
390.736
389.828
384.633
375.191
361.589
343.999
322.674
297.916
270.106
239.627
206.912
172.421
136.591
99.8936
62.7763
25.6711
-11.0021
-46.8579
-81.5996
-114.95
-146.65
-176.493
-204.316
-230.008
-253.497
-274.748
-293.772
-310.626
-325.374
-338.114
-348.951
-357.994
-365.352
-371.126
-375.401
-378.252
-379.748
-379.921
-378.824
-376.471
-372.865
-368.008
-361.889
-354.497
-345.818
-335.834
-324.524
-311.863
-297.824
-282.378
-265.499
-247.161
-227.344
-206.027
-183.2
-158.858
-133.021
-105.725
-77.0442
-46.9409
-15.823
16.2441
49.0054
82.1571
115.355
148.209
180.285
211.11
240.199
267.07
291.245
312.274
329.753
343.324
352.693
357.641
358.028
353.807
345.009
331.754
314.249
292.787
267.737
239.533
208.661
175.639
141.017
105.347
69.165
32.9871
-2.71703
-37.5275
-71.0855
-103.122
-133.461
-161.941
-188.482
-213.048
-235.637
-256.276
-275.021
-291.938
-307.096
-320.573
-332.443
-342.782
-351.667
-359.155
-365.309
-370.179
-373.804
-376.219
-377.445
-377.499
-376.393
-374.13
-370.69
-366.041
-360.137
-352.923
-344.337
-334.312
-322.78
-309.669
-294.909
-278.441
-260.213
-240.193
-218.373
-194.76
-169.387
-142.313
-113.622
-83.4402
-51.9109
-19.2491
14.2881
48.4168
82.81
117.095
150.869
183.705
215.167
244.813
272.207
296.932
318.59
336.822
351.312
361.801
368.101
370.092
367.741
361.086
350.229
335.341
316.669
294.52
269.254
241.273
211.015
178.934
145.499
111.178
76.4249
41.6722
7.31502
-26.2673
-58.7947
-89.9852
-119.626
-147.545
-173.617
-197.762
-219.925
-240.098
-258.289
-274.523
-288.852
-301.332
-312.026
-321.019
-328.388
-334.211
-338.564
-341.511
-343.112
-343.433
-342.528
-340.445
-337.213
-332.839
-327.327
-320.667
-312.843
-303.83
-293.586
-282.066
-269.214
-254.949
-239.199
-221.882
-202.935
-182.307
-159.987
-135.984
-110.355
-83.176
-54.6278
-24.9948
8.90097
40.8792
73.7501
107.023
140.276
173.146
205.176
235.93
264.951
291.773
315.976
337.153
354.92
368.947
378.971
384.771
386.233
383.223
375.856
364.238
348.589
329.233
306.53
280.877
252.759
222.652
191.025
158.364
125.086
91.6452
58.4277
25.9549
-4.77076
-34.5956
-63.5356
-91.2344
-117.452
-142.058
-164.994
-186.235
-205.778
-223.657
-239.91
-254.59
-267.745
-279.426
-289.681
-298.551
-306.062
-312.237
-317.09
-320.623
-322.847
-323.768
-322.917
-320.659
-316.974
-311.824
-305.181
-297.038
-287.365
-276.145
-263.366
-249.007
-233.083
-215.599
-196.561
-175.992
-153.936
-130.429
-105.567
-79.4702
-52.4437
-26.3589
-19.8206
411.159
395.979
376.957
354.34
328.447
299.644
268.355
235.026
200.105
164.106
127.483
90.6882
54.1788
18.4324
-15.7266
-48.7882
-80.9157
-111.593
-140.593
-167.773
-193.042
-216.371
-237.75
-257.198
-274.756
-290.475
-304.415
-316.639
-327.206
-336.177
-343.609
-349.549
-354.038
-357.11
-358.79
-359.089
-358.005
-355.532
-351.653
-346.359
-339.604
-331.358
-321.56
-310.15
-297.089
-282.304
-265.732
-247.342
-227.103
-204.973
-180.987
-155.176
-127.606
-98.3932
-67.6717
-35.6956
-2.79334
31.0537
65.4591
100.024
134.386
168.153
200.93
232.321
261.953
289.411
314.34
336.393
355.228
370.567
382.118
389.679
393.089
392.203
386.978
377.455
363.724
345.963
324.425
299.425
271.353
240.592
207.597
172.821
136.713
99.7539
62.3872
25.0579
-11.8146
-47.835
-82.7193
-116.186
-147.973
-177.876
-205.736
-231.441
-254.922
-276.145
-295.125
-311.922
-326.606
-339.277
-350.046
-359.022
-366.319
-372.038
-376.266
-379.079
-380.544
-380.697
-379.588
-377.231
-373.626
-368.775
-362.665
-355.286
-346.625
-336.66
-325.372
-312.736
-298.723
-283.305
-266.452
-248.141
-228.348
-207.052
-184.241
-159.905
-134.06
-106.742
-78.0264
-47.8312
-16.6231
15.5729
48.4942
81.8367
115.256
148.36
180.709
211.823
241.21
268.377
292.838
314.13
331.841
345.604
355.116
360.152
360.57
356.32
347.432
334.029
316.325
294.618
269.285
240.773
209.573
176.22
141.273
105.292
68.8236
32.3905
-3.53244
-38.5203
-72.2109
-104.344
-134.744
-163.253
-189.797
-214.346
-236.902
-257.499
-276.192
-293.055
-308.158
-321.58
-333.398
-343.688
-352.528
-359.977
-366.097
-370.939
-374.541
-376.939
-378.155
-378.203
-377.099
-374.848
-371.427
-366.805
-360.935
-353.759
-345.216
-335.236
-323.751
-310.686
-295.971
-279.542
-261.346
-241.35
-219.542
-195.929
-170.541
-143.436
-114.694
-84.4393
-52.8135
-20.025
13.6649
47.9731
82.5722
117.087
151.109
184.209
215.941
245.86
273.522
298.502
320.394
338.833
353.493
364.107
370.483
372.5
370.122
363.391
352.406
337.348
318.466
296.076
270.545
242.283
211.738
179.372
145.659
111.074
76.0785
41.1083
6.5599
-27.1782
-59.8374
-91.129
-120.844
-148.81
-174.907
-199.059
-221.211
-241.361
-259.519
-275.712
-289.995
-302.425
-313.067
-322.006
-329.325
-335.101
-339.411
-342.318
-343.884
-344.174
-343.246
-341.149
-337.909
-333.537
-328.031
-321.386
-313.584
-304.599
-294.39
-282.912
-270.106
-255.893
-240.193
-222.922
-204.013
-183.413
-161.103
-137.1
-111.449
-84.2391
-55.6375
-25.976
8.11371
40.1854
73.2239
106.693
140.174
173.293
205.593
236.625
265.931
293.032
317.501
338.926
356.91
371.118
381.277
387.159
388.65
385.606
378.148
366.384
350.539
330.947
307.977
282.038
253.626
223.225
191.316
158.389
124.863
91.1937
57.7628
25.0933
-5.55869
-35.5278
-64.5738
-92.3365
-118.589
-143.205
-166.134
-187.354
-206.865
-224.707
-240.92
-255.559
-268.674
-280.319
-290.544
-299.389
-306.88
-313.043
-317.887
-321.417
-323.644
-324.576
-323.737
-321.494
-317.829
-312.701
-306.078
-297.955
-288.304
-277.103
-264.341
-249.996
-234.084
-216.61
-197.577
-177.007
-154.949
-131.432
-106.553
-80.4242
-53.3449
-27.0144
-20.1283
413.625
398.262
379.019
356.149
329.978
300.879
269.282
235.64
200.413
164.121
127.224
90.1754
53.4419
17.5345
-16.7458
-49.933
-82.1624
-112.914
-141.959
-169.159
-194.428
-217.739
-239.089
-258.496
-276.008
-291.676
-305.566
-317.741
-328.262
-337.191
-344.586
-350.494
-354.958
-358.013
-359.682
-359.975
-358.9
-356.436
-352.575
-347.307
-340.583
-332.374
-322.615
-311.251
-298.234
-283.496
-266.964
-248.611
-228.396
-206.283
-182.296
-156.467
-128.858
-99.5783
-68.764
-36.6666
-3.63383
30.385
64.9886
99.7695
134.365
168.381
201.417
233.075
262.971
290.693
315.872
338.164
357.215
372.742
384.449
392.125
395.606
394.741
389.488
379.878
366.008
348.063
326.295
301.038
272.682
241.621
208.324
173.243
136.839
99.5985
61.9655
24.3965
-12.6905
-48.885
-83.9215
-117.511
-149.391
-179.359
-207.258
-232.975
-256.447
-277.64
-296.572
-313.308
-327.922
-340.52
-351.214
-360.118
-367.349
-373.01
-377.188
-379.959
-381.393
-381.524
-380.402
-378.04
-374.437
-369.592
-363.493
-356.129
-347.485
-337.541
-326.278
-313.667
-299.683
-284.294
-267.47
-249.187
-229.421
-208.148
-185.353
-161.024
-135.173
-107.83
-79.0808
-48.7876
-17.4851
14.8484
47.9405
81.4867
115.142
148.514
181.155
212.579
242.286
269.771
294.539
316.113
334.075
348.045
357.71
362.841
363.292
359.01
350.027
336.465
318.546
296.575
270.939
242.095
210.545
176.836
141.54
105.225
68.4506
31.7434
-4.41299
-39.5904
-73.4213
-105.657
-136.121
-164.659
-191.205
-215.735
-238.255
-258.805
-277.443
-294.248
-309.291
-322.655
-334.416
-344.653
-353.446
-360.852
-366.936
-371.748
-375.327
-377.707
-378.91
-378.953
-377.852
-375.612
-372.212
-367.62
-361.785
-354.65
-346.152
-336.222
-324.787
-311.772
-297.105
-280.719
-262.558
-242.586
-220.792
-197.18
-171.777
-144.639
-115.843
-85.5116
-53.7832
-20.8598
12.9925
47.4927
82.3119
117.072
151.361
184.742
216.764
246.976
274.925
300.179
322.323
340.983
355.826
366.574
373.033
375.076
372.671
365.856
354.736
339.494
320.387
297.738
271.922
243.36
212.507
179.834
145.823
110.957
75.7017
40.499
5.74607
-28.1572
-60.9579
-92.3564
-122.149
-150.166
-176.288
-200.446
-222.587
-242.711
-260.834
-276.982
-291.216
-303.593
-314.177
-323.06
-330.324
-336.05
-340.315
-343.179
-344.706
-344.964
-344.01
-341.897
-338.651
-334.28
-328.782
-322.152
-314.374
-305.419
-295.246
-283.814
-271.058
-256.899
-241.254
-224.034
-205.165
-184.595
-162.298
-138.295
-112.621
-85.375
-56.705
-26.9534
7.18772
39.4245
72.6504
106.331
140.057
173.444
206.032
237.364
266.974
294.374
319.129
340.82
359.036
373.44
383.745
389.715
391.237
388.157
380.6
368.68
352.625
332.778
309.522
283.275
254.548
223.832
191.62
158.408
124.621
90.7048
57.0435
24.1371
-6.37872
-36.5238
-65.6881
-93.5186
-119.807
-144.434
-167.353
-188.55
-208.027
-225.828
-241.997
-256.592
-269.665
-281.272
-291.464
-300.282
-307.752
-313.901
-318.736
-322.263
-324.492
-325.431
-324.609
-322.384
-318.741
-313.635
-307.036
-298.934
-289.305
-278.126
-265.383
-251.053
-235.153
-217.689
-198.661
-178.092
-156.031
-132.506
-107.609
-81.4504
-54.3226
-27.7415
-20.4226
416.252
400.694
381.215
358.074
331.607
302.191
270.264
236.289
200.733
164.129
126.94
89.6214
52.6473
16.5567
-17.8253
-51.1523
-83.4939
-114.325
-143.416
-170.638
-195.906
-219.197
-240.513
-259.877
-277.338
-292.953
-306.789
-318.912
-329.383
-338.268
-345.623
-351.498
-355.936
-358.971
-360.628
-360.915
-359.849
-357.394
-353.554
-348.313
-341.623
-333.454
-323.736
-312.421
-299.452
-284.764
-268.274
-249.961
-229.773
-207.679
-183.693
-157.845
-130.195
-100.844
-69.9331
-37.705
-4.53409
29.667
64.4818
99.4932
134.338
168.619
201.931
233.872
264.051
292.054
317.501
340.047
359.33
375.057
386.932
394.731
398.288
397.445
392.162
382.461
368.442
350.3
328.287
302.755
274.093
242.713
209.094
173.686
136.968
99.4255
61.5103
23.6845
-13.6313
-50.0086
-85.2081
-118.928
-150.906
-180.941
-208.881
-234.611
-258.074
-279.233
-298.113
-314.784
-329.323
-341.84
-352.455
-361.282
-368.443
-374.042
-378.166
-380.893
-382.294
-382.4
-381.265
-378.899
-375.298
-370.46
-364.372
-357.023
-348.399
-338.477
-327.239
-314.657
-300.704
-285.345
-268.552
-250.3
-230.562
-209.315
-186.538
-162.217
-136.36
-108.991
-80.1839
-49.8371
-18.4107
14.0691
47.3429
81.1054
115.013
148.67
181.623
213.378
243.426
271.253
296.347
318.225
336.454
350.646
360.476
365.709
366.194
361.879
352.794
339.063
320.914
298.662
272.701
243.5
211.576
177.487
141.816
105.146
68.0437
31.0442
-5.36102
-40.7404
-74.7186
-107.062
-137.593
-166.161
-192.707
-217.214
-239.696
-260.195
-278.774
-295.516
-310.495
-323.796
-335.497
-345.678
-354.42
-361.781
-367.827
-372.607
-376.16
-378.522
-379.712
-379.749
-378.65
-376.422
-373.045
-368.484
-362.688
-355.597
-347.148
-337.27
-325.888
-312.928
-298.312
-281.972
-263.848
-243.903
-222.123
-198.513
-173.095
-145.923
-117.071
-86.6587
-54.8216
-21.755
12.2696
46.9741
82.0277
117.049
151.622
185.304
217.636
248.16
276.415
301.963
324.376
343.273
358.312
369.205
375.751
377.823
375.388
368.485
357.219
341.78
322.433
299.507
273.386
244.502
213.32
180.32
145.991
110.825
75.293
39.8424
4.87395
-29.2084
-62.1575
-93.669
-123.543
-151.613
-177.762
-201.925
-224.053
-244.149
-262.234
-278.334
-292.516
-304.834
-315.358
-324.179
-331.385
-337.057
-341.275
-344.094
-345.579
-345.8
-344.82
-342.691
-339.438
-335.067
-329.578
-322.965
-315.212
-306.288
-296.155
-284.77
-272.069
-257.97
-242.383
-225.218
-206.392
-185.855
-163.572
-139.567
-113.872
-86.5836
-57.8334
-27.9246
6.1176
38.5951
72.0276
105.937
139.925
173.596
206.493
238.144
268.079
295.8
320.86
342.836
361.302
375.914
386.375
392.441
393.995
390.878
383.215
371.128
354.847
334.728
311.165
284.588
255.523
224.471
191.937
158.42
124.356
90.1776
56.269
23.0737
-7.21941
-37.5864
-66.8808
-94.782
-121.107
-145.744
-168.653
-189.824
-209.264
-227.02
-243.142
-257.689
-270.718
-282.283
-292.439
-301.229
-308.678
-314.811
-319.638
-323.162
-325.391
-326.328
-325.534
-323.329
-319.711
-314.628
-308.053
-299.974
-290.37
-279.214
-266.49
-252.176
-236.29
-218.837
-199.815
-179.246
-157.183
-133.649
-108.736
-82.5492
-55.3776
-28.5492
-20.6967
419.042
403.276
383.544
360.114
333.333
303.579
271.302
236.971
201.066
164.13
126.632
89.0248
51.7925
15.4908
-18.9609
-52.4464
-84.9116
-115.826
-144.967
-172.211
-197.476
-220.744
-242.025
-261.342
-278.749
-294.306
-308.085
-320.152
-330.569
-339.407
-346.72
-352.56
-356.969
-359.984
-361.628
-361.912
-360.851
-358.407
-354.59
-349.377
-342.723
-334.595
-324.922
-313.659
-300.742
-286.108
-269.665
-251.394
-231.235
-209.162
-185.177
-159.312
-131.617
-102.192
-71.1799
-38.8121
-5.49605
28.8986
63.9374
99.1939
134.302
168.865
202.469
234.714
265.193
293.495
319.228
342.042
361.573
377.513
389.567
397.499
401.136
400.318
395.002
385.205
371.029
352.675
330.4
304.575
275.585
243.87
209.905
174.148
137.098
99.2327
61.0201
22.9196
-14.6382
-51.2075
-86.581
-120.438
-152.52
-182.626
-210.608
-236.352
-259.802
-280.925
-299.749
-316.35
-330.808
-343.24
-353.769
-362.514
-369.6
-375.133
-379.2
-381.879
-383.247
-383.326
-382.177
-379.807
-376.209
-371.378
-365.303
-357.971
-349.366
-339.468
-328.257
-315.705
-301.784
-286.458
-269.698
-251.479
-231.772
-210.552
-187.796
-163.484
-137.622
-110.227
-81.3599
-50.9582
-19.4012
13.2333
46.6999
80.6908
114.865
148.825
182.111
214.218
244.629
272.82
298.265
320.466
338.981
353.41
363.416
368.757
369.28
364.93
355.736
341.824
323.43
300.877
274.569
244.988
212.666
178.17
142.101
105.051
67.6003
30.2909
-6.37938
-41.9728
-76.104
-108.562
-139.162
-167.759
-194.304
-218.786
-241.225
-261.669
-280.184
-296.859
-311.77
-325.004
-336.642
-346.763
-355.451
-362.764
-368.769
-373.515
-377.042
-379.383
-380.56
-380.591
-379.493
-377.278
-373.926
-369.398
-363.642
-356.599
-348.201
-338.378
-327.055
-314.153
-299.592
-283.302
-265.218
-245.301
-223.538
-199.93
-174.496
-147.289
-118.378
-87.8819
-55.9304
-22.7118
11.4947
46.4154
81.7182
117.018
151.892
185.893
218.556
249.413
277.994
303.854
326.555
345.705
360.954
372.001
378.64
380.743
378.276
371.278
359.857
344.208
324.604
301.382
274.936
245.711
214.178
180.829
146.163
110.677
74.8507
39.1369
3.94231
-30.3346
-63.4374
-95.0681
-125.027
-153.153
-179.329
-203.496
-225.61
-245.676
-263.72
-279.768
-293.893
-306.151
-316.608
-325.365
-332.508
-338.124
-342.29
-345.061
-346.502
-346.684
-345.677
-343.53
-340.269
-335.9
-330.42
-323.825
-316.097
-307.207
-297.117
-285.782
-273.14
-259.104
-243.58
-226.474
-207.696
-187.193
-164.928
-140.918
-115.204
-87.8657
-59.0284
-28.9064
4.91917
37.6979
71.3541
105.51
139.774
173.749
206.975
238.966
269.246
297.309
322.694
344.974
363.707
378.54
389.169
395.338
396.928
393.772
385.995
373.729
357.207
336.797
312.906
285.976
256.552
225.142
192.266
158.425
124.067
89.613
55.4385
21.9125
-8.09193
-38.7204
-68.1541
-96.1282
-122.491
-147.137
-170.034
-191.175
-210.575
-228.284
-244.355
-258.851
-271.831
-283.352
-293.471
-302.23
-309.656
-315.774
-320.591
-324.112
-326.341
-327.269
-326.511
-324.328
-320.737
-315.68
-309.13
-301.076
-291.498
-280.366
-267.664
-253.367
-237.494
-220.054
-201.039
-180.471
-158.405
-134.864
-109.934
-83.7213
-56.5101
-29.448
-20.9436
421.996
406.009
386.009
362.272
335.156
305.044
272.393
237.685
201.409
164.122
126.296
88.3846
50.875
14.3327
-20.1519
-53.816
-86.4174
-117.42
-146.613
-173.878
-199.138
-222.382
-243.624
-262.891
-280.239
-295.735
-309.452
-321.459
-331.822
-340.608
-347.877
-353.679
-358.058
-361.052
-362.682
-362.963
-361.905
-359.474
-355.681
-350.5
-343.883
-335.797
-326.174
-314.966
-302.106
-287.526
-271.135
-252.909
-232.783
-210.732
-186.749
-160.867
-133.127
-103.624
-72.505
-39.989
-6.52181
28.0786
63.3543
98.8703
134.257
169.119
203.033
235.598
266.397
295.013
321.051
344.15
363.944
380.111
392.355
400.429
404.154
403.361
398.012
388.111
373.769
355.189
332.636
306.497
277.161
245.089
210.754
174.632
137.227
99.0194
60.4932
22.1003
-15.7135
-52.4834
-88.0416
-122.043
-154.234
-184.415
-212.44
-238.198
-261.634
-282.718
-301.481
-318.006
-332.378
-344.719
-355.156
-363.814
-370.82
-376.282
-380.289
-382.919
-384.249
-384.3
-383.139
-380.765
-377.169
-372.347
-366.285
-358.97
-350.386
-340.513
-329.331
-316.811
-302.925
-287.634
-270.909
-252.724
-233.051
-211.861
-189.127
-164.827
-138.96
-111.538
-82.6121
-52.1504
-20.458
12.3393
46.0091
80.2417
114.698
148.979
182.617
215.098
245.896
274.473
300.29
322.836
341.656
356.338
366.532
371.989
372.552
368.165
358.855
344.75
326.096
303.223
276.544
246.561
213.813
178.885
142.392
104.941
67.1184
29.4808
-7.47039
-43.2899
-77.5799
-110.158
-140.828
-169.455
-195.996
-220.451
-242.843
-263.228
-281.675
-298.278
-313.117
-326.279
-337.849
-347.907
-356.537
-363.8
-369.762
-374.472
-377.971
-380.291
-381.453
-381.478
-380.38
-378.18
-374.853
-370.361
-364.649
-357.656
-349.313
-339.549
-328.288
-315.448
-300.946
-284.709
-266.668
-246.781
-225.037
-201.431
-175.982
-148.739
-119.766
-89.1818
-57.1119
-23.7322
10.6661
45.8148
81.3815
116.975
152.17
186.51
219.523
250.733
279.661
305.853
328.86
348.28
363.752
374.963
381.702
383.838
381.335
374.238
362.652
346.779
326.902
303.365
276.574
246.984
215.079
181.36
146.335
110.51
74.3732
38.3809
2.94677
-31.535
-64.7995
-96.5555
-126.604
-154.787
-180.99
-205.161
-227.258
-247.292
-265.29
-281.285
-295.35
-307.542
-317.929
-326.616
-333.693
-339.248
-343.361
-346.083
-347.476
-347.616
-346.579
-344.414
-341.144
-336.777
-331.308
-324.73
-317.029
-308.177
-298.13
-286.849
-274.269
-260.302
-244.846
-227.802
-209.078
-188.61
-166.366
-142.35
-116.616
-89.224
-60.2963
-29.9572
3.65064
36.7337
70.6288
105.047
139.603
173.903
207.475
239.83
270.475
298.901
324.632
347.234
366.253
381.322
392.128
398.407
400.035
396.838
388.943
376.484
359.705
338.985
314.745
287.439
257.633
225.843
192.603
158.421
123.753
89.0107
54.554
20.6612
-9.00661
-39.9317
-69.5105
-97.5592
-123.96
-148.613
-171.496
-192.606
-211.962
-229.619
-245.635
-260.078
-273.006
-284.48
-294.559
-303.286
-310.688
-316.789
-321.596
-325.113
-327.342
-328.275
-327.539
-325.382
-321.819
-316.789
-310.267
-302.241
-292.69
-281.584
-268.905
-254.625
-238.767
-221.341
-202.332
-181.765
-159.698
-136.149
-111.203
-84.9665
-57.7206
-30.4485
-21.1564
425.116
408.894
388.61
364.547
337.077
306.585
273.539
238.431
201.762
164.103
125.932
87.699
49.8927
13.0759
-21.3949
-55.2627
-88.0134
-119.108
-148.354
-175.64
-200.895
-224.112
-245.312
-264.523
-281.809
-297.24
-310.892
-322.836
-333.139
-341.871
-349.094
-354.856
-359.204
-362.174
-363.79
-364.071
-363.01
-360.597
-356.829
-351.681
-345.102
-337.062
-327.493
-316.343
-303.543
-289.021
-272.685
-254.506
-234.418
-212.389
-188.411
-162.512
-134.724
-105.143
-73.9092
-41.2366
-7.61453
27.2061
62.7311
98.5211
134.202
169.379
203.621
236.524
267.663
296.61
322.972
346.371
366.444
382.852
395.297
403.524
407.341
406.578
401.192
391.182
376.665
357.842
334.997
308.522
278.821
246.371
211.642
175.135
137.354
98.7854
59.9272
21.225
-16.8602
-53.8378
-89.5914
-123.745
-156.049
-186.308
-214.378
-240.151
-263.571
-284.612
-303.31
-319.754
-334.033
-346.276
-356.616
-365.181
-372.102
-377.491
-381.434
-384.01
-385.297
-385.323
-384.149
-381.771
-378.179
-373.366
-367.318
-360.021
-351.46
-341.614
-330.462
-317.976
-304.126
-288.873
-272.185
-254.037
-234.4
-213.241
-190.532
-166.246
-140.375
-112.928
-83.9423
-53.4147
-21.583
11.3856
45.268
79.7565
114.509
149.13
183.14
216.017
247.224
276.213
302.426
325.337
344.481
359.432
369.826
375.406
376.012
371.585
362.153
347.844
328.914
305.7
278.629
248.217
215.017
179.631
142.688
104.811
66.5962
28.6109
-8.63617
-44.6951
-79.1493
-111.852
-142.595
-171.251
-197.787
-222.211
-244.551
-264.873
-283.247
-299.772
-314.536
-327.622
-339.12
-349.111
-357.68
-364.889
-370.806
-375.479
-378.948
-381.246
-382.393
-382.409
-381.312
-379.127
-375.828
-371.373
-365.708
-358.767
-350.483
-340.782
-329.586
-316.812
-302.374
-286.193
-268.198
-248.345
-226.62
-203.017
-177.554
-150.274
-121.237
-90.56
-58.3675
-24.8179
9.78172
45.1709
81.0158
116.921
152.454
187.154
220.537
252.121
281.416
307.96
331.292
350.999
366.708
378.094
384.939
387.109
384.57
377.366
365.605
349.494
329.328
305.456
278.298
248.323
216.023
181.913
146.508
110.323
73.8585
37.5724
1.88546
-32.8119
-66.2457
-98.1329
-128.275
-156.517
-182.747
-206.921
-228.999
-248.997
-266.948
-282.884
-296.885
-309.009
-319.321
-327.933
-334.939
-340.432
-344.489
-347.157
-348.5
-348.595
-347.525
-345.342
-342.063
-337.698
-332.24
-325.681
-318.009
-309.196
-299.195
-287.97
-275.458
-261.563
-246.181
-229.202
-210.538
-190.107
-167.884
-143.865
-118.108
-90.662
-61.6408
-31.0945
2.32582
35.7032
69.8514
104.547
139.41
174.053
207.993
240.733
271.765
300.575
326.674
349.617
368.941
384.26
395.255
401.652
403.319
400.08
392.06
379.397
362.343
341.293
316.681
288.978
258.765
226.573
192.949
158.408
123.412
88.3704
53.6187
19.3317
-9.97797
-41.2276
-70.9528
-99.0765
-125.515
-150.175
-173.041
-194.116
-213.424
-231.026
-246.984
-261.368
-274.241
-285.665
-295.703
-304.396
-311.772
-317.855
-322.652
-326.165
-328.394
-329.335
-328.619
-326.491
-322.955
-317.956
-311.465
-303.467
-293.944
-282.867
-270.213
-255.951
-240.109
-222.697
-203.697
-183.13
-161.061
-137.506
-112.545
-86.2852
-59.0114
-31.5585
-21.3299
428.404
411.933
391.347
366.94
339.095
308.202
274.739
239.206
202.122
164.073
125.538
86.9672
48.8428
11.7103
-22.6826
-56.7887
-89.702
-120.893
-150.192
-177.499
-202.746
-225.933
-247.088
-266.24
-283.459
-298.821
-312.403
-324.28
-334.521
-343.196
-350.369
-356.09
-360.405
-363.35
-364.951
-365.229
-364.169
-361.775
-358.032
-352.918
-346.382
-338.389
-328.877
-317.787
-305.053
-290.591
-274.317
-256.187
-236.139
-214.135
-190.165
-164.248
-136.412
-106.749
-75.3932
-42.555
-8.77828
26.279
62.0668
98.1446
134.135
169.645
204.233
237.492
268.99
298.286
324.99
348.706
369.073
385.738
398.394
406.783
410.7
409.97
404.544
394.42
379.717
360.636
337.483
310.65
280.565
247.713
212.569
175.657
137.476
98.5296
59.3186
20.293
-18.0833
-55.2702
-91.2325
-125.547
-157.968
-188.309
-216.425
-242.212
-265.614
-286.609
-305.237
-321.594
-335.774
-347.913
-358.15
-366.616
-373.447
-378.757
-382.634
-385.154
-386.397
-386.395
-385.208
-382.827
-379.238
-374.435
-368.402
-361.124
-352.587
-342.769
-331.649
-319.199
-305.388
-290.174
-273.526
-255.416
-235.818
-214.694
-192.013
-167.741
-141.868
-114.396
-85.353
-54.7531
-22.7778
10.3699
44.4752
79.2319
114.297
149.275
183.678
216.974
248.614
278.037
304.67
327.97
347.458
362.695
373.3
379.01
379.662
375.194
365.632
351.108
331.884
308.31
280.823
249.957
216.278
180.406
142.988
104.661
66.0317
27.6786
-9.87965
-46.1923
-80.8133
-113.647
-144.465
-173.149
-199.676
-224.065
-246.349
-266.604
-284.9
-301.343
-316.026
-329.031
-340.453
-350.374
-358.879
-366.032
-371.902
-376.534
-379.972
-382.247
-383.377
-383.385
-382.289
-380.118
-376.849
-372.435
-366.819
-359.934
-351.711
-342.077
-330.95
-318.247
-303.876
-287.755
-269.81
-249.991
-228.288
-204.69
-179.212
-151.895
-122.791
-92.0186
-59.6985
-25.971
8.83971
44.4817
80.6196
116.854
152.743
187.822
221.596
253.576
283.259
310.176
333.852
353.864
369.825
381.396
388.352
390.558
387.98
380.664
368.717
352.355
331.882
307.656
280.11
249.726
217.009
182.485
146.679
110.115
73.3043
36.7093
0.7559
-34.1662
-67.7783
-99.8022
-130.041
-158.343
-184.601
-208.776
-230.834
-250.792
-268.692
-284.567
-298.501
-310.551
-320.784
-329.316
-336.247
-341.673
-345.672
-348.284
-349.574
-349.617
-348.517
-346.313
-343.027
-338.664
-333.217
-326.678
-319.037
-310.263
-300.311
-289.146
-276.705
-262.888
-247.584
-230.678
-212.074
-191.686
-169.483
-145.464
-119.681
-92.1838
-63.0643
-32.3278
0.948833
34.6079
69.0212
104.007
139.193
174.2
208.527
241.674
273.117
302.331
328.821
352.125
371.771
387.357
398.551
405.074
406.783
403.499
395.349
382.467
365.122
343.722
318.716
290.59
259.947
227.33
193.3
158.382
123.041
87.6914
52.6365
17.9528
-11.0376
-42.616
-72.4836
-100.682
-127.157
-151.823
-174.668
-195.705
-214.962
-232.504
-248.4
-262.723
-275.537
-286.908
-296.901
-305.559
-312.909
-318.974
-323.76
-327.269
-329.497
-330.447
-329.752
-327.655
-324.147
-319.183
-312.723
-304.754
-295.263
-284.215
-271.588
-257.345
-241.519
-224.123
-205.132
-184.566
-162.496
-138.936
-113.958
-87.6771
-60.384
-32.7838
-21.4623
431.86
415.127
394.223
369.451
341.21
309.895
275.991
240.011
202.489
164.029
125.112
86.188
47.7234
10.2218
-24.0031
-58.3979
-91.4858
-122.775
-152.129
-179.457
-204.694
-227.847
-248.953
-268.042
-285.19
-300.478
-313.987
-325.793
-335.967
-344.583
-351.704
-357.381
-361.661
-364.581
-366.165
-366.437
-365.381
-363.007
-359.291
-354.212
-347.72
-339.777
-330.326
-319.301
-306.636
-292.239
-276.029
-257.952
-237.948
-215.97
-192.011
-166.076
-138.192
-108.445
-76.958
-43.9458
-10.0164
25.2958
61.3602
97.7389
134.055
169.913
204.868
238.5
270.377
300.04
327.103
351.157
371.832
388.77
401.648
410.207
414.232
413.539
408.07
397.827
382.927
363.573
340.093
312.881
282.393
249.112
213.535
176.196
137.592
98.2506
58.665
19.3032
-19.3849
-56.784
-92.9671
-127.449
-159.993
-190.417
-218.582
-244.382
-267.765
-288.71
-307.262
-323.526
-337.601
-349.63
-359.756
-368.118
-374.854
-380.082
-383.889
-386.348
-387.548
-387.514
-386.315
-383.931
-380.347
-375.554
-369.536
-362.28
-353.767
-343.978
-332.893
-320.48
-306.711
-291.539
-274.932
-256.864
-237.306
-216.219
-193.569
-169.315
-143.441
-115.944
-86.846
-56.1681
-24.0442
9.28888
43.6294
78.6652
114.059
149.412
184.23
217.967
250.065
279.947
307.024
330.735
350.586
366.127
376.958
382.805
383.505
378.994
369.296
354.543
335.01
311.054
283.127
251.78
217.595
181.211
143.291
104.486
65.4216
26.681
-11.2043
-47.7851
-82.5744
-115.545
-146.44
-175.149
-201.665
-226.016
-248.239
-268.42
-286.633
-302.99
-317.587
-330.508
-341.85
-351.696
-360.133
-367.227
-373.047
-377.637
-381.043
-383.294
-384.407
-384.405
-383.308
-381.154
-377.916
-373.545
-367.981
-361.156
-352.998
-343.434
-332.38
-319.751
-305.452
-289.397
-271.504
-251.722
-230.041
-206.45
-180.958
-153.602
-124.431
-93.5598
-61.1062
-27.1935
7.83793
43.745
80.191
116.77
153.035
188.514
222.701
255.097
285.19
312.5
336.54
356.875
373.103
384.871
391.945
394.189
391.569
384.135
371.992
355.364
334.566
309.965
282.008
251.194
218.036
183.076
146.847
109.884
72.7079
35.7887
-0.443598
-35.6004
-69.3997
-101.565
-131.903
-160.269
-186.553
-210.727
-232.763
-252.679
-270.524
-286.334
-300.197
-312.17
-322.317
-330.765
-337.616
-342.973
-346.91
-349.465
-350.699
-350.684
-349.552
-347.329
-344.033
-339.673
-334.239
-327.721
-320.111
-311.378
-301.48
-290.376
-278.011
-264.278
-249.056
-232.23
-213.688
-193.349
-171.164
-147.149
-121.337
-93.7909
-64.5693
-33.669
-0.475071
33.4489
68.1366
103.424
138.951
174.341
209.076
242.651
274.529
304.17
331.072
354.757
374.744
390.614
402.02
408.675
410.432
407.1
398.809
385.698
368.044
346.273
320.849
292.277
261.179
228.115
193.655
158.343
122.64
86.9719
51.6136
16.6067
-12.2722
-44.1051
-74.1058
-102.378
-128.888
-153.558
-176.38
-197.375
-216.576
-234.055
-249.884
-264.143
-276.894
-288.209
-298.155
-306.775
-314.097
-320.143
-324.919
-328.422
-330.65
-331.615
-330.938
-328.874
-325.396
-320.469
-314.042
-306.103
-296.646
-285.629
-273.032
-258.807
-242.998
-225.62
-206.64
-186.072
-164.002
-140.437
-115.443
-89.1417
-61.8381
-34.1244
-21.5595
435.487
418.478
397.238
372.081
343.424
311.664
277.296
240.844
202.861
163.97
124.653
85.3603
46.5357
8.61487
-25.3643
-60.0958
-93.3676
-124.758
-154.166
-181.513
-206.738
-229.855
-250.908
-269.929
-287.002
-302.211
-315.642
-327.375
-337.479
-346.031
-353.097
-358.728
-362.972
-365.864
-367.433
-367.694
-366.645
-364.294
-360.604
-355.564
-349.118
-341.228
-331.84
-320.884
-308.291
-293.964
-277.822
-259.802
-239.845
-217.896
-193.95
-167.998
-140.066
-110.231
-78.6063
-45.4088
-11.3322
24.2547
60.61
97.3028
133.962
170.184
205.525
239.548
271.823
301.874
329.312
353.724
374.722
391.949
405.061
413.799
417.938
417.285
411.774
401.405
386.296
366.656
342.828
315.216
284.304
250.569
214.54
176.747
137.702
97.9458
57.9657
18.2523
-20.7682
-58.3791
-94.7988
-129.455
-162.127
-192.635
-220.852
-246.664
-270.026
-290.917
-309.388
-325.552
-339.514
-351.426
-361.435
-369.687
-376.324
-381.464
-385.199
-387.595
-388.748
-388.68
-387.47
-385.084
-381.505
-376.723
-370.722
-363.488
-355.001
-345.242
-334.193
-321.82
-308.094
-292.967
-276.403
-258.379
-238.863
-217.818
-195.202
-170.967
-145.095
-117.576
-88.4212
-57.6637
-25.3838
8.14
42.7273
78.0545
113.792
149.54
184.794
218.994
251.575
281.943
309.489
333.633
353.87
369.732
380.802
386.794
387.543
382.988
373.146
358.152
338.292
313.933
285.541
253.687
218.968
182.042
143.593
104.287
64.7628
25.616
-12.6127
-49.4767
-84.4344
-117.55
-148.521
-177.255
-203.755
-228.063
-250.221
-270.323
-288.449
-304.713
-319.221
-332.051
-343.309
-353.077
-361.442
-368.475
-374.243
-378.789
-382.161
-384.387
-385.482
-385.47
-384.37
-382.233
-379.029
-374.703
-369.196
-362.432
-354.342
-344.852
-333.876
-321.327
-307.104
-291.117
-273.281
-253.539
-231.882
-208.299
-182.794
-155.398
-126.158
-95.1852
-62.5923
-28.4883
6.77369
42.9589
79.7279
116.67
153.331
189.23
223.851
256.685
287.21
314.935
339.359
360.035
376.545
388.521
395.72
398.002
395.339
387.779
375.429
358.52
337.38
312.382
283.992
252.725
219.103
183.683
147.009
109.627
72.0679
34.8084
-1.71543
-37.117
-71.1112
-103.424
-133.865
-162.294
-188.605
-212.776
-234.787
-254.657
-272.444
-288.185
-301.974
-313.865
-323.922
-332.279
-339.046
-344.33
-348.204
-350.7
-351.874
-351.798
-350.632
-348.388
-345.083
-340.726
-335.305
-328.809
-321.231
-312.543
-302.699
-291.66
-279.375
-265.733
-250.598
-233.856
-215.382
-195.094
-172.932
-148.918
-123.079
-95.4822
-66.1606
-35.1259
-1.94312
32.2272
67.1949
102.795
138.684
174.473
209.64
243.664
276
306.09
333.426
357.516
377.861
394.033
405.663
412.459
414.264
410.882
402.445
389.091
371.11
348.947
323.08
294.038
262.459
228.924
194.013
158.287
122.207
86.2095
50.5541
15.281
-13.6755
-45.6999
-75.822
-104.166
-130.709
-155.381
-178.177
-199.126
-218.267
-235.677
-251.437
-265.626
-278.311
-289.567
-299.463
-308.045
-315.337
-321.364
-326.129
-329.627
-331.854
-332.824
-332.176
-330.149
-326.701
-321.813
-315.421
-307.512
-298.093
-287.108
-274.544
-260.338
-244.545
-227.186
-208.219
-187.649
-165.58
-142.012
-117.001
-90.6784
-63.3725
-35.566
-21.6428
439.286
421.987
400.394
374.83
345.736
313.509
278.652
241.703
203.235
163.894
124.16
84.4823
45.2826
6.90127
-26.7816
-61.8896
-95.3511
-126.842
-156.306
-183.671
-208.881
-231.957
-252.954
-271.903
-288.894
-304.021
-317.37
-329.024
-339.054
-347.54
-354.549
-360.132
-364.338
-367.201
-368.752
-369.001
-367.962
-365.633
-361.972
-356.972
-350.575
-342.74
-333.418
-322.537
-310.019
-295.767
-279.697
-261.739
-241.829
-219.914
-195.984
-170.014
-142.037
-112.11
-80.342
-46.9437
-12.7284
23.1538
59.8145
96.8349
133.854
170.457
206.201
240.637
273.327
303.787
331.617
356.406
377.744
395.275
408.636
417.56
421.82
421.211
415.656
405.157
389.825
369.886
345.689
317.66
286.297
252.087
215.584
177.31
137.805
97.6114
57.2218
17.1367
-22.2342
-60.0583
-96.7322
-131.566
-164.371
-194.966
-223.234
-249.06
-272.396
-293.229
-311.614
-327.672
-341.515
-353.302
-363.187
-371.322
-377.854
-382.904
-386.563
-388.892
-389.956
-389.892
-388.672
-386.285
-382.712
-377.942
-371.959
-364.747
-356.287
-346.561
-335.548
-323.218
-309.538
-294.457
-277.939
-259.961
-240.491
-219.49
-196.91
-172.698
-146.829
-119.29
-90.0797
-59.2419
-26.7984
6.92245
41.7659
77.3977
113.494
149.656
185.366
220.053
253.142
284.021
312.061
336.665
357.307
373.511
384.833
390.977
391.781
387.18
377.187
361.939
341.735
316.951
288.067
255.679
220.397
182.9
143.893
104.06
64.0523
24.4801
-14.1082
-51.2704
-86.3977
-119.665
-150.711
-179.468
-205.948
-230.21
-252.296
-272.314
-290.346
-306.512
-320.925
-333.662
-344.831
-354.518
-362.807
-369.775
-375.49
-379.99
-383.325
-385.526
-386.602
-386.578
-385.474
-383.356
-380.188
-375.91
-370.461
-363.763
-355.744
-346.332
-335.439
-322.974
-308.832
-292.918
-275.142
-255.441
-233.81
-210.238
-184.719
-157.286
-127.973
-96.8957
-64.1577
-29.8614
5.64371
42.1194
79.2257
116.549
153.623
189.964
225.04
258.337
289.315
317.477
342.307
363.342
380.152
392.348
399.678
402.003
399.293
391.602
379.034
361.83
340.328
314.914
286.067
254.322
220.212
184.307
147.166
109.344
71.3832
33.7666
-3.06239
-38.7185
-72.9152
-105.38
-135.927
-164.422
-190.759
-214.924
-236.908
-256.729
-274.451
-290.121
-303.832
-315.638
-325.599
-333.858
-340.537
-345.745
-349.554
-351.988
-353.099
-352.955
-351.755
-349.489
-346.175
-341.822
-336.416
-329.942
-322.397
-313.756
-303.969
-292.997
-280.797
-267.251
-252.211
-235.557
-217.16
-196.921
-174.788
-150.772
-124.91
-97.2577
-67.8432
-36.6899
-3.46695
30.9424
66.1912
102.117
138.387
174.594
210.217
244.711
277.53
308.093
335.884
360.402
381.124
397.614
409.482
416.428
418.292
414.853
406.257
392.648
374.322
351.744
325.41
295.871
263.787
229.755
194.372
158.211
121.74
85.4017
49.458
13.9731
-15.2501
-47.4029
-77.6349
-106.047
-132.622
-157.293
-180.06
-200.959
-220.035
-237.372
-253.057
-267.174
-279.788
-290.981
-300.826
-309.367
-316.629
-322.636
-327.39
-330.883
-333.109
-334.075
-333.466
-331.478
-328.064
-323.215
-316.861
-308.983
-299.605
-288.653
-276.126
-261.937
-246.161
-228.824
-209.871
-189.297
-167.231
-143.66
-118.631
-92.2869
-64.9845
-37.1148
-21.7134
443.26
425.656
403.692
377.699
348.147
315.43
280.06
242.586
203.609
163.798
123.63
83.5517
43.9683
5.0943
-28.2725
-63.7881
-97.44
-129.031
-158.549
-185.93
-211.123
-234.155
-255.091
-273.963
-290.868
-305.906
-319.169
-330.741
-340.694
-349.11
-356.058
-361.592
-365.757
-368.592
-370.124
-370.359
-369.334
-367.023
-363.394
-358.436
-352.091
-344.315
-335.059
-324.259
-311.818
-297.649
-281.653
-263.763
-243.9
-222.026
-198.113
-172.127
-144.107
-114.082
-82.1698
-48.5544
-14.2044
21.9923
58.9714
96.3337
133.727
170.729
206.896
241.765
274.888
305.779
334.018
359.203
380.9
398.748
412.373
421.494
425.88
425.317
419.72
409.085
393.518
373.264
348.674
320.209
288.367
253.663
216.659
177.883
137.898
97.2417
56.4303
15.9533
-23.7833
-61.8296
-98.77
-133.786
-166.726
-197.412
-225.731
-251.571
-274.88
-295.65
-313.942
-329.886
-343.604
-355.259
-365.012
-373.024
-379.446
-384.401
-387.981
-390.24
-391.201
-391.152
-389.922
-387.535
-383.968
-379.211
-373.246
-366.06
-357.627
-347.934
-336.961
-324.675
-311.044
-296.012
-279.541
-261.61
-242.19
-221.237
-198.697
-174.511
-148.647
-121.089
-91.8247
-60.9058
-28.2913
5.63468
40.7439
76.694
113.164
149.759
185.949
221.147
254.769
286.187
314.747
339.834
360.905
377.468
389.057
395.359
396.219
391.57
381.419
365.905
345.339
320.104
290.703
257.753
221.878
183.78
144.188
103.801
63.2861
23.2679
-15.6939
-53.1352
-88.5029
-121.893
-153.013
-181.789
-208.244
-232.455
-254.463
-274.391
-292.325
-308.387
-322.702
-335.339
-346.415
-356.016
-364.227
-371.126
-376.786
-381.238
-384.535
-386.711
-387.766
-387.731
-386.619
-384.521
-381.392
-377.166
-371.778
-365.148
-357.205
-347.874
-337.068
-324.691
-310.636
-294.8
-277.088
-257.43
-235.828
-212.268
-186.736
-159.266
-129.879
-98.6935
-65.8024
-31.3134
4.44832
41.228
78.6872
116.41
153.917
190.723
226.276
260.056
291.511
320.132
345.388
366.802
383.928
396.356
403.823
406.189
403.431
395.603
382.805
365.289
343.406
317.551
288.224
255.977
221.354
184.942
147.312
109.028
70.6477
32.6585
-4.48901
-40.4085
-74.8146
-107.437
-138.091
-166.653
-193.015
-217.17
-239.125
-258.892
-276.547
-292.141
-305.773
-317.489
-327.347
-335.501
-342.088
-347.218
-350.959
-353.329
-354.375
-354.154
-352.922
-350.634
-347.311
-342.961
-337.569
-331.12
-323.609
-315.017
-305.289
-294.386
-282.277
-268.834
-253.895
-237.334
-219.02
-198.834
-176.732
-152.713
-126.83
-99.1204
-69.6204
-38.3507
-5.05763
29.591
65.1228
101.389
138.057
174.703
210.803
245.793
279.116
310.178
338.446
363.414
384.536
401.359
413.481
420.583
422.5
419.011
410.25
396.372
377.682
354.665
327.84
297.776
265.162
230.607
194.729
158.113
121.237
84.5455
48.3218
12.69
-17.0069
-49.2148
-79.5463
-108.022
-134.629
-159.296
-182.03
-202.874
-221.88
-239.139
-254.745
-268.786
-281.324
-292.452
-302.243
-310.741
-317.972
-323.959
-328.7
-332.19
-334.415
-335.372
-334.809
-332.864
-329.483
-324.676
-318.362
-310.515
-301.181
-290.263
-277.777
-263.604
-247.845
-230.533
-211.597
-191.016
-168.953
-145.382
-120.333
-93.9669
-66.6702
-38.8206
-21.7298
447.409
429.487
407.133
380.687
350.656
317.426
281.517
243.494
203.981
163.68
123.061
82.5668
42.5978
3.22248
-29.8702
-65.8006
-99.6383
-131.325
-160.899
-188.293
-213.466
-236.448
-257.32
-276.109
-292.923
-307.868
-321.041
-332.526
-342.397
-350.741
-357.626
-363.107
-367.231
-370.034
-371.546
-371.768
-370.757
-368.466
-364.871
-359.957
-353.666
-345.95
-336.765
-326.05
-313.69
-299.608
-283.692
-265.874
-246.061
-224.232
-200.338
-174.338
-146.277
-116.15
-84.0931
-50.2513
-15.7552
20.7699
58.0786
95.798
133.58
171
207.607
242.933
276.507
307.848
336.517
362.113
384.189
402.37
416.274
425.603
430.124
429.61
423.969
413.191
397.378
376.792
351.79
322.866
290.521
255.303
217.768
178.471
137.983
96.8425
55.5906
14.7073
-25.3557
-63.7518
-100.912
-136.116
-169.194
-199.972
-228.345
-254.199
-277.477
-298.179
-316.372
-332.196
-345.779
-357.295
-366.909
-374.791
-381.098
-385.954
-389.453
-391.642
-392.55
-392.46
-391.219
-388.833
-385.275
-380.532
-374.588
-367.426
-359.023
-349.364
-338.431
-326.191
-312.612
-297.632
-281.211
-263.33
-243.962
-223.061
-200.565
-176.407
-150.553
-122.978
-93.6617
-62.6617
-29.8695
4.26629
39.653
75.9341
112.793
149.839
186.533
222.266
256.447
288.431
317.54
343.134
364.66
381.603
393.475
399.944
400.864
396.166
385.849
370.056
349.108
323.402
293.456
259.915
223.415
184.688
144.478
103.511
62.4668
21.9799
-17.3714
-55.1076
-90.7153
-124.235
-155.428
-184.22
-210.645
-234.8
-256.725
-276.555
-294.386
-310.338
-324.549
-337.084
-348.061
-357.573
-365.701
-372.53
-378.131
-382.533
-385.791
-387.94
-388.975
-388.927
-387.806
-385.728
-382.64
-378.47
-373.147
-366.59
-358.725
-349.479
-338.763
-326.48
-312.518
-296.764
-279.119
-259.508
-237.935
-214.39
-188.849
-161.339
-131.88
-100.583
-67.5349
-32.8482
3.17886
40.2749
78.1028
116.243
154.204
191.497
227.551
261.837
293.792
322.896
348.601
370.409
387.866
400.542
408.158
410.57
407.76
399.788
386.748
368.905
346.623
320.305
290.475
257.701
222.54
185.597
147.453
108.686
69.8673
31.4889
-5.99197
-42.1849
-76.8084
-109.593
-140.358
-168.988
-195.374
-219.517
-241.441
-261.15
-278.731
-294.247
-307.796
-319.42
-329.168
-337.209
-343.699
-348.747
-352.419
-354.725
-355.703
-355.4
-354.132
-351.82
-348.489
-344.144
-338.768
-332.344
-324.867
-316.325
-306.66
-295.828
-283.815
-270.483
-255.65
-239.19
-220.961
-200.836
-178.764
-154.746
-128.838
-101.076
-71.4914
-40.0995
-6.72824
28.1661
63.9877
100.61
137.691
174.798
211.397
246.909
280.758
312.344
341.112
366.553
388.096
405.271
417.656
424.928
426.915
423.362
414.428
400.265
381.19
357.711
330.367
299.752
266.58
231.477
195.082
157.991
120.695
83.6389
47.134
11.3921
-18.906
-51.1336
-81.5581
-110.095
-136.73
-161.391
-184.088
-204.872
-223.803
-240.979
-256.501
-270.462
-282.921
-293.979
-303.713
-312.167
-319.365
-325.332
-330.061
-333.547
-335.771
-336.72
-336.205
-334.305
-330.96
-326.195
-319.923
-312.108
-302.821
-291.94
-279.499
-265.34
-249.597
-232.314
-213.397
-192.806
-170.748
-147.179
-122.108
-95.718
-68.4222
-40.609
-21.7781
451.737
433.482
410.72
383.796
353.265
319.498
283.024
244.423
204.349
163.538
122.45
81.5259
41.1781
1.36473
-31.6618
-67.9371
-101.95
-133.728
-163.356
-190.762
-215.911
-238.839
-259.643
-278.343
-295.06
-309.907
-322.985
-334.379
-344.165
-352.432
-359.252
-364.678
-368.759
-371.529
-373.02
-373.228
-372.229
-369.962
-366.401
-361.534
-355.299
-347.646
-338.534
-327.911
-315.637
-301.646
-285.814
-268.073
-248.311
-226.534
-202.661
-176.651
-148.55
-118.317
-86.1141
-52.0708
-17.3499
19.4862
57.1343
95.2257
133.41
171.268
208.334
244.139
278.183
309.992
339.113
365.138
387.614
406.141
420.338
429.888
434.548
434.087
428.404
417.476
401.408
380.468
355.035
325.625
292.753
256.997
218.902
179.066
138.046
96.4067
54.6892
13.3906
-27.0111
-65.7823
-103.164
-138.561
-171.78
-202.651
-231.081
-256.948
-280.191
-300.821
-318.907
-334.602
-348.044
-359.411
-368.879
-376.624
-382.81
-387.561
-390.977
-393.096
-393.946
-393.815
-392.563
-390.178
-386.629
-381.899
-375.976
-368.841
-360.468
-350.845
-339.955
-327.764
-314.239
-299.315
-282.944
-265.115
-245.803
-224.957
-202.51
-178.384
-152.541
-124.954
-95.5853
-64.5057
-31.5275
2.82022
38.4983
75.1211
112.383
149.898
187.119
223.414
258.182
290.76
320.445
346.574
368.575
385.921
398.089
404.732
405.714
400.966
390.476
374.389
353.041
326.838
296.319
262.156
225.002
185.612
144.756
103.18
61.583
20.607
-19.1517
-57.1967
-93.041
-126.697
-157.96
-186.764
-213.152
-237.247
-259.083
-278.809
-296.531
-312.365
-326.468
-338.896
-349.769
-359.187
-367.227
-373.981
-379.523
-383.874
-387.091
-389.213
-390.228
-390.166
-389.032
-386.976
-383.932
-379.82
-374.565
-368.083
-360.299
-351.144
-340.524
-328.34
-314.477
-298.81
-281.236
-261.675
-240.131
-216.603
-191.055
-163.505
-133.97
-102.562
-69.3516
-34.459
1.84067
39.267
77.4765
116.053
154.487
192.287
228.866
263.68
296.16
325.768
351.946
374.174
391.982
404.917
412.683
415.14
412.279
404.159
390.87
372.681
349.98
323.172
292.812
259.484
223.759
186.258
147.576
108.305
69.0248
30.2425
-7.58436
-44.0608
-78.9084
-111.859
-142.736
-171.434
-197.844
-221.969
-243.859
-263.505
-281.005
-296.44
-309.904
-321.43
-331.061
-338.978
-345.366
-350.332
-353.934
-356.174
-357.083
-356.685
-355.384
-353.047
-349.708
-345.367
-340.008
-333.609
-326.168
-317.678
-308.081
-297.321
-285.409
-272.196
-257.474
-241.124
-222.985
-202.926
-180.883
-156.87
-130.934
-103.128
-73.4535
-41.9385
-8.48024
26.6628
62.7848
99.7766
137.283
174.876
211.997
248.056
282.456
314.589
343.884
369.819
391.808
409.35
422.017
429.465
431.52
427.907
418.794
404.329
384.849
360.884
332.994
301.797
268.041
232.364
195.428
157.841
120.109
82.6796
45.8856
10.0214
-20.8935
-53.1567
-83.6716
-112.266
-138.928
-163.579
-186.235
-206.953
-225.805
-242.891
-258.324
-272.203
-284.576
-295.562
-305.237
-313.645
-320.809
-326.754
-331.472
-334.955
-337.177
-338.114
-337.654
-335.802
-332.494
-327.773
-321.545
-313.761
-304.527
-293.684
-281.293
-267.143
-251.416
-234.167
-215.273
-194.665
-172.613
-149.052
-123.954
-97.5399
-70.2313
-42.4321
-21.9184
456.244
437.644
414.453
387.024
355.974
321.644
284.579
245.371
204.71
163.368
121.796
80.4269
39.7116
-0.472577
-33.6589
-70.2045
-104.38
-136.24
-165.923
-193.337
-218.459
-241.328
-262.059
-280.665
-297.277
-312.022
-325
-336.299
-345.996
-354.183
-360.934
-366.303
-370.34
-373.076
-374.546
-374.741
-373.751
-371.509
-367.984
-363.167
-356.99
-349.401
-340.367
-329.841
-317.657
-303.761
-288.021
-270.359
-250.652
-228.931
-205.084
-179.065
-150.927
-120.585
-88.2336
-54.0423
-18.9651
18.1401
56.1372
94.6141
133.217
171.53
209.076
245.38
279.917
312.212
341.807
368.277
391.174
410.065
424.567
434.352
439.162
438.757
433.031
421.945
405.61
384.294
358.413
328.488
295.07
258.748
220.073
179.674
138.097
95.9427
53.733
12.0053
-28.7584
-67.9066
-105.525
-141.122
-174.487
-205.451
-233.936
-259.818
-283.023
-303.574
-321.547
-337.104
-350.396
-361.603
-370.915
-378.518
-384.578
-389.222
-392.553
-394.599
-395.363
-395.213
-393.952
-391.568
-388.028
-383.312
-377.411
-370.303
-361.961
-352.378
-341.532
-329.394
-315.926
-301.059
-284.742
-266.966
-247.714
-226.928
-204.533
-180.443
-154.615
-127.018
-97.5983
-66.4433
-33.269
1.29299
37.275
74.2543
111.933
149.937
187.705
224.585
259.966
293.168
323.46
350.151
372.644
390.415
402.899
409.729
410.778
405.978
395.308
378.915
357.15
330.424
299.303
264.488
226.649
186.563
145.03
102.816
60.639
19.1521
-21.0316
-59.3997
-95.4799
-129.277
-160.608
-189.42
-215.765
-239.793
-261.534
-281.147
-298.754
-314.463
-328.453
-340.769
-351.532
-360.853
-368.803
-375.481
-380.962
-385.26
-388.435
-390.53
-391.523
-391.447
-390.295
-388.262
-385.265
-381.215
-376.03
-369.627
-361.929
-352.869
-342.352
-330.271
-316.514
-300.94
-283.443
-263.935
-242.423
-218.915
-193.362
-165.774
-136.163
-104.64
-71.2673
-36.1573
0.422922
38.1969
76.8041
115.837
154.765
193.098
230.225
265.592
298.62
328.757
355.43
378.098
396.274
409.484
417.406
419.908
416.99
408.715
395.159
376.608
353.465
326.147
295.232
261.325
225.013
186.929
147.688
107.89
68.1298
28.9275
-9.25797
-46.0282
-81.1064
-114.229
-145.218
-173.983
-200.417
-224.519
-246.371
-265.952
-283.361
-298.714
-312.089
-323.512
-333.02
-340.806
-347.088
-351.97
-355.501
-357.675
-358.512
-358.005
-356.676
-354.313
-350.966
-346.63
-341.289
-334.918
-327.514
-319.078
-309.553
-298.864
-287.058
-273.975
-259.37
-243.135
-225.094
-205.106
-183.094
-159.084
-133.122
-105.275
-75.5091
-43.8767
-10.3137
25.077
61.5091
98.8826
136.832
174.933
212.6
249.232
284.21
316.913
346.762
373.214
395.672
413.602
426.566
434.197
436.31
432.648
423.349
408.567
388.66
364.183
335.718
303.912
269.542
233.264
195.764
157.663
119.476
81.6644
44.5686
8.55751
-22.9526
-55.2822
-85.8881
-114.538
-141.223
-165.863
-188.473
-209.119
-227.885
-244.875
-260.215
-274.008
-286.29
-297.199
-306.813
-315.173
-322.304
-328.226
-332.932
-336.414
-338.634
-339.557
-339.158
-337.356
-334.083
-329.411
-323.227
-315.477
-306.296
-295.495
-283.161
-269.014
-253.302
-236.093
-217.226
-196.592
-174.551
-151.002
-125.873
-99.4333
-72.0913
-44.2577
-22.1914
460.933
441.973
418.336
390.372
358.784
323.866
286.182
246.337
205.059
163.168
121.096
79.2658
38.1962
-2.29349
-35.8616
-72.6072
-106.931
-138.862
-168.603
-196.021
-221.112
-243.915
-264.57
-283.075
-299.577
-314.214
-327.087
-338.287
-347.891
-355.994
-362.673
-367.983
-371.974
-374.673
-376.123
-376.301
-375.322
-373.11
-369.621
-364.854
-358.739
-351.216
-342.263
-331.84
-319.751
-305.953
-290.312
-272.735
-253.085
-231.424
-207.61
-181.58
-153.414
-122.958
-90.4508
-56.104
-20.6697
16.7274
55.086
93.9601
132.997
171.785
209.833
246.655
281.709
314.507
344.598
371.533
394.868
414.143
428.962
438.991
443.958
443.619
437.849
426.601
409.988
388.277
361.925
331.459
297.474
260.552
221.277
180.281
138.125
95.4302
52.7104
10.532
-30.6062
-70.137
-108.004
-143.801
-177.315
-208.374
-236.913
-262.81
-285.972
-306.436
-324.283
-339.693
-352.825
-363.869
-373.019
-380.472
-386.402
-390.935
-394.178
-396.153
-396.832
-396.653
-395.384
-393.003
-389.474
-384.773
-378.895
-371.816
-363.507
-353.963
-343.162
-331.079
-317.67
-302.865
-286.604
-268.883
-249.694
-228.975
-206.635
-182.588
-156.777
-129.174
-99.7044
-68.4735
-35.1059
-0.320903
35.9759
73.3316
111.439
149.953
188.295
225.786
261.807
295.658
326.585
353.866
376.885
395.102
407.916
414.936
416.054
411.206
400.354
383.639
361.433
334.151
302.398
266.901
228.339
187.523
145.281
102.401
59.6166
17.5974
-23.0254
-61.7308
-98.0435
-131.983
-163.379
-192.193
-218.487
-242.441
-264.079
-283.566
-301.054
-316.631
-330.501
-342.705
-353.356
-362.575
-370.432
-377.031
-382.448
-386.693
-389.821
-391.887
-392.859
-392.773
-391.602
-389.588
-386.641
-382.653
-377.542
-371.221
-363.612
-354.65
-344.238
-332.266
-318.622
-303.147
-285.732
-266.278
-244.798
-221.318
-195.762
-168.138
-138.453
-106.815
-73.2813
-37.9469
-1.08256
37.0534
76.0748
115.582
155.027
193.915
231.614
267.562
301.163
331.853
359.047
382.179
400.743
414.243
422.328
424.875
421.899
413.46
399.629
380.704
357.102
329.255
297.758
263.247
226.314
187.611
147.785
107.435
67.1755
27.5364
-11.0217
-48.0967
-83.4083
-116.707
-147.81
-176.641
-203.096
-227.169
-248.978
-268.487
-285.798
-301.064
-314.353
-325.671
-335.049
-342.697
-348.868
-353.665
-357.124
-359.23
-359.998
-359.539
-358.018
-355.623
-352.266
-347.935
-342.609
-336.267
-328.901
-320.521
-311.069
-300.455
-288.76
-275.818
-261.338
-245.223
-227.289
-207.373
-185.399
-161.388
-135.406
-107.515
-77.6613
-45.918
-12.2237
23.4069
60.1609
97.9236
136.338
174.968
213.207
250.434
286.019
319.316
349.742
376.74
399.687
418.028
431.299
439.127
441.327
437.595
428.097
412.981
392.625
367.61
338.54
306.096
271.083
234.177
196.087
157.452
118.792
80.5893
43.1771
6.99398
-25.0807
-57.5096
-88.209
-116.912
-143.617
-168.244
-190.801
-211.37
-230.044
-246.933
-262.174
-275.877
-288.062
-298.891
-308.442
-316.752
-323.847
-329.746
-334.442
-337.924
-340.143
-341.056
-340.714
-338.965
-335.727
-331.106
-324.972
-317.254
-308.13
-297.372
-285.105
-270.95
-255.253
-238.091
-219.259
-198.584
-176.559
-153.03
-127.864
-101.4
-73.9953
-46.0668
-22.6228
465.806
446.474
422.372
393.84
361.693
326.161
287.833
247.319
205.393
162.935
120.347
78.0382
36.6249
-4.0901
-38.2788
-75.1474
-109.606
-141.596
-171.397
-198.814
-223.872
-246.601
-267.177
-285.574
-301.958
-316.481
-329.246
-340.341
-349.848
-357.864
-364.469
-369.717
-373.66
-376.321
-377.752
-377.904
-376.943
-374.763
-371.309
-366.596
-360.546
-353.091
-344.222
-333.91
-321.919
-308.225
-292.688
-275.202
-255.61
-234.016
-210.24
-184.197
-156.012
-125.437
-92.766
-58.256
-22.4707
15.2442
53.9788
93.2608
132.752
172.029
210.604
247.963
283.555
316.88
347.483
374.909
398.698
418.378
433.529
443.814
448.945
448.676
442.86
431.446
414.537
392.409
365.56
334.528
299.947
262.399
222.503
180.883
138.134
94.8756
51.6365
8.98454
-32.5403
-72.4594
-110.587
-146.59
-180.254
-211.408
-240.005
-265.915
-289.03
-309.398
-327.114
-342.371
-355.338
-366.214
-375.192
-382.485
-388.277
-392.694
-395.846
-397.751
-398.356
-398.132
-396.855
-394.479
-390.959
-386.273
-380.423
-373.372
-365.096
-355.593
-344.838
-332.815
-319.468
-304.729
-288.525
-270.86
-251.739
-231.091
-208.814
-184.813
-159.022
-131.42
-101.903
-70.5793
-37.0605
-2.03348
34.5921
72.3375
110.888
149.93
188.869
227.006
263.702
298.24
329.832
357.731
381.306
399.997
413.156
420.366
421.549
416.647
405.602
388.549
365.88
338.022
305.606
269.398
230.08
188.502
145.522
101.95
58.5333
15.9615
-25.1157
-64.1738
-100.715
-134.797
-166.258
-195.066
-221.302
-245.173
-266.705
-286.062
-303.426
-318.87
-332.614
-344.701
-355.236
-364.348
-372.105
-378.621
-383.972
-388.16
-391.243
-393.278
-394.228
-394.13
-392.924
-390.94
-388.046
-384.125
-379.093
-372.857
-365.341
-356.48
-346.178
-334.32
-320.797
-305.423
-288.094
-268.697
-247.248
-223.803
-198.244
-170.583
-140.826
-109.069
-75.3747
-39.8099
-2.65837
35.8515
75.2966
115.3
155.277
194.747
233.039
269.591
303.793
335.058
362.798
386.414
405.39
419.202
427.453
430.044
427.009
418.405
404.286
384.96
360.875
332.465
300.355
265.211
227.632
188.293
147.858
106.938
66.1582
26.0717
-12.8711
-50.2593
-85.8068
-119.285
-150.501
-179.4
-205.875
-229.913
-251.679
-271.114
-288.316
-303.491
-316.7
-327.908
-337.144
-344.64
-350.693
-355.405
-358.791
-360.829
-361.522
-360.945
-359.381
-356.958
-353.597
-349.269
-343.961
-337.651
-330.324
-322
-312.625
-302.086
-290.509
-277.718
-263.374
-247.382
-229.566
-209.726
-187.794
-163.779
-137.783
-109.849
-79.9151
-48.0631
-14.2168
21.6465
58.7346
96.8953
135.798
174.976
213.815
251.662
287.88
321.799
352.826
380.397
403.858
422.627
436.231
444.257
446.522
442.746
433.041
417.576
396.746
371.165
341.46
308.347
272.661
235.1
196.392
157.204
118.053
79.449
41.7126
5.32341
-27.281
-59.8392
-90.6362
-119.391
-146.113
-170.724
-193.223
-213.706
-232.283
-249.062
-264.199
-277.812
-289.892
-300.638
-310.122
-318.381
-325.44
-331.316
-336.002
-339.483
-341.705
-342.599
-342.326
-340.628
-337.428
-332.861
-326.777
-319.091
-310.029
-299.313
-287.128
-272.951
-257.27
-240.163
-221.374
-200.637
-178.637
-155.138
-129.925
-103.443
-75.9353
-47.8478
-23.2272
470.863
451.149
426.563
397.426
364.704
328.529
289.531
248.314
205.708
162.668
119.547
76.7376
34.9914
-5.91773
-40.8596
-77.8246
-112.411
-144.442
-174.309
-201.72
-226.74
-249.387
-269.881
-288.163
-304.421
-318.825
-331.476
-342.463
-351.869
-359.792
-366.32
-371.505
-375.399
-378.019
-379.432
-379.551
-378.615
-376.466
-373.049
-368.393
-362.411
-355.025
-346.242
-336.052
-324.158
-310.577
-295.149
-277.763
-258.225
-236.707
-212.977
-186.917
-158.729
-128.021
-95.1816
-60.498
-24.3731
13.6866
52.8124
92.5147
132.477
172.261
211.386
249.306
285.453
319.329
350.461
378.401
402.662
422.766
438.267
448.82
454.126
453.935
448.074
436.491
419.27
396.712
369.338
337.723
302.516
264.324
223.775
181.51
138.144
94.2954
50.5113
7.35557
-34.5782
-74.896
-113.289
-149.503
-183.317
-214.563
-243.22
-269.139
-292.202
-312.47
-330.054
-345.146
-357.936
-368.627
-377.421
-384.545
-390.192
-394.491
-397.549
-399.387
-399.907
-399.641
-398.358
-395.986
-392.476
-387.806
-381.984
-374.962
-366.721
-357.258
-346.551
-334.59
-321.308
-306.639
-290.49
-272.885
-253.835
-233.262
-211.054
-187.102
-161.336
-133.743
-104.177
-72.7405
-39.1153
-3.8295
33.1405
71.2903
110.284
149.874
189.429
228.23
265.622
300.88
333.172
361.727
385.879
405.067
418.599
426.016
427.273
422.314
411.065
393.665
370.517
342.062
308.952
272
231.89
189.513
145.758
101.462
57.3835
14.2333
-27.316
-66.7426
-103.506
-137.738
-169.262
-198.055
-224.224
-248.007
-269.431
-288.651
-305.877
-321.177
-334.79
-346.75
-357.161
-366.16
-373.814
-380.244
-385.525
-389.657
-392.696
-394.693
-395.625
-395.517
-394.27
-392.315
-389.477
-385.628
-380.679
-374.531
-367.111
-358.354
-348.169
-336.431
-323.036
-307.773
-290.534
-271.197
-249.781
-226.374
-200.82
-173.123
-143.292
-111.416
-77.5569
-41.7515
-4.30835
34.5983
74.4737
115
155.526
195.603
234.516
271.687
306.519
338.382
366.692
390.818
410.219
424.358
432.783
435.417
432.324
423.546
409.116
389.371
364.777
335.777
303.03
267.225
228.984
188.996
147.928
106.412
65.0926
24.5445
-14.7981
-52.5101
-88.3059
-121.969
-153.303
-182.266
-208.758
-232.752
-254.477
-273.833
-290.908
-305.986
-319.116
-330.206
-339.288
-346.621
-352.554
-357.183
-360.497
-362.467
-363.084
-362.394
-360.764
-358.319
-354.954
-350.633
-345.343
-339.067
-331.781
-323.512
-314.219
-303.757
-292.3
-279.68
-265.474
-249.614
-231.922
-212.169
-190.279
-166.261
-140.248
-112.277
-82.264
-50.3075
-16.2864
19.7916
57.2258
95.7962
135.208
174.952
214.418
252.913
289.79
324.36
356.011
384.184
408.184
427.407
441.349
449.592
451.952
448.111
438.184
422.352
401.026
374.851
344.479
310.665
274.274
236.028
196.679
156.915
117.257
78.2381
40.1736
3.54389
-29.5579
-62.2719
-93.1724
-121.974
-148.711
-173.303
-195.739
-216.128
-234.601
-251.265
-266.291
-279.813
-291.777
-302.438
-311.853
-320.061
-327.081
-332.934
-337.611
-341.092
-343.319
-344.188
-343.996
-342.345
-339.188
-334.674
-328.644
-320.988
-311.991
-301.319
-289.235
-275.015
-259.35
-242.309
-223.573
-202.751
-180.78
-157.328
-132.057
-105.567
-77.9021
-49.5936
-24.0104
476.107
456.001
430.916
401.127
367.817
330.972
291.275
249.319
205.998
162.362
118.694
75.3557
33.2896
-7.84092
-43.545
-80.6376
-115.349
-147.399
-177.342
-204.738
-229.718
-252.273
-272.684
-290.842
-306.965
-321.245
-333.778
-344.652
-353.951
-361.78
-368.227
-373.346
-377.19
-379.766
-381.164
-381.238
-380.339
-378.22
-374.84
-370.245
-364.332
-357.019
-348.32
-338.265
-326.468
-313.009
-297.694
-280.419
-260.929
-239.502
-215.821
-189.74
-161.571
-130.712
-97.7007
-62.8395
-26.3741
12.0523
51.5837
91.7203
132.168
172.481
212.175
250.685
287.404
321.856
353.535
382.011
406.768
427.311
443.181
454.012
459.493
459.384
453.482
441.73
424.181
401.17
373.242
341.015
305.143
266.281
225.043
182.109
138.091
93.6344
49.283
5.62083
-36.7251
-77.446
-116.095
-152.516
-186.477
-217.805
-246.522
-272.45
-295.455
-315.62
-333.058
-347.972
-360.573
-371.071
-379.678
-386.628
-392.126
-396.307
-399.272
-401.049
-401.435
-401.164
-399.878
-397.514
-394.013
-389.361
-383.57
-376.581
-368.374
-358.954
-348.298
-336.402
-323.189
-308.597
-292.506
-274.963
-255.99
-235.498
-213.367
-189.47
-163.729
-136.155
-106.542
-74.9938
-41.2587
-5.70506
31.6181
70.2003
109.649
149.804
190.004
229.497
267.61
303.612
336.628
365.864
390.627
410.336
424.254
431.886
433.195
428.192
416.744
398.977
375.322
346.232
312.389
274.652
233.717
190.502
145.942
100.899
56.1335
12.3937
-29.6357
-69.4302
-106.409
-140.78
-172.352
-201.118
-227.211
-250.9
-272.2
-291.271
-308.355
-323.51
-336.984
-348.818
-359.105
-367.989
-375.537
-381.88
-387.092
-391.166
-394.168
-396.118
-397.035
-396.917
-395.641
-393.707
-390.928
-387.151
-382.285
-376.227
-368.91
-360.258
-350.196
-338.583
-325.322
-310.184
-293.041
-273.768
-252.392
-229.026
-203.491
-175.761
-145.859
-113.873
-79.8508
-43.7972
-6.06066
33.2644
73.5839
114.655
155.762
196.467
236.031
273.851
309.341
341.832
370.736
395.407
415.255
429.736
438.329
440.987
437.837
428.879
414.126
393.945
368.818
339.201
305.786
269.291
230.355
189.682
147.954
105.826
63.944
22.9271
-16.8232
-54.8607
-90.9007
-124.744
-156.187
-185.206
-211.712
-235.653
-257.334
-276.607
-293.541
-308.515
-321.568
-332.541
-341.46
-348.622
-354.435
-358.986
-362.23
-364.132
-364.672
-363.897
-362.165
-359.697
-356.332
-352.017
-346.746
-340.503
-333.26
-325.05
-315.845
-305.458
-294.127
-281.697
-267.629
-251.917
-234.354
-214.7
-192.853
-168.832
-142.801
-114.804
-84.7097
-52.6578
-18.4429
17.8437
55.6298
94.628
134.569
174.901
215.018
254.192
291.752
326.999
359.301
388.101
412.67
432.364
446.666
455.135
457.587
453.686
443.533
427.314
405.466
378.667
347.594
313.046
275.921
236.959
196.944
156.581
116.399
76.9517
38.5542
1.65931
-31.9166
-64.8096
-95.8207
-124.665
-151.414
-175.985
-198.35
-218.637
-237.001
-253.539
-268.449
-281.881
-293.719
-304.29
-313.635
-321.789
-328.77
-334.599
-339.268
-342.751
-344.989
-345.812
-345.72
-344.119
-341.008
-336.546
-330.57
-322.945
-314.017
-303.385
-291.43
-277.137
-261.493
-244.529
-225.862
-204.925
-182.985
-159.602
-134.254
-107.782
-79.8847
-51.368
-24.911
481.539
461.033
435.436
404.941
371.032
333.488
293.065
250.332
206.258
162.015
117.786
73.8828
31.5144
-9.88022
-46.319
-83.587
-118.426
-150.466
-180.5
-207.87
-232.809
-255.258
-275.586
-293.612
-309.591
-323.741
-336.151
-346.907
-356.096
-363.826
-370.189
-375.241
-379.034
-381.565
-382.952
-382.957
-382.113
-380.024
-376.682
-372.152
-366.31
-359.072
-350.456
-340.549
-328.847
-315.519
-300.321
-283.167
-263.717
-242.398
-218.77
-192.667
-164.543
-133.51
-100.325
-65.2854
-28.4792
10.3377
50.2897
90.8751
131.82
172.684
212.969
252.098
289.404
324.458
356.705
385.738
411.014
432.014
448.272
459.399
465.067
465.043
459.102
447.168
429.278
405.784
377.277
344.412
307.852
268.303
226.35
182.732
138.039
92.9624
48.0196
3.83682
-38.9162
-80.0528
-118.952
-155.603
-189.738
-221.166
-249.954
-275.899
-298.833
-318.874
-336.147
-350.866
-363.265
-373.557
-381.963
-388.733
-394.074
-398.14
-401.019
-402.773
-403.031
-402.701
-401.41
-399.052
-395.559
-390.921
-385.166
-378.209
-370.035
-360.659
-350.05
-338.226
-325.085
-310.58
-294.55
-277.072
-258.184
-237.782
-215.743
-191.911
-166.2
-138.658
-109.014
-77.3634
-43.5184
-7.70054
29.9806
69.0162
108.923
149.662
190.534
230.763
269.634
306.424
340.197
370.15
395.544
415.8
430.131
437.986
439.36
434.304
422.655
404.503
380.321
350.566
315.964
277.413
235.622
191.537
146.141
100.333
54.8502
10.5097
-32.0142
-72.172
-109.423
-143.933
-175.564
-204.298
-230.303
-253.883
-275.045
-293.965
-310.894
-325.897
-339.224
-350.927
-361.082
-369.842
-377.28
-383.529
-388.673
-392.686
-395.656
-397.561
-398.471
-398.379
-397.024
-395.101
-392.376
-388.672
-383.888
-377.922
-370.71
-362.162
-352.227
-340.741
-327.62
-312.619
-295.578
-276.375
-255.037
-231.728
-206.22
-178.462
-148.498
-116.406
-82.2268
-45.9319
-7.90735
31.845
72.6141
114.242
155.949
197.307
237.536
276.042
312.213
345.357
374.893
400.129
420.456
435.31
444.093
446.789
443.572
434.436
419.35
398.717
373.041
342.783
308.675
271.461
231.799
190.413
147.993
105.232
62.757
21.2605
-18.9158
-57.2872
-93.5837
-127.615
-159.167
-188.245
-214.757
-238.63
-260.27
-279.452
-296.224
-311.073
-324.053
-334.902
-343.644
-350.63
-356.322
-360.797
-363.975
-365.81
-366.277
-365.654
-363.584
-361.094
-357.717
-353.413
-348.152
-341.943
-334.738
-326.587
-317.474
-307.159
-295.967
-283.742
-269.82
-254.264
-236.84
-217.298
-195.495
-171.47
-145.431
-117.42
-87.2469
-55.1175
-20.6968
15.7864
53.9308
93.37
133.862
174.809
215.606
255.492
293.764
329.714
362.696
392.151
417.318
437.508
452.182
460.89
463.445
459.479
449.091
432.465
410.069
382.614
350.807
315.488
277.598
237.889
197.181
156.199
115.476
75.5862
36.8441
-0.324682
-34.3625
-67.4551
-98.5833
-127.464
-154.222
-178.768
-201.057
-221.231
-239.481
-255.884
-270.671
-284.017
-295.714
-306.195
-315.468
-323.566
-330.508
-336.312
-340.972
-344.46
-346.716
-347.479
-347.496
-345.949
-342.888
-338.477
-332.554
-324.96
-316.104
-305.508
-293.723
-279.314
-263.697
-246.825
-228.241
-207.162
-185.248
-161.963
-136.513
-110.104
-81.8583
-53.1691
-25.9237
487.159
466.248
440.131
408.865
374.353
336.075
294.901
251.351
206.482
161.622
116.822
72.3086
29.6661
-12.0471
-49.1817
-86.6749
-121.646
-153.635
-183.785
-211.117
-236.019
-258.35
-278.603
-296.473
-312.289
-326.3
-338.578
-349.211
-358.292
-365.921
-372.199
-377.18
-380.918
-383.387
-384.729
-384.705
-383.933
-381.878
-378.569
-374.123
-368.354
-361.193
-352.656
-342.907
-331.306
-318.12
-303.041
-286.02
-266.586
-245.388
-221.818
-195.685
-167.636
-136.41
-103.05
-67.8362
-30.6972
8.53978
48.9285
89.9746
131.432
172.867
213.768
253.539
291.455
327.131
359.967
389.578
415.398
436.873
453.536
464.974
470.837
470.904
464.935
452.819
434.579
410.58
381.476
347.945
310.671
270.406
227.704
183.369
137.967
92.2417
46.6704
1.93348
-41.2387
-82.8188
-121.991
-158.891
-193.168
-224.629
-253.415
-279.329
-302.143
-322.017
-339.082
-353.551
-365.689
-375.719
-383.848
-390.337
-395.414
-399.216
-401.848
-403.299
-403.178
-403.14
-402.144
-400.18
-397.018
-392.466
-386.737
-379.808
-371.661
-362.32
-351.761
-340.005
-326.936
-312.52
-296.545
-279.134
-260.332
-240.027
-218.096
-194.345
-168.671
-141.175
-111.513
-79.7779
-45.8287
-9.76493
28.2923
67.7836
108.131
149.479
191.033
232.016
271.673
309.288
343.845
374.566
400.631
421.453
436.216
444.311
445.716
440.63
428.783
410.231
385.503
355.061
319.663
280.262
237.581
192.577
146.308
99.6964
53.4476
8.46955
-34.5759
-75.1202
-112.624
-147.239
-178.882
-207.53
-233.409
-256.856
-277.836
-296.573
-313.304
-328.106
-341.236
-352.733
-362.683
-371.229
-378.473
-384.583
-389.639
-393.608
-396.574
-398.539
-399.493
-399.432
-397.942
-396.404
-393.78
-390.149
-385.449
-379.571
-372.463
-364.011
-354.202
-342.855
-329.888
-315.031
-298.103
-278.967
-257.67
-234.441
-208.975
-181.192
-151.181
-118.982
-84.6549
-48.1086
-9.81302
30.3976
71.6082
113.821
156.134
198.176
239.084
278.297
315.171
348.982
379.182
405.002
425.826
441.078
450.049
452.736
449.499
440.194
424.758
403.656
377.404
346.473
311.631
273.662
233.238
191.104
147.965
104.55
61.4514
19.4626
-21.1539
-59.8885
-96.4118
-130.609
-162.235
-191.359
-217.843
-241.613
-263.206
-282.273
-298.852
-313.553
-326.447
-337.183
-345.755
-352.57
-358.153
-362.556
-365.674
-367.447
-367.824
-367.033
-364.907
-362.427
-359.056
-354.761
-349.509
-343.329
-336.18
-328.081
-319.058
-308.813
-297.781
-285.788
-272.018
-256.623
-239.348
-219.927
-198.172
-174.14
-148.106
-120.094
-89.839
-57.6526
-23.0408
13.6423
52.1464
92.0317
133.088
174.676
216.182
256.805
295.821
332.5
366.189
396.332
422.125
442.835
457.904
466.857
469.528
465.497
454.864
437.81
414.837
386.695
354.116
317.993
279.305
238.815
197.388
155.765
114.481
74.1407
35.0384
-2.39906
-36.895
-70.206
-101.458
-130.369
-157.136
-181.66
-203.864
-223.914
-242.047
-258.305
-272.961
-286.226
-297.76
-308.148
-317.345
-325.385
-332.287
-338.067
-342.719
-346.216
-348.497
-349.139
-349.33
-347.829
-344.827
-340.472
-334.595
-327.029
-318.256
-307.687
-296.145
-281.549
-265.965
-249.197
-230.717
-209.465
-187.561
-164.42
-138.826
-112.555
-83.7868
-54.9805
-27.051
492.968
471.65
445.008
412.894
377.783
338.731
296.783
252.372
206.66
161.18
115.803
70.6199
27.742
-14.3496
-52.1247
-89.901
-125.024
-156.93
-187.232
-214.467
-239.305
-261.494
-281.686
-299.401
-315.043
-328.917
-341.063
-351.571
-360.536
-367.997
-373.977
-378.329
-380.707
-380.412
-376.819
-369.201
-361.409
-354.573
-348.878
-343.762
-339.199
-335.696
-332.777
-329.86
-325.748
-318.518
-305.666
-288.822
-269.46
-248.429
-224.979
-198.788
-170.882
-139.391
-105.861
-70.4743
-33.0244
6.65888
47.4997
89.0147
130.998
173.028
214.573
255.012
293.558
329.878
363.324
393.537
419.923
441.892
458.977
470.741
476.802
476.94
470.959
458.667
440.062
415.527
385.798
351.568
313.542
272.538
229.055
183.978
137.852
91.4837
45.2829
-0.00142177
-43.5851
-85.5448
-124.93
-161.966
-196.246
-227.477
-255.732
-280.467
-300.744
-315.889
-325.368
-329.061
-327.453
-321.628
-313.004
-303.139
-293.963
-286.415
-281.086
-277.846
-276.434
-277.156
-279.739
-284.059
-289.833
-296.493
-302.78
-308.339
-313.673
-318.015
-320.901
-321.401
-318.624
-311.331
-298.374
-281.076
-262.367
-242.175
-220.37
-196.703
-171.079
-143.638
-113.98
-82.184
-48.1481
-11.8463
26.5931
66.5431
107.318
149.304
191.549
233.287
273.755
312.226
347.58
379.104
405.885
427.303
442.526
450.866
452.248
447.159
435.12
416.144
390.84
359.676
323.439
283.146
239.555
193.588
146.407
98.9769
51.9605
6.37306
-37.1606
-78.0336
-115.681
-150.289
-181.846
-210.23
-235.685
-258.486
-278.274
-295.083
-308.686
-318.713
-325.293
-328.129
-327.776
-324.52
-319.161
-312.369
-304.953
-298.239
-292.789
-289.346
-287.326
-287.346
-288.675
-291.675
-295.307
-299.89
-304.191
-308.816
-313.148
-317.386
-320.234
-321.458
-319.65
-313.106
-300.258
-281.389
-260.175
-237.079
-211.701
-183.902
-153.877
-121.606
-87.1478
-50.3607
-11.8043
28.8836
70.5282
113.368
156.278
199.052
240.672
280.611
318.227
352.731
383.618
410.06
431.397
447.063
456.223
458.839
455.602
446.124
430.307
408.713
381.847
350.208
314.602
275.849
234.657
191.762
147.881
103.826
60.0928
17.6376
-23.3974
-62.4159
-99.1404
-133.43
-165.028
-194.079
-220.307
-243.548
-264.412
-282.112
-296.393
-307.371
-313.822
-316.167
-318.287
-320.069
-320.208
-319.047
-317.276
-315.967
-315.418
-315.732
-316.464
-317.544
-318.855
-319.981
-320.883
-321.269
-320.765
-318.961
-315.054
-308.748
-299.463
-287.746
-274.138
-258.924
-241.822
-222.547
-200.857
-176.814
-150.808
-122.825
-92.4873
-60.2458
-25.5169
11.4021
50.2734
90.6157
132.254
174.508
216.756
258.138
297.928
335.364
369.781
400.647
427.097
448.348
463.838
473.041
475.796
471.743
460.851
443.35
419.773
390.912
357.521
320.559
281.039
239.735
197.561
155.278
113.411
72.6144
33.1344
-4.56382
-39.5227
-73.0737
-104.46
-133.392
-160.155
-184.649
-206.74
-226.635
-244.656
-260.76
-275.285
-288.489
-299.842
-310.141
-319.262
-327.244
-334.1
-339.846
-344.454
-347.86
-349.896
-349.908
-348.419
-345.752
-342.309
-337.998
-332.971
-327.113
-320.205
-309.861
-298.626
-283.702
-268.229
-251.603
-233.267
-211.839
-189.927
-166.988
-141.174
-115.167
-85.6358
-56.7857
-28.2892
498.965
477.241
450.082
417.032
381.319
341.451
298.712
253.394
206.782
160.685
114.727
68.8024
25.7529
-16.8601
-55.1507
-93.3056
-128.512
-160.256
-190.764
-217.85
-242.418
-262.002
-266.592
-238.586
-202.821
-169.61
-139.892
-113.373
-89.7328
-68.5046
-50.7299
-36.8819
-27.0176
-21.6272
-20.5942
-24.5979
-31.2038
-39.944
-50.8048
-63.8028
-79.5231
-97.646
-118.301
-140.655
-166.514
-193.457
-219.128
-234.783
-236.038
-233.268
-223.46
-201.682
-174.169
-142.421
-108.739
-73.2139
-35.4334
4.70863
46.0206
87.9978
130.517
173.165
215.376
256.516
295.709
332.697
366.774
397.613
424.593
447.075
464.602
476.709
482.977
483.183
477.195
464.726
445.736
420.641
390.265
355.308
316.506
274.762
230.474
184.658
137.81
90.8042
43.9856
-1.83633
-45.7395
-87.9864
-127.367
-164.002
-196.522
-221.801
-234.67
-227.054
-197.975
-165.955
-135.939
-109.568
-87.487
-69.9565
-56.8872
-48.0258
-41.8704
-37.565
-34.6164
-32.9358
-32.4198
-32.8358
-34.416
-37.2247
-41.6945
-48.268
-57.4006
-69.4769
-84.2154
-101.667
-121.832
-144.354
-168.793
-193.485
-214.611
-225.912
-229.965
-227.844
-218.08
-198.858
-173.321
-145.98
-116.39
-84.5431
-50.4447
-13.9293
24.8481
65.2903
106.482
149.124
192.086
234.592
275.878
315.254
351.416
383.768
411.29
433.32
449.041
457.648
458.99
453.894
441.667
422.246
396.346
364.423
327.32
286.099
241.585
194.628
146.539
98.34
50.6085
4.47845
-39.4657
-80.5715
-118.217
-152.472
-182.941
-208.166
-226.265
-234.477
-228.525
-207.753
-182.682
-158.048
-134.798
-113.842
-95.563
-80.1897
-67.6193
-57.6155
-50.3133
-45.1695
-41.6421
-39.3817
-38.5589
-38.7788
-40.2399
-42.7498
-46.5607
-52.0879
-59.8226
-70.0673
-82.6308
-98.2057
-116.581
-138.207
-162.569
-188.348
-212.116
-225.647
-229.895
-226.407
-212.206
-186.312
-156.37
-124.143
-89.5889
-52.6212
-13.8064
27.3278
69.3947
112.88
156.36
199.904
242.251
282.942
321.33
356.545
388.153
415.252
437.13
453.242
462.613
465.178
461.91
452.255
436.034
413.938
386.439
354.071
317.693
278.142
236.166
192.518
147.871
103.216
58.8482
15.9935
-25.3911
-64.6343
-101.458
-135.613
-166.568
-193.919
-215.837
-229.526
-233.637
-224.172
-202.972
-179.619
-157.653
-139.363
-125.272
-114.441
-105.861
-99.1546
-94.5798
-92.2096
-92.3667
-94.4756
-98.0712
-102.99
-109.432
-117.669
-127.784
-139.63
-153.079
-168.006
-183.78
-200.791
-215.279
-223.524
-228.003
-229.837
-227.712
-219.601
-203.076
-179.281
-153.373
-125.511
-95.1767
-62.8185
-28.0567
9.09053
48.3297
89.1195
131.352
174.291
217.317
259.488
300.087
338.307
373.473
405.096
432.236
454.055
469.976
479.45
482.298
478.223
467.059
449.092
424.879
395.265
361.021
323.186
282.799
240.649
197.693
154.737
112.263
70.9915
31.1213
-6.84657
-42.2457
-76.0157
-107.504
-136.429
-163.166
-187.597
-209.434
-228.777
-245.62
-258.786
-266.11
-261.372
-241.261
-219.793
-198.676
-179.535
-162.596
-148.042
-136.131
-127.123
-121.354
-118.934
-120.42
-125.672
-134.777
-147.438
-164.204
-185.541
-210.046
-240.982
-267.475
-265.346
-257.14
-245.363
-232.736
-214.225
-192.081
-169.531
-143.464
-117.988
-87.3773
-58.5829
-29.6294
505.149
483.025
455.364
421.284
384.966
344.231
300.693
254.413
206.832
160.141
113.61
66.8259
23.628
-19.6127
-58.1344
-96.7832
-131.992
-161.477
-166.074
-129.478
-91.289
-54.8835
-25.0354
-13.7165
-9.01008
-5.59578
-2.96426
-1.11052
-0.0761484
0.129029
0.121601
0.106577
0.0923044
0.0786182
0.06217
0.0377641
0.0128159
-0.0111083
-0.042463
-0.0969172
-0.194094
-0.383818
-0.780546
-1.5503
-3.208
-6.70821
-14.0845
-30.5172
-56.2285
-85.3245
-116.894
-142.619
-146.858
-135.612
-111.278
-76.0128
-37.9042
2.71774
44.4998
86.9401
130.011
173.288
216.177
258.05
297.906
335.581
370.312
401.804
429.405
452.422
470.411
482.884
489.37
489.623
483.661
471.011
451.629
425.942
394.886
359.177
319.567
277.067
231.952
185.401
137.802
90.1447
42.7062
-3.62975
-47.6859
-89.4713
-124.643
-144.927
-133.729
-103.156
-70.3329
-42.4084
-25.2962
-14.3999
-7.45439
-3.35679
-1.26442
-0.516104
-0.50312
-0.547065
-0.571189
-0.581324
-0.579349
-0.572707
-0.569213
-0.578702
-0.611655
-0.668991
-0.763286
-0.905608
-1.11361
-1.43751
-1.92972
-2.71861
-3.98921
-6.08871
-9.68975
-15.9631
-27.0875
-45.533
-68.4697
-94.0666
-119.821
-139.245
-142.478
-135.071
-116.644
-86.715
-52.6317
-15.9748
23.0405
63.9915
105.592
148.882
192.598
235.89
277.979
318.338
355.347
388.569
416.843
439.505
455.748
464.645
465.885
460.822
448.409
428.513
401.991
369.306
331.283
289.117
243.706
195.703
146.756
97.7682
49.3124
2.62393
-41.6434
-82.3141
-116.966
-140.549
-143.046
-121.6
-94.8906
-68.4754
-46.366
-30.9587
-20.3593
-12.97
-7.69785
-4.24605
-2.1361
-1.03262
-0.604355
-0.573992
-0.577122
-0.578278
-0.581685
-0.584505
-0.596031
-0.611828
-0.639134
-0.683574
-0.763591
-0.86999
-1.04149
-1.29858
-1.70033
-2.33976
-3.38786
-5.16617
-8.25785
-14.0176
-24.7058
-44.3467
-70.5875
-100.079
-128.223
-142.817
-139.056
-122.562
-91.6733
-54.6706
-15.7272
25.8133
68.2914
112.422
156.443
200.791
243.855
285.316
324.51
360.437
392.803
420.586
443.022
459.607
469.204
471.647
468.407
458.587
441.938
419.338
391.174
358.07
320.865
280.517
237.722
193.307
147.913
102.623
57.636
14.3868
-27.2902
-66.3908
-101.802
-130.282
-144.793
-135.819
-111.705
-86.1469
-61.6212
-42.6356
-30.6792
-22.3709
-16.5109
-12.4971
-9.18404
-6.61088
-4.70909
-3.55625
-2.91765
-2.58769
-2.47695
-2.49698
-2.65678
-2.92281
-3.28611
-3.85038
-4.66766
-5.83741
-7.43042
-9.74235
-13.4096
-18.5627
-26.2932
-38.0456
-54.0299
-72.6958
-94.2214
-117.052
-136.512
-142.693
-137.963
-123.718
-97.5486
-65.2172
-30.5484
6.78085
46.3775
87.5803
130.408
174.033
217.868
260.85
302.292
341.324
377.264
409.679
437.547
459.958
476.329
486.085
489.033
484.943
473.491
455.041
430.162
399.761
364.62
325.875
284.586
241.562
197.787
154.136
111.031
69.2656
29.0485
-9.12206
-44.902
-78.7735
-109.975
-136.953
-156.66
-159.381
-137.348
-111.241
-85.1676
-59.876
-36.1306
-20.2377
-13.5977
-9.31025
-6.58298
-4.51198
-2.97134
-1.86111
-1.08092
-0.547756
-0.228251
-0.0291194
-0.0415323
-0.0755332
-0.116339
-0.162625
-0.213718
-0.260119
-0.324571
-0.83218
-5.37917
-25.702
-52.7072
-83.4162
-116.926
-156.697
-171.255
-160.148
-141.5
-120.553
-88.7903
-60.2474
-31.0476
511.518
489
460.867
425.66
388.732
347.067
302.73
255.427
206.807
159.533
112.365
64.6704
21.5483
-22.3306
-60.4547
-76.3415
-53.4611
-28.7279
-9.2359
-4.19077
-1.10717
0.532092
0.494544
0.43481
0.388961
0.335296
0.288687
0.240623
0.183588
0.146954
0.129347
0.110193
0.0932771
0.0773538
0.0600038
0.0387354
0.0198558
0.00645077
-0.00201425
-0.00796656
-0.0152303
-0.0236273
-0.033257
-0.042746
-0.051507
-0.0657781
-0.100333
-0.193842
-0.453565
-1.19142
-3.48733
-10.2269
-26.6513
-46.8396
-62.885
-58.525
-36.0875
0.900436
42.8764
85.832
129.441
173.405
216.98
259.63
300.153
338.535
373.934
406.109
434.358
457.932
476.401
489.262
495.972
496.218
490.319
477.484
457.698
431.375
399.596
363.105
322.632
279.368
233.346
186.009
137.56
89.2216
41.2145
-4.80953
-43.2448
-60.4386
-49.0043
-30.5481
-14.9189
-6.21397
-1.5685
-0.000232654
0.0470571
0.0574533
0.0607295
0.0549738
0.0526359
0.0526503
0.0454163
0.0389867
0.0348354
0.0317574
0.0298391
0.0279181
0.0270177
0.0265521
0.0256589
0.0247745
0.0234437
0.0217649
0.01913
0.0152688
0.00954225
0.00021783
-0.0144463
-0.0391254
-0.083003
-0.161372
-0.310369
-0.613078
-1.254
-2.71452
-6.0015
-13.4561
-27.6492
-44.3126
-58.9643
-60.1368
-44.5269
-16.8853
21.4474
62.6604
104.695
148.587
193.01
237.11
280.003
321.37
359.239
393.431
422.485
445.798
462.604
471.844
472.893
467.909
455.325
434.908
407.735
374.275
335.235
292.07
245.755
196.537
146.682
96.788
47.6365
1.23998
-38.5238
-59.3275
-52.3614
-36.7768
-21.1204
-10.9284
-4.81415
-1.44641
-0.15246
-0.0610031
-0.0480092
-0.00651723
0.0147835
0.0306302
0.0346386
0.0285683
0.0201496
0.019734
0.0218117
0.022693
0.0229855
0.0233524
0.0228363
0.022359
0.0210292
0.0212862
0.0214028
0.0224675
0.0225447
0.021924
0.0195547
0.0150698
0.00600963
-0.0107548
-0.0383046
-0.102121
-0.218794
-0.500385
-1.22914
-3.06886
-7.89957
-19.8488
-38.2057
-56.3414
-61.49
-45.6371
-16.5562
24.5319
67.26
111.985
156.562
201.713
245.491
287.719
327.751
364.407
397.549
426.058
449.082
466.162
476.02
478.243
475.078
465.102
447.985
424.855
395.961
362.093
323.973
282.788
239.146
193.872
147.65
101.681
56.102
12.9986
-26.3609
-54.2953
-57.8229
-45.3358
-29.7441
-16.4111
-8.23886
-3.52886
-0.935067
-0.0688662
-0.0625778
-0.0697134
-0.141928
-0.183455
-0.140416
-0.0753554
-0.0162326
0.0125715
0.0120415
0.00395416
-0.0019105
-0.00558028
-0.00806931
-0.0105615
-0.0148527
-0.0231653
-0.0347791
-0.0510227
-0.0657176
-0.0904649
-0.140813
-0.151227
-0.193564
-0.374754
-0.722938
-1.35446
-2.64461
-5.42944
-11.602
-24.0509
-39.9134
-55.3575
-62.3415
-51.5143
-29.5457
4.68692
44.5118
86.028
129.451
173.751
218.418
262.233
304.544
344.415
381.148
414.4
443.026
466.056
482.905
492.954
495.943
491.905
480.148
461.204
435.629
404.404
368.325
328.633
286.413
242.476
197.836
153.49
109.827
67.6117
27.1598
-10.8645
-44.5095
-66.8911
-62.583
-47.5169
-29.9752
-14.4484
-7.81964
-3.94662
-1.29805
0.0652438
0.198517
0.200052
0.186064
0.182111
0.170981
0.155758
0.13719
0.114593
0.0880994
0.0561313
0.00678836
-0.0206569
-0.0400389
-0.0724346
-0.111022
-0.154748
-0.202851
-0.246313
-0.284973
-0.396561
-0.516863
-0.633845
-0.777222
-0.888545
-0.994616
-1.34895
-9.31022
-29.4579
-53.2237
-77.9419
-76.9174
-56.0822
-31.6062
518.068
495.168
466.599
430.192
392.629
349.95
304.837
256.434
206.59
158.878
111.206
62.5658
20.9838
4.538
1.60139
1.42431
1.15206
1.04209
0.907007
0.793841
0.671611
0.606548
0.511255
0.433451
0.382714
0.326184
0.277609
0.228219
0.177284
0.142759
0.123905
0.105204
0.0887061
0.0734326
0.0568228
0.0373051
0.0198229
0.00707876
-0.00127814
-0.00731563
-0.0142731
-0.0222839
-0.0300058
-0.0366048
-0.0397323
-0.0387405
-0.0424324
-0.0466767
-0.0484519
-0.0486621
-0.0468467
-0.0526968
-0.0436427
-0.0253962
0.0876267
0.532756
3.21319
15.9693
45.9136
84.7006
128.65
173.416
217.754
261.233
302.442
341.564
377.643
410.526
439.454
463.603
482.562
495.836
502.789
502.959
497.162
484.136
463.914
436.879
404.342
366.987
325.559
281.457
234.353
186.146
136.854
88.351
43.6334
15.4353
3.86422
0.389933
0.20656
0.131785
0.106921
0.0910561
0.0714161
0.0947798
0.0873322
0.0756923
0.0678004
0.0627834
0.0607921
0.0599277
0.0537405
0.0479469
0.0438671
0.0407862
0.0386778
0.0372976
0.0357538
0.0353647
0.034987
0.0350128
0.0351851
0.0357111
0.036244
0.0370865
0.0382895
0.0396302
0.0411178
0.0424869
0.0435268
0.0444455
0.0467607
0.0500688
0.0537388
0.057384
0.0611424
0.0688521
0.0860141
0.127922
0.239333
0.616525
2.16741
8.80237
30.386
63.443
103.979
148.522
193.506
238.354
282.099
324.447
363.099
398.296
428.167
452.144
469.538
479.15
479.884
474.976
462.257
441.212
413.354
379.052
338.856
294.674
247.278
196.747
145.96
95.6228
49.1597
18.374
5.31788
0.672672
0.291271
0.224985
0.14478
0.0810193
0.0900645
0.0910762
0.0769718
0.0516392
0.0572072
0.0605003
0.0587925
0.0553347
0.0493457
0.0391361
0.0307508
0.029666
0.0312566
0.0319027
0.0323103
0.032491
0.0321173
0.0317817
0.0309295
0.0314836
0.0326579
0.0346286
0.0363675
0.0382297
0.0403266
0.0429117
0.0447924
0.0472715
0.0500622
0.0522489
0.055791
0.0590109
0.0587876
0.05342
0.0562881
0.0640819
0.0782745
0.153557
0.476035
1.98458
9.07695
32.9315
67.7986
111.708
156.745
202.657
247.158
290.122
331.039
368.423
402.363
431.614
455.266
472.858
483.013
484.92
481.874
471.716
454.053
430.313
400.625
365.924
326.808
284.689
240.125
193.923
146.838
100.644
56.7061
24.0275
8.62398
1.71791
0.327698
0.335167
0.170063
0.0875221
0.0861075
0.0921494
0.0872099
0.0689648
0.0337492
0.0288781
0.0266787
0.0334059
0.0368188
0.0448246
0.0501014
0.0488631
0.0437415
0.0391907
0.0353943
0.0332596
0.0330708
0.0341771
0.0350178
0.0348291
0.0345078
0.0345066
0.0363147
0.0380185
0.038258
0.0407927
0.0450092
0.0485089
0.0510165
0.0513752
0.0516803
0.050128
0.0503881
0.0621875
0.0912933
0.157637
0.394793
1.30612
4.9616
19.0199
47.6688
84.7412
128.524
173.462
218.943
263.616
306.846
347.581
385.121
419.258
448.672
472.351
489.698
500.061
503.045
499.108
487.026
467.582
441.287
409.198
372.146
331.466
288.279
243.424
197.912
152.999
108.899
66.6479
30.0605
10.7297
2.76125
0.609357
0.443522
0.350879
0.328569
0.312007
0.283751
0.275036
0.25768
0.239373
0.218806
0.203071
0.186999
0.177911
0.165245
0.149427
0.130851
0.108707
0.0830266
0.0512885
0.00747879
-0.018913
-0.0391973
-0.0701538
-0.10681
-0.148266
-0.193844
-0.236105
-0.277191
-0.381102
-0.497584
-0.601215
-0.735647
-0.844823
-0.951174
-1.05767
-1.39017
-1.5977
-1.75276
-1.93899
-2.3095
-2.57195
-2.72265
524.795
501.529
472.572
434.941
396.682
352.877
306.941
257.401
206.502
158.233
107.289
61.6713
22.0215
6.92577
1.86359
1.37217
1.13378
0.996545
0.863758
0.754785
0.640376
0.575526
0.488121
0.415068
0.364898
0.311116
0.26478
0.21764
0.170989
0.138122
0.118673
0.100576
0.0845472
0.0696955
0.053752
0.0356755
0.0194259
0.00729426
-0.000886356
-0.00696998
-0.0136479
-0.0210067
-0.0281183
-0.0344146
-0.0373314
-0.0373706
-0.0411294
-0.0448321
-0.0461948
-0.0462566
-0.0464767
-0.0482124
-0.0417266
-0.0222084
0.0610062
0.541636
2.89749
14.6822
45.0112
83.8449
128.234
173.328
218.466
262.67
304.702
344.626
381.423
415.05
444.694
469.44
488.894
502.604
509.826
509.866
504.215
490.982
470.267
442.426
409.046
370.713
328.174
283.128
234.84
185.728
135.4
86.1977
41.566
14.4487
3.56626
0.38852
0.201959
0.125921
0.105377
0.0887388
0.0730559
0.0883062
0.0826833
0.072891
0.0655531
0.0607011
0.0583908
0.0569621
0.0514944
0.0461595
0.0422488
0.0392757
0.0372265
0.0358842
0.0344969
0.0340556
0.0337113
0.0337184
0.0339113
0.0344327
0.0349322
0.0357523
0.0369932
0.0382987
0.0397025
0.0409599
0.0420656
0.042991
0.0451332
0.0481869
0.0510753
0.0538501
0.0574064
0.0654837
0.0831928
0.12302
0.228157
0.591811
2.06696
8.39213
29.5276
62.1187
102.995
148.495
194.125
239.731
284.156
327.608
367.023
403.245
433.898
458.515
476.517
486.512
486.851
482.075
469.182
447.37
418.781
383.573
342.023
296.821
248.173
196.441
144.878
93.9269
47.4287
17.4238
5.03089
0.675197
0.306446
0.223776
0.143328
0.0896396
0.0892228
0.0871036
0.0734569
0.0531185
0.0558354
0.0583479
0.0566919
0.0531765
0.0473443
0.0381576
0.0306276
0.0291736
0.0302641
0.0309048
0.031315
0.0314678
0.0311566
0.0307529
0.0301604
0.0306584
0.0319293
0.0337915
0.0354605
0.037205
0.0392542
0.041761
0.0435732
0.0460528
0.0487236
0.0512677
0.0544806
0.0572955
0.0579754
0.053959
0.0557162
0.0600528
0.0725387
0.146347
0.456428
1.88558
8.63252
32.1476
66.7981
111.359
156.85
203.582
248.74
292.44
334.29
372.4
407.193
437.18
461.487
479.604
490.095
491.677
488.708
478.359
460.053
435.677
405.133
369.518
329.28
286.147
240.64
193.579
145.809
99.1801
55.0533
22.9915
8.17722
1.65922
0.337181
0.318491
0.168184
0.0975221
0.0871436
0.0897517
0.084756
0.0653212
0.0345048
0.0275648
0.0232028
0.0308711
0.0347786
0.0432716
0.0489436
0.0477972
0.0425969
0.0381091
0.0343637
0.032464
0.032485
0.0336783
0.034368
0.0341376
0.0338852
0.0339528
0.0356856
0.0374152
0.0383155
0.0411016
0.0440869
0.0460921
0.0483939
0.049234
0.0499923
0.0496919
0.050905
0.0606232
0.0842942
0.14725
0.374323
1.24749
4.68493
17.9675
46.2807
83.2826
127.506
173.111
219.444
264.947
309.121
350.782
389.171
424.251
454.488
478.836
496.715
507.408
510.299
506.539
494.11
474.167
447.145
414.13
376.08
334.347
290.221
244.571
198.081
152.083
106.679
64.3642
29.5799
11.0308
3.10129
0.590339
0.432961
0.346157
0.313953
0.29603
0.270919
0.260921
0.242589
0.228208
0.208829
0.193435
0.178978
0.169097
0.156853
0.141768
0.124029
0.102929
0.0785096
0.0483103
0.00889664
-0.0170037
-0.0378906
-0.0674353
-0.102222
-0.141539
-0.184834
-0.226413
-0.269861
-0.365679
-0.472726
-0.57351
-0.69814
-0.803608
-0.909301
-1.02643
-1.30784
-1.50985
-1.66703
-1.85539
-2.23465
-2.48087
-2.6347
531.694
508.062
478.818
440.029
400.864
355.732
309.348
258.51
197.436
114.349
35.0056
8.70641
2.26075
1.69759
1.41014
1.20262
1.0339
0.926583
0.814375
0.714149
0.610305
0.545041
0.464442
0.395964
0.346732
0.295813
0.251518
0.206776
0.1641
0.132953
0.113287
0.0958102
0.0803406
0.066023
0.0508054
0.0341599
0.0189997
0.00748788
-0.000521167
-0.00662523
-0.0130459
-0.0200065
-0.0266249
-0.0322581
-0.0353654
-0.0355099
-0.038932
-0.0420971
-0.0438895
-0.0448119
-0.0452514
-0.0480025
-0.0482732
-0.0480981
-0.0489494
-0.029664
0.0375311
0.462449
3.18425
18.4935
74.7601
146.31
211.006
263.453
306.84
347.676
385.195
419.632
450.061
475.445
495.402
509.574
517.1
516.922
511.531
498.009
476.731
447.979
413.624
374.202
330.467
284.124
231.243
161.686
80.2568
26.5151
4.98627
0.597008
0.250447
0.158315
0.112821
0.0924301
0.0893279
0.080808
0.0710674
0.0822015
0.0779683
0.069559
0.0628614
0.0582826
0.0558306
0.0540539
0.0491752
0.0442651
0.0405197
0.0376801
0.0357154
0.0343306
0.0330531
0.0325591
0.0322676
0.0322456
0.0324629
0.0329608
0.033399
0.0342105
0.0354324
0.0367177
0.0380103
0.0391844
0.0402921
0.0411999
0.0431607
0.0459104
0.0482147
0.0499175
0.0514908
0.0539357
0.0573683
0.0601493
0.0652959
0.0848624
0.151945
0.399552
1.60533
8.2156
39.9468
105.282
177.156
236.753
285.845
330.607
370.705
408.152
439.608
464.852
483.486
493.909
494.274
489.49
476.412
453.719
424.379
388.207
345.214
298.95
247.229
179.072
95.9175
33.695
7.80812
0.850237
0.551428
0.276255
0.147667
0.121217
0.107079
0.07628
0.0775066
0.0791425
0.0692507
0.053047
0.0541021
0.0560282
0.0545201
0.0509857
0.0453278
0.0370414
0.0302126
0.0284812
0.0291294
0.0297885
0.0301421
0.0302858
0.0300867
0.0297051
0.0292906
0.0297307
0.0310491
0.0327907
0.0344206
0.0360355
0.038049
0.0404461
0.0422363
0.0447104
0.0473406
0.0501044
0.0528922
0.0551697
0.0556227
0.0514284
0.0499421
0.0472489
0.0403196
0.0422936
0.065021
0.134133
0.411546
1.85821
10.2238
51.2186
118.749
190.765
247.441
294.484
337.318
376.125
411.882
442.623
467.624
486.294
497.167
499.096
495.761
485.226
466.211
441.165
409.705
373.139
331.743
287.45
238.288
174.777
97.4525
37.6895
10.6389
1.31163
0.670603
0.370752
0.162636
0.118253
0.0892937
0.0684969
0.067823
0.0765425
0.0782636
0.0622441
0.0354808
0.0250396
0.0200106
0.0284668
0.0332409
0.0395561
0.0445486
0.043773
0.0394018
0.0360086
0.033073
0.0315422
0.0317018
0.0328982
0.0334985
0.0332558
0.033092
0.0331687
0.0349163
0.0367727
0.0382074
0.0411708
0.0433221
0.0442335
0.0460628
0.0466253
0.0466665
0.0449557
0.0425598
0.0429606
0.0441876
0.0439872
0.0585485
0.102545
0.227925
0.790772
3.88054
19.621
72.5023
144.269
211.332
265.486
311.294
353.875
393.2
429.334
460.456
485.519
503.959
515.01
517.654
514.205
501.388
480.945
453.174
419.127
380.126
337.294
292.025
243.104
182.206
105.654
40.3344
12.3574
1.42342
0.666819
0.427711
0.371696
0.329507
0.295131
0.285526
0.275369
0.256185
0.24685
0.230012
0.216896
0.198705
0.183823
0.170629
0.160359
0.148545
0.134194
0.117256
0.0971469
0.0738762
0.0452413
0.00967517
-0.0153953
-0.0364904
-0.0646443
-0.0976066
-0.134821
-0.175877
-0.216402
-0.260746
-0.349274
-0.449001
-0.545095
-0.660971
-0.762822
-0.866907
-0.986809
-1.23497
-1.42727
-1.58386
-1.77797
-2.10719
-2.33212
-2.50424
538.772
514.795
485.345
445.284
405.331
358.972
301.049
180.399
52.3465
11.4795
2.84774
2.00154
1.66904
1.42806
1.26308
1.1172
0.973298
0.873481
0.769762
0.675724
0.580201
0.515479
0.440771
0.376499
0.328636
0.280605
0.238386
0.196111
0.156841
0.127433
0.107883
0.0910296
0.0761445
0.0623757
0.0479268
0.0326772
0.0184213
0.00753678
-0.000201049
-0.00622076
-0.0123788
-0.0189028
-0.0250241
-0.0302976
-0.0333278
-0.0337783
-0.0369838
-0.039874
-0.0414385
-0.0423406
-0.0430211
-0.0453999
-0.0464422
-0.0471773
-0.0505373
-0.0527607
-0.0511428
-0.0342434
0.0434854
0.420474
3.26127
21.6905
98.0616
204.184
289.069
347.599
388.887
424.242
455.509
481.569
502.05
516.724
524.65
524.11
519.066
505.189
483.356
453.6
418.193
376.993
325.647
243.162
127.072
42.1611
7.63316
0.887588
0.351017
0.172542
0.0974196
0.0976665
0.0882101
0.0818593
0.0819229
0.0759747
0.0689286
0.076796
0.0735102
0.0662435
0.0600863
0.0556832
0.0530924
0.0510469
0.0466484
0.0421467
0.0385929
0.0358962
0.0339969
0.032627
0.0314552
0.0309313
0.0306615
0.0306255
0.0308365
0.0313021
0.0317074
0.0325007
0.0336413
0.0348933
0.0361113
0.0372666
0.0384182
0.0393244
0.0411598
0.0437868
0.0459063
0.0475541
0.049142
0.0512552
0.0537446
0.0546275
0.0547279
0.0553099
0.0572932
0.0606959
0.097087
0.287611
1.3262
8.4752
50.2615
147.245
249.233
323.401
373.377
412.579
444.979
470.952
490.309
501.27
501.565
496.903
483.631
459.857
429.898
392.354
344.178
273.475
161.759
58.7094
14.08
1.70182
0.830978
0.363527
0.18764
0.145074
0.105125
0.0976959
0.0952427
0.0733285
0.0732274
0.0742832
0.0659777
0.0528449
0.0525823
0.053534
0.0519623
0.0484479
0.0430441
0.0356167
0.0294497
0.0275543
0.0278329
0.0284084
0.0287061
0.0288777
0.0287177
0.0283575
0.0280541
0.0285045
0.0297845
0.0313815
0.032975
0.0345291
0.0364717
0.0387282
0.0405768
0.0429495
0.0456097
0.0484652
0.0509473
0.0531007
0.0537239
0.0501935
0.0480444
0.0440485
0.0366308
0.0346052
0.040535
0.0469041
0.0649433
0.130624
0.396378
1.93316
11.9213
69.6089
169.026
265.434
332.647
379.177
416.107
447.706
473.477
492.751
504.105
505.858
502.588
491.922
472.068
446.39
413.929
375.504
326.347
249
142.243
54.1778
14.2116
1.73096
1.04957
0.457459
0.197249
0.128415
0.0851225
0.074036
0.069354
0.0621229
0.063391
0.0719472
0.0747202
0.0601923
0.0366348
0.022143
0.017368
0.0256209
0.0339836
0.0390365
0.0431421
0.042315
0.0379337
0.0346008
0.0320245
0.030599
0.0308
0.0320682
0.0326206
0.0323578
0.0321188
0.0323106
0.0338319
0.0359745
0.0374968
0.0406965
0.0420684
0.042422
0.0438259
0.0443269
0.0444431
0.0430463
0.0408297
0.0402284
0.0394696
0.0358924
0.0376966
0.042352
0.0425625
0.0640785
0.166568
0.609981
3.4223
22.4264
99.6006
206.661
295.277
354.814
397.052
434.435
466.512
492.358
511.403
522.882
525.212
522.104
508.827
487.865
459.292
424.095
383.595
335.288
261.374
148.175
50.8537
12.7867
1.44751
0.73896
0.4769
0.365738
0.305522
0.312249
0.29617
0.274635
0.26879
0.259112
0.242617
0.233119
0.217605
0.205495
0.188566
0.17429
0.1621
0.151732
0.140358
0.126709
0.110595
0.091517
0.0694424
0.0424107
0.0101636
-0.013949
-0.0349357
-0.0617099
-0.0928872
-0.12806
-0.16695
-0.206271
-0.250814
-0.332718
-0.425284
-0.516706
-0.624435
-0.722305
-0.824044
-0.944653
-1.16411
-1.34627
-1.50077
-1.6913
-1.97774
-2.18717
-2.33587
546.019
521.706
492.354
451.265
397.76
250.729
79.2154
16.1144
3.34971
2.4068
1.93649
1.64378
1.48226
1.31658
1.18055
1.0505
0.920107
0.823945
0.726638
0.638082
0.549751
0.486376
0.417027
0.356731
0.31059
0.26529
0.225189
0.185477
0.149248
0.121558
0.10239
0.086198
0.071943
0.0587624
0.045108
0.0311159
0.017755
0.00750286
4.75928e-05
-0.00584518
-0.0117028
-0.0178122
-0.0234995
-0.0283433
-0.0312606
-0.0319821
-0.0350254
-0.0376569
-0.0391159
-0.0400059
-0.0407819
-0.0433396
-0.0441744
-0.0445399
-0.0476988
-0.0507148
-0.0516527
-0.0506762
-0.0539375
-0.0431295
0.0354543
0.431579
3.31468
24.5293
113.051
240.738
349.276
415.696
459.942
487.792
508.664
523.854
532.126
531.156
526.612
512.318
489.658
456.592
408.47
313.596
174.241
62.2419
12.614
1.24782
0.477438
0.205399
0.104007
0.0820543
0.0651644
0.0806093
0.0794394
0.0764696
0.0765998
0.07187
0.0664862
0.0717373
0.0689521
0.0626109
0.0569988
0.0528433
0.0502055
0.0480045
0.0440238
0.0399166
0.0365829
0.0340285
0.032203
0.0308492
0.0297811
0.0292461
0.028982
0.0289471
0.0291338
0.029565
0.0299405
0.0307083
0.0317452
0.0329091
0.0340323
0.0351123
0.0362095
0.0370842
0.0388481
0.0412682
0.0432544
0.0449474
0.0466685
0.048702
0.0507604
0.0517027
0.0517297
0.0516178
0.0508617
0.045155
0.0393543
0.040837
0.06391
0.26129
1.40221
9.41863
59.2698
184.625
306.95
392.768
444.594
475.806
496.019
507.608
507.179
503.229
489.653
462.933
424.822
352.278
220.41
92.3652
26.9827
4.21875
1.38978
0.593843
0.204077
0.140026
0.115329
0.114696
0.096423
0.0919154
0.089142
0.0715499
0.0698819
0.0697755
0.0624148
0.0515114
0.0504007
0.0507
0.0490875
0.0456808
0.0406089
0.0339686
0.0284236
0.0264677
0.0264614
0.0269158
0.027163
0.0273327
0.0271651
0.026868
0.0266231
0.0271041
0.0282928
0.029772
0.0313126
0.0327766
0.0346332
0.0366797
0.0385109
0.0407717
0.0433764
0.0461409
0.0484234
0.0505579
0.0511522
0.0483006
0.0459002
0.0415266
0.0348684
0.0328107
0.0362438
0.0381094
0.0407121
0.0438022
0.0475987
0.0964228
0.393606
2.29701
14.1076
80.9891
205.671
320.561
398.159
447.434
478.071
498.041
510.023
511.107
508.395
497.529
475.856
446.11
397.166
306.063
176.313
70.6741
19.6896
2.96821
1.49462
0.653309
0.270913
0.161895
0.0986939
0.0830749
0.0708244
0.066275
0.0644684
0.0595902
0.0611097
0.068938
0.0711033
0.0577807
0.0369462
0.0207596
0.0154805
0.0229833
0.0343499
0.0385591
0.042275
0.0412947
0.0369056
0.0333446
0.0307545
0.0293932
0.0295594
0.0307176
0.031224
0.031009
0.0307514
0.031058
0.0323542
0.0345156
0.0360447
0.0391176
0.0400773
0.0404174
0.0415663
0.0420925
0.0421413
0.0409452
0.0390541
0.0382505
0.0373413
0.0343933
0.0350499
0.0364043
0.0303736
0.026843
0.028736
0.0388152
0.134781
0.643302
3.86464
26.8832
126.226
259.775
366.593
432.043
472.752
499.222
518.883
530.828
532.845
530.086
516.162
494.444
463.337
418.504
331.85
191.367
67.6566
15.5701
1.7544
0.850924
0.496974
0.353294
0.325713
0.297869
0.273768
0.287605
0.276804
0.259778
0.253948
0.24392
0.229386
0.219724
0.20538
0.193938
0.178367
0.16479
0.153428
0.143172
0.13224
0.119269
0.103989
0.0859503
0.0650891
0.0396996
0.010378
-0.0126613
-0.0332796
-0.0586723
-0.0880863
-0.121247
-0.157999
-0.195945
-0.239981
-0.315719
-0.401629
-0.488175
-0.588339
-0.681958
-0.780669
-0.899382
-1.0951
-1.26662
-1.4174
-1.6009
-1.85291
-2.04605
-2.17739
553.433
529.05
476.292
295.377
96.694
19.6822
3.54713
2.67779
2.14633
1.86685
1.68362
1.50128
1.37778
1.23377
1.10816
0.98735
0.86755
0.775152
0.683747
0.600469
0.518759
0.457422
0.393046
0.336642
0.292482
0.249902
0.21197
0.174825
0.141379
0.115393
0.0968123
0.0813216
0.0677304
0.0551777
0.0423053
0.0292615
0.0169901
0.00738187
0.000257821
-0.00544798
-0.011019
-0.0167302
-0.0219876
-0.0264762
-0.0292636
-0.0302226
-0.0329992
-0.0354974
-0.0367167
-0.0376743
-0.0384131
-0.041237
-0.0419248
-0.0421031
-0.0452839
-0.0477193
-0.0486008
-0.0488051
-0.0548309
-0.0571403
-0.058887
-0.0583779
0.0147331
0.493058
3.20629
20.8282
100.052
232.166
355.423
438.948
486.513
516.442
531.572
531.524
524.426
499.156
447.316
336.681
196.127
76.2715
17.6685
1.53869
0.73729
0.256331
0.106389
0.0700699
0.0533572
0.0606925
0.0577345
0.0727535
0.0737014
0.0719643
0.0717105
0.0676438
0.0634213
0.0668325
0.0644047
0.058877
0.053788
0.0498902
0.047266
0.0449927
0.0413747
0.0376333
0.0345208
0.0321156
0.0303678
0.0290199
0.0280586
0.027512
0.0272695
0.0272226
0.0273885
0.0277825
0.0281332
0.0288676
0.0297987
0.0308696
0.0319092
0.0329016
0.0339492
0.0347903
0.0364611
0.0386159
0.0403936
0.0420324
0.0435884
0.0454109
0.0472731
0.0482838
0.0487258
0.0485502
0.0473209
0.041993
0.0356469
0.029857
0.0184561
0.0168909
0.0343442
0.240262
1.60497
10.651
57.9298
185.477
310.792
402.408
457.386
485.439
489.331
478.389
444.215
353.661
238.29
114.673
39.3706
7.64487
2.42224
1.16528
0.304583
0.139503
0.0857451
0.0973196
0.101171
0.105404
0.0923837
0.0875279
0.0834292
0.0689852
0.0662459
0.0652194
0.0586708
0.0495687
0.0479164
0.0477218
0.0460903
0.0428449
0.038135
0.0321932
0.0272337
0.025268
0.0250483
0.0253811
0.025583
0.0257365
0.0255696
0.0253407
0.0251463
0.0256341
0.0267087
0.0280858
0.0295395
0.030916
0.0326765
0.0345292
0.0363306
0.0384303
0.0409213
0.0435492
0.0455141
0.0474337
0.0479529
0.0456749
0.0433638
0.0389305
0.0329847
0.0312588
0.0337861
0.0356411
0.0379613
0.037594
0.0293076
0.0193328
0.016784
0.0728339
0.4272
2.48441
14.6192
71.0427
196.401
317.511
409.011
461.151
489.846
497.367
487.074
462.776
395.448
298.825
174.635
77.7018
23.7529
4.36739
2.22735
0.983596
0.326046
0.169768
0.111814
0.101288
0.0813408
0.0757762
0.0677244
0.0635541
0.061343
0.0571202
0.058489
0.0649757
0.0664609
0.0548439
0.0363891
0.020628
0.0142192
0.0209091
0.0325948
0.0374018
0.0410366
0.0397829
0.0354116
0.0318795
0.0293683
0.0280472
0.0281105
0.0291102
0.0294813
0.0293448
0.0291763
0.0294677
0.0306912
0.0326651
0.0342558
0.0370791
0.0378099
0.0381535
0.0390777
0.0394944
0.0394622
0.0385536
0.037091
0.0361624
0.035137
0.0329683
0.0334095
0.0339642
0.0282442
0.0231658
0.0190982
0.00800104
0.00558712
0.0208687
0.132106
0.726453
4.40347
27.9301
131.174
275.535
397.511
469.253
510.23
532.229
536.1
531.332
509.294
463.263
355.753
207.73
78.8866
19.3117
2.04314
0.955923
0.509228
0.341254
0.304168
0.271443
0.284529
0.27274
0.257766
0.268149
0.259872
0.244914
0.239077
0.229213
0.216138
0.2065
0.193244
0.182326
0.168057
0.155244
0.144611
0.134623
0.124166
0.111887
0.0974543
0.0804671
0.0608317
0.0371129
0.010384
-0.0114994
-0.0315364
-0.0555392
-0.0832081
-0.114384
-0.149017
-0.185427
-0.22842
-0.2984
-0.378005
-0.459558
-0.552618
-0.641698
-0.736759
-0.851837
-1.02736
-1.18806
-1.3337
-1.50817
-1.73125
-1.90808
-2.0243
397.782
242.784
75.364
17.0385
2.89363
2.52396
2.1475
1.98541
1.83232
1.67881
1.55101
1.39941
1.28561
1.15447
1.03766
0.924526
0.814343
0.726342
0.6408
0.562791
0.487312
0.428555
0.368882
0.316282
0.274314
0.23443
0.198724
0.164129
0.13327
0.108975
0.0911436
0.0763998
0.0635067
0.0516148
0.0395314
0.0273896
0.0161477
0.0071875
0.000420026
-0.00506399
-0.0103203
-0.015642
-0.0205024
-0.0246456
-0.027296
-0.02843
-0.0309714
-0.0332892
-0.0343921
-0.035369
-0.0362729
-0.0387997
-0.0398045
-0.039726
-0.0429087
-0.0446626
-0.0460671
-0.0464755
-0.0520394
-0.0549076
-0.0595397
-0.0709101
-0.0736093
-0.0681483
-0.00965616
0.358099
2.34145
12.133
48.8573
134.167
227.445
297.154
334.227
334.51
305.07
233.491
143.306
64.932
16.8994
1.94146
1.02572
0.329682
0.0902492
0.0518198
0.0340053
0.0411194
0.0426749
0.0534914
0.0544883
0.0668171
0.0684754
0.0673608
0.066819
0.0633789
0.0599963
0.0620969
0.0599314
0.055104
0.0505043
0.0468654
0.0442984
0.0420135
0.0387164
0.0353121
0.0324196
0.0301676
0.0284968
0.0271858
0.0262936
0.0257737
0.0255354
0.0254814
0.0256411
0.0259828
0.0263301
0.0270023
0.0278505
0.0288356
0.0297781
0.0307067
0.0316767
0.032507
0.0340357
0.0359559
0.03757
0.0391216
0.0405266
0.0421738
0.0437691
0.0446125
0.0449692
0.0445296
0.0432739
0.0388398
0.0333587
0.0264962
0.0151102
0.00638882
-0.0126637
-0.0234745
0.0115015
0.267963
1.60215
8.36338
34.1543
87.7685
165.555
215.783
215.971
193.887
145.691
81.8534
34.4273
9.44007
4.05644
1.79444
0.521097
0.17002
0.0538862
0.0600741
0.067941
0.0872464
0.0941511
0.0978061
0.0876782
0.0825757
0.0777772
0.0657948
0.0624283
0.060735
0.0549037
0.0472446
0.0452735
0.0446952
0.0430689
0.0399985
0.0356586
0.0303399
0.0259047
0.0239724
0.0235966
0.0238189
0.0239758
0.0241048
0.0239349
0.0237566
0.023609
0.0240965
0.0250726
0.0263478
0.027713
0.0289963
0.0306649
0.0323326
0.0340856
0.0360196
0.0383899
0.0408096
0.0425507
0.0442144
0.0446331
0.0426377
0.0402547
0.0360647
0.0309318
0.0293726
0.0313104
0.0335859
0.0364294
0.03597
0.0274835
0.0151495
-0.000883979
-0.0150085
-0.0149403
0.0399086
0.400502
2.00774
9.54947
36.182
95.0715
171.078
221.221
235.488
211.653
170.842
105.221
53.8027
18.2336
5.01975
3.20013
1.28911
0.417731
0.171272
0.0727525
0.0744333
0.0818471
0.088988
0.077573
0.0723265
0.0648363
0.0604401
0.057894
0.0543101
0.0555019
0.0607261
0.0615946
0.0515569
0.0352509
0.0203827
0.0129951
0.0189277
0.0296348
0.0354682
0.0387112
0.037471
0.0335952
0.03024
0.0278466
0.0265847
0.0265595
0.0274156
0.0277189
0.0276317
0.0274874
0.0277566
0.0289466
0.0307242
0.0322873
0.0348268
0.0354434
0.0357794
0.0365276
0.0368456
0.0367321
0.0359573
0.0346749
0.0336849
0.0327651
0.0312293
0.0315255
0.03162
0.0265943
0.0217488
0.0170841
0.00580902
-0.00277512
-0.0139544
-0.0184406
0.0073517
0.127928
0.73208
3.79645
19.5605
76.8908
185.586
277.208
332.463
346.531
320.194
244.67
148.582
67.0084
16.8115
1.74678
0.90607
0.487933
0.309322
0.264598
0.236366
0.254417
0.24578
0.261498
0.253872
0.243106
0.249865
0.242947
0.229842
0.224071
0.214605
0.20272
0.193282
0.181078
0.170716
0.157664
0.145657
0.135695
0.126086
0.11613
0.104552
0.0909786
0.0750512
0.0566544
0.0346328
0.0102211
-0.0104445
-0.0297253
-0.0523237
-0.0782575
-0.107464
-0.139988
-0.174718
-0.216223
-0.280777
-0.354383
-0.430855
-0.517165
-0.601469
-0.692348
-0.802525
-0.960571
-1.1104
-1.24971
-1.41383
-1.61221
-1.77315
-1.87617
12.1493
6.29173
2.94061
1.96735
1.8475
1.8636
1.81547
1.7609
1.67407
1.55117
1.43885
1.3039
1.19604
1.07575
0.967149
0.861855
0.760623
0.67751
0.597794
0.525059
0.455481
0.39973
0.344548
0.295685
0.256081
0.218881
0.185448
0.153374
0.124957
0.10234
0.0853839
0.0714325
0.05927
0.0480664
0.0367895
0.0255338
0.0152431
0.00692843
0.000543646
-0.00467891
-0.00961983
-0.0145615
-0.0190408
-0.0228575
-0.025374
-0.0266176
-0.0289473
-0.0311339
-0.032091
-0.0333886
-0.0341981
-0.0365797
-0.0374292
-0.0374663
-0.0399812
-0.0416693
-0.0432962
-0.0448731
-0.0494903
-0.0520283
-0.0566928
-0.0669336
-0.0717132
-0.0791828
-0.0882957
-0.0891287
-0.0489576
0.166792
1.02598
3.97888
11.1599
23.3668
35.9111
39.0365
32.68
16.4478
3.35626
1.88234
0.968049
0.298948
0.0374116
0.0137435
-0.000605389
0.0150136
0.0206005
0.0338389
0.0391493
0.0488302
0.0513837
0.061345
0.0633319
0.0626688
0.061985
0.0590847
0.0563243
0.0575032
0.0555359
0.0513113
0.0471639
0.0437896
0.0413088
0.0390616
0.0360564
0.032962
0.0302901
0.0281919
0.0266123
0.0253895
0.0245429
0.0240466
0.0238143
0.0237565
0.0239023
0.0242009
0.0245396
0.02515
0.0259264
0.0268311
0.0276756
0.0285593
0.0294331
0.0302692
0.031635
0.0333659
0.0348595
0.0362601
0.0375657
0.0390953
0.0403989
0.041223
0.0414266
0.040945
0.0394756
0.0351834
0.0298139
0.0233774
0.0132186
0.00410777
-0.015246
-0.0337427
-0.0480161
-0.0584802
-0.014067
0.212107
1.22389
3.15075
7.52795
12.1132
11.8976
8.66431
4.59155
4.54673
2.85547
1.66733
0.648114
0.189447
0.0183903
0.00819408
0.0199135
0.0473167
0.0621589
0.0800848
0.0873084
0.0902958
0.0823278
0.0772886
0.0722092
0.0621661
0.0584828
0.0563439
0.0511345
0.0446405
0.0425014
0.0416409
0.0400394
0.0371508
0.0331806
0.028425
0.0244554
0.0225903
0.0221081
0.0222333
0.0223524
0.022447
0.0222872
0.0221387
0.0220758
0.0225218
0.0234376
0.0245859
0.0258657
0.0270572
0.0286112
0.0301173
0.031792
0.0335521
0.0358178
0.0379572
0.039589
0.0409904
0.0412615
0.0395571
0.0371014
0.0331437
0.0285749
0.0270617
0.0286212
0.0310501
0.0339576
0.033532
0.0256479
0.0133978
-0.00257581
-0.0180569
-0.0318382
-0.0472282
-0.0473425
-0.0101099
0.198705
1.04505
3.04188
7.25289
11.3573
14.5119
11.7901
6.08916
4.55491
3.39132
2.39772
0.994851
0.452623
0.157933
0.0258213
0.0193176
0.0286939
0.0578602
0.0742292
0.0822609
0.073799
0.0683886
0.0614302
0.0570436
0.0542952
0.0512585
0.0522947
0.0564295
0.0568222
0.048092
0.0337818
0.0198841
0.0120552
0.0172299
0.0269123
0.0329644
0.0359533
0.0349478
0.0315991
0.0284738
0.0262286
0.0250382
0.0249414
0.0256559
0.0259055
0.0258249
0.0257264
0.026032
0.0271261
0.0287131
0.0302506
0.0324455
0.0330053
0.0333574
0.0339409
0.0341705
0.0340117
0.033321
0.0321685
0.0311492
0.0302482
0.0289998
0.0290808
0.028912
0.0246774
0.0202071
0.0155262
0.00532951
-0.00364731
-0.0156474
-0.0259588
-0.0315348
-0.0425051
-0.0146101
0.113505
0.621009
2.32002
7.1368
16.9637
29.3688
38.2536
33.9543
17.8633
3.24014
1.85273
1.16189
0.394063
0.229808
0.199861
0.180153
0.205901
0.208017
0.230357
0.228662
0.241889
0.236154
0.228074
0.232118
0.226008
0.214707
0.208942
0.200021
0.189228
0.180114
0.168914
0.15912
0.1472
0.136022
0.126699
0.117551
0.108127
0.0972619
0.0845591
0.0696981
0.0525512
0.0322137
0.00992084
-0.00947749
-0.0278596
-0.0490362
-0.0732402
-0.100488
-0.130903
-0.163818
-0.203482
-0.262885
-0.330743
-0.402077
-0.481922
-0.561256
-0.64746
-0.751834
-0.894457
-1.03344
-1.16547
-1.31847
-1.49536
-1.64105
-1.73239
0.748139
1.25926
1.68916
1.57298
1.60956
1.65489
1.65021
1.61306
1.54158
1.43492
1.33098
1.20887
1.10723
0.997164
0.896713
0.799253
0.706479
0.628627
0.554725
0.487266
0.423331
0.370911
0.320062
0.274883
0.237782
0.203257
0.172139
0.142553
0.116464
0.0955153
0.0795354
0.0664208
0.0550191
0.0445315
0.0340631
0.0236933
0.0142882
0.00661226
0.000631624
-0.00430162
-0.00891521
-0.0134836
-0.0175978
-0.0211085
-0.0234809
-0.0247917
-0.0269539
-0.0290177
-0.030022
-0.0317422
-0.0320824
-0.0343758
-0.0350828
-0.0357494
-0.0371653
-0.0391099
-0.0401804
-0.0435858
-0.0470601
-0.0498678
-0.0542602
-0.0633062
-0.0683182
-0.0750371
-0.0846203
-0.0947947
-0.104787
-0.114243
-0.120408
-0.127351
-0.132299
-0.139438
-0.143654
-0.140333
-0.055541
0.151481
0.106798
0.0580695
-0.0272294
-0.0453633
-0.0478346
-0.023487
-0.0139307
0.00798412
0.0177922
0.0301237
0.0362894
0.044634
0.0480028
0.0561551
0.0582805
0.0579486
0.0572267
0.0547757
0.0524852
0.0530275
0.0512176
0.0475166
0.0437856
0.0406774
0.0383063
0.0361352
0.0333991
0.0305914
0.0281364
0.0261921
0.0247098
0.0235701
0.0227793
0.022304
0.0220803
0.022017
0.0221433
0.0224064
0.0227193
0.0232793
0.0239682
0.0247881
0.0255538
0.026357
0.0271587
0.0279419
0.0291865
0.0307103
0.0320587
0.0333439
0.0345193
0.0358999
0.0369901
0.0377851
0.0378774
0.0374042
0.0358389
0.0320518
0.0269678
0.0206427
0.011167
0.00162622
-0.0153175
-0.0332143
-0.0498406
-0.0709347
-0.0889762
-0.103989
-0.119729
-0.115037
-0.12265
-0.11106
0.00201572
0.0193355
0.083445
0.267607
0.163725
0.0750607
-0.0322088
-0.0610892
-0.0505506
-0.012271
0.0146447
0.0415808
0.0572111
0.073246
0.0804077
0.0829223
0.0766159
0.0718035
0.066719
0.0582227
0.0544335
0.0520291
0.0473708
0.0418172
0.0396252
0.0385865
0.0370086
0.0343207
0.0307043
0.0264583
0.0229168
0.021134
0.0205914
0.0206314
0.0207213
0.0207754
0.0206852
0.020509
0.0205146
0.0209196
0.0217628
0.0227972
0.0239727
0.0250753
0.0265003
0.027869
0.0294296
0.0310448
0.0331123
0.0350303
0.0365138
0.0377572
0.0379334
0.0364591
0.034043
0.0304114
0.0265088
0.0249487
0.0263848
0.0283896
0.0312151
0.0301119
0.0227872
0.0113336
-0.00346206
-0.0183134
-0.0326184
-0.0490128
-0.060015
-0.074049
-0.0832659
-0.0948167
-0.103701
-0.117286
-0.110976
-0.123584
0.0926663
0.0477987
0.29574
0.249995
0.216684
0.0502143
-0.0256192
-0.0403701
-0.0355406
-0.00285339
0.0218026
0.0514428
0.0681852
0.0756125
0.0693346
0.0640642
0.057688
0.0534298
0.0506004
0.0480273
0.0489205
0.0521326
0.0521431
0.0445024
0.0319691
0.0191982
0.0115747
0.0159898
0.0244867
0.0302833
0.0331483
0.0323494
0.0294741
0.0265997
0.0245319
0.0234068
0.0232613
0.023832
0.0240615
0.023944
0.0239212
0.0242539
0.0252469
0.0266313
0.0281128
0.0299789
0.0305052
0.0308493
0.0313099
0.031508
0.0313258
0.0306843
0.0296508
0.0286677
0.0277979
0.0267662
0.0266645
0.0261378
0.0223189
0.0181112
0.0136016
0.004441
-0.00415553
-0.0153441
-0.0252897
-0.0330143
-0.0496287
-0.060768
-0.0820322
-0.104976
-0.111359
-0.119118
-0.121094
-0.112768
-0.105487
0.113383
0.357439
0.279509
0.148383
0.084454
0.0991422
0.105086
0.137777
0.149522
0.18197
0.192517
0.211331
0.212427
0.223089
0.218737
0.212574
0.214713
0.209229
0.199446
0.193806
0.185484
0.17567
0.166982
0.156735
0.147536
0.136677
0.126336
0.117642
0.109014
0.100152
0.0900121
0.0781906
0.0644009
0.048509
0.0298111
0.00950617
-0.00858323
-0.02595
-0.0456856
-0.0681609
-0.0934549
-0.121752
-0.15273
-0.190272
-0.244746
-0.307072
-0.37323
-0.446835
-0.521028
-0.602128
-0.70005
-0.828833
-0.95707
-1.08105
-1.22252
-1.38036
-1.51156
-1.59247
0.72627
1.08323
1.40831
1.41657
1.46756
1.51013
1.51138
1.47935
1.4148
1.31981
1.2239
1.11378
1.01901
0.918677
0.826295
0.73668
0.651994
0.57968
0.511585
0.449406
0.390916
0.342073
0.295439
0.2539
0.219414
0.187563
0.158795
0.131661
0.107815
0.0885255
0.0736018
0.0613661
0.0507527
0.0410062
0.031347
0.0218696
0.0132929
0.00624601
0.000687363
-0.00393047
-0.00821032
-0.0124114
-0.0161747
-0.0193885
-0.0216145
-0.0229567
-0.0249654
-0.0268807
-0.0280436
-0.0299002
-0.029782
-0.0319196
-0.0331088
-0.0343806
-0.034742
-0.0362523
-0.038132
-0.0417901
-0.0441541
-0.0476534
-0.0514306
-0.0597067
-0.0647569
-0.0708928
-0.0794178
-0.0885736
-0.0977886
-0.106526
-0.112825
-0.119335
-0.124041
-0.129616
-0.132099
-0.128688
-0.132719
-0.127691
-0.113382
-0.101556
-0.0893689
-0.0721464
-0.0553232
-0.0275697
-0.013999
0.00562291
0.0159849
0.0270383
0.0334353
0.0406839
0.0444328
0.0511851
0.0533247
0.0532332
0.0525269
0.0504528
0.0485296
0.0486348
0.0469644
0.0437183
0.0403768
0.0375291
0.0352912
0.0332256
0.0307405
0.0282025
0.0259604
0.0241703
0.0227898
0.0217276
0.0210013
0.0205521
0.0203386
0.0202734
0.02038
0.0206087
0.0208962
0.0214011
0.0220112
0.0227396
0.0234284
0.0241399
0.0248639
0.0255791
0.0266915
0.0280039
0.0291855
0.030342
0.0313667
0.0325114
0.0334633
0.0340613
0.0340783
0.0334924
0.0318766
0.0284096
0.0236751
0.0176689
0.00914052
-0.000256695
-0.0153914
-0.0322073
-0.0479493
-0.0675529
-0.0858706
-0.102283
-0.118384
-0.127658
-0.137663
-0.141852
-0.134432
-0.132085
-0.136875
-0.11881
-0.115979
-0.109191
-0.102814
-0.0814649
-0.0533506
-0.0149428
0.0120076
0.0368384
0.0523934
0.0666954
0.073546
0.075726
0.0707069
0.0661988
0.0613036
0.0540492
0.0503091
0.0477757
0.0436065
0.0388346
0.0366725
0.0355262
0.0339897
0.031508
0.0282303
0.0244516
0.0213023
0.0196176
0.0190455
0.0190167
0.0190792
0.0190902
0.018875
0.0188594
0.0189099
0.0192932
0.0200567
0.0209813
0.0220556
0.0230588
0.0243638
0.025599
0.0270264
0.0285042
0.0303763
0.0320464
0.0333705
0.0343846
0.0344843
0.0331388
0.0308876
0.0276127
0.0242048
0.0227473
0.0240368
0.0256369
0.0282417
0.0267049
0.0202582
0.00925124
-0.00450579
-0.0185304
-0.031829
-0.0471641
-0.0582571
-0.0713544
-0.0822237
-0.0936352
-0.104981
-0.116529
-0.120553
-0.122208
-0.114758
-0.10937
-0.0916078
-0.079879
-0.0772698
-0.0785884
-0.0781782
-0.0605159
-0.0405549
-0.00693277
0.0189779
0.0462158
0.062299
0.0691019
0.0644279
0.0594724
0.0536919
0.0496294
0.0468442
0.0446498
0.0453913
0.047857
0.047513
0.0408162
0.0298575
0.0183551
0.0112832
0.0149232
0.0223065
0.0276244
0.0303595
0.0296839
0.0272252
0.024634
0.0227563
0.0216964
0.021529
0.0219661
0.022154
0.0220576
0.0220702
0.0223919
0.02331
0.0245177
0.0258691
0.0274823
0.0279341
0.0282551
0.0286255
0.0287375
0.0285258
0.0279796
0.0270798
0.0261359
0.0253065
0.024441
0.0242511
0.023539
0.0201085
0.0162517
0.011888
0.00349798
-0.0047709
-0.0150405
-0.0241006
-0.0316767
-0.046352
-0.058016
-0.0776852
-0.0982414
-0.105162
-0.111605
-0.110855
-0.101446
-0.0973518
-0.0917531
-0.0765106
-0.043431
-0.0212975
0.0102857
0.0553878
0.0798539
0.117596
0.136337
0.164753
0.178362
0.193616
0.196101
0.204776
0.201507
0.196733
0.197552
0.1926
0.184109
0.178664
0.170975
0.162062
0.153878
0.144538
0.135963
0.126103
0.116602
0.108536
0.100473
0.0922012
0.0827985
0.0718681
0.0591538
0.0445192
0.0274118
0.00899692
-0.00774916
-0.0240052
-0.0422799
-0.0630245
-0.0863661
-0.112535
-0.141464
-0.176656
-0.226386
-0.283358
-0.344323
-0.411847
-0.480737
-0.556399
-0.647418
-0.763558
-0.88116
-0.996506
-1.12626
-1.26695
-1.38447
-1.45595
0.698878
0.987642
1.25166
1.28893
1.3376
1.37516
1.37724
1.34803
1.28932
1.20529
1.11759
1.01865
0.931237
0.840277
0.755895
0.674114
0.597238
0.530669
0.468375
0.411477
0.358278
0.3132
0.270692
0.232759
0.200978
0.171804
0.145414
0.120698
0.0990295
0.0813922
0.0675881
0.0562699
0.0464709
0.0374879
0.0286435
0.0200468
0.0122618
0.00583655
0.000714725
-0.00356684
-0.0075062
-0.0113445
-0.0147675
-0.0176967
-0.0197712
-0.0211092
-0.0230248
-0.0247473
-0.025895
-0.0274163
-0.0276051
-0.0293903
-0.0306941
-0.0326232
-0.0323413
-0.0337023
-0.0362817
-0.0392185
-0.0408203
-0.0446392
-0.0479027
-0.0556204
-0.0604467
-0.0662865
-0.0739898
-0.0820946
-0.0904348
-0.0982013
-0.104366
-0.110738
-0.116171
-0.122372
-0.125465
-0.123659
-0.127082
-0.126681
-0.114153
-0.102126
-0.0869281
-0.0688152
-0.0510864
-0.0268996
-0.0130501
0.00415944
0.0144403
0.0242982
0.0305587
0.0368921
0.0407344
0.0463768
0.0484491
0.0485264
0.0478674
0.0461143
0.0444862
0.0443008
0.0427638
0.0399184
0.0369423
0.0343518
0.032266
0.0303286
0.0280821
0.0257998
0.0237665
0.0221324
0.020861
0.0198821
0.0192142
0.0187945
0.0185914
0.0185254
0.0186136
0.0188101
0.0190708
0.0195186
0.0200558
0.0206993
0.0213081
0.0219436
0.0225766
0.0232377
0.0242059
0.0253403
0.0263792
0.0273754
0.0282694
0.0292044
0.0299787
0.0303776
0.0302817
0.0295711
0.0278951
0.0245786
0.0201515
0.014454
0.00656905
-0.00237969
-0.0160571
-0.0316469
-0.0462411
-0.0642523
-0.0810403
-0.0965273
-0.111257
-0.121843
-0.132074
-0.135875
-0.132276
-0.132804
-0.134716
-0.133134
-0.124621
-0.114463
-0.100936
-0.077482
-0.0500668
-0.0155386
0.0102092
0.032758
0.0476212
0.0603242
0.0667333
0.0686525
0.0646483
0.0605134
0.0559127
0.0496898
0.0461059
0.0435537
0.039823
0.0357258
0.0336442
0.0324478
0.0309838
0.0287062
0.0257605
0.0224121
0.0196206
0.0180514
0.0174737
0.0173917
0.017433
0.0174122
0.01716
0.0172171
0.0173083
0.0176529
0.0183511
0.0191675
0.0201478
0.0210529
0.022236
0.0233382
0.0246442
0.0259681
0.0276516
0.0291009
0.0302705
0.031076
0.0310621
0.029817
0.0276181
0.0246685
0.021683
0.0203212
0.0213462
0.0226751
0.0247962
0.0231431
0.0172242
0.00698852
-0.00559444
-0.0186319
-0.0312255
-0.0451753
-0.0559697
-0.0678027
-0.0786115
-0.0893603
-0.100342
-0.110675
-0.115676
-0.117237
-0.114734
-0.109694
-0.10904
-0.0991283
-0.0943946
-0.0851982
-0.0776347
-0.0595172
-0.038973
-0.0082227
0.0169445
0.0415066
0.0564681
0.0626265
0.0591534
0.0546315
0.0494482
0.0456615
0.0430014
0.0411089
0.041689
0.0435526
0.0429545
0.0370803
0.027539
0.0173518
0.0109953
0.0139383
0.0202656
0.0250029
0.0275135
0.0269654
0.0248924
0.0225956
0.0209095
0.0199328
0.0197543
0.0200789
0.0202343
0.0201613
0.0202026
0.02051
0.0213406
0.0223948
0.0236182
0.024991
0.0253789
0.0256687
0.0259423
0.0259497
0.0257054
0.0251813
0.024306
0.0233784
0.0226363
0.0219101
0.0215717
0.0207049
0.0176574
0.0141004
0.00996328
0.00234443
-0.00544364
-0.0149334
-0.0232474
-0.0302908
-0.0428817
-0.0542699
-0.0720821
-0.0901021
-0.0963322
-0.105307
-0.112648
-0.111021
-0.108633
-0.104305
-0.0932764
-0.0597408
-0.0331235
0.00156137
0.0442345
0.071354
0.105447
0.124798
0.148988
0.164163
0.176616
0.179671
0.186806
0.184392
0.180645
0.180573
0.176087
0.168713
0.163527
0.156484
0.148415
0.140795
0.132323
0.124398
0.115487
0.106823
0.0993887
0.091926
0.0842702
0.0756175
0.065587
0.0539509
0.0405733
0.0250222
0.00841046
-0.00696499
-0.022032
-0.0388259
-0.0578359
-0.0792231
-0.103249
-0.130031
-0.16269
-0.207828
-0.259595
-0.315359
-0.376922
-0.440381
-0.510347
-0.594139
-0.698532
-0.805626
-0.9119
-1.02992
-1.15494
-1.25955
-1.32245
0.660304
0.895644
1.11732
1.16496
1.20942
1.24232
1.24446
1.21824
1.16538
1.09118
1.01181
0.923486
0.843789
0.761932
0.685516
0.611539
0.542262
0.481598
0.425095
0.37348
0.325452
0.284283
0.245835
0.21148
0.182478
0.155984
0.131995
0.109666
0.0901232
0.074134
0.0615003
0.0511346
0.0421742
0.0339736
0.0259491
0.0182055
0.0111985
0.00538986
0.00071669
-0.00321089
-0.00680383
-0.0102832
-0.0133756
-0.01603
-0.0179449
-0.0192551
-0.021139
-0.0226022
-0.0235772
-0.0245716
-0.0256681
-0.0269581
-0.0281162
-0.0300973
-0.030493
-0.0322338
-0.0338482
-0.0360991
-0.0379196
-0.0424574
-0.0447474
-0.0519483
-0.0562256
-0.0617889
-0.0687189
-0.0759274
-0.0833588
-0.0900747
-0.0956254
-0.101335
-0.106316
-0.111792
-0.114444
-0.113237
-0.116095
-0.115211
-0.104264
-0.0930943
-0.0790735
-0.0627313
-0.0461846
-0.0252046
-0.0118056
0.00324653
0.0130145
0.0217475
0.0276588
0.0332095
0.0369536
0.0416996
0.0436483
0.043837
0.0432459
0.0417684
0.0403825
0.0400178
0.0386106
0.036125
0.0334914
0.0311546
0.0292351
0.0274438
0.0254257
0.0233867
0.0215576
0.0200788
0.0189183
0.0180227
0.0174137
0.0170262
0.0168332
0.0167658
0.0168365
0.0169997
0.0172309
0.0176176
0.0180852
0.0186404
0.0191682
0.0197212
0.0202648
0.0208522
0.0216825
0.0226498
0.0235353
0.0243796
0.0251356
0.0258907
0.026472
0.0267451
0.0264991
0.0257241
0.023999
0.0208859
0.0167255
0.0113204
0.00415185
-0.00435236
-0.0165907
-0.0307063
-0.0443491
-0.0605443
-0.0758517
-0.0897967
-0.10325
-0.113287
-0.122563
-0.126225
-0.12382
-0.125103
-0.125219
-0.12402
-0.115875
-0.105918
-0.0927034
-0.0711651
-0.0456593
-0.0150223
0.00878194
0.0289671
0.0428138
0.0540645
0.0599783
0.0617003
0.0585057
0.054784
0.0505523
0.0452068
0.0418494
0.0393679
0.036055
0.0325275
0.0305707
0.029379
0.0279967
0.0259301
0.0233025
0.0203499
0.0178898
0.0164473
0.0158828
0.0157613
0.0157861
0.0157516
0.0157228
0.0155977
0.015701
0.0160052
0.0166318
0.0173497
0.0182241
0.0190349
0.0200852
0.0210663
0.02223
0.0234137
0.0248791
0.0261391
0.0271381
0.0277745
0.0276741
0.0264954
0.024413
0.0217328
0.0190866
0.0177712
0.0185812
0.0196645
0.0213433
0.0196429
0.0142293
0.0048532
-0.00661688
-0.0185446
-0.0302728
-0.0427117
-0.0530135
-0.0638283
-0.0738249
-0.0838272
-0.0941038
-0.103528
-0.109069
-0.109394
-0.108637
-0.105294
-0.102703
-0.0940278
-0.0885904
-0.0798355
-0.0719128
-0.0555953
-0.0359828
-0.00840134
0.0151038
0.0369435
0.0505783
0.0561598
0.0536339
0.0496181
0.0450305
0.0415535
0.0390795
0.0374402
0.0378815
0.0392541
0.0385042
0.0333703
0.0251005
0.0161895
0.0106071
0.0129516
0.0182747
0.0224484
0.0246743
0.0242754
0.0225322
0.0205266
0.0190276
0.0181348
0.0179573
0.0181928
0.0183355
0.0183019
0.0183375
0.0186343
0.0193634
0.0202759
0.0213719
0.0225157
0.0228365
0.0230692
0.0232464
0.0231866
0.0229131
0.0224022
0.0215562
0.0206789
0.0199852
0.0193199
0.0188789
0.0179707
0.0153273
0.0120399
0.00809067
0.00116378
-0.00610822
-0.0147772
-0.0223027
-0.0289245
-0.0398825
-0.0507369
-0.0665721
-0.0828024
-0.0906028
-0.0987109
-0.105518
-0.103011
-0.101658
-0.0969708
-0.0858107
-0.0564471
-0.0309594
0.000788138
0.0382251
0.0644579
0.0948588
0.112692
0.134451
0.148421
0.158735
0.163136
0.169115
0.167364
0.164382
0.16373
0.159669
0.153267
0.148399
0.142003
0.134737
0.127726
0.12009
0.112838
0.104835
0.0970005
0.0902087
0.0833726
0.076356
0.0684653
0.0593427
0.0487869
0.0366648
0.022646
0.00776131
-0.00622207
-0.0200358
-0.0353296
-0.0525996
-0.0720284
-0.0938961
-0.118444
-0.148422
-0.189093
-0.23578
-0.286344
-0.342036
-0.399956
-0.464016
-0.540351
-0.63368
-0.730395
-0.827272
-0.933614
-1.04415
-1.13658
-1.1916
0.612004
0.803666
0.990235
1.04144
1.08173
1.11115
1.11304
1.08961
1.04253
0.977443
0.906481
0.828329
0.756576
0.683622
0.615159
0.548948
0.48711
0.432466
0.38175
0.335417
0.29247
0.255315
0.220878
0.190079
0.163916
0.140108
0.118539
0.0985681
0.0811116
0.0667673
0.0553447
0.0459626
0.0378624
0.0304611
0.0232622
0.0163418
0.010106
0.00491081
0.000696262
-0.00286256
-0.00610404
-0.00922767
-0.0119967
-0.0143813
-0.0161341
-0.0173986
-0.0191792
-0.0203688
-0.021257
-0.0220076
-0.0236239
-0.0246415
-0.0258767
-0.0270838
-0.0291135
-0.0311284
-0.0320964
-0.0331243
-0.0351275
-0.0404422
-0.0425624
-0.0487461
-0.0521282
-0.0573957
-0.0634235
-0.0699147
-0.0763161
-0.0818596
-0.0866049
-0.0914267
-0.095728
-0.100247
-0.102315
-0.101361
-0.103842
-0.102629
-0.0932853
-0.0833011
-0.070688
-0.0562029
-0.0410602
-0.0229328
-0.0104853
0.0026063
0.0116286
0.0193186
0.0247511
0.029606
0.0331243
0.0371281
0.0389155
0.0391715
0.0386558
0.0374139
0.0362315
0.0357666
0.0344903
0.0323326
0.0300212
0.0279357
0.0261939
0.0245623
0.0227665
0.020961
0.0193331
0.0180096
0.0169619
0.0161516
0.0156025
0.0152521
0.0150708
0.0150038
0.0150587
0.0151897
0.0153921
0.0157175
0.0161184
0.0165861
0.0170314
0.0175026
0.0179519
0.0184593
0.0191452
0.019944
0.0206739
0.0213582
0.021957
0.0225285
0.0229209
0.023053
0.0226769
0.0218214
0.0200755
0.0171524
0.0132488
0.00817531
0.00162993
-0.0063237
-0.017262
-0.0296462
-0.0421285
-0.0563908
-0.0699034
-0.082389
-0.094208
-0.103327
-0.111567
-0.115049
-0.113564
-0.114676
-0.114124
-0.11243
-0.105168
-0.0958046
-0.0833297
-0.0638608
-0.0407748
-0.0140256
0.0074622
0.0253849
0.0380405
0.0479625
0.0533389
0.0548983
0.05235
0.0490449
0.0452309
0.0406407
0.037557
0.035214
0.0322914
0.0292595
0.0274587
0.0263077
0.0250239
0.0231701
0.0208468
0.0182644
0.0161115
0.0148053
0.0142671
0.0141221
0.0141292
0.0140809
0.0138553
0.0139524
0.0140687
0.0143389
0.0148944
0.0155173
0.0162876
0.0170027
0.0179201
0.0187795
0.0197935
0.0208319
0.0220824
0.0231448
0.0239732
0.0244376
0.0242531
0.0231167
0.0211754
0.0187524
0.0164109
0.0151622
0.01575
0.0165858
0.0177313
0.0160202
0.0110327
0.00257587
-0.00768847
-0.0184465
-0.0290309
-0.0400314
-0.0495189
-0.0591273
-0.0682494
-0.077268
-0.0865696
-0.0950831
-0.100697
-0.101323
-0.100907
-0.0980277
-0.0942344
-0.0864093
-0.0806946
-0.0727326
-0.0650196
-0.0505288
-0.0324548
-0.00812221
0.0132445
0.0324779
0.0447567
0.04982
0.0480258
0.0445364
0.0405168
0.0373738
0.0351178
0.0337105
0.0340329
0.0350219
0.0341886
0.0297232
0.0225891
0.0148871
0.0100515
0.0119125
0.0163241
0.0199754
0.021897
0.0216317
0.0201618
0.0184313
0.0171096
0.016304
0.0161307
0.0162956
0.0164091
0.0163796
0.0164339
0.0167053
0.0173459
0.0181235
0.019063
0.0200065
0.0202459
0.0204028
0.0204892
0.0203664
0.0200655
0.0195633
0.0187762
0.0179617
0.0173072
0.016679
0.0162069
0.0152844
0.0128842
0.00984319
0.00615192
-3.97986e-05
-0.00669646
-0.014578
-0.0211244
-0.027072
-0.036498
-0.046544
-0.0606774
-0.0747015
-0.0821322
-0.0894937
-0.0952391
-0.0934647
-0.0918337
-0.0869845
-0.0759952
-0.0507132
-0.027244
0.000522311
0.0327981
0.0577433
0.0842252
0.10165
0.120455
0.131634
0.140243
0.146602
0.151663
0.150412
0.148004
0.146996
0.143335
0.137787
0.133283
0.127532
0.121037
0.114667
0.107841
0.101281
0.0941527
0.0871404
0.0810011
0.0748126
0.0684559
0.0613384
0.0531308
0.0436568
0.0327894
0.0202795
0.00706127
-0.00551317
-0.0180209
-0.0317965
-0.0473203
-0.0647853
-0.0844777
-0.106715
-0.133894
-0.170203
-0.211911
-0.257282
-0.307176
-0.359453
-0.417421
-0.486163
-0.568951
-0.655412
-0.742657
-0.837442
-0.934439
-1.01536
-1.06308
0.555789
0.711285
0.867192
0.918477
0.954765
0.980912
0.98268
0.961942
0.920589
0.864087
0.801547
0.733201
0.669557
0.605348
0.544824
0.486337
0.431812
0.383275
0.338343
0.29729
0.259354
0.226294
0.195833
0.168573
0.145296
0.12418
0.105046
0.0874092
0.0720076
0.0593066
0.0491278
0.040757
0.0335368
0.0269504
0.0205788
0.0144674
0.00899019
0.00440468
0.000656742
-0.00252137
-0.00540703
-0.00817728
-0.0106295
-0.0127494
-0.0143348
-0.0155344
-0.0171505
-0.0182106
-0.0190971
-0.0198995
-0.0213887
-0.0223297
-0.0233152
-0.024396
-0.0277006
-0.0290763
-0.0301331
-0.030871
-0.0323205
-0.0378295
-0.040653
-0.0447097
-0.0477871
-0.0524116
-0.0579062
-0.0639085
-0.0693018
-0.0738653
-0.0777594
-0.0815403
-0.0850495
-0.0886085
-0.0900921
-0.0890427
-0.091105
-0.0898062
-0.0820192
-0.0733149
-0.0622067
-0.0496567
-0.0360197
-0.0206771
-0.00920411
0.00212634
0.0102798
0.0169802
0.0218471
0.0260625
0.0292703
0.032638
0.0342417
0.0345297
0.034087
0.033048
0.0320405
0.0315345
0.0303932
0.0285388
0.0265314
0.0246968
0.0231421
0.0216812
0.0201038
0.0185243
0.0170952
0.0159285
0.0149994
0.014287
0.0137906
0.0134754
0.0133075
0.0132404
0.0132785
0.0133807
0.0135499
0.0138178
0.0141506
0.0145375
0.0149014
0.0152913
0.0156494
0.0160703
0.0166192
0.0172575
0.0178357
0.0183601
0.0188019
0.0192033
0.0194153
0.0194042
0.0189004
0.0179597
0.0162
0.0134355
0.00976638
0.00504762
-0.00089972
-0.00825774
-0.0179421
-0.0288527
-0.0399448
-0.0523116
-0.0639473
-0.0747282
-0.084852
-0.0927766
-0.0997794
-0.102854
-0.101881
-0.102585
-0.101803
-0.0998467
-0.0934304
-0.0848552
-0.073469
-0.0562087
-0.0358227
-0.0127569
0.00626669
0.022005
0.0333476
0.0420083
0.0468083
0.0482045
0.046179
0.0432905
0.0399111
0.0359923
0.0332165
0.031062
0.0285078
0.0259255
0.024302
0.0232236
0.0220581
0.0204188
0.0183906
0.0161579
0.0142941
0.0131314
0.0126325
0.0124773
0.012474
0.0124208
0.0123395
0.0123165
0.0124325
0.0126661
0.0131522
0.013685
0.0143529
0.014971
0.0157585
0.0164932
0.0173644
0.0182519
0.0192999
0.0201705
0.0208287
0.0211294
0.0208509
0.0197759
0.0179632
0.0157603
0.0136794
0.0124832
0.0128572
0.0134521
0.0141247
0.0124053
0.00779455
0.000258793
-0.00885967
-0.0183757
-0.0277758
-0.0373746
-0.0458353
-0.0542029
-0.0622527
-0.0701736
-0.0783203
-0.0858281
-0.0910705
-0.0919509
-0.0916621
-0.0887801
-0.0846774
-0.0776045
-0.0719673
-0.0648251
-0.0576279
-0.0449366
-0.028703
-0.00754763
0.0114544
0.0282108
0.0390888
0.0436116
0.0423675
0.0393822
0.0359046
0.0331288
0.0311023
0.0299003
0.0301187
0.0308141
0.0299671
0.0261109
0.0200165
0.0134165
0.00933425
0.0107696
0.014393
0.0175309
0.0191777
0.0190022
0.0177806
0.0163029
0.0151544
0.0144443
0.0142773
0.0143924
0.0144854
0.0144688
0.0145257
0.0147691
0.0153203
0.0159761
0.016769
0.01752
0.0176823
0.0177614
0.0177549
0.0175732
0.0172415
0.0167418
0.0159951
0.0152268
0.0145892
0.0139755
0.0134603
0.0125132
0.0103303
0.00756734
0.00414415
-0.00137889
-0.00737655
-0.014446
-0.0201469
-0.0253835
-0.0333726
-0.042318
-0.0544896
-0.0663886
-0.0731152
-0.0794577
-0.0840614
-0.0835781
-0.0810552
-0.0761897
-0.0657312
-0.0444714
-0.0234026
0.00104944
0.0285785
0.0518269
0.0745343
0.0912567
0.106107
0.115818
0.124153
0.130143
0.134402
0.133511
0.131536
0.130336
0.127058
0.122271
0.118174
0.11306
0.107315
0.10161
0.0955756
0.0897225
0.0834438
0.0772454
0.0717699
0.066246
0.0605671
0.0542334
0.0469471
0.0385562
0.0289423
0.0179209
0.00632036
-0.00483204
-0.0159908
-0.0282313
-0.0420022
-0.0574973
-0.0749977
-0.0948595
-0.119145
-0.151176
-0.187991
-0.228179
-0.27233
-0.318879
-0.3706
-0.431657
-0.504309
-0.58063
-0.65808
-0.741455
-0.82568
-0.895668
-0.936558
0.493168
0.618458
0.74752
0.796057
0.828412
0.851485
0.853269
0.835118
0.799426
0.751093
0.696956
0.638122
0.582701
0.527115
0.474515
0.423709
0.376399
0.33403
0.29488
0.259107
0.226128
0.197223
0.170712
0.146977
0.126625
0.108208
0.0915192
0.0761965
0.0628253
0.0517664
0.0428571
0.0355206
0.0291971
0.023438
0.0178918
0.0125851
0.00785018
0.00387237
0.000598657
-0.00218803
-0.0047134
-0.00713192
-0.0092722
-0.0111336
-0.0125472
-0.0136562
-0.0151642
-0.016211
-0.0168786
-0.0177115
-0.018936
-0.0199864
-0.0208217
-0.0224824
-0.0256571
-0.026142
-0.0274536
-0.0284469
-0.0301585
-0.0351824
-0.0385819
-0.039752
-0.043754
-0.0472519
-0.052517
-0.0578464
-0.062286
-0.0659357
-0.0689558
-0.0717511
-0.0744442
-0.0770696
-0.0779672
-0.0766942
-0.0783363
-0.0770848
-0.0706929
-0.0632807
-0.0537187
-0.0431831
-0.0311164
-0.0184492
-0.00796114
0.001751
0.0089748
0.0147164
0.0189584
0.022566
0.0254052
0.0282102
0.0296147
0.0299065
0.0295329
0.0286753
0.0278255
0.0273237
0.0263223
0.0247479
0.0230304
0.0214445
0.0200839
0.0188027
0.0174386
0.0160793
0.0148454
0.013835
0.0130254
0.0124082
0.0119658
0.0116871
0.0115324
0.0114652
0.011486
0.0115592
0.011693
0.011902
0.0121672
0.0124723
0.0127548
0.0130604
0.0133271
0.0136551
0.0140685
0.0145513
0.0149783
0.0153462
0.0156297
0.0158592
0.0158986
0.0157439
0.0151222
0.0141087
0.0123509
0.00973692
0.00630327
0.00196299
-0.00343304
-0.0100745
-0.0184902
-0.0279636
-0.0375847
-0.0481166
-0.0578374
-0.0668764
-0.0752635
-0.0818744
-0.0875752
-0.0900505
-0.0892745
-0.0896488
-0.0887172
-0.0867537
-0.0811604
-0.0735656
-0.0635164
-0.0484986
-0.0308981
-0.0113081
0.00519106
0.0187701
0.0287204
0.0361698
0.0403721
0.0416053
0.0400091
0.037533
0.0345987
0.0312909
0.0288492
0.0269213
0.0247279
0.0225528
0.0211229
0.0201444
0.0191062
0.017683
0.0159419
0.0140383
0.0124492
0.0114337
0.0109844
0.0108281
0.0108179
0.0107635
0.0108427
0.0106802
0.0107875
0.0109846
0.0113992
0.0118437
0.0124064
0.0129243
0.0135801
0.0141911
0.0149156
0.0156495
0.0164961
0.0171802
0.0176689
0.0178304
0.0174755
0.0164246
0.014756
0.0127648
0.010907
0.00980166
0.0100006
0.0103334
0.0106455
0.00889837
0.00468943
-0.00192869
-0.00991974
-0.0182135
-0.0264057
-0.0345656
-0.0418714
-0.0489868
-0.0558317
-0.0626088
-0.0695102
-0.0758881
-0.0804688
-0.0813746
-0.0810981
-0.0782976
-0.0742921
-0.0680367
-0.0627944
-0.0565265
-0.0500313
-0.0390602
-0.0248344
-0.00675178
0.0097555
0.0241242
0.0335424
0.037514
0.0366852
0.0341791
0.0312234
0.0288111
0.0270407
0.0260223
0.0261634
0.0266369
0.0258193
0.022541
0.0174035
0.0118338
0.00843925
0.00953565
0.0124765
0.0151172
0.0165122
0.0164037
0.015402
0.0141606
0.0131794
0.0125637
0.0124098
0.0124872
0.0125626
0.0125706
0.0126133
0.0128238
0.0132834
0.0138205
0.0144661
0.0150419
0.0151219
0.0151186
0.0150326
0.0147995
0.0144445
0.0139509
0.0132409
0.0125183
0.0119041
0.0113227
0.0107784
0.00989155
0.00800777
0.00561587
0.00251398
-0.00252208
-0.0078928
-0.0141881
-0.0189865
-0.0233779
-0.0299816
-0.0377868
-0.0480645
-0.0579598
-0.0638169
-0.0690886
-0.0727569
-0.0727328
-0.0699908
-0.0652966
-0.055804
-0.03782
-0.0193549
0.00237717
0.0254946
0.0459524
0.0653946
0.0803403
0.0925614
0.100692
0.108663
0.113804
0.117327
0.116673
0.115028
0.113751
0.110846
0.106744
0.103084
0.0986012
0.093585
0.0885607
0.0833026
0.0781673
0.0727169
0.0673233
0.062521
0.0576744
0.0526882
0.0471473
0.0407875
0.0334803
0.0251187
0.0155723
0.00554607
-0.00417401
-0.0139486
-0.0246389
-0.0366502
-0.0501686
-0.0654607
-0.0828905
-0.104207
-0.132031
-0.164021
-0.199037
-0.237489
-0.278238
-0.323585
-0.376899
-0.439728
-0.506014
-0.573559
-0.645676
-0.717754
-0.77732
-0.811764
0.425392
0.52512
0.630345
0.674165
0.702563
0.72274
0.724685
0.709005
0.678906
0.638426
0.592647
0.54309
0.495969
0.448908
0.404217
0.361053
0.320883
0.284728
0.251361
0.220864
0.192803
0.168097
0.145517
0.125296
0.107899
0.0921894
0.077955
0.0649293
0.0535703
0.0441542
0.0365366
0.0302563
0.0248459
0.019927
0.0152065
0.0106992
0.00670287
0.00332697
0.000531712
-0.00185695
-0.00402058
-0.00609061
-0.00792409
-0.00952749
-0.0107667
-0.0117594
-0.0131539
-0.0141254
-0.0146731
-0.0154019
-0.0165063
-0.017579
-0.0188401
-0.0205262
-0.0229483
-0.0234882
-0.0248655
-0.0253881
-0.0283874
-0.0315848
-0.0355734
-0.0355342
-0.0394393
-0.042734
-0.0472913
-0.0520873
-0.0554963
-0.0581324
-0.0602125
-0.062106
-0.063947
-0.0656404
-0.0659629
-0.0644328
-0.0657505
-0.0645647
-0.0593118
-0.0531019
-0.0450273
-0.0363626
-0.0261799
-0.0157952
-0.00672637
0.00144605
0.00770691
0.0124427
0.016061
0.0191002
0.0215346
0.0238301
0.0250253
0.0253009
0.0249938
0.0243
0.0235961
0.0231293
0.0222707
0.0209572
0.0195195
0.0181797
0.0170175
0.0159232
0.0147691
0.0136253
0.0125836
0.0117286
0.011038
0.0105034
0.0101245
0.00988595
0.00974583
0.00967854
0.00968192
0.00972589
0.00982087
0.00997131
0.0101668
0.0103895
0.0105876
0.0108049
0.0109781
0.0112054
0.0114823
0.011809
0.0120815
0.0122886
0.0124138
0.012472
0.0123439
0.0120497
0.0113237
0.0102521
0.00851226
0.00605367
0.00287347
-0.00107979
-0.00592499
-0.011844
-0.0190556
-0.0271218
-0.0351364
-0.0438754
-0.0516572
-0.0589324
-0.0655318
-0.07075
-0.0750968
-0.0768438
-0.0760856
-0.0762035
-0.0752429
-0.073435
-0.0686824
-0.0621766
-0.0535969
-0.0408101
-0.0260286
-0.00973732
0.00421628
0.0156646
0.0241647
0.0304431
0.0340332
0.0350998
0.0338542
0.0317807
0.0292965
0.0265528
0.0244638
0.0227918
0.0209487
0.0191488
0.0179233
0.0170634
0.0161624
0.0149562
0.013495
0.0119047
0.010578
0.00971334
0.00932132
0.00917318
0.00915804
0.00909771
0.00911553
0.00902089
0.00912504
0.00928851
0.00962959
0.00998907
0.0104437
0.0108614
0.0113838
0.01187
0.0124424
0.0130176
0.0136627
0.014161
0.01448
0.0145042
0.0140785
0.0130609
0.0115063
0.00972643
0.00807344
0.00704324
0.00709612
0.00715294
0.00715064
0.0053865
0.00160729
-0.00415585
-0.0110297
-0.0180679
-0.0249781
-0.0317218
-0.0377878
-0.0435936
-0.0491909
-0.0547198
-0.0603159
-0.0654624
-0.069154
-0.0698905
-0.0695714
-0.066989
-0.0633724
-0.0580134
-0.0533788
-0.0480129
-0.0423452
-0.0330535
-0.0209359
-0.00582551
0.00812526
0.0201703
0.0281312
0.0315459
0.0310164
0.0289617
0.0265006
0.024455
0.0229468
0.0220989
0.0221857
0.0225025
0.0217499
0.0190194
0.0147677
0.0101632
0.00739365
0.00822825
0.0105706
0.0127383
0.0138951
0.0138373
0.0130275
0.0120072
0.0111862
0.0106634
0.0105263
0.0105759
0.0106354
0.0106285
0.010677
0.0108567
0.0112259
0.0116498
0.0121517
0.0125596
0.0125574
0.0124747
0.0123139
0.012032
0.0116491
0.0111561
0.0104792
0.00980031
0.00920481
0.0086303
0.00805198
0.007205
0.00557394
0.00350265
0.000683021
-0.00393578
-0.00855935
-0.0140585
-0.0178757
-0.0213907
-0.0267254
-0.0332662
-0.0416664
-0.049624
-0.054411
-0.0587117
-0.0615329
-0.0615539
-0.0589089
-0.0546524
-0.0464654
-0.0313164
-0.0154864
0.00304154
0.0222098
0.0395527
0.0562689
0.0691614
0.0797107
0.0868654
0.0922985
0.0976784
0.100385
0.099853
0.0984605
0.0971891
0.0946501
0.0911776
0.0879792
0.0841225
0.0798243
0.0754945
0.071003
0.0665967
0.0619609
0.0573671
0.0532494
0.0490934
0.044814
0.0400757
0.0346479
0.0284256
0.0213155
0.0132317
0.00474727
-0.003533
-0.0118955
-0.0210224
-0.0312677
-0.0428033
-0.0558724
-0.0708232
-0.0891114
-0.112785
-0.140008
-0.169861
-0.202646
-0.237537
-0.276409
-0.321944
-0.37519
-0.431534
-0.489104
-0.550112
-0.61055
-0.660125
-0.688423
0.353517
0.431273
0.515059
0.552831
0.576943
0.593637
0.596798
0.583487
0.558935
0.52608
0.488609
0.448142
0.409373
0.370752
0.333954
0.298397
0.265309
0.2354
0.207814
0.182593
0.15942
0.138946
0.120284
0.10357
0.089152
0.0761537
0.0643791
0.053635
0.044272
0.0364969
0.0301846
0.0249732
0.0204839
0.0164096
0.0125117
0.00879636
0.00551632
0.00274536
0.000435882
-0.00154501
-0.00333974
-0.00505721
-0.00658201
-0.00792586
-0.0089843
-0.00987238
-0.0111342
-0.0119518
-0.0125271
-0.0132806
-0.0143692
-0.0154099
-0.0167779
-0.0181561
-0.0204418
-0.0211238
-0.0223171
-0.0228807
-0.0266297
-0.0279826
-0.0316632
-0.0327821
-0.0352184
-0.0384063
-0.0420395
-0.0462488
-0.0487305
-0.0504664
-0.0515164
-0.0525369
-0.0535185
-0.0543151
-0.0540983
-0.0525774
-0.053538
-0.0523903
-0.0480732
-0.0429561
-0.0363312
-0.0292986
-0.0212011
-0.0128103
-0.00544073
0.00123806
0.00636207
0.010176
0.013174
0.0156662
0.0176641
0.0194869
0.0204659
0.0207078
0.0204631
0.0199153
0.0193457
0.0189366
0.0182237
0.0171611
0.0159938
0.0148993
0.0139403
0.0130377
0.0120938
0.0111604
0.0103107
0.00960841
0.00903921
0.00853255
0.00826006
0.00806953
0.00795
0.00788569
0.00787323
0.00789119
0.00794662
0.00804289
0.00816873
0.00831347
0.0084282
0.00855668
0.00863754
0.00875916
0.00890378
0.00907526
0.00919009
0.00923198
0.00919356
0.0090757
0.00877835
0.00833046
0.0074904
0.00634561
0.00462077
0.0023032
-0.000615088
-0.00417277
-0.00845234
-0.0135667
-0.019557
-0.0262103
-0.0326227
-0.0394847
-0.0454179
-0.0509265
-0.0557733
-0.0595512
-0.0625039
-0.0634344
-0.0625359
-0.0624501
-0.0615703
-0.0600149
-0.056121
-0.0507633
-0.0437378
-0.0332142
-0.0212072
-0.00806681
0.00333604
0.0126805
0.019682
0.0248079
0.0277688
0.028658
0.0277038
0.0260226
0.0239896
0.0217775
0.0200534
0.01866
0.0171594
0.0157126
0.0147004
0.013975
0.0132225
0.0122341
0.011046
0.00975826
0.00868449
0.00797341
0.00764478
0.00751273
0.00749512
0.00742744
0.00721845
0.00734715
0.00745383
0.0075844
0.00785541
0.00813336
0.00848254
0.00879997
0.009193
0.00955319
0.00997447
0.0103881
0.0108352
0.0111481
0.0112955
0.0111655
0.0106651
0.00967197
0.00823221
0.00664125
0.00517016
0.00418671
0.00405882
0.00387997
0.00360082
0.00184739
-0.00150505
-0.0064248
-0.0121297
-0.0179068
-0.0234888
-0.0288268
-0.0335965
-0.0380679
-0.0423718
-0.0466057
-0.050855
-0.0547109
-0.0573794
-0.0577756
-0.0574083
-0.0551631
-0.0521033
-0.0476961
-0.0438011
-0.0393693
-0.0346212
-0.0270089
-0.0170522
-0.00481826
0.00655812
0.0163468
0.0228526
0.0256865
0.0253629
0.023729
0.0217413
0.0200652
0.0188256
0.0181386
0.0181867
0.0183867
0.0177365
0.0155275
0.0121103
0.00841561
0.00622202
0.00684028
0.00865811
0.0103867
0.0113215
0.011294
0.0106584
0.00984225
0.00917774
0.00874907
0.00863178
0.00866179
0.00870704
0.0086736
0.00872734
0.00887248
0.00915411
0.00946695
0.00982951
0.0100829
0.0100035
0.00984339
0.00961607
0.0092935
0.00888704
0.00840001
0.00776369
0.00713403
0.00654799
0.00596723
0.00537132
0.00456721
0.00311831
0.00128912
-0.00129074
-0.00543761
-0.009345
-0.01382
-0.0165871
-0.0192326
-0.02336
-0.0287239
-0.0353039
-0.0413783
-0.0450331
-0.0483979
-0.0503965
-0.0501522
-0.047967
-0.0442677
-0.0373889
-0.0251234
-0.0119038
0.00336921
0.0189299
0.0330609
0.0472956
0.0580202
0.066779
0.0730094
0.0775282
0.0818472
0.0835041
0.0830561
0.0818932
0.0806926
0.0785189
0.0756364
0.0729204
0.0696848
0.0660927
0.0624631
0.0587277
0.055054
0.0512172
0.0474131
0.0439837
0.0405209
0.036954
0.0330226
0.0285276
0.0233878
0.0175262
0.0108889
0.0039219
-0.00291125
-0.00983865
-0.0173898
-0.0258627
-0.0354083
-0.0462398
-0.0586713
-0.0738839
-0.093451
-0.115956
-0.140655
-0.167797
-0.196781
-0.229101
-0.266836
-0.310685
-0.357166
-0.404719
-0.454754
-0.503964
-0.543902
-0.566277
0.278447
0.336955
0.401165
0.432002
0.451672
0.464329
0.468529
0.458351
0.439305
0.413889
0.384668
0.353145
0.322764
0.292528
0.263611
0.235644
0.209603
0.185963
0.164163
0.144217
0.125909
0.10969
0.094938
0.0817254
0.0703084
0.0600306
0.0507247
0.0422555
0.0348826
0.0287553
0.0237682
0.0196486
0.0161021
0.0128934
0.00982869
0.00690811
0.00437953
0.00220049
0.000378176
-0.0011952
-0.00262791
-0.00400686
-0.00524157
-0.0063476
-0.00724563
-0.00803299
-0.00913115
-0.00985954
-0.0103844
-0.0112205
-0.0120588
-0.0130473
-0.0141757
-0.0155928
-0.0173933
-0.0184784
-0.0195988
-0.0205426
-0.0239281
-0.0248804
-0.0276526
-0.0296075
-0.0311213
-0.0337518
-0.0366471
-0.0394288
-0.0413337
-0.0424176
-0.0427527
-0.0429951
-0.0431353
-0.0430766
-0.0423607
-0.041283
-0.041691
-0.0406216
-0.0371884
-0.0331153
-0.0279205
-0.0223967
-0.0162349
-0.0097767
-0.00407467
0.00114844
0.0048859
0.00796783
0.0103102
0.012238
0.0137844
0.0151631
0.015919
0.0161115
0.0159214
0.015507
0.0150636
0.0147302
0.0141716
0.0133544
0.0124494
0.0116003
0.0108512
0.0101438
0.00941182
0.00868654
0.00802842
0.00748116
0.00703858
0.0065968
0.00640918
0.00626386
0.00616534
0.00610523
0.00608079
0.0060749
0.00609537
0.00613993
0.00620444
0.00627406
0.0063141
0.00635763
0.00635304
0.00637239
0.00639357
0.00641783
0.0063813
0.00626559
0.00606501
0.00577047
0.00530957
0.00470074
0.00374403
0.00251419
0.000793789
-0.0014061
-0.00409715
-0.00728121
-0.0110132
-0.0153334
-0.0201845
-0.0254352
-0.0302228
-0.0351808
-0.0392435
-0.0429528
-0.0460545
-0.0483471
-0.0499169
-0.0499722
-0.0488198
-0.0485528
-0.0478182
-0.0465698
-0.0435458
-0.0393763
-0.033908
-0.0257188
-0.0164301
-0.00632518
0.00252436
0.00978175
0.0152548
0.0192383
0.0215548
0.0222573
0.0215546
0.0202536
0.0186723
0.0169701
0.0156191
0.0145197
0.013355
0.0122449
0.0114518
0.010876
0.0102834
0.00951217
0.00859231
0.00759965
0.00677149
0.00621623
0.00595555
0.00584662
0.00582958
0.00576199
0.00536202
0.0056804
0.00578355
0.00588346
0.0060858
0.0062866
0.00653557
0.00675514
0.00702463
0.00726215
0.00754064
0.00780008
0.00806278
0.00819844
0.00818
0.00791715
0.00734225
0.00634943
0.00502757
0.00360552
0.0022965
0.00134929
0.00103837
0.000621499
6.5722e-05
-0.00169688
-0.00466858
-0.00878476
-0.0133697
-0.0178898
-0.022109
-0.0260095
-0.0294306
-0.032525
-0.0354883
-0.0383773
-0.0412372
-0.0437521
-0.0453167
-0.0452596
-0.0448541
-0.0430322
-0.0406183
-0.0371907
-0.0341117
-0.0306437
-0.0268855
-0.0209544
-0.0131875
-0.00376109
0.00505286
0.0126233
0.0176773
0.0199069
0.0197233
0.0184815
0.0169501
0.0156431
0.014676
0.0141474
0.0141689
0.0142889
0.0137626
0.0120592
0.00943665
0.00660753
0.00494594
0.00538858
0.00674225
0.00805589
0.00877303
0.00876667
0.00828618
0.00766387
0.00715092
0.00681908
0.0067247
0.00674235
0.00677479
0.00670784
0.0067729
0.00688264
0.00708009
0.00728659
0.00751221
0.00762019
0.00746494
0.00722837
0.00694
0.00658047
0.00616013
0.00568686
0.0050966
0.00452405
0.00396277
0.00339219
0.00278499
0.0020008
0.000659658
-0.00103575
-0.00338912
-0.00675325
-0.00986264
-0.013132
-0.0151522
-0.0170219
-0.0199674
-0.0239225
-0.0287664
-0.0332262
-0.0358972
-0.0381967
-0.0393765
-0.0395121
-0.0375429
-0.0344496
-0.0288004
-0.0191459
-0.00857215
0.00350538
0.0155827
0.0263841
0.0381248
0.0466773
0.0536516
0.0578239
0.0628121
0.0655019
0.0663356
0.0660065
0.0650788
0.0640109
0.0622181
0.0599061
0.0576896
0.0550874
0.0522134
0.0493046
0.0463309
0.0434041
0.0403697
0.0373625
0.0346407
0.0318943
0.0290681
0.0259579
0.0224065
0.0183588
0.0137515
0.00854992
0.00309737
-0.00228479
-0.00776
-0.0137272
-0.0204248
-0.0279781
-0.0365644
-0.0464501
-0.0585584
-0.0740621
-0.0918798
-0.111426
-0.132945
-0.155984
-0.181688
-0.211612
-0.246201
-0.282883
-0.320396
-0.359571
-0.397905
-0.428483
-0.445009
0.200975
0.242241
0.288289
0.311615
0.326576
0.335972
0.338842
0.333287
0.320075
0.302099
0.281136
0.258397
0.236302
0.214284
0.193182
0.172757
0.153726
0.136404
0.120421
0.105798
0.0923851
0.0804729
0.0696514
0.059956
0.0515635
0.0440143
0.0371803
0.0309745
0.0255765
0.0210848
0.0174189
0.0143826
0.0117634
0.00939103
0.00713019
0.00499383
0.00310514
0.00151874
0.00017633
-0.000988961
-0.0020525
-0.00307825
-0.00400103
-0.00483508
-0.00552674
-0.006136
-0.00693155
-0.00765866
-0.00814362
-0.00889305
-0.00938561
-0.0102052
-0.0112156
-0.0125577
-0.0138359
-0.01529
-0.0164897
-0.0176113
-0.0202901
-0.0215481
-0.0237758
-0.0255674
-0.0269089
-0.0290609
-0.0312533
-0.0326487
-0.0337898
-0.034103
-0.0340859
-0.033554
-0.0328357
-0.031917
-0.0307141
-0.029273
-0.0297987
-0.028929
-0.0264035
-0.0234054
-0.0196473
-0.0156704
-0.0113105
-0.00674923
-0.00268689
0.000999004
0.00347091
0.00577513
0.00745839
0.00881239
0.00989911
0.0108549
0.011383
0.0115157
0.0113719
0.0110826
0.0107617
0.0105168
0.0101195
0.00954189
0.00889463
0.00829024
0.00775534
0.00724639
0.00672585
0.00620788
0.00574005
0.00534958
0.00503927
0.00471359
0.00458319
0.00447654
0.00439743
0.00434077
0.00430393
0.00427433
0.00425903
0.00425224
0.00425506
0.00425047
0.0042165
0.00417608
0.00408557
0.004005
0.00390506
0.00378929
0.00360796
0.00334449
0.00299197
0.00254024
0.00193435
0.00118814
0.000134483
-0.0011589
-0.0028623
-0.00494649
-0.00741758
-0.0102585
-0.0134655
-0.0170307
-0.0208448
-0.0247357
-0.0280452
-0.031178
-0.0333814
-0.0352092
-0.0364901
-0.037243
-0.0374104
-0.0365268
-0.0350415
-0.0346339
-0.0340843
-0.0331755
-0.0310216
-0.0280464
-0.0241253
-0.0182966
-0.0117004
-0.00457744
0.00176017
0.00693792
0.0108619
0.0137086
0.0153729
0.0158801
0.0154008
0.0144722
0.0133428
0.0121368
0.0111655
0.010373
0.0095405
0.00875446
0.00818542
0.00777027
0.00734427
0.00679106
0.00613671
0.00543273
0.00484489
0.00444741
0.00425788
0.00417772
0.00416402
0.00411338
0.00380608
0.0040485
0.00412832
0.00419721
0.00433017
0.00445545
0.00460726
0.00472815
0.00487521
0.00499048
0.00512661
0.00523378
0.0053204
0.00528629
0.00511151
0.00473742
0.00409338
0.0031293
0.00190015
0.000632275
-0.000520913
-0.00141951
-0.00186331
-0.00247874
-0.00326536
-0.005043
-0.00765337
-0.0110472
-0.0145576
-0.0178849
-0.0207714
-0.0232955
-0.0253632
-0.0270799
-0.0286839
-0.0301741
-0.0315833
-0.0327191
-0.0331192
-0.0325139
-0.0320941
-0.0307446
-0.0290255
-0.0265878
-0.0243701
-0.0218792
-0.0191644
-0.0149192
-0.00938139
-0.00268639
0.00358703
0.00896955
0.0125746
0.0141842
0.014084
0.0132106
0.0121227
0.0111912
0.0104935
0.0101185
0.0101254
0.0101987
0.00981392
0.00860663
0.00675074
0.00475279
0.00358709
0.00388348
0.00481724
0.00573545
0.00624161
0.00624957
0.00591221
0.00547601
0.00511193
0.00487645
0.00480754
0.00481899
0.00484627
0.00477686
0.00483875
0.00491314
0.00503063
0.00513564
0.00522657
0.00519702
0.00495171
0.00461972
0.00425294
0.00384175
0.00339387
0.00291846
0.00235909
0.00182702
0.00128582
0.00071807
7.56558e-05
-0.000723613
-0.0019667
-0.00350628
-0.00554539
-0.00786561
-0.0101595
-0.0123129
-0.0137907
-0.0148214
-0.0165554
-0.0189742
-0.0221106
-0.0250848
-0.0267306
-0.0279459
-0.0283885
-0.0281223
-0.0268314
-0.0244891
-0.0202077
-0.0130586
-0.00515532
0.00381381
0.0127349
0.0204595
0.0286319
0.0348592
0.0401221
0.0430614
0.0462619
0.0482466
0.0489176
0.0487057
0.0480248
0.047181
0.045825
0.0441037
0.0424251
0.0404933
0.0383697
0.0362113
0.0340109
0.0318428
0.0296117
0.0274
0.0253886
0.0233622
0.0212752
0.018972
0.0163501
0.0133697
0.00998848
0.00619343
0.00221176
-0.00171925
-0.00573296
-0.0101084
-0.0150219
-0.0205698
-0.0268892
-0.0341876
-0.0431415
-0.0545783
-0.0677265
-0.0821635
-0.0980607
-0.115118
-0.134158
-0.156269
-0.181715
-0.208669
-0.236152
-0.264578
-0.292203
-0.313722
-0.32448
0.12179
0.147108
0.175755
0.191014
0.200527
0.206934
0.208261
0.206656
0.199321
0.188637
0.175829
0.161689
0.147748
0.133835
0.120545
0.107685
0.0957164
0.0848427
0.0748101
0.0656626
0.0572814
0.0498269
0.0430654
0.037014
0.0317801
0.0270838
0.0228398
0.0189962
0.0156611
0.0128917
0.0106409
0.00878721
0.00720088
0.00576696
0.00440554
0.00311012
0.0020503
0.00109577
0.00029782
-0.000402674
-0.00105554
-0.00170419
-0.00230949
-0.00288513
-0.00340452
-0.00391208
-0.00454011
-0.00526602
-0.00583973
-0.00657
-0.00741685
-0.00841696
-0.00958064
-0.0110459
-0.0124986
-0.014107
-0.0156269
-0.0169922
-0.019423
-0.0208628
-0.0227539
-0.0243117
-0.0253054
-0.0266883
-0.0277966
-0.0281236
-0.0280019
-0.0271597
-0.0261496
-0.0245244
-0.0227547
-0.0209304
-0.0191713
-0.0187499
-0.0182233
-0.0174657
-0.0158075
-0.0139039
-0.0115863
-0.00918852
-0.00656427
-0.00386034
-0.00142156
0.00065965
0.00218835
0.00356065
0.00456149
0.0053535
0.00598666
0.00654064
0.00684688
0.00691993
0.00682522
0.006655
0.00645912
0.00631007
0.00607259
0.00572845
0.00533915
0.00497746
0.00465615
0.00434952
0.00403755
0.0037273
0.00344712
0.0032155
0.00304023
0.00290275
0.00278912
0.00271193
0.00264673
0.00258954
0.00253664
0.00247988
0.00242442
0.0023635
0.00229771
0.00221506
0.00210023
0.00197007
0.0017855
0.00159786
0.00137001
0.00110709
0.000772274
0.000352212
-0.000158383
-0.000758588
-0.00151467
-0.00239037
-0.00354482
-0.00488724
-0.00656499
-0.00851081
-0.0107245
-0.0131896
-0.0158443
-0.0186287
-0.0213204
-0.0238693
-0.0257699
-0.0271057
-0.0274778
-0.0274632
-0.0269268
-0.0261657
-0.0249467
-0.0231096
-0.0212302
-0.0207215
-0.0203879
-0.0198397
-0.018552
-0.0167678
-0.0144068
-0.0109401
-0.00700093
-0.00277122
0.0010226
0.00413119
0.00649343
0.0082046
0.00921366
0.00951966
0.00924361
0.00868578
0.00800783
0.00728808
0.00670149
0.00622411
0.00572415
0.00525486
0.00491321
0.00466299
0.004406
0.00407319
0.00368196
0.00326129
0.00291027
0.00267147
0.00255691
0.00250787
0.00250072
0.00247667
0.00243212
0.00246871
0.00250654
0.00253656
0.00259829
0.0026423
0.00269447
0.00270891
0.00272961
0.002717
0.00270586
0.0026549
0.0025579
0.00234366
0.00200813
0.00149874
0.000782274
-0.000162732
-0.00129104
-0.00240335
-0.00339245
-0.00423704
-0.00479086
-0.00560464
-0.00657862
-0.00833793
-0.01057
-0.0132084
-0.0156403
-0.0177533
-0.0193089
-0.0204457
-0.0211694
-0.0215314
-0.0218011
-0.0218877
-0.0218613
-0.021654
-0.0208898
-0.019692
-0.0192649
-0.0184319
-0.0174029
-0.0159447
-0.0146033
-0.013098
-0.0114693
-0.00893316
-0.00564021
-0.00160667
0.00213529
0.00535451
0.00751682
0.00849597
0.00844636
0.00792813
0.00727649
0.00671904
0.00629689
0.00607227
0.00607418
0.00611427
0.00588378
0.00516501
0.00405614
0.00286552
0.00217463
0.00234247
0.002888
0.00342622
0.00373197
0.00374315
0.00354399
0.00328534
0.00306908
0.00292797
0.00288668
0.00289396
0.00292071
0.00293118
0.00294309
0.00296693
0.00299499
0.00298877
0.00293544
0.00275213
0.00238529
0.00193178
0.00144791
0.000947929
0.000430109
-9.6089e-05
-0.000678856
-0.0012303
-0.00182225
-0.00246696
-0.00320898
-0.00407619
-0.00524046
-0.00662337
-0.00834714
-0.0100933
-0.0117141
-0.012984
-0.0134934
-0.0132504
-0.0136606
-0.0146636
-0.0161557
-0.0174884
-0.0178297
-0.0178647
-0.0175704
-0.017979
-0.0168114
-0.0151339
-0.0122387
-0.00754909
-0.0023267
0.00355873
0.00941867
0.0144819
0.018371
0.0221389
0.0254724
0.0275611
0.0287424
0.0300308
0.0305143
0.0303211
0.0298327
0.0292248
0.0283137
0.0271944
0.0260999
0.0248719
0.023535
0.0221787
0.0208075
0.0194637
0.0180954
0.0167452
0.0155209
0.0142926
0.0130288
0.0116317
0.010046
0.00823442
0.00617105
0.00385518
0.00143847
-0.000994075
-0.0034939
-0.00623829
-0.00934069
-0.0128659
-0.0169056
-0.0216036
-0.027403
-0.0348271
-0.0434239
-0.0529237
-0.063324
-0.0744938
-0.0869593
-0.101375
-0.117848
-0.135186
-0.152676
-0.17044
-0.18712
-0.199477
-0.204378
0.0415767
0.0519147
0.0638675
0.0712731
0.0763875
0.080549
0.0826977
0.0837937
0.0824013
0.0793639
0.0751231
0.070036
0.064727
0.0592818
0.0539621
0.0486915
0.0437146
0.0390926
0.0347428
0.0307374
0.0270237
0.0236596
0.0205776
0.0177789
0.01532
0.0130903
0.0110596
0.00922689
0.00763941
0.00630884
0.00520307
0.00426527
0.00343972
0.00267713
0.00194907
0.00125245
0.00073286
0.000191941
-0.000286174
-0.000741528
-0.00119835
-0.00168106
-0.00216039
-0.00266595
-0.0031883
-0.00375039
-0.00440677
-0.00512003
-0.00584127
-0.00666931
-0.00775511
-0.00890634
-0.0101582
-0.0117278
-0.0131665
-0.0148102
-0.0164615
-0.0178448
-0.0198372
-0.0211682
-0.0225197
-0.0235845
-0.0240325
-0.0243713
-0.0241424
-0.0232269
-0.0217551
-0.0196962
-0.0173722
-0.014654
-0.0119344
-0.00942963
-0.00737752
-0.0070586
-0.00614035
-0.00573691
-0.00510838
-0.00443855
-0.00365762
-0.00286871
-0.00200033
-0.00111981
-0.000320585
0.000321877
0.000840193
0.00126489
0.00157791
0.00182688
0.00202602
0.0022016
0.00229798
0.0023192
0.00228416
0.00222523
0.00215767
0.00210717
0.00202645
0.00191212
0.00178228
0.00166163
0.00155345
0.00145127
0.00134686
0.0012439
0.00115052
0.00107627
0.0010377
0.000995761
0.000942701
0.00089723
0.000844175
0.000781987
0.000708283
0.000618954
0.000516695
0.000395247
0.000253884
8.58621e-05
-0.00012195
-0.000352247
-0.000644113
-0.000954184
-0.00132732
-0.00175774
-0.00227131
-0.00287702
-0.00358037
-0.00437972
-0.00533923
-0.00638151
-0.00769404
-0.00911348
-0.0108019
-0.0126113
-0.0145535
-0.016579
-0.0185987
-0.0204932
-0.0219037
-0.0228788
-0.0229963
-0.0222729
-0.0205907
-0.0186619
-0.0164188
-0.0141805
-0.0117457
-0.00923819
-0.00729741
-0.00686423
-0.0067555
-0.0065824
-0.00615838
-0.00556888
-0.00478653
-0.00363875
-0.00232872
-0.000924544
0.000320976
0.00136553
0.00215984
0.0027345
0.0030771
0.00318053
0.00309132
0.00290236
0.00267298
0.00243187
0.00223481
0.0020749
0.00190865
0.0017532
0.00163909
0.00155485
0.00146857
0.00135791
0.00122798
0.00108802
0.000971505
0.000891594
0.00085377
0.000837182
0.000837454
0.000841529
0.000926679
0.000844555
0.000843139
0.000828119
0.000813063
0.000768383
0.000708455
0.000607594
0.000491205
0.000335764
0.000162154
-6.63324e-05
-0.000366066
-0.000787007
-0.0013101
-0.00199546
-0.00280042
-0.00376245
-0.00479318
-0.00575244
-0.00659187
-0.00740812
-0.00809868
-0.00914487
-0.0103327
-0.012109
-0.0139097
-0.0157205
-0.0168875
-0.0176105
-0.0176415
-0.0172404
-0.0164782
-0.0153215
-0.0141577
-0.0128215
-0.0113972
-0.00992688
-0.00824115
-0.00676828
-0.00641459
-0.00614698
-0.00580642
-0.00531161
-0.00484746
-0.0043309
-0.00380114
-0.00298525
-0.00190269
-0.000540206
0.000692509
0.00177002
0.00250261
0.00283963
0.00282791
0.00265409
0.00243286
0.00224284
0.00210038
0.00202718
0.00202822
0.00204016
0.00196423
0.00172553
0.00135531
0.000959657
0.000731888
0.000784667
0.000961707
0.00113544
0.00124087
0.0012456
0.00118125
0.00109577
0.00102425
0.000977086
0.000964083
0.000969047
0.000996816
0.0010236
0.000998345
0.000961417
0.000886939
0.000747233
0.000529176
0.000162385
-0.000351176
-0.000936668
-0.00154279
-0.002143
-0.0027425
-0.0033277
-0.00394901
-0.00453156
-0.00519329
-0.00593822
-0.00679319
-0.00772627
-0.00879565
-0.00998423
-0.0113591
-0.0126847
-0.0136288
-0.0140389
-0.0132955
-0.0116564
-0.0106339
-0.0101261
-0.00999154
-0.00961644
-0.00864266
-0.00757303
-0.00664909
-0.00656445
-0.00544209
-0.00424116
-0.00259808
-0.000291899
0.00219377
0.00487347
0.00750665
0.00979501
0.0112432
0.0128325
0.0141965
0.0150734
0.0155123
0.0159444
0.0160293
0.0158486
0.0155194
0.0151074
0.0145694
0.0139501
0.0133313
0.0126526
0.0119292
0.0112025
0.0104774
0.00976882
0.0090578
0.00835227
0.0076951
0.0070271
0.00633217
0.00557286
0.00472937
0.00378461
0.00272936
0.00157622
0.000420355
-0.000761602
-0.00197407
-0.0032931
-0.00476819
-0.00642584
-0.00831382
-0.0105027
-0.0132012
-0.0165971
-0.0204367
-0.0245737
-0.0289695
-0.0335924
-0.0386533
-0.0443547
-0.0506636
-0.0570505
-0.0631595
-0.0689605
-0.0736036
-0.0761712
-0.0754291
)
;
boundaryField
{
inlet
{
type zeroGradient;
}
bottom
{
type zeroGradient;
}
outlet
{
type zeroGradient;
}
atmosphere
{
type totalPressure;
rho none;
psi none;
gamma 1;
p0 uniform 0;
value nonuniform List<scalar>
357
(
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-1.08292e-07
-1.28028e-05
-4.73108e-05
-0.000106392
-0.000194896
-0.000321
-0.000481844
-0.000693669
-0.000962033
-0.00129518
-0.00171587
-0.0022126
-0.00280508
-0.003512
-0.00436766
-0.00535363
-0.00645315
-0.00781098
-0.00911538
-0.0106368
-0.0122509
-0.0136346
-0.0153315
-0.0166724
-0.0178313
-0.0187917
-0.0191763
-0.0192225
-0.018615
-0.0173791
-0.0155599
-0.0132002
-0.0104884
-0.00764768
-0.0049055
-0.00261589
-0.000898162
-6.56369e-05
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-5.03974e-08
-1.35917e-05
-4.72068e-05
-0.000100912
-0.000173232
-0.000265772
-0.000381429
-0.000516752
-0.000681834
-0.000873061
-0.00110034
-0.00137136
-0.00167027
-0.00203876
-0.00243223
-0.00290887
-0.00345567
-0.00409582
-0.00483666
-0.0056798
-0.00662515
-0.00773675
-0.00891935
-0.0103653
-0.0118711
-0.0136018
-0.0153493
-0.0171328
-0.0188583
-0.0204109
-0.0216678
-0.0222395
-0.0221113
-0.0209783
-0.0189401
-0.0160497
-0.013091
-0.0099376
-0.00713444
-0.00439116
-0.00191386
-0.000292381
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-5.85429e-06
-2.70871e-05
-7.07198e-05
-0.00013468
-0.000235129
-0.000366493
-0.000540838
-0.00074355
-0.000989273
-0.00126792
-0.00161522
-0.00205363
-0.0026198
-0.00327824
-0.00408682
-0.00497733
-0.00596402
-0.00696534
-0.00782647
-0.00857591
-0.00938539
-0.0101861
-0.0114298
-0.0127833
-0.0145856
-0.0160926
-0.0173348
-0.0176638
-0.0174893
-0.0165209
-0.0151287
-0.013469
-0.0114176
-0.00948544
-0.00749594
-0.00544974
-0.00345166
-0.00155814
-0.000214911
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-6.53752e-07
-3.12129e-05
-0.000110566
-0.000256463
-0.000488765
-0.000823574
-0.00131968
-0.00193379
-0.00259768
-0.00325552
-0.00388583
-0.00449337
-0.0050655
-0.00565604
-0.00619364
-0.00683364
-0.00756323
-0.00837308
-0.00922479
-0.0101117
-0.0110304
-0.0120629
-0.0129604
-0.013341
-0.0131437
-0.0115005
-0.00903656
-0.00729042
-0.00599769
-0.00491743
-0.00367464
-0.00234162
-0.0011969
-0.000331915
-3.96801e-09
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-7.3297e-08
-1.0314e-05
-3.52987e-05
-7.40999e-05
-0.000127735
-0.000197459
-0.000287028
-0.000402448
-0.000561096
-0.000778226
-0.00103279
-0.0013098
-0.00160875
-0.00192512
-0.00227666
-0.00267916
-0.00312889
-0.00357386
-0.00397529
-0.00432841
-0.00457005
-0.0045988
-0.00431293
)
;
}
frontBack
{
type empty;
}
}
// ************************************************************************* //
| |
c4381e6a19fd5e9b970c86dafe4e792541cd313c | d3fb7b8d57cf008beeb662038eefe0ed563a3f77 | /fbEngin/Robo.h | c5d363d9d279cd7334e54735e11d097baeeba1bd | [] | no_license | flanbel/DECIDE | 61fb9e9970742463fe2ab4943ecbf5af380624d3 | 5e27b56d7785238f5584d817e1e79cf697e1380b | refs/heads/master | 2020-04-18T09:47:39.626152 | 2016-09-13T04:58:04 | 2016-09-13T04:58:04 | 66,625,462 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 294 | h | Robo.h |
#ifndef _ROBO_H_
#define _ROBO_H_
#include "Character.h"
class CRobo :public CCharacter
{
public:
CRobo();
//ๅๆๅใ่กใ้ขๆฐ(ไธๅบฆใฎใฟๅผใฐใใ)
void Start();
//ๆดๆฐใ่กใ้ขๆฐ
void Update();
//ๆ็ปใ่กใ้ขๆฐ
void Render();
private:
};
#endif //_ROBO_H_ |
81292ef88966b88b2f76871656f4e6c674858215 | d1ec47ff6acacb9f5368064e4c87f8d3770b016b | /contests/abc169/d.cpp | 91a0388e343a5330e1ec1cae487f817cee62bd60 | [] | no_license | fj0rdingz/Competive_Programming | 8bca0870311b348ea4c38d134f73346edceadf15 | 3dc42a85b7c9f4e77ba8c5488d84fb0f1f3ac75c | refs/heads/master | 2021-10-29T02:25:52.820526 | 2021-10-25T06:23:29 | 2021-10-25T06:23:29 | 252,177,293 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,018 | cpp | d.cpp | #include <bits/stdc++.h>
#define mod 1000000007
#define INF 1001001001
#define ll long long
#define ln cout<<endl
#define Yes cout<<"Yes"<<endl
#define No cout<<"No"<<endl
#define REP(i,m,n) for(ll i=(ll)(m);i<(ll)(n);i++)
#define rep(i,n) REP(i,0,n)
using namespace std;
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;
#include <vector>
map< int64_t, int > prime_factor(int64_t n) {
map< int64_t, int > ret;
for(int64_t i = 2; i * i <= n; i++) {
while(n % i == 0) {
ret[i]++;
n /= i;
}
}
if(n != 1) ret[n] = 1;
return ret;
}
int main(){
ll n;
cin>>n;
vector<ll> nums(100000);
ll i=0;
for(auto p : prime_factor(n)) {
while(p.second--) {
nums[i]++;
}
i++;
//cout<<nums[i]<<endl;
}
ll sum=0;
i=0;
while(nums[i]!=0){
ll k=1;
ll cntr=1;
for(ll j=1;j<=nums[i];j+=k){
sum++;
k++;
// cout<<j<<endl;
}
i++;
}
cout<<sum<<endl;
} |
663563220896518bc2231e4b72cd1b317fec7c98 | 54681145b1695d3d70329c522b161b790bc7b562 | /leetcode_interleaving_string.cpp | a5f45fd2753b07dc7e9a3e3959710cc968cc0dac | [] | no_license | avyavkumar/coding-solutions | 9d640d3f85447120cc313cdaab9fd1b0f194742f | f4b6cb4cb8050bb997d7ff1c46bedd745fd11c4d | refs/heads/master | 2021-01-11T00:13:13.379101 | 2020-10-01T16:28:57 | 2020-10-01T16:28:57 | 70,577,636 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,243 | cpp | leetcode_interleaving_string.cpp | #include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
bool isInterleave(string s1, string s2, string s3)
{
if (s1.length() + s2.length() != s3.length())
return false;
std::vector<std::vector<bool>> dp;
dp.resize(s1.length()+1);
for (int i = 0; i < s1.length()+1; i++)
dp[i].resize(s2.length()+1,false);
for (int i = 0; i <= s1.length(); i++)
{
for (int j = 0; j <= s2.length(); j++)
{
if (i + j == 0)
dp[i][j] = true;
else if (i == 0 && s3[j-1] == s2[j-1])
dp[i][j] = dp[i][j-1];
else if (j == 0 && s3[i-1] == s1[i-1])
dp[i][j] = dp[i-1][j];
else if (s3[i+j-1] == s1[i-1] && s1[i-1] != s2[j-1])
dp[i][j] = dp[i-1][j];
else if (s3[i+j-1] == s2[j-1] && s1[i-1] != s2[j-1])
dp[i][j] = dp[i][j-1];
else if (s3[i+j-1] == s2[j-1] && s1[i-1] == s2[j-1])
dp[i][j] = dp[i][j-1] || dp[i-1][j];
}
}
return dp[s1.length()][s2.length()];
}
};
|
2186d2b90e232a9ab59f83536cdfaf573f70085a | fbb640cce65ced68430e9ca849c0dd819bf588ec | /src/FeatureTrap.h | b3db9e553aa730904c48dca91c7c885f40c0f27e | [] | no_license | ronw23/ia-osx | 8c452d8516b695f09d11dd5a56bf5a17d9b891b3 | d4c0344c2ab9b1cbe1fe8003850867bc1cde13c6 | refs/heads/master | 2020-04-07T14:20:33.575128 | 2013-04-05T01:06:36 | 2013-04-05T01:06:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,343 | h | FeatureTrap.h | #ifndef FEATURE_TRAPS_H
#define FEATURE_TRAPS_H
#include "Feature.h"
#include "AbilityValues.h"
#include "Art.h"
#include "Feature.h"
#include "ConstTypes.h"
class Engine;
class SpecificTrapBase;
class TrapSpawnData;
enum Trap_t {
trap_blinding,
trap_dart,
trap_gasConfusion,
trap_gasFear,
trap_gasParalyze,
trap_smoke,
trap_spear,
trap_spiderWeb,
trap_teleport,
endOfTraps,
trap_any
};
class Trap: public FeatureStatic {
public:
~Trap();
void bump(Actor* actorBumping);
sf::Color getColor() const;
char getGlyph() const;
Tile_t getTile() const;
string getDescription(const bool DEFINITE_ARTICLE) const;
bool canHaveBlood() const;
bool canHaveGore() const;
bool canHaveCorpse() const;
bool canHaveItem() const;
void triggerOnPurpose(Actor* actorTriggering);
void reveal(const bool PRINT_MESSSAGE_WHEN_PLAYER_SEES);
bool isHidden() const {
return isHidden_;
}
MaterialType_t getMaterialType() const;
coord actorAttemptLeave(Actor* const actor, const coord& pos, const coord& dest);
Trap_t getTrapType() const;
const SpecificTrapBase* getSpecificTrap() const {
return specificTrap_;
}
protected:
friend class FeatureFactory;
Trap(Feature_t id, coord pos, Engine* engine, TrapSpawnData* spawnData);
void setSpecificTrapFromId(const Trap_t id);
const FeatureDef* const mimicFeature_;
bool isHidden_;
SpecificTrapBase* specificTrap_;
friend class Player;
void playerTrySpotHidden();
};
class SpecificTrapBase {
public:
protected:
friend class Trap;
SpecificTrapBase(coord pos, Trap_t trapType, Engine* engine) :
pos_(pos), trapType_(trapType), eng(engine) {
}
SpecificTrapBase() {
}
~SpecificTrapBase() {
}
virtual coord specificTrapActorAttemptLeave(Actor* const actor, const coord& pos, const coord& dest) {
(void)actor;
(void)pos;
return dest;
}
virtual void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult) = 0;
virtual string getTrapSpecificTitle() const = 0;
virtual sf::Color getTrapSpecificColor() const = 0;
virtual char getTrapSpecificGlyph() const = 0;
virtual Tile_t getTrapSpecificTile() const = 0;
coord pos_;
Trap_t trapType_;
Engine* eng;
};
class TrapDart: public SpecificTrapBase {
public:
private:
friend class Trap;
TrapDart(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_dart, engine) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrWhiteHigh;
}
string getTrapSpecificTitle() const {
return "Dart trap";
}
char getTrapSpecificGlyph() const {
return '^';
}
Tile_t getTrapSpecificTile() const {
return tile_trapGeneral;
}
};
class TrapSpear: public SpecificTrapBase {
public:
private:
friend class Trap;
TrapSpear(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_spear, engine) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrWhiteHigh;
}
string getTrapSpecificTitle() const {
return "Spear trap";
}
char getTrapSpecificGlyph() const {
return '^';
}
Tile_t getTrapSpecificTile() const {
return tile_trapGeneral;
}
};
class TrapGasConfusion: public SpecificTrapBase {
public:
private:
friend class Trap;
TrapGasConfusion(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_gasConfusion, engine) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrMagenta;
}
string getTrapSpecificTitle() const {
return "Gas trap";
}
char getTrapSpecificGlyph() const {
return '^';
}
Tile_t getTrapSpecificTile() const {
return tile_trapGeneral;
}
};
class TrapGasParalyzation: public SpecificTrapBase {
public:
private:
friend class Trap;
TrapGasParalyzation(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_gasParalyze, engine) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrMagenta;
}
string getTrapSpecificTitle() const {
return "Gas trap";
}
char getTrapSpecificGlyph() const {
return '^';
}
Tile_t getTrapSpecificTile() const {
return tile_trapGeneral;
}
};
class TrapGasFear: public SpecificTrapBase {
public:
private:
friend class Trap;
TrapGasFear(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_gasFear, engine) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrMagenta;
}
string getTrapSpecificTitle() const {
return "Gas trap";
}
char getTrapSpecificGlyph() const {
return '^';
}
Tile_t getTrapSpecificTile() const {
return tile_trapGeneral;
}
};
class TrapBlindingFlash: public SpecificTrapBase {
public:
private:
friend class Trap;
TrapBlindingFlash(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_blinding, engine) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrYellow;
}
string getTrapSpecificTitle() const {
return "Blinding trap";
}
char getTrapSpecificGlyph() const {
return '^';
}
Tile_t getTrapSpecificTile() const {
return tile_trapGeneral;
}
};
class TrapTeleport: public SpecificTrapBase {
public:
private:
friend class Trap;
TrapTeleport(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_teleport, engine) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrCyan;
}
string getTrapSpecificTitle() const {
return "Teleporter trap";
}
char getTrapSpecificGlyph() const {
return '^';
}
Tile_t getTrapSpecificTile() const {
return tile_trapGeneral;
}
};
class TrapSmoke: public SpecificTrapBase {
public:
private:
friend class Trap;
TrapSmoke(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_smoke, engine) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrGray;
}
string getTrapSpecificTitle() const {
return "Smoke trap";
}
char getTrapSpecificGlyph() const {
return '^';
}
Tile_t getTrapSpecificTile() const {
return tile_trapGeneral;
}
};
class TrapSpiderWeb: public SpecificTrapBase {
public:
coord specificTrapActorAttemptLeave(Actor* const actor, const coord& pos, const coord& dest);
bool isHolding() const {
return isHoldingActor;
}
private:
friend class Trap;
TrapSpiderWeb(coord pos, Engine* engine) :
SpecificTrapBase(pos, trap_spiderWeb, engine), isHoldingActor(false) {
}
void trapSpecificTrigger(Actor* const actor, const AbilityRollResult_t dodgeResult);
sf::Color getTrapSpecificColor() const {
return clrWhiteHigh;
}
string getTrapSpecificTitle() const {
return "Spider web";
}
char getTrapSpecificGlyph() const {
return '*';
}
Tile_t getTrapSpecificTile() const {
return tile_spiderWeb;
}
bool isHoldingActor;
};
#endif
|
2cbcb516eb548240ad68e13d08e2bfc5389e2f3b | 09047d1cffb8cc38478c5b70bd12926e76cf1d18 | /AES/AES/HMAC_SHA2.cpp | 2a5bc55df78dc610d71d9b479dfa1e76da099c66 | [] | no_license | hwajong/visual_cpp | 4938ef5200a5ccd7868e160802218a8f06bf2e85 | 88f790e2bdaaf3e2c885a10caee0a86eea361924 | refs/heads/master | 2016-09-06T04:15:25.326392 | 2014-12-19T12:12:52 | 2014-12-19T12:12:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,255 | cpp | HMAC_SHA2.cpp | #include "HMAC_SHA2.h"
#include <cstring>
using namespace std;
#define _BIG_ENDIAN
typedef unsigned char U8;
typedef unsigned int U32;
#define ENABLE_SHA_256
#define ENABLE_SHA_512
/*
#define ENABLE_SHA_224
#define ENABLE_SHA_384
*/
typedef struct { /* sha-224/256 uses half size of buffer */
U32 bits[4];
U32 input[32];
U32 state[16];
int hashbitlen;
} SHA2_CTX;
#define INIT224_H0 0xc1059ed8
#define INIT224_H1 0x367cd507
#define INIT224_H2 0x3070dd17
#define INIT224_H3 0xf70e5939
#define INIT224_H4 0xffc00b31
#define INIT224_H5 0x68581511
#define INIT224_H6 0x64f98fa7
#define INIT224_H7 0xbefa4fa4
#define INIT256_H0 0x6a09e667
#define INIT256_H1 0xbb67ae85
#define INIT256_H2 0x3c6ef372
#define INIT256_H3 0xa54ff53a
#define INIT256_H4 0x510e527f
#define INIT256_H5 0x9b05688c
#define INIT256_H6 0x1f83d9ab
#define INIT256_H7 0x5be0cd19
#define INIT384_H0h 0xcbbb9d5d
#define INIT384_H0l 0xc1059ed8
#define INIT384_H1h 0x629a292a
#define INIT384_H1l 0x367cd507
#define INIT384_H2h 0x9159015a
#define INIT384_H2l 0x3070dd17
#define INIT384_H3h 0x152fecd8
#define INIT384_H3l 0xf70e5939
#define INIT384_H4h 0x67332667
#define INIT384_H4l 0xffc00b31
#define INIT384_H5h 0x8eb44a87
#define INIT384_H5l 0x68581511
#define INIT384_H6h 0xdb0c2e0d
#define INIT384_H6l 0x64f98fa7
#define INIT384_H7h 0x47b5481d
#define INIT384_H7l 0xbefa4fa4
#define INIT512_H0h 0x6a09e667
#define INIT512_H0l 0xf3bcc908
#define INIT512_H1h 0xbb67ae85
#define INIT512_H1l 0x84caa73b
#define INIT512_H2h 0x3c6ef372
#define INIT512_H2l 0xfe94f82b
#define INIT512_H3h 0xa54ff53a
#define INIT512_H3l 0x5f1d36f1
#define INIT512_H4h 0x510e527f
#define INIT512_H4l 0xade682d1
#define INIT512_H5h 0x9b05688c
#define INIT512_H5l 0x2b3e6c1f
#define INIT512_H6h 0x1f83d9ab
#define INIT512_H6l 0xfb41bd6b
#define INIT512_H7h 0x5be0cd19
#define INIT512_H7l 0x137e2179
#define ROTL(x, n) (((x) << (n)) | ((x) >> (32-(n))))
#define ROTR(x, n) (((x) >> (n)) | ((x) << (32-(n))))
#define SHR(x,n) ((x)>>(n))
#define ROTRh(xh,xl,n) ( (n<32) ? ((xh>>n)|(xl<<(32-n))) : ((xh<<(64-n))|(xl>>(n-32))) )
#define ROTRl(xh,xl,n) ( (n<32) ? ((xh<<(32-n))|(xl>>n)) : ((xh>>(n-32))|(xl<<(64-n))) )
#define SHRh(xh,xl,n) ( (n<32) ? (xh>>n) : 0 )
#define SHRl(xh,xl,n) ( (n<32) ? ((xh<<(32-n))|(xl>>n)) : (xh>>(n-32)) )
#define CH(x,y,z) ( ((x) & (y)) | (~(x) & (z)) )
#define MAJ(x,y,z) ( ( (x) & (y) ) | ( (x) & (z) ) | ( (y) & (z) ) )
#define SIGMA256_0(x) ( ROTR(x, 2) ^ ROTR(x,13) ^ ROTR(x,22) )
#define SIGMA256_1(x) ( ROTR(x, 6) ^ ROTR(x,11) ^ ROTR(x,25) )
#define sigma256_0(x) ( ROTR(x, 7) ^ ROTR(x,18) ^ SHR(x, 3) )
#define sigma256_1(x) ( ROTR(x,17) ^ ROTR(x,19) ^ SHR(x,10) )
#define SIGMA512_0h(xh,xl) ( ROTRh(xh,xl,28) ^ ROTRh(xh,xl,34) ^ ROTRh(xh,xl,39) )
#define SIGMA512_0l(xh,xl) ( ROTRl(xh,xl,28) ^ ROTRl(xh,xl,34) ^ ROTRl(xh,xl,39) )
#define SIGMA512_1h(xh,xl) ( ROTRh(xh,xl,14) ^ ROTRh(xh,xl,18) ^ ROTRh(xh,xl,41) )
#define SIGMA512_1l(xh,xl) ( ROTRl(xh,xl,14) ^ ROTRl(xh,xl,18) ^ ROTRl(xh,xl,41) )
#define sigma512_0h(xh,xl) ( ROTRh(xh,xl, 1) ^ ROTRh(xh,xl, 8) ^ SHRh(xh,xl, 7) )
#define sigma512_0l(xh,xl) ( ROTRl(xh,xl, 1) ^ ROTRl(xh,xl, 8) ^ SHRl(xh,xl, 7) )
#define sigma512_1h(xh,xl) ( ROTRh(xh,xl,19) ^ ROTRh(xh,xl,61) ^ SHRh(xh,xl, 6) )
#define sigma512_1l(xh,xl) ( ROTRl(xh,xl,19) ^ ROTRl(xh,xl,61) ^ SHRl(xh,xl, 6) )
#define ADDC(xh,xl,yh,yl) { xl += (yl); xh += (yh) + (xl < (yl)); }
#ifndef _BIG_ENDIAN
#define Reverse1(n, d) \
{ \
l2=d[n]; \
d[n]=((ROTL(l2,8)&0x00FF00FF)|(ROTL(l2,24)&0xFF00FF00)); \
}
#define Reverse(n, d) \
{ \
for(l1 = 0; l1 < n; l1 ++) \
Reverse1(l1, d); \
}
#endif
#define F256(A,B,C,D,E,F,G,H,j) { \
T1 = H + SIGMA256_1(E) + CH(E,F,G) + K256[j] + WW[j]; \
D += T1; \
H = T1 + SIGMA256_0(A) + MAJ(A,B,C); }
#define F512(A,B,C,D,E,F,G,H,j) { \
T1##h = H##h; T1##l = H##l; \
ADDC( T1##h, T1##l, SIGMA512_1h(E##h,E##l), SIGMA512_1l(E##h,E##l) ); \
ADDC( T1##h, T1##l, CH(E##h,F##h,G##h), CH(E##l,F##l,G##l)); \
ADDC( T1##h, T1##l, K512[2*(j)], K512[2*(j)+1] ); \
ADDC( T1##h, T1##l, WW[2*(j)], WW[2*(j)+1] ); \
ADDC( D##h, D##l, T1##h, T1##l ); \
H##h = T1##h; H##l = T1##l; \
ADDC( H##h, H##l, SIGMA512_0h(A##h,A##l), SIGMA512_0l(A##h,A##l) ); \
ADDC( H##h, H##l, MAJ(A##h,B##h,C##h), MAJ(A##l,B##l,C##l) ); }
#if defined(ENABLE_SHA_224) || defined(ENABLE_SHA_256)
static U32 K256[64] = {
0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
};
static void SHA256_Round(SHA2_CTX *ctx, U32 *X)
{
U32 A, B, C, D, E, F, G, H, WW[64];
U32 i, T1;
for(i=0; i<16; i++)
WW[i] = X[i];
for(i=16; i<64; i++)
WW[i] = sigma256_1(WW[i-2]) + WW[i-7] + sigma256_0(WW[i-15]) + WW[i-16];
A = ctx->state[0];
B = ctx->state[1];
C = ctx->state[2];
D = ctx->state[3];
E = ctx->state[4];
F = ctx->state[5];
G = ctx->state[6];
H = ctx->state[7];
for(i=0; i<64; i+=8)
{
F256(A, B, C, D, E, F, G, H, i+0);
F256(H, A, B, C, D, E, F, G, i+1);
F256(G, H, A, B, C, D, E, F, i+2);
F256(F, G, H, A, B, C, D, E, i+3);
F256(E, F, G, H, A, B, C, D, i+4);
F256(D, E, F, G, H, A, B, C, i+5);
F256(C, D, E, F, G, H, A, B, i+6);
F256(B, C, D, E, F, G, H, A, i+7);
}
ctx->state[0] = (ctx->state[0] + A) & 0xffffffff;
ctx->state[1] = (ctx->state[1] + B) & 0xffffffff;
ctx->state[2] = (ctx->state[2] + C) & 0xffffffff;
ctx->state[3] = (ctx->state[3] + D) & 0xffffffff;
ctx->state[4] = (ctx->state[4] + E) & 0xffffffff;
ctx->state[5] = (ctx->state[5] + F) & 0xffffffff;
ctx->state[6] = (ctx->state[6] + G) & 0xffffffff;
ctx->state[7] = (ctx->state[7] + H) & 0xffffffff;
}
#endif
#if defined(ENABLE_SHA_384) || defined(ENABLE_SHA_512)
static U32 K512[160] = {
0x428a2f98, 0xd728ae22, 0x71374491, 0x23ef65cd, 0xb5c0fbcf, 0xec4d3b2f, 0xe9b5dba5, 0x8189dbbc,
0x3956c25b, 0xf348b538, 0x59f111f1, 0xb605d019, 0x923f82a4, 0xaf194f9b, 0xab1c5ed5, 0xda6d8118,
0xd807aa98, 0xa3030242, 0x12835b01, 0x45706fbe, 0x243185be, 0x4ee4b28c, 0x550c7dc3, 0xd5ffb4e2,
0x72be5d74, 0xf27b896f, 0x80deb1fe, 0x3b1696b1, 0x9bdc06a7, 0x25c71235, 0xc19bf174, 0xcf692694,
0xe49b69c1, 0x9ef14ad2, 0xefbe4786, 0x384f25e3, 0x0fc19dc6, 0x8b8cd5b5, 0x240ca1cc, 0x77ac9c65,
0x2de92c6f, 0x592b0275, 0x4a7484aa, 0x6ea6e483, 0x5cb0a9dc, 0xbd41fbd4, 0x76f988da, 0x831153b5,
0x983e5152, 0xee66dfab, 0xa831c66d, 0x2db43210, 0xb00327c8, 0x98fb213f, 0xbf597fc7, 0xbeef0ee4,
0xc6e00bf3, 0x3da88fc2, 0xd5a79147, 0x930aa725, 0x06ca6351, 0xe003826f, 0x14292967, 0x0a0e6e70,
0x27b70a85, 0x46d22ffc, 0x2e1b2138, 0x5c26c926, 0x4d2c6dfc, 0x5ac42aed, 0x53380d13, 0x9d95b3df,
0x650a7354, 0x8baf63de, 0x766a0abb, 0x3c77b2a8, 0x81c2c92e, 0x47edaee6, 0x92722c85, 0x1482353b,
0xa2bfe8a1, 0x4cf10364, 0xa81a664b, 0xbc423001, 0xc24b8b70, 0xd0f89791, 0xc76c51a3, 0x0654be30,
0xd192e819, 0xd6ef5218, 0xd6990624, 0x5565a910, 0xf40e3585, 0x5771202a, 0x106aa070, 0x32bbd1b8,
0x19a4c116, 0xb8d2d0c8, 0x1e376c08, 0x5141ab53, 0x2748774c, 0xdf8eeb99, 0x34b0bcb5, 0xe19b48a8,
0x391c0cb3, 0xc5c95a63, 0x4ed8aa4a, 0xe3418acb, 0x5b9cca4f, 0x7763e373, 0x682e6ff3, 0xd6b2b8a3,
0x748f82ee, 0x5defb2fc, 0x78a5636f, 0x43172f60, 0x84c87814, 0xa1f0ab72, 0x8cc70208, 0x1a6439ec,
0x90befffa, 0x23631e28, 0xa4506ceb, 0xde82bde9, 0xbef9a3f7, 0xb2c67915, 0xc67178f2, 0xe372532b,
0xca273ece, 0xea26619c, 0xd186b8c7, 0x21c0c207, 0xeada7dd6, 0xcde0eb1e, 0xf57d4f7f, 0xee6ed178,
0x06f067aa, 0x72176fba, 0x0a637dc5, 0xa2c898a6, 0x113f9804, 0xbef90dae, 0x1b710b35, 0x131c471b,
0x28db77f5, 0x23047d84, 0x32caab7b, 0x40c72493, 0x3c9ebe0a, 0x15c9bebc, 0x431d67c4, 0x9c100d4c,
0x4cc5d4be, 0xcb3e42b6, 0x597f299c, 0xfc657e2a, 0x5fcb6fab, 0x3ad6faec, 0x6c44198c, 0x4a475817
};
static void SHA512_Round(SHA2_CTX *ctx, U32 *X)
{
U32 Ah, Bh, Ch, Dh, Eh, Fh, Gh, Hh, T1h, WW[160];
U32 Al, Bl, Cl, Dl, El, Fl, Gl, Hl, T1l;
U32 i;
for(i=0; i<16; i++) {
WW[2*i] = X[2*i]; WW[2*i+1] = X[2*i+1];
}
for(i=16; i<80; i++) {
T1h = sigma512_1h(WW[2*(i-2)], WW[2*(i-2)+1]); T1l = sigma512_1l(WW[2*(i-2)], WW[2*(i-2)+1]);
ADDC(T1h, T1l, WW[2*(i-7)], WW[2*(i-7)+1]);
ADDC(T1h, T1l, sigma512_0h(WW[2*(i-15)], WW[2*(i-15)+1]), sigma512_0l(WW[2*(i-15)], WW[2*(i-15)+1]));
ADDC(T1h, T1l, WW[2*(i-16)], WW[2*(i-16)+1]);
WW[2*i] = T1h; WW[2*i+1] = T1l;
}
Ah = ctx->state[0]; Al = ctx->state[1];
Bh = ctx->state[2]; Bl = ctx->state[3];
Ch = ctx->state[4]; Cl = ctx->state[5];
Dh = ctx->state[6]; Dl = ctx->state[7];
Eh = ctx->state[8]; El = ctx->state[9];
Fh = ctx->state[10]; Fl = ctx->state[11];
Gh = ctx->state[12]; Gl = ctx->state[13];
Hh = ctx->state[14]; Hl = ctx->state[15];
for(i=0; i<80; i+=8)
{
F512(A, B, C, D, E, F, G, H, i+0);
F512(H, A, B, C, D, E, F, G, i+1);
F512(G, H, A, B, C, D, E, F, i+2);
F512(F, G, H, A, B, C, D, E, i+3);
F512(E, F, G, H, A, B, C, D, i+4);
F512(D, E, F, G, H, A, B, C, i+5);
F512(C, D, E, F, G, H, A, B, i+6);
F512(B, C, D, E, F, G, H, A, i+7);
}
ADDC(ctx->state[0], ctx->state[1], Ah, Al);
ADDC(ctx->state[2], ctx->state[3], Bh, Bl);
ADDC(ctx->state[4], ctx->state[5], Ch, Cl);
ADDC(ctx->state[6], ctx->state[7], Dh, Dl);
ADDC(ctx->state[8], ctx->state[9], Eh, El);
ADDC(ctx->state[10], ctx->state[11], Fh, Fl);
ADDC(ctx->state[12], ctx->state[13], Gh, Gl);
ADDC(ctx->state[14], ctx->state[15], Hh, Hl);
}
#endif
/************************************************************************/
/* SHA-224 */
/************************************************************************/
#ifdef ENABLE_SHA_224
static void E_SHA224_Init(SHA2_CTX *ctx)
{
ctx->state[0] = INIT224_H0;
ctx->state[1] = INIT224_H1;
ctx->state[2] = INIT224_H2;
ctx->state[3] = INIT224_H3;
ctx->state[4] = INIT224_H4;
ctx->state[5] = INIT224_H5;
ctx->state[6] = INIT224_H6;
ctx->state[7] = INIT224_H7;
ctx->bits[0] = ctx->bits[1] = 0;
ctx->hashbitlen = 224;
}
static void E_SHA224_Update(SHA2_CTX *ctx, U8 *in, int inbytes)
{
U32 tmp, t, l1, l2, *ip, l = inbytes;
U8 *tp;
if(l == 0)
return;
ip = ctx->input;
tmp = ctx->bits[0];
if((ctx->bits[0] = tmp + ((U32)l << 3)) < tmp)
ctx->bits[1] ++;
ctx->bits[1] += l >> 29;
t = (int)(tmp >> 3) & 0x3f;
if(t)
{
tp = (U8 *)ip + t;
t = 64 - t;
if(l < t)
{
memcpy(tp, in, l);
return;
}
memcpy(tp, in, t);
#ifndef _BIG_ENDIAN
Reverse(16, ip);
#endif
SHA256_Round(ctx, ip);
in += t;
l -= t;
}
while(l >= 64)
{
memcpy(ip, in, 64);
#ifndef _BIG_ENDIAN
Reverse(16, ip);
#endif
SHA256_Round(ctx, ip);
in += 64;
l -= 64;
}
memcpy(ip, in, l);
}
static int E_SHA224_Final(SHA2_CTX *ctx, U8 *out)
{
int i;
U8 *tp;
U32 l1, l2, *ip;
i = (int)ctx->bits[0];
i = (i >> 3) & 0x3f;
ip = ctx->input;
tp = (U8 *)ip + i;
*tp++ = 0x80;
i = 64 - 1 - i;
if(i < 8)
{
memset(tp, 0, i);
#ifndef _BIG_ENDIAN
Reverse(16, ip);
#endif
SHA256_Round(ctx, ip);
memset(ip, 0, 64 - 8);
}
else
{
memset(tp, 0, i - 8);
#ifndef _BIG_ENDIAN
Reverse(14, ip);
#endif
}
ip[14] = ctx->bits[1];
ip[15] = ctx->bits[0];
SHA256_Round(ctx, ip);
#ifndef _BIG_ENDIAN
Reverse(8, ctx->state);
#endif
memcpy(out, ctx->state, 28);
return ctx->hashbitlen/8;
}
static int E_SHA224(U8 *out, U8 *in, int inbytes)
{
SHA2_CTX ctx;
E_SHA224_Init(&ctx);
E_SHA224_Update(&ctx, in, inbytes);
return E_SHA224_Final(&ctx, out);
}
#endif
/************************************************************************/
/* SHA-256 */
/************************************************************************/
#ifdef ENABLE_SHA_256
static void E_SHA256_Init(SHA2_CTX *ctx)
{
ctx->state[0] = INIT256_H0;
ctx->state[1] = INIT256_H1;
ctx->state[2] = INIT256_H2;
ctx->state[3] = INIT256_H3;
ctx->state[4] = INIT256_H4;
ctx->state[5] = INIT256_H5;
ctx->state[6] = INIT256_H6;
ctx->state[7] = INIT256_H7;
ctx->bits[0] = ctx->bits[1] = 0;
ctx->hashbitlen = 256;
}
static void E_SHA256_Update(SHA2_CTX *ctx, U8 *in, int inbytes)
{
U32 tmp, t, l1, l2, *ip, l = inbytes;
U8 *tp;
if(l == 0)
return;
ip = ctx->input;
tmp = ctx->bits[0];
if((ctx->bits[0] = tmp + ((U32)l << 3)) < tmp)
ctx->bits[1] ++;
ctx->bits[1] += l >> 29;
t = (int)(tmp >> 3) & 0x3f;
if(t)
{
tp = (U8 *)ip + t;
t = 64 - t;
if(l < t)
{
memcpy(tp, in, l);
return;
}
memcpy(tp, in, t);
#ifndef _BIG_ENDIAN
Reverse(16, ip);
#endif
SHA256_Round(ctx, ip);
in += t;
l -= t;
}
while(l >= 64)
{
memcpy(ip, in, 64);
#ifndef _BIG_ENDIAN
Reverse(16, ip);
#endif
SHA256_Round(ctx, ip);
in += 64;
l -= 64;
}
memcpy(ip, in, l);
}
static int E_SHA256_Final(SHA2_CTX *ctx, U8 *out)
{
int i;
U8 *tp;
U32 l1, l2, *ip;
i = (int)ctx->bits[0];
i = (i >> 3) & 0x3f;
ip = ctx->input;
tp = (U8 *)ip + i;
*tp++ = 0x80;
i = 64 - 1 - i;
if(i < 8)
{
memset(tp, 0, i);
#ifndef _BIG_ENDIAN
Reverse(16, ip);
#endif
SHA256_Round(ctx, ip);
memset(ip, 0, 64 - 8);
}
else
{
memset(tp, 0, i - 8);
#ifndef _BIG_ENDIAN
Reverse(14, ip);
#endif
}
ip[14] = ctx->bits[1];
ip[15] = ctx->bits[0];
SHA256_Round(ctx, ip);
#ifndef _BIG_ENDIAN
Reverse(8, ctx->state);
#endif
memcpy(out, ctx->state, 32);
return ctx->hashbitlen/8;
}
int E_SHA256(U8 *out, U8 *in, int inbytes)
{
SHA2_CTX ctx;
E_SHA256_Init(&ctx);
E_SHA256_Update(&ctx, in, inbytes);
return E_SHA256_Final(&ctx, out);
}
#endif
/************************************************************************/
/* SHA-384 */
/************************************************************************/
#ifdef ENABLE_SHA_384
static void E_SHA384_Init(SHA2_CTX *ctx)
{
ctx->state[0] = INIT384_H0h; ctx->state[1] = INIT384_H0l;
ctx->state[2] = INIT384_H1h; ctx->state[3] = INIT384_H1l;
ctx->state[4] = INIT384_H2h; ctx->state[5] = INIT384_H2l;
ctx->state[6] = INIT384_H3h; ctx->state[7] = INIT384_H3l;
ctx->state[8] = INIT384_H4h; ctx->state[9] = INIT384_H4l;
ctx->state[10] = INIT384_H5h; ctx->state[11] = INIT384_H5l;
ctx->state[12] = INIT384_H6h; ctx->state[13] = INIT384_H6l;
ctx->state[14] = INIT384_H7h; ctx->state[15] = INIT384_H7l;
ctx->bits[0] = ctx->bits[1] = ctx->bits[2] = ctx->bits[3] = 0;
ctx->hashbitlen = 384;
}
static void E_SHA384_Update(SHA2_CTX *ctx, U8 *in, int inbytes)
{
U32 tmp, t, l1, l2, *ip, l = inbytes;
U8 *tp;
if(l == 0)
return;
ip = ctx->input;
tmp = ctx->bits[0];
if((ctx->bits[0] = tmp + ((U32)l << 3)) < tmp)
if(ctx->bits[1]++ == 0)
if(ctx->bits[2]++ == 0)
ctx->bits[3]++;
if((ctx->bits[1] += l>>29) < (l>>29))
if(ctx->bits[2]++ == 0)
ctx->bits[3]++;
t = (int)(tmp >> 3) & 0x7f;
if(t)
{
tp = (U8 *)ip + t;
t = 128 - t;
if(l < t)
{
memcpy(tp, in, l);
return;
}
memcpy(tp, in, t);
#ifndef _BIG_ENDIAN
Reverse(32, ip);
#endif
SHA512_Round(ctx, ip);
in += t;
l -= t;
}
while(l >= 128)
{
memcpy(ip, in, 128);
#ifndef _BIG_ENDIAN
Reverse(32, ip);
#endif
SHA512_Round(ctx, ip);
in += 128;
l -= 128;
}
memcpy(ip, in, l);
}
static int E_SHA384_Final(SHA2_CTX *ctx, U8 *out)
{
int i;
U8 *tp;
U32 l1, l2, *ip;
i = (int)ctx->bits[0];
i = (i >> 3) & 0x7f;
ip = ctx->input;
tp = (U8 *)ip + i;
*tp++ = 0x80;
i = 128 - 1 - i;
if(i < 16)
{
memset(tp, 0, i);
#ifndef _BIG_ENDIAN
Reverse(32, ip);
#endif
SHA512_Round(ctx, ip);
memset(ip, 0, 128 - 16);
}
else
{
memset(tp, 0, i - 16);
#ifndef _BIG_ENDIAN
Reverse(28, ip);
#endif
}
ip[28] = ctx->bits[3];
ip[29] = ctx->bits[2];
ip[30] = ctx->bits[1];
ip[31] = ctx->bits[0];
SHA512_Round(ctx, ip);
#ifndef _BIG_ENDIAN
Reverse(16, ctx->state);
#endif
memcpy(out, ctx->state, 48);
return ctx->hashbitlen/8;
}
static int E_SHA384(U8 *out, U8 *in, int inbytes)
{
SHA2_CTX ctx;
E_SHA384_Init(&ctx);
E_SHA384_Update(&ctx, in, inbytes);
return E_SHA384_Final(&ctx, out);
}
#endif
/************************************************************************/
/* SHA-512 */
/************************************************************************/
#ifdef ENABLE_SHA_512
static void E_SHA512_Init(SHA2_CTX *ctx)
{
ctx->state[0] = INIT512_H0h; ctx->state[1] = INIT512_H0l;
ctx->state[2] = INIT512_H1h; ctx->state[3] = INIT512_H1l;
ctx->state[4] = INIT512_H2h; ctx->state[5] = INIT512_H2l;
ctx->state[6] = INIT512_H3h; ctx->state[7] = INIT512_H3l;
ctx->state[8] = INIT512_H4h; ctx->state[9] = INIT512_H4l;
ctx->state[10] = INIT512_H5h; ctx->state[11] = INIT512_H5l;
ctx->state[12] = INIT512_H6h; ctx->state[13] = INIT512_H6l;
ctx->state[14] = INIT512_H7h; ctx->state[15] = INIT512_H7l;
ctx->bits[0] = ctx->bits[1] = ctx->bits[2] = ctx->bits[3] = 0;
ctx->hashbitlen = 512;
}
static void E_SHA512_Update(SHA2_CTX *ctx, U8 *in, int inbytes)
{
U32 tmp, t, l1, l2, *ip, l = inbytes;
U8 *tp;
if(l == 0)
return;
ip = ctx->input;
tmp = ctx->bits[0];
if((ctx->bits[0] = tmp + ((U32)l << 3)) < tmp)
if(ctx->bits[1]++ == 0)
if(ctx->bits[2]++ == 0)
ctx->bits[3]++;
if((ctx->bits[1] += l>>29) < (l>>29))
if(ctx->bits[2]++ == 0)
ctx->bits[3]++;
t = (int)(tmp >> 3) & 0x7f;
if(t)
{
tp = (U8 *)ip + t;
t = 128 - t;
if(l < t)
{
memcpy(tp, in, l);
return;
}
memcpy(tp, in, t);
#ifndef _BIG_ENDIAN
Reverse(32, ip);
#endif
SHA512_Round(ctx, ip);
in += t;
l -= t;
}
while(l >= 128)
{
memcpy(ip, in, 128);
#ifndef _BIG_ENDIAN
Reverse(32, ip);
#endif
SHA512_Round(ctx, ip);
in += 128;
l -= 128;
}
memcpy(ip, in, l);
}
static int E_SHA512_Final(SHA2_CTX *ctx, U8 *out)
{
int i;
U8 *tp;
U32 l1, l2, *ip;
i = (int)ctx->bits[0];
i = (i >> 3) & 0x7f;
ip = ctx->input;
tp = (U8 *)ip + i;
*tp++ = 0x80;
i = 128 - 1 - i;
if(i < 16)
{
memset(tp, 0, i);
#ifndef _BIG_ENDIAN
Reverse(32, ip);
#endif
SHA512_Round(ctx, ip);
memset(ip, 0, 128 - 16);
}
else
{
memset(tp, 0, i - 16);
#ifndef _BIG_ENDIAN
Reverse(28, ip);
#endif
}
ip[28] = ctx->bits[3];
ip[29] = ctx->bits[2];
ip[30] = ctx->bits[1];
ip[31] = ctx->bits[0];
SHA512_Round(ctx, ip);
#ifndef _BIG_ENDIAN
Reverse(16, ctx->state);
#endif
memcpy(out, ctx->state, 64);
return ctx->hashbitlen/8;
}
int E_SHA512(U8 *out, U8 *in, int inbytes)
{
SHA2_CTX ctx;
E_SHA512_Init(&ctx);
E_SHA512_Update(&ctx, in, inbytes);
return E_SHA512_Final(&ctx, out);
}
#endif
static void E_SHA2_Init(SHA2_CTX *ctx, int hashbitlen)
{
switch(hashbitlen)
{
#ifdef ENABLE_SHA_224
case 224: E_SHA224_Init(ctx); break;
#endif
#ifdef ENABLE_SHA_256
case 256: E_SHA256_Init(ctx); break;
#endif
#ifdef ENABLE_SHA_384
case 384: E_SHA384_Init(ctx); break;
#endif
#ifdef ENABLE_SHA_512
case 512: E_SHA512_Init(ctx); break;
#endif
default: E_SHA256_Init(ctx); break;
}
}
static void E_SHA2_Update(SHA2_CTX *ctx, U8 *in, int inbytes)
{
switch(ctx->hashbitlen)
{
#ifdef ENABLE_SHA_224
case 224: E_SHA224_Update(ctx, in, inbytes); break;
#endif
#ifdef ENABLE_SHA_256
case 256: E_SHA256_Update(ctx, in, inbytes); break;
#endif
#ifdef ENABLE_SHA_384
case 384: E_SHA384_Update(ctx, in, inbytes); break;
#endif
#ifdef ENABLE_SHA_512
case 512: E_SHA512_Update(ctx, in, inbytes); break;
#endif
default: E_SHA256_Update(ctx, in, inbytes); break;
}
}
static int E_SHA2_Final(SHA2_CTX *ctx, U8 *out)
{
switch(ctx->hashbitlen)
{
#ifdef ENABLE_SHA_224
case 224: return E_SHA224_Final(ctx, out);
#endif
#ifdef ENABLE_SHA_256
case 256: return E_SHA256_Final(ctx, out);
#endif
#ifdef ENABLE_SHA_384
case 384: return E_SHA384_Final(ctx, out);
#endif
#ifdef ENABLE_SHA_512
case 512: return E_SHA512_Final(ctx, out);
#endif
default: return E_SHA256_Final(ctx, out);
}
}
static int E_SHA2(U8 *out, int hashbitlen, U8 *in, int inbytes)
{
SHA2_CTX ctx;
E_SHA2_Init(&ctx, hashbitlen);
E_SHA2_Update(&ctx, in, inbytes);
return E_SHA2_Final(&ctx, out);
}
int HMAC_SHA2(int bit, U8 *out, U8 *key, int keybytes, U8 *in, int inbytes)
{
SHA2_CTX ctx;
U8 k[128], tmp[64], ipad[128], opad[128];
int i, bs = 64;
if(bit>256)
bs = 128;
if(keybytes > bs)
{
keybytes = E_SHA2(k, bit, key, keybytes);
}
else
memcpy(k, key, keybytes);
memset(&k[keybytes], 0, bs - keybytes);
for(i = 0; i < bs; i ++)
{
ipad[i] = k[i] ^ 0x36;
opad[i] = k[i] ^ 0x5c;
}
E_SHA2_Init(&ctx, bit);
E_SHA2_Update(&ctx, ipad, bs);
E_SHA2_Update(&ctx, in, inbytes);
i = E_SHA2_Final(&ctx, tmp);
E_SHA2_Init(&ctx, bit);
E_SHA2_Update(&ctx, opad, bs);
E_SHA2_Update(&ctx, tmp, i);
return E_SHA2_Final(&ctx, out);
}
|
29249592f2cd420cd6eb4130580bd478df88bbbc | 984f870fd8fc3ecdbb4153eff18ff29dd43f3808 | /Trees/tempCodeRunnerFile.cpp | 93553f0475f4b472c1c89e6060308c0c898d37f5 | [] | no_license | sakshamsomani2345/c-plus-plus-practice | 7c777fbb4444cd717bdcc6e77501b74f78c06964 | aa36723642c5f740564bcf95469ebfe0893c5121 | refs/heads/main | 2023-08-06T22:38:52.811277 | 2021-09-03T04:54:31 | 2021-09-03T04:54:31 | 402,649,494 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 842 | cpp | tempCodeRunnerFile.cpp | int sum=0;
if (root == NULL)
{
return 0;
}
queue<Treenode<int> *> pendingQ;
pendingQ.push(root);
while (pendingQ.size() != 0)
{
Treenode<int> *front = pendingQ.front();
// cout << front->data << ":";
sum=sum+front->data;
pendingQ.pop();
for (int i = 0; i < root->children.size(); i++)
{
pendingQ.push(root->children[i]);
if (root->children.size() - 1 != i)
{
// cout << root->children[i]->data << ",";
sum = sum + root->children[i]->data;
}
else
{
// cout << root->children[i]->data;
sum = sum + root->children[i]->data;
}
}
root = pendingQ.front();
cout << endl;
}
return sum; |
b878674db1dd5cad979f96937bc33fdac708ce81 | f5f1cd65c2d9e26a8573cb5bb885fdc486136d7e | /Debugging Exercise/Debugging Exercise/Marine.cpp | 3eb67c9637f2c93fdce04e280ebbbe667ff12269 | [] | no_license | LASpencer/aie-Debugging-Exercise | b7ae85aa0d7a0a5425d19104c9d675dbf6210f8a | 39b3a765d95cc203293720e92caacb748ab61a01 | refs/heads/master | 2021-01-23T05:14:52.090893 | 2017-04-01T14:34:48 | 2017-04-01T14:34:48 | 86,290,753 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 778 | cpp | Marine.cpp | #include <iostream>
#include "Marine.h"
#include "Zergling.h"
Marine::Marine()
{
maxHealth = STARTING_HEALTH;
health = STARTING_HEALTH;
}
Marine::~Marine()
{
}
int Marine::attack()
{
return DAMAGE;
}
void Marine::update(std::vector<Zergling>& targetList)
{
int damage = attack();
std::cout << ATTACK_MESSAGE << damage << " damage. " << std::endl;
targetList.begin()->takeDamage(damage); // Attack first zergling in the swarm
if (!targetList.begin()->isAlive())
{
std::cout << Zergling::DEATH_MESSAGE << std::endl;
targetList.erase(targetList.begin()); // Remove killed zergling from swarm
}
}
const std::string Marine::ATTACK_MESSAGE = "A marine fires for ";
const std::string Marine::DEATH_MESSAGE = "The marine succumbs to his wounds.";
|
586a7d0772664ad8fc77c68add99f04bb0b8da6e | eee64ef3b384930cc04de645316e8ffea01b1b72 | /DynamicProgramming/cpp/longestPalindromeSubseq.cpp | 7bdc948f7507a7c562ee0513566e4e4df78985f1 | [] | no_license | XingBin111/LeetCode | 17a8b2d764900510989531198f71bfbfbb601803 | 6bceb5569e45ffc0d83f22467d25380bbc25aa77 | refs/heads/master | 2023-07-22T05:12:32.092963 | 2021-09-09T09:37:48 | 2021-09-09T09:37:48 | 266,281,037 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,523 | cpp | longestPalindromeSubseq.cpp | #include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
bool isPalindrome(const string& s)
{
string::const_iterator begin_iter = s.begin();
string::const_iterator end_iter = s.end();
while (begin_iter < end_iter)
{
if(*begin_iter != *end_iter)
return false;
begin_iter++;
end_iter--;
}
return true;
}
// ๆถ้ดๅคๆๅบฆ้ซ่พพO(N^3), ๅทฎ่ฏ
int longestPalindromeSubseq(const string& s)
{
int n = s.size();
vector<vector<int> > dp_table(n, vector<int>(n, 0));
for(int i=0; i<n; i++)
dp_table[i][i] = 1;
for(int i=n-2; i>=0; i--)
{
for(int j=i+1; j<n; j++)
{
if(s[i] == s[j] && isPalindrome(s.substr(i, j-i+1)))
dp_table[i][j] = dp_table[i+1][j-1] + 2;
else
dp_table[i][j] = max(dp_table[i][j-1], dp_table[i+1][j]);
}
}
return dp_table[0][n-1];
}
string extend(const string& s, int i, int j)
{
while(i>=0 && j<s.size() && s[i] == s[j])
{
i--;
j++;
}
return s.substr(i+1, j-i-1);
}
// ๆถ้ดๆ็ไธบO(N^2)
string longestPalindromeSubseqExtend(const string& s)
{
string res = "";
for(int i=0; i<s.size()-2; i++)
{
string s1 = extend(s, i, i);
string s2 = extend(s, i, i+1);
string max_len_s = s1.size() > s2.size() ? s1 : s2;
res = max_len_s.size() > res.size() ? max_len_s : res;
}
return res;
}
string Manacher(string s) {
// Insert '#'
string t = "$#";
for (int i = 0; i < s.size(); ++i) {
t += s[i];
t += "#";
}
int n = t.size();
int* p = new int[n];
int C = 0, R = 0;
for(int i=1; i<n-1; i++)
{
int i_mirror = 2 * C - i;
if(R > i)
p[i] = min(R-i, p[i_mirror]);
else
p[i] = 0;
// ไธๆญๅๅณๆๅฑ, ๆๆ่็น่ฎฟ้ฎไธๆฌก, 666
while(t[i+1+p[i]] == t[i-1-p[i]])
p[i]++;
if(i+p[i]>R)
{
C = i;
R = i + p[i];
}
}
int max_len = 0;
int center_idx = 0;
for(int i=1; i<n-1; i++)
{
if(p[i] > max_len)
{
max_len = p[i];
center_idx = i;
}
}
int start = (center_idx - max_len) / 2;
delete [] p;
return s.substr(start, max_len);
}
int main()
{
string s = "wabwsw";
cout << Manacher(s) << endl;
return 0;
} |
6a84e37cec39c9009c7ccf0bcc35c4401c8bb248 | a4ee06bd408862827bd0dcbb905a213b45bf593b | /PKMN/v2/Editor/AddMapDlg.h | 685d59fceb1b7c74f74c7eed2c2d1328127b485e | [] | no_license | davekessener/VirtualMachine | 1a6b3af761e2763eebd1d61010fda517f51167d5 | 61679dd47f17246cad8261781000cf4aca5bfe14 | refs/heads/master | 2021-01-17T14:53:55.771007 | 2016-05-29T13:15:33 | 2016-05-29T13:15:33 | 14,454,172 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 392 | h | AddMapDlg.h | #ifndef PKMN_EDITOR_ADDMAPDLG_H
#define PKMN_EDITOR_ADDMAPDLG_H
#include "../common.h"
#include "surface/Surface.h"
namespace editor
{
class AddMapDlg : public surface::Surface
{
public:
private:
void i_doInit( );
void i_doUpdate(int) { }
void i_doRender( ) const;
void create( );
private:
surface::Surface_ptr id_in_, name_in_, width_in_, height_in_;
};
}
#endif
|
6485a1d4ae175d482e841ba2074e5b2a11d54f30 | be6f96fd154cce5215045fb090f58889a91b8bd7 | /MSG_Server/Models/ConnectedUsers/ConnectedUsers.cpp | 14f672c460cf23fbf323ae51afd9c2b3c5ef56f1 | [] | no_license | KillerOfFriend/MSG | d9bb7a10172933cecef33ea2407624e062458b3c | 7d53b66fa2bacb9719b2f1abdc7d1ae07db7cc33 | refs/heads/master | 2020-04-27T21:47:46.036917 | 2019-05-11T07:14:44 | 2019-05-11T07:14:44 | 174,712,199 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,598 | cpp | ConnectedUsers.cpp | #include "ConnectedUsers.h"
#include <algorithm>
#include <QHostAddress>
#include <QColor>
//-----------------------------------------------------------------------------
TConnectedUsersModel::TConnectedUsersModel(QObject *inParent) : QAbstractTableModel(inParent)
{
fUserTypes = std::make_shared<TUsersTypeModelDB>(this);
initColumns();
}
//-----------------------------------------------------------------------------
TConnectedUsersModel::~TConnectedUsersModel()
{
clear();
}
//-----------------------------------------------------------------------------
int TConnectedUsersModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent)
return this->size();
}
//-----------------------------------------------------------------------------
int TConnectedUsersModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent)
return fColumnCount;
}
//-----------------------------------------------------------------------------
QVariant TConnectedUsersModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant();
if ( (index.row() < 0 || index.row() >= rowCount()) || (index.column() < 0 || index.column() >= columnCount()) )
return QVariant();
QVariant Result = QVariant();
auto It = this->begin();
std::advance(It, index.row());
switch (role)
{
case Qt::DisplayRole:
{
auto a = It->second;
auto b = a.userInfo();
auto c = b->userName();
switch (index.column())
{
case cUserAddres: { Result = It->first->peerAddress().toString(); break; }
case cUserLogin: { Result = It->second.userInfo()->userLogin(); break; }
case cUserName: { Result = It->second.userInfo()->userName(); break; }
case cUserUuid: { Result = It->second.userInfo()->userUuid(); break; }
case cUserType:
{
OtherTypes::TUserType ForSeach(It->second.userInfo()->userType(), "");
auto TypeIt = fUserTypes->find(ForSeach);
if (TypeIt != fUserTypes->end())
Result = TypeIt->TypeName;
else Result = QVariant();
break;
}
default: { Result = QVariant(); break; }
}
break; // case Qt::DisplayRole:
}
case Qt::TextColorRole:
{
switch (index.column())
{
case cUserAddres: { Result = QColor(64, 0, 255); break; }
case cUserLogin: { Result = QColor(255,99,71); break; }
case cUserName: { Result = QColor(210,105,30); break; }
case cUserUuid: { Result = QColor(255,215,0); break; }
case cUserType: { Result = QColor(50, 205, 50); break; }
default: { Result = QVariant(); break; }
}
break; // case Qt::TextColorRole:
}
default: { Result = QVariant(); break; }
}
return Result;
}
//-----------------------------------------------------------------------------
QVariant TConnectedUsersModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if ( section < 0 || section >= columnCount() )
return QVariant();
QVariant Result = QVariant();
if (role == Qt::DisplayRole && orientation == Qt::Orientation::Horizontal)
Result = fColumns[section];
else
Result = QVariant();
return Result;
}
//-----------------------------------------------------------------------------
std::pair<std::map<QTcpSocket*, Core::TUserAccount>::iterator, bool> TConnectedUsersModel::insert(std::pair<QTcpSocket *, Core::TUserAccount> inItem)
{
auto It = std::map<QTcpSocket*, Core::TUserAccount>::insert(inItem);
if (It.second)
{
std::size_t Row = std::distance(this->begin(), It.first);
beginInsertRows(QModelIndex(), Row, Row);
endInsertRows();
}
return It;
}
//-----------------------------------------------------------------------------
void TConnectedUsersModel::erase(std::map<QTcpSocket*, Core::TUserAccount>::iterator inIt)
{
std::size_t Row = std::distance(this->begin(), inIt);
beginRemoveRows(QModelIndex(), Row, Row);
std::map<QTcpSocket*, Core::TUserAccount>::erase(inIt);
endRemoveRows();
}
//-----------------------------------------------------------------------------
void TConnectedUsersModel::clear()
{
beginRemoveRows(QModelIndex(), 0, rowCount());
std::map<QTcpSocket*, Core::TUserAccount>::clear();
endRemoveRows();
}
//-----------------------------------------------------------------------------
std::shared_ptr<TUsersTypeModelDB> TConnectedUsersModel::userTypes() // ะะตัะพะด ะฒะตัะฝัั ัะบะฐะทะฐัะตะปั ะฝะฐ ะผะพะดะตะปั ัะธะฟะพะฒ ะฟะพะปัะทะพะฒะฐัะตะปะตะน
{ return fUserTypes; }
//-----------------------------------------------------------------------------
void TConnectedUsersModel::initColumns()
{
fColumns[cUserAddres] = tr("ะะดัะตั");
fColumns[cUserLogin] = tr("ะะพะณะธะฝ");
fColumns[cUserName] = tr("ะะผั");
fColumns[cUserType] = tr("ะขะธะฟ");
fColumns[cUserUuid] = tr("Uuid");
}
//-----------------------------------------------------------------------------
void TConnectedUsersModel::slot_UpdateRow(qint32 inRowNumber)
{
dataChanged(index(inRowNumber, firstColumnIndex), index(inRowNumber, lastColumnIndex));
}
//-----------------------------------------------------------------------------
|
44ba46d26d86822e9989550b673bffb1cb67c7c7 | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/38/c2bdd4ff297043/main.cpp | 8cde1a65689c2da587821f78da0c232c2fc34126 | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 716 | cpp | main.cpp | #include <string>
struct X
{
int has_some_properties;
std::string data;
};
// now, for our named instances:
// define some character arrays **with external linkage**
namespace Names
{
extern const char Vanilla[] = "Vanilla";
extern const char Banana [] = "Banana";
extern const char Coconut[] = "Coconut";
extern const char Shoarma[] = "Shoarma";
}
// now we can "adorn" a `namedX` with the name constants (above)
template <const char* Name>
struct NamedX
{
static X value;
};
template <const char* const Name> X NamedX<Name>::value;
int main()
{
X& vanilla = NamedX<Names::Vanilla>::value;
vanilla = { 42, "Woot!" };
return vanilla.has_some_properties;
}
|
f48aa6d56426292e2a2adec09b7dc0201f40e2fe | 41495754cf8b951b23cece87b5c79a726748cff7 | /Solutions/URI/MARATONA DE PROGRAMAรรO DA SBC 2019/maratona_2019_M.cpp | fcc737d4abc8e214487dc76b8b63a8e7dc5cd307 | [] | no_license | PedroAngeli/Competitive-Programming | 86ad490eced6980d7bc3376a49744832e470c639 | ff64a092023987d5e3fdd720f56c62b99ad175a6 | refs/heads/master | 2021-10-23T04:49:51.508166 | 2021-10-13T21:39:21 | 2021-10-13T21:39:21 | 198,916,501 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 773 | cpp | maratona_2019_M.cpp | #include <bits/stdc++.h>
using namespace std;
long long N,C,T;
vector <long long> s;
bool can(long long x){
long long eat = x * T;
long long cont = 0;
long long i;
for(i=0;i<N;i++){
if(s[i] <= eat){
eat -= s[i];
}else{
cont++;
i--;
eat = x * T;
if(cont == C)
break;
}
}
// printf("%d\n",i);
return i == N;
}
int main(){
cin >> N >> C >> T;
s = vector <long long> (N);
long long sum = 0;
for(long long i=0;i<N;i++){
cin >> s[i];
sum += s[i];
}
long long e = 1, d = sum;
long long ans = 1e9 + 5;
while(e <= d){
long long m = (e+d)/2;
if(can(m)){
d = m-1;
ans = min(ans,m);
}else{
e = m+1;
}
}
cout << ans << endl;
return 0;
} |
59d389444a064acdaf6befcede8f18f18e80b197 | 36b1e8298f60f237476617d08b77a375ef95a640 | /BentukanLain6.cpp | 12d2ea973b33c0e92f685471cd13e64ad7798f9d | [] | no_license | Dimesss/Prog.-Tipe-Bentukan-Lain | 45e331e3248342100400667f5e6bd3130ac16b39 | aa946e70ab04690975f2229ae11ab3130a060849 | refs/heads/master | 2022-04-22T03:15:17.674499 | 2020-04-24T07:41:09 | 2020-04-24T07:41:09 | 258,441,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 508 | cpp | BentukanLain6.cpp | #include <iostream>
#include <string>
using namespace std;
struct data {
string nama;
long long int stambuk;
string kelas;
} ;
void screen(struct data bio)
{
cout << "Stambuk : " << bio.stambuk <<endl;
cout << "Nama : " << bio.nama <<endl;
cout << "Kelas : " << bio.kelas <<endl;
}
int main()
{
data bio_mhs;
cout <<"Stambuk : "; cin>>bio_mhs.stambuk;
cout <<"Nama : "; cin>>bio_mhs.nama;
cout <<"Kelas : "; cin>>bio_mhs.kelas;
screen(bio_mhs);
return 0;
}
|
a88b5150b2e98f3091bdc35c1a2ecfd58d9d242a | 5290330db470294df6615e38d958d7547e1b21bf | /Volume-109/UVa_10905.cpp | 4233fa1c0f21c77c041b5eeeea9cd2710bffbbdc | [] | no_license | milon/UVa | 897807b9891ab1943245f6640388084a777bfa15 | ba5c1e247bfa442c039deb465c56e9300cc11f0d | refs/heads/master | 2022-06-08T08:30:01.420605 | 2022-05-14T07:15:08 | 2022-05-14T07:15:08 | 11,388,237 | 14 | 12 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 592 | cpp | UVa_10905.cpp | //UVa Problem-10905(Childrenโs Game)
//Accepted
//Running time: 0.408 sec
#include<iostream>
#include<vector>
using namespace std;
int n;
string str;
bool condition(string a,string b){
bool s =(a+b)<(b+a);
return s;
}
int main(){
while(1){
vector<string>t;
cin>>n;
if(n==0) break;
while(n--){
cin>>str;
t.push_back(str);
}
sort(t.begin(),t.end(),condition);
for(int i=t.size()-1;i>=0;i--){
cout<<t[i].c_str();
}
cout<<endl;
}
return 0;
}
|
0c647ed1ccf0aaf78224ac5abb50a0cb2a270e8f | 5d014d63154f0edbb378375dd82fdb931e0b80c1 | /ppm.cpp | 76e39dddcf3fccb4abe77e8844f62d241b8630c1 | [] | no_license | hta1996/Raytracing | 71c43804cd383e8030cdaff5abee745a06d47e34 | e574690716d2e95dc0fe07f9c11ee98b8421135b | refs/heads/master | 2023-03-18T14:23:28.956515 | 2018-01-20T06:51:16 | 2018-01-20T06:51:16 | 115,580,377 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,877 | cpp | ppm.cpp | //
// ppm.cpp
// Raytracing
//
// Created by hta on 2017/12/17.
// Copyright ยฉ 2017ๅนด hta. All rights reserved.
//
#include <stdio.h>
#include "ppm.h"
#include <mutex>
#include <thread>
#include <algorithm>
using namespace std;
void Photontracer::emit(int photonT)
{
double powerT=0;
int tot=0,threadT=Const::threadT;
for(Light *itr=scene->startLight();itr!=NULL;itr=itr->getNext())powerT+=itr->getPow();
mutex lock;
vector<thread> a;a.clear();
for(int i=0;i<threadT;i++)
{
double tp=powerT/(photonT/threadT);
auto t=[this,powerT,tp,&tot,&lock]()
{
for(Light *itr=scene->startLight();itr!=NULL;itr=itr->getNext())
for(double i=itr->getPow();i>0;i-=tp)
{
photonTracing(itr->emit(powerT),1);
lock.lock();
if(++tot%50000==0)
cout << "Emitted " << tot << " photons." << std::endl;
lock.unlock();
}
};
a.push_back(thread(t));
}
for(int i=0;i<threadT;i++)a[i].join();
}
void Photontracer::photonTracing(Photon p,int depth)
{
if(depth>Const::maxPhotontracingDepth)return;
Collider tp=scene->findCollision(Ray(p.O,p.D));
if(!tp.hit()||tp.hitLight())return;
p.O=tp.P;
const Primitive *pri=tp.primitive;
const Material *mat=pri->getMaterial();
if(mat->diff>Const::eps)map->modify(p);
Color cd=mat->color*pri->textureColor(tp),ct(1, 1, 1);
if(tp.internal) // ้ๆๆ่ดจ็้ข่ฒ่ฟๆปค
{
Color absor=mat->absor*(-tp.dist);
absor=Color(exp(absor.r),exp(absor.g),exp(absor.b));
cd=cd*absor;ct=ct*absor;
}
double ran=Const::rand01();
double pd=(mat->diff+mat->spec)*cd.power();
double ps=mat->refl*cd.power();
double pt=mat->refr*ct.power();
if(ran<pd) // ๆผซๅๅฐ
{
p.D=tp.N.diffuse();
p.power=p.power*cd/cd.power();
photonTracing(p,depth+1);
}else if(ran<pd+ps) // ้้ขๅๅฐ
{
p.D=tp.ray.D.reflect(tp.N);
p.power=p.power*cd/cd.power();
photonTracing(p,depth+1);
}else if(ran<pd+ps+pt) // ้ๅฐ
{
double rindex=(!tp.internal)?mat->rindex:1/mat->rindex;
p.D=tp.ray.D.refract(tp.N,rindex);
p.power=p.power*ct/ct.power();
photonTracing(p,depth+1);
}
//if(ran<pd+ps+pt)photonTracing(p,depth+1);
}
void Map::update()
{
cout<<"update!"<<endl;
for(auto &p:point)
{
if(!p.m)continue;
double k=(p.n+p.m*Const::alpha)/(p.n+p.m);
p.r2*=k;p.flux=p.flux*k;
p.n+=p.m*Const::alpha;
p.m=0;
}
cout<<"rebuild!"<<endl;
build(root);
}
void Map::modify(const Photon &p){modify(root,p);}
void Map::modify(Map::Ttree *x,const Photon &p)
{
if(!x)return;
if(p.O.x<x->L.x||p.O.x>x->R.x||p.O.y<x->L.y||p.O.y>x->R.y||p.O.z<x->L.z||p.O.z>x->R.z)return;
if((p.O-x->p->O).len2()<=x->p->r2)x->p->update(p);
modify(x->l,p);
modify(x->r,p);
}
void Map::Ttree::pushup()
{
double t=sqrt(p->r2);
Vec T=Vec(t,t,t);
L=p->O-T;R=p->O+T;
if(l)L.Min(l->L),R.Max(l->R);
if(r)L.Min(r->L),R.Max(r->R);
}
void Map::build(Map::Ttree *x)
{
if(!x)return;
build(x->l);
build(x->r);
x->pushup();
}
Map::Ttree* Map::build(int l,int r)
{
if(l>=r)return nullptr;
int mid=(l+r)/2,d;
Vec A(0,0,0),B(0,0,0);
for(int i=l;i<r;i++)A=A+point[i].O;
A=A/(r-l);
for(int i=l;i<r;i++)
B.x+=(point[i].O.x-A.x)*(point[i].O.x-A.x),
B.y+=(point[i].O.y-A.y)*(point[i].O.y-A.y),
B.z+=(point[i].O.z-A.z)*(point[i].O.z-A.z);
if(B.x>B.y&&B.x>B.z)d=0;
else if(B.y>B.x&&B.y>B.z)d=1;
else d=2;
Ttree *x=tree+mid;
nth_element(point.begin()+l,point.begin()+mid,point.begin()+r,[&](const Tpoint &x,const Tpoint &y)
{
if(d==0)return x.O.x<y.O.x;
else if(d==1)return x.O.y<y.O.y;
else return x.O.z<y.O.z;
});
x->p=&point[mid];
x->l=build(l,mid);
x->r=build(mid+1,r);
x->pushup();
return x;
}
void Map::build()
{
if(tree)delete[]tree;
tree=new Ttree[n=point.size()];
cout<<"Hit point: "<<n<<endl;
root=build(0,n);
}
void ppm::Run(const std::string &file)
{
map=new Map();
flag=1;
Raytracer::Run(file);
flag=0;
cout<<"Eye tracing..."<<endl;
for(int i=0;i<W;i++)
for(int j=0;j<H;j++)
{
if(!j&&i%10==0)cout<<"Eye tracing: column "<<i<<std::endl;
curx=i,cury=j;
if(vis[i][j])camera->setCol(i,j,calcECol(i,j,&hash[i][j]));
else camera->setCol(i, j, calcCol(i,j,&hash[i][j]));
}
map->build();
camera->print(("pre"+file).c_str());
Bmp *pic=camera->getBmp();
cout<<"Start iteration..."<<endl;
Photontracer* PT=new Photontracer(scene,map);
for(int i=0,photoT=0;i<Const::ppmIterT;i++)
{
cout<<"Round "<<i<<":"<<endl;
PT->emit(Const::emitPhotonT);
map->update();photoT+=Const::emitPhotonT;
camera->setBmp(pic);
for(auto p=map->startPoint();p!=map->endPoint();p++)
{
Color c=camera->getCol(p->x,p->y)+p->color*p->flux*(1/Const::pi/p->r2/photoT);
camera->setCol(p->x,p->y,c);
}
camera->print(file.c_str());
}
}
Color ppm::calcIllumination(const Collider &tp,const Material* mat,const Color &fac)const
{
if (flag)
return Raytracer::calcIllumination(tp,mat,fac);
Tpoint p;
p.O=tp.P;p.N=tp.N;p.D=tp.ray.D;
p.mat=mat;
p.color=mat->color*tp.primitive->textureColor(tp)*fac*mat->diff;
p.r2=Const::initr2;
p.x=curx;p.y=cury;
map->insertPoint(p);
return Color();
/*if(Const::ppm)return Color();
else return Raytracer::calcIllumination(tp,mat,fac);*/
}
|
8c39731376acabf2422aa0049e6220ce0be6cae4 | c3f09fdce1afe96b50809b6e8e6d803329a5b438 | /2013-05-27-note/logic/include/ScriptSystem.h | ae02df1aa9a81ccff56b4f6bdc0ba0b60535b6fb | [] | no_license | xiaoxiaoyi/windows2linuxnote | 7e219f6e58d8b5eeb5c67c9d5d6d717e793da964 | 35ba4b305cb3bc0fe58e4429078d91b6bdb63616 | refs/heads/master | 2021-01-10T20:04:51.806084 | 2013-08-12T13:01:48 | 2013-08-12T13:01:48 | 10,140,640 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,936 | h | ScriptSystem.h | ๏ปฟ#ifndef _NINJIATRIBE_SCRIPTSYSTEM_H_
#define _NINJIATRIBE_SCRIPTSYSTEM_H_
#include <include/common/Singleton.h>
#include <script_support/CCScriptSupport.h>
#include <string>
using namespace cobra_win;
class ScriptSystem : public cocos2d::CCScriptEngineProtocol, public cobra_win::Singleton2<ScriptSystem>
{
public:
ScriptSystem();
virtual ~ScriptSystem();
public:
/*
ๅ ่ฝฝๆๅฎ็ๆไปถ
*/
bool LoadLuaFile(std::string filename);
/*
ๅ ่ฝฝๆๅฎ็Lua Buffer
*/
bool LoadLuaBuffer(char* pBuffer);
public:
/*
ๅๅงๅ่ๆฌ็ณป็ป็ฎก็ๅจ
*/
bool Init();
/*
่ๆฌ็ณป็ป้ป่พๆกขๆดๆฐ
*/
void Tick();
/*
้ๆฏ่ๆฌ็ณป็ป็ฎก็ๅจ
*/
void Destroy();
public:
virtual cocos2d::ccScriptType getScriptType();
virtual void removeScriptObjectByCCObject(cocos2d::CCObject* pObj);
virtual void removeScriptHandler(int nHandler);
virtual int executeString(const char* codes);
virtual int executeScriptFile(const char* filename);
virtual int executeGlobalFunction(const char* functionName);
virtual int executeMenuItemClick(const char* functionName, int param0);
virtual int executeNodeEvent(cocos2d::CCNode* pNode, int nAction);
virtual int executeMenuItemEvent(cocos2d::CCMenuItem* pMenuItem);
virtual int executeNotificationEvent(cocos2d::CCNotificationCenter* pNotificationCenter, const char* pszName);
virtual int executeCallFuncActionEvent(cocos2d::CCCallFunc* pAction, cocos2d::CCObject* pTarget = NULL);
virtual int executeSchedule(cocos2d::CCTimer* pTimer, float dt, cocos2d::CCNode* pNode = NULL);
virtual int executeLayerTouchesEvent(cocos2d::CCLayer* pLayer, int eventType, cocos2d::CCSet* pTouches);
virtual int executeLayerTouchEvent(cocos2d::CCLayer* pLayer, int eventType, cocos2d::CCTouch* pTouch);
public:
friend class cobra_win::Singleton2<ScriptSystem>;
};
#define SCRIPTSYSTEM (ScriptSystem::get_instance2())
#endif
|
c47c6f82b2b74f82aba181d9c1e403244b0abeec | ddf70888736e995a0604cbd8d4adfa8f87dc0c81 | /Source/Core/RenderAPI/RenderAPI/RenderAPIHeader.h | 4c27d277d52093faf5f249b50f428183f24198a8 | [
"MIT"
] | permissive | Cube219/CubeEngine_old2 | 4a9ccb7d4b90e7961b3edefeea03a5a93f3a38c0 | d251d540a4fdbc993ec5c9183eb30ac4dc81d5be | refs/heads/master | 2022-10-15T21:49:55.143857 | 2020-06-16T13:19:09 | 2020-06-16T13:21:58 | 180,976,441 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 934 | h | RenderAPIHeader.h | #pragma once
#include "Base/BaseTypes.h"
#include "Interface/RenderTypes.h"
namespace cube
{
namespace render
{
struct RenderAPIAttribute;
class RenderAPI;
struct DeviceAttribute;
class Device;
struct BufferAttribute;
class Buffer;
class BufferView;
class CommandList;
class Fence;
struct GraphicsPipelineStateAttribute;
class GraphicsPipelineState;
struct ComputePipelineStateAttribute;
class ComputePipelineState;
struct TextureAttribute;
class Texture;
struct TextureViewAttribute;
class TextureView;
struct SwapChainAttribute;
class SwapChain;
struct ShaderAttribute;
class Shader;
struct ShaderParametersLayoutAttribute;
class ShaderParametersLayout;
class ShaderParameters;
struct SamplerAttribute;
class Sampler;
struct RenderTargetAttribute;
class RenderTarget;
struct RenderPassAttribute;
class RenderPass;
} // namespace render
} // namespace cube
|
dac5b4d5a73acf28b6fc372bbecb7d653568d2a4 | 3d11e5d6f1fcf6e415de0c78b25a19c6612bec27 | /include/iris/sensor-api/iris/configuration/PcFlash.h | 4af55e166d44cf551d0e3a7405bdeff8ac5910d5 | [
"LicenseRef-scancode-stlport-4.5",
"BSL-1.0"
] | permissive | LESA-RPI/scr.tof_control | ca3ef2387e5b531c93d4bf3f0ac09994ac71a824 | 418714fb29900ce7fdd4ba0bed9105b0c3d623a7 | refs/heads/master | 2020-03-20T22:15:04.552842 | 2018-08-07T14:18:05 | 2018-08-07T14:18:05 | 137,788,093 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,742 | h | PcFlash.h | // ***************************************************************************
// * _ _ ____ _ ____ ___ *
// * (_)_ __(_)___ / ___| ___ _ __ ___ ___ _ __ / \ | _ \_ _| *
// * | | '__| / __| \___ \ / _ \ '_ \/ __|/ _ \| '__| / _ \ | |_) | | *
// * | | | | \__ \ ___) | __/ | | \__ \ (_) | | / ___ \| __/| | *
// * |_|_| |_|___/ |____/ \___|_| |_|___/\___/|_| /_/ \_\_| |___| *
// * *
// * Copyright (c) 2010 by iris-GmbH, Berlin All rights reserved *
// * *
// ***************************************************************************
// ---------------------------------------------------------------------------
// Please refer to LICENSE.TXT for more information on copyright and licensing
// terms with respect to this library and its source codes.
// ---------------------------------------------------------------------------
#ifndef PCFLASH_H
#define PCFLASH_H
// iris includes
#include "../Common.h"
class SENSORAPI PcFlash {
public:
typedef unsigned char UINT8;
typedef unsigned short UINT16;
typedef UINT16 *UINT16_PTR;
typedef unsigned long UINT32;
virtual bool lockSector(UINT8 banknum, UINT8 sectnum) = 0;
virtual bool unlockSector(UINT8 banknum, UINT8 sectnum) = 0;
virtual bool eraseSector(UINT8 banknum, UINT8 sectnum) = 0;
virtual bool programFlash(UINT8 banknum, UINT32 address, UINT16_PTR buffer, UINT32 numitems, bool bufferedMode = true) = 0;
virtual bool readFlash(UINT8 banknum, UINT32 address, UINT16_PTR buffer, UINT32 numitems) = 0;
//void enableReadArrayMode(void);
virtual bool programFlash(UINT8 banknum, UINT32 address, UINT16 value) = 0;
virtual bool readFlash(UINT8 banknum, UINT32 address, UINT16_PTR buffer) = 0;
/*bool readSectorStatus(UINT8 banknum, UINT16 sectnum, TMPL_FDATA &blockstat);
bool readHardwareInfo(struct TMPL_QueryData &query, struct TMPL_ExtQueryData &extquery);
static void getDeviceType(UINT16 &manufacturer, UINT16 &type);*/
PcFlash();
virtual ~PcFlash();
virtual unsigned short* getFlashMemoryAddress(unsigned long address) = 0;
virtual void acquireMutex(void) = 0;
virtual void releaseMutex(void) = 0;
};
typedef struct {
char TypeName[64];
char Dummy[0xb00 - 64];
} t_ConfigurationFlashDataStruct;
typedef PcFlash* (*FlashDriverInstanceFactory) (void);
extern FlashDriverInstanceFactory flashDriverInstanceFactory;
PcFlash* getFlashDriverInstance(void);
#endif // PCFLASH_H
|
4ca8d4f052d6b566a1f9430dfe4fe7acb9fe80ab | aa902a1e732f448afa24a3a0bc2e2212c66ec2d1 | /QASI_AHPUTRI_TT3D_P4_Project_SensorAlkoholMQ7/QASI_AHPUTRI_TT3D_P4_Project_SensorAlkoholMQ7.ino | e6bff4bd5ae06c16bf26f88ecb6eda7cfe371e61 | [] | no_license | qasiahputri/qasiah_sensoralkohol_mq7 | b5d41b69153119a84209b5c2549adbef03f16b36 | bc9c6ec7bb7be745e974e0b61da047244f1dbde2 | refs/heads/master | 2023-01-03T14:42:09.411680 | 2020-10-17T14:58:26 | 2020-10-17T14:58:26 | 304,900,240 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 915 | ino | QASI_AHPUTRI_TT3D_P4_Project_SensorAlkoholMQ7.ino | #include <LiquidCrystal.h>
LiquidCrystal lcd(13,12,11,10,9,8);
int SENSOR_GAS_MQ7=3;
int RED_LED=4;
int GREEN_LED=5;
void setup() {
// put your setup code here, to run once:
pinMode(SENSOR_GAS_MQ7, INPUT_PULLUP);
pinMode(RED_LED, OUTPUT);
pinMode(GREEN_LED, OUTPUT);
lcd.begin(20,4);
lcd.setCursor(0,0);
lcd.print("SISTEM PENDETEKSI");
lcd.setCursor(0,1);
lcd.print("ALKOHOL");
lcd.setCursor(0,2);
lcd.print("TELEKOMUNIKASI PNJ");
delay(3000);
}
void loop() {
// put your main code here, to run repeatedly:
int SENSOR_GAS_MQ7_READ = digitalRead(SENSOR_GAS_MQ7);
if (SENSOR_GAS_MQ7_READ == LOW)
{
lcd.clear();
lcd.setCursor(0, 3);
lcd.print("ALCOHOL DETECTED");
digitalWrite(RED_LED, LOW);
digitalWrite(GREEN_LED, HIGH);
delay(20);
}
else
{
lcd.clear();
lcd.setCursor(0, 3);
lcd.print("ALCOHOL NOT DETECTED");
digitalWrite(RED_LED, HIGH);
digitalWrite(GREEN_LED, LOW);
delay(20);
}
}
|
1c0ba1d8bc58feb6a716183482e30226da995504 | 06bed8ad5fd60e5bba6297e9870a264bfa91a71d | /LayoutEditor/automatsummary.h | 9ef01b597c9e8eb816c58fb4ad986a54cfb736e0 | [] | no_license | allenck/DecoderPro_app | 43aeb9561fe3fe9753684f7d6d76146097d78e88 | 226c7f245aeb6951528d970f773776d50ae2c1dc | refs/heads/master | 2023-05-12T07:36:18.153909 | 2023-05-10T21:17:40 | 2023-05-10T21:17:40 | 61,044,197 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,056 | h | automatsummary.h | #ifndef AUTOMATSUMMARY_H
#define AUTOMATSUMMARY_H
#include <QObject>
#include <QMutex>
#include "swingpropertychangesupport.h"
#include "runnable.h"
#include "liblayouteditor_global.h"
class AbstractAutomaton;
class PropertyChangeListener;
class SwingPropertyChangeSupport;
class Runnable;
class LIBLAYOUTEDITORSHARED_EXPORT AutomatSummary : public QObject
{
Q_OBJECT
public:
//explicit AutomatSummary(QObject *parent = 0);
static /*public*/ AutomatSummary* instance();
/*public*/ void addPropertyChangeListener(PropertyChangeListener* p) ;
/*public*/ void _register(AbstractAutomaton* a);
/*public*/ void remove(AbstractAutomaton* a);
/*public*/ int length();
/*public*/ AbstractAutomaton* get(int i);
/*public*/ AbstractAutomaton* get(QString name);
/*public*/ int indexOf(AbstractAutomaton* a);
/*public*/ void loop(AbstractAutomaton* a);
/*public*/ void removePropertyChangeListener(PropertyChangeListener* p);
signals:
//void notify(QString property, QVariant arg1, QVariant arg2);
//void propertyChange(PropertyChangeEvent*);
public slots:
private:
/*private*/ AutomatSummary(QObject *parent = 0) ;
static /*volatile*/ /*private*/ AutomatSummary* self;// = NULL;
/*private*/ QList<AbstractAutomaton*>* automats;// = new ArrayList<AbstractAutomaton>();
SwingPropertyChangeSupport* prop;// = new SwingPropertyChangeSupport(this, nullptr);
QMutex mutex;
// void notify(QString property, QVariant arg1, QVariant arg2);
#if 0
class Notifier : public Runnable
{
public:
Notifier(QString property, QVariant arg1, QVariant arg2)
{
this->property = property;
this->arg1 = arg1;
this->arg2 = arg2;
SwingPropertyChangeSupport* prop = new SwingPropertyChangeSupport(this, nullptr);
}
QVariant arg1;
QVariant arg2;
QString property;
SwingPropertyChangeSupport* prop;
/*public*/ void run() {
prop->firePropertyChange(property, arg1, arg2);
}
};
#endif
};
#endif // AUTOMATSUMMARY_H
|
d5bc524b251ed06c8e56cf106d7859c8a9e3a99f | ddc88be2b47eafe2362756ce58aa1a146e33e5de | /Projects/Arm/main.cpp | b960c2bc3d1c04d92ffbcc629481e5786967399a | [] | no_license | ghsecuritylab/SeniorProject | 04ad9848ccb9e280b15b9e8e06bdbfb521bc0703 | ac934a6cc68f51fa767d74139340d93495b98060 | refs/heads/master | 2021-02-28T14:24:37.309358 | 2018-05-04T19:38:53 | 2018-05-04T19:38:53 | 245,704,715 | 0 | 0 | null | 2020-03-07T20:59:57 | 2020-03-07T20:59:57 | null | UTF-8 | C++ | false | false | 1,563 | cpp | main.cpp | #include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_system.h"
#include "esp_spi_flash.h"
#include "Source.h"
// #include "Arm_I2C.h"
#include "IMU.h"
#include "Magnet_Encoder.h"
#include "RTOS_Tasks.h"
#include "common_init.h"
extern "C" void app_main()
{
printf("Arm Testing Wifi \n");
Arm_Init();
// I2C_master_init(I2C_EXAMPLE_MASTER_SDA_IO, I2C_EXAMPLE_MASTER_SCL_IO);
xTaskCreate(vReadDataTask , "vReadDataTask" , 2048, NULL, 2, NULL);
xTaskCreate(vSendDataTask , "vSendDataTask" , 2048, NULL, 1, NULL);
xTaskCreate(vI2CTask , "vI2CTask" , 2048, NULL, 2, NULL);
xTaskCreate(vElbowTask , "vElbowTask" , 2048, NULL, 1, NULL);
xTaskCreate(vRotundaTask , "vRotundaTask" , 2048, NULL, 1, NULL);
xTaskCreate(vShoulderTask , "vShoudlerTask" , 2048, NULL, 1, NULL);
xTaskCreate(vWristPitchTask , "vWristPitchTask" , 2048, NULL, 1, NULL);
xTaskCreate(vWristRotationTask, "vWristRotationTask" , 2048, NULL, 1, NULL);
xTaskCreate(vClawTask , "vClawTask" , 2048, NULL, 1, NULL);
// xTaskCreate(vMotorTestTask , "vMotorTestTask" , 2048, NULL, 1, NULL);
// xTaskCreate(vMagRawTest , "vMagRawTest" , 2048, NULL, 1, NULL);
// xTaskCreate(vImuIdRead , "vImuIdRead" , 2048, NULL, 1, NULL);
// xTaskCreate(vQuadEncTestTask , "vQuadEncTestTask" , 2048, NULL, 1, NULL);
// xTaskCreate(vAdcTask , "vAdcTask" , 2048, NULL, 1, NULL);
}
|
87817c982adbe8440b39abaaa7f374db10035c7c | 067ce7939ac2884a0ca51b2fc6081cd7608124f9 | /experiment/threadtest_bdb.cpp | 8076a4b0ccda41f78bfbadfc7298766ccfbac6b7 | [] | no_license | Meditator-hkx/NVHT | 7c1d5718f50a5546f946bd8178e775bc3a574626 | b3f571de351acb41220850b0711da62b6f90e025 | refs/heads/master | 2020-03-29T18:16:06.021679 | 2018-09-25T06:44:00 | 2018-09-25T06:44:00 | 150,202,492 | 0 | 0 | null | 2018-09-25T03:28:36 | 2018-09-25T03:28:36 | null | UTF-8 | C++ | false | false | 5,728 | cpp | threadtest_bdb.cpp | #include <pthread.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <unistd.h>
#include <sys/time.h>
#include "db.h"
long long ustime(void) {
struct timeval tv;
long long ust;
gettimeofday(&tv, NULL);
ust = ((long)tv.tv_sec)*1000000;
ust += tv.tv_usec;
return ust;
}
#define MAXTHREADNUM 8
int TOTAL = 1000000;
int TOTALWRITE = 300000;
int TOTALSEARCH = 700000;
const char *db_home_dir = "./envdir";
const char *file_name = "testdb.db";
char *KEYSTR = NULL;
char *VALUESTR = NULL;
void gen_templ(int keylen, int valuelen) {
KEYSTR = (char *)malloc(keylen * sizeof(char));
VALUESTR = (char *)malloc(valuelen * sizeof(char));
int i;
for (i=4; i<keylen; ++i) {
KEYSTR[i] = i%26 + 'a';
}
for (i=4; i<valuelen; ++i) {
VALUESTR[i] = i%26 + 'a';
}
memcpy(KEYSTR, "[%d]", 4);
memcpy(VALUESTR, "[%d]", 4);
}
pthread_spinlock_t m;
int thread_num;
int engine_type;
DB *dbp = NULL;
DB_ENV *envp = NULL;
void *insert(void *arg) {
int i, ret;
DBT key, data;
long pos = (long) arg;
int start = TOTAL*pos/thread_num;
int end = TOTAL*(pos+1)/thread_num;
printf("Thread %ld %d-%d\n", pos, start, end);
i = start;
while (i++ < end) {
char k[200];
char v[200];
sprintf(k, KEYSTR, i);
sprintf(v, VALUESTR, i);
memset(&key, 0, sizeof(DBT));
memset(&data, 0, sizeof(DBT));
key.data = &k;
key.size = strlen(k) + 1;
data.data = &v;
data.size = strlen(v) + 1;
pthread_spin_lock(&m);
retry:
ret = dbp->put(dbp, NULL, &key, &data, 0);
if (ret == DB_LOCK_DEADLOCK) {
goto retry;
}
dbp->sync(dbp, 0);
pthread_spin_unlock(&m);
}
pthread_exit((void*) 0);
}
void thread_insert() {
int i, ret;
pthread_t threads[MAXTHREADNUM];
void *status;
u_int32_t db_flags, env_flags;
ret = db_env_create(&envp, 0);
// env_flags = DB_CREATE | DB_INIT_TXN | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL;
env_flags = DB_CREATE | DB_INIT_MPOOL | DB_THREAD;
ret = envp->open(envp, db_home_dir, env_flags, 0);
ret = db_create(&dbp, envp, 0);
// db_flags = DB_CREATE | DB_AUTO_COMMIT;
db_flags = DB_CREATE | DB_THREAD | DB_DBT_MALLOC;
if (engine_type == 2) {
ret = dbp->open(dbp, NULL, file_name, NULL, DB_HASH, db_flags, 0);
} else {
ret = dbp->open(dbp, NULL, file_name, NULL, DB_BTREE, db_flags, 0);
}
pthread_spin_init(&m, PTHREAD_PROCESS_PRIVATE);
long long t1, t2;
t1 = ustime();
for (i=0; i<thread_num; ++i) {
pthread_create(&threads[i], NULL, insert, (void *) i);
}
for (i = 0; i < thread_num; i++) {
pthread_join(threads[i], &status);
}
t2 = ustime();
printf("%s time diff %lld, qps %f\n", __func__, t2 - t1, TOTAL*1000000.0/(t2-t1));
pthread_spin_destroy(&m);
if (dbp != NULL) {
ret = dbp->close(dbp, 0);
}
if (envp != NULL) {
ret = envp->close(envp, 0);
}
}
void *hybrid(void *arg) {
int i, ret;
DBT key, data;
long pos = (long) arg;
int start = TOTALWRITE*pos/thread_num;
int end = TOTALWRITE*(pos+1)/thread_num;
printf("Thread %ld write %d-%d\n", pos, start, end);
i = start;
while (i++ < end) {
char k[200];
char v[200];
sprintf(k, KEYSTR, i);
sprintf(v, VALUESTR, i);
memset(&key, 0, sizeof(DBT));
memset(&data, 0, sizeof(DBT));
key.data = &k;
key.size = strlen(k) + 1;
data.data = &v;
data.size = strlen(v) + 1;
pthread_spin_lock(&m);
retry:
ret = dbp->put(dbp, NULL, &key, &data, 0);
if (ret == DB_LOCK_DEADLOCK) {
goto retry;
}
dbp->sync(dbp, 0);
pthread_spin_unlock(&m);
}
start = TOTALSEARCH * pos / thread_num;
end = TOTALSEARCH * (pos + 1) / thread_num;
printf("Thread %ld search %d-%d\n", pos, start, end);
i = start;
while (i++ < end) {
char k[200];
char v[200];
sprintf(k, KEYSTR, i % TOTALWRITE);
memset(&key, 0, sizeof(DBT));
memset(&data, 0, sizeof(DBT));
key.data = &k;
key.size = strlen(k) + 1;
data.flags |= DB_DBT_MALLOC;
pthread_spin_lock(&m);
ret = dbp->get(dbp, NULL, &key, &data, 0);
pthread_spin_unlock(&m);
}
pthread_exit((void*) 0);
}
void thread_hybrid() {
int i, ret;
pthread_t threads[MAXTHREADNUM];
void *status;
u_int32_t db_flags, env_flags;
ret = db_env_create(&envp, 0);
// env_flags = DB_CREATE | DB_INIT_TXN | DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL;
env_flags = DB_CREATE | DB_INIT_MPOOL | DB_THREAD;
ret = envp->open(envp, db_home_dir, env_flags, 0);
ret = db_create(&dbp, envp, 0);
// db_flags = DB_CREATE | DB_AUTO_COMMIT;
db_flags = DB_CREATE | DB_THREAD | DB_DBT_MALLOC;
if (engine_type == 2) {
ret = dbp->open(dbp, NULL, file_name, NULL, DB_HASH, db_flags, 0);
} else {
ret = dbp->open(dbp, NULL, file_name, NULL, DB_BTREE, db_flags, 0);
}
pthread_spin_init(&m, PTHREAD_PROCESS_PRIVATE);
long long t1, t2;
t1 = ustime();
for (i=0; i<thread_num; ++i) {
pthread_create(&threads[i], NULL, hybrid, (void *) i);
}
for (i = 0; i < thread_num; i++) {
pthread_join(threads[i], &status);
}
t2 = ustime();
printf("%s time diff %lld, qps %f\n", __func__, t2 - t1, TOTAL*1000000.0/(t2-t1));
pthread_spin_destroy(&m);
if (dbp != NULL) {
ret = dbp->close(dbp, 0);
}
if (envp != NULL) {
ret = envp->close(envp, 0);
}
}
/*
* insert <thread number>
*/
int main(int argc, char *argv[]) {
if (argc < 7) {
return -1;
}
thread_num = atoi(argv[2]);
engine_type = atoi(argv[3]); /*1 btree 2 linear hash*/
gen_templ(atoi(argv[4]), atoi(argv[5]));
int percent = atoi(argv[6]);
TOTALWRITE = TOTAL * percent / 100;
TOTALSEARCH = TOTAL-TOTALWRITE;
if (strcmp(argv[1], "insert") == 0) {
thread_insert();
} else if (strcmp(argv[1], "hybrid") == 0) {
thread_hybrid();
} else {
printf("no test for %s\n", argv[1]);
}
if (KEYSTR != NULL) {
free(KEYSTR);
}
if (VALUESTR != NULL) {
free(VALUESTR);
}
return 0;
}
|
9ffc5b198da6771f57960f1f5c743b50d2863bc2 | 2c3a39409604a33547ac85fc87d2d94358244db5 | /chapter1/job1-2-2.cpp | 4496d4903e5852d3ee13b728f64764a8d62ed2b6 | [] | no_license | kmysen/C-Primer-study | 12635eaa4da476b844c7bb01d594f5327891bba2 | b4e4f8a46fd2858f06635bdc1276f7a85c075329 | refs/heads/master | 2022-04-25T00:12:55.532092 | 2020-04-28T09:59:21 | 2020-04-28T09:59:21 | 258,926,287 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 217 | cpp | job1-2-2.cpp | #include<iostream>
using namespace std;
int main()
{
int a,b;
cout<<"input 2 integer and i will tell you their sum and product!"<<endl;
cin>>a; cin>>b;
cout<<a+b<<" "<<a*b<<endl;
system("pause");
} |
c4bfe4092dadf60ddbbbf8939d60969681471f7d | f703bebbc497e6c91b8da9c19d26cbcc98a897fb | /camps/summer_school_Kremenchuk_2016/day9/D.cpp | d09d119ea71d48960b310ffbe339aee02a19fd35 | [
"MIT"
] | permissive | mstrechen/competitive-programming | 1dc48163fc2960c54099077b7bfc0ed84912d2c2 | ffac439840a71f70580a0ef197e47479e167a0eb | refs/heads/master | 2021-09-22T21:09:24.340863 | 2018-09-16T13:48:51 | 2018-09-16T13:48:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,284 | cpp | D.cpp | #include<iostream>
#include<cstdio>
#include<vector>
using namespace std;
long long max(long long a, long long b)
{
return a>b?a:b;
}
long long min(long long a, long long b)
{
return a<b?a:b;
}
long long getDoubleArea(long long xBe,long long yBe,
long long xEn,long long yEn,
long long x,long long y)
{
return (xBe-x)*(yEn-y)-(xEn-x)*(yBe-y);
}
int getSign(long long a)
{
if(a>0)
return 1;
if(a<0)
return -1;
return 0;
}
struct multigon
{
vector<pair<long long, long long> > sides;
long long maxX, minX, maxY, minY;
multigon()
{
sides.clear();
}
bool read()
{
int n;
cin >> n;
if(n==0)
return 0;
sides.clear();
sides.reserve(n);
sides.push_back(make_pair(0,0));
cin >> sides[0].first >> sides[0].second;
maxX = sides[0].first;
minX = sides[0].first;
maxY = sides[0].second;
minY = sides[0].second;
for(int i = 1; i<n; i++)
{
sides.push_back(make_pair(0,0));
cin >> sides[i].first >> sides[i].second;
maxX = max(maxX, sides[i].first);
maxY = max(maxY, sides[i].second);
minX = min(minX, sides[i].first);
minY = min(minY, sides[i].second);
}
sides.push_back(sides[0]);
return 1;
}
bool isOnSides(long long x, long long y)
{
for(int i = 1; i<sides.size(); i++)
{
long long xBe = sides[i-1].first,
xEn = sides[i].first,
yBe = sides[i-1].second,
yEn = sides[i].second;
if(min(xBe, xEn)<=x&&x<=max(xBe,xEn)&&min(yBe, yEn)<=y&&y<=max(yBe,yEn))
{
if(!getDoubleArea(xBe, yBe, xEn, yEn, x, y))
{
return 1;
}
}
}
return 0;
}
bool isInside(long long x, long long y)
{
long long datInfX = 2000000007,datInfY = 200000008;
int countOfIntersections = 0;
for(int i = 1; i<sides.size(); i++)
{
long long xBe = sides[i-1].first, xEn = sides[i].first,
yBe = sides[i-1].second, yEn = sides[i].second;
if(getSign(getDoubleArea(xBe, yBe, datInfX, datInfY, x, y))!=
getSign(getDoubleArea(xEn, yEn, datInfX, datInfY, x, y))&&
getSign(getDoubleArea(xBe, yBe, x,y, xEn, yEn))!=
getSign(getDoubleArea(xBe, yBe, datInfX, datInfY, xEn, yEn)))
{
countOfIntersections++;
}
}
return (countOfIntersections&1);
}
void solveWithTriangulate()
{
}
} myMultigon;
vector<pair<long long, long long> >answer;
int main()
{
ios::sync_with_stdio(false);
freopen("polygon.in", "r", stdin);
freopen("polygon.out", "w", stdout);
while(myMultigon.read())
{
answer.clear();
for(long long x = myMultigon.minX; x<=myMultigon.maxX; x++)
for(long long y = myMultigon.minY; y<=myMultigon.maxY; y++)
{
if(myMultigon.isOnSides(x,y)||myMultigon.isInside(x,y))
{
answer.push_back(make_pair(x,y));
}
}
cout << answer.size() << '\n';
for(int i =0; i<answer.size(); i++)
{
cout << answer[i].first << ' ' << answer[i].second << '\n';
}
cout<< '\n';
}
return 0;
}
|
6405a73fcf8233a3fe8e55f00d0e57f4792d9e6c | 8225b0dfbc468199bf3356abd4639f02ace48491 | /AliAnalysisTaskWeightedSpectrum.cxx | 57aa9b421a6318a25456764133e7cb5b5af79d87 | [] | no_license | gabrielefronze/Upsilon-Task | 14117428ae288a3199e4b0d4780815b4fc553da9 | 6cc7e075ff9c825ebea57b7e643d6bf64c0ef7b6 | refs/heads/master | 2021-01-17T05:09:15.234043 | 2016-06-12T21:46:36 | 2016-06-12T21:46:36 | 59,654,288 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,831 | cxx | AliAnalysisTaskWeightedSpectrum.cxx | #include <iostream>
using std::cout;
using std::endl;
#include "AliMCEvent.h"
#include "TH1.h"
#include "THnSparse.h"
#include "TF1.h"
#include "TGraphAsymmErrors.h"
#include "TMath.h"
#include "TH3D.h"
#include "TList.h"
#include "TChain.h"
#include "TString.h"
#include "TCanvas.h"
#include "TTree.h"
#include "TFile.h"
#include "TObjArray.h"
#include "AliAnalysisManager.h"
#include "AliInputEventHandler.h"
#include "AliCentrality.h"
#include "AliAODTrack.h"
#include "TLorentzVector.h"
#include "AliAnalysisMuonUtility.h"
#include "AliMultSelection.h"
#include "AliAnalysisTaskWeightedSpectrum.h"
#include "AliMuonTrackCuts.h"
#include "TStyle.h"
#include "TLegend.h"
#include <vector>
using namespace std;
using namespace TMath;
ClassImp(AliAnalysisTaskWeightedSpectrum)
AliAnalysisTaskWeightedSpectrum::AliAnalysisTaskWeightedSpectrum() :
AliAnalysisTaskSE("analysis"),
fOutput(0x0),
fCuts(NULL),
fNEvents(0),
fMode(""),
fRapidityAxis(NULL),
fInputResponseFunctionsMC(NULL),
fInputResponseFunctionsData(NULL),
fIsMC(0)
{
cout<<"### default constructor"<<endl;
}
AliAnalysisTaskWeightedSpectrum::AliAnalysisTaskWeightedSpectrum(AliMuonTrackCuts *cuts, Bool_t isMC, TString inputFileName, TString mode) :
AliAnalysisTaskSE("analysis"),
fOutput(0x0)
{
fOutput = new TList();
fOutput->SetOwner();
fCuts = cuts;
fCuts->SetAllowDefaultParams(kTRUE);
fNEvents=0;
fIsMC=isMC;
fMode=mode.Contains("F");
cout<<"mode is "<<((fMode)?"function":"histo")<<endl;
TFile *inputFile = new TFile(inputFileName,"READ");
cout<<"file "<<inputFile<<endl;
fRapidityAxis = new TAxis();
inputFile->GetObject("rapidity_axis",fRapidityAxis);
cout<<"got axis "<<fRapidityAxis->GetNbins()<<endl;
fInputResponseFunctionsMC = new TObjArray();
fInputResponseFunctionsData = new TObjArray();
cout<<"created array "<<endl;
TObject *buffer;
Double_t rapidityBinWidth = fRapidityAxis->GetBinWidth(1);
Double_t rapidityLow = fRapidityAxis->GetXmin();
if ( fMode==kFALSE ){
cout<<"OK"<<endl;
for (Int_t iInputResponseFunctions = 0; iInputResponseFunctions < fRapidityAxis->GetNbins(); iInputResponseFunctions++) {
printf("Histo_ratio_MC_%f-%f",rapidityLow+rapidityBinWidth*iInputResponseFunctions,rapidityLow+rapidityBinWidth*iInputResponseFunctions+rapidityBinWidth);
inputFile->GetObject(Form("Histo_ratio_MC_%f-%f",rapidityLow+rapidityBinWidth*iInputResponseFunctions,rapidityLow+rapidityBinWidth*iInputResponseFunctions+rapidityBinWidth),buffer);
if (!buffer) cout<<"problems"<<endl;
static_cast<TH1D*>(buffer)->SetDirectory(0);
fInputResponseFunctionsMC->Add(buffer);
inputFile->GetObject(Form("Histo_ratio_data_%f-%f",rapidityLow+rapidityBinWidth*iInputResponseFunctions,rapidityLow+rapidityBinWidth*iInputResponseFunctions+rapidityBinWidth),buffer);
if (!buffer) cout<<"problems"<<endl;
static_cast<TH1D*>(buffer)->SetDirectory(0);
fInputResponseFunctionsData->Add(buffer);
cout<<iInputResponseFunctions<<endl;
}
}
if ( fMode==kTRUE ){
for (Int_t iInputResponseFunctions = 0; iInputResponseFunctions < fRapidityAxis->GetNbins(); iInputResponseFunctions++) {
inputFile->GetObject(Form("MCFittingFunction_%d",iInputResponseFunctions),buffer);
static_cast<TF1*>(buffer)->SetName(Form("MCFittingFunction_%f-%f",rapidityLow+rapidityBinWidth*iInputResponseFunctions,rapidityLow+rapidityBinWidth*iInputResponseFunctions+rapidityBinWidth));
if (!buffer) cout<<"problems"<<endl;
fInputResponseFunctionsMC->Add(buffer);
inputFile->GetObject(Form("dataFittingFunction_%d",iInputResponseFunctions),buffer);
static_cast<TF1*>(buffer)->SetName(Form("dataFittingFunction_%f-%f",rapidityLow+rapidityBinWidth*iInputResponseFunctions,rapidityLow+rapidityBinWidth*iInputResponseFunctions+rapidityBinWidth));
if (!buffer) cout<<"problems"<<endl;
fInputResponseFunctionsData->Add(buffer);
cout<<iInputResponseFunctions<<endl;
}
}
cout<<"Response parametrization obtained!"<<endl;
buffer=0x0;
//delete buffer;
inputFile->Close();
DefineInput(0,TChain::Class());
DefineOutput(1,TList::Class());
}
AliAnalysisTaskWeightedSpectrum::~AliAnalysisTaskWeightedSpectrum()
{
Info("~AliAnalysisTaskWeightedSpectrum","Calling Destructor");
if ( fCuts ) fCuts=0x0;
if ( fOutput ) delete fOutput;
if ( fRapidityAxis ) delete fRapidityAxis;
if ( fInputResponseFunctionsMC ) delete fInputResponseFunctionsMC;
if ( fInputResponseFunctionsData ) delete fInputResponseFunctionsData;
}
void AliAnalysisTaskWeightedSpectrum::NotifyRun()
{
printf("Setting run number for cuts\n");
fCuts->SetRun(fInputHandler);
}
void AliAnalysisTaskWeightedSpectrum::UserCreateOutputObjects()
{
cout<<"Creating Output objects"<<endl;
TH3D *histoMC = new TH3D("histo_MC","histo_MC",240,0.,12.,15,2.5,4.,320,0.,16.);
TH3D *histoData = new TH3D("histo_data","histo_data",240,0.,12.,15,2.5,4.,320,0.,16.);
fOutput->AddAt(histoMC,0);
fOutput->AddAt(histoData,1);
cout<<"Output correctly instanced"<<endl;
PostData(1,fOutput);
}
void AliAnalysisTaskWeightedSpectrum::UserExec(Option_t *)
{
//cout<<"ANALYSIS BEGINS"<<endl;
TH3D *histoMC=static_cast<TH3D*>(fOutput->At(0));
TH3D *histoData=static_cast<TH3D*>(fOutput->At(1));
//cout<<"Loading THnSparse"<<endl;
// reading how much tracks are stored in the input event and the event centrality
Int_t ntracks=AliAnalysisMuonUtility::GetNTracks(InputEvent());
Double_t eventCentrality=0.;
//cout<<"Centrality computation..."<<endl;
AliMultSelection *multSelection = static_cast<AliMultSelection*>(InputEvent()->FindListObject("MultSelection"));
if ( multSelection ) eventCentrality=multSelection->GetMultiplicityPercentile("V0M");
TObjArray *muPlus = new TObjArray();
TObjArray *muMinus = new TObjArray();
vector<Int_t> motherIndexes;
//cout<<"Created TObjArrays"<<endl;
// loop over the tracks to store only muon ones to obtain every possible dimuon
AliAODTrack* muonBufferData=0x0;
AliVParticle* muonBufferMC=0x0;
AliVParticle* motherBufferMC=0x0;
for(Int_t itrack=0;itrack<ntracks;itrack++){
//cout<<"### "<<itrack<<endl;
muonBufferData=(AliAODTrack*)AliAnalysisMuonUtility::GetTrack(itrack,InputEvent());
// is the track selected via standard muon cuts?
if ( (!fCuts->IsSelected(muonBufferData))) continue;
// il kFALSE รจ perchรจ in realtร la scelta dell'origine dei muoni servirร piรน tardi (quando valuteremo il sistematico)
if( fIsMC ){ // if the analysed run is a MC run the macro excludes any particle not recognized as a muon from upsilon
Int_t mcDaughterIndex=muonBufferData->GetLabel();
Int_t mcMotherIndex=0;
// check if there's any MC truth info related to the particle iTrack
if ( mcDaughterIndex<0 ) continue; // this particle has no MC truth information
else {
muonBufferMC=MCEvent()->GetTrack(mcDaughterIndex);
// check for particle identity
if ( TMath::Abs(muonBufferMC->PdgCode())!=13 ) continue; // this particle is not a muon
//cout<<"It's a muon! Cheers!!!"<<endl;
mcMotherIndex=muonBufferMC->GetMother();
if ( mcMotherIndex<0 ) continue;
motherBufferMC=MCEvent()->GetTrack(mcMotherIndex);
// check for particle mother identity
if ( motherBufferMC->PdgCode()!=553 ) continue; // the mother of the studied particle is not a upsilon
if ( muonBufferMC->Charge()>0. ) muPlus->AddAt(muonBufferData, mcMotherIndex);
if ( muonBufferMC->Charge()<0. ) muMinus->AddAt(muonBufferData, mcMotherIndex);
motherIndexes.push_back (mcMotherIndex);
//cout<<"found upsilon #"<<mcMotherIndex<<endl;
//else //cout<<"And its mother is an Upsilon! Double cheers!!!"<<endl;
}
}
}
AliAODTrack *firstMuon;
AliAODTrack *secondMuon;
for(std::vector<Int_t>::iterator mothersIterator = motherIndexes.begin(); mothersIterator != motherIndexes.end(); ++mothersIterator) {
//cout<<"mother #"<<*mothersIterator<<endl;
firstMuon=(AliAODTrack*)muPlus->At(*mothersIterator);
secondMuon=(AliAODTrack*)muMinus->At(*mothersIterator);
if ( !firstMuon || !secondMuon ) continue;
TLorentzVector dimuon = AliAnalysisMuonUtility::GetTrackPair(firstMuon,secondMuon);
//cout<<"dimuon created"<<endl;
Double_t rapidity1 = TMath::Abs(firstMuon->Y());
Double_t rapidity2 = TMath::Abs(secondMuon->Y());
Int_t rapidityBin1 = fRapidityAxis->FindBin(rapidity1) - 1;
Int_t rapidityBin2 = fRapidityAxis->FindBin(rapidity2) - 1;
// if ( rapidityBin1==10 ) rapidityBin1=9;
// if ( rapidityBin2==10 ) rapidityBin2=9;
//printf("%f, %f\n", rapidity1, rapidity2);
Double_t pt1 = firstMuon->Pt();
Double_t pt2 = secondMuon->Pt();
TObject *weightingFunction1MC = fInputResponseFunctionsMC->At(rapidityBin1);
TObject *weightingFunction2MC = fInputResponseFunctionsMC->At(rapidityBin2);
TObject *weightingFunction1Data = fInputResponseFunctionsData->At(rapidityBin1);
TObject *weightingFunction2Data = fInputResponseFunctionsData->At(rapidityBin2);
Double_t weightMC;
Double_t weightData;
//cout<<"Computing weights"<<endl;
//cout<<fInputResponseFunctionsMC->GetEntries()<<endl;
if ( !fMode ){
//cout<<"histo mode"<<endl;
TH1D *weightingHisto1MC = static_cast<TH1D*>(weightingFunction1MC);
TH1D *weightingHisto1Data = static_cast<TH1D*>(weightingFunction1Data);
TH1D *weightingHisto2MC = static_cast<TH1D*>(weightingFunction2MC);
TH1D *weightingHisto2Data = static_cast<TH1D*>(weightingFunction2Data);
//cout<<weightingHisto1Data->GetName()<<endl;
//cout<<weightingHisto2Data->GetName()<<endl;
weightMC = weightingHisto1MC->GetBinContent(weightingHisto1MC->FindBin(pt1));
weightData = weightingHisto1MC->GetBinContent(weightingHisto1Data->FindBin(pt1));
weightMC *= weightingHisto2MC->GetBinContent(weightingHisto2MC->FindBin(pt2));
weightData *= weightingHisto2MC->GetBinContent(weightingHisto2Data->FindBin(pt2));
} else if ( fMode ){
//cout<<"function mode"<<endl;
TF1 *weightingFunctionMC1 = static_cast<TF1*>(weightingFunction1MC);
TF1 *weightingFunctionData1 = static_cast<TF1*>(weightingFunction1Data);
TF1 *weightingFunctionMC2 = static_cast<TF1*>(weightingFunction2MC);
TF1 *weightingFunctionData2 = static_cast<TF1*>(weightingFunction2Data);
//cout<<weightingFunctionData1->GetName()<<endl;
//cout<<weightingFunctionData2->GetName()<<endl;
weightMC = weightingFunctionMC1->Eval(pt1);
weightData = weightingFunctionData1->Eval(pt1);
weightMC *= weightingFunctionMC2->Eval(pt2);
weightData *= weightingFunctionData2->Eval(pt2);
}
Double_t pt = dimuon.Pt();
Double_t rapidity = TMath::Abs(dimuon.Rapidity());
Double_t mass = dimuon.M();
histoMC->Fill(pt, rapidity, mass, weightMC);
histoData->Fill(pt, rapidity, mass, weightData);
//printf("%f, %f, %f, %f\n", pt, rapidity, mass, weightMC);
//printf("%f, %f, %f, %f\n", pt, rapidity, mass, weightData);
}
delete muPlus;
delete muMinus;
PostData(1,fOutput);
////cout<<"########## ANALYSIS DONE! ##########"<<endl;
return;
}
void AliAnalysisTaskWeightedSpectrum::Terminate(Option_t *) {
gStyle->SetOptStat(0);
gStyle->SetMarkerSize(0.8);
fOutput=dynamic_cast<TList*>(GetOutputData(1));
TH3D *histoMC=static_cast<TH3D*>(fOutput->At(0));
TH3D *histoData=static_cast<TH3D*>(fOutput->At(1));
histoMC->Sumw2(kTRUE);
histoData->Sumw2(kTRUE);
histoMC->GetXaxis()->SetTitle("P_{t} [Gev/c]");
histoMC->GetYaxis()->SetTitle("Rapidity");
histoMC->GetZaxis()->SetTitle("Mass [Gev/c^2]");
histoData->GetXaxis()->SetTitle("P_{t} [Gev/c]");
histoData->GetYaxis()->SetTitle("Rapidity");
histoData->GetZaxis()->SetTitle("Mass [Gev/c^2]");
//____________________________________________________________________________
//histoMC->GetYaxis()->SetRangeUser(2.5,3.0);
//histoData->GetYaxis()->SetRangeUser(2.5,3.0);
TH1D *integratedSpectrumMC1 = histoMC->ProjectionY("integratedSpectrumMC1");
integratedSpectrumMC1->SetName("MCSpectrum_2.5-3.0");
integratedSpectrumMC1->SetTitle("Counts_{(MC,Data)} = Apt_{MC} #times #frac{Lpt_{(MC,Data)}}{Apt_{(MC,Data)}} 2.5<#eta<4.0");
integratedSpectrumMC1->GetYaxis()->SetTitle("Counts");
//integratedSpectrumMC1->SetTitle("2.5<#eta<3.0");
integratedSpectrumMC1->SetLineColor(kRed);
integratedSpectrumMC1->SetLineWidth(2);
TH1D *integratedSpectrumData1 = histoData->ProjectionY("integratedSpectrumData1");
integratedSpectrumData1->SetName("DataSpectrum_2.5-3.0");
integratedSpectrumData1->SetTitle("DataSpectrum_2.5-3.0");
integratedSpectrumMC1->Rebin(5);
integratedSpectrumData1->Rebin(5);
TH1D *ratio1 = (TH1D*)integratedSpectrumMC1->Clone();
ratio1->SetName("ratio1");
ratio1->SetTitle("Ratio = #frac{Counts_{MC}-Counts_{Data}}{Counts_{Data}} 2.5<#eta<4.0");
ratio1->GetYaxis()->SetTitle("Ratio");
ratio1->Add(integratedSpectrumData1, -1.);
ratio1->Divide(integratedSpectrumData1);
ratio1->SetLineWidth(1);
ratio1->SetLineColor(kBlack);
TLegend *leg1 = new TLegend(0.1,0.8,0.9,0.9);
leg1->AddEntry(integratedSpectrumMC1,"Counts_{MC} (weight by simulated trigger response)","l");
leg1->AddEntry(integratedSpectrumData1,"Counts_{Data} (weight by real trigger response)","l");
TCanvas *canv1=new TCanvas("canv1","canv1");
canv1->Divide(2);
canv1->cd(1)->SetLogy();
integratedSpectrumMC1->Draw("e");
integratedSpectrumData1->Draw("same e");
leg1->Draw();
canv1->cd(2);
ratio1->Draw("e");
//____________________________________________________________________________
//histoMC->GetYaxis()->SetRangeUser(3.0,3.5);
//histoData->GetYaxis()->SetRangeUser(3.0,3.5);
TH1D *integratedSpectrumMC2 = histoMC->ProjectionY("integratedSpectrumMC2");
integratedSpectrumMC2->SetName("MCSpectrum_3.0-3.5");
integratedSpectrumMC2->SetTitle("Counts_{(MC,Data)} = Apt_{MC} #times #frac{Lpt_{(MC,Data)}}{Apt_{(MC,Data)}} 2.5<#eta<4.0");
integratedSpectrumMC2->GetYaxis()->SetTitle("Counts");
//integratedSpectrumMC2->SetTitle("3.0<#eta<3.5");
integratedSpectrumMC2->SetLineColor(kRed);
integratedSpectrumMC2->SetLineWidth(2);
TH1D *integratedSpectrumData2 = histoData->ProjectionY("integratedSpectrumData2");
integratedSpectrumData2->SetName("DataSpectrum_3.0-3.5");
integratedSpectrumData2->SetTitle("DataSpectrum_3.0-3.5");
integratedSpectrumMC2->Rebin(5);
integratedSpectrumData2->Rebin(5);
TH1D *ratio2 = (TH1D*)integratedSpectrumMC2->Clone();
ratio2->SetName("ratio2");
ratio2->SetTitle("Ratio = #frac{Counts_{MC}-Counts_{Data}}{Counts_{Data}} 2.5<#eta<4.0");
ratio2->GetYaxis()->SetTitle("Ratio");
ratio2->Add(integratedSpectrumData2, -1.);
ratio2->Divide(integratedSpectrumData2);
ratio2->SetLineWidth(1);
ratio2->SetLineColor(kBlack);
TLegend *leg2 = new TLegend(0.1,0.8,0.9,0.9);
leg2->AddEntry(integratedSpectrumMC2,"Counts_{MC} (weight by simulated trigger response)","l");
leg2->AddEntry(integratedSpectrumData2,"Counts_{Data} (weight by real trigger response)","l");
TCanvas *canv2=new TCanvas("canv2","canv2");
canv2->Divide(2);
canv2->cd(1)->SetLogy();
integratedSpectrumMC2->Draw("e");
integratedSpectrumData2->Draw("same e");
leg2->Draw();
canv2->cd(2);
ratio2->Draw("e");
//____________________________________________________________________________
//histoMC->GetYaxis()->SetRangeUser(3.5,4.0);
//histoData->GetYaxis()->SetRangeUser(3.5,4.0);
TH1D *integratedSpectrumMC3 = histoMC->ProjectionY("integratedSpectrumMC3");
integratedSpectrumMC3->SetName("MCSpectrum_3.5-4.0");
integratedSpectrumMC3->SetTitle("Counts_{(MC,Data)} = Apt_{MC} #times #frac{Lpt_{(MC,Data)}}{Apt_{(MC,Data)}} 2.5<#eta<4.0");
integratedSpectrumMC3->GetYaxis()->SetTitle("Counts");
//integratedSpectrumMC3->SetTitle("3.5<#eta<4.0");
integratedSpectrumMC3->SetLineColor(kRed);
integratedSpectrumMC3->SetLineWidth(2);
TH1D *integratedSpectrumData3 = histoData->ProjectionY("integratedSpectrumData3");
integratedSpectrumData3->SetName("DataSpectrum_3.5-4.0");
integratedSpectrumData3->SetTitle("DataSpectrum_3.5-4.0");
integratedSpectrumMC3->Rebin(5);
integratedSpectrumData3->Rebin(5);
TH1D *ratio3 = (TH1D*)integratedSpectrumMC3->Clone();
ratio3->SetName("ratio3");
ratio3->SetTitle("Ratio = #frac{Counts_{MC}-Counts_{Data}}{Counts_{Data}} 2.5<#eta<4.0");
ratio3->GetYaxis()->SetTitle("Ratio");
ratio3->Add(integratedSpectrumData3, -1.);
ratio3->Divide(integratedSpectrumData3);
ratio3->SetLineWidth(1);
ratio3->SetLineColor(kBlack);
TLegend *leg3 = new TLegend(0.1,0.8,0.9,0.9);
leg3->AddEntry(integratedSpectrumMC3,"Counts_{MC} (weight by simulated trigger response)","l");
leg3->AddEntry(integratedSpectrumData3,"Counts_{Data} (weight by real trigger response)","l");
TCanvas *canv3=new TCanvas("canv3","canv3");
canv3->Divide(2);
canv3->cd(1)->SetLogy();
integratedSpectrumMC3->Draw("e");
integratedSpectrumData3->Draw("same e");
leg3->Draw();
canv3->cd(2);
ratio3->Draw("e");
cout << "**********************" << endl;
cout << "* Analysis completed *" << endl;
cout << "**********************" << endl;
return;
}
|
2186daea1e1011c771d3b1618dcc2d9e394e2430 | a6f47c6b702055aa2cc1a9ee051017320a8c602b | /scene/resources/environment.cpp | 069364e7a391d167dd3b7d08c36d0a80a430bad7 | [
"FTL",
"Zlib",
"MIT",
"BSD-3-Clause",
"Bitstream-Vera",
"CC0-1.0",
"MPL-2.0",
"OFL-1.1",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference",
"Unlicense",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-free-unknown"
] | permissive | Stary2001/godot | 849ca3045a687d9b34de7cc24a8b6d26f89f95bc | 00c6ce9716ed542997bc2b59136bceb3729db970 | refs/heads/3.5.2-stable_switch | 2023-05-25T08:38:55.387308 | 2023-04-14T23:07:10 | 2023-04-23T20:32:29 | 148,190,960 | 306 | 38 | MIT | 2023-05-19T20:10:22 | 2018-09-10T17:11:15 | C++ | UTF-8 | C++ | false | false | 67,860 | cpp | environment.cpp | /**************************************************************************/
/* environment.cpp */
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/**************************************************************************/
#include "environment.h"
#include "core/project_settings.h"
#include "servers/visual_server.h"
#include "texture.h"
RID Environment::get_rid() const {
return environment;
}
void Environment::set_background(BGMode p_bg) {
bg_mode = p_bg;
VS::get_singleton()->environment_set_background(environment, VS::EnvironmentBG(p_bg));
_change_notify();
}
void Environment::set_sky(const Ref<Sky> &p_sky) {
bg_sky = p_sky;
RID sb_rid;
if (bg_sky.is_valid()) {
sb_rid = bg_sky->get_rid();
}
VS::get_singleton()->environment_set_sky(environment, sb_rid);
}
void Environment::set_sky_custom_fov(float p_scale) {
bg_sky_custom_fov = p_scale;
VS::get_singleton()->environment_set_sky_custom_fov(environment, p_scale);
}
void Environment::set_sky_orientation(const Basis &p_orientation) {
bg_sky_orientation = p_orientation;
_change_notify("background_sky_rotation");
_change_notify("background_sky_rotation_degrees");
VS::get_singleton()->environment_set_sky_orientation(environment, bg_sky_orientation);
}
void Environment::set_sky_rotation(const Vector3 &p_euler_rad) {
bg_sky_orientation.set_euler(p_euler_rad);
_change_notify("background_sky_orientation");
_change_notify("background_sky_rotation_degrees");
VS::get_singleton()->environment_set_sky_orientation(environment, bg_sky_orientation);
}
void Environment::set_sky_rotation_degrees(const Vector3 &p_euler_deg) {
set_sky_rotation(p_euler_deg * Math_PI / 180.0);
_change_notify("background_sky_rotation");
}
void Environment::set_bg_color(const Color &p_color) {
bg_color = p_color;
VS::get_singleton()->environment_set_bg_color(environment, p_color);
}
void Environment::set_bg_energy(float p_energy) {
bg_energy = p_energy;
VS::get_singleton()->environment_set_bg_energy(environment, p_energy);
}
void Environment::set_canvas_max_layer(int p_max_layer) {
bg_canvas_max_layer = p_max_layer;
VS::get_singleton()->environment_set_canvas_max_layer(environment, p_max_layer);
}
void Environment::set_ambient_light_color(const Color &p_color) {
ambient_color = p_color;
VS::get_singleton()->environment_set_ambient_light(environment, ambient_color, ambient_energy, ambient_sky_contribution);
}
void Environment::set_ambient_light_energy(float p_energy) {
ambient_energy = p_energy;
VS::get_singleton()->environment_set_ambient_light(environment, ambient_color, ambient_energy, ambient_sky_contribution);
}
void Environment::set_ambient_light_sky_contribution(float p_energy) {
// Sky contribution values outside the [0.0; 1.0] range don't make sense and
// can result in negative colors.
ambient_sky_contribution = CLAMP(p_energy, 0.0, 1.0);
VS::get_singleton()->environment_set_ambient_light(environment, ambient_color, ambient_energy, ambient_sky_contribution);
}
void Environment::set_camera_feed_id(int p_camera_feed_id) {
camera_feed_id = p_camera_feed_id;
VS::get_singleton()->environment_set_camera_feed_id(environment, camera_feed_id);
};
Environment::BGMode Environment::get_background() const {
return bg_mode;
}
Ref<Sky> Environment::get_sky() const {
return bg_sky;
}
float Environment::get_sky_custom_fov() const {
return bg_sky_custom_fov;
}
Basis Environment::get_sky_orientation() const {
return bg_sky_orientation;
}
Vector3 Environment::get_sky_rotation() const {
// should we cache this? maybe overkill
return bg_sky_orientation.get_euler();
}
Vector3 Environment::get_sky_rotation_degrees() const {
return get_sky_rotation() * 180.0 / Math_PI;
}
Color Environment::get_bg_color() const {
return bg_color;
}
float Environment::get_bg_energy() const {
return bg_energy;
}
int Environment::get_canvas_max_layer() const {
return bg_canvas_max_layer;
}
Color Environment::get_ambient_light_color() const {
return ambient_color;
}
float Environment::get_ambient_light_energy() const {
return ambient_energy;
}
float Environment::get_ambient_light_sky_contribution() const {
return ambient_sky_contribution;
}
int Environment::get_camera_feed_id() const {
return camera_feed_id;
}
void Environment::set_tonemapper(ToneMapper p_tone_mapper) {
tone_mapper = p_tone_mapper;
VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey);
_change_notify();
}
Environment::ToneMapper Environment::get_tonemapper() const {
return tone_mapper;
}
void Environment::set_tonemap_exposure(float p_exposure) {
tonemap_exposure = p_exposure;
VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey);
}
float Environment::get_tonemap_exposure() const {
return tonemap_exposure;
}
void Environment::set_tonemap_white(float p_white) {
tonemap_white = p_white;
VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey);
}
float Environment::get_tonemap_white() const {
return tonemap_white;
}
void Environment::set_tonemap_auto_exposure(bool p_enabled) {
tonemap_auto_exposure = p_enabled;
VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey);
_change_notify();
}
bool Environment::get_tonemap_auto_exposure() const {
return tonemap_auto_exposure;
}
void Environment::set_tonemap_auto_exposure_max(float p_auto_exposure_max) {
tonemap_auto_exposure_max = p_auto_exposure_max;
VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey);
}
float Environment::get_tonemap_auto_exposure_max() const {
return tonemap_auto_exposure_max;
}
void Environment::set_tonemap_auto_exposure_min(float p_auto_exposure_min) {
tonemap_auto_exposure_min = p_auto_exposure_min;
VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey);
}
float Environment::get_tonemap_auto_exposure_min() const {
return tonemap_auto_exposure_min;
}
void Environment::set_tonemap_auto_exposure_speed(float p_auto_exposure_speed) {
tonemap_auto_exposure_speed = p_auto_exposure_speed;
VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey);
}
float Environment::get_tonemap_auto_exposure_speed() const {
return tonemap_auto_exposure_speed;
}
void Environment::set_tonemap_auto_exposure_grey(float p_auto_exposure_grey) {
tonemap_auto_exposure_grey = p_auto_exposure_grey;
VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey);
}
float Environment::get_tonemap_auto_exposure_grey() const {
return tonemap_auto_exposure_grey;
}
void Environment::set_adjustment_enable(bool p_enable) {
adjustment_enabled = p_enable;
VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID());
_change_notify();
}
bool Environment::is_adjustment_enabled() const {
return adjustment_enabled;
}
void Environment::set_adjustment_brightness(float p_brightness) {
adjustment_brightness = p_brightness;
VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID());
}
float Environment::get_adjustment_brightness() const {
return adjustment_brightness;
}
void Environment::set_adjustment_contrast(float p_contrast) {
adjustment_contrast = p_contrast;
VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID());
}
float Environment::get_adjustment_contrast() const {
return adjustment_contrast;
}
void Environment::set_adjustment_saturation(float p_saturation) {
adjustment_saturation = p_saturation;
VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID());
}
float Environment::get_adjustment_saturation() const {
return adjustment_saturation;
}
void Environment::set_adjustment_color_correction(const Ref<Texture> &p_ramp) {
adjustment_color_correction = p_ramp;
VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID());
}
Ref<Texture> Environment::get_adjustment_color_correction() const {
return adjustment_color_correction;
}
void Environment::_validate_property(PropertyInfo &property) const {
if (property.name == "background_sky" || property.name == "background_sky_custom_fov" || property.name == "background_sky_orientation" || property.name == "background_sky_rotation" || property.name == "background_sky_rotation_degrees" || property.name == "ambient_light/sky_contribution") {
if (bg_mode != BG_SKY && bg_mode != BG_COLOR_SKY) {
property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL;
}
}
if (property.name == "background_color") {
if (bg_mode != BG_COLOR && bg_mode != BG_COLOR_SKY) {
property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL;
}
}
if (property.name == "background_canvas_max_layer") {
if (bg_mode != BG_CANVAS) {
property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL;
}
}
if (property.name == "background_camera_feed_id") {
if (bg_mode != BG_CAMERA_FEED) {
property.usage = PROPERTY_USAGE_NOEDITOR;
}
}
if (property.name == "tonemap_white") {
if (tone_mapper == TONE_MAPPER_LINEAR) {
property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL;
}
}
static const char *hide_prefixes[] = {
"fog_",
"auto_exposure_",
"ss_reflections_",
"ssao_",
"dof_blur_far_",
"dof_blur_near_",
"glow_",
"adjustment_",
nullptr
};
static const char *high_end_prefixes[] = {
"auto_exposure_",
"tonemap_",
"ss_reflections_",
"ssao_",
nullptr
};
const char **prefixes = hide_prefixes;
while (*prefixes) {
String prefix = String(*prefixes);
String enabled = prefix + "enabled";
if (property.name.begins_with(prefix) && property.name != enabled && !bool(get(enabled))) {
property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL;
return;
}
prefixes++;
}
if (VisualServer::get_singleton()->is_low_end()) {
prefixes = high_end_prefixes;
while (*prefixes) {
String prefix = String(*prefixes);
if (property.name.begins_with(prefix)) {
property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL;
return;
}
prefixes++;
}
}
}
void Environment::set_ssr_enabled(bool p_enable) {
ssr_enabled = p_enable;
VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness);
_change_notify();
}
bool Environment::is_ssr_enabled() const {
return ssr_enabled;
}
void Environment::set_ssr_max_steps(int p_steps) {
ssr_max_steps = p_steps;
VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness);
}
int Environment::get_ssr_max_steps() const {
return ssr_max_steps;
}
void Environment::set_ssr_fade_in(float p_fade_in) {
ssr_fade_in = p_fade_in;
VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness);
}
float Environment::get_ssr_fade_in() const {
return ssr_fade_in;
}
void Environment::set_ssr_fade_out(float p_fade_out) {
ssr_fade_out = p_fade_out;
VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness);
}
float Environment::get_ssr_fade_out() const {
return ssr_fade_out;
}
void Environment::set_ssr_depth_tolerance(float p_depth_tolerance) {
ssr_depth_tolerance = p_depth_tolerance;
VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness);
}
float Environment::get_ssr_depth_tolerance() const {
return ssr_depth_tolerance;
}
void Environment::set_ssr_rough(bool p_enable) {
ssr_roughness = p_enable;
VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness);
}
bool Environment::is_ssr_rough() const {
return ssr_roughness;
}
void Environment::set_ssao_enabled(bool p_enable) {
ssao_enabled = p_enable;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
_change_notify();
}
bool Environment::is_ssao_enabled() const {
return ssao_enabled;
}
void Environment::set_ssao_radius(float p_radius) {
ssao_radius = p_radius;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
float Environment::get_ssao_radius() const {
return ssao_radius;
}
void Environment::set_ssao_intensity(float p_intensity) {
ssao_intensity = p_intensity;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
float Environment::get_ssao_intensity() const {
return ssao_intensity;
}
void Environment::set_ssao_radius2(float p_radius) {
ssao_radius2 = p_radius;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
float Environment::get_ssao_radius2() const {
return ssao_radius2;
}
void Environment::set_ssao_intensity2(float p_intensity) {
ssao_intensity2 = p_intensity;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
float Environment::get_ssao_intensity2() const {
return ssao_intensity2;
}
void Environment::set_ssao_bias(float p_bias) {
ssao_bias = p_bias;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
float Environment::get_ssao_bias() const {
return ssao_bias;
}
void Environment::set_ssao_direct_light_affect(float p_direct_light_affect) {
ssao_direct_light_affect = p_direct_light_affect;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
float Environment::get_ssao_direct_light_affect() const {
return ssao_direct_light_affect;
}
void Environment::set_ssao_ao_channel_affect(float p_ao_channel_affect) {
ssao_ao_channel_affect = p_ao_channel_affect;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
float Environment::get_ssao_ao_channel_affect() const {
return ssao_ao_channel_affect;
}
void Environment::set_ssao_color(const Color &p_color) {
ssao_color = p_color;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
Color Environment::get_ssao_color() const {
return ssao_color;
}
void Environment::set_ssao_blur(SSAOBlur p_blur) {
ssao_blur = p_blur;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
Environment::SSAOBlur Environment::get_ssao_blur() const {
return ssao_blur;
}
void Environment::set_ssao_quality(SSAOQuality p_quality) {
ssao_quality = p_quality;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
Environment::SSAOQuality Environment::get_ssao_quality() const {
return ssao_quality;
}
void Environment::set_ssao_edge_sharpness(float p_edge_sharpness) {
ssao_edge_sharpness = p_edge_sharpness;
VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness);
}
float Environment::get_ssao_edge_sharpness() const {
return ssao_edge_sharpness;
}
void Environment::set_glow_enabled(bool p_enabled) {
glow_enabled = p_enabled;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
_change_notify();
}
bool Environment::is_glow_enabled() const {
return glow_enabled;
}
void Environment::set_glow_level(int p_level, bool p_enabled) {
ERR_FAIL_INDEX(p_level, VS::MAX_GLOW_LEVELS);
if (p_enabled) {
glow_levels |= (1 << p_level);
} else {
glow_levels &= ~(1 << p_level);
}
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
bool Environment::is_glow_level_enabled(int p_level) const {
ERR_FAIL_INDEX_V(p_level, VS::MAX_GLOW_LEVELS, false);
return glow_levels & (1 << p_level);
}
void Environment::set_glow_intensity(float p_intensity) {
glow_intensity = p_intensity;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
float Environment::get_glow_intensity() const {
return glow_intensity;
}
void Environment::set_glow_strength(float p_strength) {
glow_strength = p_strength;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
float Environment::get_glow_strength() const {
return glow_strength;
}
void Environment::set_glow_bloom(float p_threshold) {
glow_bloom = p_threshold;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
float Environment::get_glow_bloom() const {
return glow_bloom;
}
void Environment::set_glow_blend_mode(GlowBlendMode p_mode) {
glow_blend_mode = p_mode;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
Environment::GlowBlendMode Environment::get_glow_blend_mode() const {
return glow_blend_mode;
}
void Environment::set_glow_hdr_bleed_threshold(float p_threshold) {
glow_hdr_bleed_threshold = p_threshold;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
float Environment::get_glow_hdr_bleed_threshold() const {
return glow_hdr_bleed_threshold;
}
void Environment::set_glow_hdr_luminance_cap(float p_amount) {
glow_hdr_luminance_cap = p_amount;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
float Environment::get_glow_hdr_luminance_cap() const {
return glow_hdr_luminance_cap;
}
void Environment::set_glow_hdr_bleed_scale(float p_scale) {
glow_hdr_bleed_scale = p_scale;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
float Environment::get_glow_hdr_bleed_scale() const {
return glow_hdr_bleed_scale;
}
void Environment::set_glow_bicubic_upscale(bool p_enable) {
glow_bicubic_upscale = p_enable;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
bool Environment::is_glow_bicubic_upscale_enabled() const {
return glow_bicubic_upscale;
}
void Environment::set_glow_high_quality(bool p_enable) {
glow_high_quality = p_enable;
VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality);
}
bool Environment::is_glow_high_quality_enabled() const {
return glow_high_quality;
}
void Environment::set_dof_blur_far_enabled(bool p_enable) {
dof_blur_far_enabled = p_enable;
VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality));
_change_notify();
}
bool Environment::is_dof_blur_far_enabled() const {
return dof_blur_far_enabled;
}
void Environment::set_dof_blur_far_distance(float p_distance) {
dof_blur_far_distance = p_distance;
VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality));
}
float Environment::get_dof_blur_far_distance() const {
return dof_blur_far_distance;
}
void Environment::set_dof_blur_far_transition(float p_distance) {
dof_blur_far_transition = p_distance;
VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality));
}
float Environment::get_dof_blur_far_transition() const {
return dof_blur_far_transition;
}
void Environment::set_dof_blur_far_amount(float p_amount) {
dof_blur_far_amount = p_amount;
VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality));
}
float Environment::get_dof_blur_far_amount() const {
return dof_blur_far_amount;
}
void Environment::set_dof_blur_far_quality(DOFBlurQuality p_quality) {
dof_blur_far_quality = p_quality;
VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality));
}
Environment::DOFBlurQuality Environment::get_dof_blur_far_quality() const {
return dof_blur_far_quality;
}
void Environment::set_dof_blur_near_enabled(bool p_enable) {
dof_blur_near_enabled = p_enable;
VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality));
_change_notify();
}
bool Environment::is_dof_blur_near_enabled() const {
return dof_blur_near_enabled;
}
void Environment::set_dof_blur_near_distance(float p_distance) {
dof_blur_near_distance = p_distance;
VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality));
}
float Environment::get_dof_blur_near_distance() const {
return dof_blur_near_distance;
}
void Environment::set_dof_blur_near_transition(float p_distance) {
dof_blur_near_transition = p_distance;
VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality));
}
float Environment::get_dof_blur_near_transition() const {
return dof_blur_near_transition;
}
void Environment::set_dof_blur_near_amount(float p_amount) {
dof_blur_near_amount = p_amount;
VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality));
}
float Environment::get_dof_blur_near_amount() const {
return dof_blur_near_amount;
}
void Environment::set_dof_blur_near_quality(DOFBlurQuality p_quality) {
dof_blur_near_quality = p_quality;
VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality));
}
Environment::DOFBlurQuality Environment::get_dof_blur_near_quality() const {
return dof_blur_near_quality;
}
void Environment::set_fog_enabled(bool p_enabled) {
fog_enabled = p_enabled;
VS::get_singleton()->environment_set_fog(environment, fog_enabled, fog_color, fog_sun_color, fog_sun_amount);
_change_notify();
}
bool Environment::is_fog_enabled() const {
return fog_enabled;
}
void Environment::set_fog_color(const Color &p_color) {
fog_color = p_color;
VS::get_singleton()->environment_set_fog(environment, fog_enabled, fog_color, fog_sun_color, fog_sun_amount);
}
Color Environment::get_fog_color() const {
return fog_color;
}
void Environment::set_fog_sun_color(const Color &p_color) {
fog_sun_color = p_color;
VS::get_singleton()->environment_set_fog(environment, fog_enabled, fog_color, fog_sun_color, fog_sun_amount);
}
Color Environment::get_fog_sun_color() const {
return fog_sun_color;
}
void Environment::set_fog_sun_amount(float p_amount) {
fog_sun_amount = p_amount;
VS::get_singleton()->environment_set_fog(environment, fog_enabled, fog_color, fog_sun_color, fog_sun_amount);
}
float Environment::get_fog_sun_amount() const {
return fog_sun_amount;
}
void Environment::set_fog_depth_enabled(bool p_enabled) {
fog_depth_enabled = p_enabled;
VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve);
}
bool Environment::is_fog_depth_enabled() const {
return fog_depth_enabled;
}
void Environment::set_fog_depth_begin(float p_distance) {
fog_depth_begin = p_distance;
VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve);
}
float Environment::get_fog_depth_begin() const {
return fog_depth_begin;
}
void Environment::set_fog_depth_end(float p_distance) {
fog_depth_end = p_distance;
VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve);
}
float Environment::get_fog_depth_end() const {
return fog_depth_end;
}
void Environment::set_fog_depth_curve(float p_curve) {
fog_depth_curve = p_curve;
VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve);
}
float Environment::get_fog_depth_curve() const {
return fog_depth_curve;
}
void Environment::set_fog_transmit_enabled(bool p_enabled) {
fog_transmit_enabled = p_enabled;
VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve);
}
bool Environment::is_fog_transmit_enabled() const {
return fog_transmit_enabled;
}
void Environment::set_fog_transmit_curve(float p_curve) {
fog_transmit_curve = p_curve;
VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve);
}
float Environment::get_fog_transmit_curve() const {
return fog_transmit_curve;
}
void Environment::set_fog_height_enabled(bool p_enabled) {
fog_height_enabled = p_enabled;
VS::get_singleton()->environment_set_fog_height(environment, fog_height_enabled, fog_height_min, fog_height_max, fog_height_curve);
}
bool Environment::is_fog_height_enabled() const {
return fog_height_enabled;
}
void Environment::set_fog_height_min(float p_distance) {
fog_height_min = p_distance;
VS::get_singleton()->environment_set_fog_height(environment, fog_height_enabled, fog_height_min, fog_height_max, fog_height_curve);
}
float Environment::get_fog_height_min() const {
return fog_height_min;
}
void Environment::set_fog_height_max(float p_distance) {
fog_height_max = p_distance;
VS::get_singleton()->environment_set_fog_height(environment, fog_height_enabled, fog_height_min, fog_height_max, fog_height_curve);
}
float Environment::get_fog_height_max() const {
return fog_height_max;
}
void Environment::set_fog_height_curve(float p_distance) {
fog_height_curve = p_distance;
VS::get_singleton()->environment_set_fog_height(environment, fog_height_enabled, fog_height_min, fog_height_max, fog_height_curve);
}
float Environment::get_fog_height_curve() const {
return fog_height_curve;
}
void Environment::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_background", "mode"), &Environment::set_background);
ClassDB::bind_method(D_METHOD("set_sky", "sky"), &Environment::set_sky);
ClassDB::bind_method(D_METHOD("set_sky_custom_fov", "scale"), &Environment::set_sky_custom_fov);
ClassDB::bind_method(D_METHOD("set_sky_orientation", "orientation"), &Environment::set_sky_orientation);
ClassDB::bind_method(D_METHOD("set_sky_rotation", "euler_radians"), &Environment::set_sky_rotation);
ClassDB::bind_method(D_METHOD("set_sky_rotation_degrees", "euler_degrees"), &Environment::set_sky_rotation_degrees);
ClassDB::bind_method(D_METHOD("set_bg_color", "color"), &Environment::set_bg_color);
ClassDB::bind_method(D_METHOD("set_bg_energy", "energy"), &Environment::set_bg_energy);
ClassDB::bind_method(D_METHOD("set_canvas_max_layer", "layer"), &Environment::set_canvas_max_layer);
ClassDB::bind_method(D_METHOD("set_ambient_light_color", "color"), &Environment::set_ambient_light_color);
ClassDB::bind_method(D_METHOD("set_ambient_light_energy", "energy"), &Environment::set_ambient_light_energy);
ClassDB::bind_method(D_METHOD("set_ambient_light_sky_contribution", "energy"), &Environment::set_ambient_light_sky_contribution);
ClassDB::bind_method(D_METHOD("set_camera_feed_id", "camera_feed_id"), &Environment::set_camera_feed_id);
ClassDB::bind_method(D_METHOD("get_background"), &Environment::get_background);
ClassDB::bind_method(D_METHOD("get_sky"), &Environment::get_sky);
ClassDB::bind_method(D_METHOD("get_sky_custom_fov"), &Environment::get_sky_custom_fov);
ClassDB::bind_method(D_METHOD("get_sky_orientation"), &Environment::get_sky_orientation);
ClassDB::bind_method(D_METHOD("get_sky_rotation"), &Environment::get_sky_rotation);
ClassDB::bind_method(D_METHOD("get_sky_rotation_degrees"), &Environment::get_sky_rotation_degrees);
ClassDB::bind_method(D_METHOD("get_bg_color"), &Environment::get_bg_color);
ClassDB::bind_method(D_METHOD("get_bg_energy"), &Environment::get_bg_energy);
ClassDB::bind_method(D_METHOD("get_canvas_max_layer"), &Environment::get_canvas_max_layer);
ClassDB::bind_method(D_METHOD("get_ambient_light_color"), &Environment::get_ambient_light_color);
ClassDB::bind_method(D_METHOD("get_ambient_light_energy"), &Environment::get_ambient_light_energy);
ClassDB::bind_method(D_METHOD("get_ambient_light_sky_contribution"), &Environment::get_ambient_light_sky_contribution);
ClassDB::bind_method(D_METHOD("get_camera_feed_id"), &Environment::get_camera_feed_id);
ADD_GROUP("Background", "background_");
ADD_PROPERTY(PropertyInfo(Variant::INT, "background_mode", PROPERTY_HINT_ENUM, "Clear Color,Custom Color,Sky,Color+Sky,Canvas,Keep,Camera Feed"), "set_background", "get_background");
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "background_sky", PROPERTY_HINT_RESOURCE_TYPE, "Sky"), "set_sky", "get_sky");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "background_sky_custom_fov", PROPERTY_HINT_RANGE, "0,180,0.1"), "set_sky_custom_fov", "get_sky_custom_fov");
ADD_PROPERTY(PropertyInfo(Variant::BASIS, "background_sky_orientation"), "set_sky_orientation", "get_sky_orientation");
// Only display rotation in degrees in the inspector (like in Spatial).
// This avoids displaying the same information twice.
ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "background_sky_rotation", PROPERTY_HINT_NONE, "", 0), "set_sky_rotation", "get_sky_rotation");
ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "background_sky_rotation_degrees", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_EDITOR), "set_sky_rotation_degrees", "get_sky_rotation_degrees");
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "background_color"), "set_bg_color", "get_bg_color");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "background_energy", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_bg_energy", "get_bg_energy");
ADD_PROPERTY(PropertyInfo(Variant::INT, "background_canvas_max_layer", PROPERTY_HINT_RANGE, "-1000,1000,1"), "set_canvas_max_layer", "get_canvas_max_layer");
ADD_PROPERTY(PropertyInfo(Variant::INT, "background_camera_feed_id", PROPERTY_HINT_RANGE, "1,10,1"), "set_camera_feed_id", "get_camera_feed_id");
ADD_GROUP("Ambient Light", "ambient_light_");
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "ambient_light_color"), "set_ambient_light_color", "get_ambient_light_color");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ambient_light_energy", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_ambient_light_energy", "get_ambient_light_energy");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ambient_light_sky_contribution", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_ambient_light_sky_contribution", "get_ambient_light_sky_contribution");
ClassDB::bind_method(D_METHOD("set_fog_enabled", "enabled"), &Environment::set_fog_enabled);
ClassDB::bind_method(D_METHOD("is_fog_enabled"), &Environment::is_fog_enabled);
ClassDB::bind_method(D_METHOD("set_fog_color", "color"), &Environment::set_fog_color);
ClassDB::bind_method(D_METHOD("get_fog_color"), &Environment::get_fog_color);
ClassDB::bind_method(D_METHOD("set_fog_sun_color", "color"), &Environment::set_fog_sun_color);
ClassDB::bind_method(D_METHOD("get_fog_sun_color"), &Environment::get_fog_sun_color);
ClassDB::bind_method(D_METHOD("set_fog_sun_amount", "amount"), &Environment::set_fog_sun_amount);
ClassDB::bind_method(D_METHOD("get_fog_sun_amount"), &Environment::get_fog_sun_amount);
ClassDB::bind_method(D_METHOD("set_fog_depth_enabled", "enabled"), &Environment::set_fog_depth_enabled);
ClassDB::bind_method(D_METHOD("is_fog_depth_enabled"), &Environment::is_fog_depth_enabled);
ClassDB::bind_method(D_METHOD("set_fog_depth_begin", "distance"), &Environment::set_fog_depth_begin);
ClassDB::bind_method(D_METHOD("get_fog_depth_begin"), &Environment::get_fog_depth_begin);
ClassDB::bind_method(D_METHOD("set_fog_depth_end", "distance"), &Environment::set_fog_depth_end);
ClassDB::bind_method(D_METHOD("get_fog_depth_end"), &Environment::get_fog_depth_end);
ClassDB::bind_method(D_METHOD("set_fog_depth_curve", "curve"), &Environment::set_fog_depth_curve);
ClassDB::bind_method(D_METHOD("get_fog_depth_curve"), &Environment::get_fog_depth_curve);
ClassDB::bind_method(D_METHOD("set_fog_transmit_enabled", "enabled"), &Environment::set_fog_transmit_enabled);
ClassDB::bind_method(D_METHOD("is_fog_transmit_enabled"), &Environment::is_fog_transmit_enabled);
ClassDB::bind_method(D_METHOD("set_fog_transmit_curve", "curve"), &Environment::set_fog_transmit_curve);
ClassDB::bind_method(D_METHOD("get_fog_transmit_curve"), &Environment::get_fog_transmit_curve);
ClassDB::bind_method(D_METHOD("set_fog_height_enabled", "enabled"), &Environment::set_fog_height_enabled);
ClassDB::bind_method(D_METHOD("is_fog_height_enabled"), &Environment::is_fog_height_enabled);
ClassDB::bind_method(D_METHOD("set_fog_height_min", "height"), &Environment::set_fog_height_min);
ClassDB::bind_method(D_METHOD("get_fog_height_min"), &Environment::get_fog_height_min);
ClassDB::bind_method(D_METHOD("set_fog_height_max", "height"), &Environment::set_fog_height_max);
ClassDB::bind_method(D_METHOD("get_fog_height_max"), &Environment::get_fog_height_max);
ClassDB::bind_method(D_METHOD("set_fog_height_curve", "curve"), &Environment::set_fog_height_curve);
ClassDB::bind_method(D_METHOD("get_fog_height_curve"), &Environment::get_fog_height_curve);
ADD_GROUP("Fog", "fog_");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "fog_enabled"), "set_fog_enabled", "is_fog_enabled");
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "fog_color"), "set_fog_color", "get_fog_color");
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "fog_sun_color"), "set_fog_sun_color", "get_fog_sun_color");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_sun_amount", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_fog_sun_amount", "get_fog_sun_amount");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "fog_depth_enabled"), "set_fog_depth_enabled", "is_fog_depth_enabled");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_depth_begin", PROPERTY_HINT_RANGE, "0,4000,0.1"), "set_fog_depth_begin", "get_fog_depth_begin");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_depth_end", PROPERTY_HINT_RANGE, "0,4000,0.1,or_greater"), "set_fog_depth_end", "get_fog_depth_end");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_depth_curve", PROPERTY_HINT_EXP_EASING), "set_fog_depth_curve", "get_fog_depth_curve");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "fog_transmit_enabled"), "set_fog_transmit_enabled", "is_fog_transmit_enabled");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_transmit_curve", PROPERTY_HINT_EXP_EASING), "set_fog_transmit_curve", "get_fog_transmit_curve");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "fog_height_enabled"), "set_fog_height_enabled", "is_fog_height_enabled");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_height_min", PROPERTY_HINT_RANGE, "-4000,4000,0.1,or_lesser,or_greater"), "set_fog_height_min", "get_fog_height_min");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_height_max", PROPERTY_HINT_RANGE, "-4000,4000,0.1,or_lesser,or_greater"), "set_fog_height_max", "get_fog_height_max");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_height_curve", PROPERTY_HINT_EXP_EASING), "set_fog_height_curve", "get_fog_height_curve");
ClassDB::bind_method(D_METHOD("set_tonemapper", "mode"), &Environment::set_tonemapper);
ClassDB::bind_method(D_METHOD("get_tonemapper"), &Environment::get_tonemapper);
ClassDB::bind_method(D_METHOD("set_tonemap_exposure", "exposure"), &Environment::set_tonemap_exposure);
ClassDB::bind_method(D_METHOD("get_tonemap_exposure"), &Environment::get_tonemap_exposure);
ClassDB::bind_method(D_METHOD("set_tonemap_white", "white"), &Environment::set_tonemap_white);
ClassDB::bind_method(D_METHOD("get_tonemap_white"), &Environment::get_tonemap_white);
ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure", "auto_exposure"), &Environment::set_tonemap_auto_exposure);
ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure"), &Environment::get_tonemap_auto_exposure);
ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure_max", "exposure_max"), &Environment::set_tonemap_auto_exposure_max);
ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure_max"), &Environment::get_tonemap_auto_exposure_max);
ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure_min", "exposure_min"), &Environment::set_tonemap_auto_exposure_min);
ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure_min"), &Environment::get_tonemap_auto_exposure_min);
ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure_speed", "exposure_speed"), &Environment::set_tonemap_auto_exposure_speed);
ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure_speed"), &Environment::get_tonemap_auto_exposure_speed);
ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure_grey", "exposure_grey"), &Environment::set_tonemap_auto_exposure_grey);
ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure_grey"), &Environment::get_tonemap_auto_exposure_grey);
ADD_GROUP("Tonemap", "tonemap_");
ADD_PROPERTY(PropertyInfo(Variant::INT, "tonemap_mode", PROPERTY_HINT_ENUM, "Linear,Reinhard,Filmic,ACES,ACES Fitted"), "set_tonemapper", "get_tonemapper");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "tonemap_exposure", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_tonemap_exposure", "get_tonemap_exposure");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "tonemap_white", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_tonemap_white", "get_tonemap_white");
ADD_GROUP("Auto Exposure", "auto_exposure_");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "auto_exposure_enabled"), "set_tonemap_auto_exposure", "get_tonemap_auto_exposure");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "auto_exposure_scale", PROPERTY_HINT_RANGE, "0.01,64,0.01"), "set_tonemap_auto_exposure_grey", "get_tonemap_auto_exposure_grey");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "auto_exposure_min_luma", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_tonemap_auto_exposure_min", "get_tonemap_auto_exposure_min");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "auto_exposure_max_luma", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_tonemap_auto_exposure_max", "get_tonemap_auto_exposure_max");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "auto_exposure_speed", PROPERTY_HINT_RANGE, "0.01,64,0.01"), "set_tonemap_auto_exposure_speed", "get_tonemap_auto_exposure_speed");
ClassDB::bind_method(D_METHOD("set_ssr_enabled", "enabled"), &Environment::set_ssr_enabled);
ClassDB::bind_method(D_METHOD("is_ssr_enabled"), &Environment::is_ssr_enabled);
ClassDB::bind_method(D_METHOD("set_ssr_max_steps", "max_steps"), &Environment::set_ssr_max_steps);
ClassDB::bind_method(D_METHOD("get_ssr_max_steps"), &Environment::get_ssr_max_steps);
ClassDB::bind_method(D_METHOD("set_ssr_fade_in", "fade_in"), &Environment::set_ssr_fade_in);
ClassDB::bind_method(D_METHOD("get_ssr_fade_in"), &Environment::get_ssr_fade_in);
ClassDB::bind_method(D_METHOD("set_ssr_fade_out", "fade_out"), &Environment::set_ssr_fade_out);
ClassDB::bind_method(D_METHOD("get_ssr_fade_out"), &Environment::get_ssr_fade_out);
ClassDB::bind_method(D_METHOD("set_ssr_depth_tolerance", "depth_tolerance"), &Environment::set_ssr_depth_tolerance);
ClassDB::bind_method(D_METHOD("get_ssr_depth_tolerance"), &Environment::get_ssr_depth_tolerance);
ClassDB::bind_method(D_METHOD("set_ssr_rough", "rough"), &Environment::set_ssr_rough);
ClassDB::bind_method(D_METHOD("is_ssr_rough"), &Environment::is_ssr_rough);
ADD_GROUP("SS Reflections", "ss_reflections_");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ss_reflections_enabled"), "set_ssr_enabled", "is_ssr_enabled");
ADD_PROPERTY(PropertyInfo(Variant::INT, "ss_reflections_max_steps", PROPERTY_HINT_RANGE, "1,512,1"), "set_ssr_max_steps", "get_ssr_max_steps");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ss_reflections_fade_in", PROPERTY_HINT_EXP_EASING), "set_ssr_fade_in", "get_ssr_fade_in");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ss_reflections_fade_out", PROPERTY_HINT_EXP_EASING), "set_ssr_fade_out", "get_ssr_fade_out");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ss_reflections_depth_tolerance", PROPERTY_HINT_RANGE, "0.1,128,0.1"), "set_ssr_depth_tolerance", "get_ssr_depth_tolerance");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ss_reflections_roughness"), "set_ssr_rough", "is_ssr_rough");
ClassDB::bind_method(D_METHOD("set_ssao_enabled", "enabled"), &Environment::set_ssao_enabled);
ClassDB::bind_method(D_METHOD("is_ssao_enabled"), &Environment::is_ssao_enabled);
ClassDB::bind_method(D_METHOD("set_ssao_radius", "radius"), &Environment::set_ssao_radius);
ClassDB::bind_method(D_METHOD("get_ssao_radius"), &Environment::get_ssao_radius);
ClassDB::bind_method(D_METHOD("set_ssao_intensity", "intensity"), &Environment::set_ssao_intensity);
ClassDB::bind_method(D_METHOD("get_ssao_intensity"), &Environment::get_ssao_intensity);
ClassDB::bind_method(D_METHOD("set_ssao_radius2", "radius"), &Environment::set_ssao_radius2);
ClassDB::bind_method(D_METHOD("get_ssao_radius2"), &Environment::get_ssao_radius2);
ClassDB::bind_method(D_METHOD("set_ssao_intensity2", "intensity"), &Environment::set_ssao_intensity2);
ClassDB::bind_method(D_METHOD("get_ssao_intensity2"), &Environment::get_ssao_intensity2);
ClassDB::bind_method(D_METHOD("set_ssao_bias", "bias"), &Environment::set_ssao_bias);
ClassDB::bind_method(D_METHOD("get_ssao_bias"), &Environment::get_ssao_bias);
ClassDB::bind_method(D_METHOD("set_ssao_direct_light_affect", "amount"), &Environment::set_ssao_direct_light_affect);
ClassDB::bind_method(D_METHOD("get_ssao_direct_light_affect"), &Environment::get_ssao_direct_light_affect);
ClassDB::bind_method(D_METHOD("set_ssao_ao_channel_affect", "amount"), &Environment::set_ssao_ao_channel_affect);
ClassDB::bind_method(D_METHOD("get_ssao_ao_channel_affect"), &Environment::get_ssao_ao_channel_affect);
ClassDB::bind_method(D_METHOD("set_ssao_color", "color"), &Environment::set_ssao_color);
ClassDB::bind_method(D_METHOD("get_ssao_color"), &Environment::get_ssao_color);
ClassDB::bind_method(D_METHOD("set_ssao_blur", "mode"), &Environment::set_ssao_blur);
ClassDB::bind_method(D_METHOD("get_ssao_blur"), &Environment::get_ssao_blur);
ClassDB::bind_method(D_METHOD("set_ssao_quality", "quality"), &Environment::set_ssao_quality);
ClassDB::bind_method(D_METHOD("get_ssao_quality"), &Environment::get_ssao_quality);
ClassDB::bind_method(D_METHOD("set_ssao_edge_sharpness", "edge_sharpness"), &Environment::set_ssao_edge_sharpness);
ClassDB::bind_method(D_METHOD("get_ssao_edge_sharpness"), &Environment::get_ssao_edge_sharpness);
ADD_GROUP("SSAO", "ssao_");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ssao_enabled"), "set_ssao_enabled", "is_ssao_enabled");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_radius", PROPERTY_HINT_RANGE, "0.1,128,0.01"), "set_ssao_radius", "get_ssao_radius");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_intensity", PROPERTY_HINT_RANGE, "0.0,128,0.01"), "set_ssao_intensity", "get_ssao_intensity");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_radius2", PROPERTY_HINT_RANGE, "0.0,128,0.01"), "set_ssao_radius2", "get_ssao_radius2");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_intensity2", PROPERTY_HINT_RANGE, "0.0,128,0.01"), "set_ssao_intensity2", "get_ssao_intensity2");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_bias", PROPERTY_HINT_RANGE, "0.001,8,0.001"), "set_ssao_bias", "get_ssao_bias");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_light_affect", PROPERTY_HINT_RANGE, "0.00,1,0.01"), "set_ssao_direct_light_affect", "get_ssao_direct_light_affect");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_ao_channel_affect", PROPERTY_HINT_RANGE, "0.00,1,0.01"), "set_ssao_ao_channel_affect", "get_ssao_ao_channel_affect");
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "ssao_color", PROPERTY_HINT_COLOR_NO_ALPHA), "set_ssao_color", "get_ssao_color");
ADD_PROPERTY(PropertyInfo(Variant::INT, "ssao_quality", PROPERTY_HINT_ENUM, "Low,Medium,High"), "set_ssao_quality", "get_ssao_quality");
ADD_PROPERTY(PropertyInfo(Variant::INT, "ssao_blur", PROPERTY_HINT_ENUM, "Disabled,1x1,2x2,3x3"), "set_ssao_blur", "get_ssao_blur");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_edge_sharpness", PROPERTY_HINT_RANGE, "0,32,0.01"), "set_ssao_edge_sharpness", "get_ssao_edge_sharpness");
ClassDB::bind_method(D_METHOD("set_dof_blur_far_enabled", "enabled"), &Environment::set_dof_blur_far_enabled);
ClassDB::bind_method(D_METHOD("is_dof_blur_far_enabled"), &Environment::is_dof_blur_far_enabled);
ClassDB::bind_method(D_METHOD("set_dof_blur_far_distance", "intensity"), &Environment::set_dof_blur_far_distance);
ClassDB::bind_method(D_METHOD("get_dof_blur_far_distance"), &Environment::get_dof_blur_far_distance);
ClassDB::bind_method(D_METHOD("set_dof_blur_far_transition", "intensity"), &Environment::set_dof_blur_far_transition);
ClassDB::bind_method(D_METHOD("get_dof_blur_far_transition"), &Environment::get_dof_blur_far_transition);
ClassDB::bind_method(D_METHOD("set_dof_blur_far_amount", "intensity"), &Environment::set_dof_blur_far_amount);
ClassDB::bind_method(D_METHOD("get_dof_blur_far_amount"), &Environment::get_dof_blur_far_amount);
ClassDB::bind_method(D_METHOD("set_dof_blur_far_quality", "intensity"), &Environment::set_dof_blur_far_quality);
ClassDB::bind_method(D_METHOD("get_dof_blur_far_quality"), &Environment::get_dof_blur_far_quality);
ClassDB::bind_method(D_METHOD("set_dof_blur_near_enabled", "enabled"), &Environment::set_dof_blur_near_enabled);
ClassDB::bind_method(D_METHOD("is_dof_blur_near_enabled"), &Environment::is_dof_blur_near_enabled);
ClassDB::bind_method(D_METHOD("set_dof_blur_near_distance", "intensity"), &Environment::set_dof_blur_near_distance);
ClassDB::bind_method(D_METHOD("get_dof_blur_near_distance"), &Environment::get_dof_blur_near_distance);
ClassDB::bind_method(D_METHOD("set_dof_blur_near_transition", "intensity"), &Environment::set_dof_blur_near_transition);
ClassDB::bind_method(D_METHOD("get_dof_blur_near_transition"), &Environment::get_dof_blur_near_transition);
ClassDB::bind_method(D_METHOD("set_dof_blur_near_amount", "intensity"), &Environment::set_dof_blur_near_amount);
ClassDB::bind_method(D_METHOD("get_dof_blur_near_amount"), &Environment::get_dof_blur_near_amount);
ClassDB::bind_method(D_METHOD("set_dof_blur_near_quality", "level"), &Environment::set_dof_blur_near_quality);
ClassDB::bind_method(D_METHOD("get_dof_blur_near_quality"), &Environment::get_dof_blur_near_quality);
ADD_GROUP("DOF Far Blur", "dof_blur_far_");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dof_blur_far_enabled"), "set_dof_blur_far_enabled", "is_dof_blur_far_enabled");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_far_distance", PROPERTY_HINT_EXP_RANGE, "0.01,8192,0.01"), "set_dof_blur_far_distance", "get_dof_blur_far_distance");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_far_transition", PROPERTY_HINT_EXP_RANGE, "0.01,8192,0.01"), "set_dof_blur_far_transition", "get_dof_blur_far_transition");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_far_amount", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_dof_blur_far_amount", "get_dof_blur_far_amount");
ADD_PROPERTY(PropertyInfo(Variant::INT, "dof_blur_far_quality", PROPERTY_HINT_ENUM, "Low,Medium,High"), "set_dof_blur_far_quality", "get_dof_blur_far_quality");
ADD_GROUP("DOF Near Blur", "dof_blur_near_");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dof_blur_near_enabled"), "set_dof_blur_near_enabled", "is_dof_blur_near_enabled");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_near_distance", PROPERTY_HINT_EXP_RANGE, "0.01,8192,0.01"), "set_dof_blur_near_distance", "get_dof_blur_near_distance");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_near_transition", PROPERTY_HINT_EXP_RANGE, "0.01,8192,0.01"), "set_dof_blur_near_transition", "get_dof_blur_near_transition");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_near_amount", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_dof_blur_near_amount", "get_dof_blur_near_amount");
ADD_PROPERTY(PropertyInfo(Variant::INT, "dof_blur_near_quality", PROPERTY_HINT_ENUM, "Low,Medium,High"), "set_dof_blur_near_quality", "get_dof_blur_near_quality");
ClassDB::bind_method(D_METHOD("set_glow_enabled", "enabled"), &Environment::set_glow_enabled);
ClassDB::bind_method(D_METHOD("is_glow_enabled"), &Environment::is_glow_enabled);
ClassDB::bind_method(D_METHOD("set_glow_level", "idx", "enabled"), &Environment::set_glow_level);
ClassDB::bind_method(D_METHOD("is_glow_level_enabled", "idx"), &Environment::is_glow_level_enabled);
ClassDB::bind_method(D_METHOD("set_glow_intensity", "intensity"), &Environment::set_glow_intensity);
ClassDB::bind_method(D_METHOD("get_glow_intensity"), &Environment::get_glow_intensity);
ClassDB::bind_method(D_METHOD("set_glow_strength", "strength"), &Environment::set_glow_strength);
ClassDB::bind_method(D_METHOD("get_glow_strength"), &Environment::get_glow_strength);
ClassDB::bind_method(D_METHOD("set_glow_bloom", "amount"), &Environment::set_glow_bloom);
ClassDB::bind_method(D_METHOD("get_glow_bloom"), &Environment::get_glow_bloom);
ClassDB::bind_method(D_METHOD("set_glow_blend_mode", "mode"), &Environment::set_glow_blend_mode);
ClassDB::bind_method(D_METHOD("get_glow_blend_mode"), &Environment::get_glow_blend_mode);
ClassDB::bind_method(D_METHOD("set_glow_hdr_bleed_threshold", "threshold"), &Environment::set_glow_hdr_bleed_threshold);
ClassDB::bind_method(D_METHOD("get_glow_hdr_bleed_threshold"), &Environment::get_glow_hdr_bleed_threshold);
ClassDB::bind_method(D_METHOD("set_glow_hdr_luminance_cap", "amount"), &Environment::set_glow_hdr_luminance_cap);
ClassDB::bind_method(D_METHOD("get_glow_hdr_luminance_cap"), &Environment::get_glow_hdr_luminance_cap);
ClassDB::bind_method(D_METHOD("set_glow_hdr_bleed_scale", "scale"), &Environment::set_glow_hdr_bleed_scale);
ClassDB::bind_method(D_METHOD("get_glow_hdr_bleed_scale"), &Environment::get_glow_hdr_bleed_scale);
ClassDB::bind_method(D_METHOD("set_glow_bicubic_upscale", "enabled"), &Environment::set_glow_bicubic_upscale);
ClassDB::bind_method(D_METHOD("is_glow_bicubic_upscale_enabled"), &Environment::is_glow_bicubic_upscale_enabled);
ClassDB::bind_method(D_METHOD("set_glow_high_quality", "enabled"), &Environment::set_glow_high_quality);
ClassDB::bind_method(D_METHOD("is_glow_high_quality_enabled"), &Environment::is_glow_high_quality_enabled);
ADD_GROUP("Glow", "glow_");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "glow_enabled"), "set_glow_enabled", "is_glow_enabled");
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/1"), "set_glow_level", "is_glow_level_enabled", 0);
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/2"), "set_glow_level", "is_glow_level_enabled", 1);
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/3"), "set_glow_level", "is_glow_level_enabled", 2);
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/4"), "set_glow_level", "is_glow_level_enabled", 3);
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/5"), "set_glow_level", "is_glow_level_enabled", 4);
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/6"), "set_glow_level", "is_glow_level_enabled", 5);
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/7"), "set_glow_level", "is_glow_level_enabled", 6);
ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_intensity", PROPERTY_HINT_RANGE, "0.0,8.0,0.01"), "set_glow_intensity", "get_glow_intensity");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_strength", PROPERTY_HINT_RANGE, "0.0,2.0,0.01"), "set_glow_strength", "get_glow_strength");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_bloom", PROPERTY_HINT_RANGE, "0.0,1.0,0.01"), "set_glow_bloom", "get_glow_bloom");
ADD_PROPERTY(PropertyInfo(Variant::INT, "glow_blend_mode", PROPERTY_HINT_ENUM, "Additive,Screen,Softlight,Replace"), "set_glow_blend_mode", "get_glow_blend_mode");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_hdr_threshold", PROPERTY_HINT_RANGE, "0.0,4.0,0.01"), "set_glow_hdr_bleed_threshold", "get_glow_hdr_bleed_threshold");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_hdr_luminance_cap", PROPERTY_HINT_RANGE, "0.0,256.0,0.01"), "set_glow_hdr_luminance_cap", "get_glow_hdr_luminance_cap");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_hdr_scale", PROPERTY_HINT_RANGE, "0.0,4.0,0.01"), "set_glow_hdr_bleed_scale", "get_glow_hdr_bleed_scale");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "glow_bicubic_upscale"), "set_glow_bicubic_upscale", "is_glow_bicubic_upscale_enabled");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "glow_high_quality"), "set_glow_high_quality", "is_glow_high_quality_enabled");
ClassDB::bind_method(D_METHOD("set_adjustment_enable", "enabled"), &Environment::set_adjustment_enable);
ClassDB::bind_method(D_METHOD("is_adjustment_enabled"), &Environment::is_adjustment_enabled);
ClassDB::bind_method(D_METHOD("set_adjustment_brightness", "brightness"), &Environment::set_adjustment_brightness);
ClassDB::bind_method(D_METHOD("get_adjustment_brightness"), &Environment::get_adjustment_brightness);
ClassDB::bind_method(D_METHOD("set_adjustment_contrast", "contrast"), &Environment::set_adjustment_contrast);
ClassDB::bind_method(D_METHOD("get_adjustment_contrast"), &Environment::get_adjustment_contrast);
ClassDB::bind_method(D_METHOD("set_adjustment_saturation", "saturation"), &Environment::set_adjustment_saturation);
ClassDB::bind_method(D_METHOD("get_adjustment_saturation"), &Environment::get_adjustment_saturation);
ClassDB::bind_method(D_METHOD("set_adjustment_color_correction", "color_correction"), &Environment::set_adjustment_color_correction);
ClassDB::bind_method(D_METHOD("get_adjustment_color_correction"), &Environment::get_adjustment_color_correction);
ADD_GROUP("Adjustments", "adjustment_");
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "adjustment_enabled"), "set_adjustment_enable", "is_adjustment_enabled");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "adjustment_brightness", PROPERTY_HINT_RANGE, "0.01,8,0.01"), "set_adjustment_brightness", "get_adjustment_brightness");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "adjustment_contrast", PROPERTY_HINT_RANGE, "0.01,8,0.01"), "set_adjustment_contrast", "get_adjustment_contrast");
ADD_PROPERTY(PropertyInfo(Variant::REAL, "adjustment_saturation", PROPERTY_HINT_RANGE, "0.01,8,0.01"), "set_adjustment_saturation", "get_adjustment_saturation");
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "adjustment_color_correction", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_adjustment_color_correction", "get_adjustment_color_correction");
BIND_ENUM_CONSTANT(BG_KEEP);
BIND_ENUM_CONSTANT(BG_CLEAR_COLOR);
BIND_ENUM_CONSTANT(BG_COLOR);
BIND_ENUM_CONSTANT(BG_SKY);
BIND_ENUM_CONSTANT(BG_COLOR_SKY);
BIND_ENUM_CONSTANT(BG_CANVAS);
BIND_ENUM_CONSTANT(BG_CAMERA_FEED);
BIND_ENUM_CONSTANT(BG_MAX);
BIND_ENUM_CONSTANT(GLOW_BLEND_MODE_ADDITIVE);
BIND_ENUM_CONSTANT(GLOW_BLEND_MODE_SCREEN);
BIND_ENUM_CONSTANT(GLOW_BLEND_MODE_SOFTLIGHT);
BIND_ENUM_CONSTANT(GLOW_BLEND_MODE_REPLACE);
BIND_ENUM_CONSTANT(TONE_MAPPER_LINEAR);
BIND_ENUM_CONSTANT(TONE_MAPPER_REINHARDT);
BIND_ENUM_CONSTANT(TONE_MAPPER_FILMIC);
BIND_ENUM_CONSTANT(TONE_MAPPER_ACES);
BIND_ENUM_CONSTANT(TONE_MAPPER_ACES_FITTED);
BIND_ENUM_CONSTANT(DOF_BLUR_QUALITY_LOW);
BIND_ENUM_CONSTANT(DOF_BLUR_QUALITY_MEDIUM);
BIND_ENUM_CONSTANT(DOF_BLUR_QUALITY_HIGH);
BIND_ENUM_CONSTANT(SSAO_BLUR_DISABLED);
BIND_ENUM_CONSTANT(SSAO_BLUR_1x1);
BIND_ENUM_CONSTANT(SSAO_BLUR_2x2);
BIND_ENUM_CONSTANT(SSAO_BLUR_3x3);
BIND_ENUM_CONSTANT(SSAO_QUALITY_LOW);
BIND_ENUM_CONSTANT(SSAO_QUALITY_MEDIUM);
BIND_ENUM_CONSTANT(SSAO_QUALITY_HIGH);
}
Environment::Environment() :
bg_mode(BG_CLEAR_COLOR),
tone_mapper(TONE_MAPPER_LINEAR),
ssao_blur(SSAO_BLUR_3x3),
ssao_quality(SSAO_QUALITY_MEDIUM),
glow_blend_mode(GLOW_BLEND_MODE_ADDITIVE),
dof_blur_far_quality(DOF_BLUR_QUALITY_LOW),
dof_blur_near_quality(DOF_BLUR_QUALITY_LOW) {
environment = RID_PRIME(VS::get_singleton()->environment_create());
bg_mode = BG_CLEAR_COLOR;
bg_sky_custom_fov = 0;
bg_sky_orientation = Basis();
bg_energy = 1.0;
bg_canvas_max_layer = 0;
ambient_energy = 1.0;
//ambient_sky_contribution = 1.0;
set_ambient_light_sky_contribution(1.0);
set_camera_feed_id(1);
tone_mapper = TONE_MAPPER_LINEAR;
tonemap_exposure = 1.0;
tonemap_white = 1.0;
tonemap_auto_exposure = false;
tonemap_auto_exposure_max = 8;
tonemap_auto_exposure_min = 0.05;
tonemap_auto_exposure_speed = 0.5;
tonemap_auto_exposure_grey = 0.4;
set_tonemapper(tone_mapper); //update
adjustment_enabled = false;
adjustment_contrast = 1.0;
adjustment_saturation = 1.0;
adjustment_brightness = 1.0;
set_adjustment_enable(adjustment_enabled); //update
ssr_enabled = false;
ssr_max_steps = 64;
ssr_fade_in = 0.15;
ssr_fade_out = 2.0;
ssr_depth_tolerance = 0.2;
ssr_roughness = true;
ssao_enabled = false;
ssao_radius = 1;
ssao_intensity = 1;
ssao_radius2 = 0;
ssao_intensity2 = 1;
ssao_bias = 0.01;
ssao_direct_light_affect = 0.0;
ssao_ao_channel_affect = 0.0;
ssao_blur = SSAO_BLUR_3x3;
set_ssao_edge_sharpness(4);
set_ssao_quality(SSAO_QUALITY_MEDIUM);
glow_enabled = false;
glow_levels = (1 << 2) | (1 << 4);
glow_intensity = 0.8;
glow_strength = 1.0;
glow_bloom = 0.0;
glow_blend_mode = GLOW_BLEND_MODE_SOFTLIGHT;
glow_hdr_bleed_threshold = 1.0;
glow_hdr_luminance_cap = 12.0;
glow_hdr_bleed_scale = 2.0;
glow_bicubic_upscale = false;
glow_high_quality = false;
dof_blur_far_enabled = false;
dof_blur_far_distance = 10;
dof_blur_far_transition = 5;
dof_blur_far_amount = 0.1;
dof_blur_far_quality = DOF_BLUR_QUALITY_MEDIUM;
dof_blur_near_enabled = false;
dof_blur_near_distance = 2;
dof_blur_near_transition = 1;
dof_blur_near_amount = 0.1;
dof_blur_near_quality = DOF_BLUR_QUALITY_MEDIUM;
fog_enabled = false;
fog_color = Color(0.5, 0.5, 0.5);
fog_sun_color = Color(0.8, 0.8, 0.0);
fog_sun_amount = 0;
fog_depth_enabled = true;
fog_depth_begin = 10;
fog_depth_end = 100;
fog_depth_curve = 1;
fog_transmit_enabled = false;
fog_transmit_curve = 1;
fog_height_enabled = false;
fog_height_min = 10;
fog_height_max = 0;
fog_height_curve = 1;
set_fog_color(Color(0.5, 0.6, 0.7));
set_fog_sun_color(Color(1.0, 0.9, 0.7));
}
Environment::~Environment() {
VS::get_singleton()->free(environment);
}
|
5cb09ba5eec6843fada5b60c5b0bfaf1fc6a11ee | 81fea7e421f7a8dce11870ca64d4aed1d1c75e04 | /c++03/substitution_test.cpp | 92353e430632400a15270c4033d4355b908b5c01 | [] | no_license | petergottschling/dmc2 | d88b258717faf75f2bc808233d1b6237cbe92712 | cbb1df755cbfe244efa0f87ac064382d87a1f4d2 | refs/heads/master | 2020-03-26T14:34:26.143182 | 2018-08-16T14:00:58 | 2018-08-16T14:00:58 | 144,994,456 | 27 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 450 | cpp | substitution_test.cpp | #include <iostream>
#include <string>
class a
{
public:
int f() { return 3;}
};
class b
: public a
{
public:
float f() { return 4; }
// virtual std::string f() { return "xxx3xxx"; }
};
int main (int argc, char* argv[])
{
a aa;
b bb;
std::cout << "aa.f() = " << aa.f() << '\n';
std::cout << "bb.f() = " << bb.f() << '\n';
a& ar= bb;
std::cout << "ar.f() = " << ar.f() << '\n';
return 0 ;
}
|
62c986ac7276ef4c1a5f23c6a5c0a4dc9b27b8e2 | 4dcaeb327dc2462390825e6d91c366d5beb7944f | /d05/ex01/Form.hpp | 384ac7e091c3260eaf684b602869ae597bd0528c | [] | no_license | sshiling/42-C-Plus-Plus-Pool | 279545b8fa86872a325c8715a9d95345bd4694fe | c3a75afb2d77baa3371147bf9194acdb600183d0 | refs/heads/master | 2020-03-26T20:09:53.216518 | 2018-08-19T15:48:49 | 2018-08-19T15:48:49 | 145,308,357 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,705 | hpp | Form.hpp | #ifndef FORM_HPP
# define FORM_HPP
# include "Bureaucrat.hpp"
class Bureaucrat;
class Form {
private:
std::string const _name;
bool _signed;
int const _grade_to_sign;
int const _grade_to_execute;
public:
Form(void);
Form(std::string name, int grade_to_sign, int grade_to_execute);
Form(const Form &obj);
~Form(void);
class GradeTooHighException : public std::exception {
public:
GradeTooHighException(void);
GradeTooHighException(const GradeTooHighException &obj);
~GradeTooHighException(void) throw();
GradeTooHighException &operator = (const GradeTooHighException &);
const char *what() const throw();
};
class GradeTooLowException : public std::exception {
public:
GradeTooLowException(void);
GradeTooLowException(const GradeTooLowException &obj);
~GradeTooLowException(void) throw();
GradeTooLowException &operator = (const GradeTooLowException &);
const char *what() const throw();
};
Form &operator = (const Form &obj);
std::string getName(void) const;
bool getSigned(void) const;
int getGradeToSign(void) const;
int getGradeToExecute(void) const;
void beSigned(Bureaucrat &bureaucrat);
};
std::ostream &operator << (std::ostream &stream, Form const &);
#endif |
61fbb7b351f5b886030b7962c50a64fee4c827b2 | 7a268e89b96eb853bd4cc8ba814c146988c62e5c | /unboost/functional/hash.hpp | 7e9ff29afd8ab8e2eed7bf32d8713be4fbd9abda | [] | no_license | katahiromz/SpeakJ | 916d1c7f0c339bd934a9884fda93269879a00e44 | a26fdd12b95dd38fbe33f198bfea95c6f6d5bf2e | refs/heads/master | 2021-01-11T16:27:12.700366 | 2018-11-09T08:20:54 | 2018-11-09T08:20:54 | 80,085,404 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,539 | hpp | hash.hpp | // hash.hpp --- Unboost hash
//////////////////////////////////////////////////////////////////////////////
#ifndef UNBOOST_HASH_HPP_
#define UNBOOST_HASH_HPP_
#include "../unboost.h"
// If not choosed, choose one
#if (defined(UNBOOST_USE_CXX11_HASH) + defined(UNBOOST_USE_BOOST_HASH) + defined(UNBOOST_USE_UNBOOST_HASH) == 0)
#ifdef UNBOOST_USE_CXX11
#define UNBOOST_USE_CXX11_HASH
#elif defined(UNBOOST_USE_BOOST)
#define UNBOOST_USE_BOOST_HASH
#else
#define UNBOOST_USE_UNBOOST_HASH
#endif
#endif
// Adapt choosed one
#ifdef UNBOOST_USE_CXX11_HASH
#include <functional>
namespace unboost {
using std::hash;
}
#elif defined(UNBOOST_USE_BOOST_HASH)
#include <boost/functional/hash.hpp>
namespace unboost {
using boost::hash;
}
#elif defined(UNBOOST_USE_UNBOOST_HASH)
#include <string> // for std::string, std::wstring, ...
namespace unboost {
template <typename Key>
struct hash {
typedef Key argument_type;
typedef size_t result_type;
};
inline size_t _hash_value(bool b) {
return b;
}
inline size_t _hash_value(char ch) {
return static_cast<unsigned char>(ch);
}
inline size_t _hash_value(signed char ch) {
return static_cast<unsigned char>(ch);
}
inline size_t _hash_value(unsigned char ch) {
return ch;
}
inline size_t _hash_value(short s) {
return static_cast<unsigned short>(s);
}
inline size_t _hash_value(unsigned short s) {
return s;
}
inline size_t _hash_value(long n) {
return static_cast<unsigned long>(n);
}
inline size_t _hash_value(unsigned long n) {
return n;
}
inline size_t _hash_value(int n) {
return static_cast<unsigned int>(n);
}
inline size_t _hash_value(unsigned int n) {
return n;
}
inline size_t _hash_value(_int64_t n) {
return size_t(n ^ (n >> 32));
}
inline size_t _hash_value(_uint64_t n) {
return size_t(n ^ (n >> 32));
}
inline size_t _hash_value(float e) {
return _hash_value(*reinterpret_cast<const int *>(&e));
}
inline size_t _hash_value(double e) {
return _hash_value(*reinterpret_cast<const _uint64_t *>(&e));
}
inline size_t _hash_value(long double e) {
size_t ret = 0;
const unsigned char *pch = reinterpret_cast<const unsigned char *>(&e);
for (size_t i = 0; i < sizeof(e); ++i) {
ret ^= pch[i];
}
return ret;
}
inline size_t _hash_value(const void *p) {
return *reinterpret_cast<const size_t *>(&p);
}
inline size_t _hash_value(const std::string& str) {
size_t ret = 0;
const size_t count = str.size();
unsigned char shift = 0;
for (size_t i = 0; i < count; ++i) {
ret ^= size_t(str[i]);
ret <<= shift;
++shift;
if (shift >= 8)
shift = 0;
}
return ret;
}
inline size_t _hash_value(const std::wstring& str) {
size_t ret = 0;
const size_t count = str.size();
unsigned char shift = 0;
for (size_t i = 0; i < count; ++i) {
ret ^= size_t(str[i]);
ret <<= shift;
++shift;
if (shift >= 8)
shift = 1;
}
return ret;
}
#define UNBOOST_HASH_SPECIALIZE(type) \
template <> \
struct hash<type> { \
typedef type argument_type; \
typedef size_t result_type; \
result_type operator()(type key) const { \
return _hash_value(key); \
} \
}
#define UNBOOST_HASH_SPECIALIZE_REF(type) \
template <> \
struct hash<type> { \
typedef type argument_type; \
typedef size_t result_type; \
result_type operator()(const type& key) const { \
return _hash_value(key); \
} \
}
UNBOOST_HASH_SPECIALIZE(bool);
UNBOOST_HASH_SPECIALIZE(char);
UNBOOST_HASH_SPECIALIZE(signed char);
UNBOOST_HASH_SPECIALIZE(unsigned char);
UNBOOST_HASH_SPECIALIZE(short);
UNBOOST_HASH_SPECIALIZE(unsigned short);
UNBOOST_HASH_SPECIALIZE(long);
UNBOOST_HASH_SPECIALIZE(unsigned long);
UNBOOST_HASH_SPECIALIZE(int);
UNBOOST_HASH_SPECIALIZE(unsigned int);
UNBOOST_HASH_SPECIALIZE(_int64_t);
UNBOOST_HASH_SPECIALIZE(_uint64_t);
UNBOOST_HASH_SPECIALIZE(float);
UNBOOST_HASH_SPECIALIZE(double);
UNBOOST_HASH_SPECIALIZE(long double);
UNBOOST_HASH_SPECIALIZE(const void *);
UNBOOST_HASH_SPECIALIZE_REF(std::string);
UNBOOST_HASH_SPECIALIZE_REF(std::wstring);
} // namespace unboost
#else
#error Your compiler is not supported yet. You lose.
#endif
#endif // ndef UNBOOST_HASH_HPP_
|
c74c8cafb061c4816b6dc22c0d3a5f86b75d04ac | b4b59352de09361639f9d9906115c0bb82088ae5 | /GreedySnake/src/modSnake.cpp | 58d921c29e2827c9ef14864bdd72c976a91efd66 | [] | no_license | lml123-1/GreedySnake | 5e8943b252d9e5ce745b5d2e5a7ce750079285c7 | dca9d6ba3d5b6ba09427c4bd2a68bd0d3f1235c4 | refs/heads/master | 2023-06-27T17:34:14.843830 | 2021-08-02T09:31:28 | 2021-08-02T09:31:28 | 391,277,955 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 149 | cpp | modSnake.cpp | #include "modSnake.h"
#include "snake.h"
void modSnakeInit()
{
_MYSNAKEINFO.SnakeInit();
}
void modSnakeRun()
{
_MYSNAKEINFO.SnakeRun();
}
|
072fc04d54777028b09c94d01f37297bf06ef22a | b5844b5c144d8a0e0695291003d72950fff5aabe | /LaproII/Conta_Bancaria/ContaCorrente.h | 4fef1649d5601a97712ea3e6f3ba04cd6b248062 | [] | no_license | William98/Pucrs | 7918b5244323441d380e9d735fd8bd727bf5464d | c7f03a6cc35ef337c1be002a65f1652eb3ee7e7d | refs/heads/master | 2020-03-20T18:46:26.871968 | 2018-06-15T02:19:07 | 2018-06-15T02:19:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,031 | h | ContaCorrente.h | #include "Conta.h"
class ContaCorrente : public Conta
{
private:
double limite;
public:
// Construtora
ContaCorrente(int numero, string nome, double saldo, double l):Conta(numero, nome, saldo){
limite = l;
}
double getLimite(){
return limite;
}
void setLimite(double l){
limite = l;
}
void saque(double valor){
Conta::saque(valor);
if((saldo+limite) >= valor){
saldo = saldo - valor;
// Registrar transacao
insereTransacao(-valor, 'S');
cout << "Sacado R$" << fixed << valor << cout.precision(1) << endl;
}else{
cout << "Saldo insuficiente" << endl;
}
}
void extrato(){
Conta::extrato();
cout << "Limite: R$ " << fixed << limite << cout.precision(1) << endl;
cout << "============================" << endl;
}
};
|
40621787a736a5d5172dc59c458f8b8cd0fe95c8 | 02c201b1afd2de7f8237adc3737734e19b77cd2b | /src/support/debug.h | f6f560b8fd0f9e7d2a503ba7d8b33b113acd5a70 | [
"Apache-2.0"
] | permissive | WebAssembly/binaryen | 1ce65e58489c99b5a66ab51927a5b218c70ae315 | 90d8185ba2be34fa6b6a8f8ce0cbb87e0a9ed0da | refs/heads/main | 2023-08-31T21:01:27.020148 | 2023-08-31T19:32:33 | 2023-08-31T19:32:33 | 45,208,608 | 7,061 | 768 | Apache-2.0 | 2023-09-14T21:41:04 | 2015-10-29T20:26:28 | WebAssembly | UTF-8 | C++ | false | false | 2,374 | h | debug.h | /*
* Copyright 2019 WebAssembly Community Group participants
*
* 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.
*/
// Implements BYN_DEBUG macro similar to llvm's include/llvm/Support/Debug.h,
// which can include any code, and in addition and printf-file BYN_TRACE.
//
// To use these macros you must define DEBUG_TYPE to a C string within your
// source code which then acts as the name of a channel which can be
// individually enabled via --debug=<chan>. Specifying --debug without any
// argument enables all channels.
#ifndef wasm_support_debug_h
#define wasm_support_debug_h
#ifndef NDEBUG
namespace wasm {
bool isDebugEnabled(const char* type);
void setDebugEnabled(const char* types);
} // namespace wasm
#define BYN_DEBUG_WITH_TYPE(TYPE, X) \
do { \
if (::wasm::isDebugEnabled(TYPE)) { \
X; \
} \
} while (false)
#define BYN_TRACE_WITH_TYPE(TYPE, MSG) \
BYN_DEBUG_WITH_TYPE(TYPE, std::cerr << MSG);
#else
#define BYN_DEBUG_WITH_TYPE(...) \
do { \
} while (false)
#define BYN_TRACE_WITH_TYPE(...) \
do { \
} while (false)
#define isDebugEnabled(type) (false)
#define setDebugEnabled(types)
#endif
#define BYN_DEBUG(X) BYN_DEBUG_WITH_TYPE(DEBUG_TYPE, X)
#define BYN_TRACE(MSG) BYN_TRACE_WITH_TYPE(DEBUG_TYPE, MSG)
#endif // wasm_support_debug_h
|
8b88dfa58649ad1f2e4e85d10350952f191f5112 | 8dfc06b77cf0f346d86276beac10d5c9b931dd9b | /AcmCode/codeforces_300c.cpp | a144708ac2ed3e1d945130840f0b9feb8b0616e6 | [] | no_license | xcszbdnl/TrainingCode | c7ef1f5b3b390dadc43ff586a8adbefe953c627a | b3ea6124a2e9595e73c38e4b37bb092967b94c56 | refs/heads/master | 2020-05-16T22:27:40.998048 | 2017-08-29T14:38:49 | 2017-08-29T14:38:49 | 28,027,399 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,575 | cpp | codeforces_300c.cpp | #include <cstdio>
#include <string.h>
#include <iostream>
using namespace std;
const int MAX_NUMBER = 1000007;
const long long MOD_NUMBER = 1000000007;
long long value[MAX_NUMBER];
bool isGood[MAX_NUMBER * 9];
int a,b;
int length;
int check(int number) {
while (number) {
int temp = number % 10;
if (temp != a && temp != b) {
return 0;
}
number /= 10;
}
return 1;
}
long long getMod(long long number, long long power) {
long long result = 1;
long long square = number;
while (power) {
if (power & 1) {
result = (result * square) % MOD_NUMBER;
}
square = (square * square) % MOD_NUMBER;
power >>= 1;
}
return result;
}
int main() {
scanf("%d%d%d", &a, &b, &length);
if (a < b) {
int temp = a;
a = b;
b = temp;
}
for (int s = 1; s <= length * a; s++) {
if (check(s)) {
isGood[s] = 1;
}
}
value[0] = 1;
for (long long i = 0; i < length; i++) {
long long inverse = getMod(i + 1, MOD_NUMBER - 2);
value[i + 1] = (value[i] * (length - i)) % MOD_NUMBER;
value[i + 1] = (value[i + 1] * inverse) % MOD_NUMBER;
}
long long ans = 0;
for (int s = 1; s <= length * a; s++) {
if (isGood[s]) {
int temp = s - length * b;
if (temp >= 0 && (temp % (a - b)) == 0) {
int x = temp / (a - b);
ans = (ans + value[x]) % MOD_NUMBER;
}
}
}
cout << ans << endl;
}
|
9e702ce96a8cf00ba8ba71cac3d0e89b0993709a | 9f520bcbde8a70e14d5870fd9a88c0989a8fcd61 | /pitzDaily/300/U | 1a7be31212ef5d324b64365875d153a8d50d7050 | [] | no_license | asAmrita/adjoinShapOptimization | 6d47c89fb14d090941da706bd7c39004f515cfea | 079cbec87529be37f81cca3ea8b28c50b9ceb8c5 | refs/heads/master | 2020-08-06T21:32:45.429939 | 2019-10-06T09:58:20 | 2019-10-06T09:58:20 | 213,144,901 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 251,336 | U | /*--------------------------------*- 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 volVectorField;
location "300";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
6400
(
(-8.42545981209e-05 -0.000113878271365 0)
(-0.000231612381142 -8.89196216177e-05 0)
(-0.000340153526327 -7.35998305804e-05 0)
(-0.000465532299628 -6.60988354764e-05 0)
(-0.000554237966818 -3.92400219759e-05 0)
(-0.000615590669537 -1.71029964627e-05 0)
(-0.000638877650346 -9.12814947173e-06 0)
(-0.000653668257081 -2.09625818607e-05 0)
(-0.000735110346759 -3.47026653815e-05 0)
(-0.00082016764411 -3.22761680008e-05 0)
(-0.000839996702594 -2.84920820754e-05 0)
(-0.000918979778942 -3.29171863646e-05 0)
(-0.000986754961111 -2.94478593844e-05 0)
(-0.00103980497289 -2.20273952987e-05 0)
(-0.00107294113778 -1.82453587278e-05 0)
(-0.00110911794126 -2.19161122311e-05 0)
(-0.00116052088078 -2.28827917817e-05 0)
(-0.00120090903389 -1.84701479069e-05 0)
(-0.00122331824635 -1.12990332097e-05 0)
(-0.00123894812568 -6.49530122285e-06 0)
(-0.00126419977015 -1.26303557082e-05 0)
(-0.00130382215572 -2.07922940835e-05 0)
(-0.00135133214939 -2.35326129854e-05 0)
(-0.00139436806096 -2.39950568778e-05 0)
(-0.00143564203632 -2.17931980154e-05 0)
(-0.00147387497202 -1.81485714574e-05 0)
(-0.00151245505264 -1.70263272884e-05 0)
(-0.00154711212143 -1.49980198076e-05 0)
(-0.00157348621981 -1.15986223703e-05 0)
(-0.00159279003247 -8.85312367494e-06 0)
(-0.00160503077132 -8.68347022214e-06 0)
(-0.00161999681398 -7.53700517852e-06 0)
(-0.00163463129358 -4.28162745685e-06 0)
(-0.00164225761885 -3.94711618597e-06 0)
(-0.00164665450174 -2.95202007742e-06 0)
(-0.00165945826206 -2.10553670562e-06 0)
(-0.00166998071924 -3.3894775908e-06 0)
(-0.00165718559184 -2.34721299321e-06 0)
(-0.00166345409743 6.30447722657e-08 0)
(-0.0016804582572 -9.61967882934e-07 0)
(-0.00169287151792 -1.05873455444e-05 0)
(-0.00169791730958 -1.29830960408e-05 0)
(-0.00169985530537 -2.13906597589e-07 0)
(-0.00169354675449 8.03519289009e-06 0)
(-0.00167716306115 1.13424328815e-05 0)
(-0.00165542171202 1.49249274138e-05 0)
(-0.0016272449421 1.81041077346e-05 0)
(-0.0015909384902 2.20767709988e-05 0)
(-0.00154739520931 2.51625640415e-05 0)
(-0.00149818088498 2.27494732495e-05 0)
(-0.00145022337281 1.56463078116e-05 0)
(-0.00142323484985 1.89311107521e-05 0)
(-0.0013635590829 4.29167618689e-05 0)
(-0.00128632685476 5.3747466649e-05 0)
(-0.00118149502167 6.08269623476e-05 0)
(-0.00102935867182 7.38310971456e-05 0)
(-0.000876403903171 6.95949754633e-05 0)
(-0.000746120319642 6.48975772698e-05 0)
(-0.000614378096523 7.54918914735e-05 0)
(-0.000426247725794 8.1339539571e-05 0)
(-0.000240739770613 8.7649603709e-05 0)
(-4.16410680447e-05 0.000109411797343 0)
(0.00023841039104 0.000134513313264 0)
(0.00047461717056 9.19501348756e-05 0)
(0.000581348576646 5.36833025208e-05 0)
(0.0006498190568 3.77728117367e-05 0)
(0.00070680148329 2.60666587113e-05 0)
(0.000763038991893 1.96330424202e-05 0)
(0.000815527013871 1.50633656836e-05 0)
(0.000844311575413 8.05888565969e-06 0)
(0.00085815134844 -6.84847434614e-07 0)
(0.00083652860343 -1.14881531443e-05 0)
(0.000786001292571 -2.57756874308e-05 0)
(0.000753135886346 -4.54373805785e-05 0)
(0.000610096484754 -4.64829387693e-05 0)
(0.000563191116128 -4.90071173169e-05 0)
(0.000391428621906 -3.37333023595e-05 0)
(0.000416943813086 -5.46056751875e-05 0)
(0.000184852472249 -4.26992159697e-05 0)
(0.000138378148723 -8.28894361016e-05 0)
(-3.07363854868e-05 -0.000156003247759 0)
(-0.000132035629013 -0.000177503909966 0)
(-0.000231677075517 -0.000164278906936 0)
(-0.000293853019727 -0.000130915785312 0)
(-0.000435254018188 -0.000129540078334 0)
(-0.000575348597579 -9.11105450917e-05 0)
(-0.000657520342378 -5.2953399581e-05 0)
(-0.000709463046619 -7.28508790238e-05 0)
(-0.000763847616942 -0.000100008917231 0)
(-0.000826188868926 -9.72148481917e-05 0)
(-0.000885512193803 -9.0976634137e-05 0)
(-0.000939149423203 -9.11573957743e-05 0)
(-0.000988393248373 -8.03580250651e-05 0)
(-0.00103234901448 -6.50015862252e-05 0)
(-0.00107681226442 -5.75000256889e-05 0)
(-0.0011196844801 -7.20884415342e-05 0)
(-0.00116317404163 -7.58956311209e-05 0)
(-0.0011935480356 -4.35114775355e-05 0)
(-0.00116832476264 -2.09357288126e-05 0)
(-0.00119366057765 -1.98499654581e-05 0)
(-0.00123402306045 -4.13477420228e-05 0)
(-0.00128622985946 -7.15333118319e-05 0)
(-0.00135243455025 -7.99032668224e-05 0)
(-0.00140552078288 -6.94978343681e-05 0)
(-0.00142514080846 -6.1526977226e-05 0)
(-0.00147539737591 -5.83725825052e-05 0)
(-0.0015188859196 -5.23622300124e-05 0)
(-0.00154866759198 -4.33689824365e-05 0)
(-0.00157241724839 -3.43059084193e-05 0)
(-0.00159251736506 -2.68936572223e-05 0)
(-0.00160880053835 -2.38124585699e-05 0)
(-0.00160960983583 -1.94248920573e-05 0)
(-0.00162317157479 -9.31882494088e-06 0)
(-0.00162707087752 -1.02819007767e-05 0)
(-0.00162411033945 -1.32238869689e-05 0)
(-0.00165430812513 -5.60347360436e-06 0)
(-0.00165269248881 -8.14709632944e-06 0)
(-0.00164245237953 -1.27465741764e-05 0)
(-0.0016604124102 -9.05570140076e-06 0)
(-0.0016972577925 -4.15756640302e-06 0)
(-0.00171366830052 4.23031371842e-06 0)
(-0.00159759047269 1.16284408345e-05 0)
(-0.0015514995079 1.5299942252e-05 0)
(-0.00155315485905 1.81269888128e-05 0)
(-0.00154360329561 2.16468204795e-05 0)
(-0.00154130364587 2.72817280809e-05 0)
(-0.00153988072364 3.58510330937e-05 0)
(-0.00152370396481 4.6306876084e-05 0)
(-0.00151150734872 5.788742525e-05 0)
(-0.00148453620066 6.78217649995e-05 0)
(-0.00142578308965 7.26876904915e-05 0)
(-0.00132374195946 7.71261104888e-05 0)
(-0.00122756890013 8.80006193332e-05 0)
(-0.00128620802105 0.000125752450842 0)
(-0.00116468808988 0.000165972662144 0)
(-0.00105192029009 0.000192815830169 0)
(-0.000978248967732 0.000208346390701 0)
(-0.000842692400657 0.000220540109868 0)
(-0.000679419514112 0.000251034327583 0)
(-0.000498849619476 0.000291590436516 0)
(-0.000287938830234 0.000333800876445 0)
(-3.77310103635e-05 0.000317957113452 0)
(0.000239333899241 0.000392296872672 0)
(0.000465297291285 0.000285015544192 0)
(0.0005785036553 0.000167035989996 0)
(0.000619044893469 9.76349975298e-05 0)
(0.00066122924919 7.55278022198e-05 0)
(0.000748535155726 7.03726707405e-05 0)
(0.00080590161665 5.35803841461e-05 0)
(0.00084950514874 2.69617666332e-05 0)
(0.000854746674665 -7.77825231753e-06 0)
(0.000826083699357 -4.50277400528e-05 0)
(0.000757431434703 -7.09606894436e-05 0)
(0.000742799939182 -0.000103524370077 0)
(0.000683229428729 -0.000125610636796 0)
(0.000614318930023 -0.000139030890227 0)
(0.000526064708035 -0.000136347155059 0)
(0.000430982512505 -0.000165236781921 0)
(0.000272979753898 -0.000193991774858 0)
(0.00012782332201 -0.000328619774087 0)
(-4.7519474968e-05 -0.000269398738763 0)
(-0.000129687061621 -0.000298068783961 0)
(-0.00019911114912 -0.000280722750973 -9.95665489515e-29)
(-0.000350453951383 -0.000291885495572 9.59652620861e-29)
(-0.000496139419295 -0.000294239872336 8.80429571636e-29)
(-0.000579207127144 -0.000235828349745 -8.12806693628e-29)
(-0.000633961394209 -0.000118265742257 8.28212304213e-29)
(-0.000688599865414 -0.000128742446825 -8.26026646027e-29)
(-0.000746832084894 -0.000160213610686 0)
(-0.000814148940897 -0.000164433015705 0)
(-0.000880486881866 -0.000154128102858 0)
(-0.000936979577548 -0.000141136448572 0)
(-0.000986427071466 -0.000124053320831 0)
(-0.00102878379812 -0.000111408626676 0)
(-0.00107097858459 -0.000101167620956 0)
(-0.00111123866026 -8.03946155337e-05 0)
(-0.000974074300825 -4.71901171147e-05 0)
(-0.000933352713663 -2.81238552787e-05 0)
(-0.000961158985256 -3.78379178381e-05 0)
(-0.00103232626595 -7.93279569317e-05 0)
(-0.00121405891495 -0.000128082089684 0)
(-0.00131377487715 -0.000143715081767 0)
(-0.00133325774954 -0.000131937262999 0)
(-0.00138788210213 -0.00011673306575 0)
(-0.00144442086885 -0.000106630088701 0)
(-0.00148236689172 -9.86532891112e-05 0)
(-0.00151448655118 -8.47881672637e-05 0)
(-0.0015445688872 -6.96180043929e-05 0)
(-0.0015689240419 -5.58554234968e-05 0)
(-0.00158507853026 -4.49682987886e-05 -1.77215927886e-28)
(-0.0016063451995 -3.4769058915e-05 1.72209368892e-28)
(-0.00159639990399 -2.62497809265e-05 0)
(-0.00160200301951 -1.52939940749e-05 0)
(-0.00163521071628 -4.39965080727e-06 0)
(-0.00157734691899 -1.5923314214e-05 0)
(-0.00160606018481 -2.10663673444e-05 0)
(-0.00166036755613 -1.17916928946e-05 0)
(-0.00160834520872 -2.0186734549e-05 0)
(-0.00163986091926 -3.36850529786e-05 0)
(-0.00169309010811 -2.27061116281e-05 0)
(-0.0017172910293 1.67663175149e-05 0)
(-0.00171431309063 4.26895580466e-05 0)
(-0.00170701543289 3.6885715929e-05 0)
(-0.00169704430216 3.16901218064e-05 0)
(-0.00168065286259 3.47371859325e-05 0)
(-0.00165900528079 4.19187888932e-05 0)
(-0.00163282179804 5.45238210001e-05 0)
(-0.00160212986696 6.9879911856e-05 0)
(-0.00156701315171 8.81686740159e-05 0)
(-0.00152725482005 0.000111985912658 0)
(-0.00148281338508 0.00013737873623 0)
(-0.00143108401182 0.000154245290476 0)
(-0.00136527038957 0.000159046334539 0)
(-0.00126801526113 0.000195694319921 0)
(-0.001152071696 0.00024790063911 0)
(-0.00107971886606 0.000288478433609 0)
(-0.000972612080601 0.00032604758049 0)
(-0.000827587267413 0.000371550599031 0)
(-0.000657369691508 0.000425567174698 0)
(-0.000465579040396 0.000487068501472 0)
(-0.000254811474349 0.000547518148146 0)
(-2.70797212571e-05 0.000612888004535 0)
(0.000228360984261 0.000649521605101 0)
(0.000398669126699 0.000436737412092 0)
(0.000489884185868 0.000248712832068 0)
(0.000590881689502 0.000173987187101 0)
(0.000681375291264 0.000145670812746 0)
(0.000737987295491 0.000122535772538 0)
(0.000782390997186 8.64992116143e-05 0)
(0.000810056216215 3.85125748451e-05 0)
(0.000812088103163 -1.29800282399e-05 0)
(0.000803660836601 -5.75213292466e-05 0)
(0.000814086093556 -9.46737780386e-05 0)
(0.000799395892939 -0.000147854574778 0)
(0.000727510580712 -0.00020228651513 0)
(0.000632721603227 -0.00022941799485 0)
(0.000528610718399 -0.000242517113371 0)
(0.000423182120351 -0.000309218658535 0)
(0.000298004113661 -0.000447365036406 0)
(7.96080955249e-05 -0.000466184495361 0)
(-4.85749943901e-05 -0.000409284341553 0)
(-5.79021194818e-05 -0.000268446603776 0)
(-0.000165108581726 -0.000430396821724 0)
(-0.0003122511615 -0.00043962110559 0)
(-0.000424104321727 -0.000369020103594 0)
(-0.000228509289182 -0.000132746728655 0)
(-0.000283837142529 -0.000132706828114 0)
(-0.000551630560981 -0.00025394775103 0)
(-0.000698888637046 -0.000273690373718 0)
(-0.000785475588473 -0.000246898878993 0)
(-0.000867201215713 -0.000225220495343 0)
(-0.000932612824415 -0.000199787847013 0)
(-0.000984777659081 -0.000172004329056 0)
(-0.00101423050529 -0.000126925433349 0)
(-0.000932090512141 -6.63117424683e-05 0)
(-0.000867252983098 -2.73650625852e-05 0)
(-0.000862577363971 -2.25403670379e-05 0)
(-0.000920540827423 -6.38262224464e-05 0)
(-0.00106452682469 -0.000134037474046 0)
(-0.00121967241393 -0.000208518117091 0)
(-0.00125923546657 -0.000222461050668 0)
(-0.00130304739609 -0.000201390299698 0)
(-0.0013573928862 -0.000182361821131 0)
(-0.00140322912309 -0.000167755996696 0)
(-0.00144224599955 -0.000150587383025 0)
(-0.00147644806609 -0.000132206916309 0)
(-0.00150564811349 -0.000114293848236 0)
(-0.00154101035682 -9.56838895251e-05 0)
(-0.00155757211115 -7.71910924835e-05 0)
(-0.00158765887312 -6.08305007735e-05 0)
(-0.00158063227922 -4.55649006016e-05 0)
(-0.00160904562944 -2.85885093153e-05 0)
(-0.00157007712204 -9.77145075696e-06 0)
(-0.00157919974559 -6.76449040912e-06 0)
(-0.00163390255218 -1.75502671751e-05 0)
(-0.00158615849656 -3.49114615105e-05 0)
(-0.00163659712829 -3.94800550052e-05 0)
(-0.00169533620772 -4.41454076755e-05 0)
(-0.00170706903995 -5.37425167007e-05 0)
(-0.00171010318043 -3.61944260653e-05 0)
(-0.00171399021794 2.73925028718e-06 0)
(-0.00171399029229 3.25913721328e-05 0)
(-0.00170938554356 4.22771937614e-05 0)
(-0.00169973393253 4.66281912258e-05 0)
(-0.00168394301975 5.45750317963e-05 0)
(-0.00166297915046 6.68033641582e-05 1.69905359693e-28)
(-0.00163753327376 8.32187117342e-05 -1.71152109664e-28)
(-0.00160768598098 0.000102958164836 0)
(-0.00157331961673 0.000126155123299 0)
(-0.00153397508174 0.000153037868102 0)
(-0.00148846546382 0.00018140092392 0)
(-0.00143345261189 0.000209461492737 0)
(-0.00136469488325 0.000243332466005 0)
(-0.00128068367108 0.000292988457613 0)
(-0.00118716629587 0.000343693241513 0)
(-0.00108449882175 0.000395194865422 0)
(-0.0009608609407 0.000461324187902 0)
(-0.000808202853761 0.00053661287386 3.26586255458e-28)
(-0.000627746501803 0.0006172060675 -3.72394446888e-28)
(-0.000425166199218 0.000698638441821 0)
(-0.000210259247101 0.000768146985127 0)
(1.58067327868e-06 0.000810393187849 0)
(0.000179598953374 0.000780625888213 0)
(0.000344891305683 0.000598911860388 0)
(0.0005069267959 0.000395249307258 0)
(0.000583320919127 0.000263950517412 0)
(0.000653214686899 0.00020571651965 0)
(0.000719654029013 0.000167728899414 0)
(0.000771215574273 0.000119862538276 0)
(0.000821784301332 6.06710801686e-05 0)
(0.000855739708556 1.71544559224e-06 0)
(0.000875629137181 -5.22418070054e-05 0)
(0.000855231878088 -0.000124225218879 0)
(0.000755559938747 -0.00020705208196 0)
(0.000673007627847 -0.000279656774938 0)
(0.000589096331716 -0.000340103284802 0)
(0.000466896928802 -0.000375970211608 0)
(0.000287580598851 -0.000369444918834 0)
(0.000212338913052 -0.000521864122791 0)
(7.2383959829e-05 -0.00062710139511 0)
(-3.41357632101e-06 -0.000402871895207 0)
(-2.74825759121e-05 -0.000327994592352 0)
(-0.000153224312611 -0.000574392864519 0)
(-0.00026599812336 -0.000527406349973 0)
(-0.000270805170204 -0.000328110987454 0)
(-0.000209089210306 -0.000176200789292 0)
(-0.000360792647727 -0.000297547719887 0)
(-0.000577552209841 -0.000439099408171 0)
(-0.000656161447307 -0.000392228331307 0)
(-0.000752981394509 -0.000340307276875 0)
(-0.000839942786821 -0.000311250382556 0)
(-0.000910370656411 -0.000265383482143 0)
(-0.000902572694358 -0.00016814191526 0)
(-0.000806566970778 -7.41772894883e-05 0)
(-0.00082096791587 -3.83745760661e-05 0)
(-0.000872340628511 -4.84229262456e-05 0)
(-0.000969318579528 -0.000100354741001 0)
(-0.00110065181718 -0.000185149982812 0)
(-0.00119615079699 -0.000250435201297 0)
(-0.00120819043756 -0.000258823969849 0)
(-0.00125158786185 -0.000259058701308 0)
(-0.0013117265119 -0.000253775629709 0)
(-0.0013576887092 -0.000233946888993 0)
(-0.0014002129522 -0.000209772591082 0)
(-0.00143693020872 -0.00018642040839 0)
(-0.0014671724055 -0.000165803876864 0)
(-0.00150618675351 -0.0001438194769 0)
(-0.00151936035436 -0.000120504809175 0)
(-0.001562669042 -9.78333172361e-05 0)
(-0.00155018719534 -7.39722003608e-05 0)
(-0.00159795625071 -5.23322078649e-05 -1.6876304467e-28)
(-0.00153366983604 -3.01099005103e-05 1.55645401435e-28)
(-0.00158777101185 -1.84162217104e-05 0)
(-0.00162815326115 -1.44447494639e-05 0)
(-0.00159135374413 -3.03630209844e-05 0)
(-0.00166017096572 -6.00595780276e-05 0)
(-0.00168765263919 -7.97575453639e-05 0)
(-0.00170572250197 -7.36644789221e-05 0)
(-0.00171352716926 -5.77016220777e-05 0)
(-0.00171570161773 -3.31208936763e-05 0)
(-0.00171815101391 4.40177159651e-07 0)
(-0.00171858424643 2.9935608817e-05 0)
(-0.00171447738003 4.76199669013e-05 0)
(-0.00170492603781 5.98827463773e-05 0)
(-0.00168962690777 7.33887374049e-05 0)
(-0.00166938497902 9.02285288619e-05 0)
(-0.00164472375107 0.000110779776316 0)
(-0.00161568816876 0.000134887993525 0)
(-0.00158197272967 0.000162874698397 0)
(-0.00154283550431 0.000195137769845 0)
(-0.00149679614805 0.000231342902744 0)
(-0.00144109476157 0.000271920768498 0)
(-0.00137280820925 0.000319972387585 0)
(-0.00129076708384 0.000377744431866 0)
(-0.0011959588039 0.000441793673745 0)
(-0.00108566886529 0.000517168607976 0)
(-0.000951594022318 0.000609389413183 0)
(-0.000788015475358 0.000712818481017 0)
(-0.000596573028186 0.000817324984245 0)
(-0.000386949711312 0.000910105397032 0)
(-0.000175398155379 0.000974186973882 0)
(1.76504788255e-05 0.000990717957275 0)
(0.000156551423392 0.000918396885532 0)
(0.000330085806431 0.00078200900638 0)
(0.000517799792537 0.000560580934733 0)
(0.000606351534521 0.000363216878219 0)
(0.000672709978044 0.00027124974456 0)
(0.000726155237574 0.000217756963294 0)
(0.000773512025678 0.000163023490377 0)
(0.000831317165278 0.000102132998233 0)
(0.000894561978289 3.27885954141e-05 0)
(0.000902405937604 -6.74150551583e-05 0)
(0.000806145493024 -0.000183858058764 0)
(0.000733254642839 -0.000286969087981 0)
(0.000661112173945 -0.000380639967332 0)
(0.000564685265862 -0.000467221031479 0)
(0.00041805907419 -0.000486642335072 0)
(0.000283005713911 -0.000498120389755 0)
(0.000193670823766 -0.000679798251642 0)
(5.49451097612e-05 -0.000734999604944 0)
(1.89154796848e-06 -0.000373459092397 0)
(-3.62172440902e-05 -0.000401158216011 0)
(-0.000156919001711 -0.000655241942472 0)
(-0.000215061047528 -0.000528822789978 0)
(-0.000156224807947 -0.000250286170059 0)
(-0.000212269007563 -0.00025585256193 0)
(-0.000471279047118 -0.000503225638372 0)
(-0.000561161338463 -0.000533819472166 0)
(-0.000628630410877 -0.000480173575984 0)
(-0.000712809347672 -0.000432125715614 0)
(-0.000794522333974 -0.000366035288986 0)
(-0.000717962032174 -0.000230465679837 0)
(-0.000647238110879 -0.000112642642232 0)
(-0.000700474283462 -8.16504430265e-05 0)
(-0.000767007174066 -9.71197006562e-05 0)
(-0.000899933826818 -0.000156037036056 0)
(-0.00104881452901 -0.000232385207652 0)
(-0.00114681121735 -0.00027557509322 0)
(-0.00113887853389 -0.000271718221376 0)
(-0.00119374276066 -0.000294019781921 0)
(-0.00126450592162 -0.000315322203889 0)
(-0.00130987733314 -0.000304075871092 0)
(-0.00135199185721 -0.000278857581908 0)
(-0.00138970376639 -0.000251323686713 0)
(-0.00143565683026 -0.000225143283796 0)
(-0.00146639710176 -0.000193968314675 0)
(-0.00146461902861 -0.000168888411522 0)
(-0.00153170694021 -0.000146504590027 0)
(-0.00149917889664 -0.000112346365268 0)
(-0.00157575360072 -8.12656104446e-05 0)
(-0.00147953241142 -4.76605477308e-05 0)
(-0.001573244785 -4.06130514556e-05 0)
(-0.0014962833469 -3.63740028504e-05 0)
(-0.00158009796712 -4.27747790034e-05 0)
(-0.001657578125 -6.95507618897e-05 0)
(-0.00168837630849 -9.93135093191e-05 0)
(-0.0017034156896 -9.94573766908e-05 0)
(-0.00171352464349 -8.38791786344e-05 0)
(-0.00171922493389 -6.14695258398e-05 0)
(-0.00172252864494 -3.37789807029e-05 0)
(-0.00172474727964 -1.48828738942e-06 0)
(-0.00172487500637 2.90025548714e-05 0)
(-0.0017208959401 5.27187308779e-05 0)
(-0.00171153907971 7.20316288308e-05 0)
(-0.0016968199635 9.12855136587e-05 0)
(-0.00167727051831 0.000112845206252 0)
(-0.00165340731529 0.0001376385576 0)
(-0.00162516603375 0.000166129317004 0)
(-0.00159204637454 0.000199032637624 0)
(-0.00155323473878 0.000237222413486 0)
(-0.00150733880608 0.000281497973045 0)
(-0.00145210618637 0.000333096715092 0)
(-0.00138507285693 0.000393880227138 0)
(-0.00130427285057 0.00046502581252 0)
(-0.00120756255178 0.000547855399558 0)
(-0.00109020587228 0.000648057449476 0)
(-0.00094560420614 0.000767740779478 0)
(-0.000771413435713 0.000897805412611 0)
(-0.000572972359112 0.00102224883667 0)
(-0.000361020674544 0.00111844290422 0)
(-0.000156432742805 0.00116575578096 0)
(1.86357035565e-05 0.00113304849884 0)
(0.000149426197726 0.000985475862329 0)
(0.000345526123633 0.000991071700047 0)
(0.000484625058563 0.000692852067288 0)
(0.000576437300977 0.000451798353903 0)
(0.000665506221746 0.000333858229013 0)
(0.000735861416977 0.000268881481238 0)
(0.000791522471982 0.000213927814434 0)
(0.00087687684683 0.000155365125914 0)
(0.000939264955538 4.77478639554e-05 0)
(0.000872390778241 -0.000108164227722 0)
(0.00079506476823 -0.000244625301332 0)
(0.000751255538622 -0.00036555342073 0)
(0.000668674590841 -0.000483666371779 0)
(0.000572287389462 -0.000592950645013 0)
(0.000414666091647 -0.000589252074319 0)
(0.000292997433197 -0.000617476759295 0)
(0.000197316889555 -0.00080751320236 0)
(6.01078872321e-05 -0.000843688822071 0)
(-1.32734906164e-05 -0.000405648734983 0)
(-8.8991299706e-05 -0.000530655407139 0)
(-0.000209486471622 -0.000714694482041 0)
(-0.000230072593839 -0.00065335955115 0)
(-0.00014715350141 -0.000312160989065 0)
(-0.00031576763106 -0.000464842551568 0)
(-0.000499074446078 -0.000626505541864 0)
(-0.000540812577309 -0.000598604707355 0)
(-0.000607211705723 -0.000545914087213 0)
(-0.000643129785003 -0.000485885284801 0)
(-0.000754277856614 -0.000392950921365 3.79146849964e-28)
(-0.00056145878887 -0.000169854317626 -2.12634250482e-28)
(-0.00064916977173 -0.000141463303666 0)
(-0.000688494886445 -0.000148287993995 0)
(-0.00080488115134 -0.000208739011438 0)
(-0.000971342584004 -0.000305171640308 0)
(-0.00108007580902 -0.000337590324631 0)
(-0.00104866216617 -0.000294470594671 0)
(-0.00111412634567 -0.000313238924024 0)
(-0.00120942672059 -0.00036191976975 0)
(-0.00125448556385 -0.000369379794351 0)
(-0.00130298681502 -0.000350396150079 0)
(-0.00134787231367 -0.000322889704309 0)
(-0.00138874585609 -0.000290343137698 0)
(-0.00141278166253 -0.000252351914464 0)
(-0.00141968469893 -0.000212929788176 0)
(-0.00148069690797 -0.000190606131513 0)
(-0.00143029963216 -0.00016307957405 0)
(-0.00153637525294 -0.000129147038179 0)
(-0.00142900970494 -6.89067850711e-05 0)
(-0.00153493552481 -5.72328033099e-05 0)
(-0.00147031956367 -6.00964582075e-05 1.48631714568e-28)
(-0.00156068842128 -6.47219428237e-05 -1.58425254643e-28)
(-0.00158752089154 -9.84676330703e-05 0)
(-0.0016845294803 -0.000127996850545 0)
(-0.00170329836505 -0.000126586954853 0)
(-0.00171234054349 -0.000111905025562 0)
(-0.00171998246439 -9.09165605085e-05 0)
(-0.00172667768141 -6.53568247313e-05 0)
(-0.00173116727401 -3.57396245008e-05 0)
(-0.00173331235435 -2.9411884227e-06 0)
(-0.00173313026158 2.94120298758e-05 0)
(-0.00172905697521 5.80588835618e-05 0)
(-0.0017198697275 8.35153422129e-05 0)
(-0.00170557448303 0.000108346388803 0)
(-0.00168665650776 0.000134669834095 0)
(-0.00166349410405 0.000163790412124 0)
(-0.00163590456438 0.000196716573253 0)
(-0.00160336738094 0.00023459704373 0)
(-0.00156522434385 0.000278796200738 0)
(-0.00152033610744 0.000330853360132 0)
(-0.00146674647757 0.00039256774505 0)
(-0.00140189019157 0.00046594584046 0)
(-0.001322591482 0.000553320643171 0)
(-0.0012244674766 0.000658579778664 0)
(-0.00110156992649 0.000786494427131 0)
(-0.000948712576287 0.000934730855644 0)
(-0.000766154008503 0.00108896684259 0)
(-0.000560677226643 0.00122767919182 0)
(-0.000344428471841 0.00132534281298 0)
(-0.000138877613897 0.00134796665666 0)
(3.073163942e-05 0.00128597796845 0)
(0.000187613659768 0.00121631592317 0)
(0.000325462048714 0.00110722879593 0)
(0.000455481889157 0.000809213467156 0)
(0.00054836959975 0.000543282482791 0)
(0.000679938000483 0.00043141928444 0)
(0.000784568762835 0.000355088103389 0)
(0.000862866424087 0.000287756144804 0)
(0.000936639853522 0.00019555279962 0)
(0.000941503041591 3.06444660942e-05 0)
(0.000866653962462 -0.000147432622859 0)
(0.000840555682075 -0.000297518747963 0)
(0.00079108063691 -0.000441679187192 0)
(0.000711254483096 -0.000591797339075 0)
(0.000590361101898 -0.000687321176989 0)
(0.000462220270526 -0.000726556776157 0)
(0.000309309185875 -0.000744675896364 0)
(0.000203676457647 -0.000923610916932 0)
(7.02360989406e-05 -0.000985598823972 0)
(-2.82487340227e-05 -0.000474056889494 0)
(-0.00013113860976 -0.000660845228359 0)
(-0.000237851610029 -0.000739082304753 0)
(-0.000140748224197 -0.00041836015831 0)
(-0.00015488886841 -0.00039226979639 0)
(-0.00038230003363 -0.000667752049109 0)
(-0.000462626316521 -0.000691947842003 0)
(-0.000526867491172 -0.000662832285661 0)
(-0.000557181170544 -0.00058395256762 0)
(-0.000622962753038 -0.000522589968368 0)
(-0.000489222556511 -0.000285115229454 0)
(-0.000562459262674 -0.000203034087826 0)
(-0.000633853450186 -0.000199750027367 0)
(-0.000688381108264 -0.000234406273567 0)
(-0.000874025631439 -0.000351464157151 0)
(-0.0010055210172 -0.000412324285653 0)
(-0.000965827876013 -0.000350219123209 0)
(-0.00101763925202 -0.000339435948471 0)
(-0.00113231349493 -0.000396311275894 0)
(-0.00120158048866 -0.00042581356601 0)
(-0.0012413599191 -0.000416988249122 0)
(-0.00128287818131 -0.000394794035825 0)
(-0.00133603488299 -0.000370064246377 0)
(-0.00137537983866 -0.000331875368446 0)
(-0.00142438979603 -0.000276565526303 0)
(-0.00139694932199 -0.000238131244974 0)
(-0.00148058724533 -0.000208287371772 0)
(-0.001456064844 -0.000168211199174 0)
(-0.00142343881093 -0.000127092045097 0)
(-0.00145327600245 -9.81384761821e-05 0)
(-0.0015732552504 -8.66663193179e-05 0)
(-0.00152344722983 -7.30857688626e-05 0)
(-0.00152556667176 -0.000113618970384 0)
(-0.00167194260434 -0.000163057855728 0)
(-0.00169238097352 -0.000170639268639 0)
(-0.0017090588714 -0.000147520402571 0)
(-0.00172016046583 -0.00012271446377 0)
(-0.00172825886742 -9.79791513393e-05 0)
(-0.00173572808191 -7.03396085079e-05 0)
(-0.00174130202732 -3.87667858674e-05 0)
(-0.00174380068258 -4.26656409754e-06 0)
(-0.00174327997986 3.06317573356e-05 0)
(-0.00173903826173 6.36963470341e-05 0)
(-0.00173001546246 9.46518924594e-05 0)
(-0.00171604629628 0.000124820497018 1.64505885778e-28)
(-0.00169757657884 0.000155894932336 -1.6400074246e-28)
(-0.00167486665418 0.000189403351205 0)
(-0.00164770168393 0.000226747688397 0)
(-0.00161572913215 0.000269401355326 0)
(-0.00157864942319 0.000319132935285 0)
(-0.00153568506812 0.000378153906409 0)
(-0.00148509649192 0.000449158170606 0)
(-0.00142403182421 0.000535445140684 0)
(-0.00134804090407 0.000641255946734 0)
(-0.00125080660414 0.000771713126093 0)
(-0.00112533870737 0.000929350092001 0)
(-0.000967100786134 0.0011069371709 0)
(-0.000776985449123 0.00128622168521 0)
(-0.000559789745728 0.00144336854664 0)
(-0.000325698148286 0.00154325984264 0)
(-0.000104787589419 0.00154148939777 0)
(7.241044846e-05 0.00145616377531 0)
(0.000212078259421 0.00133593566865 0)
(0.000311002768709 0.00119002809063 0)
(0.000478348151274 0.00103809389958 0)
(0.000560027688373 0.000660050171294 0)
(0.000696031315698 0.000542777011209 0)
(0.000825889022326 0.000450748418765 0)
(0.000904247741978 0.000346856491396 0)
(0.000955036127538 0.000206615964031 0)
(0.00094230865521 1.26628788138e-05 0)
(0.000913725546092 -0.000168958337809 0)
(0.00091086707707 -0.000337227186464 0)
(0.000861270022069 -0.000517802083644 0)
(0.00077757180266 -0.00069565152986 0)
(0.000642582185758 -0.000797810930341 0)
(0.000519773255465 -0.00087893787974 0)
(0.000343213347693 -0.000913897408958 0)
(0.000201475275062 -0.00104859737143 0)
(6.99668406933e-05 -0.00114503951909 0)
(-4.09275804001e-05 -0.00056317443868 0)
(-0.000154171267939 -0.000771072643139 0)
(-0.000200029564316 -0.000754809165648 0)
(-0.000135658024022 -0.000458513161797 0)
(-0.000224307904857 -0.000529717515173 0)
(-0.000403666834557 -0.000768674316406 0)
(-0.000426508685281 -0.000752091661692 0)
(-0.000513770873857 -0.000721955602648 0)
(-0.000474924793783 -0.000571572466367 0)
(-0.000634963905945 -0.000585097131268 0)
(-0.000477090883902 -0.000309589657095 0)
(-0.000576933702792 -0.000271608320784 0)
(-0.000628701735875 -0.000272373361873 0)
(-0.000745813138485 -0.000360992998726 0)
(-0.000911496995189 -0.00048472227682 0)
(-0.000989779815941 -0.000471017918974 0)
(-0.000945110569661 -0.000384826338759 0)
(-0.00103253446849 -0.000417628652268 0)
(-0.00112668419591 -0.000473465520255 0)
(-0.00118326812838 -0.000482216159982 0)
(-0.00123363686229 -0.000464062406888 0)
(-0.00126537299858 -0.00043447721893 0)
(-0.00131202442207 -0.00040697902311 0)
(-0.00132723697418 -0.000365030759758 0)
(-0.00133306666702 -0.000291170295514 0)
(-0.00142814491918 -0.000260663274082 0)
(-0.00133409900527 -0.00022343002174 0)
(-0.00151390238739 -0.000189050747573 0)
(-0.00140470394852 -0.00014824666352 0)
(-0.00156386651489 -0.00014403466948 0)
(-0.00145253883552 -0.000110574852903 0)
(-0.0016049998268 -0.000114322617733 0)
(-0.0016438560702 -0.000167777263901 1.74445961215e-28)
(-0.00168235050304 -0.00020899297836 -1.80781945768e-28)
(-0.00170020888831 -0.000194293293558 0)
(-0.00171579006086 -0.000164557912867 0)
(-0.00172923575036 -0.000134833981313 0)
(-0.00173874559726 -0.00010637390311 0)
(-0.00174659037853 -7.63181403647e-05 0)
(-0.00175265291381 -4.26398400976e-05 0)
(-0.0017557708314 -5.76560032025e-06 0)
(-0.00175540025939 3.2263767072e-05 0)
(-0.00175103325713 6.95936264299e-05 0)
(-0.00174206318736 0.000105631410503 0)
(-0.00172836429931 0.000140972372916 0)
(-0.00171009708374 0.000176849112489 0)
(-0.00168740674506 0.000214782937357 0)
(-0.00166028781208 0.000256381492739 0)
(-0.00162878759797 0.000303291375511 0)
(-0.0015930968618 0.000357571717757 0)
(-0.00155299711515 0.000422159349215 0)
(-0.00150718698687 0.000501158619559 0)
(-0.00145263838063 0.000600011049852 0)
(-0.00138363366438 0.000725333254234 0)
(-0.00129174809596 0.000882959859024 0)
(-0.00116794282608 0.00107273748383 0)
(-0.00100602155165 0.00128328060927 0)
(-0.00080398863324 0.00149401471862 0)
(-0.00056274849047 0.00168069229301 0)
(-0.000296970702679 0.00178966646469 0)
(-6.45087993942e-05 0.00174809968039 0)
(9.58401701591e-05 0.00160253069987 0)
(0.0002202321538 0.00145214248216 0)
(0.000341377352246 0.00130551150536 0)
(0.000470546235351 0.00112815559851 0)
(0.000637792578054 0.0008667472148 0)
(0.000721748889878 0.000618662205857 0)
(0.000879960555992 0.000556065171327 0)
(0.000961546224499 0.000403763251719 0)
(0.000982055508059 0.000212878439703 0)
(0.000975418883719 1.40843481458e-05 0)
(0.000995446516986 -0.000167577422922 0)
(0.00100699411896 -0.0003644698241 0)
(0.000962140359549 -0.000592643522544 0)
(0.000857938494153 -0.000799999776098 0)
(0.000716365210561 -0.000939180760228 0)
(0.000562960971564 -0.00104290470622 0)
(0.000378264368257 -0.0011218138968 0)
(0.000200560872944 -0.00120761471897 0)
(6.25667907536e-05 -0.0012809423086 0)
(-5.27034222831e-05 -0.000678218427018 0)
(-0.000176209833978 -0.000854794182394 0)
(-0.000184643884113 -0.000739959283647 0)
(-0.000139443243839 -0.000492237990036 0)
(-0.000303282323321 -0.000736291631336 0)
(-0.000362689609328 -0.000785772595018 0)
(-0.000397968644004 -0.000806250365589 0)
(-0.000464751273453 -0.000767993145725 0)
(-0.000407001831225 -0.000554684392196 0)
(-0.000530938834643 -0.000547095772771 0)
(-0.00046199563238 -0.00034055368881 0)
(-0.000571106370981 -0.000340218197044 0)
(-0.000619781766115 -0.000357648262771 0)
(-0.000779821646698 -0.000490197535604 0)
(-0.000908368263869 -0.000573838139544 0)
(-0.000859489772011 -0.000465283940595 0)
(-0.0009177396461 -0.000434998165015 0)
(-0.00102701723132 -0.000498870646862 0)
(-0.00110526093891 -0.000542889326585 0)
(-0.00115597387016 -0.000539038928361 0)
(-0.00121997134368 -0.000516162106847 0)
(-0.00125923057167 -0.000476177176317 0)
(-0.00131654629839 -0.000434485124162 0)
(-0.00132617154724 -0.000386520911857 0)
(-0.001266245417 -0.000326603856201 0)
(-0.00145557354218 -0.000288984956778 0)
(-0.00135247381168 -0.000238195366536 0)
(-0.00136698235482 -0.000201632611477 0)
(-0.00141052212301 -0.000181403328651 0)
(-0.00143003786327 -0.000181694405662 0)
(-0.00155824444966 -0.000168808976957 0)
(-0.00154126936309 -0.000175463057292 0)
(-0.00167485736327 -0.000216535326678 0)
(-0.00169087059197 -0.000234432761905 0)
(-0.00170632979015 -0.000213571904561 0)
(-0.00172475657562 -0.000181293899229 0)
(-0.00174025903743 -0.000148270592761 0)
(-0.00175153280521 -0.000116030215573 0)
(-0.00175985524737 -8.30119945046e-05 0)
(-0.00176585455654 -4.70752997065e-05 0)
(-0.00176926106657 -7.62918746915e-06 0)
(-0.0017693200565 3.38985996021e-05 0)
(-0.00176513698125 7.56211313793e-05 0)
(-0.00175619379015 0.000116616110088 0)
(-0.00174252337413 0.000157073544952 0)
(-0.00172422077777 0.000197898591186 0)
(-0.00170114828237 0.000240387212063 0)
(-0.00167347748531 0.000285998993723 0)
(-0.0016420031598 0.000336328603601 0)
(-0.00160775383178 0.000393586583227 0)
(-0.00157141253055 0.00046148508111 0)
(-0.00153262443128 0.00054594165251 0)
(-0.00148868993746 0.000655415532115 0)
(-0.00143262555698 0.000799759785483 0)
(-0.00135285350645 0.00098610592142 0)
(-0.00123577245187 0.00121259397434 0)
(-0.00106901712531 0.00146487539804 0)
(-0.000845235054707 0.00172481759968 0)
(-0.000562777453629 0.00196854277659 0)
(-0.000261366978406 0.00207158552786 0)
(-4.76778160188e-05 0.0019325533242 0)
(7.77776359088e-05 0.00173132702147 0)
(0.000207009083825 0.00159135515491 0)
(0.0003693965771 0.00145293577281 0)
(0.000539008090332 0.00126679791078 0)
(0.000739926168553 0.00106688109671 0)
(0.000989684018075 0.000877857037395 0)
(0.000883840057961 0.000551238421909 0)
(0.000986584612602 0.000429960049123 0)
(0.00100690815686 0.000227389180568 0)
(0.00103117479288 3.85955131587e-05 0)
(0.00108749447945 -0.000137587412894 0)
(0.00113024898102 -0.000367904735293 0)
(0.00110004593883 -0.000667974557729 0)
(0.000967312892958 -0.000935825932547 0)
(0.000789680444947 -0.00111601934396 0)
(0.000594679103511 -0.00123165194272 0)
(0.000397295151324 -0.00131727569267 0)
(0.000209497564365 -0.00136040895505 0)
(6.23744268762e-05 -0.00137723798813 0)
(-5.30329383338e-05 -0.000796456245328 0)
(-0.000168174592357 -0.000918399022881 0)
(-0.000150757658157 -0.000640592820256 0)
(-0.000176390654289 -0.000583861338105 0)
(-0.000320365084 -0.000864202813798 0)
(-0.000308034820069 -0.000827599804896 0)
(-0.000377833747548 -0.000862358266969 0)
(-0.000388869222284 -0.00076552386041 0)
(-0.000433185599911 -0.000663028138563 0)
(-0.000442658766169 -0.000506789385961 0)
(-0.000473839632636 -0.000410907954447 0)
(-0.000566797260366 -0.000420477939951 0)
(-0.000613879945731 -0.000449107844532 0)
(-0.000791995769498 -0.000608656562183 0)
(-0.000895824956731 -0.000633514574916 0)
(-0.000821438687159 -0.000496005066929 0)
(-0.00091040692667 -0.000511029203626 0)
(-0.00101009446795 -0.000580223823581 0)
(-0.00107824845669 -0.000608274798279 0)
(-0.00112836884678 -0.000596559498433 0)
(-0.00117862551391 -0.000567652030184 0)
(-0.00124683947187 -0.000537249350691 0)
(-0.00131299015261 -0.000469120450699 0)
(-0.00135180449524 -0.000395200663435 0)
(-0.00127846337668 -0.000351202667065 0)
(-0.00128595886319 -0.000290332182327 0)
(-0.00143118308376 -0.000263729781461 0)
(-0.00135916422663 -0.000243814166651 0)
(-0.0015466107075 -0.000230737789541 0)
(-0.00143054354028 -0.000205713911248 0)
(-0.00145124824326 -0.000206205674369 0)
(-0.00154811535496 -0.000244659246542 0)
(-0.00167691569562 -0.000287289470774 0)
(-0.00169244415483 -0.000265179643157 0)
(-0.00171289043958 -0.000233257674262 0)
(-0.00173433784695 -0.000199017106633 0)
(-0.00175216069969 -0.000163222181369 0)
(-0.00176563008298 -0.000127098428461 0)
(-0.00177550782297 -9.03987358133e-05 0)
(-0.0017814679617 -5.17916557365e-05 0)
(-0.00178462168073 -9.85564904775e-06 0)
(-0.00178519223985 3.52412570723e-05 0)
(-0.00178146838421 8.1626383563e-05 0)
(-0.00177259100912 0.000127733842566 0)
(-0.00175877946782 0.000173430132207 0)
(-0.00174004183224 0.000219460282186 0)
(-0.00171601105414 0.000266771880912 0)
(-0.00168706498644 0.000316270791372 0)
(-0.00165478505029 0.000369020330095 0)
(-0.0016214281405 0.000427084319161 0)
(-0.00158928756428 0.000494747384433 0)
(-0.00156001395446 0.00058000512369 0)
(-0.00153221363832 0.000695394627672 0)
(-0.00149763915839 0.000855861805649 0)
(-0.00143978302216 0.00107213548142 0)
(-0.00133512725423 0.001342940588 0)
(-0.00116175846365 0.00165818622279 0)
(-0.000908568926672 0.00201445341601 0)
(-0.000564933527305 0.00232177833764 0)
(-0.000243352591099 0.00234017588201 0)
(-8.04510159153e-05 0.00205301073215 0)
(6.70979341031e-06 0.00183965091321 0)
(0.000153779338933 0.00176217314986 0)
(0.00037781004986 0.00166894518003 0)
(0.000633590180934 0.00149802192937 0)
(0.000877243309337 0.00125034014847 0)
(0.00108975676687 0.000957768472579 0)
(0.00127635710624 0.000696126484623 0)
(0.00102734345823 0.000386443656714 0)
(0.00102158432982 0.000224062816138 0)
(0.00106455425656 8.44332806869e-05 0)
(0.0011634198258 -5.8133040103e-05 0)
(0.00128170939881 -0.000314023108543 0)
(0.00129515075697 -0.000742079703965 0)
(0.00112151050535 -0.00114229055794 0)
(0.000858693472277 -0.0013476562603 0)
(0.000618416308091 -0.00143554164783 0)
(0.000411679769853 -0.00150308264839 0)
(0.000224999673049 -0.00151993685499 0)
(6.90338979065e-05 -0.00150657806602 0)
(-4.1178050553e-05 -0.000895649264911 0)
(-0.000118403035366 -0.000966051781088 0)
(-0.000137480660978 -0.000676237583868 0)
(-0.000219495257699 -0.000677611179242 0)
(-0.000259797616535 -0.000779608579621 0)
(-0.00026957384081 -0.000868324721241 0)
(-0.000367083916667 -0.000923152605561 0)
(-0.000343744937806 -0.000757719582525 0)
(-0.000448321983785 -0.000773896627454 0)
(-0.000429898947911 -0.000535305109873 0)
(-0.00048908152474 -0.000477369766798 0)
(-0.00056372295127 -0.000497631799422 0)
(-0.000619536527358 -0.000548669417588 0)
(-0.000786746114489 -0.000715614540728 0)
(-0.000857017746874 -0.000684074800234 0)
(-0.000787084184495 -0.000530106242235 0)
(-0.000898110767801 -0.000587583802079 0)
(-0.000986776240639 -0.00065671459757 0)
(-0.00104745159363 -0.000669636623319 0)
(-0.00110278628156 -0.000653055243073 0)
(-0.00114209347779 -0.000623215702515 0)
(-0.00122584888511 -0.000602583818052 0)
(-0.00120993596371 -0.000499005521236 0)
(-0.00135877868127 -0.000418566702665 0)
(-0.00131411472398 -0.00035580578429 0)
(-0.00128077697465 -0.000341155722148 0)
(-0.00147208645957 -0.000319919074249 0)
(-0.00135673151367 -0.000267869196718 0)
(-0.00138954084108 -0.000252330309761 0)
(-0.00152787826035 -0.000247273232879 0)
(-0.00152231298935 -0.000268604262865 0)
(-0.00165316414065 -0.000330127413188 0)
(-0.00166363108767 -0.000334847850792 0)
(-0.00169458460345 -0.000296023258648 0)
(-0.00172048403178 -0.000257042536583 0)
(-0.00174352902463 -0.000219059336905 0)
(-0.00176392904911 -0.000180221551292 0)
(-0.00178002233052 -0.000140558157425 0)
(-0.00179329347879 -9.9469437346e-05 0)
(-0.00180090750898 -5.67955495155e-05 0)
(-0.0018030539749 -1.19443941727e-05 0)
(-0.00180283277953 3.63356414751e-05 0)
(-0.00179983394244 8.73458115261e-05 0)
(-0.00179150035971 0.000138966634863 0)
(-0.00177744975652 0.00019032407134 0)
(-0.00175784007815 0.000242025573645 0)
(-0.00173218688794 0.000294678573398 0)
(-0.00170094640233 0.00034823231183 0)
(-0.00166642360168 0.000402563372428 0)
(-0.00163240822334 0.000458788689983 0)
(-0.00160391541068 0.000521142390748 0)
(-0.00158618318823 0.000599447297715 0)
(-0.00158084887678 0.000711409559999 0)
(-0.00157957987952 0.000880632715855 0)
(-0.00155765892905 0.00112642320664 0)
(-0.00147730339174 0.00145733418546 0)
(-0.00131102364097 0.0018864292912 0)
(-0.00101851216435 0.00236975391328 0)
(-0.000608331455006 0.00270993799204 0)
(-0.000270403940314 0.00257472756923 0)
(-0.000155466338241 0.00210059865996 0)
(-0.000120151430319 0.00192613319489 0)
(4.10990099677e-05 0.00198715647092 0)
(0.000352135076335 0.00198317635122 0)
(0.000713569791614 0.00181387834266 0)
(0.00104426779388 0.00150644094397 0)
(0.00126669141239 0.00109328091517 0)
(0.0014935261953 0.000670524206967 0)
(0.00122795069196 0.000272194506918 0)
(0.00106984734067 0.000166557701836 0)
(0.00103760675033 0.000121271123448 0)
(0.00119394772114 0.000109568779965 0)
(0.00147571158173 -0.000124658473829 0)
(0.00160224895906 -0.000804878748953 0)
(0.00132583540143 -0.00147540718583 0)
(0.00090584836767 -0.00166441259029 0)
(0.000622752432869 -0.0016445543869 0)
(0.000411843868175 -0.00170909627409 0)
(0.000214662274631 -0.00170042823469 0)
(6.54596699401e-05 -0.00166922235533 0)
(-2.87749560919e-05 -0.000957677365653 0)
(-6.66906341611e-05 -0.000997878674242 0)
(-0.000128799436684 -0.000727424935368 0)
(-0.000226555378162 -0.000743912743159 0)
(-0.000231420023875 -0.000764085124695 0)
(-0.000280851848075 -0.000933314444293 0)
(-0.000366889474518 -0.000976288972546 0)
(-0.000299177380856 -0.000694682807305 0)
(-0.000460400571183 -0.000862068233993 0)
(-0.000412615016775 -0.00055795080594 0)
(-0.000490439277946 -0.000533724682068 0)
(-0.000554864000314 -0.00056777814566 0)
(-0.000611713180011 -0.000638365309547 0)
(-0.000771255756901 -0.000798819065645 0)
(-0.000703494499416 -0.000631648036903 0)
(-0.00074080294455 -0.000576139146899 0)
(-0.000875113796605 -0.000676214780996 0)
(-0.000956327657881 -0.000731330091066 0)
(-0.00101388984018 -0.00072858340675 0)
(-0.00107077252931 -0.000705694737568 0)
(-0.00111383170515 -0.000677118649676 0)
(-0.00120865378856 -0.000660777093344 0)
(-0.00114969527324 -0.00053169944399 0)
(-0.00117802690337 -0.000420113428012 0)
(-0.00135965301369 -0.000403403241681 0)
(-0.00127591835994 -0.00037109980889 0)
(-0.00130610196658 -0.000313604076011 0)
(-0.00139219474197 -0.000289747821545 0)
(-0.00138119725205 -0.000303380383721 0)
(-0.00141256500958 -0.000294804037392 0)
(-0.00147405404429 -0.000331521256204 0)
(-0.0016496870114 -0.000397139763853 0)
(-0.0016623268503 -0.000370243509536 0)
(-0.00169677181068 -0.000327536773052 0)
(-0.00172841073273 -0.000284758692375 -1.73297052591e-28)
(-0.00175464343973 -0.000242589750366 1.71440418023e-28)
(-0.00177853272537 -0.000199500326633 0)
(-0.00179518590781 -0.000155862969126 0)
(-0.00180943552566 -0.00011111716011 0)
(-0.00182181413492 -6.36771692282e-05 0)
(-0.00182604321214 -1.40878873851e-05 0)
(-0.00182452336925 3.7853102413e-05 0)
(-0.00182064359699 9.30077455805e-05 0)
(-0.00181282029392 0.000150175190528 0)
(-0.00179888600236 0.000207817812667 0)
(-0.00177821790859 0.000266023964414 0)
(-0.00175024791452 0.000324999985642 0)
(-0.00171538569787 0.000383423468617 0)
(-0.00167633731999 0.000439100606309 0)
(-0.0016386371291 0.000490983629511 0)
(-0.00161103439874 0.000541570369136 0)
(-0.00160455235675 0.000601044565533 0)
(-0.00162771728853 0.000692713914139 0)
(-0.00167520943884 0.000855237899403 0)
(-0.00171138533011 0.00112530086915 0)
(-0.00169051157962 0.00153797749568 0)
(-0.0015631676693 0.00214284373766 0)
(-0.00125528072127 0.00279406460755 0)
(-0.0007855174532 0.00322240922061 0)
(-0.000316412570308 0.00287681032739 0)
(-0.000207470529768 0.00210618381473 0)
(-0.000310637448277 0.00202930532546 0)
(-0.000185519032531 0.00233024380598 0)
(0.000275499691034 0.00237182987784 0)
(0.000848661782064 0.002123522073 0)
(0.00135363084361 0.00174155663636 0)
(0.00166415720185 0.00124743223853 0)
(0.001822390859 0.000620106129169 0)
(0.00157494306018 6.25953981063e-05 0)
(0.00113897052869 -1.62424019578e-05 0)
(0.000943698789751 4.11742877831e-05 0)
(0.00110443940408 0.000388445057677 0)
(0.00180844810904 0.0003476914293 0)
(0.00222439169779 -0.000832210799326 0)
(0.00166826275361 -0.00204682629927 0)
(0.000856211124567 -0.0020719488983 0)
(0.00057367291242 -0.0017882719568 0)
(0.000392135722319 -0.0019683521056 0)
(0.000152408982388 -0.00186191508474 0)
(4.06305331572e-05 -0.001780608734 0)
(-3.17937669038e-05 -0.00101832826584 0)
(-8.58737377075e-05 -0.00103599168367 0)
(-0.000150859798707 -0.0010044858448 0)
(-0.000177503524413 -0.000790876372494 0)
(-0.000221155735463 -0.000817648157226 0)
(-0.00029597045539 -0.000999333916218 0)
(-0.0003629897186 -0.00101842808593 0)
(-0.000316870576643 -0.00074453306108 0)
(-0.000484263014998 -0.000925035139636 0)
(-0.000400469715092 -0.000588750247171 0)
(-0.000489209373928 -0.000590134264593 0)
(-0.000547616549864 -0.000632611095279 0)
(-0.000604384281147 -0.000713581022806 0)
(-0.000754607200539 -0.000862519243217 0)
(-0.00066768136133 -0.000656383656699 0)
(-0.000750018259672 -0.00065911755782 0)
(-0.000864470437336 -0.000762482680842 0)
(-0.000930245348924 -0.000799400915198 0)
(-0.000984141014898 -0.000785813266863 0)
(-0.00103466731283 -0.000754931323491 0)
(-0.00108539096257 -0.000727790003551 0)
(-0.00118743288018 -0.000701968930829 0)
(-0.00112393408846 -0.000557345428967 0)
(-0.00117212065867 -0.00049638380003 0)
(-0.00137243478567 -0.000464508981565 0)
(-0.00127573534405 -0.000379008132005 0)
(-0.00130017631437 -0.000369416814531 0)
(-0.00147448702117 -0.000349416684264 0)
(-0.0013971919453 -0.000309012742858 0)
(-0.001442189202 -0.000359694622705 0)
(-0.00161917333478 -0.000453721093257 0)
(-0.00163472229791 -0.000453616858022 0)
(-0.00166522410825 -0.000406591564202 0)
(-0.00170179787362 -0.000361071183541 0)
(-0.00173795355936 -0.000315627433892 0)
(-0.00176443276059 -0.000268714733538 0)
(-0.00179098769379 -0.000221801650801 0)
(-0.00181535074861 -0.000173777507466 0)
(-0.00182981191541 -0.000124533326735 0)
(-0.00184190363643 -7.30536612091e-05 0)
(-0.00185027517224 -1.80471799285e-05 0)
(-0.00185057715928 3.93441937226e-05 0)
(-0.00184585537989 9.92385494832e-05 0)
(-0.00183743349492 0.000161705300472 0)
(-0.00182346196537 0.000225845341619 0)
(-0.00180196649116 0.000291507383395 0)
(-0.00177148543637 0.000358406442659 0)
(-0.00173179008366 0.000423907283941 0)
(-0.00168480258846 0.000482465220877 0)
(-0.00163767645901 0.000528482378069 0)
(-0.00160460658445 0.000560638426645 0)
(-0.00160314835965 0.000585142518134 0)
(-0.00165709153751 0.00062761328357 0)
(-0.00176973243567 0.000750745291059 0)
(-0.00190261575156 0.00101537750569 0)
(-0.00205537510611 0.00154696736334 0)
(-0.00205695312789 0.00251640980242 0)
(-0.00180786402423 0.00333024837115 0)
(-0.00115198780564 0.00395229545797 0)
(-0.000223416608948 0.00342745142729 0)
(-0.000109610219283 0.00140249822393 0)
(-0.000434306578193 0.000418660650696 0)
(6.16802948275e-05 0.000609027600577 0)
(0.00155837218961 0.00102720426164 0)
(0.00325874624558 0.00103857043489 0)
(0.00425658323048 0.000670096487783 0)
(0.00430751554806 0.000212667124124 0)
(0.00388216937405 -0.00016040977505 0)
(0.00359069330681 -0.000407893360062 0)
(0.0028463128483 -0.000201365334477 0)
(0.000767027317495 0.00035196856023 0)
(0.00111791633801 0.00146185613232 0)
(0.00262044108981 0.00209904499608 0)
(0.00365454738401 -0.000593214914792 0)
(0.00237303129711 -0.00433535132423 0)
(0.00055953728789 -0.00315122125966 0)
(0.000475500597828 -0.00180150127134 0)
(0.000420615455596 -0.00235188714905 0)
(1.94617172034e-05 -0.00198909803363 0)
(-5.45559624015e-06 -0.00181184714884 0)
(-3.37385633707e-05 -0.00108053450382 0)
(-0.000114939076829 -0.00108467636409 0)
(-0.000104651698829 -0.000824499961709 0)
(-0.000126807263364 -0.000846922324444 0)
(-0.00020190965295 -0.000879548556806 0)
(-0.000299576096804 -0.00106466365433 0)
(-0.00035833745292 -0.00104899058219 0)
(-0.00034722432221 -0.000807620641784 0)
(-0.00049281535186 -0.000973927667652 0)
(-0.00038744101244 -0.000627456865465 0)
(-0.000485774631981 -0.00065002513137 0)
(-0.000543760774851 -0.000696885404544 0)
(-0.00060707676237 -0.000785581691053 0)
(-0.000744035052384 -0.000911629019354 0)
(-0.000669684176054 -0.000697788142548 0)
(-0.000767137757473 -0.000734901271129 0)
(-0.000860524973339 -0.000833983996408 0)
(-0.000912966569066 -0.000858659532375 0)
(-0.000961600438131 -0.000839965298132 0)
(-0.00101132403661 -0.000808269487596 0)
(-0.00106038886781 -0.00077733334012 0)
(-0.00115263839491 -0.000742571089809 0)
(-0.00115148438209 -0.000620879835888 0)
(-0.00116873518212 -0.000545293257403 0)
(-0.00120796815419 -0.000454997262523 0)
(-0.00133172088137 -0.000430033355152 0)
(-0.00130078766611 -0.000420823314062 0)
(-0.00132087646773 -0.000383452387947 0)
(-0.00152717677638 -0.000405382741144 0)
(-0.00158126826648 -0.000461895753729 0)
(-0.00162520765305 -0.000500285928667 0)
(-0.00164565030284 -0.000482489016257 0)
(-0.00167834828767 -0.000442665899696 0)
(-0.00171359721391 -0.000396027740084 0)
(-0.00174570965872 -0.000346763812923 0)
(-0.00177784680436 -0.000297794009042 -1.6561899573e-28)
(-0.00180638237968 -0.000247642717953 1.64004960256e-28)
(-0.00183093104971 -0.000195049932968 0)
(-0.00185393465857 -0.000140516212481 0)
(-0.00186698029374 -8.41174585954e-05 0)
(-0.00187589307277 -2.42677157295e-05 0)
(-0.0018791853378 3.93365369699e-05 0)
(-0.00187574497911 0.000105629432993 0)
(-0.00186682751919 0.000173991762504 0)
(-0.00185198968597 0.000244175912685 0)
(-0.00183039031708 0.000317820014228 0)
(-0.00179857542194 0.000395815076698 0)
(-0.0017520490297 0.000472962506221 0)
(-0.0016921397882 0.000537755794877 0)
(-0.00162895943345 0.000579299990231 0)
(-0.00157755453621 0.000590342488426 0)
(-0.00156208952884 0.000561900186696 0)
(-0.0016381286691 0.000508187542851 0)
(-0.00182701230694 0.000530814790671 0)
(-0.00216288277208 0.000690998893267 0)
(-0.00284461615022 0.00145567877873 0)
(-0.00288840448695 0.00248267555303 2.11087152072e-28)
(-0.00273140431773 0.00171387470732 -1.75806611403e-28)
(-0.00106814215057 0.00160481739727 0)
(0.00254936870623 0.0016997052645 0)
(0.00622564897825 0.00219410226754 0)
(0.0298882944855 0.00877348878523 0)
(0.0508842603713 0.0115757351683 0)
(0.0645505593473 0.0105617742425 0)
(0.077793694005 0.00853210594486 0)
(0.0896038990432 0.00599604749121 0)
(0.099107686854 0.00327267770331 0)
(0.106099733204 0.000608641781453 0)
(0.109626822555 -0.00202346159881 0)
(0.109656193527 -0.00463393368124 0)
(0.104096085498 -0.00713126059525 0)
(0.0979951555259 -0.0113617998316 0)
(0.0585391044983 -0.011495168622 0)
(0.0113391878762 -0.00309426731796 0)
(0.00413115122971 -0.00181150975578 0)
(-0.0012347820862 0.000301123573252 0)
(-4.76576562816e-05 0.00102555837535 0)
(0.000553050697969 -0.0037475163995 0)
(-0.000274353594815 -0.00206577695812 0)
(-9.1982388992e-05 -0.00175035243536 0)
(-2.91155003657e-05 -0.00114493704256 0)
(-9.87235212107e-05 -0.0011442234385 0)
(-9.37923490537e-05 -0.000857128013659 0)
(-0.000120525503816 -0.000917178093573 -2.25726368586e-29)
(-0.000200827773871 -0.000974413660095 2.37271175454e-29)
(-0.000297579815919 -0.00112318284202 0)
(-0.000334906405227 -0.00107459382365 0)
(-0.000365558154992 -0.00088432944086 0)
(-0.000416093254899 -0.000850159727799 0)
(-0.000389342981359 -0.000682356627959 0)
(-0.000481808611885 -0.000718096918449 0)
(-0.000543058463947 -0.000764744983938 0)
(-0.000619296072141 -0.000862689527045 0)
(-0.000738768194337 -0.000954456293019 0)
(-0.000670090700936 -0.000744421149519 0)
(-0.000777890195529 -0.000806615073165 0)
(-0.000855148668186 -0.000894289899967 0)
(-0.000900492643757 -0.000909897010472 0)
(-0.000945741046031 -0.000891548912397 0)
(-0.000993806140887 -0.000860682730612 0)
(-0.00104268154001 -0.000828089388352 0)
(-0.00111462673485 -0.000785251333436 0)
(-0.00117359749449 -0.000687719639819 0)
(-0.00117060828464 -0.000578950769517 0)
(-0.00118950524235 -0.000512575587334 0)
(-0.00140525284049 -0.000507797462423 0)
(-0.00130132425932 -0.000440180034926 0)
(-0.00133418168503 -0.000457291042888 0)
(-0.00136915770119 -0.00046225978818 0)
(-0.00152080386092 -0.000521226996044 0)
(-0.00160177339705 -0.000552225674573 0)
(-0.00164368655152 -0.000523247345417 0)
(-0.00168338021819 -0.000479370185156 0)
(-0.00171756439007 -0.000430388966436 0)
(-0.00176144563333 -0.00038187907411 0)
(-0.00179243490662 -0.000329216833393 0)
(-0.00182585126596 -0.000276077969356 0)
(-0.00185173843632 -0.000219614787253 0)
(-0.00187693095106 -0.000160242364559 0)
(-0.00189549243743 -9.75943177112e-05 0)
(-0.00190574680953 -3.22896226046e-05 0)
(-0.00191071837142 3.67659612866e-05 0)
(-0.00191074922023 0.00011054975382 0)
(-0.00190337349828 0.000187375988653 0)
(-0.00188704395633 0.000264542283739 0)
(-0.00186212568996 0.000344993932192 0)
(-0.00182800065388 0.000434705654894 0)
(-0.00177548951874 0.000528845767577 0)
(-0.00170442450424 0.000609753753343 0)
(-0.00161645187846 0.000657053534776 0)
(-0.00151995756629 0.00065478276287 0)
(-0.00144886699737 0.000564327045879 0)
(-0.00150908425364 0.000333905383105 0)
(-0.00175614889894 0.00010110062926 0)
(-0.00276829035723 -0.000215096010546 0)
(-0.00398471321079 -0.000131407820597 0)
(-0.000421643708111 0.00142165913407 0)
(0.00852134648143 0.00660675999929 0)
(0.033928191835 0.0163591798022 0)
(0.0521343905645 0.018785823019 0)
(0.0696621269196 0.0243878578717 0)
(0.0841079787695 0.0285832152378 0)
(0.0949337422481 0.0289093198337 0)
(0.104686957584 0.0262970631139 0)
(0.114682061964 0.022627010916 0)
(0.124200810149 0.0185913594818 0)
(0.132495342349 0.0142232308009 0)
(0.13920475329 0.0093828367174 0)
(0.144089644808 0.00390546833537 0)
(0.146412046479 -0.00266744421748 0)
(0.146135986691 -0.0113924397595 0)
(0.145722572005 -0.0246647079845 0)
(0.142867168639 -0.0391109452251 0)
(0.134212697743 -0.0429094789931 0)
(0.117479505346 -0.0343400230315 0)
(0.0975169273722 -0.0301561678268 0)
(0.0161652078569 -0.00554407086463 0)
(0.00350974750143 -0.000724706617343 0)
(-0.00188938629309 -0.000575439361834 0)
(-0.000264408635032 -0.000805302334285 0)
(-2.48529193418e-05 -0.00120110964753 0)
(-9.27288379675e-05 -0.00119935762931 0)
(-8.29593573958e-05 -0.00082461409102 0)
(-0.000117729284691 -0.000985596007334 0)
(-0.000208477283215 -0.00108633408363 0)
(-0.000291539441046 -0.00117201963692 0)
(-0.00031143405945 -0.0011022296953 0)
(-0.000364201699473 -0.000967204862084 0)
(-0.000413233336846 -0.000867582754983 0)
(-0.000410653398836 -0.000735262051511 0)
(-0.000488730088476 -0.000785180225889 0)
(-0.000546216048845 -0.000835616795915 0)
(-0.00063593242813 -0.000944405314666 0)
(-0.000727920371495 -0.000991522971942 0)
(-0.000661530293407 -0.000793401486188 0)
(-0.000777813541341 -0.00087793615019 0)
(-0.000844996111734 -0.000950554814409 0)
(-0.000888013657121 -0.000956421609396 0)
(-0.00093117782965 -0.000940167408688 0)
(-0.000977128885892 -0.000910719298305 0)
(-0.00102597030015 -0.000878900773063 0)
(-0.00109066250495 -0.000839675133602 0)
(-0.00116718384188 -0.00075341304796 0)
(-0.00116069527945 -0.000622073038864 0)
(-0.00118687685436 -0.000560348906523 0)
(-0.00124286273193 -0.000496872305222 0)
(-0.00133986984086 -0.000477405643192 0)
(-0.00134334884875 -0.000490031843708 0)
(-0.00139515252583 -0.000542165596756 0)
(-0.00156825305753 -0.000635130159881 0)
(-0.00158038569658 -0.000612308970613 0)
(-0.00163122638238 -0.000567377142694 0)
(-0.00166686037143 -0.00051691883657 0)
(-0.00171787174643 -0.000472353925673 0)
(-0.0017636183261 -0.000421893739101 0)
(-0.00180984179211 -0.000366324083027 0)
(-0.00184128418479 -0.00030710368435 1.58268468042e-28)
(-0.0018758156625 -0.000247741929033 -1.5675555247e-28)
(-0.00190284643653 -0.000183214392334 0)
(-0.00192559998692 -0.000115005694308 0)
(-0.00194144400146 -4.34893650952e-05 0)
(-0.0019487008593 3.27826965618e-05 0)
(-0.00194598005126 0.000114780623684 0)
(-0.00193982260654 0.000201031425876 0)
(-0.00192241218647 0.000283822780322 0)
(-0.0018962178505 0.000370903969461 0)
(-0.00186282997626 0.000484563623669 0)
(-0.00180876370399 0.000616120930885 0)
(-0.0017225218128 0.000719427613733 0)
(-0.00159838277439 0.000785171814767 0)
(-0.00142806023675 0.00080319069997 0)
(-0.00120435418987 0.000680513614998 0)
(-0.00114631946032 0.000168477047578 0)
(-0.00135320352315 -0.000499031433585 0)
(-0.00257092190535 -0.00128381278405 0)
(0.00358068649182 0.00510928308388 0)
(0.0289347720641 0.0218136769521 0)
(0.0479968800384 0.0314521357853 0)
(0.0652589764355 0.0363801572234 0)
(0.0808371583881 0.037895640279 0)
(0.0957656601326 0.0385725643653 0)
(0.109077007152 0.0388663066514 0)
(0.120291495773 0.0376353476011 0)
(0.130339731664 0.0345750604068 0)
(0.139982304694 0.0304231589606 0)
(0.149102639949 0.0255880868138 0)
(0.157315959724 0.02007171818 0)
(0.164337533125 0.0137487174023 0)
(0.170049839156 0.00642403264736 0)
(0.17405521669 -0.00218064064308 0)
(0.176824032176 -0.0123430012071 0)
(0.178949570791 -0.0247780280525 0)
(0.18033215562 -0.0366549801879 0)
(0.178213397467 -0.0436838843451 0)
(0.169062468582 -0.0485300641079 0)
(0.155970263731 -0.0577566932969 0)
(0.128482020683 -0.0661427870758 0)
(0.105630382899 -0.0550143379571 0)
(0.00608805118125 -0.00390367548557 0)
(0.0114460431626 -0.00969039495247 0)
(-1.9242212545e-05 -0.00124935001384 0)
(-7.20564474948e-05 -0.0012491421881 0)
(-6.99720947728e-05 -0.000799812117203 0)
(-0.00013291630533 -0.00104784229793 0)
(-0.000224177755175 -0.00117456807783 0)
(-0.000289926889683 -0.00121323091993 0)
(-0.000296992897812 -0.00111243257819 0)
(-0.000382294705962 -0.00108943610837 0)
(-0.000406905961984 -0.000874887462968 0)
(-0.000423246620823 -0.000779127272973 0)
(-0.000493037565979 -0.000846864219803 0)
(-0.000543837708238 -0.000905794645788 0)
(-0.000645036978879 -0.00102113686035 0)
(-0.000670310945645 -0.000971658097263 0)
(-0.000654920838189 -0.000854827750284 -1.72262194862e-28)
(-0.000764931957442 -0.000949402663944 1.9292245241e-28)
(-0.000828336881145 -0.00100488447187 0)
(-0.000868831114831 -0.000999920863265 0)
(-0.00091434593047 -0.000988500217331 0)
(-0.000958029367474 -0.000959453374303 0)
(-0.00100618002253 -0.000928628367537 0)
(-0.00106650167337 -0.000894067362004 0)
(-0.00114878988813 -0.000814883392423 0)
(-0.00114528273288 -0.000665174331382 0)
(-0.00119075878935 -0.000601069201136 0)
(-0.00121713820725 -0.000564290637883 0)
(-0.00143786468685 -0.000600303941744 0)
(-0.00142524707835 -0.000579815616798 0)
(-0.00151828933209 -0.00064871310578 0)
(-0.001559118827 -0.000682548126183 0)
(-0.00158605504506 -0.000660727500275 0)
(-0.00161856076372 -0.000610256352394 0)
(-0.00166163180439 -0.000561236200311 0)
(-0.00171845639157 -0.000523299989519 0)
(-0.00177116969426 -0.000469173565051 0)
(-0.00180427900937 -0.00040416501525 0)
(-0.00185807877758 -0.000346816137282 0)
(-0.00189716461222 -0.000282613846251 0)
(-0.00193223597651 -0.000211790457677 0)
(-0.00196249213117 -0.000135848678867 0)
(-0.00197642285306 -5.66522523753e-05 0)
(-0.00198692224882 2.57435929485e-05 1.42772564658e-28)
(-0.001989472864 0.000114820052084 -1.3910248893e-28)
(-0.00198864129919 0.00021768281809 0)
(-0.00196741452001 0.00033451904788 0)
(-0.00186496154601 0.00044220058702 0)
(-0.00172955786244 0.000537167033753 0)
(-0.00164817092586 0.000646467871238 0)
(-0.00164323504697 0.000801407705767 0)
(-0.00152218314064 0.000947880869536 0)
(-0.00128187081897 0.00109903810516 0)
(-0.000745298417199 0.00114397810912 0)
(-0.000364880717611 9.85674989316e-05 0)
(-0.000737744998479 -0.00087467322296 0)
(0.00413311352953 0.00352334281135 0)
(0.0384283561643 0.0317124981676 0)
(0.0574800412696 0.042651913537 0)
(0.0748010728229 0.0479596079824 0)
(0.0906268392496 0.0509311527121 0)
(0.105026846514 0.0518791967973 0)
(0.118499730271 0.0516687477309 0)
(0.130925189009 0.0507028462714 0)
(0.142140183354 0.0485849639225 0)
(0.152437692528 0.0450774052578 0)
(0.162163633663 0.0404256754162 0)
(0.171344468023 0.0348690389044 0)
(0.179807282747 0.028445653806 0)
(0.187386673959 0.0210725624021 0)
(0.193977711546 0.0125980276878 0)
(0.199651431808 0.00291006740647 0)
(0.203953840153 -0.00822856848241 0)
(0.207484627494 -0.0208780803794 0)
(0.210115852563 -0.0341562686332 0)
(0.210596498023 -0.0467681621551 0)
(0.206385752121 -0.0593566805146 0)
(0.196978029331 -0.073808944734 0)
(0.178383821838 -0.0860158843219 0)
(0.152536508254 -0.0940466635137 0)
(0.108311757407 -0.0945068160215 0)
(0.00591960697995 -0.00969009096451 0)
(-1.48367508404e-05 -0.00128653933005 0)
(-5.07341612413e-05 -0.00128576174642 0)
(-6.59576242161e-05 -0.000848497881641 0)
(-0.000159292171381 -0.00116404370254 0)
(-0.000234498688477 -0.0012410984093 0)
(-0.000286231320076 -0.00125393024105 0)
(-0.000291445226363 -0.00112465480097 0)
(-0.000386967904726 -0.00117690639061 0)
(-0.000390480603978 -0.000893156973669 0)
(-0.000423620806241 -0.000818285960866 0)
(-0.000490977078028 -0.000902851370959 0)
(-0.000534173264561 -0.000969301692698 0)
(-0.000639538358793 -0.00109137475765 0)
(-0.0006141160731 -0.000944052391307 0)
(-0.000658470015257 -0.00091876726866 0)
(-0.000750681308567 -0.00101692161631 0)
(-0.000811064277049 -0.00105828744405 0)
(-0.000833053962952 -0.00102370926947 0)
(-0.000895617498837 -0.00103578768536 0)
(-0.000936195598558 -0.00100705392555 0)
(-0.000982750760475 -0.000976890896689 0)
(-0.00104230245227 -0.00095025562611 0)
(-0.0011221335608 -0.00087320293101 0)
(-0.00112189022142 -0.000714108682581 0)
(-0.00117801863614 -0.000652022441732 0)
(-0.00119155445765 -0.00062203625934 0)
(-0.00126952694074 -0.000617364067963 0)
(-0.00130937611969 -0.000610251056668 0)
(-0.00137853934036 -0.000665892602799 0)
(-0.00152069048041 -0.000741148637418 0)
(-0.00156589567657 -0.000710750747717 0)
(-0.00157998257497 -0.000652594752623 0)
(-0.00166609543796 -0.000624736233161 0)
(-0.00172051045394 -0.000579800871028 0)
(-0.00174405283653 -0.000509062596829 0)
(-0.0018143904215 -0.000453897412125 0)
(-0.00186722448747 -0.000395107212878 0)
(-0.00191396819435 -0.000324965694842 1.49795985845e-28)
(-0.00195575808096 -0.000247772508753 -1.47959571751e-28)
(-0.00199324933139 -0.000163627429747 0)
(-0.00202510238011 -7.52510707913e-05 0)
(-0.0020372182754 1.71421779495e-05 0)
(-0.00203724263422 0.000123647240535 0)
(-0.00199505891127 0.000260808038876 0)
(-0.00191187533548 0.000416025981852 0)
(-0.00179066519084 0.000531320947421 0)
(-0.00169085997673 0.000612946715731 0)
(-0.00164745698033 0.000714280574261 0)
(-0.00158033703366 0.000868213140121 0)
(-0.00146017937336 0.00110395953819 0)
(-0.00119762932082 0.00154117891214 0)
(-8.05786474265e-05 0.00246438073098 0)
(0.000712158332123 0.000350475605929 0)
(0.0051477679054 0.00383158975534 0)
(0.047775607295 0.0395492494303 0)
(0.0677524302044 0.0534059247254 0)
(0.0843945624151 0.0602967842807 0)
(0.0995772284169 0.0637336558115 0)
(0.11365678839 0.0653257039025 0)
(0.126828071896 0.0654213890159 0)
(0.139291301098 0.0643486092741 0)
(0.151054100239 0.0623242443971 0)
(0.162062119316 0.0592715990642 0)
(0.172404439823 0.0550924787302 0)
(0.182230871738 0.0498488285787 0)
(0.191585276219 0.0436385903344 0)
(0.200401937366 0.0364704807385 0)
(0.208592254992 0.0282661538932 0)
(0.216078970852 0.018896728308 0)
(0.222914162385 0.00820717401125 0)
(0.228651545744 -0.00395903079538 0)
(0.23376400624 -0.0174754430954 0)
(0.237884227668 -0.0322892113925 0)
(0.240152437264 -0.0480764267169 0)
(0.238957739279 -0.0651714687507 0)
(0.232993046568 -0.0846650341006 0)
(0.219884992077 -0.105687655073 0)
(0.196662910381 -0.128438651759 0)
(0.15737963667 -0.14893183203 0)
(0.0895532581594 -0.136575731248 0)
(-1.31648498103e-05 -0.00131772755383 0)
(-4.28988082091e-05 -0.00131474822904 0)
(-7.13568948683e-05 -0.000906945647721 0)
(-0.000175982224376 -0.00126411258365 0)
(-0.000224120039631 -0.00128577348034 0)
(-0.000266219903717 -0.00129541286032 0)
(-0.00028352455181 -0.00114608961645 0)
(-0.000380871101834 -0.00123281061596 0)
(-0.000372674538869 -0.000926897795194 0)
(-0.000418015290317 -0.00085991070862 0)
(-0.000487039117194 -0.000956519636972 0)
(-0.000526762708787 -0.00102630339185 0)
(-0.000627307253798 -0.00115158983823 0)
(-0.000615024111759 -0.000992446271501 0)
(-0.000668056195945 -0.000978921041668 0)
(-0.000747459255703 -0.00107784549757 0)
(-0.000798896769934 -0.00110955850667 0)
(-0.000817232633104 -0.00106624036788 0)
(-0.000878270536168 -0.0010808281602 0)
(-0.000915714636366 -0.00105086107602 0)
(-0.000955021768477 -0.0010195806835 0)
(-0.00102074622482 -0.00101093292175 0)
(-0.0010882014633 -0.000928401667568 0)
(-0.00109531169442 -0.000765330595242 0)
(-0.00116537243944 -0.000701868250871 0)
(-0.0011777542357 -0.000659857297287 0)
(-0.00123983442695 -0.00066910467167 0)
(-0.00131191203543 -0.000704261227144 0)
(-0.00147023444778 -0.000804653751535 0)
(-0.00148783151423 -0.000800917368291 0)
(-0.00153414544532 -0.000751197425511 0)
(-0.00155026935714 -0.000692170795529 0)
(-0.00160410674198 -0.000659844045832 0)
(-0.00166424622083 -0.000624098161123 0)
(-0.00172796952234 -0.000573721849719 0)
(-0.00181958557856 -0.000518602274555 0)
(-0.00187647352172 -0.000449738700186 0)
(-0.00192649619133 -0.000372170940174 0)
(-0.00197575068809 -0.000291106364456 0)
(-0.00201913217327 -0.000201849422758 0)
(-0.00206138344181 -0.000101903124555 1.40067223504e-28)
(-0.00208336846191 9.61394322067e-06 -1.35442885793e-28)
(-0.00207632304759 0.000153388892373 0)
(-0.00199272868679 0.000329354286107 0)
(-0.00192720543226 0.00049351645133 0)
(-0.00190546944711 0.00062411118681 0)
(-0.00182843990664 0.000708811871494 0)
(-0.00177522623511 0.000831621708617 0)
(-0.00165763860621 0.000972860829812 0)
(-0.00167960394644 0.0011560723956 0)
(-0.00194330957795 0.00155160316023 0)
(0.00112353901569 0.00129551550925 0)
(0.00759262477587 0.0051937728845 0)
(0.0581227681698 0.0466188918588 0)
(0.078103751308 0.0619052819321 0)
(0.0936867967869 0.0702585679266 0)
(0.107774946792 0.0749178843867 0)
(0.121014394429 0.0773175959924 0)
(0.13367599351 0.0781378268027 0)
(0.145855504569 0.0776499534592 0)
(0.157592458997 0.0760349980998 0)
(0.168876939498 0.0734196750629 0)
(0.179683142272 0.0698154539981 0)
(0.190038545608 0.0651892419711 0)
(0.200008739582 0.0595479902081 0)
(0.209629486681 0.0529168091493 0)
(0.218887074963 0.0452787277607 0)
(0.227748887988 0.0365582161522 0)
(0.236188551336 0.0266342716575 0)
(0.244202517054 0.015345142873 0)
(0.251848222727 0.00260365905986 0)
(0.258600618002 -0.0117804134247 0)
(0.26466226115 -0.0278874368064 0)
(0.269363135231 -0.0459940921246 0)
(0.271733074477 -0.0667632746027 0)
(0.27060587622 -0.091510860744 0)
(0.263926134111 -0.121481680908 0)
(0.247357542262 -0.159344384655 0)
(0.208529461138 -0.211208054645 0)
(0.142522799346 -0.294189223122 0)
(-1.25647889928e-05 -0.00134566500258 0)
(-4.20748131212e-05 -0.00134194445561 0)
(-8.39346515006e-05 -0.0009941942769 0)
(-0.000185143963431 -0.00133405307124 0)
(-0.000205568911006 -0.00131685327574 0)
(-0.000237325772264 -0.0013357421117 0)
(-0.000283663289518 -0.00123297263903 0)
(-0.00035732787068 -0.00126137330193 0)
(-0.000354164689156 -0.000975533410412 0)
(-0.000410592330002 -0.000905351184894 0)
(-0.000482768387734 -0.00100917883323 0)
(-0.000520888919599 -0.00108060862277 0)
(-0.000616729261753 -0.00120464734738 0)
(-0.000610669339335 -0.0010354799244 0)
(-0.000668820359359 -0.00103255396153 0)
(-0.00074303168959 -0.00112926433837 0)
(-0.000788848404601 -0.00115385502433 0)
(-0.000800853312455 -0.00110466751515 0)
(-0.000862047628785 -0.00112766886653 0)
(-0.000896337144734 -0.00109196288415 0)
(-0.000921855320921 -0.00105253081434 0)
(-0.000992855570757 -0.00106737597264 0)
(-0.00104369768706 -0.000979868080395 0)
(-0.00106441108277 -0.000821928162946 0)
(-0.00114334753176 -0.000755540614654 0)
(-0.00116142160788 -0.000705394965209 0)
(-0.00123125524515 -0.000730041985945 0)
(-0.00132089589026 -0.000806323359097 0)
(-0.00146894592719 -0.000886857957053 0)
(-0.00148582239801 -0.000850484434559 0)
(-0.00149671246643 -0.000787819132385 0)
(-0.00158050863633 -0.000771056995851 0)
(-0.00164387698124 -0.00074057956368 0)
(-0.00169350847257 -0.000690513550081 0)
(-0.00170435651996 -0.00063323758231 0)
(-0.0018049261659 -0.000587289857344 0)
(-0.00186801183367 -0.000511334066753 0)
(-0.00193962291371 -0.0004316779598 0)
(-0.00199828620767 -0.000341709410743 0)
(-0.00204372088643 -0.000245224061797 0)
(-0.00209046130129 -0.000137751554258 0)
(-0.00213982513551 5.43438080083e-06 0)
(-0.00207526315779 0.00019904097222 0)
(-0.0019928162802 0.000386062038298 0)
(-0.00199127800638 0.000543633419965 0)
(-0.00195341160063 0.000679946705484 0)
(-0.00187115202547 0.000825231425557 0)
(-0.00168728469033 0.000955855277612 0)
(-0.00152666016151 0.00103457797097 0)
(-0.00163163145514 0.000965340140505 0)
(0.000837700883527 0.00172931084611 0)
(0.0348654551222 0.0247537865029 0)
(0.0665504258755 0.0517914832341 0)
(0.086769624905 0.0672164048432 0)
(0.101206685397 0.0771694400238 0)
(0.114041522143 0.0835641248251 0)
(0.126457135166 0.0875072022003 0)
(0.138601214898 0.0895539327825 0)
(0.15049035697 0.0900624073358 0)
(0.162108312211 0.0892645797537 0)
(0.173435419814 0.0873191484358 0)
(0.184455155108 0.0843353097198 0)
(0.195159199306 0.0803610015715 0)
(0.205566142054 0.0754037532033 0)
(0.215717744855 0.0694661292033 0)
(0.225651975828 0.0625460144319 0)
(0.23538867675 0.054611701921 0)
(0.244938050579 0.0455877359389 0)
(0.25431259019 0.0353561268162 0)
(0.263519608585 0.0237594162482 0)
(0.272671885814 0.010611401855 0)
(0.281324792459 -0.00441367092989 0)
(0.289855748562 -0.0212980316805 0)
(0.297892514799 -0.0407091016397 0)
(0.30502269903 -0.0635920036175 0)
(0.310926096474 -0.0914726800933 0)
(0.315360297666 -0.126608080883 0)
(0.31889545772 -0.173052259198 0)
(0.325607956698 -0.238638261699 0)
(0.347846429344 -0.337223289986 0)
(-1.14219831418e-05 -0.00137175566956 0)
(-4.48869671783e-05 -0.00137434655966 0)
(-9.97688748755e-05 -0.00108700510832 0)
(-0.000188149186222 -0.00137891540151 0)
(-0.000183454938505 -0.00133170880875 0)
(-0.000212553334693 -0.00137423131681 0)
(-0.000275586325469 -0.00132136051262 0)
(-0.000311843132173 -0.00125439124864 0)
(-0.000341241158541 -0.00106423891839 0)
(-0.000402968764389 -0.000962103529163 0)
(-0.000476480307324 -0.00106022155516 0)
(-0.000513202299609 -0.0011327635254 0)
(-0.000602549843399 -0.00125462571759 0)
(-0.000599457242539 -0.00108410924104 0)
(-0.000662427776863 -0.00108730900973 0)
(-0.000734244545883 -0.001176517023 0)
(-0.000775996210227 -0.00119106253362 0)
(-0.000776754614607 -0.0011376707947 0)
(-0.000842600466045 -0.0011767701488 0)
(-0.000874018843696 -0.00113024597606 0)
(-0.000882783157376 -0.00107513915649 0)
(-0.000955891554889 -0.0011138174133 0)
(-0.00100004226433 -0.00103644688283 0)
(-0.00103013103129 -0.000884160300915 0)
(-0.00111340873612 -0.000814541624428 0)
(-0.00114694953144 -0.000765533543884 0)
(-0.00120735601176 -0.000793406172778 0)
(-0.00131465402494 -0.000893175058912 0)
(-0.00134334405517 -0.000904152829634 0)
(-0.00144736657488 -0.000904220561686 0)
(-0.00146159413388 -0.000836618066111 0)
(-0.0015044738983 -0.000798318588789 0)
(-0.00152906649501 -0.000762362931883 0)
(-0.00167845400486 -0.000762656224799 0)
(-0.0017382877357 -0.000710444817592 0)
(-0.00177226611818 -0.000644943763869 0)
(-0.00186623373869 -0.000581823314775 0)
(-0.0019238602842 -0.000496314936386 0)
(-0.00200211939153 -0.000403639779404 0)
(-0.00206927742335 -0.000299964510992 1.32589078415e-28)
(-0.00213641708388 -0.000172393756404 -1.28943119508e-28)
(-0.00211991447157 2.43095100788e-05 0)
(-0.00201815524033 0.000240026454841 0)
(-0.00202222439372 0.000419334898725 0)
(-0.00203766718971 0.000596002273802 0)
(-0.00196456269818 0.000795669500856 0)
(-0.0017509336658 0.000979714948239 0)
(-0.00150684276199 0.001132455142 0)
(-0.0012247330749 0.000975847308461 0)
(0.00105551444387 0.00227631139701 0)
(0.0419081689683 0.039666152546 0)
(0.06499647977 0.0570152564613 0)
(0.0854936565375 0.0698225811974 0)
(0.102137299993 0.0813770556228 0)
(0.116008267221 0.0900509518425 0)
(0.128765465287 0.0959455460002 0)
(0.141044556499 0.0995908605992 0)
(0.15298559086 0.101391006865 0)
(0.164632474877 0.101649726672 0)
(0.176006753842 0.100592834036 0)
(0.187123146659 0.0983825975013 0)
(0.197997795689 0.0951318710823 0)
(0.20865276647 0.0909070842927 0)
(0.219122916085 0.0857376257622 0)
(0.229455857777 0.0796312659697 0)
(0.239702447275 0.0725779342775 0)
(0.24991004624 0.0645405030672 0)
(0.260125645777 0.0554458394681 0)
(0.270403203327 0.0451813073953 0)
(0.280808992705 0.0335919436289 0)
(0.291417730078 0.0204637918512 0)
(0.302481253768 0.00562145717773 0)
(0.313453851366 -0.0114835046187 0)
(0.325013099658 -0.031048595584 0)
(0.337149562151 -0.0541016938748 0)
(0.350324477491 -0.0819557679416 0)
(0.365677593456 -0.116404942406 0)
(0.385642882693 -0.160012014182 0)
(0.413250710922 -0.21598192949 0)
(0.468751014355 -0.281235924757 0)
(-1.0189633056e-05 -0.0013894436051 0)
(-4.65343321356e-05 -0.00141315980688 0)
(-0.000111967515381 -0.00118035313606 0)
(-0.00017698089449 -0.00137822620873 0)
(-0.000163056692572 -0.00132111273141 0)
(-0.000197902630267 -0.00140962210364 0)
(-0.00025378944907 -0.00137894820213 0)
(-0.000264629681543 -0.00121865949494 0)
(-0.000334043475962 -0.00114498917976 0)
(-0.000396294716692 -0.00101622209076 0)
(-0.000467403396558 -0.00110672970859 0)
(-0.000502800302221 -0.00118197909066 0)
(-0.000584152666475 -0.0013002688423 0)
(-0.000582959508969 -0.00113464358384 0)
(-0.000647900578245 -0.00114395989136 0)
(-0.000720616169079 -0.00122364953188 0)
(-0.000747326605808 -0.00121153435251 0)
(-0.000744088540454 -0.00116507180027 -1.51484664821e-28)
(-0.000819313971357 -0.00122836730884 1.63251530029e-28)
(-0.000844223590505 -0.00116341458465 0)
(-0.000840348237661 -0.00108867833809 0)
(-0.000913795558199 -0.00114634300593 0)
(-0.000969146968122 -0.00109810560384 0)
(-0.000994877312597 -0.000948553646984 0)
(-0.00108059396051 -0.00087613751198 0)
(-0.00113188513556 -0.000831278630361 0)
(-0.00117665217603 -0.000849493510786 0)
(-0.00130434802933 -0.000966019075705 0)
(-0.00130372777926 -0.000960687217715 0)
(-0.0013981713144 -0.000953659888372 0)
(-0.00141574685747 -0.000879192794831 0)
(-0.00154795950122 -0.000891432896854 0)
(-0.00158616474218 -0.000868624820907 0)
(-0.00160455635374 -0.000813513654228 0)
(-0.00171499639092 -0.000780937488113 0)
(-0.00178285478699 -0.000721918869412 0)
(-0.00185618442814 -0.000651516626327 0)
(-0.00192919282031 -0.000567458887958 0)
(-0.0019927558189 -0.000473122534208 0)
(-0.00208167420966 -0.000360624061394 0)
(-0.00212561111238 -0.000177240100192 0)
(-0.002019916592 6.09437615912e-05 0)
(-0.00200086263824 0.000258143951735 0)
(-0.00204283020218 0.000433743039892 0)
(-0.00204819687817 0.000657275719742 0)
(-0.00193988725815 0.000915338910362 0)
(-0.00175097443986 0.00111933064868 0)
(-0.00132933122657 0.00106827908141 0)
(0.00141943675716 0.00313334770764 0)
(0.0421218192957 0.0443814041242 0)
(0.0628116051777 0.0620638884247 0)
(0.0813336764775 0.0749470852751 0)
(0.0986528387762 0.0863072543209 0)
(0.114208676989 0.0961080267317 0)
(0.128185175184 0.103553861774 0)
(0.141142215261 0.108666907893 0)
(0.153453329299 0.11176889059 0)
(0.165298567244 0.11316087856 0)
(0.17677975009 0.113090255848 0)
(0.187966235435 0.111754968864 0)
(0.198911891142 0.109306317494 0)
(0.209665296649 0.10585409867 0)
(0.220275653068 0.101470090621 0)
(0.230797371991 0.0961931358656 0)
(0.241291850966 0.0900363382024 0)
(0.251825489434 0.0829902191773 0)
(0.26246823235 0.0750196844192 0)
(0.273296434927 0.0660591905081 0)
(0.284398973787 0.0560092541284 0)
(0.295884249442 0.0447329066646 0)
(0.307884531908 0.032049614351 0)
(0.320618212443 0.0177173420706 0)
(0.334260255507 0.00137981461016 0)
(0.348881419104 -0.0173977648999 0)
(0.365298207466 -0.0389314819133 0)
(0.384138160765 -0.0642158575601 0)
(0.40673123183 -0.0941524309222 0)
(0.435579349353 -0.129458603612 0)
(0.471398970901 -0.170430221176 0)
(0.540734851114 -0.212819202209 0)
(-1.33777707626e-05 -0.00139927293705 0)
(-4.94285810294e-05 -0.00145477717331 0)
(-0.000108055431728 -0.00126508821056 0)
(-0.000156279678833 -0.00133902931448 0)
(-0.000168201439745 -0.00134477398414 -1.74152167104e-29)
(-0.000203734491055 -0.00143598760829 1.89690001554e-29)
(-0.000247925564386 -0.00143603437308 0)
(-0.000258769824336 -0.00124970748749 0)
(-0.000355264761147 -0.00130192147883 0)
(-0.000383940182987 -0.00107374940638 0)
(-0.000454852623595 -0.00114770275034 0)
(-0.00049067610645 -0.00122802790516 0)
(-0.000563410662115 -0.00134084131768 0)
(-0.000563911595999 -0.00118468358985 0)
(-0.000625993066207 -0.00119973402035 0)
(-0.000698967159372 -0.00127222521101 0)
(-0.000693854044458 -0.00119115343038 0)
(-0.000717757867126 -0.00118675058663 0)
(-0.000801513781218 -0.00127695244666 0)
(-0.000808233235981 -0.00118546754431 0)
(-0.000817628773946 -0.00111777660618 0)
(-0.000885693860937 -0.0011654774222 0)
(-0.000972163614204 -0.00117945778251 -1.65327757497e-28)
(-0.000974642557995 -0.00100395689093 0)
(-0.00105668626712 -0.000935637811651 0)
(-0.00111857961622 -0.000897058421884 0)
(-0.00115504546111 -0.00090639030078 0)
(-0.00128476500889 -0.00102662030805 0)
(-0.00129334546784 -0.00102085227961 0)
(-0.00136233580432 -0.00100449418682 0)
(-0.00139851135589 -0.000953993528248 0)
(-0.00153006874574 -0.00095796171532 0)
(-0.00154856751882 -0.000903267027128 0)
(-0.00163169479442 -0.000897290442505 0)
(-0.00167684392535 -0.000849559562089 0)
(-0.00174727361267 -0.000791165838017 0)
(-0.00183133961644 -0.000726389358332 0)
(-0.00191758250147 -0.000643032818886 0)
(-0.0020010575092 -0.000546982924654 0)
(-0.0020736536215 -0.000394033144476 0)
(-0.00200090360636 -0.000144940238318 0)
(-0.00194715678872 8.13218912934e-05 0)
(-0.00197914890523 0.000249810743901 0)
(-0.00202830708347 0.00042873689172 0)
(-0.00205374496339 0.000676574605197 0)
(-0.00200795460367 0.000934985099636 0)
(-0.00175986038504 0.00114783762029 0)
(0.00111738679706 0.00403600633953 0)
(0.039150381795 0.0445938005172 0)
(0.0596227202871 0.0641395254094 0)
(0.0773683337668 0.0795337113104 0)
(0.0941850402876 0.0919537787784 0)
(0.11026540494 0.102293321197 0)
(0.125251164386 0.110674996668 0)
(0.139075013551 0.116984243047 0)
(0.151963444095 0.121292302652 0)
(0.164161522696 0.123805784759 0)
(0.175842471915 0.124751177217 0)
(0.18713032876 0.124334915505 0)
(0.198121835491 0.122732131071 0)
(0.208897749314 0.120082575443 0)
(0.219530663662 0.11649123737 0)
(0.230090418829 0.112030596958 0)
(0.240648130729 0.106743883012 0)
(0.25127894373 0.100649080976 0)
(0.262063412603 0.0937414046499 0)
(0.273089144591 0.0859928781654 0)
(0.28445462712 0.0773503379761 0)
(0.296275524271 0.0677333999659 0)
(0.308692912601 0.0570322088165 0)
(0.321884055658 0.0451040188113 0)
(0.336074227769 0.0317645530201 0)
(0.351651997132 0.016827092436 0)
(0.368881501249 -0.00015841517275 0)
(0.388277534837 -0.0194935420138 0)
(0.410952964239 -0.0411283435094 0)
(0.437918648815 -0.0655484949826 0)
(0.471255023076 -0.0927821322854 0)
(0.510602763159 -0.122067493795 0)
(0.581529277124 -0.150785846154 0)
(-2.01409428806e-05 -0.00143747276743 0)
(-5.45051604597e-05 -0.00149065475711 0)
(-9.23392298056e-05 -0.0013356369813 0)
(-0.000147106454497 -0.00138396656198 0)
(-0.000185774541527 -0.00138809086134 0)
(-0.000215818738656 -0.00145531231815 0)
(-0.000255079395809 -0.00147422117136 0)
(-0.000268895396572 -0.00127555682864 0)
(-0.000345512954239 -0.00134972867114 0)
(-0.000362818567178 -0.00113230482764 0)
(-0.000436369975979 -0.00119099533887 0)
(-0.000476846953481 -0.00127318562194 0)
(-0.000542350972569 -0.00137690333865 0)
(-0.000545891853671 -0.00123334137724 0)
(-0.00060593719275 -0.00125141698909 0)
(-0.000673247540183 -0.00131664744777 0)
(-0.000681216753918 -0.00123499973079 0)
(-0.000719349703877 -0.00123427401291 0)
(-0.000797542331894 -0.00131871684989 0)
(-0.000781316180392 -0.00119709271304 0)
(-0.000827063280746 -0.001168000982 0)
(-0.000918826554879 -0.00122486505803 0)
(-0.00095722794492 -0.00119971474027 1.54736664289e-28)
(-0.00104674042656 -0.00114141302028 0)
(-0.00104383449217 -0.000981159933693 0)
(-0.00112090424577 -0.000948823374825 0)
(-0.00114864016984 -0.000958816026768 0)
(-0.00126737963066 -0.00107862143987 0)
(-0.00127944361786 -0.00107489158513 0)
(-0.00134835350975 -0.00106433695538 0)
(-0.0013931577303 -0.0010237681817 0)
(-0.0014502113319 -0.000995055174231 0)
(-0.00157323427776 -0.00100293017957 0)
(-0.00162605341346 -0.000965813850369 0)
(-0.0016675464113 -0.000908354869712 0)
(-0.00172037825199 -0.00085734606999 0)
(-0.00179855743241 -0.000803267829691 0)
(-0.00187741343198 -0.000720092558633 0)
(-0.00198877490974 -0.000602536019185 0)
(-0.00195932436317 -0.000372382621525 0)
(-0.00189235070921 -0.00011695642171 0)
(-0.00190058155602 7.23395879686e-05 0)
(-0.00195838312285 0.000219078052261 0)
(-0.00204384997764 0.000379396272979 0)
(-0.00212945886475 0.000537267928392 0)
(-0.00235560316668 0.000810660104735 0)
(-0.000613678821478 0.00304223010339 0)
(0.0328598888923 0.0423458878426 0)
(0.0535520366505 0.0636808208961 0)
(0.0718278794588 0.0816601377605 0)
(0.0888972214638 0.0963625420226 0)
(0.105190181276 0.108132335626 0)
(0.120665426582 0.117519776451 0)
(0.135165606098 0.124833526006 0)
(0.148672101833 0.130194805612 0)
(0.161321241548 0.133738730532 0)
(0.173290535847 0.135652894673 0)
(0.184737397651 0.13613654419 0)
(0.195793924117 0.135373790875 0)
(0.206572646017 0.133522955495 0)
(0.217171697241 0.130712544432 0)
(0.22767991968 0.127041105092 0)
(0.238181416304 0.122579002242 0)
(0.248759423445 0.117371002608 0)
(0.259499647544 0.1114391611 0)
(0.270493212205 0.104785064494 0)
(0.281839937277 0.0973907471549 0)
(0.293652945175 0.0892186646272 0)
(0.306065107551 0.0802115172157 0)
(0.31923751724 0.0702922454231 0)
(0.333370576321 0.059364218615 0)
(0.348719661328 0.0473121488039 0)
(0.365612725392 0.0340018772607 0)
(0.384556509205 0.0193729487412 0)
(0.406064459203 0.00314263514309 0)
(0.430719465669 -0.0151321514263 0)
(0.459981628511 -0.0344655043802 0)
(0.495231677306 -0.0545929666867 0)
(0.5355925383 -0.0745054241407 0)
(0.602845744753 -0.092962524302 0)
(-2.12464655528e-05 -0.00149398543724 0)
(-5.14285091659e-05 -0.00151406920721 0)
(-7.36647593106e-05 -0.00138415565954 0)
(-0.000137214075771 -0.00143209149996 0)
(-0.000191612757643 -0.00142196648025 0)
(-0.000217289927875 -0.00147294335014 0)
(-0.000254684918536 -0.00150870402002 0)
(-0.000268791713898 -0.00130498585629 0)
(-0.000333656662692 -0.0013658297364 0)
(-0.000356240609503 -0.00119596918954 0)
(-0.000421288830553 -0.00123514766368 0)
(-0.000464031887585 -0.0013181287384 0)
(-0.000521959701464 -0.00140937987538 0)
(-0.000528924202948 -0.00128126960524 0)
(-0.000588508529217 -0.00130129374105 0)
(-0.00064999630237 -0.00135500821595 0)
(-0.000672225317095 -0.00128171704855 0)
(-0.000719419150943 -0.00127998802371 0)
(-0.000797594516889 -0.00135382881976 0)
(-0.00078619466645 -0.00124027834315 0)
(-0.000895081882573 -0.00129892623055 0)
(-0.000933417981907 -0.00127712641116 0)
(-0.00096990183454 -0.00124369461522 0)
(-0.0010207983414 -0.00117179723993 0)
(-0.00109239854761 -0.00109598000411 0)
(-0.00117481475642 -0.00105674555399 0)
(-0.00115696203008 -0.00100882410689 0)
(-0.00124780913428 -0.00111751584354 0)
(-0.00128936542886 -0.00114856299235 0)
(-0.00133979146806 -0.00112256144582 0)
(-0.00138410910396 -0.00108001213818 0)
(-0.00141822676793 -0.00105443202818 0)
(-0.00151617615943 -0.00106119897878 0)
(-0.00159181169032 -0.00103701890979 0)
(-0.0016660075506 -0.000990301653369 0)
(-0.00172828270111 -0.000936355790593 0)
(-0.00178449825243 -0.00087657618923 0)
(-0.00184707081008 -0.000784818139863 0)
(-0.0019209619197 -0.000616564224198 0)
(-0.00185401669562 -0.0003460835398 0)
(-0.0018432562756 -0.000118694802918 0)
(-0.00187964275377 3.85941210333e-05 0)
(-0.001967943658 0.00015138127228 0)
(-0.00208580380146 0.000191448901594 0)
(-0.00258927727406 9.46807635299e-05 0)
(-0.00221529829704 0.00104310245176 0)
(0.0226684856103 0.0374061533375 0)
(0.0445495229251 0.0613524147322 0)
(0.0641330442718 0.0821373333735 0)
(0.082133532294 0.0992502233761 0)
(0.0990262101416 0.112988488058 0)
(0.11494369808 0.123842062972 0)
(0.129905856084 0.132273171798 0)
(0.143906319372 0.138615849733 0)
(0.156992617622 0.143092392302 0)
(0.16928431057 0.145896034749 0)
(0.180932336447 0.147222084224 0)
(0.19208483363 0.147258158548 0)
(0.202876303558 0.146172806132 0)
(0.213426684987 0.144110030531 0)
(0.223843223699 0.141187274865 0)
(0.234223758826 0.137495781957 0)
(0.24466048342 0.133102414294 0)
(0.255243649633 0.128052108205 0)
(0.266065167857 0.122370487792 0)
(0.27722221891 0.116066197707 0)
(0.28882123416 0.109132660475 0)
(0.300982767914 0.101549432192 0)
(0.313847676962 0.0932836532849 0)
(0.327584893403 0.0842920853505 0)
(0.342401213772 0.0745242719738 0)
(0.358553834777 0.0639277756267 0)
(0.376366670667 0.0524578330968 0)
(0.396247548026 0.0400901673175 0)
(0.418730277102 0.026919516264 0)
(0.444595248458 0.0132702548228 0)
(0.474364331201 -0.00125803127273 0)
(0.509293695355 -0.0160080760736 0)
(0.548811891158 -0.0292804998829 0)
(0.611583964667 -0.0401507484047 0)
(-1.76882022023e-05 -0.00153454825356 0)
(-4.25507873218e-05 -0.00153618945318 0)
(-6.41829598257e-05 -0.00142180715861 0)
(-0.000131164316989 -0.00155698719689 0)
(-0.000176440822437 -0.00145963268407 0)
(-0.000208738901057 -0.00150097592491 0)
(-0.000245999406956 -0.0015414422623 0)
(-0.000265051933513 -0.00135559020545 0)
(-0.000333551849509 -0.00141418952089 0)
(-0.000356840576515 -0.00125282377722 0)
(-0.000410919993462 -0.00127454899058 0)
(-0.000452888616009 -0.00136144657341 0)
(-0.000501421348438 -0.00143735192498 0)
(-0.000512007989436 -0.0013288272188 0)
(-0.000570775251073 -0.00135028382705 0)
(-0.000624965139006 -0.00139186828159 0)
(-0.000660454706368 -0.00133827940744 0)
(-0.000710795643915 -0.00132746278047 0)
(-0.000788139662815 -0.00139228764368 0)
(-0.000785048913269 -0.00128552568756 0)
(-0.000885084968734 -0.00134248523462 0)
(-0.000895660391072 -0.00129504097086 0)
(-0.00094527731856 -0.00129042210223 0)
(-0.000985624632913 -0.00122594176695 0)
(-0.00102217857098 -0.00111654452769 0)
(-0.0010908040201 -0.0010638298058 0)
(-0.00114471737584 -0.00106302315559 0)
(-0.00120939567429 -0.00115855007232 0)
(-0.00128609594334 -0.00122026612585 0)
(-0.00132003474387 -0.00117326453274 0)
(-0.00137203636208 -0.00112899684358 0)
(-0.00141597996778 -0.00110783671644 0)
(-0.00145218042534 -0.00109271459729 0)
(-0.00155307995989 -0.00110369706818 0)
(-0.00157160904267 -0.00102905898714 0)
(-0.00168291384519 -0.00100185242241 0)
(-0.00175956142166 -0.000945861441011 0)
(-0.00181954538815 -0.000830659509946 0)
(-0.00184018402722 -0.000612881899005 0)
(-0.00180283252705 -0.00034425386313 0)
(-0.00182854686994 -0.000145743683662 0)
(-0.00187976692086 -1.85225633302e-05 0)
(-0.00198400295729 2.14950548139e-05 0)
(-0.00226433892226 -9.18508928024e-06 0)
(-0.00253835018983 0.000472662263626 0)
(0.00807408449288 0.0272062573529 0)
(0.0347825192431 0.0573805337869 0)
(0.0551257216833 0.0811435626015 0)
(0.0740379986797 0.10073176205 0)
(0.0917242312428 0.116594980881 0)
(0.108205794292 0.129211364517 0)
(0.123602261255 0.139038632911 0)
(0.137993218 0.14648833841 0)
(0.151440122002 0.1519029449 0)
(0.164030690075 0.155553450527 0)
(0.175889024006 0.157667576131 0)
(0.187157962116 0.15844880905 0)
(0.197980142428 0.158078559655 0)
(0.208488853742 0.156714035586 0)
(0.218805467888 0.154487262101 0)
(0.229039953497 0.151505434484 0)
(0.239293156731 0.147852415183 0)
(0.249659987393 0.143591044694 0)
(0.260232929809 0.138765810262 0)
(0.271105681343 0.133405559636 0)
(0.282376939333 0.127526064832 0)
(0.29415450308 0.121132364328 0)
(0.30655995783 0.114221047406 0)
(0.319734189447 0.106782870082 0)
(0.333843907432 0.0988062154846 0)
(0.349089329693 0.0902820670882 0)
(0.365713172941 0.0812115222161 0)
(0.38401088883 0.0716175036067 0)
(0.404341603978 0.0615633140383 0)
(0.427138597461 0.0511782265938 0)
(0.452883377793 0.0407170597087 0)
(0.48216094041 0.0307228208896 0)
(0.515803589954 0.0220440477074 0)
(0.553021791982 0.0153788785134 0)
(0.609708938556 0.0118414176725 0)
(-2.06316065217e-05 -0.00156512100084 0)
(-3.76018839384e-05 -0.00156358255877 0)
(-6.28675103878e-05 -0.00147318414892 0)
(-0.000119124255663 -0.00159309684237 0)
(-0.000150124488486 -0.00150211216402 0)
(-0.000192392859374 -0.00153908997976 0)
(-0.000232279418671 -0.00157295158252 0)
(-0.000259631404527 -0.0014125750153 0)
(-0.000324053159437 -0.00145276499077 0)
(-0.000352680399938 -0.00130707533761 0)
(-0.000400564765507 -0.00130769558769 0)
(-0.000441085767638 -0.00140169508333 0)
(-0.000479092659693 -0.00145887177899 0)
(-0.000496648929176 -0.00137507831815 0)
(-0.000553043342855 -0.00139686997698 0)
(-0.000597381187192 -0.00142660459937 0)
(-0.000646271741314 -0.00139708316097 0)
(-0.000696690206439 -0.00137374937045 0)
(-0.000767720245368 -0.00143114034917 0)
(-0.000770975038134 -0.00133760414921 0)
(-0.000849372408607 -0.00138002251296 0)
(-0.000853453518321 -0.00131113787497 0)
(-0.000888259536607 -0.0012874676582 0)
(-0.000973839998831 -0.0013069612195 0)
(-0.00100335790438 -0.00119666190231 0)
(-0.00107495847077 -0.00112560891409 0)
(-0.00109435395624 -0.00107628333699 0)
(-0.00119091750233 -0.0012028605594 0)
(-0.00128164014511 -0.00130118961891 0)
(-0.00129689370448 -0.00122338058222 0)
(-0.00136044089133 -0.00118077801346 0)
(-0.00145046410243 -0.00118758750462 0)
(-0.00148752571435 -0.00117197585196 0)
(-0.0015469014184 -0.00116015278873 0)
(-0.00157476533684 -0.00111091624327 0)
(-0.00166015058725 -0.00107981856177 0)
(-0.00173159136717 -0.00101130240204 0)
(-0.00179103067258 -0.000867586023998 0)
(-0.00178181992223 -0.000616386058716 0)
(-0.00177682412399 -0.000364903196372 0)
(-0.00182498662941 -0.000197641646552 0)
(-0.00189577723495 -0.000160691905656 6.56104728174e-29)
(-0.00229291425802 -0.000277937313373 0)
(-0.00294803058834 -0.000552645809037 0)
(-0.00142411663619 0.00197777327339 0)
(0.0273302201323 0.0491517839858 0)
(0.0467116060191 0.0775475867849 0)
(0.0654266891307 0.100226851769 0)
(0.0834943567799 0.118604438815 0)
(0.10051300294 0.133319968408 0)
(0.116373217327 0.144841574715 0)
(0.131138887765 0.153628295196 0)
(0.14489918095 0.160106176362 0)
(0.157748942499 0.164639013573 0)
(0.169801542581 0.167525152771 0)
(0.181189484887 0.169011230439 0)
(0.192053841337 0.169305424115 0)
(0.202533160363 0.168583928961 0)
(0.212757119814 0.166994095847 0)
(0.222844315883 0.164656993315 0)
(0.232902591208 0.161670014598 0)
(0.243030980368 0.158109677114 0)
(0.253322602236 0.154034602271 0)
(0.263867995191 0.149488524753 0)
(0.274758648857 0.144503207954 0)
(0.286090678009 0.139101229465 0)
(0.297968697356 0.133298694237 0)
(0.31051001508 0.12710806501 0)
(0.323849251602 0.120541441514 0)
(0.338143413356 0.113614740706 0)
(0.353577336945 0.106353373746 0)
(0.370369239217 0.0988002565223 0)
(0.388775758496 0.0910273576088 0)
(0.409095266719 0.0831524084713 0)
(0.431667209042 0.0753627808548 0)
(0.456864037655 0.0679495949622 0)
(0.485064885707 0.0613212607441 0)
(0.516727265915 0.0561337079231 0)
(0.55073317252 0.0533207352429 0)
(0.60053379775 0.054075343086 0)
(-2.1305526862e-05 -0.00159718716964 0)
(-3.88221338175e-05 -0.00151991345495 0)
(-6.72142105508e-05 -0.00153325190511 0)
(-0.0001114760944 -0.00161139191899 0)
(-0.00013665863969 -0.00154050358695 0)
(-0.000177647940556 -0.00157919658149 0)
(-0.000216493596119 -0.00160499751113 0)
(-0.000249350817569 -0.00146859903113 0)
(-0.000304863267959 -0.00148695456327 0)
(-0.000345232565907 -0.00137104504407 0)
(-0.000388131312612 -0.00133435924487 0)
(-0.000427175270443 -0.001436997773 0)
(-0.000457708517057 -0.00148103729606 0)
(-0.000488088389033 -0.00142774171416 0)
(-0.000538952808518 -0.00143867045033 0)
(-0.000575310591895 -0.00146697835793 0)
(-0.000639923761769 -0.00147864177775 0)
(-0.000677925081715 -0.00141663151043 0)
(-0.000738816904749 -0.00146186270929 0)
(-0.000752618579551 -0.00139002052417 0)
(-0.000806365609393 -0.00139400778976 0)
(-0.000838403826103 -0.00136711115415 0)
(-0.000890835935033 -0.00134286900324 0)
(-0.000940479093152 -0.00130903339498 0)
(-0.00103673520021 -0.00130089670727 0)
(-0.0011120398634 -0.00122762590041 0)
(-0.00109555500436 -0.00112731665367 0)
(-0.00124489947394 -0.00130347973828 0)
(-0.00125905242494 -0.00135758842547 0)
(-0.00129157121211 -0.00129693392535 0)
(-0.00133929232229 -0.0012405534951 0)
(-0.001418644172 -0.0012261315066 0)
(-0.00144260296774 -0.00118667271591 0)
(-0.00155056343584 -0.001214450237 0)
(-0.00157789379861 -0.00117122805815 0)
(-0.0016353733551 -0.00113620788878 0)
(-0.00171452864264 -0.00107358540317 0)
(-0.00176580606638 -0.00090633399082 0)
(-0.00174125887829 -0.000631785080204 0)
(-0.00176059851512 -0.000395208659546 0)
(-0.00177636917407 -0.000263957300544 0)
(-0.00197959088377 -0.000318066752505 -7.1142644362e-29)
(-0.00195990471527 -0.000358859520276 0)
(-0.00234409394163 0.000214026351691 0)
(0.0115454849373 0.0371927455744 0)
(0.03610361912 0.0695448592751 0)
(0.0560736729595 0.0967766773394 0)
(0.0744629131345 0.118525983344 0)
(0.0919142492347 0.135831679275 0)
(0.108259143002 0.14941179187 0)
(0.123439582779 0.159818826133 0)
(0.137522971032 0.167560549503 0)
(0.150619168222 0.173091262431 0)
(0.162851183614 0.176794072287 0)
(0.174352146031 0.178982165003 9.80461511291e-29)
(0.185262207538 0.17990996843 -9.48772369034e-29)
(0.19572170916 0.179784866675 0)
(0.205864610212 0.178775906467 0)
(0.215814682938 0.177020155338 0)
(0.225684396604 0.174627846549 0)
(0.235575685774 0.171686794069 0)
(0.245581978644 0.168266324492 0)
(0.255790991981 0.164420877438 0)
(0.266287902026 0.16019332723 0)
(0.277158661801 0.155618062205 0)
(0.288493380819 0.150723901181 0)
(0.300389771587 0.145536983503 0)
(0.312956702967 0.140083835587 0)
(0.326317873884 0.1343948882 0)
(0.34061552717 0.128508785588 0)
(0.356013960127 0.122477906638 0)
(0.372702339796 0.116375635836 0)
(0.390895933073 0.110306073499 0)
(0.410834342152 0.104417016729 0)
(0.432774022745 0.0989169611 0)
(0.456974465505 0.0940972044545 0)
(0.483649389979 0.0903548598334 0)
(0.513093680746 0.0882398086738 0)
(0.543988789906 0.0884028080436 0)
(0.588433504693 0.0916309212729 0)
(-1.55884426173e-05 -0.00163292634412 0)
(-4.40754926757e-05 -0.00155660619691 0)
(-7.71885087977e-05 -0.0015723837294 0)
(-0.00011076790085 -0.00163418368591 0)
(-0.000135391384977 -0.00157288761746 0)
(-0.000168758277595 -0.00161271921708 0)
(-0.000202447572881 -0.0016368822234 0)
(-0.00023719947 -0.00152225172478 0)
(-0.00028136137542 -0.00151748061206 0)
(-0.000334234416648 -0.00144239420165 0)
(-0.00037529097847 -0.00135847488373 0)
(-0.000412726629204 -0.00146336676345 0)
(-0.000439260919828 -0.00151621118185 0)
(-0.000480385509667 -0.00147851485721 0)
(-0.000528768161062 -0.00147117476816 0)
(-0.000560760723254 -0.00150697473107 0)
(-0.000626182759352 -0.00155256217334 0)
(-0.000650738904958 -0.0014602046753 0)
(-0.000701183575794 -0.00147829997784 0)
(-0.000732664701911 -0.00144254603652 0)
(-0.000790749616495 -0.00143952562737 0)
(-0.000831451410447 -0.00141506626105 1.04490259942e-28)
(-0.000927310678023 -0.00145670693947 -1.11511732614e-28)
(-0.000966401046617 -0.00141289006764 0)
(-0.00103929319851 -0.00137885170168 0)
(-0.00106837318746 -0.00125442745011 0)
(-0.00110084569965 -0.00118036832068 0)
(-0.00117034022094 -0.00125990200727 0)
(-0.00125964525405 -0.00141596034786 0)
(-0.00128002502405 -0.00136948341041 0)
(-0.00132007067992 -0.00129230423716 0)
(-0.00139049948856 -0.00127238752339 0)
(-0.00146358111091 -0.0012688427227 0)
(-0.00153796537631 -0.00126924545127 0)
(-0.0015971275931 -0.00123440462035 0)
(-0.00160976804786 -0.00117323137927 0)
(-0.00170292307309 -0.00112805746618 0)
(-0.00174148983566 -0.000949711372077 0)
(-0.00171719108549 -0.000662482702819 0)
(-0.00174316930287 -0.000445144131094 0)
(-0.00184937276149 -0.000418062738023 0)
(-0.00231505712234 -0.000549502485235 0)
(-0.00270679740642 -0.00059011064616 0)
(-0.00123997338976 0.00178932397989 0)
(0.0269270988335 0.0549546155902 0)
(0.0458902173069 0.0887413614627 0)
(0.0646588578772 0.115340379611 0)
(0.0825835688568 0.136186000426 1.62679138509e-28)
(0.0993700851534 0.152389551344 0)
(0.114969606071 0.164800592642 0)
(0.129405176556 0.174082159573 0)
(0.142766524569 0.180797041982 0)
(0.1551828183 0.185424818127 0)
(0.166797085789 0.188361460848 0)
(0.177755552886 0.189925830067 0)
(0.188202504825 0.190371695458 0)
(0.19827562423 0.189900219683 0)
(0.208102328973 0.188670542944 0)
(0.217798055402 0.186808336108 0)
(0.227466375236 0.184412769034 0)
(0.237200422498 0.181562239373 0)
(0.24708517498 0.178319140736 0)
(0.257200229043 0.17473391153 0)
(0.267622782072 0.17084854881 0)
(0.278430642815 0.166699745272 0)
(0.289705195196 0.162321817741 0)
(0.301534311717 0.157749614151 0)
(0.314015233168 0.153021598901 0)
(0.327257392503 0.148183321244 0)
(0.341385050595 0.143291469558 0)
(0.356539426262 0.138418715165 0)
(0.37287973807 0.133659562115 0)
(0.390582193585 0.129137430389 0)
(0.409835587423 0.125013174725 0)
(0.430830910128 0.121495010322 0)
(0.453746630433 0.118849739657 0)
(0.478694800073 0.117411653803 0)
(0.505875862571 0.117597978192 0)
(0.533870258401 0.119876305748 0)
(0.573740325693 0.124700077588 0)
(-1.34520081588e-05 -0.00166374483363 0)
(-4.47356553238e-05 -0.00159339563013 0)
(-7.87190963712e-05 -0.00160599496426 0)
(-0.00011187841081 -0.00166415126511 0)
(-0.000137052517641 -0.00160151527345 0)
(-0.000162945520168 -0.00163793623891 0)
(-0.000190969962197 -0.00166711134631 0)
(-0.000227093047738 -0.00157102745871 0)
(-0.00026065871495 -0.00154308532267 0)
(-0.000323136263341 -0.00152507532861 0)
(-0.000362715015173 -0.00138882299833 0)
(-0.000400705769816 -0.0014804499684 0)
(-0.00042064448399 -0.00155157922096 0)
(-0.000475197909178 -0.00154965743449 0)
(-0.000516067710391 -0.00149677422376 0)
(-0.000547796879907 -0.00153954429051 0)
(-0.000603223005694 -0.00160242166179 0)
(-0.00061751122364 -0.0015025468837 0)
(-0.000670468613614 -0.00151890605943 0)
(-0.000711725228601 -0.00149582603311 0)
(-0.000765615928532 -0.00148765124751 0)
(-0.000818889497031 -0.00147198084065 0)
(-0.000878596296136 -0.00145549292866 0)
(-0.0009199745406 -0.00142517224492 0)
(-0.00097832780102 -0.00140043526422 0)
(-0.00107635242837 -0.00137041186212 0)
(-0.00111374661723 -0.00126328190958 0)
(-0.00117691603264 -0.00130235167316 0)
(-0.00130968784239 -0.00148484774071 0)
(-0.00128512859939 -0.00143528864129 0)
(-0.00135942384572 -0.00139458831891 0)
(-0.0014003478263 -0.00133571414541 0)
(-0.00146107483099 -0.00130664833695 0)
(-0.00148257183327 -0.00126842682885 0)
(-0.00158458438796 -0.00127900887685 0)
(-0.00163096568874 -0.00123403308393 0)
(-0.00169431657127 -0.00116868241627 0)
(-0.00173054250195 -0.000995148779074 0)
(-0.00168031472779 -0.000712703354523 0)
(-0.00170426061995 -0.000516933621672 0)
(-0.00193052815169 -0.000600844278746 0)
(-0.00202976194676 -0.00065941212166 0)
(-0.00221155985488 -0.000520526956787 0)
(0.00796264778625 0.036132081882 0)
(0.0338817930711 0.0763013570752 0)
(0.0539134030453 0.108416772206 0)
(0.0723255854911 0.133628791696 0)
(0.0896653531677 0.153242630992 -1.46720699022e-28)
(0.10575263597 0.16822654956 0)
(0.120588944779 0.179436589486 1.17249728132e-28)
(0.134259927535 0.187601541241 0)
(0.146892823213 0.193327483819 0)
(0.158639459697 0.197112443395 0)
(0.16965818723 0.199357378171 0)
(0.180102978016 0.200378520529 0)
(0.190118298892 0.200421908885 0)
(0.199836297225 0.199677643518 0)
(0.209375427869 0.198292239112 0)
(0.218840532778 0.196378782455 0)
(0.228324126113 0.194025138048 0)
(0.237908478101 0.19130052093 0)
(0.247668152644 0.188260759136 0)
(0.257672737573 0.184952555428 0)
(0.267989572985 0.181417024543 0)
(0.278686360584 0.17769275681 0)
(0.289833620768 0.17381864904 0)
(0.301507025155 0.169836726892 0)
(0.313789648134 0.165795144367 0)
(0.326774132077 0.161751484382 0)
(0.34056463871 0.157776410202 0)
(0.3552782615 0.153957642609 0)
(0.371045310863 0.150404170795 0)
(0.388007533094 0.147250535005 0)
(0.406313068945 0.144660928106 0)
(0.426105694124 0.142832653078 0)
(0.447511542559 0.141998475833 0)
(0.470584229224 0.142425212939 0)
(0.495481183265 0.144414371709 0)
(0.520766167217 0.148275398935 0)
(0.556596520003 0.154187610786 0)
(-1.19521940697e-05 -0.00168926833263 0)
(-4.1009976643e-05 -0.00162889029549 0)
(-7.71167365142e-05 -0.00163417441871 0)
(-0.000112736844453 -0.00169407407868 0)
(-0.000134985815456 -0.00162715891573 0)
(-0.000155237617645 -0.00165348821538 0)
(-0.000178577864671 -0.00169542126129 1.42178741247e-29)
(-0.000220685891417 -0.00161417441149 -1.34557941778e-29)
(-0.000254936963173 -0.00156502880302 0)
(-0.00031339997107 -0.00162555248502 0)
(-0.000341956346976 -0.00143154177095 0)
(-0.000388677616387 -0.00149498537999 0)
(-0.000407958331339 -0.00157975377871 0)
(-0.000469343877103 -0.00164503757041 0)
(-0.000489335550593 -0.00152483909199 0)
(-0.000529890869296 -0.00157067294197 0)
(-0.000576282003022 -0.00163691603106 0)
(-0.000586071176137 -0.00154183481029 0)
(-0.000638562411339 -0.00156386825875 0)
(-0.000695262913308 -0.00155899768431 0)
(-0.000737995708051 -0.00152693246881 0)
(-0.000818572904449 -0.00158346540421 0)
(-0.000840879103404 -0.00151126278899 0)
(-0.000892251595351 -0.00148482930825 0)
(-0.000957055291168 -0.00146810256471 0)
(-0.00103209537874 -0.00142561363576 0)
(-0.00111707966788 -0.00136602413434 0)
(-0.00117503624684 -0.00135435906525 0)
(-0.00129563566046 -0.00148636213533 0)
(-0.00132524846314 -0.00151415395294 0)
(-0.00136834060266 -0.00146697456088 0)
(-0.00146660200703 -0.00144159853291 0)
(-0.0014955596483 -0.00138418318705 0)
(-0.00156307247047 -0.00136181852301 0)
(-0.00154328009331 -0.0012756143785 0)
(-0.00164228815819 -0.00127020742669 0)
(-0.00168441816672 -0.00119571922108 0)
(-0.00180371708072 -0.00106587197768 0)
(-0.00157190380436 -0.000746836197268 0)
(-0.00171644576313 -0.000653934141091 0)
(-0.00223236275752 -0.000793828968675 0)
(-0.00212186264036 -0.000547268632934 0)
(-0.00155378451976 0.000115941827985 0)
(0.0211503354993 0.0555848734057 0)
(0.0417099812827 0.0957339161039 0)
(0.0610341534219 0.127167632469 0)
(0.0790579759955 0.151283493873 0)
(0.095743498296 0.169613972841 0)
(0.111077359267 0.183307142659 0)
(0.125130971542 0.193300180694 -1.10525747467e-28)
(0.13803649392 0.200374643117 0)
(0.149956248653 0.205165965276 9.68185727815e-29)
(0.161062848707 0.208180836938 0)
(0.171524898301 0.209816243294 0)
(0.181498625991 0.210377828551 0)
(0.191124305676 0.210097745277 0)
(0.200525333407 0.209150969521 0)
(0.209808801598 0.207669175709 0)
(0.219067099682 0.205752008704 0)
(0.228380182217 0.203476017613 0)
(0.23781817059 0.200901633122 0)
(0.247444034693 0.198078580423 0)
(0.257316177417 0.195050101552 0)
(0.267490803581 0.191856334462 0)
(0.278024023833 0.188537177845 0)
(0.288973725195 0.185134950639 0)
(0.300401306896 0.181697106979 0)
(0.312373397002 0.178279172987 0)
(0.324963608601 0.174947939385 0)
(0.338254256311 0.171784794447 0)
(0.352337744603 0.168888939356 0)
(0.367317080837 0.166380101711 0)
(0.383304640514 0.164400246018 0)
(0.400418128049 0.163113666498 0)
(0.41877133696 0.162704706697 0)
(0.438463880133 0.163372430311 0)
(0.459526984264 0.165320603826 0)
(0.482114106108 0.168746753033 0)
(0.504828331198 0.173823218647 0)
(0.536981359983 0.180497704176 0)
(-1.11425693949e-05 -0.00171220069447 0)
(-3.8566817302e-05 -0.00166264160231 0)
(-7.83684315788e-05 -0.0016796866442 0)
(-0.000110558083431 -0.00172007450504 0)
(-0.000125121091122 -0.00165095260139 0)
(-0.000144536744786 -0.00166558657285 0)
(-0.000165508051346 -0.0017225558531 0)
(-0.000211851354582 -0.0016803106531 0)
(-0.000249262423839 -0.00157904428035 0)
(-0.000288348454021 -0.00164159388502 0)
(-0.000318934645826 -0.0014888428496 0)
(-0.000372395532127 -0.00151405518717 0)
(-0.000397488754142 -0.00160515104234 0)
(-0.000440438253529 -0.00168112780756 0)
(-0.000452606339364 -0.00156104745706 0)
(-0.000503160361229 -0.00160518402375 0)
(-0.000542020189812 -0.00166044605236 0)
(-0.000558233066884 -0.00158133431919 0)
(-0.000609304121332 -0.00160478915201 0)
(-0.000681129327961 -0.00165560157398 0)
(-0.00070223922077 -0.00156564160749 0)
(-0.000768504058293 -0.00160745762009 0)
(-0.000793836137009 -0.00155932593451 0)
(-0.000861928921542 -0.00155156678511 0)
(-0.000926718472097 -0.00154071369877 0)
(-0.00099491416733 -0.00151230827351 0)
(-0.00108459844202 -0.00146956277887 0)
(-0.00117228068263 -0.00144878346395 0)
(-0.00120405401765 -0.00145468882407 0)
(-0.0013801532964 -0.00164361018981 0)
(-0.00136552005399 -0.0015591061447 0)
(-0.00144764784069 -0.00151298901706 0)
(-0.00145797413938 -0.00140185073694 0)
(-0.00158708056884 -0.00142783579951 0)
(-0.00162136947021 -0.00137372151846 0)
(-0.00164005098129 -0.00128568244594 0)
(-0.00165729950171 -0.00118838096999 0)
(-0.00187114451885 -0.00110087060423 0)
(-0.00154099325649 -0.000750273885828 0)
(-0.00184335380219 -0.000934568065387 0)
(-0.00243773334534 -0.00112328897375 0)
(-0.00230358038471 -0.00136879087221 0)
(-0.000670659304484 0.0217283055436 0)
(0.028780446086 0.07714271703 0)
(0.0486564288417 0.115830775833 0)
(0.0673768209856 0.14566636667 0)
(0.0848507724149 0.168351508211 0)
(0.100822787905 0.185263204154 0)
(0.115367600853 0.197607631568 0)
(0.128630979492 0.206387147284 0)
(0.140788157 0.212416874403 0)
(0.152029236404 0.216344223451 -9.33532388751e-29)
(0.162541614765 0.218672392052 8.8344885602e-29)
(0.172498262436 0.21978523903 0)
(0.182052255025 0.219970759501 0)
(0.191335462727 0.21944224461 0)
(0.200459593847 0.218356538434 0)
(0.209518446541 0.216829059951 0)
(0.218590725857 0.214945704434 0)
(0.227743033414 0.212772036775 0)
(0.237032770238 0.210360273908 0)
(0.246510786962 0.207754531427 0)
(0.256223674778 0.204994766094 0)
(0.266215640556 0.202119824477 0)
(0.276529985378 0.199170006297 0)
(0.287210308637 0.196189532391 0)
(0.298301647445 0.193229224047 0)
(0.309851783162 0.19034953947 0)
(0.321912872983 0.187623896567 0)
(0.334543401219 0.18514198642 0)
(0.347810219285 0.183012581531 0)
(0.361790194537 0.181365176344 0)
(0.376570692244 0.180349649454 0)
(0.392247966457 0.180132977793 0)
(0.408921102096 0.180891921509 0)
(0.426686009163 0.182800517984 0)
(0.445583611496 0.186011739826 0)
(0.465798056039 0.190632598346 0)
(0.486021465649 0.19671174155 0)
(0.514782123492 0.203964620308 0)
(-1.06400721001e-05 -0.00173612226105 0)
(-4.44475236194e-05 -0.00169606960133 0)
(-8.49372333963e-05 -0.00173080581613 0)
(-9.89176520459e-05 -0.00173816535972 0)
(-0.000107567269632 -0.0016743377772 0)
(-0.000133382180405 -0.0016914493468 0)
(-0.000155425426671 -0.00174600306988 0)
(-0.000192824019226 -0.00174760378088 0)
(-0.000229534875422 -0.00161368717334 0)
(-0.000264249534115 -0.0016539856525 0)
(-0.000304264517292 -0.00156767105775 0)
(-0.000351827807081 -0.00153485121082 0)
(-0.000379726913458 -0.00162910854473 0)
(-0.000403264893215 -0.00169237916 0)
(-0.000420120900278 -0.00160497644413 0)
(-0.000470337901256 -0.00163983578594 0)
(-0.000499651541064 -0.00167214480993 0)
(-0.000533031178538 -0.00163173114792 0)
(-0.000582310975908 -0.00164073556387 0)
(-0.000633465215103 -0.0016901310452 0)
(-0.000654295216654 -0.00161433966597 0)
(-0.000713266154242 -0.00163663922591 0)
(-0.000752773885561 -0.00161733046068 0)
(-0.000829288644947 -0.00163176573673 -8.78703106063e-29)
(-0.000866563853369 -0.00158896996989 8.4641500019e-29)
(-0.000942300489459 -0.00158528453398 0)
(-0.0010192522856 -0.00155586995001 0)
(-0.00110629113846 -0.00153206575155 0)
(-0.00115336836367 -0.00149843262507 0)
(-0.00121318376995 -0.00155170493249 0)
(-0.00138107974606 -0.00172182694139 0)
(-0.00133204535531 -0.00153587562419 0)
(-0.00150649660518 -0.00155540291782 0)
(-0.00150879610354 -0.00143178331683 0)
(-0.00159153452859 -0.00137691186368 0)
(-0.00168376115719 -0.00132863631106 0)
(-0.00177284342319 -0.00123170364512 0)
(-0.00185415674817 -0.00107862027712 0)
(-0.00237259917431 -0.00114352359691 0)
(-0.00184593295242 -0.00098038723721 0)
(-0.00176790165582 -0.00108658680652 0)
(-0.00221983869801 -0.00152019289972 0)
(0.00990575402793 0.0499481290531 0)
(0.0348427744287 0.0974876602716 0)
(0.0547858317524 0.135121233318 0)
(0.072971840388 0.163529783521 0)
(0.089720992278 0.184689851748 0)
(0.104912692992 0.200121861877 0)
(0.118654661094 0.211110017896 0)
(0.131141493632 0.218711526393 0)
(0.142585889962 0.223763032679 0)
(0.153198489843 0.226910337981 0)
(0.163174216513 0.228641784296 -8.59638457978e-29)
(0.172684222407 0.229319737951 0)
(0.181873453886 0.229208736342 -7.90458408984e-29)
(0.190861793358 0.228499581574 0)
(0.199747009602 0.227329147924 0)
(0.208608396852 0.225796066762 0)
(0.217510465374 0.223972760273 0)
(0.226506345788 0.221914458773 0)
(0.23564074253 0.219665836958 0)
(0.24495235218 0.217265816372 0)
(0.254475691145 0.214751010272 0)
(0.264242320124 0.212158285247 0)
(0.274281559547 0.209526952763 0)
(0.284620942148 0.20690109248 0)
(0.295286771367 0.204332378747 0)
(0.306305171475 0.201883524552 0)
(0.317703902626 0.199632141001 0)
(0.329515004614 0.197674510099 0)
(0.341778092871 0.196128538141 0)
(0.354543911687 0.195134980065 0)
(0.367877535966 0.194855854912 0)
(0.381860508949 0.195468725009 0)
(0.396589805115 0.197155264539 0)
(0.41217782178 0.200081908659 0)
(0.428706956631 0.204372108427 0)
(0.44642844541 0.210059723196 0)
(0.464182494864 0.21708041807 0)
(0.489798211641 0.224863577315 0)
(-1.18619344543e-05 -0.00176111277377 0)
(-5.21185118262e-05 -0.00175802044892 0)
(-8.09037883119e-05 -0.00175176943694 0)
(-7.89579515571e-05 -0.00172249735857 0)
(-9.26953761146e-05 -0.00169835423493 0)
(-0.000123592096533 -0.0017178473375 0)
(-0.000146326143468 -0.00176347376648 0)
(-0.000170561532088 -0.00177976467134 1.04797579935e-28)
(-0.000207112018588 -0.00167083371642 0)
(-0.000238162270579 -0.00167082234233 0)
(-0.000284855791879 -0.00164024892072 0)
(-0.000328055579784 -0.00155609790733 0)
(-0.000356486682327 -0.00164574008198 0)
(-0.000367440054789 -0.00170144154025 0)
(-0.000397356125187 -0.00165245902094 0)
(-0.000439450120369 -0.00166449609383 0)
(-0.000462717602553 -0.00170718657193 0)
(-0.000504828077635 -0.00168156529946 0)
(-0.000549199758232 -0.00166904643685 0)
(-0.000582537408996 -0.00170472114306 0)
(-0.00061318723126 -0.00166701933209 0)
(-0.000663439190402 -0.00167744407819 0)
(-0.000713897749962 -0.0016755637793 0)
(-0.000769672113084 -0.00166164770545 0)
(-0.000815149229377 -0.0016508199986 0)
(-0.000901396946097 -0.00169277420844 0)
(-0.000946217141524 -0.00164212856353 0)
(-0.00102377229724 -0.00162815831028 0)
(-0.00110592915978 -0.00161350709729 0)
(-0.00112571983721 -0.00155309369046 0)
(-0.00119106354335 -0.0016160689823 0)
(-0.00139838192585 -0.00181016829214 0)
(-0.00143398339293 -0.00165042860702 0)
(-0.00156336445264 -0.00157938872696 0)
(-0.00170438309472 -0.00152497913146 0)
(-0.00185382114523 -0.00147015982709 0)
(-0.00203169251855 -0.00141652888468 0)
(-0.0022192134204 -0.00135630473773 0)
(-0.00266995222682 -0.00131365965937 0)
(-0.00301668637786 -0.00117952132452 0)
(-0.00227953992226 -0.000584870179592 0)
(-0.00172141162882 -9.79743825825e-05 0)
(0.0208028118035 0.0680970736963 0)
(0.0408509657296 0.117059925526 0)
(0.0600263630588 0.153751268431 0)
(0.0776958661036 0.180708792383 0)
(0.0936770296444 0.200263055454 0)
(0.108048220282 0.214174471001 0)
(0.120989425355 0.223824970219 0)
(0.132731769972 0.230307812918 0)
(0.143514338001 0.234463947764 0)
(0.153559812137 0.236923909923 0)
(0.163063220762 0.238150733293 0)
(0.172187974253 0.238478149505 0)
(0.18106663793 0.2381429095 7.75199566179e-29)
(0.189804434534 0.237311147937 7.39693180964e-29)
(0.198483842592 0.236099118757 0)
(0.207169257278 0.234588973843 0)
(0.215911180041 0.232840439626 0)
(0.224749718937 0.230899274083 0)
(0.233717344405 0.228803263485 0)
(0.242840879069 0.226586344238 0)
(0.252142684219 0.224281349168 0)
(0.261641056682 0.221921938928 0)
(0.271350024689 0.219544389737 0)
(0.281278966031 0.217189905671 0)
(0.291432630975 0.214907903163 0)
(0.30181213299 0.212760318444 0)
(0.31241727321 0.210826546704 0)
(0.323250282059 0.209208270318 0)
(0.334320815239 0.208033227008 0)
(0.345651913235 0.20745683762 0)
(0.357286596594 0.207660469283 0)
(0.369294836327 0.208844685015 0)
(0.381779561623 0.211215390126 0)
(0.39488546579 0.214959035245 0)
(0.408768593815 0.220204855695 0)
(0.423787110187 0.226947242769 0)
(0.439021975532 0.235035383687 0)
(0.461709381893 0.243471528172 0)
(-1.1880712247e-05 -0.00178484622326 0)
(-3.78761940951e-05 -0.00179012571322 0)
(-6.03808419839e-05 -0.00170613275549 0)
(-7.48077360562e-05 -0.00171570632934 0)
(-9.06194949664e-05 -0.00172305919007 0)
(-0.000116734155771 -0.00174405238699 0)
(-0.000134650876002 -0.00177601185045 0)
(-0.000152239951587 -0.00180062826221 -1.01864075465e-28)
(-0.000187676545557 -0.00171833187043 0)
(-0.000216391943873 -0.00168078383749 0)
(-0.000262724655896 -0.00172969484922 -9.54623141365e-29)
(-0.000301843133581 -0.00159431826271 0)
(-0.000335388765826 -0.00165142756518 0)
(-0.000340338033876 -0.00172643846422 0)
(-0.000380856561302 -0.00171958505813 0)
(-0.000413817009472 -0.00167652162101 0)
(-0.000435301095183 -0.00173475981384 0)
(-0.000482449945671 -0.00177756860602 0)
(-0.000504878466718 -0.00169577064333 0)
(-0.000540748231248 -0.00173707903396 0)
(-0.00058068858756 -0.00171741171207 0)
(-0.000619760007457 -0.00170504903889 0)
(-0.000681023367768 -0.00177400897875 0)
(-0.000701450598579 -0.00170045434732 0)
(-0.000764987898023 -0.00170928802213 0)
(-0.00081147484877 -0.00170589203452 0)
(-0.000863002065058 -0.00170102653887 0)
(-0.000935461030805 -0.00170555939339 0)
(-0.00100565129055 -0.00169687910787 0)
(-0.00108154843896 -0.00169183493775 0)
(-0.00111796761961 -0.00165486882049 0)
(-0.00119715990051 -0.00170248541829 0)
(-0.0013263892211 -0.00180293960513 0)
(-0.00156723150156 -0.00189191388655 0)
(-0.00175943543853 -0.00186541048328 0)
(-0.00195520639227 -0.00181831632322 0)
(-0.00207977095231 -0.00172361250122 0)
(-0.00225555212611 -0.00170407585031 0)
(-0.00257774438886 -0.00172406503859 0)
(-0.00312127628271 -0.00155388140841 0)
(-0.0021949709981 -0.00130662121371 0)
(-0.00301701409656 0.0207069961543 0)
(0.0262510263437 0.0895016120729 0)
(0.0459704989201 0.137016618788 0)
(0.0645218228675 0.171932062474 0)
(0.0815261894634 0.197164627921 0)
(0.0967161030655 0.215034887762 0)
(0.110268180486 0.227421691615 0)
(0.122434795633 0.235781969381 0)
(0.133482006354 0.241226125456 0)
(0.143665861837 0.244581838291 0)
(0.15321244537 0.246451301739 0)
(0.162310063869 0.247263338252 0)
(0.171109393657 0.247317665938 0)
(0.179727457617 0.246820617929 0)
(0.188253240872 0.245912933982 -7.27746021711e-29)
(0.196753541506 0.244690677887 6.93921688356e-29)
(0.205278229648 0.243220515397 0)
(0.213864560081 0.241550591277 0)
(0.222540474142 0.239718114352 0)
(0.231326941316 0.237754484759 0)
(0.240239343368 0.235688526908 0)
(0.249287836 0.233548336679 0)
(0.258476717936 0.23136244456 0)
(0.267803138293 0.229161222498 0)
(0.277255823609 0.226979433943 0)
(0.286814677765 0.224860439483 0)
(0.296451981384 0.222861955759 0)
(0.306135564616 0.221062689443 0)
(0.315833936614 0.219568822145 0)
(0.325523146029 0.218519255806 0)
(0.335195181328 0.218088550568 0)
(0.344868063073 0.218486439806 0)
(0.354598096585 0.219952125566 0)
(0.364494508644 0.222740811173 0)
(0.374740517974 0.227096334893 0)
(0.385590037526 0.233204540489 0)
(0.397540930105 0.241084407356 0)
(0.410084801295 0.250567431002 0)
(0.429957077014 0.260011873047 0)
(-9.90734713899e-06 -0.00180679389586 0)
(-2.29864980172e-05 -0.00180350047442 0)
(-4.89798122188e-05 -0.00179191723202 0)
(-7.55481667371e-05 -0.00173976540614 0)
(-8.83354461251e-05 -0.00174860466385 0)
(-0.000104650717742 -0.00176719851685 0)
(-0.000117663146218 -0.00178385303347 0)
(-0.000132432948712 -0.00182092428025 0)
(-0.000167722408006 -0.00175800942413 0)
(-0.00020319224772 -0.00169884210889 0)
(-0.000233132555953 -0.00175271408167 9.33829796747e-29)
(-0.000276355268795 -0.00165979851691 0)
(-0.000316758527613 -0.00165074365155 0)
(-0.000324560436541 -0.00173830778173 0)
(-0.000357780407388 -0.00180137000773 -9.20283659162e-29)
(-0.000378473253094 -0.00169996263531 0)
(-0.00040998057158 -0.00174883013351 0)
(-0.000436569353382 -0.00180369389133 0)
(-0.000459031375025 -0.00173408279312 0)
(-0.000499843095062 -0.00176548760403 0)
(-0.000549178560037 -0.0018126407923 0)
(-0.000566845426194 -0.00172576112019 0)
(-0.000612288958174 -0.00177885393769 0)
(-0.000639697204561 -0.00175880607324 0)
(-0.000703199719274 -0.00177863772436 0)
(-0.000736374314678 -0.00175259705772 0)
(-0.000794990485082 -0.00176418529186 0)
(-0.000850539404122 -0.00177264333994 0)
(-0.000910727777724 -0.0017689581536 0)
(-0.000975123151613 -0.00176985265606 0)
(-0.00105520781833 -0.00180127709009 0)
(-0.0010785008243 -0.00175919176854 0)
(-0.00113175681601 -0.00177689658914 0)
(-0.00119169394776 -0.00181065282514 0)
(-0.00124807557515 -0.00178963563199 0)
(-0.00131762042297 -0.00172955275719 0)
(-0.00140337303766 -0.00168794590419 0)
(-0.00149538048419 -0.00170473998083 0)
(-0.00153497280186 -0.00172797215736 0)
(-0.00141303618194 -0.00173786723613 0)
(-0.00179611578811 -0.00312741122762 0)
(0.00300799514346 0.0449292225502 0)
(0.0304971315339 0.11004715297 0)
(0.0502938687828 0.156384205074 0)
(0.0682580931106 0.189495239703 0)
(0.0845010565313 0.212858835683 0)
(0.098881020644 0.228996247004 0)
(0.11163380627 0.239885614078 0)
(0.123068848197 0.247027742082 0)
(0.133481810709 0.251528630041 0)
(0.143136735382 0.254185677921 0)
(0.15225463288 0.255560886407 0)
(0.161010959702 0.256041832965 0)
(0.169539795909 0.255890847029 0)
(0.177940674877 0.255282957396 0)
(0.18628585648 0.254334107608 0)
(0.194626931825 0.253121473919 -6.84217411156e-29)
(0.203000236178 0.251697693788 0)
(0.211430939444 0.250100586098 6.30363634639e-29)
(0.219935907067 0.248359641611 0)
(0.228525459426 0.246500104997 0)
(0.237203994677 0.244545114616 0)
(0.245969327754 0.242516424077 0)
(0.254810804425 0.240434666627 0)
(0.263706758494 0.23832049202 0)
(0.272622365596 0.236197769459 0)
(0.281509059567 0.234099348982 0)
(0.290306319701 0.232074947847 0)
(0.298946029501 0.230200036138 0)
(0.307359083534 0.228584385752 0)
(0.315483809144 0.227379227871 0)
(0.323276101837 0.2267823378 0)
(0.330722149891 0.227040666454 0)
(0.3378554143 0.228449162353 0)
(0.344780883652 0.231343485613 0)
(0.351712148262 0.236075855269 0)
(0.359001674622 0.242962184549 0)
(0.367288272462 0.252140749695 0)
(0.376715080531 0.263490539731 0)
(0.393359226855 0.274591519769 0)
(-9.82361017142e-06 -0.00182761217076 0)
(-2.90008446209e-05 -0.00182044561524 0)
(-4.71597756934e-05 -0.00182080765018 0)
(-6.00477644555e-05 -0.00176675361928 0)
(-7.0846882596e-05 -0.00176241955151 0)
(-8.43181438829e-05 -0.00178396170752 0)
(-9.8723582173e-05 -0.00179699741201 0)
(-0.000113216756833 -0.00184030974286 0)
(-0.000146322361796 -0.00181736873728 0)
(-0.00018616129812 -0.00172906946493 0)
(-0.000206228436642 -0.00176366474918 0)
(-0.0002486651735 -0.00173452144538 0)
(-0.000293381001025 -0.00165280109837 0)
(-0.00031154445204 -0.00173686825799 0)
(-0.000313195410621 -0.00179448150068 8.82048793326e-29)
(-0.000339616262412 -0.00173696725389 0)
(-0.000375484249601 -0.00175712686896 0)
(-0.000385408635 -0.0018101305298 -8.45232582059e-29)
(-0.000416645421844 -0.00177740893197 0)
(-0.000457041465824 -0.00177648579481 0)
(-0.000486291232449 -0.00182118395093 0)
(-0.000509339762165 -0.00177198164514 0)
(-0.000547737480968 -0.00180265080345 0)
(-0.000582630360292 -0.00180676408914 0)
(-0.000623404663817 -0.00179661951263 0)
(-0.000671247487751 -0.00180657817982 0)
(-0.000720291367467 -0.00181224946297 0)
(-0.000759199553695 -0.00181297461298 0)
(-0.000819905556517 -0.00182867994319 0)
(-0.000872468895108 -0.00182605863306 0)
(-0.000939638248548 -0.0018665544919 0)
(-0.000970784756839 -0.00185439335478 0)
(-0.00101367469405 -0.001863220273 0)
(-0.00100165054843 -0.00180218741596 0)
(-0.00102531575543 -0.00179660830162 0)
(-0.00104202020611 -0.0017453547159 0)
(-0.00107938739552 -0.00170238190206 0)
(-0.00104419186583 -0.00160600727919 0)
(-0.000880250222356 -0.00149334921829 0)
(-0.000467384025142 -0.00162842988461 0)
(-0.0011366931792 -0.0023338444275 0)
(0.00926138094627 0.0676123686611 0)
(0.0341578560202 0.130557290937 0)
(0.0539386916239 0.175266188586 0)
(0.0713042926397 0.206370200353 0)
(0.0867046633962 0.227749500912 0)
(0.100244842474 0.242143198592 0)
(0.112221085044 0.251596733009 0)
(0.122977040802 0.257617444427 0)
(0.132823500355 0.261283242859 0)
(0.142021631404 0.263346151799 0)
(0.150779192183 0.264318871916 0)
(0.15925365273 0.264543351198 0)
(0.167559931872 0.264243410868 0)
(0.175779368562 0.263563579993 0)
(0.183967999226 0.262596712554 0)
(0.192163369838 0.261403005869 0)
(0.200389690586 0.260022749387 0)
(0.208661424725 0.25848464852 -6.22851940693e-29)
(0.216985536042 0.256811088227 0)
(0.225362550722 0.255021027507 0)
(0.2337862746 0.253130806226 0)
(0.242241880821 0.251153466337 0)
(0.250702516342 0.249098014638 0)
(0.259125395279 0.246970559244 0)
(0.267448949294 0.244778817517 0)
(0.275592510895 0.24254025558 0)
(0.283459230575 0.240292776703 0)
(0.290941959158 0.23810615103 0)
(0.297931144097 0.236092517452 0)
(0.304323861194 0.234415191428 0)
(0.310033734552 0.233296030822 0)
(0.315003449123 0.233022794855 0)
(0.319222882979 0.233957467198 0)
(0.32276200958 0.236547274945 0)
(0.325829119162 0.241325021474 0)
(0.328842768061 0.248884848904 0)
(0.332594204531 0.259702236767 0)
(0.338012572461 0.273803304703 0)
(0.349395772765 0.288005748574 0)
(-8.61119705572e-06 -0.00184597650355 0)
(-3.03964407553e-05 -0.00184076057247 0)
(-4.26669588677e-05 -0.00181345917408 0)
(-4.265298763e-05 -0.00176327353712 0)
(-5.25236441793e-05 -0.00176641922706 0)
(-6.90113606264e-05 -0.00179694455119 0)
(-8.47632108062e-05 -0.00181443712425 0)
(-9.86628560869e-05 -0.00185560406002 0)
(-0.00012284942647 -0.0018608044738 0)
(-0.000163665107523 -0.0017774027803 0)
(-0.000187960113192 -0.00176368312883 0)
(-0.000218034811294 -0.00182780377687 0)
(-0.000261414323062 -0.00170337831792 0)
(-0.000290162478192 -0.00172730859116 0)
(-0.000281561997264 -0.00180745684576 0)
(-0.00031012393103 -0.00181152984594 0)
(-0.000337437749944 -0.00176269803074 0)
(-0.0003496891681 -0.00182593673358 8.22328907636e-29)
(-0.000379906858449 -0.00186410605494 0)
(-0.000404451586457 -0.00180167866589 0)
(-0.000430107672026 -0.00184223665652 0)
(-0.000458486880105 -0.00181680339553 0)
(-0.00049032211036 -0.00181377690131 0)
(-0.000533091608491 -0.00188539122159 0)
(-0.000554052458776 -0.00183788361055 0)
(-0.000612708232066 -0.00188477165808 0)
(-0.000632166935218 -0.00183307977955 0)
(-0.000684948979534 -0.00186771817545 0)
(-0.000736700565414 -0.00189294522671 0)
(-0.000780481798174 -0.00187767917224 0)
(-0.000832017713539 -0.0018885149107 0)
(-0.000879770503853 -0.00190249286441 0)
(-0.000931046679984 -0.00192281219076 0)
(-0.000966522217824 -0.00191056747059 0)
(-0.00100089413861 -0.0018878971696 0)
(-0.00103603759132 -0.0018482193356 0)
(-0.00105519589816 -0.0017540263752 0)
(-0.00102978491599 -0.00158788977262 0)
(-0.000932605664131 -0.00137243005884 0)
(-0.000542820922279 -0.00111323433199 0)
(-0.000686613497088 -0.000896141696895 0)
(0.0177810905371 0.0878147660842 0)
(0.0382608112263 0.15040653476 0)
(0.0571685829312 0.19329624192 0)
(0.073701013063 0.222342486647 0)
(0.0881758078973 0.241755324509 0)
(0.100862534896 0.254473365228 0)
(0.112099890874 0.262596191578 0)
(0.122241432447 0.267614920944 0)
(0.131595356092 0.270561839044 0)
(0.140409061982 0.272133072311 0)
(0.148870448743 0.272786838229 0)
(0.157115628839 0.272818116456 7.20251426671e-29)
(0.165239365995 0.272413279356 -7.07593950494e-29)
(0.173305321762 0.271688562845 0)
(0.181354638294 0.270716203795 0)
(0.189412458245 0.269541627044 0)
(0.197492499461 0.26819444441 0)
(0.205599954943 0.266695264876 0)
(0.213733030595 0.265059675356 -5.73260958304e-29)
(0.221883240318 0.263299799504 0)
(0.230034062569 0.261423450919 0)
(0.238157496748 0.259431716381 0)
(0.246208896359 0.257317202633 0)
(0.254121699089 0.255065711832 0)
(0.261804297929 0.252663040727 0)
(0.269140747552 0.250106511383 0)
(0.275995582361 0.24741901881 0)
(0.282221613665 0.24466281745 0)
(0.287668762196 0.241951006163 0)
(0.29219227337 0.239456455899 0)
(0.295659327207 0.237419583441 0)
(0.297955553508 0.236159019338 0)
(0.298993433786 0.2360897848 0)
(0.298738029393 0.237761360393 0)
(0.297263961515 0.241912077511 0)
(0.294880452096 0.249577242091 0)
(0.292533057017 0.262023153192 0)
(0.291832603405 0.28053402019 0)
(0.29416556525 0.302449957633 0)
(-4.44609024551e-06 -0.00185958400852 0)
(-1.60811411334e-05 -0.0018595240576 0)
(-2.37225322004e-05 -0.00179970842249 0)
(-3.37276930191e-05 -0.00174933432611 0)
(-5.15057289879e-05 -0.00178383980281 0)
(-6.43281824389e-05 -0.00181022712365 0)
(-7.59086102108e-05 -0.00182882903269 0)
(-8.42835732157e-05 -0.00186415336838 0)
(-9.67972138505e-05 -0.0018847677578 0)
(-0.000133770541687 -0.0018190079992 0)
(-0.00017188848531 -0.00177561778772 0)
(-0.000181834498194 -0.0018131839605 0)
(-0.000220222767322 -0.00177924869228 0)
(-0.000259662517714 -0.00170438079802 0)
(-0.000264036358314 -0.00179910784146 0)
(-0.000268689447252 -0.00185400834564 0)
(-0.000293653172271 -0.00177824101582 0)
(-0.000318641492284 -0.00182125368758 0)
(-0.000324904017773 -0.00187245247743 0)
(-0.000348629103893 -0.00182701740664 0)
(-0.000378398138213 -0.0018492688602 0)
(-0.000407931586703 -0.00188722405689 0)
(-0.00043218911908 -0.0018352432335 0)
(-0.000459124176133 -0.00188467657786 0)
(-0.000485422584189 -0.00187318412349 0)
(-0.000529379764862 -0.00188296916446 0)
(-0.000564641832722 -0.00189036536965 6.51181368751e-29)
(-0.000614140975618 -0.00192188351981 -6.40837693963e-29)
(-0.000649610475476 -0.00192494683399 0)
(-0.000706073242459 -0.00194408595206 0)
(-0.000761995112792 -0.00195593817395 0)
(-0.000817853955876 -0.00196892424773 0)
(-0.000877569401773 -0.0019798134696 0)
(-0.000932383617011 -0.00196322832477 0)
(-0.000997050002333 -0.00194278581241 0)
(-0.00106607265663 -0.00189788400843 0)
(-0.00114586614481 -0.00181265944922 0)
(-0.00124723334432 -0.00166198576274 0)
(-0.00141618205852 -0.00143084246874 0)
(-0.00103341517812 -0.00109629821648 0)
(-0.00127219486281 0.009928700998 0)
(0.0238917345085 0.107694405204 0)
(0.0419533280083 0.169437540718 0)
(0.0597595661463 0.210336684601 0)
(0.0753253615845 0.237330371535 0)
(0.0888815610273 0.25486447868 0)
(0.100762071413 0.266026048647 0)
(0.111330931229 0.272950318848 0)
(0.120938951165 0.277096693345 0)
(0.129879812616 0.279439857361 0)
(0.138379774432 0.280613694976 0)
(0.146603236838 0.281020201206 0)
(0.154663913135 0.280908598486 0)
(0.162637069192 0.280430513453 0)
(0.170570268012 0.27967698848 0)
(0.178491680122 0.278702462387 0)
(0.186415944548 0.27753978838 0)
(0.194347967992 0.276209368594 0)
(0.202285046831 0.274724434331 0)
(0.210217668077 0.273093733244 5.67952714846e-29)
(0.218128996797 0.271321548502 5.37440830258e-29)
(0.225992275414 0.269404742811 0)
(0.233765494127 0.267328214893 0)
(0.241384200067 0.265062312718 0)
(0.248755068063 0.262566018285 0)
(0.255753277092 0.2597974598 0)
(0.262225373221 0.256730016927 0)
(0.267997012582 0.253370056712 0)
(0.272883207467 0.249772296341 0)
(0.276697877261 0.246050421829 0)
(0.279260260143 0.242383313524 0)
(0.280395810205 0.239019037396 0)
(0.279931890107 0.236282405663 0)
(0.277683247308 0.234591455527 0)
(0.273439215091 0.234503404629 0)
(0.266922224911 0.236786304501 0)
(0.257806602038 0.242638109529 0)
(0.246167984197 0.253781842655 0)
(0.232644250034 0.274171142045 0)
(0.221480491469 0.307872211008 0)
(-1.10948728213e-06 -0.00186586964091 0)
(-2.92602590395e-06 -0.00186760565267 0)
(-1.43849564377e-06 -0.00182401547149 0)
(-2.62650304864e-05 -0.0017868055451 0)
(-5.64984465257e-05 -0.00179452687079 0)
(-6.15166649541e-05 -0.00181789257287 0)
(-6.63913251161e-05 -0.00183792755567 0)
(-6.82026169101e-05 -0.00186333562123 0)
(-7.20905165462e-05 -0.00189985946001 0)
(-0.000102342817792 -0.00187522167609 0)
(-0.000146376316682 -0.00181370852904 0)
(-0.000162991882054 -0.00180889333685 0)
(-0.000182208120916 -0.00186844093034 0)
(-0.00022100099225 -0.00175310304819 0)
(-0.00024427595223 -0.00177416107688 0)
(-0.000231368689262 -0.00185510491986 0)
(-0.000252125351085 -0.00185203441249 0)
(-0.00027800498374 -0.0018210942478 0)
(-0.000279519497363 -0.00188110212071 0)
(-0.000300881165505 -0.00190207294478 0)
(-0.000325661203697 -0.00185678533272 7.20499833293e-29)
(-0.000343381252634 -0.00190268155872 0)
(-0.000366386324761 -0.00187155112157 0)
(-0.000395810815092 -0.00188296515777 0)
(-0.000432413420972 -0.00196309413074 0)
(-0.000457798360569 -0.00192294407045 0)
(-0.000499663894433 -0.00193862456019 0)
(-0.000533438983979 -0.00194378519493 0)
(-0.00057981872535 -0.00198357188593 0)
(-0.000634396737395 -0.00201543386638 0)
(-0.000681998877751 -0.00200071951969 0)
(-0.00074899485255 -0.00202570752187 0)
(-0.000815929132029 -0.0020372665431 0)
(-0.000888791014493 -0.00203473077606 0)
(-0.000987272040404 -0.00204414448972 0)
(-0.00108695590269 -0.00199786134108 0)
(-0.00122647149655 -0.00194512983389 0)
(-0.00139664192724 -0.00183819025529 0)
(-0.00163383492109 -0.00167422019373 0)
(-0.00132783966091 -0.00164170316576 0)
(0.000912462893658 0.0305245887948 0)
(0.0269927836538 0.126733767568 0)
(0.0444621269768 0.187508407218 0)
(0.0614009312748 0.226437348034 0)
(0.0760619757864 0.25140476813 0)
(0.0888008145235 0.267155592158 0)
(0.0999793620486 0.276889989891 0)
(0.109979737486 0.282750786635 0)
(0.119146810597 0.286149392347 0)
(0.127755223633 0.287993278575 0)
(0.13600729388 0.288850335844 0)
(0.144043404952 0.28906686776 0)
(0.151955976626 0.288849176255 0)
(0.15980277572 0.288317754029 0)
(0.167617571118 0.287541880154 0)
(0.175417788013 0.286560968812 0)
(0.18320950443 0.285397253239 0)
(0.190990405005 0.284063063584 0)
(0.1987511182 0.282564623182 0)
(0.206475303288 0.280903440946 -5.40768628275e-29)
(0.214138294451 0.279074467205 -5.33384828176e-29)
(0.221702963073 0.27706038582 0)
(0.229112052977 0.274824549302 0)
(0.236278777637 0.272308111074 0)
(0.243079743968 0.269436309964 0)
(0.249354062233 0.266134623312 0)
(0.254909858593 0.262350712886 0)
(0.259536134296 0.258075826954 0)
(0.263016068877 0.253360401994 0)
(0.265137380528 0.248321460211 0)
(0.265697049105 0.243143016439 0)
(0.264496907164 0.238071634483 0)
(0.261330492394 0.233413498078 0)
(0.255948105439 0.22953289706 0)
(0.248013169846 0.22687130009 0)
(0.236939261738 0.225934660535 0)
(0.221663481274 0.227389438956 0)
(0.199499032719 0.231534796533 0)
(0.161768798174 0.240748882186 0)
(0.109670274567 0.252982514063 0)
(-1.78116878979e-06 -0.00186611334521 0)
(-6.60272458233e-06 -0.00186821397074 0)
(-4.9607406104e-06 -0.00182440240563 0)
(-1.62927805943e-05 -0.00187609514279 0)
(-3.98281503328e-05 -0.00181670441419 0)
(-5.00069342421e-05 -0.00182136241858 0)
(-5.25541753304e-05 -0.001842092155 0)
(-5.23878140167e-05 -0.00186061211813 0)
(-5.19420323475e-05 -0.00191022085941 0)
(-6.73401818235e-05 -0.00191441974215 0)
(-0.000107327296976 -0.00185446701796 0)
(-0.000143254342209 -0.00181358015403 0)
(-0.000147951856187 -0.00184151124685 0)
(-0.000170260993508 -0.00183433680019 0)
(-0.000206524588291 -0.00176111049627 0)
(-0.000208833105416 -0.00183396071179 0)
(-0.000199468323099 -0.00188656212791 0)
(-0.000225031202749 -0.00182254726866 0)
(-0.000242037220411 -0.00185441220843 0)
(-0.000240621096429 -0.00192248204416 0)
(-0.000264373678978 -0.00186607514586 -7.0776232605e-29)
(-0.000289264796845 -0.00189059990089 0)
(-0.000311244767353 -0.00194053673329 0)
(-0.000339175062849 -0.00191627041637 0)
(-0.000359432596646 -0.00195119699583 0)
(-0.000383636612721 -0.00196295484405 0)
(-0.000419948827344 -0.00196070633958 0)
(-0.000461128037392 -0.0019950221483 0)
(-0.000500095964665 -0.00201911388856 0)
(-0.000545117067252 -0.00204455116566 0)
(-0.000605912958085 -0.00206569477737 0)
(-0.00067588738639 -0.00210130678526 0)
(-0.000742658073432 -0.00211653485903 0)
(-0.00082868063149 -0.00213012769711 0)
(-0.000935037226311 -0.00213956638785 0)
(-0.00106959465329 -0.00214856989483 0)
(-0.0012204254059 -0.00210190211973 0)
(-0.00142368101945 -0.0020263517927 0)
(-0.00158819299739 -0.0019224228124 0)
(-0.00158983529351 -0.00240163231259 0)
(0.000969264321575 0.0499485962689 0)
(0.028377435047 0.146164282922 0)
(0.0455181965873 0.205060293749 0)
(0.0619603807414 0.241812054765 0)
(0.0759119510716 0.264725865646 0)
(0.0879816829971 0.278761799945 0)
(0.0985855469906 0.287182470588 0)
(0.108127620873 0.292101088341 0)
(0.116946553716 0.294861000715 0)
(0.125297378564 0.29629323021 0)
(0.133358804158 0.296897417142 0)
(0.141248833473 0.296966042033 0)
(0.149041088355 0.296666131207 0)
(0.156778598615 0.296090922198 0)
(0.16448394435 0.295291238549 0)
(0.172166045271 0.294293915936 0)
(0.179824223414 0.293112121773 0)
(0.18745033925 0.291750865311 -5.62223648362e-29)
(0.195029388262 0.290209378127 0)
(0.202538924723 0.288481184885 5.3679836602e-29)
(0.209946803095 0.286549877161 0)
(0.217205092717 0.284379773566 0)
(0.22423952025 0.281906034625 0)
(0.230937807368 0.279032673048 0)
(0.237142883188 0.275644340062 0)
(0.242655427495 0.271630525406 0)
(0.247245759672 0.266914484753 0)
(0.25067091382 0.261477742308 0)
(0.25269141546 0.255374090295 0)
(0.25308249881 0.248731426688 0)
(0.25163806274 0.241744100737 0)
(0.248162991106 0.234657416764 0)
(0.242458061652 0.227751734063 0)
(0.234277575603 0.221313729526 0)
(0.22329765708 0.215616554545 0)
(0.208919532324 0.210776694426 0)
(0.190220146616 0.206705823436 0)
(0.165010602496 0.201228515388 0)
(0.130497466319 0.191369018232 0)
(0.0791644327494 0.138345443688 0)
(-2.96204326658e-06 -0.00186909918909 0)
(-1.09613004496e-05 -0.00187220194369 0)
(-2.1715078814e-05 -0.00180668599532 0)
(-1.50277552863e-05 -0.00184653799874 0)
(-1.75793243913e-05 -0.00182930672426 0)
(-3.5964653327e-05 -0.00182634875737 0)
(-3.78879231448e-05 -0.00184384195906 0)
(-3.76504501103e-05 -0.00186361748629 0)
(-3.18194171369e-05 -0.00190924388311 0)
(-3.04634625249e-05 -0.00193370798591 0)
(-5.87260510515e-05 -0.00190820149491 0)
(-0.000101771650326 -0.00185313949198 0)
(-0.00012080814465 -0.00182445283999 0)
(-0.00012436899538 -0.00185730310114 0)
(-0.000158367631504 -0.00182359593766 0)
(-0.000182255088053 -0.00179196307348 0)
(-0.00016590912805 -0.00187505510416 0)
(-0.00017677130426 -0.00192782056033 0)
(-0.000195956509356 -0.00184634730169 0)
(-0.000195379807501 -0.00191998825413 0)
(-0.000212308733295 -0.00196381807145 0)
(-0.000235595844475 -0.00190281614291 0)
(-0.00025197858549 -0.00195203579704 0)
(-0.000268598287666 -0.0019471495644 0)
(-0.000291738990113 -0.00196844840516 0)
(-0.000314688587214 -0.00201312628693 0)
(-0.000344264153577 -0.00200839458946 0)
(-0.000380574456869 -0.00203809170993 0)
(-0.000411240726303 -0.0020564669761 0)
(-0.000466922646099 -0.0021134182223 0)
(-0.000523183515397 -0.00214190983051 0)
(-0.000574799890427 -0.00215403537317 0)
(-0.000640294493935 -0.00218068488385 0)
(-0.000734711398925 -0.00222521381001 0)
(-0.000851080993786 -0.00226186877645 0)
(-0.000984743637244 -0.00226926271698 0)
(-0.0011617929265 -0.00228712862161 0)
(-0.00144109417286 -0.0023101660269 0)
(-0.00146772407891 -0.00219736744317 0)
(-0.00187721404596 -0.00333905174318 0)
(0.00133761025778 0.0699660143582 0)
(0.028857411363 0.165619113096 0)
(0.045578298713 0.222210654239 0)
(0.061627062542 0.256601045915 0)
(0.0750090747379 0.277434941053 0)
(0.0865407662891 0.289814322945 0)
(0.096686021111 0.297019364115 0)
(0.105870132787 0.301099612647 0)
(0.114422713298 0.303311111473 0)
(0.122578924292 0.304400678321 0)
(0.13049538459 0.304798990513 0)
(0.138270329849 0.30474752211 0)
(0.145961634502 0.304377974249 0)
(0.153600533298 0.30376005331 0)
(0.161200940804 0.302929034513 0)
(0.168765294383 0.301901147838 0)
(0.176287702461 0.300681599543 5.64736859696e-29)
(0.183755351351 0.299268447401 5.57814571062e-29)
(0.191148422988 0.297653621378 0)
(0.198438913461 0.295821590352 0)
(0.20558736077 0.293741946107 0)
(0.212534211636 0.29135527709 0)
(0.219185713012 0.288560434802 0)
(0.225400196909 0.285215490837 0)
(0.230983060298 0.281158378939 0)
(0.23569487887 0.276241848156 0)
(0.239270396678 0.27037001314 0)
(0.241441498451 0.263524557324 0)
(0.241957259631 0.25577474156 0)
(0.240595523557 0.247271594306 0)
(0.237166839296 0.238231307382 0)
(0.231504746603 0.228909570139 0)
(0.22345721586 0.219576723186 0)
(0.21284582909 0.210461336126 0)
(0.199462331995 0.201702821928 0)
(0.18276138217 0.193048100283 0)
(0.161989670971 0.183682433099 0)
(0.135024971811 0.168088653306 0)
(0.0986393031551 0.143374099483 0)
(0.0091871646168 0.0178676350826 0)
(-1.96318697354e-06 -0.00187914751645 0)
(-4.89126160386e-06 -0.00188443915591 0)
(-2.52894736177e-05 -0.00182705485427 0)
(-2.60783445867e-05 -0.00180973689945 0)
(-1.49266430956e-05 -0.00186274111037 0)
(-2.31253406565e-05 -0.00183268497012 0)
(-2.28604490415e-05 -0.00184360535094 0)
(-2.04951083787e-05 -0.00186244067976 0)
(-1.13543130206e-05 -0.00189217400475 0)
(-9.16245982533e-07 -0.00193808998522 0)
(-9.04852252864e-06 -0.00194692252899 0)
(-4.45988449043e-05 -0.00189259435745 0)
(-8.36847683771e-05 -0.0018499872805 0)
(-9.19007559032e-05 -0.00183926509928 0)
(-0.000100576931934 -0.0018902214431 0)
(-0.00013361017289 -0.00180725055344 0)
(-0.000146624575768 -0.00182131208484 0)
(-0.000128616728515 -0.00191394844285 0)
(-0.000138609224125 -0.00187203253529 0)
(-0.000157449245723 -0.00189442085844 0)
(-0.000154014350053 -0.0019631150909 0)
(-0.00016662526225 -0.0019269546662 0)
(-0.000187819732454 -0.00194957137424 0)
(-0.0002003203589 -0.00197484257725 0)
(-0.000220569188052 -0.0019910759743 0)
(-0.000237940247259 -0.00200814175849 0)
(-0.000263676547061 -0.00204893906925 0)
(-0.000289725061003 -0.00204647816178 0)
(-0.000329730661528 -0.00210851938358 0)
(-0.000373570736442 -0.002177210034 0)
(-0.000404858490635 -0.00216561644065 0)
(-0.000456722213662 -0.0022051172847 0)
(-0.00052526062562 -0.0022592357363 0)
(-0.000619840561705 -0.00234094119994 0)
(-0.000724823363751 -0.0023846809865 0)
(-0.000870619843314 -0.00246315451288 0)
(-0.00106382911504 -0.00252524019156 0)
(-0.00136578849869 -0.00259227974239 0)
(-0.00131984166616 -0.00242110179441 0)
(-0.00188006421003 -0.00382928885757 0)
(0.00171216924349 0.0893783534192 0)
(0.0288012190527 0.184848339671 0)
(0.0450138637949 0.238952237052 0)
(0.0606393605387 0.270878169022 0)
(0.0735280347288 0.289635204787 0)
(0.084620928418 0.300421522037 0)
(0.0944004173614 0.306499634574 0)
(0.103307499972 0.309829356505 0)
(0.111658257169 0.311564639614 0)
(0.119667541959 0.312363108388 0)
(0.127471773045 0.312587459058 0)
(0.135152280394 0.312431679615 0)
(0.142754199258 0.311996085196 0)
(0.150299662059 0.311330184531 0)
(0.157796089944 0.310456088695 -5.85447459826e-29)
(0.165241099697 0.309380891842 0)
(0.172624799307 0.308102516987 -5.60360897492e-29)
(0.179930583854 0.306612105505 0)
(0.187134422291 0.304893693201 0)
(0.194203125188 0.30292131121 0)
(0.201089863927 0.300647160981 0)
(0.207722136441 0.297981262678 0)
(0.213983384758 0.294776392605 0)
(0.21969785316 0.290835320379 0)
(0.224629467416 0.285944650241 0)
(0.228497988517 0.279923160554 0)
(0.231006547302 0.272665619988 0)
(0.231870466374 0.264168123308 0)
(0.230839520264 0.254531055427 0)
(0.227708428468 0.243943546474 0)
(0.222320105155 0.232657929456 0)
(0.214552238718 0.220956580678 0)
(0.204323290505 0.209127779246 0)
(0.191555563503 0.197389086973 0)
(0.176227276009 0.185881968837 0)
(0.158028113547 0.174139648142 0)
(0.137200589277 0.16052868224 0)
(0.110144869252 0.133257398169 0)
(0.0510325780284 0.0904386954006 0)
(-0.0021015369465 0.00595848712612 0)
(-1.13307233432e-06 -0.00188750097941 0)
(-2.6564166243e-06 -0.00189449746408 0)
(-2.16153891937e-05 -0.00188858573173 0)
(-3.63595029864e-05 -0.00180861031428 0)
(-1.93893050237e-05 -0.00187492446245 0)
(-3.89935278944e-06 -0.00184517740877 0)
(-2.72301000744e-06 -0.00184238123036 0)
(1.55920064601e-06 -0.00185948206551 0)
(8.17016979086e-06 -0.00187782950074 0)
(2.11217978037e-05 -0.00193022765743 0)
(2.83699524586e-05 -0.00195017040375 0)
(1.22212991208e-05 -0.00195810840175 0)
(-2.57645607106e-05 -0.0018882704627 0)
(-5.73110644749e-05 -0.00184290181971 0)
(-5.82277697777e-05 -0.00187210648706 0)
(-7.21755758451e-05 -0.00190297735003 0)
(-0.000102037239795 -0.00182954409503 0)
(-9.50919185457e-05 -0.00187494906593 0)
(-8.37246668562e-05 -0.00193067073261 0)
(-0.00010158757104 -0.00189666025499 0)
(-0.000105522053698 -0.00193705598917 0)
(-0.000103908984053 -0.0019713734831 0)
(-0.000119037793816 -0.00195981863755 0)
(-0.000132654539275 -0.00198197950835 0)
(-0.000143765168491 -0.00200851830387 0)
(-0.00016136312589 -0.00203801629127 0)
(-0.000179825812293 -0.00205840627761 0)
(-0.000208292142606 -0.00209478844685 0)
(-0.000240420930763 -0.00214891249108 0)
(-0.000259382673981 -0.00218386301512 5.52424415973e-29)
(-0.000289739956399 -0.00223280128518 -5.36020242087e-29)
(-0.000332457974387 -0.00229247842703 0)
(-0.000384823783031 -0.00235923644624 0)
(-0.000451582057734 -0.00243238390646 0)
(-0.000537798199793 -0.00250615111385 0)
(-0.000661922008614 -0.00258575746084 0)
(-0.000866428089927 -0.00275756117188 0)
(-0.00114406942341 -0.00284023008817 0)
(-0.00123627307299 -0.0028112968143 0)
(-0.00178738062964 -0.00447792983835 0)
(0.00140047304413 0.107679919863 0)
(0.0282526165525 0.203738460487 0)
(0.0440235304159 0.255315551751 0)
(0.0591924550388 0.284715993452 0)
(0.0716383415406 0.301412716293 0)
(0.0823673351524 0.31067004481 0)
(0.0918492625602 0.315700488746 0)
(0.100537192292 0.318353036212 0)
(0.108730659626 0.319668610161 0)
(0.116624226812 0.320213068913 0)
(0.124336016288 0.320283408083 -6.46955202079e-29)
(0.131933066056 0.320030029167 6.36495695564e-29)
(0.139450326024 0.319525586131 0)
(0.14690299267 0.318802247867 5.87400949431e-29)
(0.154293660133 0.317870827489 5.80637009113e-29)
(0.16161636075 0.31673030677 0)
(0.168858069605 0.315371649213 0)
(0.175999016132 0.313778850056 0)
(0.183011347833 0.311927222281 0)
(0.189856895847 0.309778668657 0)
(0.196481173206 0.307263657823 0)
(0.202796758257 0.304252960895 0)
(0.208659938181 0.300541738211 0)
(0.213855395743 0.295868030125 0)
(0.21810185284 0.289964998715 0)
(0.221078876766 0.282624641632 0)
(0.222463833422 0.273746976604 0)
(0.221965642889 0.263360603317 0)
(0.21934745011 0.251614914201 0)
(0.21443381966 0.238752692909 0)
(0.207111765543 0.225075020748 0)
(0.197306942838 0.210901345044 0)
(0.185006856783 0.196546979867 0)
(0.170172523216 0.18222694165 0)
(0.152839646497 0.168217530094 0)
(0.132927158784 0.153872988528 0)
(0.111810667646 0.137068788685 0)
(0.0800402944312 0.0966863860729 0)
(0.00173784650686 0.00469621596242 0)
(-0.00152201845938 -0.00125166334296 0)
(2.83485115698e-08 -0.00188564825744 0)
(-3.12865066735e-06 -0.00189524789019 0)
(-8.89862225988e-06 -0.00189754824085 0)
(-2.5162342298e-05 -0.00180694218994 0)
(-2.32729623502e-05 -0.00179436746359 -1.03582712546e-29)
(-2.31892144571e-06 -0.00183129861648 -6.19272737298e-35)
(1.05823522116e-05 -0.00183749953756 1.07222392215e-29)
(2.232538687e-05 -0.00185594153005 0)
(2.7902166928e-05 -0.00187469787908 0)
(4.07860551108e-05 -0.00191014431302 0)
(5.49737746327e-05 -0.00194875330465 0)
(5.86635971778e-05 -0.00195414719377 0)
(3.9249373769e-05 -0.00193370596152 0)
(-2.64170088959e-06 -0.00187962171082 0)
(-2.67696405054e-05 -0.00184923781647 0)
(-2.48176286002e-05 -0.00189763956234 0)
(-3.86327129095e-05 -0.00187737853718 0)
(-5.39277996679e-05 -0.00185480825496 0)
(-3.92898128488e-05 -0.00189951973652 0)
(-3.29186798397e-05 -0.00195675428844 0)
(-4.50818942463e-05 -0.00192433306968 0)
(-4.89237382614e-05 -0.00194968418974 0)
(-4.9752373846e-05 -0.00199346434975 0)
(-5.91198327616e-05 -0.0019911785211 0)
(-7.13052843694e-05 -0.00201797090447 0)
(-8.17740352671e-05 -0.00205967521741 0)
(-9.6153845663e-05 -0.00208996053594 0)
(-0.000114222163268 -0.00213525546523 0)
(-0.000127050443966 -0.00215479308761 0)
(-0.000138771499755 -0.00221557158943 0)
(-0.000154114032664 -0.00224855081642 0)
(-0.000177712258177 -0.00228152418924 0)
(-0.000208259308022 -0.00236901452651 0)
(-0.000243556594412 -0.00246351055357 0)
(-0.000296736558616 -0.00256293533939 0)
(-0.000393401230032 -0.00273701435273 0)
(-0.000500903516726 -0.00292246620594 0)
(-0.000656026079317 -0.0030540972429 0)
(-0.000940735564824 -0.00320732516968 0)
(-0.00106308054213 -0.0041423110967 0)
(-0.000160020758408 0.125921332732 0)
(0.0270402314738 0.222478615078 0)
(0.0427646892383 0.271432595457 0)
(0.0575011745484 0.298202955519 0)
(0.069522150602 0.312832009745 0)
(0.0799267471716 0.32061580616 0)
(0.0891485275703 0.324670169264 0)
(0.0976489014726 0.326708913471 0)
(0.10570856724 0.327650452997 0)
(0.113501570227 0.327968071697 0)
(0.121128910613 0.327896364045 0)
(0.12864517802 0.327546310889 0)
(0.136076938977 0.326966418719 0)
(0.143433953908 0.326173974282 -5.8255929457e-29)
(0.150715103725 0.325169948304 0)
(0.157911655245 0.323945901128 0)
(0.165007997223 0.322485901962 0)
(0.171981595262 0.320766381103 0)
(0.178800975843 0.318752901618 0)
(0.185423045183 0.316393222396 0)
(0.191785092404 0.313590497211 0)
(0.19778200193 0.310165293192 0)
(0.203237396521 0.305841828998 0)
(0.207890290621 0.300284680744 0)
(0.211411099658 0.293175101398 0)
(0.213441569629 0.284290695347 0)
(0.213641134848 0.2735560552 0)
(0.211723794538 0.261053340965 0)
(0.207478868313 0.246999836074 0)
(0.20077313024 0.231707200118 0)
(0.191549305994 0.215537007642 0)
(0.17979012791 0.198851943799 0)
(0.165562529909 0.181983346579 0)
(0.1487568372 0.165077962247 0)
(0.129292225495 0.148380246978 0)
(0.106845888458 0.1295549803 0)
(0.08100183616 0.105230242932 0)
(0.00535967902384 0.00976383562118 0)
(-0.000802785927366 0.00248168169029 0)
(-0.000346844219529 0.000610095405616 0)
(4.00788465865e-06 -0.00187656128766 0)
(6.11282834504e-06 -0.00189228887229 0)
(1.07679684004e-05 -0.00187930361469 0)
(-2.15655746329e-06 -0.00183231468551 0)
(-2.72052117233e-05 -0.00179800388331 0)
(-2.24183241146e-05 -0.00181130791115 0)
(7.66248744468e-06 -0.00181570383153 0)
(3.45355536543e-05 -0.00184510958833 0)
(4.63518397008e-05 -0.00186914946485 0)
(5.70669891725e-05 -0.00188680303088 0)
(7.71586776169e-05 -0.00193786668457 0)
(8.95406223553e-05 -0.00194684753631 0)
(9.12784882839e-05 -0.00196673134245 0)
(6.71112814001e-05 -0.00192106301699 0)
(2.54004214713e-05 -0.00188072092447 0)
(1.07528030212e-05 -0.00186324999078 0)
(1.67862677151e-05 -0.00189891443313 0)
(5.85152469631e-06 -0.00186417016683 0)
(1.05141519016e-08 -0.00187504502911 0)
(1.82713949221e-05 -0.00192011717087 0)
(2.97025445591e-05 -0.00198295966623 0)
(1.82008166607e-05 -0.00194699293661 0)
(1.4585315697e-05 -0.00197350782497 0)
(1.59043909469e-05 -0.00200842604254 0)
(7.60902401373e-06 -0.00203358128148 0)
(2.47753620382e-06 -0.00205359095103 0)
(7.81697930264e-07 -0.00210554510431 0)
(-8.96096637226e-07 -0.00211323863411 0)
(-2.97434406545e-06 -0.00216811519341 0)
(-5.32686417552e-06 -0.00218475755472 0)
(-1.31275521052e-05 -0.00224906935462 4.92097703257e-29)
(-3.05016692255e-05 -0.00231522281488 -4.7650027754e-29)
(-4.13061550215e-05 -0.00240560788147 0)
(-4.37589758396e-05 -0.00249777229853 0)
(-6.02929617928e-05 -0.00263679814705 0)
(-5.36511577091e-05 -0.00279566874839 0)
(1.17107698983e-05 -0.00287441193512 0)
(0.000129353009194 -0.00303323516208 0)
(0.000460328855175 -0.00315060023369 0)
(-0.00128551146235 -0.00391223127101 0)
(-0.0014303526127 0.147550171705 0)
(0.0254184731206 0.241020734018 0)
(0.0415269264105 0.287235280333 0)
(0.0558502850991 0.311315602311 0)
(0.0673820432128 0.323884292091 0)
(0.0774387989925 0.330262821069 0)
(0.0863989247092 0.333420241681 0)
(0.0947168606864 0.334909181487 0)
(0.102647344248 0.335518941717 0)
(0.110341574338 0.335632397911 -6.28514168348e-29)
(0.117883177595 0.335426697958 0)
(0.12531510267 0.334978156982 0)
(0.132656530023 0.334314655991 0)
(0.139912661331 0.333440839911 0)
(0.147079296457 0.332349037927 0)
(0.154145416054 0.331023874511 0)
(0.161093107092 0.329442423496 0)
(0.167897301807 0.327573006292 0)
(0.174522938079 0.325370232777 0)
(0.180921922377 0.322765337169 0)
(0.187022444236 0.319626949369 0)
(0.192697934428 0.315711727991 0)
(0.197732596474 0.310658024908 0)
(0.201813314784 0.304049979723 0)
(0.204560271207 0.295523385703 0)
(0.205581939878 0.284859626823 0)
(0.204529684817 0.272031487199 0)
(0.20113497442 0.257197426302 0)
(0.195225323548 0.240660654323 0)
(0.186719165278 0.222814857555 0)
(0.17562422294 0.204092485706 0)
(0.161993536017 0.184911905346 0)
(0.146012081347 0.165652390685 0)
(0.127552845751 0.146415515951 0)
(0.107191761512 0.12715359728 0)
(0.0838430055502 0.101061843571 0)
(0.0365395509637 0.0601074891375 0)
(0.000649151391718 0.00290814259287 0)
(0.00187804977654 0.00107350382885 0)
(0.000284329860722 0.000509241168011 0)
(1.01245843107e-05 -0.00186475858324 0)
(2.27085306317e-05 -0.00189040392947 0)
(2.58933570448e-05 -0.00186935572277 0)
(1.60200840799e-05 -0.00186998271765 0)
(-1.29011245946e-05 -0.00182151974885 0)
(-2.63460156223e-05 -0.00177333853705 0)
(-3.61295113446e-06 -0.0017561633794 0)
(3.00297372498e-05 -0.00181200222017 0)
(5.33057049908e-05 -0.00185362630192 0)
(6.80794367791e-05 -0.00187707113914 0)
(8.84593988426e-05 -0.00190457329878 0)
(0.00010937275253 -0.00195081020554 0)
(0.000121230116111 -0.00194485737541 0)
(0.000125047806388 -0.00197459398134 0)
(0.000100675935687 -0.0019387353453 0)
(6.70429368292e-05 -0.00188051149262 0)
(5.94748277854e-05 -0.00186691199723 0)
(6.83319684672e-05 -0.00190489141143 0)
(6.0868053006e-05 -0.00187957950039 0)
(6.23473012133e-05 -0.00189469803423 0)
(8.42503251863e-05 -0.00193617146838 0)
(9.93474885958e-05 -0.00199693746814 0)
(9.06862604806e-05 -0.00196925824253 0)
(8.86764592822e-05 -0.00200186655139 0)
(9.58813425493e-05 -0.00203787717916 0)
(0.000101049144391 -0.00205602940415 0)
(0.000107262061253 -0.00208029887212 0)
(0.000111399236988 -0.00212085344064 0)
(0.000114678988202 -0.00215241490833 0)
(0.000114106449414 -0.00221500411728 0)
(0.000114424528534 -0.00229648732746 0)
(0.000121003254946 -0.00235086543624 0)
(0.000126240376241 -0.00239349525463 0)
(0.000132618433609 -0.00249046175361 0)
(0.000158278685129 -0.0026349154887 0)
(0.000227637409256 -0.0026715469078 0)
(0.000352542082595 -0.00279036726185 0)
(0.000641320863417 -0.00285646874695 0)
(0.000513770405701 -0.0028210138156 0)
(-0.0114885541102 -0.00974721802844 0)
(0.00597442830933 0.17260372398 0)
(0.0251571750951 0.259360004761 0)
(0.040664800222 0.30236370465 0)
(0.0544467579649 0.323832339596 0)
(0.0653612786718 0.334464508131 0)
(0.0749966938269 0.339565765555 0)
(0.0836656933206 0.341933316179 0)
(0.0917898545108 0.342947229155 0)
(0.0995845870596 0.343269963371 6.29183565644e-29)
(0.107173912998 0.343201409629 1.23388942479e-28)
(0.114622991805 0.342868741636 -6.02011029723e-29)
(0.121963371177 0.342319282198 0)
(0.12920737212 0.341563991942 0)
(0.13635613732 0.340597032804 0)
(0.143402708801 0.339403151879 0)
(0.1503340485 0.337960410176 0)
(0.157130042301 0.33623867911 0)
(0.163763211713 0.334197544013 0)
(0.170194792676 0.331779280665 0)
(0.176371517966 0.328895789315 0)
(0.182211246926 0.325371829342 0)
(0.187561005105 0.320883213601 0)
(0.19215755593 0.314966361696 0)
(0.195629253771 0.307121165926 0)
(0.197545898375 0.296950628495 0)
(0.197489795803 0.284264210546 0)
(0.195116165113 0.269110146628 0)
(0.190187285792 0.251746459009 0)
(0.182580060618 0.232578055175 0)
(0.17227116092 0.212088384849 0)
(0.159333255443 0.190777913575 0)
(0.143862902916 0.169113721965 0)
(0.126105551917 0.14756173693 0)
(0.105993115064 0.126217791444 0)
(0.0855135154257 0.104931449793 0)
(0.0580677249503 0.0702778602433 0)
(0.00169470086369 0.00278033564792 0)
(0.000164169284961 -0.00180044237751 0)
(0.000726358880187 -0.000305141924619 0)
(0.00020485338514 -0.000122956037479 0)
(1.55533224057e-05 -0.00184474777376 0)
(3.57030448688e-05 -0.00188727433529 0)
(3.73036493147e-05 -0.00188836722692 0)
(3.32924154949e-05 -0.00188267856967 0)
(2.02662641239e-05 -0.00186600883576 8.2949032358e-29)
(-9.48451236442e-07 -0.0017923524771 0)
(-7.65264352321e-06 -0.00172637386107 0)
(1.39670146618e-05 -0.00178047142528 0)
(4.86497192286e-05 -0.00182732371254 0)
(7.4463414447e-05 -0.00185975880092 0)
(9.55202219123e-05 -0.00188069499505 0)
(0.00012490186943 -0.00192590521084 0)
(0.000143157978319 -0.00192781110884 0)
(0.000155921123275 -0.00194609324428 0)
(0.00016004247238 -0.00194958125564 0)
(0.000144207748296 -0.0019457134423 0)
(0.000120103230499 -0.00187052031064 0)
(0.000117810092942 -0.00186570825326 0)
(0.000129182226374 -0.00190878285316 0)
(0.000128288095691 -0.00189553817956 0)
(0.000135453325444 -0.00191335649887 0)
(0.000157329588697 -0.00195194349872 0)
(0.000175599938205 -0.00200990201258 0)
(0.000175447569198 -0.00199863995999 0)
(0.000184504655576 -0.002017105251 0)
(0.000202283509094 -0.00205214085204 0)
(0.000211628623925 -0.00208921840418 0)
(0.000220367012685 -0.00213170428777 0)
(0.000227306200328 -0.00216639909655 0)
(0.00024091472591 -0.00223716086338 0)
(0.000253743990154 -0.00224547507575 0)
(0.000268154841464 -0.00230230979317 0)
(0.000274984235319 -0.00238327532231 0)
(0.000283265826325 -0.00249329420435 0)
(0.000313339272361 -0.00256682389697 0)
(0.000362626262696 -0.00265671787984 0)
(0.000423011441591 -0.00273988300579 0)
(0.000465507770624 -0.00272110735841 0)
(0.000494665743381 -0.00275899299888 0)
(-0.00417650606374 -0.0430194911531 0)
(0.0101866623146 0.191851019524 0)
(0.0270105351433 0.275839940807 0)
(0.0404932111728 0.316306628047 0)
(0.0532814719643 0.335492754246 0)
(0.063448687184 0.344454716458 0)
(0.0726097672415 0.348476499852 0)
(0.0809667519427 0.35018964509 0)
(0.0888880742167 0.350812913843 0)
(0.0965398738001 0.350895561068 -6.22774742494e-29)
(0.104016562815 0.350667116579 0)
(0.111364747361 0.350214307718 0)
(0.11860521056 0.34956173033 0)
(0.12574399868 0.34870716302 0)
(0.132778635073 0.347636324536 0)
(0.139699612395 0.346327312748 0)
(0.146492062472 0.344751913536 0)
(0.153133658507 0.342872502679 0)
(0.159594589599 0.340639233151 0)
(0.165832143674 0.337980465741 0)
(0.171787645205 0.334785440691 0)
(0.177366979981 0.330822909934 0)
(0.182384392177 0.325667223178 0)
(0.186519988702 0.318736479333 0)
(0.189337794681 0.309447357144 0)
(0.190359432275 0.297390121375 0)
(0.18915082136 0.282432629967 0)
(0.185384720413 0.264728520916 0)
(0.178868198234 0.244658506542 0)
(0.169539393939 0.222743919922 0)
(0.157445328971 0.199564497551 0)
(0.142734190559 0.175678877044 0)
(0.125504660352 0.151572404088 0)
(0.105961391817 0.127668658753 0)
(0.0838638358601 0.10314368527 0)
(0.0610511022933 0.0772380688046 0)
(0.00450110907735 0.00672880733158 0)
(0.000149956748215 0.000203596414509 0)
(0.000532625067493 -0.000822594189557 0)
(0.000534133373385 -0.000578434502617 0)
(0.000180041205295 -0.00049564106504 0)
(1.68857380887e-05 -0.00181291541071 0)
(3.96618385845e-05 -0.00187994533886 0)
(4.64560609941e-05 -0.00188773449392 8.63900701729e-29)
(4.93898229315e-05 -0.00188417310746 0)
(4.90340433304e-05 -0.00187257599859 -8.48786261455e-29)
(3.47591667199e-05 -0.00182678497264 0)
(7.47519611815e-06 -0.00175861786367 0)
(9.63539712857e-06 -0.00174815034189 0)
(4.50751502433e-05 -0.00179694187555 0)
(7.93484790426e-05 -0.00183338708731 0)
(0.00010678474207 -0.00186099337461 0)
(0.000135799756898 -0.00188144229035 0)
(0.000168481930315 -0.00193473983386 0)
(0.000183529587484 -0.00192506943074 0)
(0.000203239853055 -0.00195410670709 0)
(0.000208698722837 -0.00191614267963 0)
(0.000198785544478 -0.00191156929525 0)
(0.000179453390885 -0.00186371836395 0)
(0.000181114580675 -0.00186414052634 0)
(0.000195496691994 -0.00190629644487 0)
(0.000206824585629 -0.00191171407542 0)
(0.000218547442357 -0.00192677911816 0)
(0.000239558374446 -0.00195642023544 0)
(0.00026700909741 -0.00200647421351 0)
(0.000278193229084 -0.00200699852662 0)
(0.000292393210866 -0.00202618769362 0)
(0.000314504578512 -0.0020906344035 0)
(0.000328401672005 -0.00210424394872 0)
(0.000353899331097 -0.00216171083004 0)
(0.000372412977926 -0.00216548895223 0)
(0.00038791365151 -0.00224176906187 0)
(0.000395146426865 -0.00232179800888 0)
(0.000409127140184 -0.00240783775744 0)
(0.00042733662168 -0.00248987794469 0)
(0.000450577269731 -0.00255671850703 0)
(0.000464010676907 -0.00259651064424 0)
(0.000451300741911 -0.00262126131348 0)
(0.000384368685325 -0.00264054277473 0)
(0.000127556028687 -0.0028026566782 0)
(-3.1724429212e-05 -0.00626394953216 0)
(0.0115944699354 0.205411877798 0)
(0.0284346590706 0.290595379803 0)
(0.040243592054 0.329007999837 0)
(0.0520650621084 0.346257584468 0)
(0.0615154333938 0.353840790804 6.75647200786e-29)
(0.070227866602 0.356995232232 0)
(0.0782879832543 0.358191367668 0)
(0.0860126086049 0.358505165808 0)
(0.0935204715906 0.358391040465 0)
(0.10087922929 0.358022453325 0)
(0.108119131781 0.357455366602 0)
(0.115251799242 0.356697570568 0)
(0.122277957893 0.355737012478 0)
(0.129192087317 0.354552716212 0)
(0.135982348191 0.353116873623 0)
(0.1426322443 0.351395181019 0)
(0.149117154867 0.349342125634 0)
(0.155405023897 0.346897658716 0)
(0.161448809575 0.343974404122 0)
(0.167184180181 0.34043499403 0)
(0.172502915433 0.335976422974 0)
(0.177178422346 0.330046943822 0)
(0.180823935168 0.3219308778 0)
(0.182934626689 0.31096947679 0)
(0.182989035736 0.296768549601 0)
(0.180549061 0.279289943726 0)
(0.175319523327 0.258823552065 0)
(0.167164787337 0.235893790499 0)
(0.156092816841 0.211151223562 0)
(0.14223435545 0.185282391101 0)
(0.12583361846 0.15892507958 0)
(0.107058739836 0.132661387572 0)
(0.0866247968545 0.106780400723 0)
(0.0643033231899 0.0779188328472 0)
(0.0293301197803 0.0433358077278 0)
(0.000967195402756 0.000876796328981 0)
(0.00244592156525 -0.000688367912741 0)
(0.0011272689283 -0.000989208137657 0)
(0.000664516565191 -0.000958912264933 0)
(0.000201831155288 -0.000868124347522 0)
(1.14572123928e-05 -0.00177384251699 0)
(3.42100530368e-05 -0.00186425211136 0)
(5.09055874834e-05 -0.00187787381174 -8.72922200306e-29)
(6.23766632065e-05 -0.00188134574533 0)
(6.98379394929e-05 -0.00187325557637 0)
(6.68729020022e-05 -0.00184551080185 0)
(4.07533102501e-05 -0.00178132959086 0)
(2.22036972112e-05 -0.00172236430399 0)
(4.42082000545e-05 -0.00175902188308 0)
(8.39526890613e-05 -0.00180059807448 0)
(0.000119244331715 -0.00183265590117 0)
(0.000149476125659 -0.00185826961452 0)
(0.000183331915347 -0.00188161145238 0)
(0.000216844256862 -0.00193015786559 0)
(0.000239946525351 -0.00190928268005 0)
(0.000269367854934 -0.00194903779707 0)
(0.000264794911623 -0.00190179504097 0)
(0.000260271108307 -0.00190407426217 0)
(0.000252847388534 -0.00186702120869 0)
(0.000254388976706 -0.00186633367524 0)
(0.000270388639159 -0.00188404125504 0)
(0.000301742169526 -0.00194601365425 0)
(0.000316904907407 -0.00193227263905 0)
(0.000345206776772 -0.00196238817071 0)
(0.000372274981004 -0.00199249260712 0)
(0.000389641315115 -0.00201389158391 0)
(0.000414469700615 -0.00204529279845 0)
(0.000449323770961 -0.00208883507186 0)
(0.000472385366219 -0.00209267711423 0)
(0.000490935397233 -0.00216703048485 0)
(0.000508818169766 -0.00226262233458 0)
(0.000523545095216 -0.00229551336089 0)
(0.000544163544658 -0.00236164778049 0)
(0.000566803883083 -0.00243479312587 0)
(0.000585411485379 -0.00250324851949 0)
(0.000590301421154 -0.00259738650456 0)
(0.000563124581841 -0.00271453500628 0)
(0.000480069580047 -0.00279385372744 0)
(0.000296815539794 -0.00338489010677 0)
(-7.12030861605e-05 -0.02325535126 0)
(0.0109662795052 0.220780525872 0)
(0.0286425880344 0.30445270635 0)
(0.0394531288183 0.340747416705 0)
(0.0505842059509 0.356286754632 0)
(0.0594626267561 0.362715811273 -6.64678250071e-29)
(0.0678074440887 0.365174160855 0)
(0.075613278298 0.365964802539 0)
(0.0831602517663 0.366033975641 0)
(0.0905291974755 0.365756777158 0)
(0.0977677123938 0.365262789916 0)
(0.104893615132 0.364585209569 0)
(0.111911705498 0.363719734262 0)
(0.118818648319 0.362647058231 0)
(0.125606595707 0.361340798932 0)
(0.132261621985 0.359767725538 0)
(0.138765855518 0.357887494294 0)
(0.145092234548 0.355646186853 0)
(0.15120659684 0.35297269752 0)
(0.157057027666 0.349761800794 0)
(0.162573338594 0.345844830586 0)
(0.167630476046 0.340826644941 0)
(0.171950998983 0.334000615846 0)
(0.175070402114 0.324504540786 0)
(0.176412561008 0.311620836489 0)
(0.175421461199 0.295007844803 0)
(0.171669973932 0.274761063417 0)
(0.164910177048 0.251336220014 0)
(0.15507404783 0.225417029252 0)
(0.142240680713 0.197786445194 0)
(0.126612906698 0.169232742954 0)
(0.108466215259 0.140490843212 0)
(0.0880651192721 0.112380677263 0)
(0.0671541883048 0.0852118832228 0)
(0.0433790184099 0.0520848722781 0)
(0.00122696213292 0.000956650855585 0)
(0.000552939558174 -0.00275177988225 0)
(0.00134201414491 -0.00178859195406 0)
(0.00096559727373 -0.00151885982815 0)
(0.00059998798985 -0.00140595720847 0)
(0.000190538417888 -0.0013059909262 0)
(4.48901617276e-06 -0.0017624000579 0)
(2.54256441463e-05 -0.00183851638454 0)
(5.19306998526e-05 -0.00186139592481 0)
(7.07771525156e-05 -0.00186654834927 0)
(8.584158736e-05 -0.00186751032714 0)
(9.08845322371e-05 -0.00185043900026 0)
(8.24758653825e-05 -0.00183369446911 0)
(5.58106955491e-05 -0.00174070924758 0)
(5.15796516397e-05 -0.00171650157061 0)
(8.56178617142e-05 -0.00175921345343 0)
(0.000128310217234 -0.00179600038999 0)
(0.000167252668368 -0.00182636475866 0)
(0.000202205327281 -0.00185045107227 0)
(0.000244242779285 -0.00188081191769 0)
(0.000273857509469 -0.00188136695524 0)
(0.000301715027195 -0.00189864911015 0)
(0.000329445983806 -0.00193684733007 0)
(0.000330229344537 -0.00188292560796 0)
(0.000336688055153 -0.00188653231043 0)
(0.000340788994891 -0.00190061111128 0)
(0.000340273563811 -0.00185252182628 0)
(0.000372372212246 -0.00188370259455 0)
(0.000410352495311 -0.00192590623627 0)
(0.000434738321198 -0.00193903025653 0)
(0.000462004299699 -0.00196098767378 0)
(0.000493354400673 -0.00199405630966 0)
(0.000527641619566 -0.0020166248203 0)
(0.000560929222498 -0.00203402749165 0)
(0.000586923598192 -0.00209588598373 0)
(0.000615282795557 -0.00219033778927 0)
(0.000634634496922 -0.00220326365902 0)
(0.000667528435878 -0.00227518556703 0)
(0.000691327111163 -0.00235297011198 0)
(0.000711291946353 -0.00243429393389 0)
(0.000720878590858 -0.00253032420909 0)
(0.000686707702691 -0.00263865662194 0)
(0.000614038707123 -0.0028436170595 0)
(0.000410454112617 -0.00307680203331 0)
(-0.000124744934939 -0.00412260095985 0)
(0.000194226224983 -0.00615785135358 0)
(0.0102028097531 0.235334173587 0)
(0.0280328104343 0.317793607109 -7.98748131739e-29)
(0.0381009891169 0.351877805 0)
(0.0487919816455 0.365802392168 0)
(0.0572681144411 0.371212120819 0)
(0.0653400809651 0.373086827947 0)
(0.0729410805255 0.37354677756 0)
(0.0803328818044 0.373414487082 0)
(0.0875698616371 0.372995888968 0)
(0.0946871303433 0.372385178545 0)
(0.10169437323 0.371598325603 0)
(0.108592034407 0.370622104935 0)
(0.11537400402 0.36943162456 0)
(0.122030845969 0.367995864913 0)
(0.128546769767 0.366276370593 0)
(0.13490282692 0.364226654104 0)
(0.141069275596 0.361783730921 0)
(0.147010073407 0.358864487358 0)
(0.152667678643 0.355343391651 0)
(0.157965969452 0.351014917908 0)
(0.162759591042 0.345365530892 0)
(0.166707985932 0.337500975134 0)
(0.169257899929 0.326404838101 0)
(0.169762378103 0.311328181226 0)
(0.167643202872 0.292027637868 0)
(0.162501822979 0.268774744335 0)
(0.154154003642 0.242218022314 0)
(0.142611272663 0.213210345789 0)
(0.128029962808 0.182660920778 0)
(0.110670655749 0.151433176203 0)
(0.0907322278619 0.120290345716 0)
(0.0685153799238 0.090003793459 0)
(0.0461451102096 0.0602669558956 0)
(0.00536375023696 0.00749613277087 0)
(0.000215203634307 -0.000889938073624 0)
(0.000894532431432 -0.00173874016429 0)
(0.00104386487872 -0.0017942251355 0)
(0.000903310576154 -0.00188106357809 0)
(0.000550631252505 -0.00180727903986 0)
(0.000164599340202 -0.00164176629561 0)
(5.07341151598e-06 -0.00176007753621 0)
(2.53940281094e-05 -0.00180552033522 0)
(5.43019480502e-05 -0.00183682508224 0)
(7.77866924281e-05 -0.0018451339813 0)
(9.69485184576e-05 -0.0018498428079 0)
(0.000109076236756 -0.00184847013335 0)
(0.000111034450298 -0.00181577774128 0)
(0.000100847868761 -0.00178927391594 0)
(7.94041186623e-05 -0.00171155426735 0)
(8.90721782133e-05 -0.00171489352037 0)
(0.000133018644024 -0.0017521555071 0)
(0.000181849449291 -0.00178601572789 0)
(0.000226201708772 -0.00181484435818 0)
(0.000269614725844 -0.00183601857327 0)
(0.000313101663217 -0.00187475179494 0)
(0.000336294759534 -0.001865412859 0)
(0.000373673137167 -0.00188968881067 0)
(0.000396705573792 -0.00187621125049 0)
(0.000407443659855 -0.00186998326762 0)
(0.000420043432302 -0.00186297160837 0)
(0.000434363829538 -0.00186608592632 0)
(0.000453550824005 -0.0018501563741 0)
(0.000495044935215 -0.00188143566024 0)
(0.000528519387985 -0.00190746476893 0)
(0.0005620667226 -0.00194123621549 0)
(0.000590604976868 -0.00194162149636 0)
(0.000637320569088 -0.00198115829916 0)
(0.00067027487567 -0.00201849346957 0)
(0.000709876968845 -0.00209955965255 0)
(0.000736043950633 -0.00211619840575 0)
(0.000779881606051 -0.00218766095217 0)
(0.000808013237931 -0.00224462286138 0)
(0.000833310925733 -0.00231659811996 0)
(0.000852210996226 -0.00240054293958 0)
(0.000848871134124 -0.00250088910491 0)
(0.000829410576658 -0.00270265764634 0)
(0.000753745929792 -0.0028873448535 0)
(0.000669423811403 -0.00325105167655 0)
(0.000750537932993 -0.00397729259128 0)
(0.0002214000625 -0.00419296986348 0)
(0.00749011570695 0.25100288939 0)
(0.0265608206959 0.331050879824 7.73055287164e-29)
(0.0363479731793 0.362689516253 0)
(0.0467827310617 0.37498904826 0)
(0.0549831752116 0.37944145455 0)
(0.0628535683107 0.3807961713 0)
(0.0702869251127 0.38096881902 5.70549803174e-29)
(0.0775398658608 0.380659419198 -5.61941651311e-29)
(0.084649142558 0.380110685899 0)
(0.0916432780199 0.379386732389 0)
(0.0985272247838 0.37848968555 0)
(0.105299050562 0.377399217061 0)
(0.111950901484 0.376085727053 0)
(0.118472378201 0.374513871747 0)
(0.124845951429 0.372639918463 0)
(0.131051922185 0.37041098556 0)
(0.137057493382 0.367754213612 0)
(0.142825096263 0.364573428865 0)
(0.148290520993 0.360719937737 0)
(0.153371862003 0.355944779887 0)
(0.157899049717 0.349582364659 0)
(0.161453554823 0.34051473197 0)
(0.16338288149 0.327571544256 0)
(0.162973390898 0.310012792112 0)
(0.159640896906 0.287747470029 0)
(0.153035016682 0.261266723358 0)
(0.143051865102 0.231435024197 0)
(0.129794448647 0.199279280926 0)
(0.113507117329 0.165828061153 0)
(0.0945377301564 0.13200824833 0)
(0.0732088846194 0.0985702159324 0)
(0.0503399823452 0.0659970906051 0)
(0.0215236759318 0.0325870451358 0)
(0.000375090500276 -0.000380117163528 0)
(0.00137419233795 -0.00145217324313 0)
(0.0009518020679 -0.00170377017998 0)
(0.000840503039533 -0.00186370624913 0)
(0.000710806433706 -0.00207838596973 0)
(0.000470564751975 -0.00222746835444 0)
(0.000138533985064 -0.00205824439656 0)
(1.21405398427e-05 -0.0017439410917 0)
(3.46377538462e-05 -0.00178150712827 0)
(5.95717877991e-05 -0.00180724306167 0)
(8.52320695567e-05 -0.00182289562641 0)
(0.000106003796852 -0.00182881895038 0)
(0.000124684376235 -0.00183338975562 0)
(0.000133943336198 -0.00182571050079 0)
(0.000130322068676 -0.00177549663999 0)
(0.000121272685565 -0.00175337103057 0)
(0.000110402224731 -0.00168601255193 0)
(0.000135732838929 -0.00169767530878 0)
(0.000189927541919 -0.00173634359818 0)
(0.000244129854105 -0.00176915009772 0)
(0.000293483710649 -0.00179637273647 0)
(0.000341965568854 -0.00182046548482 0)
(0.000389991799602 -0.0018594035036 0)
(0.000418848552956 -0.00183993553334 0)
(0.000458122917936 -0.00186685482008 0)
(0.000476810803676 -0.0018505072675 0)
(0.000505369451956 -0.00187405264023 0)
(0.000521448127219 -0.00183019039629 0)
(0.000546305239268 -0.00182031069811 0)
(0.000583379870611 -0.0018433066378 0)
(0.000623736422215 -0.00187801389099 0)
(0.000661729483991 -0.00190361738493 0)
(0.00070215968565 -0.00192261620914 0)
(0.000732628815228 -0.00192537143516 0)
(0.000785898959949 -0.00199772298819 0)
(0.000820659768716 -0.00202175636743 0)
(0.000873045826962 -0.00209117674893 0)
(0.000907853590515 -0.00213310712027 0)
(0.000951599041566 -0.00221567259545 0)
(0.000986352919523 -0.00230244104098 0)
(0.00101287732552 -0.00240256757218 0)
(0.00102391818152 -0.00254414741762 3.50944261734e-29)
(0.00103199513143 -0.00274866981815 -3.50838096386e-29)
(0.00103454381129 -0.00296316266927 0)
(0.0010144049762 -0.0031382694738 3.1288372918e-29)
(0.00130896539878 -0.00393798488696 0)
(0.000256607222818 -0.00328102230392 0)
(0.0061439308259 0.26585625239 0)
(0.025070575608 0.344078081198 0)
(0.0345510602452 0.373235339157 0)
(0.0447326210302 0.383918390246 0)
(0.0526970517029 0.387458689296 0)
(0.0603936451354 0.388335872246 0)
(0.0676751074448 0.388247613431 0)
(0.0747947201997 0.387774225307 0)
(0.0817754360999 0.387100189414 0)
(0.0886423522489 0.386263338656 0)
(0.095397669164 0.385254069624 0)
(0.102038300581 0.38404590771 0)
(0.108555288231 0.382604898717 0)
(0.114937702741 0.38089136476 0)
(0.121166260953 0.378856064421 0)
(0.127220857417 0.376439347887 0)
(0.133065082077 0.373557533196 0)
(0.138660374507 0.370100231852 0)
(0.143934428865 0.365892281146 0)
(0.148800071496 0.360633540916 0)
(0.153056888396 0.353463431427 0)
(0.156190581748 0.3430020899 0)
(0.157440244497 0.327936882513 0)
(0.15603397667 0.307591264466 0)
(0.151401496333 0.282087851448 0)
(0.143261525101 0.252180600407 0)
(0.131606787184 0.218968743634 0)
(0.116640034728 0.183653086352 0)
(0.0986882842194 0.14736762666 0)
(0.0781681114492 0.111068134032 0)
(0.0554968125164 0.0754179000125 0)
(0.0316897770457 0.0410579394582 0)
(0.000847437841439 0.000415536040827 0)
(0.000294690635006 -0.00210704337597 0)
(0.000763138563075 -0.00179615322037 0)
(0.000649599921316 -0.00185240076761 0)
(0.000553272445299 -0.00198576441156 0)
(0.000447456516788 -0.00221463021971 0)
(0.000336140110485 -0.00240812223843 0)
(0.000119891239468 -0.00213925215765 0)
(1.77727794601e-05 -0.00171030026965 0)
(4.49018079668e-05 -0.00176364716453 0)
(6.55094270501e-05 -0.00177850984169 0)
(8.98855862997e-05 -0.00179837805256 0)
(0.000112080174193 -0.00180703782382 0)
(0.000133110482909 -0.00181330912388 0)
(0.00015265801642 -0.00181630752317 0)
(0.000157543849942 -0.00179204221687 0)
(0.000157200231397 -0.00174159624602 0)
(0.0001566051645 -0.0017139221945 0)
(0.000155189943465 -0.00164612502274 0)
(0.000193030074928 -0.00167131387691 0)
(0.000252605091251 -0.00171288325187 0)
(0.000312345688513 -0.00174422675358 0)
(0.000368395972306 -0.00177212643241 0)
(0.000423493817196 -0.00179462801028 0)
(0.000477745976372 -0.00183232830784 0)
(0.00050871821766 -0.00181447761393 0)
(0.000550313597338 -0.00184234190758 0)
(0.000577573864535 -0.00181705755496 0)
(0.000615692696141 -0.00182003748477 0)
(0.000638182315943 -0.00179018902424 0)
(0.000673750182947 -0.0018048073902 0)
(0.000719639224737 -0.0018399434838 0)
(0.000764886721551 -0.00186404547354 0)
(0.000802465249575 -0.00186780197088 0)
(0.000849973831786 -0.00190524282316 0)
(0.000888900416618 -0.00192400534862 0)
(0.000947034494696 -0.00198926488253 0)
(0.000991537711906 -0.00203303642662 0)
(0.0010461056943 -0.00210745785935 0)
(0.00108736599111 -0.00217123489723 0)
(0.00112726086509 -0.00225656278615 0)
(0.0011597607516 -0.00236043055884 0)
(0.00119871272712 -0.00251731398382 0)
(0.00123837794307 -0.00269872117934 3.23397558587e-29)
(0.00131030623842 -0.00289299577128 0)
(0.00126212925536 -0.00304232415568 -2.9812618585e-29)
(0.00177284081813 -0.00415191526634 0)
(0.000345537064103 -0.00275905244242 0)
(0.00572622481222 0.280020030676 0)
(0.0238668483681 0.356662436627 0)
(0.0329015769881 0.383433022589 0)
(0.0427565005719 0.392577188969 0)
(0.0504775743438 0.395271047821 0)
(0.0579990549779 0.395713013578 -5.47528322054e-29)
(0.065127685014 0.395385271688 5.39432985006e-29)
(0.0721101692549 0.394756678255 0)
(0.0789566299633 0.393959634906 0)
(0.0856899530573 0.393009246312 0)
(0.0923104464531 0.391885772399 0)
(0.0988144284445 0.390557127141 0)
(0.105192118789 0.388985084878 0)
(0.111432296645 0.387125434924 0)
(0.117513763407 0.38492309617 0)
(0.123416375006 0.382311176737 0)
(0.129099326514 0.379194105233 0)
(0.134523854648 0.375446018383 0)
(0.139607618673 0.370861477153 0)
(0.144259255669 0.365080074077 0)
(0.148240826287 0.356991776557 0)
(0.150921193108 0.344916473149 0)
(0.151424192366 0.327425894864 0)
(0.14893271146 0.303976318981 0)
(0.142913024195 0.274970059414 0)
(0.133173597992 0.241464369165 0)
(0.119818944594 0.204808294028 0)
(0.103162373549 0.166379183561 0)
(0.0836304944658 0.127409282342 0)
(0.0617615121276 0.0888174169372 0)
(0.0378722556095 0.050927501268 0)
(0.00934553866899 0.0142395829693 0)
(-3.77512401382e-05 -0.00154062761483 0)
(0.000800000036877 -0.00184161526332 0)
(0.000588289713181 -0.00188370014018 0)
(0.000428893288265 -0.00196963430897 0)
(0.000301651877542 -0.00210239946314 0)
(0.000211281648833 -0.00229402636168 0)
(0.000165583242526 -0.00247551174965 0)
(7.91243015672e-05 -0.0025881128222 0)
(1.79043301169e-05 -0.00166021927472 0)
(4.69650811289e-05 -0.00173382806623 0)
(6.55586125912e-05 -0.00175027382627 0)
(8.73734473472e-05 -0.00176906326831 0)
(0.000112872404046 -0.00178293623491 0)
(0.000138090080607 -0.00178967744719 0)
(0.000164309023125 -0.00179313393004 0)
(0.000186123803172 -0.0017890377809 0)
(0.000191326173631 -0.00173429505167 0)
(0.000203658779672 -0.00171113064228 0)
(0.000208445082082 -0.00166444151225 0)
(0.000217714092843 -0.00161841259236 0)
(0.000260079164864 -0.00164181992268 0)
(0.000321649975966 -0.00167641430401 0)
(0.000389217059259 -0.00171313205041 0)
(0.000452494579001 -0.0017406468668 0)
(0.000513502969415 -0.00176129395174 0)
(0.00057340345524 -0.00179761890504 0)
(0.000609975696769 -0.0017806305661 0)
(0.000659298500233 -0.00180049380931 0)
(0.000692467628081 -0.00177240397663 0)
(0.000729888150672 -0.0017658687539 0)
(0.000768841054225 -0.00177117647384 0)
(0.000813055438663 -0.00178597599783 0)
(0.000865657519877 -0.0018171868477 0)
(0.000914221237871 -0.00183644974032 0)
(0.000952955160696 -0.00183958908382 0)
(0.00100936110455 -0.00188754804938 0)
(0.00105826299598 -0.00192623326591 0)
(0.00111961808647 -0.0019920624488 0)
(0.00116471771832 -0.00203528113678 0)
(0.00122545168482 -0.00212538891699 0)
(0.00127890002572 -0.0022252365822 0)
(0.00132830107963 -0.00233360904356 0)
(0.00138257114511 -0.00246857226569 0)
(0.00142546240857 -0.00261635206532 -3.06619641661e-29)
(0.00152570576407 -0.00285512753197 0)
(0.00146637324424 -0.00304885535328 0)
(0.00204403911663 -0.00404400320188 0)
(0.000440304225222 -0.00240350889873 0)
(0.0055291274565 0.293546820378 0)
(0.0228681399077 0.368682884179 0)
(0.031424269044 0.393213572768 0)
(0.0408986578815 0.400936594907 0)
(0.0483604334287 0.402866978651 0)
(0.0556937894178 0.40292021538 0)
(0.0626596288833 0.402374440679 0)
(0.06949528295 0.401598976824 0)
(0.0761984638716 0.40068129072 0)
(0.0827901605026 0.399617344533 0)
(0.089269021694 0.398378670678 0)
(0.0956308898063 0.396927942981 0)
(0.101865202788 0.395222645596 0)
(0.107960531576 0.393213743725 0)
(0.113893481012 0.390839951098 0)
(0.119644276944 0.388026572866 0)
(0.1251666805 0.38466498908 0)
(0.130422860069 0.380612485154 0)
(0.13531783883 0.375629002902 0)
(0.139757972069 0.369283253391 0)
(0.143458655517 0.360147066135 0)
(0.145647304123 0.346204588582 0)
(0.145329343468 0.325957599944 0)
(0.141660615857 0.299079080349 0)
(0.134168568297 0.266318338827 0)
(0.122768572162 0.229068783873 0)
(0.107683204171 0.188932637528 0)
(0.0893363577288 0.147459352041 0)
(0.068278876326 0.106004266537 0)
(0.0452138300168 0.0655810457965 0)
(0.0197446155053 0.026205329596 0)
(-0.000355147298422 -0.0017160683499 0)
(0.000202633152906 -0.00224521143168 0)
(0.00036904912977 -0.00200482744619 0)
(0.000290241616144 -0.00203767740328 0)
(0.00016917044834 -0.00211150473016 0)
(5.43270771072e-05 -0.00222957052346 0)
(8.53605091753e-06 -0.00237906632065 0)
(-1.99702616356e-06 -0.00253288312844 5.6207354468e-29)
(-7.96541748525e-06 -0.0025009338261 0)
(1.75045229541e-05 -0.00162648785064 0)
(4.16604734937e-05 -0.00170247509443 0)
(5.7377711795e-05 -0.00173298398874 0)
(8.18865751437e-05 -0.00174405484881 0)
(0.000112765824116 -0.00175594372227 0)
(0.000145419151248 -0.00176289960168 0)
(0.000178442868741 -0.00176498070958 0)
(0.00021227326574 -0.00176392230631 0)
(0.00023092403164 -0.00173821540038 0)
(0.000242641684439 -0.00168403781865 0)
(0.000268545330082 -0.00166677404097 0)
(0.000283408780308 -0.00161553044119 0)
(0.000294994437701 -0.00158793152789 0)
(0.000333719465327 -0.00160079604334 0)
(0.000403216998916 -0.00163736681601 0)
(0.000477349605492 -0.0016737875104 0)
(0.00054897344274 -0.00170085574242 0)
(0.000615937188828 -0.00172341344402 0)
(0.000681616992677 -0.00175419126655 0)
(0.000724660340749 -0.00173783536164 0)
(0.000775985158542 -0.00174263668694 0)
(0.000811562703217 -0.0017173749398 0)
(0.000856343187339 -0.00171635849203 0)
(0.00090864458951 -0.00173733144591 0)
(0.000962958006321 -0.00176250089163 0)
(0.0010107748828 -0.0017722304542 0)
(0.00107233878832 -0.0018088800152 0)
(0.0011154829409 -0.00182220587953 0)
(0.00118157248993 -0.00188107549913 0)
(0.00123306253669 -0.00192250098114 0)
(0.00130267478518 -0.00199850781823 0)
(0.00135600185022 -0.00206566433403 0)
(0.00142501461594 -0.00216739527032 0)
(0.00148601125483 -0.00226603245067 0)
(0.00154744282403 -0.00239731196195 0)
(0.00163346506217 -0.00261013306361 0)
(0.00170323971461 -0.00278562119493 0)
(0.00162971397778 -0.00293245550709 0)
(0.00210966868773 -0.003767673066 0)
(0.00049484199465 -0.00235669632959 0)
(0.00544263498592 0.306544612403 0)
(0.0220039618416 0.380127718529 0)
(0.0301056283696 0.402547753028 0)
(0.0391716983875 0.408975215977 0)
(0.0463600181824 0.410230776789 0)
(0.0534888873843 0.409943989013 0)
(0.0602782178353 0.409202872686 0)
(0.0669544888041 0.408290152389 0)
(0.0735036900862 0.407255677041 0)
(0.0799449278042 0.406079758536 0)
(0.0862751740164 0.404726510489 0)
(0.0924896820054 0.403153688346 0)
(0.0985770342647 0.40131445308 0)
(0.104525570108 0.399154615185 0)
(0.110309345489 0.396606327304 0)
(0.115909422308 0.393586440323 0)
(0.121272809636 0.389972067347 0)
(0.126364192172 0.385602122558 0)
(0.131072509616 0.38019703038 0)
(0.13530490419 0.37324227473 0)
(0.138718477203 0.362905439901 0)
(0.140370793476 0.346806581245 0)
(0.139151057026 0.323446427745 0)
(0.134212083185 0.292812335286 0)
(0.125169946412 0.256066788247 0)
(0.112063364621 0.21496294164 0)
(0.0952351341812 0.171334450397 0)
(0.0751859031146 0.126834684127 0)
(0.0524552979595 0.0828923907163 0)
(0.0276638834698 0.0409491760407 0)
(5.96216559042e-05 -0.000420625192658 0)
(-0.000237467242336 -0.00195308203861 0)
(8.51658136091e-05 -0.00201083088484 0)
(0.000118081342433 -0.00203019641583 0)
(6.07463072045e-05 -0.00212877473282 0)
(-3.14311336883e-05 -0.00224932511077 0)
(-0.000120930694251 -0.00228351629233 0)
(-0.000115878219929 -0.0023270381254 0)
(-7.64009321736e-05 -0.00252088843119 -4.71981391549e-29)
(-3.88125185554e-05 -0.00252958437541 0)
(1.37480602517e-05 -0.00161340614234 0)
(3.74097578535e-05 -0.00172896190574 0)
(5.83511754745e-05 -0.001728300588 0)
(8.70544832838e-05 -0.00172431272356 0)
(0.000122118950436 -0.00172736191259 0)
(0.000161465128512 -0.00173077514832 0)
(0.000201504115797 -0.00173194819155 0)
(0.000241475550294 -0.00173012366372 0)
(0.000278038094528 -0.00172442413064 0)
(0.000289449264641 -0.00165860084819 0)
(0.00030699282607 -0.00162129174626 0)
(0.000338033576215 -0.00160736290523 0)
(0.000379369979205 -0.00163868154355 0)
(0.000389602996572 -0.00154923915315 0)
(0.000434998458929 -0.00156243089545 0)
(0.000499093336629 -0.00158580327368 0)
(0.000580975040362 -0.00162532772406 0)
(0.000658749622302 -0.00165865033939 0)
(0.000731535596278 -0.00167809005903 0)
(0.000802819946879 -0.00170304298795 0)
(0.000849246992636 -0.00168533944828 0)
(0.000903321070974 -0.00168467526645 0)
(0.000948814296459 -0.00167179001762 0)
(0.00100232703162 -0.00168272222216 0)
(0.00106364442374 -0.00171389424395 0)
(0.00111866209966 -0.00172895613997 0)
(0.00116843683401 -0.00173584037527 0)
(0.00123372913282 -0.00177665477909 0)
(0.00128783650175 -0.00180992311002 0)
(0.00135939473838 -0.00187080901096 3.73031743016e-29)
(0.00141346384221 -0.00191184424119 0)
(0.00149335741061 -0.00200593408778 0)
(0.00157373501487 -0.0021035717678 0)
(0.00162229071225 -0.00217453135074 0)
(0.00171352154253 -0.0023341649181 0)
(0.00178697882787 -0.00249181471428 0)
(0.0018866951828 -0.00265991660091 0)
(0.00181032579272 -0.00285249500099 -2.39563337448e-29)
(0.00237071191125 -0.00393845443636 3.13825886517e-29)
(0.000488311213856 -0.00225749315352 0)
(0.00556397488967 0.319025064503 0)
(0.0212755548674 0.391000645819 0)
(0.0289317456026 0.411420254053 0)
(0.0375733486676 0.416677325813 0)
(0.0444769502604 0.417347002185 0)
(0.0513852822838 0.416769218068 0)
(0.0579838372058 0.415856643244 0)
(0.0644875845909 0.414818098576 0)
(0.0708718330944 0.413672756931 0)
(0.0771538010433 0.412388520869 0)
(0.083328748614 0.410923284304 0)
(0.0893911454175 0.409230187914 0)
(0.0953286417426 0.407258050817 0)
(0.101129254453 0.404947178153 0)
(0.106764128578 0.402222839212 0)
(0.112215691601 0.398992668674 0)
(0.117422597603 0.395118275891 0)
(0.122354191147 0.390418488712 0)
(0.126878820058 0.384568765495 0)
(0.130909050062 0.376957041191 0)
(0.134028878178 0.365239308744 0)
(0.135093501656 0.346656070373 0)
(0.132885018112 0.319802973983 0)
(0.126582386744 0.285091360643 0)
(0.11591934352 0.244160440745 0)
(0.101081043109 0.199142260238 0)
(0.0825674697297 0.152068536678 0)
(0.0609451550257 0.104615563539 0)
(0.0363960720844 0.0582380490325 0)
(0.00710443668253 0.0138397477603 0)
(-0.000414906053271 -0.00171639774798 0)
(0.000194744309159 -0.00196789342881 0)
(3.65638102792e-05 -0.00199853926528 0)
(-1.19077395766e-05 -0.00207760255338 0)
(-6.90896297203e-05 -0.00218831411721 0)
(-0.00011275862345 -0.00228532837411 -3.3946634185e-29)
(-0.000155786809495 -0.00229076597057 0)
(-0.00013678854257 -0.00214519321625 0)
(-7.65197859946e-05 -0.00243389037962 0)
(-1.6153855205e-05 -0.00223170533919 0)
(5.90386630071e-06 -0.00159615893913 0)
(3.17271771229e-05 -0.00169579850374 0)
(6.59305212339e-05 -0.0017011181907 0)
(9.94917740351e-05 -0.00169590891033 0)
(0.000140430451576 -0.00169130936845 0)
(0.000186155980258 -0.00169165125498 0)
(0.000232118227781 -0.00169156829521 0)
(0.000277060996762 -0.00169004080919 -1.22390840638e-29)
(0.000321979184897 -0.00168613080709 1.20054411146e-29)
(0.0003541577808 -0.00167451105466 0)
(0.00035796733474 -0.00160446136056 0)
(0.000365811821449 -0.00154508295481 0)
(0.000418444952381 -0.00155804940258 0)
(0.000476162968215 -0.00156707624445 0)
(0.000511523932079 -0.00154529588722 0)
(0.00055206175212 -0.00152198766869 0)
(0.000613932810522 -0.00153517242169 0)
(0.000698635895013 -0.00158235090557 0)
(0.000778362770707 -0.00160523702165 0)
(0.000858471518095 -0.00162786732635 0)
(0.000930315728885 -0.00164378749694 0)
(0.000981478889382 -0.00162485273306 0)
(0.00103364683971 -0.00161261178854 0)
(0.00109332330158 -0.0016267714002 0)
(0.00115536370527 -0.00164890675141 0)
(0.00121110346176 -0.00165885680051 0)
(0.0012824751247 -0.00169103457313 0)
(0.00133311574968 -0.00170249079442 0)
(0.00140867658005 -0.00175469572498 0)
(0.00147234689015 -0.00179311516392 -3.66183459422e-29)
(0.00155653410861 -0.00186351435654 0)
(0.00162828540747 -0.00193066495775 0)
(0.00169959633538 -0.0020046127318 0)
(0.00178984311185 -0.00211672183872 0)
(0.00188284102776 -0.00225122182869 0)
(0.0019599108252 -0.00238614959592 0)
(0.00212589522056 -0.002603737804 0)
(0.00198919638405 -0.00279701515358 0)
(0.00276867882993 -0.00421923025688 0)
(0.000515671684526 -0.00214420456343 0)
(0.00581540680958 0.33103854681 0)
(0.0206685043574 0.401305269296 0)
(0.0278793864825 0.419822636828 0)
(0.0360894146703 0.424032491877 0)
(0.0427018525574 0.424202971085 0)
(0.0493763145754 0.423381973806 0)
(0.055771291828 0.422322370251 0)
(0.0620903048195 0.421171090435 0)
(0.0682993626514 0.419922898936 0)
(0.0744139050799 0.418536158306 0)
(0.0804275634505 0.416963589637 0)
(0.0863338441335 0.415153992977 0)
(0.0921194688128 0.413051831321 0)
(0.0977719934439 0.410591532016 0)
(0.103259352071 0.407691199213 0)
(0.108565913368 0.404248346156 0)
(0.113620108861 0.400107873916 0)
(0.118398744734 0.395066531529 0)
(0.122743772726 0.388748856393 0)
(0.126579875419 0.380428645169 0)
(0.129399124918 0.367117188471 0)
(0.129817514791 0.345680345967 0)
(0.126527980314 0.314934942576 0)
(0.118768195451 0.275834579737 0)
(0.106415088277 0.230550634846 0)
(0.0898186905493 0.181593563239 0)
(0.069667081861 0.131133174991 0)
(0.0465147305605 0.0810027502708 0)
(0.0197213981157 0.0335327347074 0)
(-0.00056826648038 -0.00137147009708 0)
(-0.000167027783397 -0.00233746190203 0)
(-3.78435570453e-05 -0.00207265790987 0)
(-6.94022043821e-05 -0.00205082409981 0)
(-0.000101572972897 -0.00212049475315 0)
(-0.000124731641357 -0.00221051253499 -2.98702824222e-29)
(-0.000121996541594 -0.00228600095855 3.17935177538e-29)
(-0.000113091283792 -0.00233493510962 0)
(-0.000105627780497 -0.00215504847242 0)
(-4.73407128327e-05 -0.00230894812405 0)
(1.13810297507e-05 -0.00239066374278 0)
(-3.03957811991e-06 -0.00156665735483 0)
(1.70338464593e-05 -0.00163943058481 0)
(5.9942087331e-05 -0.00165870622131 0)
(0.000104633483026 -0.00165075604082 0)
(0.000157329143364 -0.00164260466841 0)
(0.000211131040735 -0.00164247810419 0)
(0.000263139282015 -0.00164419933149 0)
(0.000312585931566 -0.00164378049953 0)
(0.000360152036734 -0.00164150420974 0)
(0.000405692908243 -0.00163686252679 0)
(0.000435391609816 -0.00161841391352 0)
(0.000434904922376 -0.0015470299343 0)
(0.000440253218989 -0.00147132588727 0)
(0.000501103297791 -0.00148203186736 0)
(0.000574116114444 -0.00149785593848 0)
(0.000631619254276 -0.00149504124682 0)
(0.000678085960759 -0.00148090375525 0)
(0.000743251007 -0.00149284685108 0)
(0.000813437130262 -0.00150485125933 0)
(0.000906447632091 -0.00155178775814 0)
(0.000988813468399 -0.00156746506372 0)
(0.00106172984463 -0.00156988495305 0)
(0.0011162996596 -0.00155600529659 0)
(0.00117897590308 -0.00156429887876 0)
(0.00125098095853 -0.00159173896373 0)
(0.00131540482499 -0.00160504568129 4.5284365705e-29)
(0.00137312032605 -0.00161157643435 0)
(0.00145121925861 -0.00165168670923 0)
(0.00151368819817 -0.00167847346388 0)
(0.00160490425868 -0.0017365955204 0)
(0.00166357744593 -0.00177143111239 0)
(0.00175724207184 -0.0018524923722 0)
(0.00183074848562 -0.00192330554026 0)
(0.00192927947222 -0.00202448951715 0)
(0.00201935575229 -0.00213967798042 0)
(0.00215145381969 -0.00231006219602 0)
(0.00228450878018 -0.00246260255796 0)
(0.00211084275692 -0.00267311112692 0)
(0.00311048270142 -0.00436036972451 0)
(0.000559510743462 -0.00202354249369 0)
(0.00609427053756 0.342631997759 -6.43471713507e-29)
(0.0201424251683 0.41105208342 5.26239204973e-29)
(0.026917420179 0.427756833304 0)
(0.0346982999231 0.431037633504 0)
(0.0410191075167 0.430790693326 0)
(0.0474503546676 0.429771289184 0)
(0.0536314098983 0.428588594705 0)
(0.0597551938496 0.42733875077 0)
(0.065780116463 0.425997514395 0)
(0.0717201059322 0.424516100997 0)
(0.0775674257986 0.422842897477 0)
(0.0833145055626 0.420922574503 0)
(0.0889472753424 0.418695198078 0)
(0.0944526425874 0.416088912049 0)
(0.099795172643 0.413014407736 0)
(0.104961746357 0.409357988825 0)
(0.109868499682 0.404946737916 0)
(0.11450322934 0.39955293532 0)
(0.118674146488 0.392743839985 0)
(0.122327358321 0.383659909878 0)
(0.124839199346 0.368503501718 0)
(0.124545123589 0.343800685596 0)
(0.120077805926 0.308748748561 0)
(0.110769749361 0.264968118075 0)
(0.0966736367127 0.215206855115 0)
(0.0783258089354 0.162316338872 0)
(0.0564372877825 0.108432053501 0)
(0.0308913700983 0.0555158067702 0)
(0.00135527910058 0.00359989258142 0)
(-0.000476209169324 -0.00187670932301 0)
(-0.000157321724216 -0.00205828199076 0)
(-0.000122640212726 -0.00205472004423 0)
(-0.000135036097392 -0.00206831906227 -2.54496003122e-29)
(-0.000149792035278 -0.00213634885898 0)
(-0.000149110167621 -0.00220954328122 2.87532928606e-29)
(-0.000128895575673 -0.00227131008468 0)
(-9.54034851227e-05 -0.00231837931502 0)
(-7.78698909409e-05 -0.00221518087357 0)
(-5.42514823945e-05 -0.00228486420684 0)
(-1.20648363932e-05 -0.00239319196417 0)
(-7.55835653901e-06 -0.00157964804491 0)
(3.57509517335e-06 -0.00159365071861 0)
(4.8318136275e-05 -0.00161280516842 0)
(0.00010623312534 -0.00159059633566 0)
(0.000168779900692 -0.00158028039287 0)
(0.000228332461191 -0.0015832871233 0)
(0.000286211521147 -0.00158856670444 0)
(0.000341869412584 -0.00159216438368 0)
(0.000394703238666 -0.00159157130948 0)
(0.000446043834853 -0.00158854527158 0)
(0.000494685286609 -0.00158184454094 0)
(0.000526093084542 -0.00155737479722 0)
(0.000528738496568 -0.00148841393232 0)
(0.000530846509073 -0.00139322685589 0)
(0.000591169256851 -0.00139292966137 0)
(0.000675884131618 -0.00141986493055 0)
(0.000749147254926 -0.00143099322114 0)
(0.000816122324387 -0.00143874143943 0)
(0.000880793205005 -0.00144468978963 0)
(0.000953216368764 -0.00145536594001 0)
(0.00103121800157 -0.00146622272418 0)
(0.00112874207888 -0.00149923830508 0)
(0.00119345791015 -0.0014927621858 0)
(0.00126044396205 -0.00149810271825 0)
(0.0013350383914 -0.00151779176855 0)
(0.00140318371464 -0.00152983305351 -4.47221589834e-29)
(0.00148182669649 -0.00155743032776 0)
(0.00153827807772 -0.00156798061361 0)
(0.00163594739621 -0.00162365318594 0)
(0.00169667794491 -0.00164732164348 0)
(0.00175888850477 -0.00168095234231 0)
(0.00185612568987 -0.00175704711035 0)
(0.0019574922823 -0.00184000670666 0)
(0.00203400289789 -0.00191078220496 0)
(0.0021531254426 -0.00203656051329 0)
(0.00226403041774 -0.00217151645521 0)
(0.00240441243604 -0.00231042171961 0)
(0.00217092174455 -0.00252051353666 0)
(0.00354048022369 -0.0046456567801 0)
(0.000618084030715 -0.00192756178785 0)
(0.00634632023822 0.353820609504 0)
(0.0196536995045 0.420262869622 0)
(0.0260145213539 0.435238377121 0)
(0.0333765207987 0.43769869232 0)
(0.0394106668212 0.437107840264 0)
(0.0455934314318 0.435929881081 0)
(0.0515527424646 0.434646303938 0)
(0.05747259793 0.43331240776 0)
(0.0633058272406 0.431889300724 0)
(0.0690652509511 0.430322853009 0)
(0.0747421971577 0.42855768132 0)
(0.0803279819904 0.426534437285 0)
(0.0858080368428 0.424188684011 0)
(0.0911683632159 0.421441835181 0)
(0.096370232297 0.418196937816 0)
(0.101403510585 0.414327777617 0)
(0.106169878337 0.409642670458 0)
(0.110672386398 0.403886471629 0)
(0.114676382855 0.396562575864 0)
(0.118161932294 0.386655852205 0)
(0.120359705437 0.36935796481 0)
(0.1192783408 0.340932056981 0)
(0.113530871215 0.301150384017 0)
(0.102581118812 0.252426636555 0)
(0.0867067213408 0.198107982384 0)
(0.0667048397752 0.141341624169 0)
(0.0432529750891 0.0842659693187 0)
(0.0143416397453 0.0291849341327 0)
(-0.00074096505511 -0.00166534106445 0)
(-0.000138866658815 -0.0021447936413 0)
(-0.000184638443571 -0.00205362476015 0)
(-0.000173225055874 -0.00206777939954 0)
(-0.000174958573985 -0.00207912063891 2.51133568022e-29)
(-0.000175935509204 -0.00213507123624 2.5704564409e-29)
(-0.000163098028199 -0.00219231983417 0)
(-0.000137446350059 -0.00224056574271 0)
(-9.96954926297e-05 -0.00227551385215 0)
(-7.0972435562e-05 -0.00218327366861 0)
(-6.30135470914e-05 -0.0022505492591 0)
(-2.9437524255e-05 -0.00234982388525 0)
(2.90030701592e-06 -0.00161091795125 0)
(1.6078118805e-05 -0.00157801510727 0)
(5.74303625837e-05 -0.0015584057992 0)
(0.000117352308316 -0.00151182067195 0)
(0.000176942664544 -0.00150838631838 0)
(0.000235385789256 -0.00151457787447 0)
(0.000297499533939 -0.0015250227123 0)
(0.000360886625097 -0.00153222458246 0)
(0.000422571596778 -0.00153604546859 0)
(0.000481345107063 -0.00153437731716 0)
(0.000538669719766 -0.00152970006717 0)
(0.000593269942656 -0.00152072461517 0)
(0.000628408803888 -0.00148556703141 0)
(0.000640577663638 -0.00142121430298 0)
(0.000645993063236 -0.00133501959346 0)
(0.000711000508157 -0.00132978395532 0)
(0.000790294751839 -0.00133757558517 0)
(0.000879726200203 -0.00136677594607 0)
(0.000956257792262 -0.00137983027736 0)
(0.00103487728814 -0.00139623659403 0)
(0.00110430712381 -0.00139729665926 0)
(0.00118493954274 -0.00140825970653 0)
(0.00126868666733 -0.00142171219764 -5.23662625445e-29)
(0.00133996964538 -0.00142795963746 0)
(0.00141807255583 -0.00144518326913 0)
(0.0014959840272 -0.00146391284444 0)
(0.00155855317158 -0.00147447322406 0)
(0.00165556853016 -0.00152115982705 0)
(0.00171137049948 -0.00153005353066 0)
(0.00176791673513 -0.00154793100268 0)
(0.00187909023445 -0.00161670776184 0)
(0.0019583915574 -0.00166107081726 0)
(0.00205808153335 -0.00172868796598 0)
(0.00216896310957 -0.00182370681708 0)
(0.00228548802715 -0.00194067492572 0)
(0.00235060314278 -0.00204139396781 0)
(0.00254204429192 -0.00221706948851 0)
(0.0022098386618 -0.00238336415018 0)
(0.0037687489555 -0.00461464114286 0)
(0.000690103718082 -0.00190293676783 0)
(0.00649217764021 0.36466200301 0)
(0.0191540730677 0.428978183291 0)
(0.0251454382857 0.442299296652 0)
(0.0321051273288 0.444031023975 0)
(0.0378602503822 0.443156945157 0)
(0.0437918517768 0.441853317818 0)
(0.0495231711655 0.440488359443 0)
(0.0552315678424 0.439084751748 0)
(0.0608665826126 0.437592061385 0)
(0.0664403664776 0.435951913827 0)
(0.0719438296434 0.434105400451 0)
(0.0773671870351 0.431989146239 0)
(0.0826958116075 0.429534016928 0)
(0.0879144404685 0.426654217585 0)
(0.0929814581807 0.423244911422 0)
(0.097889956077 0.419165813527 0)
(0.102525118583 0.414205751621 0)
(0.106910160261 0.408078407126 0)
(0.110756482477 0.400216746933 0)
(0.114094529927 0.389424091737 0)
(0.115971956167 0.369634211966 0)
(0.114018256903 0.336981248201 0)
(0.106881515365 0.29204429113 0)
(0.0941999063803 0.238152535944 0)
(0.0765188724057 0.179225655471 0)
(0.0546874379128 0.118607262432 0)
(0.0288107537818 0.0585041731716 0)
(-0.000191399124035 -2.59357919754e-07 0)
(-0.000625510852596 -0.00186984137153 0)
(-0.000293700813026 -0.00194677370828 0)
(-0.000228178154797 -0.00200970561202 0)
(-0.000207874284562 -0.00204708060779 0)
(-0.000196670048914 -0.00207165399483 0)
(-0.000188367024872 -0.00211904470056 -2.48918562518e-29)
(-0.000169792291118 -0.00216549450978 0)
(-0.000142540552779 -0.00220390446376 -2.57221419402e-29)
(-0.000101600902516 -0.00222533824195 0)
(-7.27867406141e-05 -0.00216994239135 0)
(-7.12031034166e-05 -0.00223835028639 0)
(-3.47708642302e-05 -0.00226240416812 0)
(1.83339955462e-05 -0.00157576001972 0)
(4.8485774942e-05 -0.00155630589247 0)
(8.35972470781e-05 -0.00149197393765 0)
(0.000134388242063 -0.00146111952293 0)
(0.000189261746141 -0.00145943343536 0)
(0.000246150856777 -0.00145851220306 0)
(0.000306563735864 -0.00145631797923 0)
(0.000372975076669 -0.0014636080656 0)
(0.000442211930904 -0.00147053653139 0)
(0.000510667973534 -0.00147307065131 0)
(0.000576013288639 -0.00146986561927 0)
(0.000639709183037 -0.00146288034664 0)
(0.000700952451226 -0.00145028901596 0)
(0.000732116441203 -0.00139609370399 0)
(0.000763972684548 -0.00135373061139 0)
(0.000783397444259 -0.0012737579068 0)
(0.000846454798821 -0.00125844225667 0)
(0.000928588643285 -0.00127647302261 0)
(0.0010111415302 -0.00129182158718 0)
(0.00110064359805 -0.00131228935074 0)
(0.00117646818661 -0.00131894715751 0)
(0.00125771026106 -0.00133271848398 0)
(0.00133682574158 -0.00134158571224 5.19014654104e-29)
(0.00141585071648 -0.00135269515096 0)
(0.00149853043161 -0.00137092747016 0)
(0.0015633382124 -0.00138054461875 0)
(0.00165393152 -0.00141369914186 0)
(0.00171690868812 -0.0014219943856 0)
(0.00178690829296 -0.00144171314752 0)
(0.00188789121899 -0.00148633017832 0)
(0.00197426823029 -0.0015181613047 0)
(0.00208017839665 -0.00157382368032 0)
(0.00216991078454 -0.00163065340318 0)
(0.00228164373272 -0.0017219240961 0)
(0.00236560205116 -0.00182470038723 0)
(0.00245759924702 -0.00194977937064 0)
(0.00260833236722 -0.00210867250301 0)
(0.00218058683759 -0.00222882964519 0)
(0.00390828051161 -0.00468670102932 0)
(0.000765858134744 -0.00200793013308 0)
(0.00655350154403 0.375221339033 0)
(0.0186204003779 0.437259291994 0)
(0.0243020316165 0.448981906814 0)
(0.0308778057256 0.450053116516 0)
(0.0363577825508 0.448940473704 0)
(0.0420341969559 0.447536840693 0)
(0.0475308240036 0.4461077194 0)
(0.053020266841 0.444648903548 0)
(0.0584509792475 0.44310023248 0)
(0.0638346815425 0.441399542269 0)
(0.0691623041004 0.439484385841 0)
(0.0744229688562 0.437287282872 0)
(0.0796025503294 0.43473413032 0)
(0.0846840380109 0.431731452961 0)
(0.089623783382 0.428166254738 0)
(0.0944179326665 0.423882393592 0)
(0.0989335856713 0.418648772093 0)
(0.103219452378 0.412143102739 0)
(0.106919948997 0.403721746522 0)
(0.110137077523 0.391975834557 0)
(0.111689058889 0.369278820775 0)
(0.108764733299 0.331845017952 0)
(0.100117990457 0.281325886152 0)
(0.0856279447602 0.222064199477 0)
(0.0662044707701 0.158505588255 0)
(0.042469439763 0.094438910081 0)
(0.0117393395942 0.0322416523318 0)
(-0.000698895607061 -0.00133776765763 0)
(-0.000123373422422 -0.00182145726328 0)
(-0.000272773303523 -0.00191637267398 0)
(-0.000260740640489 -0.00198730832014 0)
(-0.000235068107815 -0.00202315857778 0)
(-0.000213323228199 -0.00205682566877 0)
(-0.00019644399235 -0.00209619321849 0)
(-0.00017361538137 -0.00213439231679 0)
(-0.000147467710459 -0.0021633695299 2.49285111823e-29)
(-0.000109467328065 -0.00217528764263 0)
(-7.98316401953e-05 -0.00216499013458 -2.47940618785e-29)
(-7.10575864274e-05 -0.00221847506195 0)
(-3.24676426989e-05 -0.00220201662298 0)
(2.62517132745e-05 -0.00152263229588 0)
(7.35181479033e-05 -0.00151785623506 0)
(0.000105959483827 -0.00145980397561 0)
(0.000147478026447 -0.00141204281597 0)
(0.000206094625708 -0.00140574803792 0)
(0.000265810101205 -0.0014027031379 0)
(0.000326798029615 -0.00139955486122 0)
(0.0003901984156 -0.00139569316284 0)
(0.000458882629995 -0.0013961424229 0)
(0.000533297743058 -0.00140152212539 0)
(0.000607497805756 -0.00140189964321 0)
(0.000679075961253 -0.001396493986 0)
(0.000748406181802 -0.00138546241307 0)
(0.000812743001174 -0.00136713139168 0)
(0.000841839503219 -0.00129137734241 0)
(0.000860721554434 -0.00121766799301 0)
(0.000929315889796 -0.00121284945214 0)
(0.000992330530108 -0.00119868926604 0)
(0.00106488252339 -0.00119917474216 0)
(0.00115812942701 -0.0012240976754 5.99098635451e-29)
(0.00124763967806 -0.00124633798729 0)
(0.00133039238827 -0.00125673089091 0)
(0.00140086715553 -0.00125622470045 0)
(0.00149205749677 -0.00127736633879 0)
(0.00156182123257 -0.00128862447919 0)
(0.00164377636249 -0.00130828132337 0)
(0.00172210162898 -0.00132505592272 0)
(0.00180450353396 -0.00134850212977 0)
(0.0018902844929 -0.00136871871369 0)
(0.00197692787324 -0.00138950309139 0)
(0.00209068799267 -0.00143606765759 0)
(0.0021619354435 -0.00146763082347 0)
(0.00227596244643 -0.00153653611966 0)
(0.00234613973525 -0.00160099550587 0)
(0.00245795367245 -0.00171650291718 0)
(0.0025908220906 -0.00187994811768 0)
(0.00264763911616 -0.00204367698223 0)
(0.00228106663235 -0.00227571866124 0)
(0.00331636461537 -0.00406578136627 0)
(0.000774604743138 -0.00209375290195 0)
(0.00663587714619 0.385661972067 0)
(0.0180897221424 0.445154757136 0)
(0.0235059534383 0.455305665446 0)
(0.0297049341574 0.455768007821 0)
(0.0348999856087 0.454451684788 0)
(0.0403104698593 0.452971048138 0)
(0.0455632084415 0.451495531 0)
(0.0508254265736 0.449997599018 0)
(0.056045810926 0.448408518025 0)
(0.0612354317196 0.446662567843 0)
(0.066385461811 0.444693722646 0)
(0.0714839204036 0.442430364359 0)
(0.0765178454778 0.43979311907 0)
(0.0814678795548 0.436680427404 0)
(0.0862897586157 0.432970787957 0)
(0.0909818989327 0.428490243282 0)
(0.0953926503137 0.422987674342 0)
(0.0996015471429 0.416098791263 0)
(0.103171394264 0.407098132605 0)
(0.106302753312 0.394328109633 0)
(0.10752731342 0.368233024363 0)
(0.103521723846 0.325415941158 0)
(0.0932454346124 0.268889358571 0)
(0.0768695543941 0.20403114158 0)
(0.0554372199381 0.135659248086 0)
(0.0288353913602 0.068544905953 0)
(-0.000157868824324 0.000819479775612 0)
(-0.000805775376158 -0.00219285962453 0)
(-0.000410440932074 -0.00187995641732 0)
(-0.0003592059213 -0.00192301677245 0)
(-0.000311965162423 -0.00195857036032 0)
(-0.000266795832047 -0.00198463258301 0)
(-0.000236448834595 -0.00203747321639 0)
(-0.000210508344353 -0.00207378167292 0)
(-0.000182412895519 -0.00210903419515 0)
(-0.000151879724028 -0.00213473090218 0)
(-0.000120613622352 -0.00211409820814 0)
(-9.7789184148e-05 -0.00212691670686 2.49328755415e-29)
(-7.85474016598e-05 -0.0022007500694 0)
(-3.24084030551e-05 -0.0021472424058 0)
(2.84636592815e-05 -0.00146858052996 0)
(8.32676201731e-05 -0.00147331989841 0)
(0.000121875192685 -0.00143907458078 0)
(0.00016250943631 -0.00135626373325 0)
(0.000225996848331 -0.00134578408525 0)
(0.000288930484339 -0.00134151135781 0)
(0.000352708623834 -0.00133780641307 0)
(0.000417210507184 -0.00133345503783 0)
(0.000483988184139 -0.0013278366299 0)
(0.000554429746773 -0.00132115839887 0)
(0.000633763943248 -0.0013238832985 0)
(0.000714355535024 -0.00132127989911 0)
(0.000794097732996 -0.00131244698072 0)
(0.000872520117758 -0.00129740006285 0)
(0.000941508269823 -0.0012737777486 0)
(0.000976767786898 -0.00120973564195 0)
(0.000992049687197 -0.00112988577648 0)
(0.00106056474571 -0.00112178482599 0)
(0.00115273636526 -0.00114304371198 0)
(0.00121642425557 -0.00113815566462 -5.93235132377e-29)
(0.0012927835012 -0.00114469693611 0)
(0.00138481706749 -0.00116543353373 0)
(0.0014823839901 -0.00119083573747 0)
(0.00155253521593 -0.00119836361082 0)
(0.00161984903939 -0.00120206794877 0)
(0.0017230550554 -0.00123255538557 0)
(0.00180345052039 -0.00125307571453 0)
(0.00187458623817 -0.00125783661597 0)
(0.00196244896962 -0.00127190679868 0)
(0.00208021678374 -0.00131251222761 0)
(0.00215439172863 -0.00133443595093 0)
(0.00223876650939 -0.00136742492841 0)
(0.00234674497497 -0.00142133686937 0)
(0.00244488909306 -0.00148956719352 0)
(0.00262157062496 -0.00162425016688 0)
(0.00272499950367 -0.00177305515002 0)
(0.00283910767239 -0.00199636094016 0)
(0.00253360306272 -0.00239487396214 0)
(0.00318560123005 -0.00388360718743 0)
(0.000575312024478 -0.00181216810129 0)
(0.00713655135321 0.395914078836 0)
(0.0177140022779 0.452609191556 0)
(0.0227979206051 0.461221725184 0)
(0.0285965047691 0.46114586135 0)
(0.0334801959435 0.459670065963 0)
(0.0386066255874 0.458141269942 0)
(0.0436044539557 0.456641393734 0)
(0.0486311085101 0.45512349437 0)
(0.0536355447514 0.453512043902 0)
(0.0586276155274 0.451738403774 0)
(0.0635988305306 0.449733176079 0)
(0.068536182106 0.447420728867 0)
(0.0734286516213 0.444716124109 0)
(0.0782538792218 0.441509438354 0)
(0.0829690669705 0.437670185701 0)
(0.0875732630594 0.433004571041 0)
(0.091896899659 0.427241718515 0)
(0.0960549190054 0.4199680252 0)
(0.0995131780227 0.410372855053 0)
(0.102604268171 0.396506373538 0)
(0.103502269728 0.366436159579 0)
(0.0982914927987 0.31759220996 0)
(0.0863054889794 0.254647453653 0)
(0.0681142090167 0.183988061318 0)
(0.0445121758378 0.110824852259 0)
(0.0122792773217 0.0417051043396 0)
(-0.000638039850838 -0.00112690873055 0)
(-0.00013797560151 -0.00173690040189 0)
(-0.000324748819137 -0.00181707962669 0)
(-0.000359417901418 -0.00189897105084 0)
(-0.000337267392796 -0.00191424943596 0)
(-0.000303293460321 -0.00196062902364 0)
(-0.000270282289494 -0.00201527314616 0)
(-0.000241789739314 -0.00205370759358 0)
(-0.00021164204148 -0.00209009228165 0)
(-0.000177107885339 -0.00212218318927 0)
(-0.000146561485868 -0.00214803899713 0)
(-0.00011335001827 -0.00214819645645 0)
(-7.24222897281e-05 -0.00218264599328 0)
(-2.40644963719e-05 -0.00208653043005 0)
(2.86306430219e-05 -0.00141501744897 0)
(8.67656003177e-05 -0.00142264869739 0)
(0.000136946999554 -0.00140588367273 0)
(0.000181387945702 -0.00129577080462 0)
(0.000247441478475 -0.00128150036304 0)
(0.000313214302463 -0.00127658198443 0)
(0.000379611450124 -0.00127253153913 0)
(0.000446622064776 -0.00126750716637 0)
(0.000515125448188 -0.00126066433656 0)
(0.00058613568021 -0.0012519609126 0)
(0.000661487061071 -0.00124114455892 0)
(0.000745321013652 -0.00123470589128 0)
(0.000834733359683 -0.00122887951335 0)
(0.000923833043481 -0.00121797003934 0)
(0.00100908599127 -0.00120073635266 0)
(0.00108470996214 -0.00117457541803 0)
(0.00111097545448 -0.00110845951368 0)
(0.00113977493183 -0.00105568690967 0)
(0.00121596620541 -0.00105605962485 0)
(0.00127540827844 -0.00105410621965 0)
(0.00138072616982 -0.0010879482794 0)
(0.00144873393256 -0.00109018413123 0)
(0.00151572019536 -0.00109362855961 0)
(0.00158962726775 -0.00110470704679 0)
(0.00170397743856 -0.00113491227254 0)
(0.00177244863001 -0.00114261986017 0)
(0.00184329815399 -0.00115438917118 0)
(0.00194953579861 -0.00117810493151 0)
(0.00203942698304 -0.00119129078669 0)
(0.00212094275632 -0.00120476755523 0)
(0.00220102226143 -0.0012255334299 0)
(0.00233342085633 -0.00127366671824 0)
(0.00242587008628 -0.00130722693391 0)
(0.00257780129425 -0.00137714455526 0)
(0.002712529555 -0.0014625839365 0)
(0.00287854872134 -0.00160493472872 0)
(0.00316152993702 -0.0018226615976 0)
(0.00276839587289 -0.00234029339501 0)
(0.00440757219455 -0.00433676902459 0)
(0.000365056658952 -0.000989155503064 0)
(0.00818880646429 0.40568999286 0)
(0.0176072256266 0.459447941879 0)
(0.0221695856995 0.466630894678 0)
(0.0275239174421 0.466140804467 0)
(0.0320719533878 0.46457303062 0)
(0.0368987199115 0.463034249366 0)
(0.0416333793231 0.461536662002 0)
(0.0464181941083 0.460020636642 0)
(0.0512022683822 0.458406904782 0)
(0.055994015724 0.456625142251 0)
(0.060785583703 0.454603077322 0)
(0.0655632975523 0.452261333531 0)
(0.0703190082483 0.449509116192 0)
(0.0750267568339 0.446228005358 0)
(0.0796480109303 0.442277809266 0)
(0.0841797079729 0.437442924839 0)
(0.0884372846217 0.431433200537 0)
(0.0925736724427 0.4237771082 0)
(0.0959430613625 0.413578278501 0)
(0.0990495664908 0.398543621624 0)
(0.0996217060399 0.363825422392 0)
(0.0930652670079 0.30828499675 0)
(0.079298452931 0.238535831872 0)
(0.0591431272523 0.161902198137 0)
(0.0326943992216 0.0842499193573 0)
(0.00254197906751 0.0130191084091 0)
(-0.000767857399493 -0.00228496717898 0)
(-0.00049871916058 -0.00190543797982 0)
(-0.000464255397517 -0.00186862096708 0)
(-0.000429673105901 -0.00187788048988 0)
(-0.000391352665938 -0.00189249420533 0)
(-0.000352199002964 -0.0019120649505 0)
(-0.000322306340978 -0.00198925157827 0)
(-0.000289513454079 -0.00202738641241 0)
(-0.000255576881321 -0.00205824523017 0)
(-0.000217638132348 -0.00208083626815 0)
(-0.000173979914398 -0.00209021103813 0)
(-0.000116468717888 -0.00207625828818 0)
(-5.14024367247e-05 -0.00212919808825 0)
(-7.85495838942e-06 -0.00204325807736 0)
(2.76744226581e-05 -0.00135639632773 0)
(9.10463554743e-05 -0.00136331582546 0)
(0.000155865890442 -0.00135692833992 0)
(0.000201840362662 -0.00123165766293 0)
(0.000268503771929 -0.00121389239221 0)
(0.000338163760773 -0.00120911874415 0)
(0.000406498562123 -0.00120539520997 0)
(0.000474991614348 -0.00119943645293 0)
(0.000545511609021 -0.00119042764234 0)
(0.000619618572035 -0.00117856306614 0)
(0.000697995561512 -0.00116471115487 0)
(0.0007819606257 -0.00114933094746 0)
(0.000870377665051 -0.00113279263024 0)
(0.0009669181969 -0.00112259841967 -9.29765687244e-29)
(0.00106540171847 -0.00111270121159 0)
(0.00115709306444 -0.00109952778203 0)
(0.00123501248298 -0.00108062212643 0)
(0.00126390914522 -0.00102797076027 0)
(0.00128712206167 -0.000985403100074 0)
(0.00135836654542 -0.000991270620477 0)
(0.00142867144806 -0.00100024203992 0)
(0.00149277199936 -0.00100467820356 0)
(0.00155535893959 -0.00100797150167 0)
(0.00167545904769 -0.00103766712575 0)
(0.00174301778789 -0.00103854770309 0)
(0.00181705664864 -0.00105688086351 0)
(0.0019165916676 -0.0010806827457 0)
(0.00199949163207 -0.00108218774827 0)
(0.00207649551276 -0.00108593189647 0)
(0.00219573235773 -0.00112042993929 0)
(0.00228800106838 -0.00113906202665 0)
(0.00238406894943 -0.00115625935472 0)
(0.00249322997455 -0.00118467520182 0)
(0.00262813593107 -0.00123098842772 0)
(0.00278416305685 -0.00129170785945 0)
(0.00298889557199 -0.00135991227234 0)
(0.00344934398503 -0.00143881729192 0)
(0.00255830500464 -0.00161161494071 0)
(0.00914773809068 -0.00782955668895 0)
(0.000549619652203 -0.000617415083349 0)
(0.00931574214674 0.41471122522 0)
(0.0175995696707 0.46556308041 0)
(0.0215035980898 0.471498549879 0)
(0.0264084472496 0.470742522334 0)
(0.0306290286064 0.469156986264 0)
(0.0351557364979 0.467646674757 0)
(0.039625855084 0.466177712224 0)
(0.0441658549699 0.464685547571 0)
(0.0487265252184 0.463090354673 0)
(0.0533156152922 0.461321375594 0)
(0.0579266688896 0.459303996374 0)
(0.0625461263523 0.456955377891 0)
(0.0671697582483 0.454178539575 0)
(0.0717676333209 0.450846577867 0)
(0.0763089967185 0.446808497406 0)
(0.0807846703251 0.441825101966 0)
(0.085000772049 0.435587259606 0)
(0.0891470858383 0.42755529531 0)
(0.0924533004112 0.416749121274 0)
(0.0956362912457 0.400472166557 0)
(0.095872282994 0.360315451536 0)
(0.0878161891354 0.297392659171 0)
(0.072255497266 0.22054235583 0)
(0.0499224302657 0.138067402815 0)
(0.0197107604993 0.0565677827589 0)
(-0.00062048282976 -0.000994751457356 0)
(-0.000643596934937 -0.00203273777646 0)
(-0.000519763640166 -0.00183815199595 0)
(-0.000522314071034 -0.00183753696784 0)
(-0.000487887411539 -0.00184351025837 0)
(-0.000447951864006 -0.00185037716792 0)
(-0.000416546909852 -0.00188564215507 0)
(-0.000388827696825 -0.00195651515322 0)
(-0.000346686841768 -0.00199344179592 0)
(-0.000302556684236 -0.00201980697792 0)
(-0.000254374347678 -0.00203778998685 0)
(-0.000195728283586 -0.00203319573981 0)
(-0.000129609697116 -0.00200706992313 0)
(-6.48315997606e-05 -0.00205581111778 0)
(-1.43010136383e-05 -0.00207368314734 0)
(2.67293611768e-05 -0.00129787219937 0)
(9.66608207764e-05 -0.00128505371447 0)
(0.000174972790976 -0.00129508268245 0)
(0.000225566382664 -0.00117852413818 0)
(0.000292898312458 -0.00114248491005 0)
(0.000366634073476 -0.00113926825218 0)
(0.000434029717765 -0.00113567720488 0)
(0.000501439976235 -0.0011271741095 0)
(0.000572754266617 -0.0011136115921 0)
(0.000650260506689 -0.00109638624236 0)
(0.000734468764985 -0.00107745228192 0)
(0.000824427863441 -0.00105840836832 0)
(0.000918656917182 -0.00104061563478 0)
(0.00101610194575 -0.00102423811212 9.45294116161e-29)
(0.00111399662785 -0.00100924789332 0)
(0.0012104358658 -0.00100084348581 0)
(0.00130582956404 -0.00100175928191 0)
(0.00138528366737 -0.000997948401297 0)
(0.00141877212231 -0.000964838456725 0)
(0.00144295292898 -0.000929975793696 0)
(0.00150065143343 -0.000929065408067 0)
(0.0015610181351 -0.00093259560582 0)
(0.00164782952453 -0.000943416277819 0)
(0.00173051819598 -0.000949472096164 0)
(0.00178329966187 -0.000950168214455 0)
(0.00187051999234 -0.000969536092789 0)
(0.00198148701717 -0.000995940242631 0)
(0.00206295505218 -0.00100135834814 0)
(0.00215425099559 -0.00101026182005 0)
(0.00222636505945 -0.00101043109109 0)
(0.00232304922288 -0.00102290986566 0)
(0.00244901724243 -0.00105684524287 0)
(0.00254320973679 -0.00108112793906 0)
(0.00264850960945 -0.00110235298668 0)
(0.00277742955348 -0.00112349383002 0)
(0.00292417067859 -0.00110939822999 0)
(0.00323120285642 -0.00103213569628 0)
(0.00232101536276 -0.000737514282024 0)
(0.0081040288116 -0.00578286790055 0)
(0.000810251444488 -0.001121934767 0)
(0.00916842927911 0.423767554019 0)
(0.017211110223 0.471117586901 0)
(0.0206540876055 0.475924969664 0)
(0.0251801120768 0.474997454099 0)
(0.0291123773678 0.473441321763 0)
(0.0333514667968 0.471985040257 0)
(0.0375602475584 0.470565098077 0)
(0.0418540813488 0.469116365668 0)
(0.0461885094563 0.467560040414 0)
(0.0505721330191 0.465825500911 0)
(0.0550009667564 0.46383609026 0)
(0.0594627341909 0.461505685881 0)
(0.0639581956551 0.458730763492 0)
(0.0684535122128 0.455376098961 0)
(0.0729298387367 0.451278324644 0)
(0.0773666824973 0.446173293442 0)
(0.0815702273307 0.439732506073 0)
(0.0857609407783 0.431336114686 0)
(0.0890356498015 0.419923750186 0)
(0.092359375315 0.402321241626 0)
(0.0922234755709 0.355767439879 0)
(0.0824425227056 0.284689611448 0)
(0.0649095849791 0.200462582823 0)
(0.0398613263505 0.112898440569 0)
(0.00800357658925 0.0295404561909 0)
(-0.000913622954372 -0.00164532200499 0)
(-0.000658161794986 -0.00181063219577 0)
(-0.000612063316556 -0.00179998724291 0)
(-0.000592750272443 -0.00180110804711 0)
(-0.000556288921564 -0.00179054323095 0)
(-0.000526454268395 -0.00182338631999 0)
(-0.00049566381159 -0.00186651691996 0)
(-0.000459274142115 -0.0019150609912 0)
(-0.000407045611964 -0.00194704386175 0)
(-0.000351527277724 -0.00196937847995 0)
(-0.000292358013858 -0.00198616454359 0)
(-0.00021620013467 -0.001972728747 0)
(-0.00014669703587 -0.00195725565944 0)
(-9.47065047322e-05 -0.00199667071343 0)
(-3.27394188388e-05 -0.0019890806143 0)
(2.9673696789e-05 -0.00123515124041 0)
(0.000102774933895 -0.00118986861173 0)
(0.000189007581802 -0.00122927855326 0)
(0.000256341388638 -0.00111927086927 0)
(0.000329798665957 -0.0010581797301 0)
(0.000403759865945 -0.00105631897735 0)
(0.000467916787263 -0.00105017422228 0)
(0.000534144872737 -0.0010359437305 0)
(0.000608751705284 -0.00101569841761 0)
(0.000693559620976 -0.000993029973485 0)
(0.000787146403519 -0.000971058767566 0)
(0.000886248574746 -0.000951740050653 0)
(0.000987346815036 -0.000935987454031 0)
(0.00108755195827 -0.000923754102145 0)
(0.00118378569306 -0.000914980494209 0)
(0.00127323642722 -0.000911770429492 0)
(0.00135700437675 -0.000912511343458 0)
(0.00143611121842 -0.000911710566552 0)
(0.00151536551251 -0.000911953157827 0)
(0.00158819575001 -0.000909562556224 0)
(0.0016219905628 -0.000888933380608 0)
(0.00166260236964 -0.000872247076494 0)
(0.00173179813835 -0.000870977156088 0)
(0.0017919350917 -0.000874382325686 0)
(0.00185223370302 -0.000879008855127 0)
(0.00193772583656 -0.000895477913947 0)
(0.00202347946757 -0.000909256579191 0)
(0.00209370228415 -0.000903131781506 0)
(0.00217130183763 -0.000899184731815 0)
(0.00230493648648 -0.000923360151039 0)
(0.00239791328418 -0.000939844316131 0)
(0.00246540845584 -0.000958700590423 0)
(0.00254131785849 -0.000974791810598 0)
(0.00266658785289 -0.00100137451897 0)
(0.00271957376971 -0.000996797026555 0)
(0.0028451078301 -0.000974804188788 0)
(0.00291963492563 -0.000878939647789 0)
(0.00223935861998 -0.000711949296933 0)
(0.00469978525373 -0.00297056883206 0)
(0.00105448953009 -0.00135554226525 0)
(0.00836767171342 0.432853033188 0)
(0.0164050896082 0.476324589688 0)
(0.0196257988589 0.480037021033 0)
(0.0238373736683 0.478961795478 0)
(0.0275113929446 0.477448024839 0)
(0.0314720022289 0.476056353416 0)
(0.0354204081058 0.474699085544 0)
(0.0394650268259 0.47331047067 0)
(0.043568717121 0.471812531168 0)
(0.047742315864 0.470134636327 0)
(0.0519853393871 0.468198175527 0)
(0.0562882034566 0.465913841262 0)
(0.0606576085972 0.463171288777 0)
(0.0650565798144 0.459827316278 0)
(0.0694826868455 0.455704151373 0)
(0.0738980335209 0.450512151196 0)
(0.0781229714703 0.443901863947 0)
(0.082396582962 0.43516007394 0)
(0.0856844606542 0.423151884015 0)
(0.0892297736687 0.40413820881 0)
(0.088702199763 0.350022315668 0)
(0.076921970054 0.269849274877 0)
(0.0568229149226 0.177674400966 0)
(0.027795278496 0.0852181497329 0)
(-0.000421230133904 0.000152472746452 0)
(-0.00133453081566 -0.0020732238769 0)
(-0.000803529818684 -0.00179454374968 0)
(-0.000751325192008 -0.00177899875641 0)
(-0.000687888741891 -0.00175978581924 0)
(-0.00065630679467 -0.00177894363563 0)
(-0.000612108803115 -0.00177001402204 0)
(-0.000583626180715 -0.00183147178372 0)
(-0.000527325332333 -0.00185775464711 0)
(-0.0004639606629 -0.00188313559103 0)
(-0.0003954964756 -0.00190048572125 0)
(-0.000321029855541 -0.00190280699424 0)
(-0.000234489844953 -0.00185980968791 0)
(-0.000172392513285 -0.00190023585645 0)
(-0.000121193252814 -0.0019410986752 0)
(-4.65717822083e-05 -0.00193192234112 0)
(4.35621444557e-05 -0.00117218319934 0)
(0.000115894660673 -0.00109754451328 0)
(0.000206514896159 -0.00115796798496 0)
(0.00029069204443 -0.00101223753575 0)
(0.000381494308879 -0.000975078746232 0)
(0.000459902696716 -0.000993093464351 0)
(0.000537775696546 -0.00100121054383 0)
(0.000622820174375 -0.000989233923878 0)
(0.000720912780897 -0.00096519471555 0)
(0.00082706329454 -0.000936849608466 0)
(0.000933665636368 -0.000909417527229 0)
(0.00103425254737 -0.000885892455607 0)
(0.00112553095073 -0.000867716557491 0)
(0.00120599604464 -0.000852243402864 0)
(0.00127131915129 -0.00083519799369 0)
(0.00133319540682 -0.000825347812517 0)
(0.0014132905007 -0.000830615043402 0)
(0.00149286975944 -0.000832821830558 0)
(0.00157301803687 -0.000831023697073 0)
(0.00164701393448 -0.000832551963509 0)
(0.00171939830773 -0.000838802395317 0)
(0.00178560616403 -0.000837698851702 0)
(0.00183543099761 -0.00083030734479 0)
(0.00186112953747 -0.000815297231805 0)
(0.00191173687429 -0.000808214571271 0)
(0.00196869347164 -0.000805509431289 0)
(0.00208331489522 -0.000822485211879 0)
(0.00216914612966 -0.000821934490734 0)
(0.00226439972898 -0.000821894591405 0)
(0.00233885609147 -0.000828305787203 0)
(0.00239718441161 -0.000851106313312 0)
(0.00246416149277 -0.000871027683484 0)
(0.00259266862969 -0.000895208062988 0)
(0.00264320108345 -0.000908656372426 0)
(0.00272237546951 -0.000919439438349 0)
(0.00280514934692 -0.000903439215593 0)
(0.00287801049869 -0.000871952177365 0)
(0.00232630460933 -0.000901725897986 0)
(0.00433881104333 -0.00264024993398 0)
(0.00110132171683 -0.00114987759528 0)
(0.00798076866297 0.441496357072 0)
(0.015505778401 0.481212538491 0)
(0.0185165274428 0.483871326138 0)
(0.0224149669002 0.482654591081 0)
(0.0258322621349 0.481183297834 0)
(0.0295114584983 0.479860140352 0)
(0.0331941017887 0.478575743995 0)
(0.0369825007062 0.477262300681 0)
(0.0408478340544 0.475841871889 0)
(0.0448039280177 0.474243468139 0)
(0.0488545717639 0.472386660172 0)
(0.0529943942989 0.47017911941 0)
(0.0572367619747 0.467503686027 0)
(0.0615433591346 0.464209742038 0)
(0.0659326055837 0.460102780711 0)
(0.0703428794443 0.454868403582 0)
(0.0746281297072 0.448132613912 0)
(0.0790257270623 0.439075306445 0)
(0.0823844065114 0.426496452206 0)
(0.0862515379052 0.405997016598 0)
(0.0853885332828 0.342935502452 0)
(0.0714729967183 0.252719949499 0)
(0.0483138861763 0.152420210544 0)
(0.0122016322561 0.0556573133832 0)
(-0.000785264493028 -0.00115567769742 0)
(-0.000454111665748 -0.00163968327455 0)
(-0.000706172864987 -0.00172308177501 0)
(-0.000767885680599 -0.00173455248766 0)
(-0.000768098311135 -0.00172098712476 0)
(-0.000749505717422 -0.00172874619761 0)
(-0.000717537428413 -0.00175225991714 0)
(-0.000669010840725 -0.00176815086959 0)
(-0.000599865729868 -0.00178583176064 0)
(-0.000522332940334 -0.00180471622959 0)
(-0.000438635091182 -0.00181657539455 0)
(-0.000347737130083 -0.0018117927549 0)
(-0.000264383501227 -0.00179406095851 0)
(-0.000202874976825 -0.00184184801793 0)
(-0.000140763691597 -0.00186797371848 0)
(-5.389688456e-05 -0.00180035663748 0)
(6.57231616974e-05 -0.00109074200762 0)
(0.000146116152744 -0.00104750396294 0)
(0.00023025093906 -0.00108113060157 0)
(0.000322819612905 -0.000920996039773 0)
(0.000453210716306 -0.00093947000986 0)
(0.000531429698841 -0.000940936865672 0)
(0.000618335209444 -0.000933164898694 0)
(0.000717349236817 -0.000899791238232 0)
(0.000826726698109 -0.000858725322012 0)
(0.000934283278122 -0.000823895469232 0)
(0.00103254575418 -0.000798425206354 0)
(0.0011196760647 -0.000782826816116 0)
(0.0011977344776 -0.000775483342129 0)
(0.00127059788523 -0.000771354186191 0)
(0.00134120273303 -0.000769069041135 0)
(0.00141404984386 -0.000768330135784 0)
(0.00148882138189 -0.000768368056667 0)
(0.00156165862958 -0.000768815561624 0)
(0.00162559158914 -0.000766099128863 0)
(0.00167481809961 -0.000758942338619 0)
(0.00174541856115 -0.000760680855163 0)
(0.00181596232476 -0.00076441787668 0)
(0.00188699726382 -0.000770205329019 0)
(0.00194768000877 -0.000766359823426 0)
(0.00200851950871 -0.000755747218836 0)
(0.00208797788826 -0.00074942391256 0)
(0.00217251937804 -0.000746389052203 0)
(0.00221889841351 -0.000736118367027 0)
(0.00229185938119 -0.000741273009217 0)
(0.00234058895098 -0.000753049360637 0)
(0.00240109476813 -0.000771496662564 0)
(0.00252542031994 -0.000796796105766 0)
(0.00258983819154 -0.000811695704777 0)
(0.00261621105504 -0.000827449858263 0)
(0.00273167986619 -0.000845001361375 0)
(0.00279765353826 -0.000841023183398 0)
(0.00290069423894 -0.000843161360719 0)
(0.0024538783225 -0.000885347655141 0)
(0.00429391936363 -0.00209932570822 0)
(0.00116013729634 -0.000961392390152 0)
(0.00780244407231 0.449708380336 0)
(0.0146350026202 0.485704194448 0)
(0.0173797485316 0.487399346888 0)
(0.0209357297771 0.486062596108 0)
(0.0240797195248 0.484637363987 0)
(0.0274648792688 0.483387287542 0)
(0.0308701237401 0.482185763739 0)
(0.0343908225416 0.480962303319 0)
(0.038006344003 0.479638602102 0)
(0.0417336577715 0.478143239602 0)
(0.0455813307638 0.476394426877 0)
(0.0495497465153 0.47429724644 0)
(0.0536594141886 0.471728264401 0)
(0.0578737982886 0.468530246323 0)
(0.0622358714646 0.464489695287 0)
(0.0666550689947 0.459269970488 0)
(0.0710442186914 0.452466016613 0)
(0.0756078339522 0.443138543444 0)
(0.0791062761423 0.4300333691 0)
(0.0833978794108 0.407976991482 0)
(0.0822436442713 0.334256370263 0)
(0.065734272139 0.233038193869 0)
(0.0388866991227 0.12530480652 0)
(0.00547649779268 0.0258212507403 0)
(-0.00119001614594 -0.00252875787384 0)
(-0.000936308853267 -0.00191237772872 0)
(-0.000943798490175 -0.0018045797541 0)
(-0.000925400995096 -0.0017495400733 0)
(-0.000917256926182 -0.0017321603487 0)
(-0.000871888007302 -0.00168389742788 0)
(-0.000837329589265 -0.00169947819774 0)
(-0.000768149685493 -0.00169945009558 0)
(-0.000687738616812 -0.00170441976684 0)
(-0.000595077587281 -0.00171696179284 0)
(-0.000493715788387 -0.0017285021544 0)
(-0.000387655148063 -0.00171686697049 0)
(-0.000301964026365 -0.0017288377024 0)
(-0.00022608476221 -0.00176244600131 0)
(-0.000149567864614 -0.0017992193235 0)
(-5.28265432375e-05 -0.00169718170645 0)
(7.64271416059e-05 -0.0009622980473 0)
(0.000184729738055 -0.00101723263733 0)
(0.000264088126246 -0.000999980955859 0)
(0.000319353078569 -0.000775626253934 0)
(0.000453111117386 -0.000806069772417 0)
(0.000563490312023 -0.000838995993775 0)
(0.00067029255225 -0.00082621574784 0)
(0.000786302586601 -0.000781145520268 2.33080054449e-29)
(0.000898185566471 -0.000742576914219 -2.12397044131e-29)
(0.000995946242917 -0.000721329156166 0)
(0.00108040111502 -0.000711163172916 0)
(0.0011537919726 -0.000707663716942 0)
(0.00122073839275 -0.000705268085724 0)
(0.00128467430057 -0.000698262274672 0)
(0.00134638769929 -0.000687771852041 0)
(0.00142411653523 -0.000685859873876 0)
(0.00150041366262 -0.000687435135623 0)
(0.00157304379132 -0.000691084396551 0)
(0.00164215137896 -0.000695429322075 0)
(0.00171359851084 -0.000698541526473 0)
(0.00178467436592 -0.000699129278974 0)
(0.00184981029261 -0.000697992924831 0)
(0.00191991083944 -0.000696417352462 0)
(0.00198781150368 -0.000688424239937 0)
(0.00207162307675 -0.000683303805808 0)
(0.00215613922678 -0.000680241937856 0)
(0.0022230086423 -0.000681433278043 0)
(0.00227559438188 -0.000682692400802 0)
(0.00231777797006 -0.000680390546214 0)
(0.00237247929651 -0.000685307760451 0)
(0.00244868329816 -0.000695557978315 0)
(0.00254939187195 -0.000719435848606 0)
(0.00257385511648 -0.000742562678444 0)
(0.00264865141823 -0.000765322209174 0)
(0.00273590265988 -0.000769719992549 0)
(0.00280330915914 -0.000770270193152 0)
(0.00292165411467 -0.000773185252476 0)
(0.00255730554161 -0.000774541807477 0)
(0.00429548464434 -0.00170430816276 0)
(0.00123419524146 -0.000829529669165 0)
(0.00769263300817 0.457453023957 0)
(0.0137817783695 0.489735814616 0)
(0.0162232121333 0.490584515375 0)
(0.0194053293092 0.48916106848 0)
(0.0222519994457 0.487791489968 0)
(0.0253250478678 0.486622364327 0)
(0.0284366459878 0.485515072661 0)
(0.0316741368037 0.484396824326 0)
(0.0350244017749 0.48318922739 0)
(0.0385072638237 0.481820879326 0)
(0.0421363573798 0.480209613136 0)
(0.0459192776222 0.47825885779 0)
(0.0498839929505 0.475840279806 0)
(0.0540003893275 0.472791126719 0)
(0.0583380883899 0.468877373928 0)
(0.0627754634845 0.463744550631 0)
(0.0673148100528 0.456946123378 0)
(0.0720851199071 0.447417149468 0)
(0.07581686029 0.433863277537 0)
(0.0806783662969 0.410192124083 0)
(0.0793021243916 0.323634912869 0)
(0.0592377589903 0.210176142055 0)
(0.0272308678344 0.0952128247246 0)
(-0.000508235506213 -0.000286531737782 0)
(-0.0012425883331 -0.002111632031 0)
(-0.000980894956163 -0.00189921570009 0)
(-0.0010537904341 -0.00181126978095 0)
(-0.00107097532932 -0.00173627360121 0)
(-0.00106984023522 -0.00169649414081 0)
(-0.00103834374129 -0.00166890670964 0)
(-0.000974203979071 -0.00163615923542 0)
(-0.000890965259939 -0.00162005884581 2.24567504426e-30)
(-0.000793932406586 -0.00161203942299 0)
(-0.000679359953768 -0.00160565454632 0)
(-0.000558763977704 -0.00160470339776 0)
(-0.000446315720487 -0.00160570605516 0)
(-0.000352108649467 -0.00164252082227 0)
(-0.000259357388005 -0.00168251559244 0)
(-0.000163053771748 -0.0017162591065 0)
(-5.14084240977e-05 -0.00159679889143 0)
(6.37912638439e-05 -0.000779144418502 0)
(0.000196596682388 -0.000916447440984 0)
(0.000314361061394 -0.000903865874282 2.75393768077e-29)
(0.000319329231161 -0.000637253405198 0)
(0.000402494136643 -0.000635739351771 0)
(0.000588065151414 -0.000744913262212 0)
(0.000719844143405 -0.000711070747553 0)
(0.000836597169337 -0.000672180640407 0)
(0.00092976138899 -0.000652027120443 0)
(0.00100210736593 -0.000642320810796 0)
(0.00105891253944 -0.000628652547613 0)
(0.00111810081815 -0.00061913626969 0)
(0.00120158339712 -0.000622685205174 0)
(0.00128302065205 -0.000622132105588 0)
(0.00136386902538 -0.000617939378238 0)
(0.00144221831799 -0.000614846926655 0)
(0.00151663611061 -0.0006165408156 0)
(0.0015886327495 -0.000621218416936 0)
(0.00165959086303 -0.000625434095909 0)
(0.00173177271097 -0.000627397268719 0)
(0.00180469655442 -0.000629275662632 0)
(0.00187881616082 -0.000630233405798 0)
(0.00194968283536 -0.000626998534834 0)
(0.00201890269039 -0.000617218836117 0)
(0.00208052464244 -0.00060404363185 0)
(0.00217030623313 -0.000606534750088 0)
(0.00223193649461 -0.000609807313772 0)
(0.00230201186109 -0.000616730426963 0)
(0.00237631857054 -0.000624981298581 0)
(0.00242838629465 -0.000627867400657 0)
(0.00248258379962 -0.000631294806232 0)
(0.00254432426527 -0.00064929591573 0)
(0.00257332635801 -0.000674105430553 0)
(0.00266761128819 -0.000698246827432 0)
(0.00273669540421 -0.000701279886144 0)
(0.00280111762159 -0.000698235252838 0)
(0.00290448877221 -0.000693218676049 0)
(0.00264153091797 -0.000685779194018 0)
(0.00384311389886 -0.00122039435501 0)
(0.00129956898283 -0.000650448811948 0)
(0.00759362163469 0.464756061624 0)
(0.0129220934765 0.493269822844 0)
(0.0150392090989 0.493394032912 0)
(0.0178193817263 0.491922503818 0)
(0.0203415129894 0.49062297701 0)
(0.0230818119662 0.489546205304 0)
(0.0258807595248 0.488546045438 0)
(0.0288164085495 0.487548452467 0)
(0.0318821980979 0.486475930987 0)
(0.0351001687205 0.485258140109 0)
(0.0384890893958 0.483814131348 0)
(0.04206495167 0.482047343276 0)
(0.0458635008636 0.479827058105 0)
(0.0498671564052 0.476986706061 0)
(0.054172005108 0.473272225316 0)
(0.0586293281865 0.468317348425 0)
(0.0633628455878 0.461618115628 0)
(0.0683678037384 0.451986989943 0)
(0.0724505396112 0.438103737814 0)
(0.0781001945639 0.412803015273 0)
(0.0767337655915 0.310819386101 2.99149316316e-30)
(0.0521124028364 0.184329740232 0)
(0.0129424938213 0.0630821040923 0)
(-0.000990635765887 -0.00186034226474 0)
(-0.000611612525633 -0.00208166651995 0)
(-0.000984156836078 -0.00197555244782 0)
(-0.0011681931422 -0.00188614443308 0)
(-0.0012414913135 -0.00175963929806 0)
(-0.00125195745405 -0.00166460429836 0)
(-0.00121592587182 -0.00160226311814 0)
(-0.00113624103143 -0.00155491462692 0)
(-0.00103374906606 -0.0015224612331 -2.25120731489e-30)
(-0.000914096055073 -0.00149469724826 0)
(-0.000783769816785 -0.00147485533338 0)
(-0.000667492846261 -0.0015093447116 -2.83155570596e-30)
(-0.000537856468925 -0.00152736149113 0)
(-0.000412851103054 -0.00155307396573 0)
(-0.000299306122735 -0.00158272191548 0)
(-0.000181142447582 -0.00160052034305 0)
(-5.14247716453e-05 -0.0014890848161 0)
(4.13549058875e-05 -0.000642617890072 0)
(0.00016959048447 -0.000779224355111 0)
(0.000318257894007 -0.000796166047538 -3.05150466067e-29)
(0.000393229558357 -0.000688561237562 0)
(0.000499875281096 -0.000647257815248 0)
(0.000625479001372 -0.000612573103282 0)
(0.000734415454286 -0.000589151087547 0)
(0.000813867638325 -0.00056829242219 0)
(0.000863604119032 -0.000541592946732 0)
(0.000955709009387 -0.000548746972587 0)
(0.00104590103675 -0.000554319546415 -1.42684583246e-29)
(0.00113406147399 -0.000553139711691 0)
(0.00121892168344 -0.000549321297365 0)
(0.00129942352407 -0.000545601985221 0)
(0.00137615116264 -0.000542302332375 0)
(0.00144823730455 -0.000542404742585 0)
(0.00151723558675 -0.000545759893187 0)
(0.00158601688344 -0.000550188657351 0)
(0.0016564817754 -0.000553150423844 0)
(0.00173022839234 -0.00055453072789 0)
(0.00180486423324 -0.00055561059567 0)
(0.00187784046818 -0.000554598456073 0)
(0.00194742119252 -0.000548876363899 0)
(0.002025493991 -0.00054130817574 0)
(0.00210751461672 -0.000534367544344 0)
(0.00218739822093 -0.00053454667277 0)
(0.0022587113088 -0.000539213126997 0)
(0.00232929466768 -0.000543934412882 0)
(0.00239281834449 -0.000552173900221 -3.28770382485e-30)
(0.00245126273667 -0.000561096671355 0)
(0.00253969759458 -0.000576216012222 0)
(0.00259838453149 -0.000603038548823 0)
(0.00259774678384 -0.000620466937488 0)
(0.0026849797069 -0.000638551367606 0)
(0.00273591967519 -0.00063981889641 0)
(0.00279524790459 -0.000628129168774 0)
(0.00290895208611 -0.000604572841474 0)
(0.00269330776181 -0.000577414605065 0)
(0.00406011062775 -0.000992283271634 0)
(0.00134616698358 -0.000447465776519 0)
(0.00758356418992 0.471536245225 0)
(0.0120564687946 0.496271055857 0)
(0.0138122496032 0.495798181159 0)
(0.0161654976795 0.494320621944 0)
(0.0183358292701 0.493108688938 0)
(0.0207225685684 0.4921381294 0)
(0.0231890037515 0.491258714228 0)
(0.0258022024471 0.490396471502 0)
(0.0285610104616 0.489476386574 0)
(0.0314887670738 0.488430770607 0)
(0.0346091139129 0.487182073762 0)
(0.037947036811 0.485636239592 0)
(0.0415463995669 0.483663903949 0)
(0.0454089355849 0.481097426706 0)
(0.0496545251268 0.477667272532 0)
(0.0541223031452 0.473003520657 0)
(0.0590862331538 0.46652579613 0)
(0.0643351803589 0.45694047239 0)
(0.0689056764697 0.44288359458 0)
(0.0755191793508 0.415918918378 0)
(0.0741219267095 0.295227757226 -3.15132647442e-30)
(0.0436703208269 0.1554763352 0)
(0.00662609378475 0.030543718147 0)
(-0.00121243524916 -0.00316205729374 0)
(-0.00110409279242 -0.00248924225876 0)
(-0.00130240365499 -0.0021962208616 0)
(-0.00145862155927 -0.00201117709374 0)
(-0.00151495860496 -0.00181175110059 0)
(-0.00149446362228 -0.00164040232231 0)
(-0.00142781553347 -0.00152114736078 0)
(-0.00132788929895 -0.00144477917754 0)
(-0.00120221336618 -0.00139706690916 0)
(-0.00106262074391 -0.00136828562178 0)
(-0.000916271887016 -0.00134756694865 0)
(-0.000770117113076 -0.00134622541223 2.8648546299e-30)
(-0.000619779308835 -0.0013570113634 0)
(-0.000474323011252 -0.00140762512654 0)
(-0.000346149703683 -0.00147317989261 0)
(-0.000204767901929 -0.00144360710422 0)
(-6.01458469749e-05 -0.00137508922428 0)
(2.73454801334e-05 -0.000589361262459 0)
(0.000132297956187 -0.000647643257236 0)
(0.000277788968563 -0.000678246950364 3.48888730409e-29)
(0.000376688394788 -0.000593544305124 0)
(0.00047011763488 -0.000481205877587 0)
(0.000565089264191 -0.000448787338398 0)
(0.000650153738983 -0.000444202525316 0)
(0.000767678916737 -0.000466918440446 0)
(0.000870970292396 -0.000475040410962 0)
(0.000967895849555 -0.000473407360445 0)
(0.00105851795869 -0.000471371476358 1.39959507025e-29)
(0.0011438053491 -0.000469472129458 0)
(0.00122308133509 -0.000469125923739 0)
(0.00129703206298 -0.000469646293408 0)
(0.00136552447072 -0.000471524271397 0)
(0.00142897831493 -0.000474541983758 0)
(0.0014919316005 -0.000474703331052 0)
(0.00156067815665 -0.000472735136456 0)
(0.00164435984356 -0.000474139134178 0)
(0.00172726408684 -0.000476004810123 0)
(0.00180891582384 -0.000478376033409 5.25775376301e-29)
(0.00188921578536 -0.000478806213054 -4.94521745875e-29)
(0.00196961771499 -0.000473396501536 0)
(0.00204986462724 -0.000463611348703 -5.32137513989e-30)
(0.00213022100116 -0.000457681444194 0)
(0.00220880971452 -0.000459994053099 0)
(0.00228292260789 -0.000464157490656 0)
(0.00235367861545 -0.000469675866059 0)
(0.00242296421978 -0.000480126533257 3.25086105406e-30)
(0.0025035186716 -0.000493137950792 0)
(0.00258004889249 -0.000511862714606 0)
(0.00259692314251 -0.00054487172128 0)
(0.00265192057961 -0.000582353021866 0)
(0.00270910705437 -0.0005981741769 0)
(0.00273054104674 -0.000595020261205 0)
(0.00276588527534 -0.000568353392379 0)
(0.0028535545245 -0.000507986443699 0)
(0.00269300542584 -0.000375130661267 0)
(0.00393399634182 -0.000651091691075 0)
(0.00140941344496 -0.000316092480507 0)
(0.00753860066899 0.477860601227 0)
(0.0111473402386 0.498718833837 0)
(0.0125158442329 0.49777408998 0)
(0.0144257583303 0.496332858203 0)
(0.0162200005345 0.495226940417 0)
(0.0182338572378 0.494377281162 0)
(0.020348671752 0.493631800102 0)
(0.022618087619 0.492917599501 0)
(0.0250448610962 0.492164107412 0)
(0.0276524365542 0.491308370816 0)
(0.0304685727769 0.49027896846 0)
(0.0335269632628 0.488987706422 0)
(0.0368797867825 0.487311281271 0)
(0.0405535425272 0.485084814766 0)
(0.0446861619114 0.482032521149 0)
(0.0491331117542 0.477789976686 0)
(0.0543372326976 0.471690117375 0)
(0.0598249150974 0.46238819593 0)
(0.0651187825599 0.448415715736 0)
(0.0728956505035 0.419784042118 0)
(0.071113878114 0.275872955026 0)
(0.0324472373164 0.121149819919 0)
(-0.000375113214668 -0.000362129888075 0)
(-0.00103168202549 -0.00286871632737 0)
(-0.00127892848171 -0.00273195102518 0)
(-0.00160632802003 -0.00241503884596 0)
(-0.00175772551367 -0.00207674840027 9.71922750076e-31)
(-0.00181661721248 -0.00180496903659 0)
(-0.00177375609296 -0.00158169102829 0)
(-0.00167815035932 -0.00142233471985 0)
(-0.00154938499176 -0.00131523803449 0)
(-0.00140446926991 -0.00125363339979 0)
(-0.00124300980007 -0.00122055610065 0)
(-0.00106944502935 -0.00119817845475 0)
(-0.000903260048196 -0.00120338015963 0)
(-0.000732840814104 -0.0012153237237 0)
(-0.000554831031072 -0.00123666396948 0)
(-0.000417614755499 -0.00135441967722 0)
(-0.000245012589926 -0.00127670658102 0)
(-8.6052067131e-05 -0.00124517190838 0)
(2.61881277329e-05 -0.000545618684225 0)
(0.00011342134137 -0.000516194231775 0)
(0.000253583030365 -0.000559851041995 -3.83412008017e-29)
(0.000384066427899 -0.000505203146601 0)
(0.000434063573664 -0.00034643445962 0)
(0.000552733011388 -0.000353212152916 0)
(0.00067020855147 -0.000371259345192 0)
(0.00077500208144 -0.000376333309749 0)
(0.00087487579878 -0.00037814419964 0)
(0.00096755054212 -0.000380706504203 0)
(0.00105382693627 -0.000384467546885 0)
(0.00113410970514 -0.00038897890749 0)
(0.00120855977282 -0.000394269979232 0)
(0.00127758913691 -0.000399814996933 0)
(0.00133925211948 -0.000403150494739 0)
(0.00140657720894 -0.000403511769643 0)
(0.00149188679221 -0.000401491204662 0)
(0.00157750640748 -0.000396054006475 -6.33410613155e-29)
(0.00166309116253 -0.000393349429177 5.98957840218e-29)
(0.00174713362941 -0.000395300799934 0)
(0.00182911078279 -0.000398629143072 0)
(0.00190956509954 -0.000399070601507 -4.88623313802e-29)
(0.00199040945729 -0.000392886379577 4.60002648552e-29)
(0.00207190932923 -0.000383303238163 5.3234027001e-30)
(0.00215414810715 -0.000379547801458 0)
(0.00223608743465 -0.000383536522415 0)
(0.00231584170187 -0.000387514678993 0)
(0.00238845821144 -0.000390263214285 0)
(0.00247008022118 -0.000400562875737 0)
(0.00255453419345 -0.000420815497509 0)
(0.00263031682758 -0.000452253661777 0)
(0.00264734533103 -0.000494166285222 0)
(0.0027173665 -0.000545035258952 0)
(0.00275313134597 -0.00057890609402 0)
(0.00274905879921 -0.000589842408209 0)
(0.00271396695864 -0.000551766634754 0)
(0.0027156247755 -0.000461197176728 0)
(0.00264521243813 -0.000249029655972 0)
(0.00321549236988 -0.000260669617441 0)
(0.00148014526059 -4.40674171492e-05 0)
(0.00750658256335 0.483727166488 0)
(0.0101869386929 0.500594237452 0)
(0.011125810961 0.499294233565 -3.89866716172e-30)
(0.0125803620325 0.497934434372 0)
(0.0139785103813 0.496956135718 0)
(0.015602587941 0.496243574819 0)
(0.0173488693615 0.495644702705 0)
(0.0192540431272 0.495088274188 0)
(0.0213224001408 0.494510540121 0)
(0.0235758878452 0.493856033927 0)
(0.0260449420532 0.493062906972 0)
(0.0287707001644 0.49205331146 0)
(0.0318137165517 0.490715905953 0)
(0.035227733289 0.488894166548 0)
(0.0391609429725 0.486318102032 0)
(0.0435208935371 0.482631096701 0)
(0.0488984679527 0.47708216266 0)
(0.0545439668863 0.46838011001 0)
(0.060894618708 0.454892723432 0)
(0.070241743389 0.425020929588 0)
(0.0683880578012 0.253080188437 0)
(0.0187766994774 0.0826232073391 0)
(-0.000970770350954 -0.00322611362198 0)
(-0.000330424840207 -0.00384836277923 0)
(-0.00155795963268 -0.0032911722159 0)
(-0.00201867970386 -0.00270368602674 0)
(-0.00216104056849 -0.00216555179861 -9.35535043647e-31)
(-0.00216505544666 -0.00176478121216 0)
(-0.00209232060817 -0.0014824851485 1.23176634417e-30)
(-0.00195429274271 -0.00128880315629 0)
(-0.00178655635391 -0.0011585673171 0)
(-0.00160549235176 -0.001076728845 0)
(-0.00143070985007 -0.00104171674334 0)
(-0.00123237081233 -0.00101807214199 0)
(-0.00105349446223 -0.00102633392116 0)
(-0.000864071266788 -0.00104396993211 0)
(-0.000659086247114 -0.00106185535315 0)
(-0.000505914908575 -0.00117304435181 0)
(-0.000310149777918 -0.00113807863043 0)
(-0.000107555844657 -0.00106439819804 0)
(3.79378405314e-05 -0.00043913669126 0)
(9.11202457531e-05 -0.000337272558651 0)
(0.000228560197773 -0.000422288586644 4.1235156646e-29)
(0.000420809721286 -0.000414871970818 0)
(0.000419885231298 -0.000251102961421 0)
(0.000564286849101 -0.000261719425926 0)
(0.000664583723008 -0.000266397497886 0)
(0.000762708879253 -0.000274993408515 0)
(0.000856639512819 -0.00028379830337 0)
(0.000945687136379 -0.000292810299072 0)
(0.00103053801003 -0.000301891026591 0)
(0.0011116196914 -0.000311557576124 0)
(0.00118926545341 -0.000322089421891 0)
(0.00126025085112 -0.000330019000388 0)
(0.00133384925583 -0.000332857241408 0)
(0.00141954654564 -0.000328600247046 0)
(0.0015052204942 -0.000317445472075 0)
(0.00159040874638 -0.000309000093695 0)
(0.0016755284052 -0.000307797220627 0)
(0.00175997611552 -0.000311447128091 0)
(0.00184370254392 -0.0003168786628 0)
(0.00192511989087 -0.000319343796969 0)
(0.0020076365405 -0.000312187143825 0)
(0.00209276575882 -0.000299399393024 0)
(0.00217984812039 -0.000295746666916 0)
(0.00226839741098 -0.000303113068456 0)
(0.00235117247996 -0.000306816400713 0)
(0.00242652287468 -0.00030291428811 0)
(0.00251557152997 -0.000313529530858 0)
(0.00260798800375 -0.000343998023635 0)
(0.00269240911351 -0.000384799065853 0)
(0.00270290898717 -0.000433609640864 0)
(0.00280914583982 -0.000507003125221 0)
(0.0028382065977 -0.000574303829101 0)
(0.00281296426085 -0.000630489977479 0)
(0.00272227369152 -0.000623094306185 0)
(0.00255546850649 -0.000517618379301 -1.82874002485e-30)
(0.00246868622491 -0.000206459036903 0)
(0.00290545517801 0.00012812887928 0)
(0.00155298352726 0.000499881812679 0)
(0.00758370146059 0.489014828449 0)
(0.00920177501985 0.501833092361 0)
(0.009616224614 0.500301900513 3.9022777075e-30)
(0.010600316237 0.499088270395 0)
(0.0115909161815 0.498274828741 0)
(0.0128144673007 0.497721723737 0)
(0.0141806528998 0.497282054161 0)
(0.0157049215032 0.496888634511 0)
(0.0173893617935 0.496488151119 0)
(0.019252290956 0.496036301071 0)
(0.0213244445894 0.49548494573 0)
(0.0236518138317 0.494772334367 0)
(0.0263026813007 0.493807291496 0)
(0.0293576069098 0.492452684949 0)
(0.032973094651 0.49046254969 0)
(0.0371477330918 0.487486778683 0)
(0.0425348248676 0.482705736519 0)
(0.0481303359335 0.474935428812 0)
(0.0556719467279 0.462138416408 0)
(0.066436736221 0.431453701292 0)
(0.0653318410821 0.225826262564 0)
(0.0174263446174 0.0471295206883 0)
(-0.00137021114155 -0.00670996878979 0)
(-0.00133756329552 -0.00525534457709 0)
(-0.0024235641797 -0.00394538750992 0)
(-0.00273231929227 -0.0029334141743 0)
(-0.00275440817924 -0.00219668728139 0)
(-0.00255235431803 -0.00163341381875 0)
(-0.00243942789129 -0.00131793378491 -1.16240228858e-30)
(-0.00222946611617 -0.00109599776391 0)
(-0.00201675947467 -0.000962062499327 0)
(-0.00179842293793 -0.000878261982135 2.03509259439e-30)
(-0.00161739487679 -0.000846734492685 0)
(-0.00141873444939 -0.000832915573968 0)
(-0.00119659121287 -0.000822084966662 0)
(-0.00101088086741 -0.000851824736612 0)
(-0.000813659581703 -0.000912499798851 0)
(-0.000617332882119 -0.00102096153061 0)
(-0.000321333203963 -0.000937094619721 0)
(-8.37190486182e-05 -0.00078685257828 0)
(6.11219648952e-05 -0.000410579538774 0)
(0.000164674027517 -0.000345264102226 0)
(0.000278741936154 -0.00031047874947 -4.62408436989e-29)
(0.000384112673621 -0.000259291933715 0)
(0.000402673541135 -0.000167637315583 0)
(0.000529958932361 -0.000161719503411 0)
(0.000624064071854 -0.000166102655685 0)
(0.00071715132453 -0.000180589514309 0)
(0.000804671757515 -0.000193366776236 0)
(0.000891355228948 -0.000204167388656 0)
(0.000979544114394 -0.000213530801174 0)
(0.00107081030907 -0.000224813109261 0)
(0.00115948509736 -0.000237414751296 0)
(0.00125211426192 -0.000249486041493 0)
(0.00133777850399 -0.000253745969807 0)
(0.00142291803691 -0.000246120804887 0)
(0.00150950015729 -0.000231266463972 0)
(0.00159618464541 -0.000222508127333 0)
(0.0016818096267 -0.000222348148913 0)
(0.00177015725129 -0.000226171017622 0)
(0.0018558369586 -0.000234253824848 0)
(0.00193852603343 -0.000239697315486 0)
(0.00202694816365 -0.000225960835771 0)
(0.00212286767338 -0.000203859683491 0)
(0.00221887474541 -0.000201535027849 0)
(0.00231488284434 -0.000216852638223 0)
(0.00241136314812 -0.000227033414364 0)
(0.0024864969561 -0.000221273309469 0)
(0.00254092955103 -0.00021972717492 0)
(0.00266359625658 -0.000252476444977 0)
(0.00275730744645 -0.00030325262076 0)
(0.00279266470293 -0.000357073021105 0)
(0.0029360688615 -0.000445459175187 0)
(0.00299842109614 -0.000557080385464 0)
(0.00299675461461 -0.000696365482789 0)
(0.00289081384883 -0.000795380561359 0)
(0.0025384733929 -0.000726371244748 2.00035246288e-30)
(0.00206342225316 -0.000315307596558 0)
(0.00253588960009 0.000811933801124 0)
(0.00163012322652 0.00134516355582 0)
(0.00753955709649 0.493525304941 0)
(0.00813574712313 0.502282246399 0)
(0.00792887410151 0.500716351513 0)
(0.00842604602274 0.499761444659 0)
(0.00901949498633 0.499176654552 0)
(0.00985063829941 0.498810268305 0)
(0.0108380666406 0.498536799865 0)
(0.0119732561773 0.498301519561 0)
(0.0132524083539 0.498066756711 0)
(0.0146882355823 0.497803094956 0)
(0.0163083880874 0.497479515604 0)
(0.018158583019 0.497055595961 0)
(0.0203099795092 0.496469518411 0)
(0.0228628699766 0.495621508053 0)
(0.0259876638424 0.494322569947 0)
(0.0298137553589 0.492264522067 0)
(0.0349804314716 0.488656810658 0)
(0.0404834010792 0.482383112712 0)
(0.0494679796264 0.470355040491 0)
(0.0603894239108 0.438594078872 0)
(0.05767545854 0.187975905766 0)
(0.00142747387341 -0.00266193912975 0)
(-0.00136393925797 -0.00991839248545 0)
(-0.00321685794971 -0.00657456338836 0)
(-0.00387988645761 -0.00431735196608 0)
(-0.00376744303473 -0.00289923919494 0)
(-0.00347295062652 -0.00200129919763 0)
(-0.00307622947136 -0.00141760138529 0)
(-0.00278617853412 -0.00106260171709 0)
(-0.00253233245349 -0.000845440211806 0)
(-0.00223631899131 -0.000724914656964 0)
(-0.00199983028374 -0.000674699299741 -2.04315988197e-30)
(-0.00179637518749 -0.000647036299279 0)
(-0.00158405586316 -0.000625956229135 0)
(-0.00135396463411 -0.000625540466188 0)
(-0.00111414350621 -0.000635897356709 0)
(-0.000863789841613 -0.000651749556598 0)
(-0.000596376190968 -0.000671673349843 0)
(-0.000277205137346 -0.00060418781955 0)
(-7.70655845724e-05 -0.000634876548439 0)
(8.10084006595e-05 -0.000256306965813 0)
(0.000261937090704 -0.00020877517421 0)
(0.00029644771335 -0.00018517932135 -3.79948048583e-29)
(0.000497802060967 -0.00023868416162 0)
(0.000379172568935 -0.000108940198382 0)
(0.000483512646995 -6.73715326613e-05 0)
(0.000568875895208 -6.47160338068e-05 0)
(0.000661093061281 -8.74118488672e-05 0)
(0.000743640624853 -9.8390640898e-05 0)
(0.000844650995382 -0.000106324362861 0)
(0.000946994175719 -0.00011441203146 0)
(0.00104996036872 -0.000126978706333 0)
(0.00114908181306 -0.000144034473715 0)
(0.00123868828258 -0.000161534835661 0)
(0.00131745755229 -0.000171688274645 0)
(0.00140318665328 -0.000161553142984 0)
(0.00148822299373 -0.000135567886362 0)
(0.00158231047882 -0.000121605639427 0)
(0.00169085520897 -0.000125219572181 0)
(0.00179169072583 -0.000131028489656 0)
(0.00188514106439 -0.000136843842176 0)
(0.00200197110613 -0.00014162403425 0)
(0.00214612619755 -0.000135365028417 0)
(0.00221746179743 -0.000116960450364 0)
(0.00227347963273 -0.000112039746576 0)
(0.00236512116373 -0.000126455599446 0)
(0.00247005992667 -0.000139937202295 0)
(0.00256424130128 -0.000140362379466 0)
(0.00263582132351 -0.000136667304059 0)
(0.00270935641098 -0.000157030121689 0)
(0.0028261312388 -0.000198769211123 0)
(0.00290263540218 -0.000244131332241 0)
(0.00309661828448 -0.000329994169868 0)
(0.00325390465571 -0.00046548654924 0)
(0.00337170441707 -0.000725377874707 0)
(0.00336126737017 -0.000848341055361 0)
(0.00348291107048 -0.00198516218942 0)
(0.00119657487202 -0.000292965678748 0)
(0.00181225881402 0.000793463833032 0)
(0.0017701625975 0.00256317251088 0)
(0.00694747217886 0.496670948433 0)
(0.00673873314352 0.501771876317 0)
(0.00590909499624 0.500559198168 0)
(0.00594999767231 0.500004583467 0)
(0.00621196008777 0.499701027927 0)
(0.00669769239557 0.499525671865 0)
(0.0073280860819 0.499401881806 0)
(0.00807726169228 0.499298698321 0)
(0.00893643979119 0.499197293627 0)
(0.00991255355789 0.499083809655 0)
(0.0110264170693 0.498943993697 0)
(0.01231532526 0.498759084231 0)
(0.0138403762597 0.498499563127 0)
(0.0156981580451 0.498115120186 0)
(0.0180556779591 0.497504977275 0)
(0.0211505606156 0.496481910993 0)
(0.0256035672599 0.494517196113 0)
(0.0311755566878 0.490729974887 0)
(0.0425782659524 0.481301536925 0)
(0.053022765009 0.453114482415 0)
(0.0414410252338 0.158837150256 0)
(0.000277721073887 -0.0084191666481 0)
(-0.00174681896436 -0.00722128307935 0)
(-0.00694103687203 -0.00770214806894 0)
(-0.00609898838342 -0.00389323375337 0)
(-0.00504859128783 -0.0023409097106 0)
(-0.00423652204805 -0.00148277875602 0)
(-0.00357578778023 -0.00099880508372 0)
(-0.00306868764659 -0.000693893215139 0)
(-0.002761019052 -0.000512714646459 0)
(-0.00245197725564 -0.000444973862225 0)
(-0.00214806179445 -0.000427199370596 0)
(-0.00187879659438 -0.00040469219478 0)
(-0.0016410977121 -0.00037890036509 0)
(-0.00139740814393 -0.000367430033166 0)
(-0.00113424949573 -0.000370045821739 0)
(-0.000879974607267 -0.000383788602128 0)
(-0.000633458021102 -0.000403225121355 0)
(-0.00035105609145 -0.00038796208874 0)
(-0.000136788904605 -0.000490723747024 0)
(0.000140692361382 -0.000102917755065 0)
(0.000185140792516 -3.56782400105e-05 0)
(0.000349044641052 -7.71175116934e-05 3.7311151261e-29)
(0.00055257428689 -0.000106138100361 0)
(0.000732633916738 -9.73694430447e-05 0)
(0.000803540194774 -2.19457733915e-05 0)
(0.000763658760368 -1.10238232303e-05 0)
(0.000848174679305 -2.77991576551e-05 0)
(0.000907779244657 -3.15746370748e-05 0)
(0.000967727733015 -3.08480075313e-05 0)
(0.00102924275023 -3.25881455535e-05 0)
(0.00109698152469 -3.84267425332e-05 0)
(0.0011820458661 -4.87951359958e-05 0)
(0.00128753128908 -6.18909272902e-05 0)
(0.00141719428744 -7.22556667816e-05 0)
(0.0015785112608 -6.84116841948e-05 0)
(0.0016859154993 -4.89939259882e-05 0)
(0.00173714773709 -3.6151717652e-05 0)
(0.0018123080893 -3.75344987567e-05 0)
(0.0018972947692 -4.11789275265e-05 0)
(0.00197420345963 -4.15138996472e-05 0)
(0.00206202831914 -3.97735824029e-05 0)
(0.00216099661884 -4.01584223351e-05 0)
(0.00224330015883 -3.91349994233e-05 0)
(0.00229355213751 -3.64723750205e-05 0)
(0.00237062064974 -4.05268962142e-05 0)
(0.00247666161946 -4.61306918347e-05 0)
(0.00257704866075 -4.6946525543e-05 0)
(0.00265208363958 -4.75474901862e-05 0)
(0.00273802869279 -5.65839887065e-05 0)
(0.00288755086647 -7.06146890071e-05 0)
(0.00298077457406 -8.78161102965e-05 0)
(0.00323061116893 -0.000126790816074 0)
(0.0035490879893 -0.000195986854504 0)
(0.00369657803252 -0.00036498984466 0)
(0.00598530732541 -0.000522420957665 0)
(0.0024983356671 -0.00110810061509 0)
(0.0105700762042 -0.00261984653897 0)
(0.0119917641744 0.00277589137178 0)
(0.00107040974831 0.00180334829775 0)
(0.00500413049401 0.497961531259 0)
(0.00430812211075 0.500626555554 0)
(0.00327494502878 0.500175819689 0)
(0.00309176753649 0.500016810526 0)
(0.0031646675584 0.499938948499 0)
(0.00338348957087 0.499896764134 0)
(0.0036896785085 0.499868034282 0)
(0.0040616951803 0.499844516898 0)
(0.00449271491525 0.499821585023 0)
(0.00498562040125 0.499795965263 0)
(0.00555146599927 0.499764336999 0)
(0.00621088994542 0.499722308823 0)
(0.00699865631305 0.499662855897 0)
(0.00797287028337 0.499573637564 0)
(0.00923795349008 0.49942886133 0)
(0.0109828174643 0.499176228171 0)
(0.0136651578689 0.498652883139 0)
(0.0180278826601 0.497526968162 0)
(0.0290167268611 0.49391475957 0)
(0.0363512321569 0.482331052829 0)
(0.018381122311 0.184203515803 0)
(-0.0105948231688 -0.00590296014323 0)
(-0.0504813566275 -0.0220715309042 0)
(-0.00655851683337 -0.00410745673791 0)
(-0.00923464359998 -0.00169608319483 0)
(-0.00617083786608 -0.000945522328849 0)
(-0.00480932250336 -0.00056293765088 0)
(-0.00390228750232 -0.000366863856117 0)
(-0.00319939279256 -0.000237870125355 0)
(-0.00291010478793 -0.000166868167951 0)
(-0.0026570376862 -0.000148422105076 0)
(-0.0023429131364 -0.000151171613096 0)
(-0.00202586011799 -0.000145611201742 0)
(-0.00175938893098 -0.000133178037956 0)
(-0.00151637433043 -0.000126923271092 0)
(-0.0012666182884 -0.000131946740414 0)
(-0.0010053753297 -0.000142343643175 0)
(-0.000737931254705 -0.000146393166711 0)
(-0.000427331243014 -0.000129747137814 0)
(-0.000215175628214 -0.000193045822996 0)
)
;
boundaryField
{
frontAndBack
{
type empty;
}
upperWall
{
type noSlip;
}
lowerWall
{
type noSlip;
}
inlet
{
type fixedValue;
value uniform (0 0.5 0);
}
outlet
{
type inletOutlet;
inletValue uniform (0 0 0);
value nonuniform List<vector>
20
(
(0.347846429344 -0.337223289986 0)
(0.468751014355 -0.281235924757 0)
(0.540734851114 -0.212819202209 0)
(0.581529277124 -0.150785846154 0)
(0.602845744753 -0.092962524302 0)
(0.611583964667 -0.0401507484047 0)
(0.609708938556 0.0118414176725 0)
(0.60053379775 0.054075343086 0)
(0.588433504693 0.0916309212729 0)
(0.573740325693 0.124700077588 0)
(0.556596520003 0.154187610786 0)
(0.536981359983 0.180497704176 0)
(0.514782123492 0.203964620308 0)
(0.489798211641 0.224863577315 0)
(0.461709381893 0.243471528172 0)
(0.429957077014 0.260011873047 0)
(0.393359226855 0.274591519769 0)
(0.349395772765 0.288005748574 0)
(0.29416556525 0.302449957633 0)
(0.221480491469 0.307872211008 0)
)
;
}
}
// ************************************************************************* //
| |
6e22334d90d975f1bdc8e99453af6d7e54dfd78c | 2111950850f018472488bb51e0875e0b9da9803a | /Comportement.h | 4131cea7e7736deabfc313db3e193e5f53c505d3 | [] | no_license | morokhalid16/C-ecosystem-simulation | 00c92a66d1ea76fa0b5686b7eab03be3b915dcf9 | 1172093969f5c57b2f3cdde0f90fd5c0e50c278a | refs/heads/master | 2020-11-23T19:51:27.683622 | 2019-12-13T16:00:16 | 2019-12-13T16:00:16 | 227,797,025 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 510 | h | Comportement.h | #include "Bestiole.h"
#include <iostream>
using namespace std;
class Comportement{
private:
int comportement;
bool persoMultiple;
static const float PROBA_GREGAIRE;
static const float PROBA_PEUREUSE;
static const float PROBA_KAMIKAZE;
static const float PROBA_PREVOYANTE;
static const float PROBA_PERSOMULT;
static const float PROBA_CHANGECOMP;
public:
Comportement( void );
~Comportement( void );
void ChangeComportement( void );
}; |
f240ad3e2256685e9ea2151512de1493a7837cef | c2ad49b2de77aaf04863ae102590dcc7f0d97612 | /ะกlass Sparse Matrix/SparseMatrix.cpp | dc9a7bf1b972ac3168b611f59601c4acee4edfd1 | [] | no_license | emilien23/study-Cplusplus | f98734498ebb472cd890e9be8ef7bc63bfed8e12 | a93a2f07b0b434424b27bd2ce92ece6ce66a5def | refs/heads/master | 2021-01-12T13:44:19.502917 | 2017-09-21T07:48:35 | 2017-09-21T07:48:35 | 69,121,942 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 841 | cpp | SparseMatrix.cpp | // 3nomer3.cpp: ะพะฟัะตะดะตะปัะตั ัะพัะบั ะฒั
ะพะดะฐ ะดะปั ะบะพะฝัะพะปัะฝะพะณะพ ะฟัะธะปะพะถะตะฝะธั.
//
#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include "SMatrix.h"
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv)
{
Sparse_Matrix k(3, 5, -1);
k.w_access(2, 3) = -7;
cout << k.w_access(2, 3) << endl;
k.print();
cout << k.r_access(0, 1) << endl;
k.w_access(2, 4) = -5;
k.print();
k.w_access(2, 1) = -4; k.w_access(2, 0) = -4;
k.print();
k.w_access(0, 1) = -8; k.w_access(1, 3) = -9;
k.print();
for (int i = 0; i<3; i++)
for (int j = 0; j<5; j++)
k.w_access(i, j) = i + j;
k.print();
//cout << k.r_access(0, 0);
system("PAUSE");
return 0;
}
|
1dc9921a6f649efb8617f638d2718e43df35b4f4 | 8fd1ca2affad0450ca42e7ed63a0a1a12d094fcb | /src/GameSettings.hpp | fefb66eb21166d825647ec3170bbb3ba11796faa | [] | no_license | VincentSchmid/raylib-test | 8dafd28a8778c7f8940983708b4787547526cc4b | bbcab17fc5058099d521fc32d9aa48d7898b9e54 | refs/heads/main | 2023-03-28T05:12:42.383951 | 2021-03-20T19:18:39 | 2021-03-20T19:18:39 | 324,949,975 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,132 | hpp | GameSettings.hpp | #pragma once
#include <map>
#include "raylib.h"
using namespace std;
class GameSettings
{
public:
// Camera Settings
const Vector3 upAxis = (Vector3){ 0.0f, 1.0f, 0.0f };
Vector3 camPos = (Vector3){ -10.0f, 10.0f, 10.0f };
Vector3 camTarget = (Vector3){ 0.0f, 0.0f, 0.0f };
float camFovy = 60.0f;
int camType = CAMERA_PERSPECTIVE;
float camSpeed = 20;
// Screen Settings
int screenWidth = 800;
int screenHeight = 450;
int hotCornerSize = 100;
float cameraMoveSpeed = 20;
// Map Settings
int mapSize = 10;
float tileSize = 3.0f;
private:
/* Private constructor to prevent instancing. */
GameSettings() {};
/* Here will be the instance stored. */
static GameSettings* instance;
public:
/* Static access method. */
static GameSettings* getInstance() {
if (instance == 0)
{
instance = new GameSettings();
}
return instance;
};
};
GameSettings* GameSettings::instance = 0; |
49e5d6edc23d6825093be4d9fc786d9196f9bacb | c08a26d662bd1df1b2beaa36a36d0e9fecc1ebac | /classicui_plat/tsrc/bc/apps/S60_SDK3.0/bctestpopups/src/bctestpopupsettingpagecase.cpp | dca3349f548f81c9d0e9acccf3e9440e30c3d3cf | [] | no_license | SymbianSource/oss.FCL.sf.mw.classicui | 9c2e2c31023256126bb2e502e49225d5c58017fe | dcea899751dfa099dcca7a5508cf32eab64afa7a | refs/heads/master | 2021-01-11T02:38:59.198728 | 2010-10-08T14:24:02 | 2010-10-08T14:24:02 | 70,943,916 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 21,599 | cpp | bctestpopupsettingpagecase.cpp | /*
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: Implements test bc for popup setting page testcase.
*
*/
#include <w32std.h>
#include <coecntrl.h>
#include <aknlists.h>
#include <bctestpopups.mbg>
#include <bctestpopups.rsg>
#include <barsread.h> // TResourceRead
#include <aknquerydialog.h>
#include <eikenv.h>
#include <aknpopuplayout.h>
#include <s32mem.h>
#include "bctestpopupsettingpagecase.h"
#include "bctestsubaknpopupsettinglist.h"
#include "bctestsubaknpopuplist.h"
#include "bctestsubaknsettingpage.h"
#include "bctestpopupscontainer.h"
#include "bctestpopups.hrh"
#include "autotestcommands.h"
// constant
_LIT( KSettingListTitle, "Settings" );
_LIT( KSettingPageConstructor,
"CAknPopupSettingPage's CBCTestPopupSettingPage(...)" );
_LIT( KSettingPageConstructorB,
"CAknPopupSettingPage's CBCTestPopupSettingPage()" );
_LIT( KAknPopupSettingPageConstructL,
"Invoke CAknPopupSettingPage's ConstructL()" );
_LIT( KListBoxControl,
"Invoke CAknPopupSettingPage's ListBoxControl()" );
_LIT( KHandlePopupSettingListEventL,
"Invoke CAknPopupSettingPage's HandlePopupSettingListEventL()" );
_LIT( KHandlePointerEventL,
"Invoke CAknPopupSettingPage's HandlePointerEventL()" );
_LIT( KQueryValue, "Invoke CAknPopupSettingPage's QueryValue()" );
_LIT( KSelectCurrentItemL,
"Invoke CAknPopupSettingPage's SelectCurrentItemL()" );
_LIT( KReserved_2, "Invoke CAknPopupSettingPage's Reserved_2()" );
_LIT( KUpdateQueryValueL,
"Invoke CAknPopupSettingPage's UpdateQueryValueL()" );
_LIT( KWriteInternalStateL,
"Invoke CAknPopupSettingPage's WriteInternalStateL()" );
_LIT( KPopupSettingListBox,
"Invoke CAknPopupSettingPage's PopupSettingListBox()" );
_LIT( KPSLSetQueryValueL,
"Invoke CAknPopupSettingList's SetQueryValueL()" );
_LIT( KPSLNumLines,
"Invoke CAknPopupSettingList's NumLines()" );
_LIT( KPSLSetPopupSettingListObserver,
"Invoke CAknPopupSettingList's SetPopupSettingListObserver()" );
_LIT( KPopupSettingListSetAllowsUserDefinedEntry,
"Invoke CAknPopupSettingList's SetAllowsUserDefinedEntry()" );
_LIT( KPopupSettingListSetShowIndicators,
"Invoke CAknPopupSettingList's SetShowIndicators()" );
_LIT( KPopupSettingListHandlePointerEventL,
"Invoke CAknPopupSettingList's HandlePointerEventL()" );
_LIT( KPopupSettingListHandleResourceChange,
"Invoke CAknPopupSettingList's HandleResourceChange()" );
_LIT( KPopupSettingListCreateMenuListL,
"Invoke CAknPopupSettingList's CreateMenuListL()" );
_LIT( KPopupSettingListActivateMenuListL,
"Invoke CAknPopupSettingList's ActivateMenuListL()" );
_LIT( KPopupSettingListDestroyMenuList,
"Invoke CAknPopupSettingList's DestroyMenuList()" );
_LIT( KPopupSettingListConfigureMenuListL,
"Invoke CAknPopupSettingList's ConfigureMenuListL()" );
_LIT( KPopupSettingListHandleListBoxEventL,
"Invoke CAknPopupSettingList's HandleListBoxEventL()" );
_LIT( KCAknPopupSettingList,
"Invoke CAknPopupSettingList's CAknPopupSettingList()" );
_LIT( KLayoutHandleSizeChanged,
"AknPopupLayouts's HandleSizeChanged()" );
_LIT( KLayoutModifyWindowGraphicForHeading,
"AknPopupLayouts's ModifyWindowGraphicForHeading()" );
_LIT( KLayoutModifyWindowGraphicForMessageBox,
"AknPopupLayouts's ModifyWindowGraphicForMessageBox()" );
_LIT( KLayoutCalcPopupMenuWindow,
"AknPopupLayouts's CalcPopupMenuWindow()" );
_LIT( KLayoutCalcPopupMenuGraphicWindow,
"AknPopupLayouts's CalcPopupMenuGraphicWindow()" );
_LIT( KLayoutCalcPopupMenuGraphicHeadingWindow,
"AknPopupLayouts's CalcPopupMenuGraphicHeadingWindow()" );
_LIT( KLayoutCalcPopupMenuDoubleWindow,
"AknPopupLayouts's CalcPopupMenuDoubleWindow()" );
_LIT( KLayoutCalcPopupMenuDoubleLargeGraphicWindow,
"AknPopupLayouts's CalcPopupMenuDoubleLargeGraphicWindow()" );
_LIT( KLayoutCalcPopupSNoteGroupWindow,
"AknPopupLayouts's CalcPopupSNoteGroupWindow()" );
_LIT( KLayoutSetupMenuPopupWindow,
"AknPopupLayouts's SetupMenuPopupWindow()" );
_LIT( KLayoutSetupPopupMenuGraphicWindow,
"AknPopupLayouts's SetupPopupMenuGraphicWindow()" );
_LIT( KLayoutSetupPopupMenuGraphicHeadingWindow,
"AknPopupLayouts's SetupPopupMenuGraphicHeadingWindow()" );
_LIT( KLayoutSetupPopupMenuDoubleWindow,
"AknPopupLayouts's SetupPopupMenuDoubleWindow()" );
_LIT( KLayoutSetupImageSelectionMenuPopupWindow,
"AknPopupLayouts's SetupImageSelectionMenuPopupWindow()" );
_LIT( KLayoutSetupPopupSNoteGroupWindow,
"AknPopupLayouts's SetupPopupSNoteGroupWindow()" );
_LIT( KLayoutHandleSizeAndPositionOfComponents,
"AknPopupLayouts's HandleSizeAndPositionOfComponents()" );
_LIT( KLayoutSetupDefaults, "AknPopupLayouts's SetupDefaults()" );
_LIT( KLayoutWindowRectA, "AknPopupLayouts's WindowRect()" );
_LIT( KLayoutMenuRect, "AknPopupLayouts's MenuRect()" );
_LIT( KLayoutCheckRange, "AknPopupLayouts's CheckRange()" );
_LIT( KLayoutMenuPopupWindowGraphics,
"AknPopupLayouts's MenuPopupWindowGraphics()" );
const TInt KOne = 1;
const TInt KTwo = 2;
const TInt KThree = 3;
const TInt KFour = 4;
const TInt KSixteen = 16;
const TInt KTwoHundred = 200;
// ======== MEMBER FUNCTIONS ========
// ---------------------------------------------------------------------------
// Symbian 2nd static Constructor
// ---------------------------------------------------------------------------
//
CBCTestPopupSettingPageCase* CBCTestPopupSettingPageCase::NewL(
CBCTestPopupsContainer* aContainer )
{
CBCTestPopupSettingPageCase* self = new( ELeave )
CBCTestPopupSettingPageCase( aContainer );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop( self );
return self;
}
// ---------------------------------------------------------------------------
// C++ default constructor
// ---------------------------------------------------------------------------
//
CBCTestPopupSettingPageCase::CBCTestPopupSettingPageCase(
CBCTestPopupsContainer* aContainer ) : iContainer( aContainer )
{
}
// ---------------------------------------------------------------------------
// Destructor
// ---------------------------------------------------------------------------
//
CBCTestPopupSettingPageCase::~CBCTestPopupSettingPageCase()
{
}
// ---------------------------------------------------------------------------
// Symbian 2nd Constructor
// ---------------------------------------------------------------------------
//
void CBCTestPopupSettingPageCase::ConstructL()
{
iEikEnv = static_cast<CEikonEnv*> ( iContainer->GetCoeEnv() );
BuildScriptL();
}
// ---------------------------------------------------------------------------
// CBCTestPopupSettingPageCase::BuildScriptL
// ---------------------------------------------------------------------------
//
void CBCTestPopupSettingPageCase::BuildScriptL()
{
const TInt scripts[] =
{
//outline10
DELAY( KOne ), // delay between commands is 1*0.1 seconds = 0.1 seconds
LeftCBA,
REP( Down, KThree ),
KeyOK,
KeyOK,
//outline11
LeftCBA,
REP( Down, KThree ),
KeyOK,
REP( Down, KOne ),
KeyOK,
//outline12
LeftCBA,
REP( Down, KFour ),
KeyOK,
REP( Down, KTwo ),
KeyOK
};
AddTestScriptL( scripts, sizeof( scripts ) / sizeof( TInt ) );
}
// ---------------------------------------------------------------------------
// CBCTestPopupSettingPageCase::RunL
// ---------------------------------------------------------------------------
//
void CBCTestPopupSettingPageCase::RunL( TInt aCmd )
{
if ( ( aCmd < EBCTestPopupsCmdOutline10 )
|| ( aCmd > EBCTestPopupsCmdOutline12 ) )
{
return;
}
switch ( aCmd )
{
case EBCTestPopupsCmdOutline10:
TestFunctionsForSettingPageL();
break;
case EBCTestPopupsCmdOutline11:
break;
case EBCTestPopupsCmdOutline12:
TestFunctionForPopLayoutsL();
break;
default:
break;
}
}
// ---------------------------------------------------------------------------
// CBCTestPopupSettingPageCase::TestFunctionsForSettingPageL
// ---------------------------------------------------------------------------
//
void CBCTestPopupSettingPageCase::TestFunctionsForSettingPageL()
{
// Construct
CDesCArrayFlat* item;
CAknQueryValueTextArray* textArray;
CAknQueryValueText* queryValueText;
item = iEikEnv->ReadDesCArrayResourceL( R_BCTESTPOPUPS_LIST_ITEM_ARRAY );
CleanupStack::PushL( item );
textArray = CAknQueryValueTextArray::NewL();
textArray->SetArray( *item );
CleanupStack::PushL( textArray );
queryValueText = CAknQueryValueText::NewL();
CleanupStack::PushL( queryValueText );
queryValueText->SetArrayL( textArray );
TBufC<KSixteen> title ( KSettingListTitle );
iSettingPage =
new( ELeave ) CBCTestPopupSettingPage( &title,
0,
0,
0,
R_BCTESTPOPUPS_POPUP_SETTING_PAGE,
*queryValueText );
iSettingPage->ConstructL();// construct it correctly
AssertTrueL( ETrue, KSettingPageConstructor );
delete iSettingPage;
iSettingPage = NULL;
// Invoke CAknPopupSettingPage's CBCTestPopupSettingPage()
iSettingPage = new( ELeave ) CBCTestPopupSettingPage(
R_BCTESTPOPUPS_POPUP_SETTING_PAGE, *queryValueText );
AssertTrueL( ETrue, KSettingPageConstructorB );
// Invoke CAknPopupSettingPage's ConstructL()
iSettingPage->ConstructL();
AssertTrueL( ETrue, KAknPopupSettingPageConstructL );
// Invoke CAknPopupSettingPage's ListBoxControl()
CAknSetStyleListBox* listBox = iSettingPage->ListBoxControl();
AssertTrueL( ETrue, KListBoxControl );
// Invoke CAknPopupSettingPage's HandlePopupSettingListEventL()
iSettingPage->HandlePopupSettingListEventL(
NULL,
MAknPopupSettingListObserver
::EAknPopupSettingSelectionAndRequestAccept,
0 );
AssertTrueL( ETrue, KHandlePopupSettingListEventL );
// Invoke CAknPopupSettingPage's HandlePointerEventL()
TPointerEvent pointEvent;
pointEvent.iType = TPointerEvent::EButton1Down;
iSettingPage->HandlePointerEventL( pointEvent );
AssertTrueL( ETrue, KHandlePointerEventL );
// Invoke CAknPopupSettingPage's QueryValue()
iSettingPage->QueryValue();
AssertTrueL( ETrue, KQueryValue );
// Invoke CAknPopupSettingPage's SelectCurrentItemL()
iSettingPage->SelectCurrentItemL();
AssertTrueL( ETrue, KSelectCurrentItemL );
// Invoke CAknPopupSettingPage's Reserved_2()
iSettingPage->Reserved_2();
AssertTrueL( ETrue, KReserved_2 );
// Invoke CAknPopupSettingPage's UpdateQueryValueL()
iSettingPage->UpdateQueryValueL( queryValueText );
AssertTrueL( ETrue, KUpdateQueryValueL );
// Invoke CAknPopupSettingPage's WriteInternalStateL()
CBufFlat* buf = CBufFlat::NewL( KTwoHundred );
CleanupStack::PushL( buf );
RBufWriteStream stream;
stream.Open( *buf );
iSettingPage->WriteInternalStateL( stream );
AssertTrueL( ETrue, KWriteInternalStateL );
stream.Close();
CleanupStack::PopAndDestroy( buf );
// Invoke CAknPopupSettingPage's PopupSettingListBox()
CAknPopupSettingList* popSettingList =
iSettingPage->PopupSettingListBox();
AssertTrueL( ETrue, KPopupSettingListBox );
TestFunctionsForSettingListL( popSettingList, queryValueText );
delete iSettingPage;
iSettingPage = NULL;
CleanupStack::PopAndDestroy( queryValueText );
CleanupStack::PopAndDestroy( textArray );
CleanupStack::PopAndDestroy( item );
}
// ---------------------------------------------------------------------------
// CBCTestPopupSettingPageCase::TestFunctionsForSettingListL
// ---------------------------------------------------------------------------
//
void CBCTestPopupSettingPageCase::TestFunctionsForSettingListL(
CAknPopupSettingList* aPopSettingList, MAknQueryValue* aQueryValueText )
{
// Invoke CAknPopupSettingList's SetQueryValueL()
aPopSettingList->SetQueryValueL( aQueryValueText );
AssertTrueL( ETrue, KPSLSetQueryValueL );
// Invoke CAknPopupSettingList's NumLines()
aPopSettingList->NumLines();
AssertTrueL( ETrue, KPSLNumLines );
// Invoke CAknPopupSettingList's SetPopupSettingListObserver()
aPopSettingList->SetPopupSettingListObserver( iSettingPage );
AssertTrueL( ETrue, KPSLSetPopupSettingListObserver );
// Invoke CAknPopupSettingList's SetAllowsUserDefinedEntry()
aPopSettingList->SetAllowsUserDefinedEntry( EFalse );
aPopSettingList->SetAllowsUserDefinedEntry( ETrue );
AssertTrueL( ETrue, KPopupSettingListSetAllowsUserDefinedEntry );
// Invoke CAknPopupSettingList's SetShowIndicators()
aPopSettingList->SetShowIndicators( ETrue );
AssertTrueL( ETrue, KPopupSettingListSetShowIndicators );
// Invoke CAknPopupSettingList's HandlePointerEventL()
TPointerEvent pointEvent;
pointEvent.iType = TPointerEvent::ESwitchOn;
aPopSettingList->HandlePointerEventL( pointEvent );
AssertTrueL( ETrue, KPopupSettingListHandlePointerEventL );
// Invoke CAknPopupSettingList's HandleResourceChange()
aPopSettingList->HandleResourceChange( 0 );
AssertTrueL( ETrue, KPopupSettingListHandleResourceChange );
CBCTestSubAknPopupSettingList* subPopSettingList =
static_cast<CBCTestSubAknPopupSettingList*> ( aPopSettingList );
// Invoke CAknPopupSettingList's CreateMenuListL()
subPopSettingList->CreateMenuListL();
AssertTrueL( ETrue, KPopupSettingListCreateMenuListL );
// Invoke CAknPopupSettingList's ActivateMenuListL()
subPopSettingList->ActivateMenuListL();
AssertTrueL( ETrue, KPopupSettingListActivateMenuListL );
// Invoke CAknPopupSettingList's DestroyMenuList()
subPopSettingList->DestroyMenuList();
AssertTrueL( ETrue, KPopupSettingListDestroyMenuList );
// Invoke CAknPopupSettingList's ConfigureMenuListL()
subPopSettingList->ConfigureMenuListL();
AssertTrueL( ETrue, KPopupSettingListConfigureMenuListL );
// Invoke CAknPopupSettingList's HandleListBoxEventL()
CEikTextListBox* listBox = new( ELeave ) CAknSinglePopupMenuStyleListBox;
CleanupStack::PushL( listBox );
subPopSettingList->HandleListBoxEventL( listBox,
MEikListBoxObserver::EEventItemClicked );
AssertTrueL( ETrue, KPopupSettingListHandleListBoxEventL );
CleanupStack::PopAndDestroy( listBox );
// Invoke CAknPopupSettingList's CAknPopupSettingList()
CAknPopupSettingList* popupSettingList =
new( ELeave ) CAknPopupSettingList();
AssertNotNullL( popupSettingList, KCAknPopupSettingList );
CleanupStack::PushL( popupSettingList );
CleanupStack::PopAndDestroy( popupSettingList );
}
// ---------------------------------------------------------------------------
// CBCTestPopupSettingPageCase::TestFunctionForPopLayoutsL
// ---------------------------------------------------------------------------
//
void CBCTestPopupSettingPageCase::TestFunctionForPopLayoutsL()
{
CEikTextListBox* list = new( ELeave ) CAknSinglePopupMenuStyleListBox;
CleanupStack::PushL( list );
CBCTestSubAknPopupList* popupList = ( CBCTestSubAknPopupList* )
CBCTestSubAknPopupList::NewL( list, R_AVKON_SOFTKEYS_SELECT_CANCEL,
AknPopupLayouts::EMenuWindow );
CleanupStack::PushL( popupList );
popupList->SetMaximumHeight( KTwo );
list->ConstructL( popupList, CEikListBox::ELeftDownInViewRect );
list->CreateScrollBarFrameL( ETrue );
list->ScrollBarFrame()->SetScrollBarVisibilityL(
CEikScrollBarFrame::EOff, CEikScrollBarFrame::EAuto );
CDesCArray* items =
iEikEnv->ReadDesCArrayResourceL( R_BCTESTPOPUPS_EIGHT_TEXT_ARRAY );
CTextListBoxModel* model = list->Model();
model->SetItemTextArray( items );
model->SetOwnershipType( ELbmOwnsItemArray );
TAknPopupLayoutsNode lst = { 0, EListNode, popupList->ListBox() };
TAknPopupLayoutsNode heading = { &lst,
EHeadingNode, popupList->Heading() };
TAknPopupLayoutsNode windowOwning = { &heading,
EWindowOwningNode, popupList };
TAknPopupLayoutsNode findPane =
{ &windowOwning, EFindBoxNode, ( CCoeControl* ) popupList->FindBox() };
TAknPopupLayoutsNode *listBegin = &findPane;
AknPopupLayouts::HandleSizeChanged( popupList->Layout(),
AknPopupLayouts::EMenuWindow,
listBegin );
AssertTrueL( ETrue, KLayoutHandleSizeChanged );
AknPopupLayouts::HandleSizeChanged(
popupList->Layout(),
AknPopupLayouts::EMenuWindow,
popupList->Heading(),
popupList->ListBox(),
popupList
);
AssertTrueL( ETrue, KLayoutHandleSizeChanged );
AknPopupLayouts::ModifyWindowGraphicForHeading( popupList->Layout() );
AssertTrueL( ETrue, KLayoutModifyWindowGraphicForHeading );
AknPopupLayouts::ModifyWindowGraphicForMessageBox(
popupList->Layout(), KTwo );
AknPopupLayouts::ModifyWindowGraphicForMessageBox(
popupList->Layout(), KThree );
AssertTrueL( ETrue, KLayoutModifyWindowGraphicForMessageBox );
TRect rect;
AknPopupLayouts::CalcPopupMenuWindow( popupList->Layout(), rect, KTwo );
AssertTrueL( ETrue, KLayoutCalcPopupMenuWindow );
AknPopupLayouts::CalcPopupMenuGraphicWindow( popupList->Layout(),
rect, KTwo );
AssertTrueL( ETrue, KLayoutCalcPopupMenuGraphicWindow );
AknPopupLayouts::CalcPopupMenuGraphicHeadingWindow( popupList->Layout(),
rect, KTwo );
AssertTrueL( ETrue, KLayoutCalcPopupMenuGraphicHeadingWindow );
AknPopupLayouts::CalcPopupMenuDoubleWindow( popupList->Layout(),
rect, KTwo );
AknPopupLayouts::CalcPopupMenuDoubleWindow( popupList->Layout(),
rect, KOne );
AssertTrueL( ETrue, KLayoutCalcPopupMenuDoubleWindow );
AknPopupLayouts::CalcPopupMenuDoubleLargeGraphicWindow(
popupList->Layout(),
rect,
KTwo );
AknPopupLayouts::CalcPopupMenuDoubleLargeGraphicWindow(
popupList->Layout(),
rect,
KOne );
AssertTrueL( ETrue, KLayoutCalcPopupMenuDoubleLargeGraphicWindow );
AknPopupLayouts::CalcPopupSNoteGroupWindow( popupList->Layout(),
rect, KOne );
AssertTrueL( ETrue, KLayoutCalcPopupSNoteGroupWindow );
AknPopupLayouts::SetupMenuPopupWindow( popupList->Layout(), KOne, ETrue );
AssertTrueL( ETrue, KLayoutSetupMenuPopupWindow );
AknPopupLayouts::SetupPopupMenuGraphicWindow( popupList->Layout(),
KOne, ETrue );
AssertTrueL( ETrue, KLayoutSetupPopupMenuGraphicWindow );
AknPopupLayouts::SetupPopupMenuGraphicHeadingWindow( popupList->Layout(),
KOne, ETrue );
AssertTrueL( ETrue, KLayoutSetupPopupMenuGraphicHeadingWindow );
AknPopupLayouts::SetupPopupMenuDoubleWindow( popupList->Layout(),
KOne, ETrue );
AssertTrueL( ETrue, KLayoutSetupPopupMenuDoubleWindow );
AknPopupLayouts::SetupImageSelectionMenuPopupWindow( popupList->Layout(),
KOne, ETrue );
AssertTrueL( ETrue, KLayoutSetupImageSelectionMenuPopupWindow );
AknPopupLayouts::SetupPopupSNoteGroupWindow( popupList->Layout(),
KOne, ETrue );
AssertTrueL( ETrue, KLayoutSetupPopupSNoteGroupWindow );
AknPopupLayouts::HandleSizeAndPositionOfComponents(
popupList->Layout(),
popupList->ListBox(),
popupList->Heading() );
AssertTrueL( ETrue, KLayoutHandleSizeAndPositionOfComponents );
AknPopupLayouts::SetupDefaults( popupList->Layout() );
AssertTrueL( ETrue, KLayoutSetupDefaults );
rect = AknPopupLayouts::WindowRect( popupList->Layout() );
AssertTrueL( ETrue, KLayoutWindowRectA );
rect = AknPopupLayouts::MenuRect( popupList->Layout() );
AssertTrueL( ETrue, KLayoutMenuRect );
TInt value = 1;
AknPopupLayouts::CheckRange( value, KTwo, KThree );
value = 5;
AknPopupLayouts::CheckRange( value, KOne, KThree );
AssertTrueL( ETrue, KLayoutCheckRange );
AknPopupLayouts::MenuPopupWindowGraphics( popupList->Layout() );
AssertTrueL( ETrue, KLayoutMenuPopupWindowGraphics );
CleanupStack::PopAndDestroy( popupList ); // listBox and popupList
CleanupStack::PopAndDestroy( list );
}
|
7fdecc20e92dbde134781ef5fe75e32d757564b7 | 13e980a17ab3fa42493e0dcd8fcb41f073ed71d5 | /2DFrameWork/endingScene.cpp | e7b62ea93937fc1488f9ea69c9755c8730bbe655 | [] | no_license | denialboy1/DragonsCrown | a03f0b55f479d8c8eb6c6f3603c1a2e23efedd61 | ddb22b513c18eb3783d4b77e1e3afcd5c9bae3af | refs/heads/master | 2020-05-20T10:51:05.202576 | 2020-04-03T16:47:20 | 2020-04-03T16:47:20 | 185,532,217 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 623 | cpp | endingScene.cpp | #include "stdafx.h"
#include "endingScene.h"
endingScene::endingScene()
{
}
endingScene::~endingScene()
{
}
HRESULT endingScene::init(){
//๋์์ ์ด๊ธฐํ
if (getHVideo()){
MCIWndClose(getHVideo());
MCIWndDestroy(getHVideo());
setHVideo(0);
}
setHVideo(MCIWndCreateA(_hWnd, _hInstance, MCIWNDF_NOMENU | MCIWNDF_NOOPEN | MCIWNDF_NOPLAYBAR | MCIWNDF_NOTIFYALL, "๋์์/์๋ฉ.wmv"));
SetWindowPos(getHVideo(), NULL, 0, 0, WINSIZEX, WINSIZEY, NULL);
if (getHVideo()){
MCIWndPlay(getHVideo());
}
return S_OK;
}
void endingScene::update(){}
void endingScene::render(){}
void endingScene::release(){} |
2fc363b927ae1cca2992b83f963e2d418ec8ba5d | e3c0499cc58c9fbec887a2e85672d5e29588f9e0 | /com/flty.h | 84f364c43e678661b7760f2cb295754ee1cc6984 | [
"BSD-3-Clause"
] | permissive | stevenknown/xoc | bf19fba2a7851f0c91d62846b61f12000993fa94 | 3514aaf0d742e7c1bff956f5a5e96a92102abe8a | refs/heads/master | 2023-05-14T10:18:34.851859 | 2023-04-29T08:15:24 | 2023-04-29T08:15:24 | 40,242,945 | 132 | 19 | NOASSERTION | 2023-09-08T08:04:04 | 2015-08-05T12:02:52 | C++ | UTF-8 | C++ | false | false | 4,789 | h | flty.h | /*@
XOC Release License
Copyright (c) 2013-2014, Alibaba Group, All rights reserved.
compiler@aliexpress.com
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 Su Zhenyu nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY 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.
author: Su Zhenyu
@*/
#ifndef __FLTY_H__
#define __FLTY_H__
namespace xcom {
#define PRECISION_TYPE double
//The precision of 'double' is too high to
//some operation of those value that approaching infinitesimal.
//e.g: when the value is 0.00000000000000066613381477509392,
//it should approximately equals to 0 in actually.
//#define INFINITESIMAL 0.00000000000000001
#define INFINITESIMAL 0.000001
class Float {
friend Float zerolinz(Float const& a);
friend bool operator == (Float const& a, Float const& b);
friend bool operator != (Float const& a, Float const& b);
friend bool operator < (Float const& a, Float const& b);
friend bool operator <= (Float const& a, Float const& b);
friend bool operator > (Float const& a, Float const& b);
friend bool operator >= (Float const& a, Float const& b);
friend Float operator * (Float const& a, Float const& b);
friend Float operator / (Float const& a, Float const& b);
friend Float operator + (Float const& a, Float const& b);
friend Float operator - (Float const& a, Float const& b);
friend Float operator - (Float a);
protected:
PRECISION_TYPE m_f;
public:
Float() { m_f = PRECISION_TYPE(0); }
Float(Float const& f)
{
//Sometimes, r does not require to initialize always.
//ASSERTN(r.m_den != 0, ("denominator is 0!"));
m_f = f.m_f;
}
Float(PRECISION_TYPE f) { m_f = f; }
Float & operator = (Float const& a)
{
m_f = a.m_f;
return *this;
}
//Calculate the floor boundary.
INT typecast2int() { return (INT)m_f; }
bool is_int();
PRECISION_TYPE f() const { return m_f; }
PRECISION_TYPE & f() { return m_f; }
void reduce() {}
CHAR const* dump(StrBuf & buf) const;
void dump() const;
};
//Exported Functions
bool operator == (Float const& a, Float const& b);
bool operator != (Float const& a, Float const& b);
inline bool operator != (Float const& a, Float const& b) { return !(a == b); }
inline bool operator < (Float const& a, Float const& b)
{ return a.m_f < b.m_f; }
inline bool operator <= (Float const& a, Float const& b)
{ return (a.m_f < b.m_f) || (a == b); }
inline bool operator > (Float const& a, Float const& b)
{ return a.m_f > b.m_f; }
inline bool operator >= (Float const& a, Float const& b)
{ return (a.m_f > b.m_f) || (a == b); }
inline Float operator * (Float const& a, Float const& b)
{
//return Float(integralize(integralize(a.m_f) * integralize(b.m_f)));
return Float(a.m_f * b.m_f);
}
inline Float operator / (Float const& a, Float const& b)
{
//return Float(integralize(integralize(a.m_f) / integralize(b.m_f)));
return Float(a.m_f / b.m_f);
}
inline Float operator + (Float const& a, Float const& b)
{
//return Float(integralize(integralize(a.m_f) + integralize(b.m_f)));
return Float(a.m_f + b.m_f);
}
//Subtration operation
inline Float operator - (Float const& a, Float const& b)
{
//return Float(integralize(integralize(a.m_f) - integralize(b.m_f)));
return Float(a.m_f - b.m_f);
}
//Minus operation
inline Float operator - (Float a)
{
a.m_f = -(a.m_f);
return a;
}
PRECISION_TYPE integralize(PRECISION_TYPE const& a);
Float zerolinz(Float const& a);
} //namespace xcom
#endif
|
6f94f190317bc5d917f5f92c5527328791b796ab | b5e49d5cc2f95cdb07449b7c58c5368ebf0deb23 | /C++/seq_num/653_e.cpp | 18751bf0699ac24687937f9e0affcde3fbf64d55 | [] | no_license | changsongzhu/leetcode | f5140afe8d4a397a9a785b72a12df2c20804ea92 | fea7de085e3f7b012e6bbf661569de00d2a3eb3e | refs/heads/master | 2021-01-22T18:54:04.308549 | 2018-03-30T21:50:48 | 2018-03-30T21:50:48 | 85,131,357 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,018 | cpp | 653_e.cpp | /**
653[E]. Path Sum IV -- Input is a BST
Given a Binary Search Tree and a target number, return true if there exist two elements in the BST such that their sum is equal to the given target.
Example 1:
Input:
5
/ \
3 6
/ \ \
2 4 7
Target = 9
Output: True
Example 2:
Input:
5
/ \
3 6
/ \ \
2 4 7
Target = 28
**/
Output: False
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
bool findTarget(TreeNode* root, int k) {
map<int, int> m;
stack<TreeNode*>stk;
stk.push(root);
while(!stk.empty())
{
TreeNode *cur=stk.top();stk.pop();
if(m.count(k-cur->val)) return true;
m[cur->val]++;
if(cur->right) stk.push(cur->right);
if(cur->left) stk.push(cur->left);
}
return false;
}
};
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.