diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000000000000000000000000000000000000..79a4dca0962b3a38e5a245a7a958b44efa6c0986 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,10 @@ +JuPedSim contributors: + +Andrea Portz +David Haensel +Denis Shhikhalev +Erik Andresen +Jun Zhang +Mohcine Chraibi +Oliver Schmidt +Ulrich Kemloh diff --git a/Analysis.cpp b/Analysis.cpp index 6f73411d9afdde4548f1bdc8811a415a3f9511be..75c93c2e114f10f3a26db6e320937e4765c81bd3 100644 --- a/Analysis.cpp +++ b/Analysis.cpp @@ -32,12 +32,18 @@ #include "geometry/Room.h" #include "geometry/SubRoom.h" -#include "VoronoiDiagram.h" +#include "methods/VoronoiDiagram.h" +#include "methods/Method_A.h" +#include "methods/Method_B.h" +#include "methods/Method_C.h" +#include "methods/Method_D.h" +#include "methods/PedData.h" #include <iostream> #include <fstream> #include <sstream> #include <vector> +#include <cfloat> #include <stdlib.h> #include <algorithm> // std::min_element, std::max_element @@ -54,7 +60,7 @@ using namespace std; -OutputHandler* Log; +OutputHandler* Log = new STDIOHandler(); /************************************************ // Konstruktoren @@ -63,37 +69,18 @@ OutputHandler* Log; Analysis::Analysis() { _building = NULL; - _numFrames = 0; - - _tIn = NULL; - _tOut = NULL; - _maxNumofPed =0; //the maximum index of the pedestrian in the trajectory data - _deltaF=5; - // half of the time interval that used to calculate instantaneous velocity of ped i. - // here v_i = (X(t+deltaF) - X(t+deltaF))/(2*deltaF). X is location. - _xCor = NULL; - _yCor = NULL; - _firstFrame = NULL; // Record the first frame of each pedestrian - _lastFrame = NULL; // Record the last frame of each pedestrian + _projectRootDir=""; + _deltaF=5; // half of the time interval that used to calculate instantaneous velocity of ped i. Here v_i = (X(t+deltaF) - X(t+deltaF))/(2*deltaF). X is location. _deltaT =160; // the time interval to calculate the classic flow - _flowVelocity = false; // Method A (Zhang2011a) - _fundamentalTinTout = false; // Method B (Zhang2011a) - _classicMethod = false; // Method C //calculate and save results of classic in separate file - _voronoiMethod = false; // Method D--Voronoi method + _DoesUseMethodA = false; // Method A (Zhang2011a) + _DoesUseMethodB = false; // Method B (Zhang2011a) + _DoesUseMethodC = false; // Method C //calculate and save results of classic in separate file + _DoesUseMethodD = false; // Method D--Voronoi method _cutByCircle = false; //Adjust whether cut each original voronoi cell by a circle _getProfile = false; // Whether make field analysis or not _outputGraph = false; // Whether output the data for plot the fundamental diagram each frame _calcIndividualFD = false; //Adjust whether analyze the individual density and velocity of each pedestrian in stationary state (ALWAYS VORONOI-BASED) _vComponent = 'B'; // to mark whether x, y or x and y coordinate are used when calculating the velocity - //AccumPedsPassLine = NULL; // the accumulative pedestrians pass a line with time - //AccumVPassLine = NULL; // the accumulative instantaneous velocity of the pedestrians pass a line - _fps = 16; // Frame rate of data - _fClassicRhoV = NULL; - _fVoronoiRhoV = NULL; - _individualFD = NULL; - _fN_t = NULL; - DensityPerFrame = NULL; // the measured density in each frame - PassLine = NULL; _scaleX = 0.10; // the size of the grid _scaleY = 0.10; @@ -102,21 +89,6 @@ Analysis::Analysis() _highVertexX = 10; // Highest vertex of the geometry _highVertexY = 10; - _projectRootDir=""; - - _areaForMethod_A=NULL; - _areaForMethod_B=NULL; - _areaForMethod_C=NULL; - _areaForMethod_D=NULL; - - IdInFrame = NULL; - XInFrame = NULL; - YInFrame = NULL; - VInFrame = NULL; - ClassicFlow = 0; - V_deltaT = 0; - min_ID = INT_MAX; - min_Frame = INT_MAX; _cutRadius=1.0; _circleEdges=6; _trajFormat=FileFormat::FORMAT_PLAIN; @@ -125,20 +97,8 @@ Analysis::Analysis() Analysis::~Analysis() { delete _building; - delete [] _firstFrame; - delete [] _lastFrame; - delete [] _tIn; - delete [] _tOut; - - for (int i=0; i<_maxNumofPed; i++) { - delete [] _xCor[i]; - delete [] _yCor[i]; - } - delete [] _xCor; - delete [] _yCor; } - // file.txt ---> file std::string Analysis::GetBasename (const std::string& str) { @@ -154,7 +114,6 @@ std::string Analysis::GetFilename (const std::string& str) return str.substr(found+1); } - void Analysis::InitArgs(ArgumentParser* args) { string s = "Parameter:\n"; @@ -176,32 +135,44 @@ void Analysis::InitArgs(ArgumentParser* args) } break; default: - printf("Wrong option for Logfile!\n\n"); + Log->Write("Wrong option for Log file!"); exit(0); } - Log->Write("INFO: \tOptionen an Simulation geben\n"); - - if(args->GetIsMethodA()) { - _flowVelocity = true; - _areaForMethod_A = dynamic_cast<MeasurementArea_L*>( args->GetMeasurementArea(args->GetAreaIDforMethodA()) ); + _DoesUseMethodA = true; + vector<int> Measurement_Area_IDs = args->GetAreaIDforMethodA(); + for(unsigned int i=0; i<Measurement_Area_IDs.size(); i++) + { + _areaForMethod_A.push_back(dynamic_cast<MeasurementArea_L*>( args->GetMeasurementArea(Measurement_Area_IDs[i]))); + } } if(args->GetIsMethodB()) { - _fundamentalTinTout = true; - _classicMethod = true; - _areaForMethod_B = dynamic_cast<MeasurementArea_B*>( args->GetMeasurementArea(args->GetAreaIDforMethodB()) ); + _DoesUseMethodB = true; + vector<int> Measurement_Area_IDs = args->GetAreaIDforMethodB(); + for(unsigned int i=0; i<Measurement_Area_IDs.size(); i++) + { + _areaForMethod_B.push_back(dynamic_cast<MeasurementArea_B*>( args->GetMeasurementArea(Measurement_Area_IDs[i]))); + } } if(args ->GetIsMethodC()) { - _classicMethod = true; - _areaForMethod_C = dynamic_cast<MeasurementArea_B*>( args->GetMeasurementArea(args->GetAreaIDforMethodC()) ); + _DoesUseMethodC = true; + vector<int> Measurement_Area_IDs = args->GetAreaIDforMethodC(); + for(unsigned int i=0; i<Measurement_Area_IDs.size(); i++) + { + _areaForMethod_C.push_back(dynamic_cast<MeasurementArea_B*>( args->GetMeasurementArea(Measurement_Area_IDs[i]))); + } } if(args ->GetIsMethodD()) { - _voronoiMethod = true; - _areaForMethod_D = dynamic_cast<MeasurementArea_B*>( args->GetMeasurementArea(args->GetAreaIDforMethodD()) ); + _DoesUseMethodD = true; + vector<int> Measurement_Area_IDs = args->GetAreaIDforMethodD(); + for(unsigned int i=0; i<Measurement_Area_IDs.size(); i++) + { + _areaForMethod_D.push_back(dynamic_cast<MeasurementArea_B*>( args->GetMeasurementArea(Measurement_Area_IDs[i]))); + } } _deltaF = args->GetDelatT_Vins(); @@ -211,18 +182,17 @@ void Analysis::InitArgs(ArgumentParser* args) _outputGraph = args->GetIsOutputGraph(); _calcIndividualFD = args->GetIsIndividualFD(); _vComponent = args->GetVComponent(); - _scaleX = int(args->GetScaleX()*M2CM); - _scaleY = int(args->GetScaleY()*M2CM); - _geoPoly = ReadGeometry(args->GetGeometryFilename()); + _scaleX = int(args->GetScaleX()); + _scaleY = int(args->GetScaleY()); + _geoPoly = ReadGeometry(args->GetGeometryFilename(), _areaForMethod_D); _projectRootDir=args->GetProjectRootDir(); _trajFormat=args->GetFileFormat(); - _cutRadius=args->GetCutRadius()*M2CM; + _cutRadius=args->GetCutRadius(); _circleEdges=args->GetCircleEdges(); - Log->Write("INFO: \tGeometrie file: [%s]\n", args->GetGeometryFilename().c_str()); - } -polygon_2d Analysis::ReadGeometry(const string& geometryFile) + +std::map<int, polygon_2d> Analysis::ReadGeometry(const std::string& geometryFile, const std::vector<MeasurementArea_B*>& areas) { _building = new Building(); @@ -235,993 +205,164 @@ polygon_2d Analysis::ReadGeometry(const string& geometryFile) double geo_maxX = -FLT_MAX; double geo_maxY = -FLT_MAX; - polygon_2d geoPoly; - vector<Obstacle*> GeoObst; - for(int i=0; i<_building->GetNumberOfRooms(); i++) { - Room* room=_building->GetRoom(i); - - for( int j=0; j<room->GetNumberOfSubRooms(); j++) { - SubRoom* subroom = room->GetSubRoom(i); - const vector<Point>& temp_GeoPoly = subroom->GetPolygon(); - for (unsigned int j = 0; j< temp_GeoPoly.size(); j++) { - append(geoPoly, make<point_2d>(temp_GeoPoly[j]._x*M2CM, temp_GeoPoly[j]._y*M2CM)); - geo_minX = (temp_GeoPoly[j]._x*M2CM<=geo_minX) ? (temp_GeoPoly[j]._x*M2CM) : geo_minX; - geo_minY = (temp_GeoPoly[j]._y*M2CM<=geo_minY) ? (temp_GeoPoly[j]._y*M2CM) : geo_minY; - geo_maxX = (temp_GeoPoly[j]._x*M2CM>=geo_maxX) ? (temp_GeoPoly[j]._x*M2CM) : geo_maxX; - geo_maxY = (temp_GeoPoly[j]._y*M2CM>=geo_maxY) ? (temp_GeoPoly[j]._y*M2CM) : geo_maxY; - - } - correct(geoPoly); - GeoObst = subroom->GetAllObstacles(); - } - for (unsigned int k = 0; k < GeoObst.size(); k++) { - const vector<Point>& temp_obst = GeoObst[k]->GetPolygon(); - - geoPoly.inners().resize(k+1); - geoPoly.inners().back(); - model::ring<point_2d>& inner = geoPoly.inners().back(); - for (unsigned int j = 0; j< temp_obst.size(); j++) { - append(inner, make<point_2d>(temp_obst[j]._x*M2CM, temp_obst[j]._y*M2CM)); - } - correct(geoPoly); - } - } - - _highVertexX = geo_maxX; - _highVertexY = geo_maxY; - _lowVertexX = geo_minX; - _lowVertexY = geo_minY; - cout<<dsv(geoPoly)<<endl; - return geoPoly; -} + std::map<int, polygon_2d> geoPoly; -void Analysis::InitializeFiles(const string& trajectoriesFilename) -{ - if(_classicMethod) { - string results_C= _projectRootDir+"./Output/Fundamental_Diagram/Classical_Voronoi/rho_v_Classic_"+trajectoriesFilename+".dat"; - if((_fClassicRhoV=CreateFile(results_C))==NULL) { - Log->Write("cannot open file %s to write classical density and velocity\n", results_C.c_str()); - exit(EXIT_FAILURE); - } - fprintf(_fClassicRhoV,"#Frame \tclassical density(m^(-2))\t classical velocity(m/s)\n"); - } - if(_voronoiMethod) { - string results_V= _projectRootDir+"./Output/Fundamental_Diagram/Classical_Voronoi/rho_v_Voronoi_"+trajectoriesFilename+".dat"; - if((_fVoronoiRhoV=CreateFile(results_V))==NULL) { - Log->Write("cannot open the file to write Voronoi density and velocity\n"); - exit(EXIT_FAILURE); - } - fprintf(_fVoronoiRhoV,"#Frame \t Voronoi density(m^(-2))\t Voronoi velocity(m/s)\n"); - } - - if(_calcIndividualFD) { - string Individualfundment=_projectRootDir+"./Output/Fundamental_Diagram/Individual_FD/IndividualFD"+trajectoriesFilename+".dat"; - if((_individualFD=CreateFile(Individualfundment))==NULL) { - Log->Write("cannot open the file individual\n"); - exit(EXIT_FAILURE); - } - fprintf(_individualFD,"#Frame \t PedId \t Individual density(m^(-2))\t Individual velocity(m/s)\n"); - } - - if(_flowVelocity) { - string N_t= _projectRootDir+"./Output/Fundamental_Diagram/FlowVelocity/Flow_NT_"+trajectoriesFilename+"_Out.dat"; - if((_fN_t=CreateFile(N_t))==NULL) { - Log->Write("cannot open the file %s t\n", N_t.c_str() ); - exit(EXIT_FAILURE); - } - fprintf(_fN_t,"#Frame\t Cumulative pedestrians\n"); - } - -} - -void Analysis::InitializeVariables(const string& filename) -{ - vector<double> xs; - vector<double> ys; - ifstream fdata; - fdata.open(filename.c_str()); - if (fdata.is_open() == false) - { - Log->Write("ERROR: \t could not parse the trajectories file <%s>",filename.c_str()); - exit(EXIT_FAILURE); - } - else + //loop over all areas + for(auto&& area: areas) { - string line; - int lineNr=1; - while ( getline(fdata,line) ) + //search for the subroom that containst that area + for (auto&& it_room : _building->GetAllRooms()) { - //looking for the framerate which is suppposed to be at the second position - if(line[0] == '#') - { - std::vector<std::string> strs; - boost::split(strs, line , boost::is_any_of(":"),boost::token_compress_on); - - if(strs[0]=="#framerate" && strs.size()==2) - { - _fps= atof(strs[1].c_str()); - Log->Write("INFO:\tFrame rate fps=%d", _fps); - } - - } - else if ( line[0] != '#' && !(line.empty()) ) + for (auto&& it_sub : it_room.second->GetAllSubRooms()) { + SubRoom* subroom = it_sub.second.get(); - std::vector<std::string> strs; - boost::split(strs, line , boost::is_any_of("\t "),boost::token_compress_on); + point_2d point(0,0); + boost::geometry::centroid(area->_poly,point); - if(strs.size() <4) + //check if the area is contained in the obstacle + if(subroom->IsInSubRoom(Point(point.x()/M2CM,point.y()/M2CM))) { - Log->Write("ERROR:\t There is an error in the file at line %d", lineNr); - exit(EXIT_FAILURE); - } - - _IdsTXT.push_back(atoi(strs[0].c_str())); - _FramesTXT.push_back(atoi(strs[1].c_str())); + for (auto&& tmp_point : subroom->GetPolygon()) + { + append(geoPoly[area->_id], make<point_2d>(tmp_point._x*M2CM, tmp_point._y*M2CM)); + geo_minX = (tmp_point._x*M2CM<=geo_minX) ? (tmp_point._x*M2CM) : geo_minX; + geo_minY = (tmp_point._y*M2CM<=geo_minY) ? (tmp_point._y*M2CM) : geo_minY; + geo_maxX = (tmp_point._x*M2CM>=geo_maxX) ? (tmp_point._x*M2CM) : geo_maxX; + geo_maxY = (tmp_point._y*M2CM>=geo_maxY) ? (tmp_point._y*M2CM) : geo_maxY; + } + correct(geoPoly[area->_id]); - xs.push_back(atof(strs[2].c_str())); - ys.push_back(atof(strs[3].c_str())); + //appen the holes/obstacles if any + int k=0; + for(auto&& obst: subroom->GetAllObstacles()) + { + geoPoly[area->_id].inners().resize(k++); + geoPoly[area->_id].inners().back(); + model::ring<point_2d>& inner = geoPoly[area->_id].inners().back(); + + for(auto&& tmp_point:obst->GetPolygon()) + { + append(inner, make<point_2d>(tmp_point._x*M2CM, tmp_point._y*M2CM)); + } + correct(geoPoly[area->_id]); + } + } } - lineNr++; } - } - fdata.close(); - - min_ID = *min_element(_IdsTXT.begin(),_IdsTXT.end()); - min_Frame = *min_element(_FramesTXT.begin(),_FramesTXT.end()); - - //Total number of frames - _numFrames = *max_element(_FramesTXT.begin(),_FramesTXT.end()) - min_Frame+1; - - //Total number of agents - _maxNumofPed = *max_element(_IdsTXT.begin(),_IdsTXT.end()) - min_ID+1; - CreateGlobalVariables(_maxNumofPed, _numFrames); - std::vector<int> firstFrameIndex; //The first frame index of each pedestrian - std::vector<int> lastFrameIndex; //The last frame index of each pedestrian - int prevValue = _IdsTXT[0] - 1; - for (size_t i = 0; i < _IdsTXT.size(); i++) - { - if (prevValue != _IdsTXT[i]) + if(geoPoly.count(area->_id)==0) { - firstFrameIndex.push_back(i); - prevValue = _IdsTXT[i]; + Log->Write("ERROR: \t No polygon containing the measurement id [%d]", area->_id); + exit(1); } } - for (size_t i = 1; i < firstFrameIndex.size(); i++) - { - lastFrameIndex.push_back(firstFrameIndex[i] - 1); - } - lastFrameIndex.push_back(_IdsTXT.size() - 1); - for (unsigned int i = 0; i < firstFrameIndex.size(); i++) - { - _firstFrame[i] = _FramesTXT[firstFrameIndex[i]] - min_Frame; - _lastFrame[i] = _FramesTXT[lastFrameIndex[i]] - min_Frame; - } - - bool IsinMeasurezone[_maxNumofPed]; // Record whether pedestrian i is in measurement area or not - for(unsigned int i = 0; i < _IdsTXT.size(); i++) - { - int ID = _IdsTXT[i] - min_ID; - int frm = _FramesTXT[i] - min_Frame; - double x = xs[i]*M2CM; - double y = ys[i]*M2CM; - _xCor[ID][frm] = x; - _yCor[ID][frm] = y; - if(_fundamentalTinTout==true) - { - if(within(make<point_2d>( (x), (y)), _areaForMethod_B->_poly)&&!(IsinMeasurezone[ID])) { - _tIn[ID]=frm; - IsinMeasurezone[ID] = true; - } - if((!within(make<point_2d>( (x), (y)), _areaForMethod_B->_poly))&&IsinMeasurezone[ID]) { - _tOut[ID]=frm; - IsinMeasurezone[ID] = false; - } - } - } - - //save the data for each frame - for (unsigned int i = 0; i < _FramesTXT.size(); i++ ) - { - int id = _IdsTXT[i]-min_ID; - int t =_FramesTXT[i]-min_Frame; - peds_t[t].push_back(id); - } + _highVertexX = geo_maxX; + _highVertexY = geo_maxY; + _lowVertexX = geo_minX; + _lowVertexY = geo_minY; + //cout<<"INFO: \tGeometry polygon is:\t"<<dsv(geoPoly)<<endl; + return geoPoly; } -// initialize the global variables variables -void Analysis::InitializeVariables(TiXmlElement* xRootNode) -{ - if( ! xRootNode ) { - Log->Write("ERROR:\tRoot element does not exist"); - exit(EXIT_FAILURE); - } - if( xRootNode->ValueStr () != "trajectoriesDataset" ) { - Log->Write("ERROR:\tRoot element value is not 'geometry'."); - exit(EXIT_FAILURE); - } - - //counting the number of frames - int frames = 0; - for(TiXmlElement* xFrame = xRootNode->FirstChildElement("frame"); xFrame; - xFrame = xFrame->NextSiblingElement("frame")) { - frames++; - } - _numFrames = frames; - Log->Write("INFO:\tnum Frames = %d",_numFrames); - - //Number of agents - TiXmlNode* xHeader = xRootNode->FirstChild("header"); // header - if(xHeader->FirstChild("agents")) { - _maxNumofPed=atoi(xHeader->FirstChild("agents")->FirstChild()->Value()); - Log->Write("INFO:\tmax num of peds N=%d", _maxNumofPed); - } - - //framerate - if(xHeader->FirstChild("frameRate")) { - _fps=atoi(xHeader->FirstChild("frameRate")->FirstChild()->Value()); - Log->Write("INFO:\tFrame rate fps=%d", _fps); +int Analysis::RunAnalysis(const string& filename, const string& path) +{ + PedData data; + if(data.ReadData(_projectRootDir, path, filename, _trajFormat, _deltaF, _vComponent)==false) + { + Log->Write("ERROR:\tCould not parse the file"); + return -1; } - CreateGlobalVariables(_maxNumofPed, _numFrames); - bool IsinMeasurezone[_maxNumofPed]; // Record whether pedestrian i is in measurement area or not - //processing the frames node - TiXmlNode* xFramesNode = xRootNode->FirstChild("frame"); - if (!xFramesNode) { - Log->Write("ERROR: \tThe geometry should have at least one frame"); - exit(EXIT_FAILURE); - } - // obtaining the minimum id and minimum frame - for(TiXmlElement* xFrame = xRootNode->FirstChildElement("frame"); xFrame; - xFrame = xFrame->NextSiblingElement("frame")) + if(_DoesUseMethodA) //Method A { - int frm = atoi(xFrame->Attribute("ID")); - if(frm < min_Frame) - { - min_Frame = frm; - } - for(TiXmlElement* xAgent = xFrame->FirstChildElement("agent"); xAgent; - xAgent = xAgent->NextSiblingElement("agent")) + for(unsigned int i=0; i<_areaForMethod_A.size(); i++) { - int id= atoi(xAgent->Attribute("ID")); - if(id < min_ID) + Method_A method_A ; + method_A.SetMeasurementArea(_areaForMethod_A[i]); + method_A.SetTimeInterval(_deltaT); + bool result_A=method_A.Process(data); + if(result_A) { - min_ID = id; + Log->Write("INFO:\tSuccess with Method A using measurement area id %d!\n",_areaForMethod_A[i]->_id); } - } - } - int frameNr=0; - for(TiXmlElement* xFrame = xRootNode->FirstChildElement("frame"); xFrame; - xFrame = xFrame->NextSiblingElement("frame")) { - - //todo: can be parallelized with OpenMP - for(TiXmlElement* xAgent = xFrame->FirstChildElement("agent"); xAgent; - xAgent = xAgent->NextSiblingElement("agent")) { - - //get agent id, x, y - double x= atof(xAgent->Attribute("xPos")); - double y= atof(xAgent->Attribute("yPos")); - int ID= atoi(xAgent->Attribute("ID"))-min_ID; - - peds_t[frameNr].push_back(ID); - _xCor[ID][frameNr] = x*M2CM; - _yCor[ID][frameNr] = y*M2CM; - if(frameNr < _firstFrame[ID]) { - _firstFrame[ID] = frameNr; - } - if(frameNr > _lastFrame[ID]) { - _lastFrame[ID] = frameNr; - } - if(_fundamentalTinTout==true) + else { - if(within(make<point_2d>( (x), (y)), _areaForMethod_B->_poly)&&!(IsinMeasurezone[ID])) { - _tIn[ID]=frameNr; - IsinMeasurezone[ID] = true; - } - if((!within(make<point_2d>( (x), (y)), _areaForMethod_B->_poly))&&IsinMeasurezone[ID]) { - _tOut[ID]=frameNr; - IsinMeasurezone[ID] = false; - } + Log->Write("INFO:\tFailed with Method A using measurement area id %d!\n",_areaForMethod_A[i]->_id); } } - frameNr++; - } - -} - -void Analysis::CreateGlobalVariables(int numPeds, int numFrames) -{ - _xCor = new double* [numPeds]; - _yCor = new double* [numPeds]; - for (int i=0; i<numPeds; i++) { - _xCor[i] = new double [numFrames]; - _yCor[i] = new double [numFrames]; - } - _firstFrame = new int[numPeds]; // Record the first frame of each pedestrian - _lastFrame = new int[numPeds]; // Record the last frame of each pedestrian - _tIn = new int[numPeds]; // Record the time of each pedestrian entering measurement area - _tOut = new int[numPeds]; // Record the time of each pedestrian exiting measurement area - - - for(int i = 0; i <numPeds; i++) { - for (int j = 0; j < numFrames; j++) { - _xCor[i][j] = 0; - _yCor[i][j] = 0; - } - _firstFrame[i] = INT_MAX; - _lastFrame[i] = INT_MIN; - _tIn[i] = 0; - _tOut[i] = 0; } - DensityPerFrame = new double[numFrames]; - for(int i=0; i<numFrames; i++) { - DensityPerFrame[i]=0; - } - PassLine = new bool[numPeds]; - for(int i=0; i<numPeds; i++) { - PassLine[i] = false; - } -} - -void Analysis::getPedsParametersInFrame(int frame, std::map< int, std::vector<int> > &pdt) -{ - const std::vector<int>& ids=pdt[frame]; - - int PedNum = ids.size(); - IdInFrame = new int[PedNum]; - XInFrame = new double[PedNum]; - YInFrame = new double[PedNum]; - VInFrame = new double[PedNum]; - - for(int i=0; i<PedNum;i++) + if(_DoesUseMethodB) //Method_B { - int id = ids[i]; - XInFrame[i] = _xCor[id][frame]; - YInFrame[i] = _yCor[id][frame]; - int Tpast = frame - _deltaF; - int Tfuture = frame + _deltaF; - VInFrame[i] = GetVinFrame(frame, Tpast, Tfuture, id, _firstFrame, _lastFrame, _xCor, _yCor, _vComponent); - IdInFrame[i] = id+min_ID; - if(_flowVelocity) + for(unsigned int i=0; i<_areaForMethod_B.size(); i++) { - bool IspassLine=false; - if(frame >_firstFrame[id]&&!PassLine[id]) + Method_B method_B; + method_B.SetMeasurementArea(_areaForMethod_B[i]); + bool result_B = method_B.Process(data); + if(result_B) { - IspassLine = IsPassLine(_areaForMethod_A->_lineStartX, - _areaForMethod_A->_lineStartY, - _areaForMethod_A->_lineEndX, - _areaForMethod_A->_lineEndY, _xCor[id][frame - 1], - _yCor[id][frame - 1], _xCor[id][frame], - _yCor[id][frame]); + Log->Write("INFO:\tSuccess with Method B using measurement area id %d!\n",_areaForMethod_B[i]->_id); } - if(IspassLine==true) { - PassLine[id] = true; - ClassicFlow++; - V_deltaT+=VInFrame[i]; + else + { + Log->Write("INFO:\tFailed with Method B using measurement area id %d!\n",_areaForMethod_B[i]->_id); } } } -} - -int Analysis::getPedsNumInFrame(TiXmlElement* xFrame) //counting the agents in the frame -{ - int numPedsInFrame=0; - for(TiXmlElement* xAgent = xFrame->FirstChildElement("agent"); xAgent; - xAgent = xAgent->NextSiblingElement("agent")) { - numPedsInFrame++; - } - return numPedsInFrame; -} -int Analysis::RunAnalysis(const string& filename, const string& path) -{ - string fullTrajectoriesPathName= path+"/"+filename; - Log->Write("INFO:\tthe format of the trajectory is ",_trajFormat); - if(_trajFormat == FORMAT_XML_PLAIN) // read traje - { - TiXmlDocument docGeo(fullTrajectoriesPathName); - if (!docGeo.LoadFile()) { - Log->Write("ERROR: \t%s", docGeo.ErrorDesc()); - Log->Write("ERROR: \t could not parse the trajectories file <%s>",fullTrajectoriesPathName.c_str()); - exit(EXIT_FAILURE); - } - TiXmlElement* xRootNode = docGeo.RootElement(); - InitializeVariables(xRootNode); //initialize some global variables - } - else if(_trajFormat == FORMAT_PLAIN) - { - InitializeVariables(fullTrajectoriesPathName); - } - - InitializeFiles(filename); //initialize the files - - for(int frameNr = 0; frameNr < _numFrames; frameNr++ ) + if(_DoesUseMethodC) //Method C { - int frid = frameNr + min_Frame; - if(!(frid%100)) + for(unsigned int i=0; i<_areaForMethod_C.size(); i++) { - Log->Write("frame ID = %d",frid); - } - std::vector<int> ids=peds_t[frameNr]; - int numPedsInFrame = ids.size(); - getPedsParametersInFrame(frameNr, peds_t); - - if(_flowVelocity) - { - OutputFlow_NT(frid); - } - - if(_classicMethod) - { - OutputClassicalResults(frameNr, frid, numPedsInFrame); - } - - //------------------Voronoi Method--------------------------------- - if(_voronoiMethod) { - if(numPedsInFrame>2) { - vector<polygon_2d> polygons = GetPolygons(numPedsInFrame); - OutputVoronoiResults(polygons, frid); - if(_calcIndividualFD) { - // if(i>beginstationary&&i<endstationary) - { - GetIndividualFD(polygons,VInFrame, IdInFrame, _areaForMethod_D->_poly, frid); - } - } - if(_getProfile) { // field analysis - GetProfiles(boost::lexical_cast<string>(frid), polygons, VInFrame,filename); - } - if(_outputGraph) { // output the Voronoi polygons of a frame - OutputVoroGraph(boost::lexical_cast<string>(frid), polygons, numPedsInFrame,XInFrame, YInFrame,VInFrame,filename); - } + Method_C method_C; + method_C.SetMeasurementArea(_areaForMethod_C[i]); + bool result_C =method_C.Process(data); + if(result_C) + { + Log->Write("INFO:\tSuccess with Method C using measurement area id %d!\n",_areaForMethod_C[i]->_id); } else { - cout<<" the number of the pedestrians is less than 2 !!"<< endl; + Log->Write("INFO:\tFailed with Method C using measurement area id %d!\n",_areaForMethod_C[i]->_id); } } - - delete []XInFrame; - delete []YInFrame; - delete []VInFrame; - delete []IdInFrame; - }// getFrame number j - - //--------------------Fundamental diagram based on Tin and Tout---------------------------------------------------------------------- - if(_fundamentalTinTout) - { - string FD_TinTout= _projectRootDir+"./Output/Fundamental_Diagram/TinTout/FDTinTout_"+filename+".dat"; - Log->Write("Fundamental diagram based on Tin and Tout will be calculated!"); - GetFundamentalTinTout(_tIn,_tOut,DensityPerFrame, _fps, _areaForMethod_B->_length,_maxNumofPed, FD_TinTout); - } - //----------------------------------------------------------------------------------------------------------------------------------- - if(_flowVelocity) - { - string FD_FlowVelocity= _projectRootDir+"./Output/Fundamental_Diagram/FlowVelocity/FDFlowVelocity_"+filename+".dat"; - FlowRate_Velocity(_deltaT,_fps, _accumPedsPassLine,_accumVPassLine,FD_FlowVelocity); } - if(_classicMethod) - fclose(_fClassicRhoV); - if(_voronoiMethod) - fclose(_fVoronoiRhoV); - if(_flowVelocity) - fclose(_fN_t); - delete [] PassLine; - delete [] DensityPerFrame; - - return 0; -} - -/** - * i) get Voronoi polygons without considering the geometry - * ii) cut these polygons by the geometry. - * iii) if necessary, the polygons can be cut by a circle or polygon with certain raduis. - */ -vector<polygon_2d> Analysis::GetPolygons(int NrInFrm) -{ - VoronoiDiagram vd; - double boundpoint =10*max(max(fabs(_lowVertexX),fabs(_lowVertexY)), max(fabs(_highVertexX), fabs(_highVertexY))); - - vector<polygon_2d> polygons = vd.getVoronoiPolygons(XInFrame, YInFrame, VInFrame,IdInFrame, NrInFrm,boundpoint); - if(_cutByCircle) + if(_DoesUseMethodD) //method_D { - polygons = vd.cutPolygonsWithCircle(polygons, XInFrame, YInFrame, _cutRadius,_circleEdges); - } - polygons = vd.cutPolygonsWithGeometry(polygons, _geoPoly, XInFrame, YInFrame); - return polygons; -} - -/** - * Output the classical density and velocity in the corresponding file - */ -void Analysis::OutputClassicalResults(int frmNr, int frmId, int numPedsInFrame) -{ - double ClassicDensity = GetClassicalDensity(XInFrame, YInFrame, numPedsInFrame, _areaForMethod_C->_poly); - double ClassicVelocity = GetClassicalVelocity(XInFrame, YInFrame, VInFrame, numPedsInFrame, _areaForMethod_C->_poly); - DensityPerFrame[frmNr]=ClassicDensity; - fprintf(_fClassicRhoV,"%d\t%.3f\t%.3f\n", frmId, ClassicDensity,ClassicVelocity); -} - -/** - * Output the Voronoi density and velocity in the corresponding file - */ -void Analysis::OutputVoronoiResults(const vector<polygon_2d>& polygons, int frid) -{ - double VoronoiVelocity = GetVoronoiVelocity(polygons,VInFrame,_areaForMethod_D->_poly); - double VoronoiDensity=GetVoronoiDensity(polygons, _areaForMethod_D->_poly); - fprintf(_fVoronoiRhoV,"%d\t%.3f\t%.3f\n",frid,VoronoiDensity, VoronoiVelocity); -} - -/** - * Output the time series of pedestrian number N passing the reference line. - */ -void Analysis::OutputFlow_NT(int frmId) -{ - _accumPedsPassLine.push_back(ClassicFlow); - _accumVPassLine.push_back(V_deltaT); - fprintf(_fN_t,"%d\t%d\n",frmId, ClassicFlow); -} - -/* - * according to the location of a pedestrian in adjacent frame (pt1_X,pt1_Y) and (pr2_X,pt2_Y), we - * adjust whether he pass the line from Line_start to Line_end - */ -bool Analysis::IsPassLine(double Line_startX,double Line_startY, double Line_endX, double Line_endY,double pt1_X, double pt1_Y,double pt2_X, double pt2_Y) -{ - point_2d Line_pt0(Line_startX, Line_startY); - point_2d Line_pt1(Line_endX, Line_endY); - segment edge0(Line_pt0, Line_pt1); - - point_2d Traj_pt0(pt1_X, pt1_Y); - point_2d Traj_pt1(pt2_X, pt2_Y); - segment edge1(Traj_pt0, Traj_pt1); - - return(intersects(edge0, edge1)); -} - -//----------------------------------------------------------------------------------------------------------------------------- -/* - * output: the fundamental diagram based on the time a pedestrian enter and exit the measurement area - * MC 15.08.2012 - * input: outputfile is given not anymore "datafile" - */ -void Analysis::GetFundamentalTinTout(int *Tin, int *Tout, double *DensityPerFrame, int fps, double LengthMeasurementarea,int Nped, const string & ofile) -{ - FILE *fFD_TinTout; - string fdTinTout=ofile; - if((fFD_TinTout=CreateFile(fdTinTout))==NULL) { - Log->Write("cannot open the file to write the TinTout data\n"); - exit(0); - } - fprintf(fFD_TinTout,"#person Index\t density_i(m^(-2))\t velocity_i(m/s)\n"); - for(int i=0; i<Nped; i++) { - double velocity_temp=fps*CMtoM*LengthMeasurementarea/(Tout[i]-Tin[i]); - double density_temp=0; - for(int j=Tin[i]; j<Tout[i]; j++) { - density_temp+=DensityPerFrame[j]; - } - density_temp/=(Tout[i]-Tin[i]); - fprintf(fFD_TinTout,"%d\t%f\t%f\n",i+1,density_temp,velocity_temp); - } - fclose(fFD_TinTout); -} - -//---------------------------------------------------------------------------------------------------------------------------- -/* - * Calculate the Flow rate during a certain time interval DeltaT and the mean velocity passing a line. - * Note: here the time interval in calculating the flow rate is modified. it is the actual time between the first person and last person - * passing the line in DeltaT. - * input: outputfile is given not anymore "datafile" - */ -void Analysis::FlowRate_Velocity(int DeltaT, int fps, const vector<int>& AccumPeds, const vector<double>& AccumVelocity, const string& ofile) -{ - - FILE *fFD_FlowVelocity; - string fdFlowVelocity = ofile; //"Fundamental Diagram\\FlowVelocity\\FundamentalFlowVelocity"+datafile+".dat"; - if((fFD_FlowVelocity=CreateFile(fdFlowVelocity))==NULL) { - Log->Write("cannot open the file to write the Flow-Velocity data\n"); - exit(0); - } - fprintf(fFD_FlowVelocity,"#Flow rate(1/s) Mean velocity(m/s)\n"); - int TotalTime=AccumPeds.size(); // the total Frame of in the data file - int TotalPeds=AccumPeds[TotalTime-1]; //the total pedestrians in the data file - if(TotalPeds>0) - { - int firstPassT=-1; // the first time that there are pedestrians pass the line - int *pedspassT=new int[TotalPeds+1]; // the time for certain pedestrian passing the line - for(int i=0; i<=TotalPeds; i++) - { - pedspassT[i]=-1; - } - - for(int ix=0; ix<TotalTime; ix++) - { - if(AccumPeds[ix]>0 && firstPassT<0) - { - firstPassT=ix; - } - if(pedspassT[AccumPeds[ix]]<0) - { - pedspassT[AccumPeds[ix]]=ix; - } - } - for(int i=firstPassT+DeltaT; i<TotalTime; i+=DeltaT) { - int N1 = AccumPeds[i-DeltaT]; // the total number of pedestrians pass the line at this time - int N2 = AccumPeds[i]; - int t_N1 = pedspassT[N1]; - int t_N2 = pedspassT[N2]; - if(N1!=N2) - { - double flow_rate=fps*(N2-N1)*1.00/(t_N2-t_N1); - double MeanV=(AccumVelocity[i]-AccumVelocity[i-DeltaT])/(AccumPeds[i]-AccumPeds[i-DeltaT]); - fprintf(fFD_FlowVelocity,"%.3f\t%.3f\n",flow_rate,MeanV); - } - } - fclose(fFD_FlowVelocity); - delete []pedspassT; - } - else - { - Log->Write("INFO:\tNo person passing the reference line given by Method A!\n"); - } -} - -//----------------------------------------------------------------------------------------------------------------- -/* - * calculate individual density and velocity using voronoi method. the individual density is defined as the inverse - * of the area of the pedestrian's voronoi cell. The individual velocity is his instantaneous velocity at this time. - * note that, Only the pedestrians in the measurement area are considered. - */ -void Analysis::GetIndividualFD(const vector<polygon_2d>& polygon, double* Velocity, int* Id, const polygon_2d& measureArea, int frid) -{ - double uniquedensity=0; - double uniquevelocity=0; - int uniqueId=0; - int temp=0; - - for (const auto & polygon_iterator:polygon) - { - polygon_list v; - intersection(measureArea, polygon_iterator, v); - if(!v.empty()) { - uniquedensity=1.0/(area(polygon_iterator)*CMtoM*CMtoM); - uniquevelocity=Velocity[temp]; - uniqueId=Id[temp]; - fprintf(_individualFD,"%d\t%d\t%.3f\t%.3f\n",frid, uniqueId, uniquedensity,uniquevelocity); - } - temp++; - } -} - -double Analysis::Distance(double x1, double y1, double x2, double y2) -{ - return sqrt((x1-x2)*(x1-x2) + (y1-y2)*(y1-y2)); -} - -///--------------------------------------------------------------------------------------------------------------------- -/*this function is to obtain the frequency distribution of the pedestrian movement through a line from (Line_startX,Line_startY) - * to (Line_endX, Line_endY) according to the coordination of a person in two adjacent frames (pt1_X,pt1_Y) and (pt2_X,pt2_Y) - * input: a empty array that will be used to save the results. "fraction" is the number of same parts that the line will be divided into. - * output: the number of persons in each part of the line "frequency". - */ -void Analysis::DistributionOnLine(int *frequency,int fraction, double Line_startX,double Line_startY, double Line_endX, double Line_endY,double pt1_X, double pt1_Y,double pt2_X, double pt2_Y) -{ - /* in this function, we firstly calculate the intersection point between the trajectory (the line from point (pt1_X,pt1_Y) - * to (pt2_X,pt2_Y)) of a pedestrian and the Line. then, we determine which part of the line he or she belongs to - */ - double sumdistance=Distance(Line_startX,Line_startY,Line_endX, Line_endY); - double A=Line_endY-Line_startY; - double B=Line_startX-Line_endX; - double C=Line_endX*Line_startY-Line_startX*Line_endY; - double d1=A*pt1_X+B*pt1_Y+C; - double d2=A*pt2_X+B*pt2_Y+C; - if(d1*d2<0) { - double x1=Line_startX; - double y1=Line_startY; - double x2=Line_endX; - double y2=Line_endY; - double x3=pt1_X; - double y3=pt1_Y; - double x4=pt2_X; - double y4=pt2_Y; - double x =((x1 - x2) * (x3 * y4 - x4 * y3) - (x3 - x4) * (x1 * y2 - x2 * y1)) - /((x3 - x4) * (y1 - y2) - (x1 - x2) * (y3 - y4)); - - double y =((y1 - y2) * (x3 * y4 - x4 * y3) - (x1 * y2 - x2 * y1) * (y3 - y4)) - /((y1 - y2) * (x3 - x4) - (x1 - x2) * (y3 - y4)); - int index=(int)floor(Distance(x,y,x1,y1)*fraction/sumdistance); - frequency[index]++; - } else if(d1*d2==0) { - if(d1==0) { - int index=(int)floor(Distance(Line_startX,Line_startY,pt1_X,pt1_Y)*fraction/sumdistance); - frequency[index]++; - } - } + for(unsigned int i=0; i<_areaForMethod_D.size(); i++) + { -} -/* - * calculate the voronoi density according to the area of the voronoi cell and the measurement area. - * input: the list of the voronoi polygons and the measurement area - * output: the voronoi density in the measurement area - * note the unit of the polygons - */ -double Analysis::GetVoronoiDensity(const vector<polygon_2d>& polygon, const polygon_2d& measureArea) -{ - //cout.precision(15); - double density=0; - for (const auto & polygon_iterator:polygon) - { - polygon_list v; - intersection(measureArea, polygon_iterator, v); - if(!v.empty()) - { - density+=area(v[0])/area(polygon_iterator); - if((area(v[0]) - area(polygon_iterator))>J_EPS) + Method_D method_D; + method_D.SetGeometryPolygon(_geoPoly[_areaForMethod_D[i]->_id]); + method_D.SetGeometryBoundaries(_lowVertexX, _lowVertexY, _highVertexX, _highVertexY); + method_D.SetScale(_scaleX, _scaleY); + method_D.SetOutputVoronoiCellData(_outputGraph); + method_D.SetCalculateIndividualFD(_calcIndividualFD); + method_D.SetCalculateProfiles(_getProfile); + if(_cutByCircle) { - std::cout<<"----------------------Now calculating density!!!-----------------\n "; - std::cout<<"measure area: \t"<<dsv(measureArea)<<"\n"; - std::cout<<"Original polygon:\t"<<dsv(polygon_iterator)<<"\n"; - std::cout<<"intersected polygon: \t"<<dsv(v[0])<<"\n"; - std::cout<<"this is a wrong result in density calculation\t "<<area(v[0])<<'\t'<<area(polygon_iterator)<<"\n"; - //exit(EXIT_FAILURE); + method_D.Setcutbycircle(_cutRadius, _circleEdges); } - } - } - density = density/(area(measureArea)*CMtoM*CMtoM); - return density; - -} - -double Analysis::GetVoronoiDensity2(const vector<polygon_2d>& polygon, double* XInFrame, double* YInFrame, const polygon_2d& measureArea) -{ - double area_i=0; - int pedsinMeasureArea=0; - int temp=0; - - for(vector<polygon_2d>::const_iterator polygon_iterator = polygon.begin(); polygon_iterator!=polygon.end();polygon_iterator++) - { - if(within(make<point_2d>(XInFrame[temp], YInFrame[temp]), measureArea)) - { - area_i += (area(*polygon_iterator)*CMtoM*CMtoM); - pedsinMeasureArea++; - } - temp++; - } - if(area_i==0) - { - return 0; - } - return pedsinMeasureArea/area_i; -} - -//--------------------------------------------------------------------------------------------- - -/* - * calculate the classical density according to the coordinate of pedestrians (xs,ys) and the measurement area. - * input: xs,ys, the number of pedestrians in the geometry and the measurement area - * output: the classical density in the measurement area - * note that the number of pedestrians should be the pedestrians in the the geometry used to cut the voronoi diagram.this - * is very important. because sometimes the selected - * geometry is smaller than the actual one. in this case, some pedestrian can not included in the geometry. - */ -double Analysis::GetClassicalDensity(double *xs, double *ys, int pednum, const polygon_2d& measureArea) -{ - int pedsinMeasureArea=0; - for(int i=0; i<pednum; i++) { - if(within(make<point_2d>(xs[i], ys[i]), measureArea)) { - pedsinMeasureArea++; - } - } - - return pedsinMeasureArea/(area(measureArea)*CMtoM*CMtoM); -} - -double Analysis::GetClassicalVelocity(double *xs, double *ys, double *VInFrame, int pednum, const polygon_2d& measureArea) -{ - int pedsinMeasureArea=0; - double velocity = 0; - for(int i=0; i<pednum; i++) { - if(within(make<point_2d>(xs[i], ys[i]), measureArea)) { - velocity+=VInFrame[i]; - pedsinMeasureArea++; - } - } - if(pedsinMeasureArea!=0) { - velocity /= (1.0*pedsinMeasureArea); - } else { - velocity = 0; - } - return velocity; - -} -//--------------------------------------------------------------------------------------------- - -/* - * calculate the voronoi velocity according to voronoi cell of each pedestrian and their instantaneous velocity "Velocity". - * input: voronoi cell and velocity of each pedestrian and the measurement area - * output: the voronoi velocity in the measurement area - */ -double Analysis::GetVoronoiVelocity(const vector<polygon_2d>& polygon, double* Velocity, const polygon_2d& measureArea) -{ - double meanV=0; - int temp=0; - for (const auto & polygon_iterator:polygon) - { - polygon_list v; - intersection(measureArea, polygon_iterator, v); - - if(!v.empty()) - { - meanV+=(Velocity[temp]*area(v[0])/area(measureArea)); - if((area(v[0]) - area(polygon_iterator))>J_EPS) + method_D.SetMeasurementArea(_areaForMethod_D[i]); + bool result_D = method_D.Process(data); + if(result_D) { - std::cout<<"this is a wrong result in calculating velocity\t"<<area(v[0])<<'\t'<<area(polygon_iterator)<<std::endl; + Log->Write("INFO:\tSuccess with Method D using measurement area id %d!\n",_areaForMethod_D[i]->_id); } - } - temp++; - } - return meanV; -} - -/* - * this function is to calculate the instantaneous velocity of ped ID in Frame Tnow based on his coordinates and his state. - */ - -double Analysis::GetVinFrame(int Tnow,int Tpast, int Tfuture, int ID, int *Tfirst, int *Tlast, double **Xcor, double **Ycor, char VComponent) -{ - - double v=0.0; - - if(VComponent == 'X') { - if((Tpast >=Tfirst[ID])&&(Tfuture <= Tlast[ID])) { - v = _fps*CMtoM*(Xcor[ID][Tfuture] - Xcor[ID][Tpast])/(2.0 * _deltaF); //one dimensional velocity - } else if((Tpast <Tfirst[ID])&&(Tfuture <= Tlast[ID])) { - v = _fps*CMtoM*(Xcor[ID][Tfuture] - Xcor[ID][Tnow])/(_deltaF); //one dimensional velocity - } else if((Tpast >=Tfirst[ID])&&(Tfuture > Tlast[ID])) { - v = _fps*CMtoM*(Xcor[ID][Tnow] - Xcor[ID][Tpast])/( _deltaF); //one dimensional velocity - } - } - if(VComponent == 'Y') { - if((Tpast >=Tfirst[ID])&&(Tfuture <= Tlast[ID])) { - v = _fps*CMtoM*(Ycor[ID][Tfuture] - Ycor[ID][Tpast])/(2.0 * _deltaF); //one dimensional velocity - } else if((Tpast <Tfirst[ID])&&(Tfuture <= Tlast[ID])) { - v = _fps*CMtoM*(Ycor[ID][Tfuture] - Ycor[ID][Tnow])/(_deltaF); //one dimensional velocity - } else if((Tpast >=Tfirst[ID])&&(Tfuture > Tlast[ID])) { - v = _fps*CMtoM*(Ycor[ID][Tnow] - Ycor[ID][Tpast])/( _deltaF); //one dimensional velocity - } - } - if(VComponent == 'B') { - if((Tpast >=Tfirst[ID])&&(Tfuture <= Tlast[ID])) { - v = _fps*CMtoM*sqrt(pow((Xcor[ID][Tfuture] - Xcor[ID][Tpast]),2)+pow((Ycor[ID][Tfuture] - Ycor[ID][Tpast]),2))/(2.0 * _deltaF); //two dimensional velocity - } else if((Tpast <Tfirst[ID])&&(Tfuture <= Tlast[ID])) { - v = _fps*CMtoM*sqrt(pow((Xcor[ID][Tfuture] - Xcor[ID][Tnow]),2)+pow((Ycor[ID][Tfuture] - Ycor[ID][Tnow]),2))/(_deltaF); - } else if((Tpast >=Tfirst[ID])&&(Tfuture > Tlast[ID])) { - v = _fps*CMtoM*sqrt(pow((Xcor[ID][Tnow] - Xcor[ID][Tpast]),2)+pow((Ycor[ID][Tnow] - Ycor[ID][Tpast]),2))/(_deltaF); //two dimensional velocity - } - } - - return fabs(v); -} - -void Analysis::GetProfiles(const string& frameId, const vector<polygon_2d>& polygons, double * velocity, const string& filename) -{ - string voronoiLocation=_projectRootDir+"./Output/Fundamental_Diagram/Classical_Voronoi/field/"; - - string Prfvelocity=voronoiLocation+"/velocity/Prf_v_"+filename+"_"+frameId+".dat"; - string Prfdensity=voronoiLocation+"/density/Prf_d_"+filename+"_"+frameId+".dat"; - - FILE *Prf_velocity; - if((Prf_velocity=CreateFile(Prfvelocity))==NULL) { - Log->Write("cannot open the file <%s> to write the field data\n",Prfvelocity.c_str()); - exit(0); - } - FILE *Prf_density; - if((Prf_density=CreateFile(Prfdensity))==NULL) { - Log->Write("cannot open the file to write the field density\n"); - exit(0); - } - - int NRow = (int)ceil((_highVertexY-_lowVertexY)/_scaleY); // the number of rows that the geometry will be discretized for field analysis - int NColumn = (int)ceil((_highVertexX-_lowVertexX)/_scaleX); //the number of columns that the geometry will be discretized for field analysis - for(int row_i=0; row_i<NRow; row_i++) { // - for(int colum_j=0; colum_j<NColumn; colum_j++) { - polygon_2d measurezoneXY; + else { - const double coor[][2] = { - {_lowVertexX+colum_j*_scaleX,_highVertexY-row_i*_scaleY}, {_lowVertexX+colum_j*_scaleX+_scaleX,_highVertexY-row_i*_scaleY}, {_lowVertexX+colum_j*_scaleX+_scaleX, _highVertexY-row_i*_scaleY-_scaleY}, - {_lowVertexX+colum_j*_scaleX, _highVertexY-row_i*_scaleY-_scaleY}, - {_lowVertexX+colum_j*_scaleX,_highVertexY-row_i*_scaleY} // closing point is opening point - }; - assign_points(measurezoneXY, coor); + Log->Write("INFO:\tFailed with Method D using measurement area id %d!\n",_areaForMethod_D[i]->_id); } - correct(measurezoneXY); // Polygons should be closed, and directed clockwise. If you're not sure if that is the case, call this function - double densityXY=GetVoronoiDensity(polygons,measurezoneXY); - fprintf(Prf_density,"%.3f\t",densityXY); - double velocityXY = GetVoronoiVelocity(polygons,velocity,measurezoneXY); - fprintf(Prf_velocity,"%.3f\t",velocityXY); } - fprintf(Prf_density,"\n"); - fprintf(Prf_velocity,"\n"); } - fclose(Prf_velocity); - fclose(Prf_density); -} - -void Analysis::OutputVoroGraph(const string & frameId, const vector<polygon_2d>& polygons, int numPedsInFrame, double* XInFrame, double* YInFrame,double* VInFrame, const string& filename) -{ - /* -------TODO----------------------- - string dir_path = "./Output/Fundamental_Diagram/Classical_Voronoi/VoronoiCell/"; - boost::filesystem::path dir(dir_path.c_str()); - if((boost::filesystem::create_directory(dir))==NULL) - { - Log->Write("cannot open the file <%s> to write the polygon data\n",dir_path.c_str()); - exit(0); - } - //boost::filesystem::create_directories("./Output/Fundamental_Diagram/Classical_Voronoi/VoronoiCell/"); - */ - - string voronoiLocation=_projectRootDir+"./Output/Fundamental_Diagram/Classical_Voronoi/VoronoiCell/"; - -#if defined(_WIN32) - mkdir(voronoiLocation.c_str()); -#else - mkdir(voronoiLocation.c_str(), 0777); -#endif - - - string polygon=voronoiLocation+"/polygon"+filename+"_"+frameId+".dat"; - - //TODO: the method will fail if the directory does not not exits - //use the CREATE File instead combined with - //std::stringstream ss; - - ofstream polys (polygon.c_str()); - - if(polys.is_open()) { - for(vector<polygon_2d>::const_iterator polygon_iterator=polygons.begin(); polygon_iterator!=polygons.end(); polygon_iterator++) { - polys << dsv(*polygon_iterator) << endl; - } - } else { - Log->Write("ERROR:\tcannot create the file <%s>",polygon.c_str()); - exit(EXIT_FAILURE); - } - - - string v_individual=voronoiLocation+"/speed"+filename+"_"+frameId+".dat"; - ofstream velo (v_individual.c_str()); - - if(velo.is_open()) { - for(int pts=0; pts<numPedsInFrame; pts++) { - velo << fabs(VInFrame[pts]) << endl; - } - } else { - Log->Write("ERROR:\tcannot create the file <%s>",v_individual.c_str()); - exit(EXIT_FAILURE); - } - - - string point=voronoiLocation+"/points"+filename+"_"+frameId+".dat"; - ofstream points (point.c_str()); - if( points.is_open()) { - for(int pts=0; pts<numPedsInFrame; pts++) { - points << XInFrame[pts] << "\t" << YInFrame[pts] << endl; - } - } else { - Log->Write("ERROR:\tcannot create the file <%s>",point.c_str()); - exit(EXIT_FAILURE); - } - - - points.close(); - polys.close(); - velo.close(); + return 0; } FILE* Analysis::CreateFile(const string& filename) diff --git a/Analysis.h b/Analysis.h index ed45bb792bb44ecaf8558a054dbb452f170a2eee..ee4ec52985a699878deada597dae94fbe090b41a 100644 --- a/Analysis.h +++ b/Analysis.h @@ -37,13 +37,14 @@ #include "geometry/Building.h" #include "IO/OutputHandler.h" #include "general/Macros.h" +#include "methods/PedData.h" #include <boost/geometry/geometry.hpp> #include <boost/geometry/geometries/point_xy.hpp> #include <boost/geometry/geometries/polygon.hpp> #include <boost/geometry/geometries/adapted/c_array.hpp> #include <boost/geometry/geometries/ring.hpp> -//#include <boost/filesystem.hpp> + using namespace boost::geometry; typedef model::d2::point_xy<double, cs::cartesian> point_2d; @@ -52,11 +53,8 @@ typedef model::ring<point_2d> ring; typedef std::vector<polygon_2d > polygon_list; typedef boost::geometry::model::segment<boost::geometry::model::d2::point_xy<double> > segment; -#define CMtoM 0.01 -#define M2CM 100 #include <map> #include <vector> - extern OutputHandler* Log; class Analysis @@ -69,7 +67,14 @@ public: void InitArgs(ArgumentParser *args); void InitializeFiles(const std::string& file); - polygon_2d ReadGeometry(const std::string& geometryFile); + std::map<int, polygon_2d> ReadGeometry(const std::string& geometryFile, const std::vector<MeasurementArea_B*>& areas); + + /** + * Run the analysis for different files. + * @param file + * @param path + * @return + */ int RunAnalysis(const std::string& file, const std::string& path); /** @@ -86,283 +91,27 @@ public: */ std::string GetFilename(const std::string& str); - -private: - - /** - * calculate the instantaneous velocity of ped ID in Frame - * Tnow based on his coordinates and his state. - * - * @param Tnow - * @param Tpast - * @param Tfuture - * @param ID - * @param Tfirst - * @param Tlast - * @param Xcor - * @param Ycor - * @param VComponent - * @return - */ - void CreateGlobalVariables(int numPeds, int numFrames); - double GetVinFrame(int Tnow, int Tpast, int Tfuture, int ID, int *Tfirst, int *Tlast, - double **Xcor, double **Ycor, char VComponent); - - /** - * according to the location of a pedestrian in adjacent frame (pt1_X,pt1_Y) and (pr2_X,pt2_Y), we - * adjust whether he pass the line from Line_start to Line_end - * @param Line_startX - * @param Line_startY - * @param Line_endX - * @param Line_endY - * @param pt1_X - * @param pt1_Y - * @param pt2_X - * @param pt2_Y - * @return - */ - bool IsPassLine(double Line_startX, double Line_startY, double Line_endX, double Line_endY, - double pt1_X, double pt1_Y, double pt2_X, double pt2_Y); - - /** - * output: the fundamental diagram based on the time a pedestrian enter and exit the measurement area - * - * @param Tin - * @param Tout - * @param DensityPerFrame - * @param fps - * @param LengthMeasurementarea - * @param Nped - * @param ofile - */ - void GetFundamentalTinTout(int *Tin, int *Tout, double *DensityPerFrame, int fps, - double LengthMeasurementarea, int Nped, const std::string & ofile); - - /** - * Calculate the Flow rate during a certain time interval DeltaT and the mean velocity passing a line. - * Note: here the time interval in calculating the flow rate is modified. - * it is the actual time between the first person and last person - * passing the line in DeltaT. - * - * @param DeltaT - * @param fps - * @param AccumPeds - * @param AccumVelocity - * @param ofile - */ - void FlowRate_Velocity(int DeltaT, int fps, const std::vector<int>& AccumPeds, - const std::vector<double>& AccumVelocity, const std::string& ofile); - - /** - * calculate individual density and velocity using voronoi method. the individual density is defined as the inverse - * of the area of the pedestrian's voronoi cell. The individual velocity is his instantaneous velocity at this time. - * note that, Only the pedestrians in the measurement area are considered. - * @param polygon - * @param Velocity - * @param Id - * @param measureArea - * @param frid - */ - void GetIndividualFD(const std::vector<polygon_2d>& polygon, double* Velocity, int* Id, - const polygon_2d& measureArea, int frid); - - /** - * - * @return the euclidean distance between the two points - */ - double Distance(double x1, double y1, double x2, double y2); - - /** - * calculate the voronoi density according to the area of the voronoi cell and the measurement area. - * input: the list of the voronoi polygons and the measurement area - * note the unit of the polygons - * @param polygon - * @param measureArea - * @return the voronoi density in the measurement area - */ - double GetVoronoiDensity(const std::vector<polygon_2d>& polygon, - const polygon_2d& measureArea); - - /** - * calculate the voronoi velocity according to voronoi cell of each pedestrian and their instantaneous velocity "Velocity". - * input: voronoi cell and velocity of each pedestrian and the measurement area - * @param polygon - * @param Velocity - * @param measureArea - * @return the voronoi velocity in the measurement area - */ - double GetVoronoiVelocity(const std::vector<polygon_2d>& polygon, double* Velocity, - const polygon_2d& measureArea); - - /** - * calculate the classical density according to the coordinate of pedestrians (xs,ys) and the measurement area. - * input: xs,ys, the number of pedestrians in the geometry and the measurement area - * note that the number of pedestrians should be the pedestrians in the the geometry used to cut the voronoi diagram.this - * is very important. because sometimes the selected - * geometry is smaller than the actual one. in this case, some pedestrian can not included in the geometry. - * @param xs - * @param ys - * @param pednum - * @param measureArea - * @return the classical density in the measurement area - */ - double GetClassicalDensity(double *xs, double *ys, int pednum, const polygon_2d& measureArea); - - /** - * - * @param xs - * @param ys - * @param VInFrame - * @param pednum - * @param measureArea - * @return - */ - double GetClassicalVelocity(double *xs, double *ys, double *VInFrame, int pednum, - const polygon_2d& measureArea); - - /** - * - * @param frameId - * @param polygons - * @param velocity - * @param filename - */ - void GetProfiles(const std::string& frameId, const std::vector<polygon_2d>& polygons, - double * velocity, const std::string& filename); - - /** - * - * @param frameId - * @param polygons - * @param numPedsInFrame - * @param XInFrame - * @param YInFrame - * @param VInFrame - * @param filename - */ - void OutputVoroGraph(const std::string & frameId, const std::vector<polygon_2d>& polygons, - int numPedsInFrame, double* XInFrame, double* YInFrame, double* VInFrame, - const std::string& filename); - - /** - * - * @param frequency - * @param fraction - * @param Line_startX - * @param Line_startY - * @param Line_endX - * @param Line_endY - * @param pt1_X - * @param pt1_Y - * @param pt2_X - * @param pt2_Y - */ - void DistributionOnLine(int *frequency, int fraction, double Line_startX, double Line_startY, - double Line_endX, double Line_endY, double pt1_X, double pt1_Y, double pt2_X, - double pt2_Y); - - /** - * - * @param xRootNode - */ - void InitializeVariables(TiXmlElement* xRootNode); - - /** - * @return the total number of pedestrians in that frame - */ - - void InitializeVariables(const std::string& filename); - /** - * read globe variables from .txt format trajectory files - */ - - int getPedsNumInFrame(TiXmlElement* xFrame); - - /** * create a file and the directory structure if needed. * @param filename * @return */ - FILE* CreateFile(const std::string& filename); - - /** - * Output the classical density and velocity in the corresponding file - * @param frmNr - * @param frmId - * @param numPedsInFrame - */ - void OutputClassicalResults(int frmNr, int frmId, int numPedsInFrame); - - /** - * Output the Voronoi density and velocity in the corresponding file - * @param polygons - * @param frid - */ - void OutputVoronoiResults(const std::vector<polygon_2d>& polygons, int frid); - - /** - * Output the time series of pedestrian number N passing the reference line. - * @param frmId - */ - void OutputFlow_NT(int frmId); + static FILE* CreateFile(const std::string& filename); - /** - * - * @param polygon - * @param XInFrame - * @param YInFrame - * @param measureArea - * @return - */ - double GetVoronoiDensity2(const std::vector<polygon_2d>& polygon, double* XInFrame, - double* YInFrame, const polygon_2d& measureArea); - - /** - * i) get Voronoi polygons without considering the geometry - * ii) cut these polygons by the geometry. - * iii) if necessary, the polygons can be cut by a circle or polygon with certain raduis. - * @param NrInFrm - * @return - */ - std::vector<polygon_2d> GetPolygons(int NrInFrm); - - /** - * create a directory depending on the platform - * @param file_path - * @return - */ - void getIDinFrame(int Frame); - - /** - * get the ids in a certain Frame - */ - void getPedsParametersInFrame(int frm, std::map< int, std::vector<int> > &pdt); - /** - * In this function, pedestrian parameters in this frame including the instantaneous velocity, x and y coordinates, - * as well as the corresponding PedID will be determined. - * @param PedNum - * @param xFrame - * @param frameNr - */ + //TODO: merge apple and linux #ifdef __linux__ - int mkpath(char* file_path, mode_t mode=0755); + static int mkpath(char* file_path, mode_t mode=0755); #elif __APPLE__ - int mkpath(char* file_path, mode_t mode=0755); + static int mkpath(char* file_path, mode_t mode=0755); #else //windows - int mkpath(char* file_path); + static int mkpath(char* file_path); #endif private: - FILE *_fClassicRhoV; - FILE *_fVoronoiRhoV; - FILE *_individualFD; - FILE *_fN_t; - Building* _building; - polygon_2d _geoPoly; - std::vector<int> _IdsTXT; // the Id data from txt format trajectory data - std::vector<int> _FramesTXT; // the Frame data from txt format trajectory data + Building* _building; + //polygon_2d _geoPoly; + std::map<int, polygon_2d> _geoPoly; double _scaleX; // the size of the grid double _scaleY; @@ -370,34 +119,12 @@ private: double _lowVertexY; // LOWest vertex of the geometry (y coordinate) double _highVertexX; // Highest vertex of the geometry double _highVertexY; - int _numFrames; // Total number of frames - int _fps; // Frame rate of data - int *_tIn; //the time for each pedestrian enter the measurement area - int *_tOut; //the time for each pedestrian exit the measurement area int _deltaF; // half of the time interval that used to calculate instantaneous velocity of ped i. - int _maxNumofPed; //the maximum index of the pedestrian in the trajectory data - // here v_i = (X(t+deltaF) - X(t+deltaF))/(2*deltaF). X is location. - double **_xCor; - double **_yCor; - - - int *_firstFrame; // Record the first frame of each pedestrian - int *_lastFrame; // Record the last frame of each pedestrian int _deltaT; // the time interval to calculate the classic flow - - double *DensityPerFrame; // the measured density in each frame - bool *PassLine; - - bool _flowVelocity; // Method A (Zhang2011a) - bool _fundamentalTinTout; // Method B (Zhang2011a) - bool _classicMethod; // Method C //calculate and save results of classic in separate file - bool _voronoiMethod; // Method D--Voronoi method - - MeasurementArea_L* _areaForMethod_A; - MeasurementArea_B* _areaForMethod_B; - MeasurementArea_B* _areaForMethod_C; - MeasurementArea_B* _areaForMethod_D; - + bool _DoesUseMethodA; // Method A (Zhang2011a) + bool _DoesUseMethodB; // Method B (Zhang2011a) + bool _DoesUseMethodC; // Method C //calculate and save results of classic in separate file + bool _DoesUseMethodD; // Method D--Voronoi method bool _cutByCircle; //Adjust whether cut each original voronoi cell by a circle double _cutRadius; int _circleEdges; @@ -405,22 +132,13 @@ private: bool _outputGraph; // Whether output the data for plot the fundamental diagram each frame bool _calcIndividualFD; //Adjust whether analyze the individual density and velocity of each pedestrian in stationary state (ALWAYS VORONOI-BASED) char _vComponent; // to mark whether x, y or x and y coordinate are used when calculating the velocity - std::vector<int> _accumPedsPassLine; // the accumulative pedestrians pass a line with time - std::vector<double> _accumVPassLine; // the accumulative instantaneous velocity of the pedestrians pass a line - std::string _projectRootDir; - - int *IdInFrame; // save the ped ID in the geometry in this frame, which is the same order with VInFrame and only used for outputting individual density and velocity. - double *XInFrame; // save the X coordinates of pedestrian in the geometry in this frame - double *YInFrame; // save the Y coordinates of pedestrian in the geometry in this frame - double *VInFrame; // save the instantaneous velocity of pedestrians in the geometry in this frame - int ClassicFlow; // the number of pedestrians pass a line in a certain time - double V_deltaT; // define this is to measure cumulative velocity each pedestrian pass a measure line each time step to calculate the <v>delat T=sum<vi>/N FileFormat _trajFormat; // format of the trajectory file - int min_ID; - int min_Frame; - std::map<int , std::vector<int> > peds_t; + std::vector<MeasurementArea_L*> _areaForMethod_A; + std::vector<MeasurementArea_B*> _areaForMethod_B; + std::vector<MeasurementArea_B*> _areaForMethod_C; + std::vector<MeasurementArea_B*> _areaForMethod_D; }; #endif /*ANALYSIS_H_*/ diff --git a/CMakeLists.txt b/CMakeLists.txt index b7b1426d077aed7198bb52de95bc18ea5704e3aa..d0d47426cfef0de93aa1c06535b7d6ade51501b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ message( STATUS "CMAKE_CURRENT_SOURCE_DIR: " ${CMAKE_CURRENT_SOURCE_DIR} ) set(CMAKE_TEST_DIR ${CMAKE_SOURCE_DIR}/Utest) set(JPSREPORT_MAJOR_VERSION 0) -set(JPSREPORT_MINOR_VERSION 5) +set(JPSREPORT_MINOR_VERSION 6) set(JPSREPORT_PATCH_VERSION 0) set(JPSREPORT_VERSION ${JPSREPORT_MAJOR_VERSION}.${JPSREPORT_MINOR_VERSION}.${JPSREPORT_PATCH_VERSION}) @@ -80,15 +80,18 @@ endif(BUILD_TESTING) set(source_files Analysis.cpp - VoronoiDiagram.cpp - # VoronoiDiagramGenerator.cpp - # VoronoiPolygons.cpp IO/OutputHandler.cpp general/ArgumentParser.cpp tinyxml/tinystr.cpp tinyxml/tinyxml.cpp tinyxml/tinyxmlerror.cpp tinyxml/tinyxmlparser.cpp + methods/VoronoiDiagram.cpp + methods/PedData.cpp + methods/Method_A.cpp + methods/Method_B.cpp + methods/Method_C.cpp + methods/Method_D.cpp geometry/Building.cpp geometry/Line.cpp geometry/Point.cpp @@ -104,15 +107,18 @@ set(source_files ) set ( header_files Analysis.h - MeasurementArea.h - # VoronoiDiagramGenerator.h - VoronoiDiagram.h - # VoronoiPolygons.h + methods/MeasurementArea.h + methods/VoronoiDiagram.h + methods/PedData.h + methods/Method_A.h + methods/Method_B.h + methods/Method_C.h + methods/Method_D.h IO/OutputHandler.h general/ArgumentParser.h + general/Macros.h tinyxml/tinyxml.h tinyxml/tinystr.h - general/Macros.h geometry/Building.h geometry/Line.h geometry/Point.h diff --git a/Figures_wiki/step1.png b/Figures_wiki/step1.png deleted file mode 100644 index f684537a1c20a7d8ea64b5164df7a66bcd40282a..0000000000000000000000000000000000000000 Binary files a/Figures_wiki/step1.png and /dev/null differ diff --git a/Figures_wiki/step2.png b/Figures_wiki/step2.png deleted file mode 100644 index 43f69dd8e72d87db1bb9c32d5ab4c87f5d82bfa0..0000000000000000000000000000000000000000 Binary files a/Figures_wiki/step2.png and /dev/null differ diff --git a/Figures_wiki/step3.png b/Figures_wiki/step3.png deleted file mode 100644 index 1ca1f09db1212a6ac2d20246e6543eda4b995bfd..0000000000000000000000000000000000000000 Binary files a/Figures_wiki/step3.png and /dev/null differ diff --git a/Figures_wiki/step4.png b/Figures_wiki/step4.png deleted file mode 100644 index c1e1be6a20b96549ecf53fee0600c6638c51e860..0000000000000000000000000000000000000000 Binary files a/Figures_wiki/step4.png and /dev/null differ diff --git a/IO/OutputHandler.cpp b/IO/OutputHandler.cpp index f0b04080acaf24cec42e6fd498ebcd3f9b6bd55a..f8dc91ade8c76bfc6f97d0316996c4315c845eff 100644 --- a/IO/OutputHandler.cpp +++ b/IO/OutputHandler.cpp @@ -31,6 +31,7 @@ #include <stdio.h> #include <stdarg.h> #include <cstdlib> +#include <cmath> using namespace std; diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..56f236e4826bbedfaf44299979f39d415849ae43 --- /dev/null +++ b/LICENSE @@ -0,0 +1,36 @@ +Licence: +======== +JuPedSim is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation, either version 3 of the License, or +any later version. + +JuPedSim 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 Lesser General Public License +along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + + + +Disclaimer: +======== +In no event shall JuPedSim be liable to any party for direct, indirect, special, +incidental, or consequential damages, including lost profits, arising out of the +use of this software and its documentation, even if JuPedSim has been advised of +the possibility of such damage. +JuPedSim specifically disclaims any warranties, including, but not limited to, +the implied warranties of merchantability and fitness for a particular purpose. +The software and accompanying documentation, if any, provided hereunder is +provided “as is”. JuPedSim has no obligation to provide maintenance, support, +updates, enhancements, or modifications. +Forschungszentrum J ̈ulich GmbH makes no warranty, expressed or implied, +to users of JuPedSim, and accepts no responsibility for its use. Users of JuPedSim +assume sole responsibility for determining the appropriateness of its use; and for +any actions taken or not taken as a result of analyses performed using this tool. +Users are warned that JuPedSim is intended for academic use only. This +tool is an implementation of several computer models that may or may not have +predictive capability when applied to a specific set of factual circumstances. Lack +of accurate prediction diff --git a/README.txt b/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..5d08de8b0d890939c948f4cda805eab4ea8e99a2 --- /dev/null +++ b/README.txt @@ -0,0 +1,12 @@ +JPSreport v0.6 alpha +==================== + +Running +======= + +>> JPSreport.exe --inifile="./xxx/xxx/ini_bottleneck.xml" + +From the command line trajectory files mentioned in the inifile will be analysed by using the methods and parameters in the inifile. +The output results will be saved in the sub-folder of the folder where the inifile exists. + + diff --git a/Utest/files/geo_UO_180.xml b/Utest/files/geo_UO_180.xml index 4a8f44ec55f4ade1f24f035ecb3fc6f1fd60c7b4..65a8acd1ef631440c657b96ce41f814bab20a581 100644 --- a/Utest/files/geo_UO_180.xml +++ b/Utest/files/geo_UO_180.xml @@ -1,21 +1,23 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<geometry version ="0.5" caption="second life" gridSizeX="20" gridSizeY="20" unit="m"> +<geometry version ="0.5" caption="second life" gridSizeX="20" gridSizeY="20" unit="m" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:noNamespaceSchemaLocation="http://xsd.jupedsim.org/0.6/jps_geoemtry.xsd"> > <rooms> <room id="0" caption="hall" zpos="0.00"> <subroom id="0" closed="0" class="subroom"> <polygon caption="wall"> - <vertex px="-8.00" py="-0.50"/> - <vertex px="-8.00" py="2.50"/> + <vertex px="-8.00" py="-0.70"/> + <vertex px="-8.00" py="2.80"/> + <vertex px="-4.00" py="2.80"/> <vertex px="-4.00" py="1.80"/> <vertex px="4.00" py="1.80"/> - <vertex px="4.00" py="2.50"/> - <vertex px="6.00" py="2.50"/> - <vertex px="6.00" py="-0.50"/> - <vertex px="4.00" py="-0.50"/> + <vertex px="4.00" py="2.80"/> + <vertex px="6.00" py="2.80"/> + <vertex px="6.00" py="-0.70"/> + <vertex px="4.00" py="-0.70"/> <vertex px="4.00" py="0.00"/> <vertex px="-4.00" py="0.00"/> - <vertex px="-4.00" py="-0.50"/> - <vertex px="-8.00" py="-0.50"/> + <vertex px="-4.00" py="-0.70"/> + <vertex px="-8.00" py="-0.70"/> </polygon> </subroom> </room> diff --git a/Utest/files/ini_UO_180.xml b/Utest/files/ini_UO_180.xml new file mode 100644 index 0000000000000000000000000000000000000000..da5070431ceb7e2059b206b4e479b45a2d5d7a58 --- /dev/null +++ b/Utest/files/ini_UO_180.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<JPSreport project="JPS-Project" version="0.6" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xsd.jupedsim.org/0.6/jps_report.xsd"> + <!-- geometry file --> + <geometry file = "geo_UO_180.xml" /> + <!-- trajectories file and format --> + <!-- either a file name or a path location. In the latter case all files in the directory will be used--> + <trajectories format="txt" unit="m"> + <file name="uo-180-180-180.txt" /> + <path location="./" /> + </trajectories> + <!-- all files in the directories will be used --> + + <measurementAreas unit="m"> + <area_B id="1" type="BoundingBox"> + <vertex x="0.00" y="0.00" /> <!-- Clockwise --> + <vertex x="0.00" y="1.80" /> + <vertex x="2.00" y="1.80" /> + <vertex x="2.00" y="0.00" /> + <Length_in_movement_direction distance="2.0" /> + </area_B> + <area_L id="2" type="Line"> + <start x="0.00" y="-0.50" /> + <end x="0.00" y="2.50" /> + </area_L> + </measurementAreas> + + <velocity> + <useXComponent>true</useXComponent> + <useYComponent>true</useYComponent> + + <!-- half of the time interval that used to calculate instantaneous velocity + of ped i [fr] here v_i = (X(t+deltaF) - X(t+deltaF))/(2*deltaF). X is location. --> + <halfFrameNumberToUse>5</halfFrameNumberToUse> + </velocity> + + <!-- Method A (Zhang2011a) Flow and Vel --> + <method_A enabled="true"> + <!-- Time interval used to count the flow [fr] --> + <timeInterval unit="frame"> + 70 + </timeInterval> + <!-- The coordinate of the line used to calculate the flow and velocity --> + <measurementArea id="2" /> + </method_A> + + <!-- Method B (Zhang2011a) Vel and Dens based on Tin and Tout --> + <method_B enabled="true"> + <measurementArea id="1" /> + </method_B> + + <!-- Method C (Zhang2011a) Classical density and Vel --> + <method_C enabled="true"> + <measurementArea id="1" /> + </method_C> + + <!-- Method D (Zhang2011a) Voronoi density and Vel --> + <method_D enabled="true" outputGraph="false" individualFDdata="false"> + <measurementArea id="1" /> + <cutByCircle enabled="false" radius= "0.5" edges = "6"/> <!-- edges represent the precision of discretization of the circle ---> + <getProfile enabled="false" scale_x="0.10" scale_y="0.10"/> + + </method_D> +</JPSreport> + diff --git a/Utest/files/input_UO_180.xml b/Utest/files/input_UO_180.xml deleted file mode 100644 index dd7cb2f839fc2165dfc8a57725ee223e459e41d7..0000000000000000000000000000000000000000 --- a/Utest/files/input_UO_180.xml +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<JPSreport project="JPS-Project" version="0.4"> - <!-- geometry file --> - <geometry file = "geo_UO_180.xml" /> - <!-- trajectories file and format --> - <!-- either a file name or a path location. In the latter case all files in the directory will be used--> - <trajectories format="txt" unit="m"> - <file name="uo-180-180-180_space.txt" /> - <path location="././" /> - </trajectories> - <!-- all files in the directories will be used --> - - <measurementAreas unit="m"> - <area_B id="1" type="BoundingBox"> - <vertex x="4.00" y="-0.50" /> <!-- Clockwise --> - <vertex x="4.00" y="2.50" /> - <vertex x="5.00" y="2.50" /> - <vertex x="5.00" y="-0.50" /> - <Length_in_movement_direction distance="1.0" /> - </area_B> - <area_L id="2" type="Line"> - <start x="-7.00" y="-0.50" /> - <end x="-7.00" y="2.50" /> - </area_L> - </measurementAreas> - - <velocity> - <useXComponent>true</useXComponent> - <useYComponent>true</useYComponent> - - <!-- half of the time interval that used to calculate instantaneous velocity - of ped i [fr] here v_i = (X(t+deltaF) - X(t+deltaF))/(2*deltaF). X is location. --> - <halfFrameNumberToUse>5</halfFrameNumberToUse> - </velocity> - - <!-- Method A (Zhang2011a) Flow and Vel --> - <method_A enabled="true"> - <!-- Time interval used to count the flow [fr] --> - <timeInterval unit="frame"> - 70 - </timeInterval> - <!-- The coordinate of the line used to calculate the flow and velocity --> - <measurementArea id="2" /> - </method_A> - - <!-- Method B (Zhang2011a) Vel and Dens based on Tin and Tout --> - <method_B enabled="false"> - <measurementArea id="1" /> - </method_B> - - <!-- Method C (Zhang2011a) Classical density and Vel --> - <method_C enabled="true"> - <measurementArea id="1" /> - </method_C> - - <!-- Method D (Zhang2011a) Voronoi density and Vel --> - <method_D enabled="true" outputGraph="false" individualFDdata="false"> - <measurementArea id="1" /> - <cutByCircle enabled="false" radius= "0.5" edges = "6"/> <!-- edges represent the precision of discretization of the circle ---> - <getProfile enabled="false" scale_x="0.10" scale_y="0.10"/> - - <!-- // Adjust whether cut each original Voronoi cell by a circle (for - bottleneck exp is necessary) // Whether output the data to plot the Voronoi - diagram each frame // Whether make field analysis or not // Adjust whether - analyze the individual density and velocity of each // pedestrian in stationary - state (ALWAYS VORONOI-BASED) --> - <!-- // the number of rows that the geometry will be discretized for field - analysis //the number of columns that the geometry will be discretized for - field analysis // the size of the grid //0; //todo LOWest vertex of the geometry - // 0 todo --> - <!-- /*to get the individual Fundamental diagram based on Voronoi diagram - (personal space and velocity), * it better to give the start and end time - of the steady state. */ --> - - <!-- /*to make field analysis, the geometery has to be discretized into - small cells. Here NRow is the number * of rows for the discretization, NColumn - is the number of column. scale_x and scale_y represent the * size of the - cells. low_ed_x and low_ed_y are the coordinates of the lowest vertex of - the geometry. * these prameters are necessary for the discretization.*/ --> - </method_D> -</JPSreport> - diff --git a/Utest/files/uo-180-180-180_tab.txt b/Utest/files/uo-180-180-180.txt similarity index 100% rename from Utest/files/uo-180-180-180_tab.txt rename to Utest/files/uo-180-180-180.txt diff --git a/Utest/files/uo-180-180-180_space.txt b/Utest/files/uo-180-180-180_space.txt deleted file mode 100644 index 36e2bed5a4857eb1586c40bb062cd506bcb2f35e..0000000000000000000000000000000000000000 --- a/Utest/files/uo-180-180-180_space.txt +++ /dev/null @@ -1,51579 +0,0 @@ -#description: experiment -#framerate: 16 -#geometry: geo_crossing.xml -#ID: the agent ID -#FR: the current frame -#X,Y,Z: the agents coordinates (in metres) - - -#ID FR X Y Z -1 29 -7.7609 1.3556 1.7600 -1 30 -7.6452 1.3374 1.7600 -1 31 -7.5238 1.3205 1.7600 -1 32 -7.3959 1.3031 1.7600 -1 33 -7.2633 1.2865 1.7600 -1 34 -7.1275 1.2695 1.7600 -1 35 -6.9974 1.2511 1.7600 -1 36 -6.8775 1.2351 1.7600 -1 37 -6.7586 1.2256 1.7600 -1 38 -6.6446 1.2102 1.7600 -1 39 -6.5247 1.1904 1.7600 -1 40 -6.3958 1.1694 1.7600 -1 41 -6.2661 1.1476 1.7600 -1 42 -6.1428 1.1245 1.7600 -1 43 -6.0247 1.1025 1.7600 -1 44 -5.9091 1.0860 1.7600 -1 45 -5.7932 1.0702 1.7600 -1 46 -5.6696 1.0543 1.7600 -1 47 -5.5445 1.0367 1.7600 -1 48 -5.4168 1.0251 1.7600 -1 49 -5.2929 1.0165 1.7600 -1 50 -5.1721 1.0073 1.7600 -1 51 -5.0527 0.9917 1.7600 -1 52 -4.9381 0.9764 1.7600 -1 53 -4.8188 0.9651 1.7600 -1 54 -4.7008 0.9501 1.7600 -1 55 -4.5848 0.9322 1.7600 -1 56 -4.4670 0.9130 1.7600 -1 57 -4.3449 0.8988 1.7600 -1 58 -4.2211 0.8878 1.7600 -1 59 -4.1010 0.8796 1.7600 -1 60 -3.9782 0.8736 1.7600 -1 61 -3.8553 0.8692 1.7600 -1 62 -3.7356 0.8665 1.7600 -1 63 -3.6177 0.8675 1.7600 -1 64 -3.4964 0.8664 1.7600 -1 65 -3.3797 0.8602 1.7600 -1 66 -3.2657 0.8542 1.7600 -1 67 -3.1542 0.8444 1.7600 -1 68 -3.0404 0.8336 1.7600 -1 69 -2.9235 0.8221 1.7600 -1 70 -2.8088 0.8091 1.7600 -1 71 -2.6864 0.7981 1.7600 -1 72 -2.5647 0.7940 1.7600 -1 73 -2.4478 0.7943 1.7600 -1 74 -2.3324 0.7947 1.7600 -1 75 -2.2136 0.7982 1.7600 -1 76 -2.0869 0.7994 1.7600 -1 77 -1.9585 0.8012 1.7600 -1 78 -1.8221 0.8007 1.7600 -1 79 -1.6971 0.8022 1.7600 -1 80 -1.5754 0.8037 1.7600 -1 81 -1.4518 0.8054 1.7600 -1 82 -1.3231 0.8052 1.7600 -1 83 -1.1982 0.8052 1.7600 -1 84 -1.0691 0.8008 1.7600 -1 85 -0.9415 0.8018 1.7600 -1 86 -0.8207 0.8032 1.7600 -1 87 -0.6952 0.8064 1.7600 -1 88 -0.5678 0.8106 1.7600 -1 89 -0.4404 0.8143 1.7600 -1 90 -0.3146 0.8190 1.7600 -1 91 -0.1916 0.8237 1.7600 -1 92 -0.0748 0.8236 1.7600 -1 93 0.0458 0.8249 1.7600 -1 94 0.1730 0.8293 1.7600 -1 95 0.2980 0.8275 1.7600 -1 96 0.4208 0.8244 1.7600 -1 97 0.5403 0.8200 1.7600 -1 98 0.6622 0.8165 1.7600 -1 99 0.7891 0.8144 1.7600 -1 100 0.9203 0.8164 1.7600 -1 101 1.0505 0.8185 1.7600 -1 102 1.1815 0.8208 1.7600 -1 103 1.3048 0.8222 1.7600 -1 104 1.4311 0.8267 1.7600 -1 105 1.5571 0.8266 1.7600 -1 106 1.6858 0.8268 1.7600 -1 107 1.8103 0.8289 1.7600 -1 108 1.9367 0.8295 1.7600 -1 109 2.0683 0.8276 1.7600 -1 110 2.1982 0.8248 1.7600 -1 111 2.3330 0.8228 1.7600 -1 112 2.4611 0.8261 1.7600 -1 113 2.5871 0.8330 1.7600 -1 114 2.7090 0.8397 1.7600 -1 115 2.8318 0.8496 1.7600 -1 116 2.9552 0.8546 1.7600 -1 117 3.0846 0.8596 1.7600 -1 118 3.2134 0.8618 1.7600 -1 119 3.3298 0.8617 1.7600 -1 120 3.4459 0.8639 1.7600 -1 121 3.5596 0.8643 1.7600 -1 122 3.6745 0.8648 1.7600 -1 123 3.7974 0.8648 1.7600 -1 124 3.9268 0.8671 1.7600 -1 125 4.0555 0.8726 1.7600 -1 126 4.1712 0.8782 1.7600 -1 127 4.2852 0.8855 1.7600 -1 128 4.3995 0.8974 1.7600 -1 129 4.5183 0.9060 1.7600 -1 130 4.6418 0.9156 1.7600 -1 131 4.7753 0.9244 1.7600 -1 132 4.8963 0.9293 1.7600 -1 133 5.0025 0.9372 1.7600 -1 134 5.1030 0.9435 1.7600 -1 135 5.2056 0.9470 1.7600 -1 136 5.3148 0.9492 1.7600 -1 137 5.4312 0.9469 1.7600 -1 138 5.5605 0.9480 1.7600 -1 139 5.6801 0.9532 1.7600 -1 140 5.7852 0.9596 1.7600 -1 141 5.8853 0.9649 1.7600 -2 36 -7.7929 0.9282 1.7600 -2 37 -7.6771 0.8970 1.7600 -2 38 -7.5675 0.8748 1.7600 -2 39 -7.4570 0.8524 1.7600 -2 40 -7.3389 0.8329 1.7600 -2 41 -7.2138 0.8164 1.7600 -2 42 -7.0883 0.8036 1.7600 -2 43 -6.9660 0.7895 1.7600 -2 44 -6.8479 0.7716 1.7600 -2 45 -6.7272 0.7494 1.7600 -2 46 -6.6045 0.7240 1.7600 -2 47 -6.4812 0.6977 1.7600 -2 48 -6.3508 0.6727 1.7600 -2 49 -6.2187 0.6495 1.7600 -2 50 -6.0895 0.6276 1.7600 -2 51 -5.9595 0.6072 1.7600 -2 52 -5.8348 0.5904 1.7600 -2 53 -5.7140 0.5806 1.7600 -2 54 -5.5869 0.5734 1.7600 -2 55 -5.4568 0.5661 1.7600 -2 56 -5.3272 0.5596 1.7600 -2 57 -5.2038 0.5498 1.7600 -2 58 -5.0830 0.5374 1.7600 -2 59 -4.9601 0.5222 1.7600 -2 60 -4.8393 0.5031 1.7600 -2 61 -4.7197 0.4897 1.7600 -2 62 -4.6017 0.4744 1.7600 -2 63 -4.4871 0.4602 1.7600 -2 64 -4.3699 0.4490 1.7600 -2 65 -4.2557 0.4391 1.7600 -2 66 -4.1383 0.4298 1.7600 -2 67 -4.0218 0.4224 1.7600 -2 68 -3.9119 0.4186 1.7600 -2 69 -3.8005 0.4173 1.7600 -2 70 -3.6860 0.4151 1.7600 -2 71 -3.5691 0.4133 1.7600 -2 72 -3.4492 0.4090 1.7600 -2 73 -3.3264 0.4025 1.7600 -2 74 -3.2051 0.3909 1.7600 -2 75 -3.0859 0.3822 1.7600 -2 76 -2.9733 0.3716 1.7600 -2 77 -2.8580 0.3609 1.7600 -2 78 -2.7394 0.3512 1.7600 -2 79 -2.6181 0.3417 1.7600 -2 80 -2.4898 0.3310 1.7600 -2 81 -2.3639 0.3249 1.7600 -2 82 -2.2466 0.3260 1.7600 -2 83 -2.1334 0.3293 1.7600 -2 84 -2.0187 0.3366 1.7600 -2 85 -1.8971 0.3417 1.7600 -2 86 -1.7755 0.3464 1.7600 -2 87 -1.6506 0.3475 1.7600 -2 88 -1.5323 0.3459 1.7600 -2 89 -1.4166 0.3453 1.7600 -2 90 -1.3025 0.3436 1.7600 -2 91 -1.1846 0.3432 1.7600 -2 92 -1.0595 0.3427 1.7600 -2 93 -0.9328 0.3387 1.7600 -2 94 -0.8059 0.3370 1.7600 -2 95 -0.6832 0.3383 1.7600 -2 96 -0.5619 0.3461 1.7600 -2 97 -0.4408 0.3576 1.7600 -2 98 -0.3186 0.3709 1.7600 -2 99 -0.1974 0.3849 1.7600 -2 100 -0.0811 0.3975 1.7600 -2 101 0.0377 0.4045 1.7600 -2 102 0.1576 0.4052 1.7600 -2 103 0.2806 0.4077 1.7600 -2 104 0.4090 0.4042 1.7600 -2 105 0.5384 0.4023 1.7600 -2 106 0.6673 0.4001 1.7600 -2 107 0.7985 0.3993 1.7600 -2 108 0.9345 0.4002 1.7600 -2 109 1.0679 0.4010 1.7600 -2 110 1.1975 0.4048 1.7600 -2 111 1.3303 0.4120 1.7600 -2 112 1.4651 0.4224 1.7600 -2 113 1.5996 0.4286 1.7600 -2 114 1.7332 0.4343 1.7600 -2 115 1.8678 0.4349 1.7600 -2 116 2.0011 0.4335 1.7600 -2 117 2.1308 0.4303 1.7600 -2 118 2.2580 0.4268 1.7600 -2 119 2.3855 0.4228 1.7600 -2 120 2.5143 0.4205 1.7600 -2 121 2.6452 0.4196 1.7600 -2 122 2.7711 0.4214 1.7600 -2 123 2.8859 0.4280 1.7600 -2 124 2.9977 0.4350 1.7600 -2 125 3.1089 0.4436 1.7600 -2 126 3.2258 0.4527 1.7600 -2 127 3.3517 0.4590 1.7600 -2 128 3.4836 0.4588 1.7600 -2 129 3.6189 0.4547 1.7600 -2 130 3.7441 0.4484 1.7600 -2 131 3.8583 0.4398 1.7600 -2 132 3.9699 0.4315 1.7600 -2 133 4.0843 0.4242 1.7600 -2 134 4.2071 0.4166 1.7600 -2 135 4.3355 0.4074 1.7600 -2 136 4.4645 0.3992 1.7600 -2 137 4.5801 0.3941 1.7600 -2 138 4.6880 0.3986 1.7600 -2 139 4.7950 0.4016 1.7600 -2 140 4.9099 0.4020 1.7600 -2 141 5.0330 0.3975 1.7600 -2 142 5.1598 0.3893 1.7600 -2 143 5.2882 0.3761 1.7600 -2 144 5.4091 0.3613 1.7600 -2 145 5.5149 0.3476 1.7600 -2 146 5.6166 0.3324 1.7600 -2 147 5.7222 0.3166 1.7600 -2 148 5.8412 0.2988 1.7600 -3 29 -7.7617 1.9238 1.7600 -3 30 -7.6445 1.9241 1.7600 -3 31 -7.5357 1.9239 1.7600 -3 32 -7.4424 1.9169 1.7600 -3 33 -7.3510 1.9021 1.7600 -3 34 -7.2517 1.8795 1.7600 -3 35 -7.1397 1.8539 1.7600 -3 36 -7.0171 1.8263 1.7600 -3 37 -6.8898 1.7963 1.7600 -3 38 -6.7698 1.7657 1.7600 -3 39 -6.6648 1.7390 1.7600 -3 40 -6.5673 1.7169 1.7600 -3 41 -6.4667 1.7045 1.7600 -3 42 -6.3518 1.6977 1.7600 -3 43 -6.2210 1.6919 1.7600 -3 44 -6.0793 1.6893 1.7600 -3 45 -5.9312 1.6842 1.7600 -3 46 -5.7884 1.6795 1.7600 -3 47 -5.6772 1.6678 1.7600 -3 48 -5.5782 1.6501 1.7600 -3 49 -5.4797 1.6280 1.7600 -3 50 -5.3767 1.6082 1.7600 -3 51 -5.2631 1.5897 1.7600 -3 52 -5.1464 1.5702 1.7600 -3 53 -5.0283 1.5488 1.7600 -3 54 -4.9161 1.5259 1.7600 -3 55 -4.8082 1.5127 1.7600 -3 56 -4.7006 1.5101 1.7600 -3 57 -4.5879 1.5116 1.7600 -3 58 -4.4674 1.5155 1.7600 -3 59 -4.3421 1.5188 1.7600 -3 60 -4.2171 1.5190 1.7600 -3 61 -4.0901 1.5151 1.7600 -3 62 -3.9745 1.5096 1.7600 -3 63 -3.8658 1.4943 1.7600 -3 64 -3.7708 1.4698 1.7600 -3 65 -3.6759 1.4491 1.7600 -3 66 -3.5780 1.4241 1.7600 -3 67 -3.4702 1.3999 1.7600 -3 68 -3.3540 1.3779 1.7600 -3 69 -3.2414 1.3587 1.7600 -3 70 -3.1344 1.3455 1.7600 -3 71 -3.0307 1.3415 1.7600 -3 72 -2.9345 1.3442 1.7600 -3 73 -2.8348 1.3495 1.7600 -3 74 -2.7308 1.3551 1.7600 -3 75 -2.6188 1.3619 1.7600 -3 76 -2.5004 1.3693 1.7600 -3 77 -2.3865 1.3801 1.7600 -3 78 -2.2854 1.3824 1.7600 -3 79 -2.1917 1.3747 1.7600 -3 80 -2.1039 1.3655 1.7600 -3 81 -2.0139 1.3598 1.7600 -3 82 -1.9210 1.3564 1.7600 -3 83 -1.8164 1.3556 1.7600 -3 84 -1.7043 1.3535 1.7600 -3 85 -1.5957 1.3491 1.7600 -3 86 -1.4909 1.3501 1.7600 -3 87 -1.3934 1.3600 1.7600 -3 88 -1.3031 1.3723 1.7600 -3 89 -1.2123 1.3859 1.7600 -3 90 -1.1081 1.3995 1.7600 -3 91 -0.9999 1.4138 1.7600 -3 92 -0.8914 1.4370 1.7600 -3 93 -0.7902 1.4524 1.7600 -3 94 -0.6947 1.4571 1.7600 -3 95 -0.6084 1.4474 1.7600 -3 96 -0.5325 1.4415 1.7600 -3 97 -0.4463 1.4366 1.7600 -3 98 -0.3457 1.4314 1.7600 -3 99 -0.2360 1.4276 1.7600 -3 100 -0.1243 1.4195 1.7600 -3 101 -0.0265 1.4116 1.7600 -3 102 0.0648 1.4079 1.7600 -3 103 0.1488 1.4125 1.7600 -3 104 0.2309 1.4156 1.7600 -3 105 0.3244 1.4195 1.7600 -3 106 0.4295 1.4232 1.7600 -3 107 0.5427 1.4295 1.7600 -3 108 0.6496 1.4348 1.7600 -3 109 0.7474 1.4379 1.7600 -3 110 0.8427 1.4317 1.7600 -3 111 0.9279 1.4211 1.7600 -3 112 1.0073 1.4124 1.7600 -3 113 1.0968 1.4045 1.7600 -3 114 1.1980 1.3979 1.7600 -3 115 1.3092 1.3899 1.7600 -3 116 1.4201 1.3776 1.7600 -3 117 1.5221 1.3663 1.7600 -3 118 1.6185 1.3620 1.7600 -3 119 1.7115 1.3617 1.7600 -3 120 1.8048 1.3615 1.7600 -3 121 1.9057 1.3620 1.7600 -3 122 2.0149 1.3626 1.7600 -3 123 2.1292 1.3628 1.7600 -3 124 2.2415 1.3628 1.7600 -3 125 2.3473 1.3586 1.7600 -3 126 2.4493 1.3485 1.7600 -3 127 2.5433 1.3346 1.7600 -3 128 2.6348 1.3199 1.7600 -3 129 2.7319 1.3081 1.7600 -3 130 2.8391 1.2925 1.7600 -3 131 2.9471 1.2797 1.7600 -3 132 3.0570 1.2630 1.7600 -3 133 3.1637 1.2534 1.7600 -3 134 3.2713 1.2475 1.7600 -3 135 3.3736 1.2466 1.7600 -3 136 3.4723 1.2452 1.7600 -3 137 3.5736 1.2457 1.7600 -3 138 3.6838 1.2477 1.7600 -3 139 3.7988 1.2505 1.7600 -3 140 3.9123 1.2512 1.7600 -3 141 4.0234 1.2447 1.7600 -3 142 4.1359 1.2302 1.7600 -3 143 4.2385 1.2122 1.7600 -3 144 4.3335 1.1939 1.7600 -3 145 4.4362 1.1784 1.7600 -3 146 4.5397 1.1609 1.7600 -3 147 4.6502 1.1440 1.7600 -3 148 4.7616 1.1256 1.7600 -3 149 4.8719 1.1147 1.7600 -3 150 4.9762 1.1096 1.7600 -3 151 5.0693 1.1095 1.7600 -3 152 5.1609 1.1085 1.7600 -3 153 5.2604 1.1086 1.7600 -3 154 5.3726 1.1111 1.7600 -3 155 5.4956 1.1116 1.7600 -3 156 5.6112 1.1080 1.7600 -3 157 5.7223 1.0958 1.7600 -3 158 5.8309 1.0746 1.7600 -3 159 5.9225 1.0542 1.7600 -4 63 -7.7737 1.3741 1.7600 -4 64 -7.6935 1.3709 1.7600 -4 65 -7.6023 1.3656 1.7600 -4 66 -7.5006 1.3611 1.7600 -4 67 -7.3959 1.3604 1.7600 -4 68 -7.2940 1.3629 1.7600 -4 69 -7.2000 1.3630 1.7600 -4 70 -7.1178 1.3561 1.7600 -4 71 -7.0456 1.3365 1.7600 -4 72 -6.9684 1.3101 1.7600 -4 73 -6.8793 1.2854 1.7600 -4 74 -6.7768 1.2610 1.7600 -4 75 -6.6658 1.2339 1.7600 -4 76 -6.5557 1.2018 1.7600 -4 77 -6.4514 1.1675 1.7600 -4 78 -6.3540 1.1361 1.7600 -4 79 -6.2629 1.1179 1.7600 -4 80 -6.1731 1.1148 1.7600 -4 81 -6.0780 1.1170 1.7600 -4 82 -5.9745 1.1134 1.7600 -4 83 -5.8632 1.1098 1.7600 -4 84 -5.7443 1.1098 1.7600 -4 85 -5.6255 1.1133 1.7600 -4 86 -5.5141 1.1127 1.7600 -4 87 -5.4101 1.1049 1.7600 -4 88 -5.3174 1.0848 1.7600 -4 89 -5.2326 1.0532 1.7600 -4 90 -5.1434 1.0196 1.7600 -4 91 -5.0439 0.9919 1.7600 -4 92 -4.9362 0.9669 1.7600 -4 93 -4.8268 0.9384 1.7600 -4 94 -4.7239 0.9023 1.7600 -4 95 -4.6248 0.8712 1.7600 -4 96 -4.5356 0.8629 1.7600 -4 97 -4.4449 0.8670 1.7600 -4 98 -4.3568 0.8740 1.7600 -4 99 -4.2640 0.8778 1.7600 -4 100 -4.1650 0.8801 1.7600 -4 101 -4.0608 0.8848 1.7600 -4 102 -3.9531 0.8929 1.7600 -4 103 -3.8462 0.8970 1.7600 -4 104 -3.7454 0.8942 1.7600 -4 105 -3.6486 0.8762 1.7600 -4 106 -3.5571 0.8505 1.7600 -4 107 -3.4618 0.8266 1.7600 -4 108 -3.3610 0.8061 1.7600 -4 109 -3.2549 0.7842 1.7600 -4 110 -3.1473 0.7574 1.7600 -4 111 -3.0436 0.7252 1.7600 -4 112 -2.9440 0.6983 1.7600 -4 113 -2.8511 0.6977 1.7600 -4 114 -2.7566 0.7158 1.7600 -4 115 -2.6660 0.7361 1.7600 -4 116 -2.5739 0.7519 1.7600 -4 117 -2.4803 0.7682 1.7600 -4 118 -2.3884 0.7857 1.7600 -4 119 -2.2912 0.8092 1.7600 -4 120 -2.1874 0.8328 1.7600 -4 121 -2.0841 0.8398 1.7600 -4 122 -1.9832 0.8236 1.7600 -4 123 -1.8914 0.8014 1.7600 -4 124 -1.7974 0.7829 1.7600 -4 125 -1.7006 0.7693 1.7600 -4 126 -1.6136 0.7555 1.7600 -4 127 -1.5270 0.7354 1.7600 -4 128 -1.4349 0.7121 1.7600 -4 129 -1.3427 0.6912 1.7600 -4 130 -1.2573 0.6835 1.7600 -4 131 -1.1729 0.6957 1.7600 -4 132 -1.0954 0.7135 1.7600 -4 133 -1.0183 0.7317 1.7600 -4 134 -0.9393 0.7501 1.7600 -4 135 -0.8547 0.7695 1.7600 -4 136 -0.7665 0.7948 1.7600 -4 137 -0.6736 0.8205 1.7600 -4 138 -0.5844 0.8398 1.7600 -4 139 -0.5024 0.8457 1.7600 -4 140 -0.4247 0.8346 1.7600 -4 141 -0.3419 0.8176 1.7600 -4 142 -0.2488 0.8050 1.7600 -4 143 -0.1455 0.7966 1.7600 -4 144 -0.0353 0.7909 1.7600 -4 145 0.0683 0.7797 1.7600 -4 146 0.1639 0.7619 1.7600 -4 147 0.2511 0.7536 1.7600 -4 148 0.3322 0.7607 1.7600 -4 149 0.4090 0.7789 1.7600 -4 150 0.4961 0.8017 1.7600 -4 151 0.5905 0.8189 1.7600 -4 152 0.6903 0.8334 1.7600 -4 153 0.7927 0.8521 1.7600 -4 154 0.8952 0.8754 1.7600 -4 155 0.9927 0.8897 1.7600 -4 156 1.0848 0.8968 1.7600 -4 157 1.1736 0.8890 1.7600 -4 158 1.2611 0.8770 1.7600 -4 159 1.3547 0.8656 1.7600 -4 160 1.4563 0.8599 1.7600 -4 161 1.5625 0.8521 1.7600 -4 162 1.6660 0.8390 1.7600 -4 163 1.7665 0.8223 1.7600 -4 164 1.8629 0.8063 1.7600 -4 165 1.9558 0.8044 1.7600 -4 166 2.0401 0.8154 1.7600 -4 167 2.1212 0.8312 1.7600 -4 168 2.2048 0.8423 1.7600 -4 169 2.2911 0.8509 1.7600 -4 170 2.3803 0.8626 1.7600 -4 171 2.4736 0.8796 1.7600 -4 172 2.5704 0.8992 1.7600 -4 173 2.6638 0.9103 1.7600 -4 174 2.7529 0.9037 1.7600 -4 175 2.8404 0.8899 1.7600 -4 176 2.9283 0.8755 1.7600 -4 177 3.0138 0.8680 1.7600 -4 178 3.1058 0.8593 1.7600 -4 179 3.2024 0.8503 1.7600 -4 180 3.3008 0.8356 1.7600 -4 181 3.4018 0.8233 1.7600 -4 182 3.5042 0.8144 1.7600 -4 183 3.6068 0.8196 1.7600 -4 184 3.7054 0.8369 1.7600 -4 185 3.7964 0.8549 1.7600 -4 186 3.8844 0.8711 1.7600 -4 187 3.9690 0.8860 1.7600 -4 188 4.0591 0.9018 1.7600 -4 189 4.1552 0.9175 1.7600 -4 190 4.2552 0.9284 1.7600 -4 191 4.3526 0.9334 1.7600 -4 192 4.4541 0.9275 1.7600 -4 193 4.5480 0.9138 1.7600 -4 194 4.6395 0.8991 1.7600 -4 195 4.7271 0.8894 1.7600 -4 196 4.8132 0.8790 1.7600 -4 197 4.9036 0.8643 1.7600 -4 198 5.0043 0.8470 1.7600 -4 199 5.1058 0.8299 1.7600 -4 200 5.2029 0.8225 1.7600 -4 201 5.3012 0.8296 1.7600 -4 202 5.3967 0.8446 1.7600 -4 203 5.4854 0.8602 1.7600 -4 204 5.5673 0.8746 1.7600 -4 205 5.6495 0.8876 1.7600 -4 206 5.7402 0.9010 1.7600 -4 207 5.8370 0.9146 1.7600 -4 208 5.9389 0.9237 1.7600 -5 56 -7.7618 0.8143 1.7600 -5 57 -7.6821 0.8100 1.7600 -5 58 -7.5861 0.8038 1.7600 -5 59 -7.4821 0.7978 1.7600 -5 60 -7.3776 0.8014 1.7600 -5 61 -7.2783 0.8114 1.7600 -5 62 -7.1876 0.8187 1.7600 -5 63 -7.1077 0.8146 1.7600 -5 64 -7.0313 0.8044 1.7600 -5 65 -6.9470 0.7931 1.7600 -5 66 -6.8478 0.7768 1.7600 -5 67 -6.7393 0.7538 1.7600 -5 68 -6.6282 0.7219 1.7600 -5 69 -6.5186 0.6841 1.7600 -5 70 -6.4153 0.6485 1.7600 -5 71 -6.3097 0.6247 1.7600 -5 72 -6.2237 0.6244 1.7600 -5 73 -6.1360 0.6242 1.7600 -5 74 -6.0377 0.6263 1.7600 -5 75 -5.9303 0.6321 1.7600 -5 76 -5.8164 0.6420 1.7600 -5 77 -5.6996 0.6553 1.7600 -5 78 -5.5813 0.6656 1.7600 -5 79 -5.4682 0.6605 1.7600 -5 80 -5.3704 0.6405 1.7600 -5 81 -5.2751 0.6160 1.7600 -5 82 -5.1789 0.5892 1.7600 -5 83 -5.0733 0.5628 1.7600 -5 84 -4.9610 0.5343 1.7600 -5 85 -4.8450 0.4972 1.7600 -5 86 -4.7271 0.4556 1.7600 -5 87 -4.6190 0.4300 1.7600 -5 88 -4.5301 0.4304 1.7600 -5 89 -4.4524 0.4347 1.7600 -5 90 -4.3711 0.4399 1.7600 -5 91 -4.2836 0.4465 1.7600 -5 92 -4.1911 0.4574 1.7600 -5 93 -4.0882 0.4720 1.7600 -5 94 -3.9783 0.4862 1.7600 -5 95 -3.8800 0.4844 1.7600 -5 96 -3.7962 0.4659 1.7600 -5 97 -3.7196 0.4410 1.7600 -5 98 -3.6414 0.4172 1.7600 -5 99 -3.5581 0.3932 1.7600 -5 100 -3.4699 0.3619 1.7600 -5 101 -3.3740 0.3259 1.7600 -5 102 -3.2738 0.2838 1.7600 -5 103 -3.1743 0.2556 1.7600 -5 104 -3.0832 0.2486 1.7600 -5 105 -2.9940 0.2523 1.7600 -5 106 -2.9049 0.2633 1.7600 -5 107 -2.8117 0.2786 1.7600 -5 108 -2.7080 0.2985 1.7600 -5 109 -2.5989 0.3246 1.7600 -5 110 -2.4869 0.3530 1.7600 -5 111 -2.3809 0.3667 1.7600 -5 112 -2.2836 0.3625 1.7600 -5 113 -2.1927 0.3532 1.7600 -5 114 -2.1025 0.3340 1.7600 -5 115 -2.0165 0.3251 1.7600 -5 116 -1.9238 0.3101 1.7600 -5 117 -1.8177 0.2872 1.7600 -5 118 -1.7084 0.2627 1.7600 -5 119 -1.6102 0.2485 1.7600 -5 120 -1.5091 0.2480 1.7600 -5 121 -1.4231 0.2607 1.7600 -5 122 -1.3455 0.2739 1.7600 -5 123 -1.2668 0.2891 1.7600 -5 124 -1.1795 0.3091 1.7600 -5 125 -1.0810 0.3369 1.7600 -5 126 -0.9806 0.3735 1.7600 -5 127 -0.8838 0.3972 1.7600 -5 128 -0.7933 0.4084 1.7600 -5 129 -0.7126 0.4031 1.7600 -5 130 -0.6401 0.3924 1.7600 -5 131 -0.5666 0.3814 1.7600 -5 132 -0.4841 0.3706 1.7600 -5 133 -0.3914 0.3538 1.7600 -5 134 -0.2936 0.3328 1.7600 -5 135 -0.1974 0.3107 1.7600 -5 136 -0.1111 0.2953 1.7600 -5 137 -0.0400 0.2978 1.7600 -5 138 0.0265 0.3065 1.7600 -5 139 0.1028 0.3168 1.7600 -5 140 0.1894 0.3312 1.7600 -5 141 0.2870 0.3543 1.7600 -5 142 0.3857 0.3859 1.7600 -5 143 0.4847 0.4138 1.7600 -5 144 0.5756 0.4318 1.7600 -5 145 0.6564 0.4274 1.7600 -5 146 0.7335 0.4172 1.7600 -5 147 0.8128 0.4053 1.7600 -5 148 0.8978 0.3952 1.7600 -5 149 0.9915 0.3841 1.7600 -5 150 1.0899 0.3598 1.7600 -5 151 1.1943 0.3296 1.7600 -5 152 1.2955 0.3047 1.7600 -5 153 1.3838 0.2981 1.7600 -5 154 1.4644 0.3028 1.7600 -5 155 1.5418 0.3117 1.7600 -5 156 1.6220 0.3200 1.7600 -5 157 1.7104 0.3372 1.7600 -5 158 1.8098 0.3626 1.7600 -5 159 1.9214 0.3930 1.7600 -5 160 2.0243 0.4134 1.7600 -5 161 2.1231 0.4162 1.7600 -5 162 2.2132 0.4094 1.7600 -5 163 2.3000 0.4000 1.7600 -5 164 2.3879 0.3896 1.7600 -5 165 2.4815 0.3771 1.7600 -5 166 2.5809 0.3598 1.7600 -5 167 2.6895 0.3387 1.7600 -5 168 2.7963 0.3136 1.7600 -5 169 2.8975 0.3025 1.7600 -5 170 2.9871 0.3090 1.7600 -5 171 3.0733 0.3208 1.7600 -5 172 3.1556 0.3334 1.7600 -5 173 3.2412 0.3480 1.7600 -5 174 3.3213 0.3686 1.7600 -5 175 3.4035 0.3914 1.7600 -5 176 3.4845 0.4097 1.7600 -5 177 3.5637 0.4194 1.7600 -5 178 3.6482 0.4162 1.7600 -5 179 3.7254 0.4076 1.7600 -5 180 3.7983 0.3982 1.7600 -5 181 3.8721 0.3874 1.7600 -5 182 3.9486 0.3751 1.7600 -5 183 4.0297 0.3626 1.7600 -5 184 4.1182 0.3489 1.7600 -5 185 4.2110 0.3345 1.7600 -5 186 4.3094 0.3286 1.7600 -5 187 4.3989 0.3350 1.7600 -5 188 4.4826 0.3458 1.7600 -5 189 4.5646 0.3599 1.7600 -5 190 4.6467 0.3782 1.7600 -5 191 4.7380 0.4008 1.7600 -5 192 4.8444 0.4261 1.7600 -5 193 4.9510 0.4443 1.7600 -5 194 5.0518 0.4419 1.7600 -5 195 5.1488 0.4270 1.7600 -5 196 5.2373 0.4109 1.7600 -5 197 5.3185 0.3944 1.7600 -5 198 5.3997 0.3709 1.7600 -5 199 5.4864 0.3410 1.7600 -5 200 5.5951 0.3069 1.7600 -5 201 5.7016 0.2728 1.7600 -5 202 5.8059 0.2531 1.7600 -5 203 5.9014 0.2517 1.7600 -6 71 -7.8357 1.9253 1.7600 -6 72 -7.7552 1.9033 1.7600 -6 73 -7.6618 1.8786 1.7600 -6 74 -7.5593 1.8506 1.7600 -6 75 -7.4568 1.8178 1.7600 -6 76 -7.3616 1.7827 1.7600 -6 77 -7.2734 1.7499 1.7600 -6 78 -7.1884 1.7263 1.7600 -6 79 -7.1016 1.7130 1.7600 -6 80 -7.0096 1.7037 1.7600 -6 81 -6.9088 1.6958 1.7600 -6 82 -6.8036 1.6888 1.7600 -6 83 -6.6913 1.6809 1.7600 -6 84 -6.5798 1.6733 1.7600 -6 85 -6.4743 1.6704 1.7600 -6 86 -6.3751 1.6689 1.7600 -6 87 -6.2864 1.6634 1.7600 -6 88 -6.2025 1.6515 1.7600 -6 89 -6.1198 1.6344 1.7600 -6 90 -6.0320 1.6114 1.7600 -6 91 -5.9394 1.5888 1.7600 -6 92 -5.8394 1.5622 1.7600 -6 93 -5.7459 1.5314 1.7600 -6 94 -5.6526 1.5006 1.7600 -6 95 -5.5629 1.4728 1.7600 -6 96 -5.4715 1.4578 1.7600 -6 97 -5.3788 1.4488 1.7600 -6 98 -5.2804 1.4397 1.7600 -6 99 -5.1766 1.4282 1.7600 -6 100 -5.0661 1.4163 1.7600 -6 101 -4.9485 1.4032 1.7600 -6 102 -4.8356 1.3948 1.7600 -6 103 -4.7293 1.3891 1.7600 -6 104 -4.6304 1.3772 1.7600 -6 105 -4.5334 1.3566 1.7600 -6 106 -4.4423 1.3344 1.7600 -6 107 -4.3548 1.3111 1.7600 -6 108 -4.2644 1.2864 1.7600 -6 109 -4.1705 1.2579 1.7600 -6 110 -4.0764 1.2273 1.7600 -6 111 -3.9828 1.1978 1.7600 -6 112 -3.8902 1.1732 1.7600 -6 113 -3.7944 1.1593 1.7600 -6 114 -3.6926 1.1568 1.7600 -6 115 -3.5863 1.1589 1.7600 -6 116 -3.4789 1.1648 1.7600 -6 117 -3.3681 1.1673 1.7600 -6 118 -3.2538 1.1733 1.7600 -6 119 -3.1383 1.1820 1.7600 -6 120 -3.0222 1.1925 1.7600 -6 121 -2.9157 1.1967 1.7600 -6 122 -2.8147 1.1901 1.7600 -6 123 -2.7186 1.1802 1.7600 -6 124 -2.6202 1.1711 1.7600 -6 125 -2.5237 1.1606 1.7600 -6 126 -2.4274 1.1501 1.7600 -6 127 -2.3279 1.1331 1.7600 -6 128 -2.2252 1.1158 1.7600 -6 129 -2.1220 1.1010 1.7600 -6 130 -2.0246 1.0974 1.7600 -6 131 -1.9279 1.1040 1.7600 -6 132 -1.8335 1.1136 1.7600 -6 133 -1.7461 1.1182 1.7600 -6 134 -1.6558 1.1224 1.7600 -6 135 -1.5625 1.1278 1.7600 -6 136 -1.4633 1.1369 1.7600 -6 137 -1.3622 1.1478 1.7600 -6 138 -1.2681 1.1534 1.7600 -6 139 -1.1797 1.1475 1.7600 -6 140 -1.0972 1.1364 1.7600 -6 141 -1.0141 1.1262 1.7600 -6 142 -0.9246 1.1173 1.7600 -6 143 -0.8295 1.1087 1.7600 -6 144 -0.7372 1.0986 1.7600 -6 145 -0.6482 1.0871 1.7600 -6 146 -0.5608 1.0773 1.7600 -6 147 -0.4771 1.0730 1.7600 -6 148 -0.3954 1.0757 1.7600 -6 149 -0.3120 1.0837 1.7600 -6 150 -0.2226 1.0912 1.7600 -6 151 -0.1254 1.1015 1.7600 -6 152 -0.0220 1.1136 1.7600 -6 153 0.0869 1.1291 1.7600 -6 154 0.1932 1.1469 1.7600 -6 155 0.2897 1.1636 1.7600 -6 156 0.3814 1.1725 1.7600 -6 157 0.4711 1.1694 1.7600 -6 158 0.5644 1.1624 1.7600 -6 159 0.6627 1.1550 1.7600 -6 160 0.7656 1.1464 1.7600 -6 161 0.8722 1.1386 1.7600 -6 162 0.9748 1.1255 1.7600 -6 163 1.0767 1.1114 1.7600 -6 164 1.1695 1.1020 1.7600 -6 165 1.2615 1.1067 1.7600 -6 166 1.3521 1.1189 1.7600 -6 167 1.4470 1.1289 1.7600 -6 168 1.5442 1.1382 1.7600 -6 169 1.6436 1.1477 1.7600 -6 170 1.7447 1.1626 1.7600 -6 171 1.8460 1.1800 1.7600 -6 172 1.9381 1.1993 1.7600 -6 173 2.0218 1.2128 1.7600 -6 174 2.1027 1.2118 1.7600 -6 175 2.1794 1.2058 1.7600 -6 176 2.2565 1.2004 1.7600 -6 177 2.3362 1.1958 1.7600 -6 178 2.4164 1.1884 1.7600 -6 179 2.4994 1.1810 1.7600 -6 180 2.5867 1.1669 1.7600 -6 181 2.6800 1.1499 1.7600 -6 182 2.7678 1.1393 1.7600 -6 183 2.8531 1.1409 1.7600 -6 184 2.9370 1.1471 1.7600 -6 185 3.0183 1.1505 1.7600 -6 186 3.0998 1.1537 1.7600 -6 187 3.1866 1.1540 1.7600 -6 188 3.2703 1.1582 1.7600 -6 189 3.3626 1.1632 1.7600 -6 190 3.4604 1.1686 1.7600 -6 191 3.5533 1.1726 1.7600 -6 192 3.6426 1.1688 1.7600 -6 193 3.7276 1.1576 1.7600 -6 194 3.8100 1.1481 1.7600 -6 195 3.8883 1.1406 1.7600 -6 196 3.9684 1.1324 1.7600 -6 197 4.0440 1.1267 1.7600 -6 198 4.1233 1.1187 1.7600 -6 199 4.2125 1.1084 1.7600 -6 200 4.3020 1.0995 1.7600 -6 201 4.3900 1.1016 1.7600 -6 202 4.4785 1.1162 1.7600 -6 203 4.5663 1.1348 1.7600 -6 204 4.6486 1.1507 1.7600 -6 205 4.7314 1.1652 1.7600 -6 206 4.8147 1.1796 1.7600 -6 207 4.9059 1.1963 1.7600 -6 208 5.0061 1.2141 1.7600 -6 209 5.1004 1.2263 1.7600 -6 210 5.1942 1.2260 1.7600 -6 211 5.2869 1.2181 1.7600 -6 212 5.3772 1.2085 1.7600 -6 213 5.4628 1.1990 1.7600 -6 214 5.5430 1.1888 1.7600 -6 215 5.6266 1.1750 1.7600 -6 216 5.7213 1.1573 1.7600 -6 217 5.8244 1.1404 1.7600 -6 218 5.9261 1.1334 1.7600 -7 59 -7.7579 1.9511 1.7600 -7 60 -7.6833 1.9332 1.7600 -7 61 -7.6103 1.9236 1.7600 -7 62 -7.5327 1.9192 1.7600 -7 63 -7.4457 1.9133 1.7600 -7 64 -7.3492 1.9056 1.7600 -7 65 -7.2469 1.8979 1.7600 -7 66 -7.1458 1.8932 1.7600 -7 67 -7.0515 1.8926 1.7600 -7 68 -6.9628 1.8925 1.7600 -7 69 -6.8777 1.8918 1.7600 -7 70 -6.7968 1.8866 1.7600 -7 71 -6.7093 1.8718 1.7600 -7 72 -6.6194 1.8532 1.7600 -7 73 -6.5215 1.8312 1.7600 -7 74 -6.4203 1.8072 1.7600 -7 75 -6.3214 1.7816 1.7600 -7 76 -6.2276 1.7557 1.7600 -7 77 -6.1350 1.7321 1.7600 -7 78 -6.0473 1.7170 1.7600 -7 79 -5.9562 1.7121 1.7600 -7 80 -5.8633 1.7110 1.7600 -7 81 -5.7667 1.7080 1.7600 -7 82 -5.6681 1.7029 1.7600 -7 83 -5.5701 1.7004 1.7600 -7 84 -5.4737 1.7004 1.7600 -7 85 -5.3841 1.7018 1.7600 -7 86 -5.2990 1.6958 1.7600 -7 87 -5.2186 1.6841 1.7600 -7 88 -5.1360 1.6660 1.7600 -7 89 -5.0510 1.6489 1.7600 -7 90 -4.9588 1.6305 1.7600 -7 91 -4.8664 1.6071 1.7600 -7 92 -4.7737 1.5809 1.7600 -7 93 -4.6868 1.5531 1.7600 -7 94 -4.5961 1.5299 1.7600 -7 95 -4.5057 1.5205 1.7600 -7 96 -4.4161 1.5226 1.7600 -7 97 -4.3254 1.5252 1.7600 -7 98 -4.2308 1.5168 1.7600 -7 99 -4.1306 1.5097 1.7600 -7 100 -4.0362 1.5123 1.7600 -7 101 -3.9375 1.5162 1.7600 -7 102 -3.8448 1.5139 1.7600 -7 103 -3.7498 1.5099 1.7600 -7 104 -3.6579 1.5034 1.7600 -7 105 -3.5685 1.4918 1.7600 -7 106 -3.4811 1.4793 1.7600 -7 107 -3.3909 1.4645 1.7600 -7 108 -3.2998 1.4498 1.7600 -7 109 -3.2111 1.4299 1.7600 -7 110 -3.1215 1.4098 1.7600 -7 111 -3.0260 1.3918 1.7600 -7 112 -2.9248 1.3930 1.7600 -7 113 -2.8255 1.4061 1.7600 -7 114 -2.7365 1.4131 1.7600 -7 115 -2.6543 1.4093 1.7600 -7 116 -2.5714 1.4092 1.7600 -7 117 -2.4811 1.4188 1.7600 -7 118 -2.3775 1.4312 1.7600 -7 119 -2.2730 1.4409 1.7600 -7 120 -2.1677 1.4390 1.7600 -7 121 -2.0749 1.4273 1.7600 -7 122 -2.0003 1.4159 1.7600 -7 123 -1.9274 1.4065 1.7600 -7 124 -1.8390 1.3972 1.7600 -7 125 -1.7407 1.3829 1.7600 -7 126 -1.6466 1.3640 1.7600 -7 127 -1.5466 1.3414 1.7600 -7 128 -1.4490 1.3274 1.7600 -7 129 -1.3537 1.3316 1.7600 -7 130 -1.2600 1.3420 1.7600 -7 131 -1.1695 1.3504 1.7600 -7 132 -1.0774 1.3578 1.7600 -7 133 -0.9727 1.3678 1.7600 -7 134 -0.8612 1.3814 1.7600 -7 135 -0.7627 1.4036 1.7600 -7 136 -0.6621 1.4216 1.7600 -7 137 -0.5589 1.4296 1.7600 -7 138 -0.4570 1.4320 1.7600 -7 139 -0.3663 1.4307 1.7600 -7 140 -0.2795 1.4296 1.7600 -7 141 -0.1848 1.4253 1.7600 -7 142 -0.0859 1.4161 1.7600 -7 143 0.0105 1.4083 1.7600 -7 144 0.0991 1.3965 1.7600 -7 145 0.1852 1.3983 1.7600 -7 146 0.2732 1.4070 1.7600 -7 147 0.3655 1.4200 1.7600 -7 148 0.4695 1.4252 1.7600 -7 149 0.5676 1.4325 1.7600 -7 150 0.6727 1.4395 1.7600 -7 151 0.7724 1.4563 1.7600 -7 152 0.8630 1.4786 1.7600 -7 153 0.9519 1.4964 1.7600 -7 154 1.0365 1.5123 1.7600 -7 155 1.1235 1.5135 1.7600 -7 156 1.2129 1.5064 1.7600 -7 157 1.2998 1.5001 1.7600 -7 158 1.3893 1.4912 1.7600 -7 159 1.4813 1.4793 1.7600 -7 160 1.5748 1.4607 1.7600 -7 161 1.6726 1.4354 1.7600 -7 162 1.7739 1.4273 1.7600 -7 163 1.8623 1.4314 1.7600 -7 164 1.9465 1.4378 1.7600 -7 165 2.0357 1.4400 1.7600 -7 166 2.1266 1.4447 1.7600 -7 167 2.2173 1.4542 1.7600 -7 168 2.3097 1.4675 1.7600 -7 169 2.4044 1.4786 1.7600 -7 170 2.4971 1.4860 1.7600 -7 171 2.5868 1.4862 1.7600 -7 172 2.6743 1.4834 1.7600 -7 173 2.7583 1.4823 1.7600 -7 174 2.8439 1.4765 1.7600 -7 175 2.9319 1.4679 1.7600 -7 176 3.0209 1.4587 1.7600 -7 177 3.1142 1.4484 1.7600 -7 178 3.2065 1.4403 1.7600 -7 179 3.2991 1.4395 1.7600 -7 180 3.3915 1.4450 1.7600 -7 181 3.4792 1.4527 1.7600 -7 182 3.5625 1.4608 1.7600 -7 183 3.6464 1.4677 1.7600 -7 184 3.7331 1.4774 1.7600 -7 185 3.8256 1.4917 1.7600 -7 186 3.9210 1.5047 1.7600 -7 187 4.0085 1.5141 1.7600 -7 188 4.0998 1.5158 1.7600 -7 189 4.1841 1.5113 1.7600 -7 190 4.2643 1.5027 1.7600 -7 191 4.3436 1.4952 1.7600 -7 192 4.4238 1.4846 1.7600 -7 193 4.5108 1.4721 1.7600 -7 194 4.6090 1.4611 1.7600 -7 195 4.7035 1.4574 1.7600 -7 196 4.7976 1.4651 1.7600 -7 197 4.8925 1.4808 1.7600 -7 198 4.9768 1.4946 1.7600 -7 199 5.0571 1.5075 1.7600 -7 200 5.1349 1.5227 1.7600 -7 201 5.2132 1.5424 1.7600 -7 202 5.3043 1.5621 1.7600 -7 203 5.3979 1.5839 1.7600 -7 204 5.4980 1.6050 1.7600 -7 205 5.5939 1.6157 1.7600 -7 206 5.6836 1.6180 1.7600 -7 207 5.7580 1.6165 1.7600 -7 208 5.8339 1.6148 1.7600 -7 209 5.9168 1.6094 1.7600 -8 79 -7.8298 1.1863 1.7600 -8 80 -7.7614 1.1674 1.7600 -8 81 -7.6924 1.1446 1.7600 -8 82 -7.6172 1.1238 1.7600 -8 83 -7.5309 1.1086 1.7600 -8 84 -7.4416 1.0944 1.7600 -8 85 -7.3507 1.0708 1.7600 -8 86 -7.2669 1.0421 1.7600 -8 87 -7.1903 1.0112 1.7600 -8 88 -7.1265 0.9827 1.7600 -8 89 -7.0690 0.9603 1.7600 -8 90 -7.0166 0.9407 1.7600 -8 91 -6.9651 0.9223 1.7600 -8 92 -6.9047 0.9077 1.7600 -8 93 -6.8360 0.9018 1.7600 -8 94 -6.7590 0.9049 1.7600 -8 95 -6.6690 0.9174 1.7600 -8 96 -6.5672 0.9340 1.7600 -8 97 -6.4718 0.9320 1.7600 -8 98 -6.3927 0.9301 1.7600 -8 99 -6.3196 0.9270 1.7600 -8 100 -6.2494 0.9197 1.7600 -8 101 -6.1730 0.9063 1.7600 -8 102 -6.0898 0.8911 1.7600 -8 103 -6.0037 0.8759 1.7600 -8 104 -5.9179 0.8621 1.7600 -8 105 -5.8321 0.8467 1.7600 -8 106 -5.7550 0.8324 1.7600 -8 107 -5.6814 0.8199 1.7600 -8 108 -5.6143 0.8134 1.7600 -8 109 -5.5492 0.8074 1.7600 -8 110 -5.4874 0.8018 1.7600 -8 111 -5.4203 0.7970 1.7600 -8 112 -5.3454 0.7983 1.7600 -8 113 -5.2660 0.7998 1.7600 -8 114 -5.1860 0.8056 1.7600 -8 115 -5.1027 0.8153 1.7600 -8 116 -5.0152 0.8244 1.7600 -8 117 -4.9251 0.8247 1.7600 -8 118 -4.8396 0.8080 1.7600 -8 119 -4.7614 0.7834 1.7600 -8 120 -4.6874 0.7625 1.7600 -8 121 -4.6101 0.7463 1.7600 -8 122 -4.5339 0.7286 1.7600 -8 123 -4.4560 0.7120 1.7600 -8 124 -4.3744 0.6967 1.7600 -8 125 -4.2920 0.6831 1.7600 -8 126 -4.2005 0.6772 1.7600 -8 127 -4.1070 0.6771 1.7600 -8 128 -4.0152 0.6788 1.7600 -8 129 -3.9267 0.6840 1.7600 -8 130 -3.8390 0.6890 1.7600 -8 131 -3.7539 0.6961 1.7600 -8 132 -3.6677 0.7076 1.7600 -8 133 -3.5760 0.7205 1.7600 -8 134 -3.4829 0.7305 1.7600 -8 135 -3.3914 0.7358 1.7600 -8 136 -3.2981 0.7337 1.7600 -8 137 -3.2053 0.7276 1.7600 -8 138 -3.1179 0.7151 1.7600 -8 139 -3.0325 0.6973 1.7600 -8 140 -2.9468 0.6815 1.7600 -8 141 -2.8550 0.6677 1.7600 -8 142 -2.7640 0.6595 1.7600 -8 143 -2.6795 0.6555 1.7600 -8 144 -2.5964 0.6561 1.7600 -8 145 -2.5162 0.6595 1.7600 -8 146 -2.4402 0.6612 1.7600 -8 147 -2.3646 0.6639 1.7600 -8 148 -2.2843 0.6676 1.7600 -8 149 -2.1993 0.6762 1.7600 -8 150 -2.1056 0.6943 1.7600 -8 151 -2.0052 0.7185 1.7600 -8 152 -1.9157 0.7378 1.7600 -8 153 -1.8338 0.7442 1.7600 -8 154 -1.7598 0.7404 1.7600 -8 155 -1.6866 0.7367 1.7600 -8 156 -1.6107 0.7298 1.7600 -8 157 -1.5311 0.7193 1.7600 -8 158 -1.4490 0.7113 1.7600 -8 159 -1.3625 0.7028 1.7600 -8 160 -1.2755 0.6986 1.7600 -8 161 -1.1908 0.6946 1.7600 -8 162 -1.1060 0.6947 1.7600 -8 163 -1.0203 0.7029 1.7600 -8 164 -0.9417 0.7153 1.7600 -8 165 -0.8663 0.7269 1.7600 -8 166 -0.7914 0.7416 1.7600 -8 167 -0.7116 0.7606 1.7600 -8 168 -0.6291 0.7862 1.7600 -8 169 -0.5399 0.8206 1.7600 -8 170 -0.4460 0.8542 1.7600 -8 171 -0.3507 0.8793 1.7600 -8 172 -0.2526 0.8935 1.7600 -8 173 -0.1512 0.8989 1.7600 -8 174 -0.0508 0.8941 1.7600 -8 175 0.0491 0.8787 1.7600 -8 176 0.1423 0.8581 1.7600 -8 177 0.2310 0.8392 1.7600 -8 178 0.3160 0.8255 1.7600 -8 179 0.4009 0.8102 1.7600 -8 180 0.4820 0.8024 1.7600 -8 181 0.5596 0.7976 1.7600 -8 182 0.6361 0.7981 1.7600 -8 183 0.7157 0.7999 1.7600 -8 184 0.7952 0.8047 1.7600 -8 185 0.8758 0.8124 1.7600 -8 186 0.9599 0.8202 1.7600 -8 187 1.0435 0.8287 1.7600 -8 188 1.1290 0.8375 1.7600 -8 189 1.2129 0.8424 1.7600 -8 190 1.2972 0.8373 1.7600 -8 191 1.3726 0.8250 1.7600 -8 192 1.4530 0.8082 1.7600 -8 193 1.5357 0.7883 1.7600 -8 194 1.6188 0.7669 1.7600 -8 195 1.7027 0.7476 1.7600 -8 196 1.7898 0.7273 1.7600 -8 197 1.8753 0.7069 1.7600 -8 198 1.9612 0.6891 1.7600 -8 199 2.0482 0.6793 1.7600 -8 200 2.1366 0.6716 1.7600 -8 201 2.2203 0.6673 1.7600 -8 202 2.3036 0.6620 1.7600 -8 203 2.3816 0.6581 1.7600 -8 204 2.4626 0.6569 1.7600 -8 205 2.5465 0.6553 1.7600 -8 206 2.6260 0.6521 1.7600 -8 207 2.7100 0.6465 1.7600 -8 208 2.7947 0.6312 1.7600 -8 209 2.8766 0.6136 1.7600 -8 210 2.9570 0.5939 1.7600 -8 211 3.0364 0.5750 1.7600 -8 212 3.1188 0.5544 1.7600 -8 213 3.2027 0.5331 1.7600 -8 214 3.2966 0.5123 1.7600 -8 215 3.3854 0.4951 1.7600 -8 216 3.4803 0.4836 1.7600 -8 217 3.5770 0.4789 1.7600 -8 218 3.6677 0.4775 1.7600 -8 219 3.7502 0.4785 1.7600 -8 220 3.8328 0.4799 1.7600 -8 221 3.9142 0.4831 1.7600 -8 222 4.0020 0.4904 1.7600 -8 223 4.0957 0.5007 1.7600 -8 224 4.1878 0.5100 1.7600 -8 225 4.2821 0.5117 1.7600 -8 226 4.3720 0.5071 1.7600 -8 227 4.4581 0.4998 1.7600 -8 228 4.5351 0.4914 1.7600 -8 229 4.6131 0.4852 1.7600 -8 230 4.6919 0.4774 1.7600 -8 231 4.7816 0.4725 1.7600 -8 232 4.8708 0.4684 1.7600 -8 233 4.9596 0.4689 1.7600 -8 234 5.0494 0.4770 1.7600 -8 235 5.1382 0.4895 1.7600 -8 236 5.2235 0.5024 1.7600 -8 237 5.3003 0.5124 1.7600 -8 238 5.3748 0.5216 1.7600 -8 239 5.4547 0.5286 1.7600 -8 240 5.5408 0.5369 1.7600 -8 241 5.6343 0.5469 1.7600 -8 242 5.7297 0.5536 1.7600 -8 243 5.8242 0.5529 1.7600 -8 244 5.9147 0.5453 1.7600 -9 93 -7.7793 0.8368 1.7600 -9 94 -7.7115 0.8171 1.7600 -9 95 -7.6379 0.8005 1.7600 -9 96 -7.5630 0.7881 1.7600 -9 97 -7.4901 0.7822 1.7600 -9 98 -7.4228 0.7795 1.7600 -9 99 -7.3606 0.7752 1.7600 -9 100 -7.3038 0.7650 1.7600 -9 101 -7.2494 0.7469 1.7600 -9 102 -7.1920 0.7241 1.7600 -9 103 -7.1292 0.6990 1.7600 -9 104 -7.0631 0.6735 1.7600 -9 105 -6.9951 0.6458 1.7600 -9 106 -6.9305 0.6140 1.7600 -9 107 -6.8719 0.5798 1.7600 -9 108 -6.8155 0.5472 1.7600 -9 109 -6.7563 0.5182 1.7600 -9 110 -6.6921 0.4957 1.7600 -9 111 -6.6214 0.4793 1.7600 -9 112 -6.5439 0.4683 1.7600 -9 113 -6.4623 0.4626 1.7600 -9 114 -6.3794 0.4641 1.7600 -9 115 -6.3024 0.4688 1.7600 -9 116 -6.2287 0.4730 1.7600 -9 117 -6.1600 0.4693 1.7600 -9 118 -6.0902 0.4605 1.7600 -9 119 -6.0189 0.4474 1.7600 -9 120 -5.9496 0.4311 1.7600 -9 121 -5.8731 0.4171 1.7600 -9 122 -5.7966 0.3992 1.7600 -9 123 -5.7226 0.3789 1.7600 -9 124 -5.6477 0.3562 1.7600 -9 125 -5.5756 0.3350 1.7600 -9 126 -5.5072 0.3203 1.7600 -9 127 -5.4368 0.3113 1.7600 -9 128 -5.3624 0.3091 1.7600 -9 129 -5.2873 0.3095 1.7600 -9 130 -5.2087 0.3166 1.7600 -9 131 -5.1344 0.3277 1.7600 -9 132 -5.0604 0.3438 1.7600 -9 133 -4.9869 0.3576 1.7600 -9 134 -4.9179 0.3659 1.7600 -9 135 -4.8500 0.3665 1.7600 -9 136 -4.7778 0.3634 1.7600 -9 137 -4.7064 0.3585 1.7600 -9 138 -4.6337 0.3527 1.7600 -9 139 -4.5612 0.3446 1.7600 -9 140 -4.4878 0.3337 1.7600 -9 141 -4.4131 0.3200 1.7600 -9 142 -4.3376 0.3085 1.7600 -9 143 -4.2635 0.3030 1.7600 -9 144 -4.1904 0.3026 1.7600 -9 145 -4.1147 0.3074 1.7600 -9 146 -4.0365 0.3160 1.7600 -9 147 -3.9627 0.3272 1.7600 -9 148 -3.8902 0.3450 1.7600 -9 149 -3.8122 0.3640 1.7600 -9 150 -3.7364 0.3803 1.7600 -9 151 -3.6700 0.3909 1.7600 -9 152 -3.5987 0.3928 1.7600 -9 153 -3.5293 0.3897 1.7600 -9 154 -3.4536 0.3877 1.7600 -9 155 -3.3783 0.3802 1.7600 -9 156 -3.3003 0.3656 1.7600 -9 157 -3.2130 0.3492 1.7600 -9 158 -3.1255 0.3336 1.7600 -9 159 -3.0410 0.3234 1.7600 -9 160 -2.9586 0.3194 1.7600 -9 161 -2.8772 0.3196 1.7600 -9 162 -2.7985 0.3274 1.7600 -9 163 -2.7234 0.3396 1.7600 -9 164 -2.6520 0.3568 1.7600 -9 165 -2.5743 0.3757 1.7600 -9 166 -2.4897 0.3944 1.7600 -9 167 -2.4063 0.4050 1.7600 -9 168 -2.3257 0.4073 1.7600 -9 169 -2.2474 0.4037 1.7600 -9 170 -2.1722 0.3986 1.7600 -9 171 -2.1013 0.3929 1.7600 -9 172 -2.0353 0.3841 1.7600 -9 173 -1.9540 0.3733 1.7600 -9 174 -1.8683 0.3608 1.7600 -9 175 -1.7788 0.3505 1.7600 -9 176 -1.6905 0.3440 1.7600 -9 177 -1.6060 0.3439 1.7600 -9 178 -1.5240 0.3498 1.7600 -9 179 -1.4426 0.3594 1.7600 -9 180 -1.3631 0.3733 1.7600 -9 181 -1.2796 0.3948 1.7600 -9 182 -1.1958 0.4175 1.7600 -9 183 -1.1139 0.4356 1.7600 -9 184 -1.0311 0.4413 1.7600 -9 185 -0.9510 0.4403 1.7600 -9 186 -0.8690 0.4388 1.7600 -9 187 -0.7865 0.4383 1.7600 -9 188 -0.7058 0.4347 1.7600 -9 189 -0.6263 0.4252 1.7600 -9 190 -0.5450 0.4122 1.7600 -9 191 -0.4641 0.3984 1.7600 -9 192 -0.3843 0.3870 1.7600 -9 193 -0.3042 0.3801 1.7600 -9 194 -0.2230 0.3790 1.7600 -9 195 -0.1400 0.3820 1.7600 -9 196 -0.0564 0.3887 1.7600 -9 197 0.0270 0.3996 1.7600 -9 198 0.1075 0.4147 1.7600 -9 199 0.1840 0.4290 1.7600 -9 200 0.2547 0.4402 1.7600 -9 201 0.3223 0.4421 1.7600 -9 202 0.3932 0.4362 1.7600 -9 203 0.4673 0.4295 1.7600 -9 204 0.5444 0.4227 1.7600 -9 205 0.6244 0.4111 1.7600 -9 206 0.7021 0.3976 1.7600 -9 207 0.7782 0.3762 1.7600 -9 208 0.8508 0.3577 1.7600 -9 209 0.9214 0.3433 1.7600 -9 210 0.9892 0.3394 1.7600 -9 211 1.0601 0.3404 1.7600 -9 212 1.1340 0.3469 1.7600 -9 213 1.2084 0.3565 1.7600 -9 214 1.2845 0.3742 1.7600 -9 215 1.3574 0.3936 1.7600 -9 216 1.4287 0.4118 1.7600 -9 217 1.5017 0.4239 1.7600 -9 218 1.5716 0.4273 1.7600 -9 219 1.6435 0.4234 1.7600 -9 220 1.7160 0.4180 1.7600 -9 221 1.7907 0.4120 1.7600 -9 222 1.8655 0.4027 1.7600 -9 223 1.9418 0.3916 1.7600 -9 224 2.0198 0.3761 1.7600 -9 225 2.1013 0.3610 1.7600 -9 226 2.1818 0.3528 1.7600 -9 227 2.2600 0.3491 1.7600 -9 228 2.3362 0.3507 1.7600 -9 229 2.4105 0.3558 1.7600 -9 230 2.4835 0.3630 1.7600 -9 231 2.5543 0.3755 1.7600 -9 232 2.6251 0.3898 1.7600 -9 233 2.6989 0.4029 1.7600 -9 234 2.7710 0.4134 1.7600 -9 235 2.8404 0.4151 1.7600 -9 236 2.9091 0.4103 1.7600 -9 237 2.9770 0.4016 1.7600 -9 238 3.0455 0.3939 1.7600 -9 239 3.1128 0.3832 1.7600 -9 240 3.1815 0.3703 1.7600 -9 241 3.2541 0.3513 1.7600 -9 242 3.3298 0.3348 1.7600 -9 243 3.4033 0.3215 1.7600 -9 244 3.4751 0.3148 1.7600 -9 245 3.5432 0.3151 1.7600 -9 246 3.6123 0.3212 1.7600 -9 247 3.6799 0.3287 1.7600 -9 248 3.7419 0.3385 1.7600 -9 249 3.8107 0.3526 1.7600 -9 250 3.8856 0.3674 1.7600 -9 251 3.9576 0.3752 1.7600 -9 252 4.0310 0.3768 1.7600 -9 253 4.1030 0.3713 1.7600 -9 254 4.1721 0.3622 1.7600 -9 255 4.2391 0.3511 1.7600 -9 256 4.3033 0.3402 1.7600 -9 257 4.3656 0.3237 1.7600 -9 258 4.4300 0.3045 1.7600 -9 259 4.5011 0.2837 1.7600 -9 260 4.5743 0.2667 1.7600 -9 261 4.6438 0.2526 1.7600 -9 262 4.7111 0.2424 1.7600 -9 263 4.7796 0.2356 1.7600 -9 264 4.8384 0.2319 1.7600 -9 265 4.8932 0.2337 1.7600 -9 266 4.9524 0.2392 1.7600 -9 267 5.0200 0.2482 1.7600 -9 268 5.0907 0.2553 1.7600 -9 269 5.1585 0.2596 1.7600 -9 270 5.2263 0.2557 1.7600 -9 271 5.2940 0.2465 1.7600 -9 272 5.3579 0.2354 1.7600 -9 273 5.4167 0.2241 1.7600 -9 274 5.4728 0.2122 1.7600 -9 275 5.5331 0.1959 1.7600 -9 276 5.6016 0.1743 1.7600 -9 277 5.6741 0.1531 1.7600 -9 278 5.7469 0.1374 1.7600 -9 279 5.8196 0.1291 1.7600 -9 280 5.8882 0.1262 1.7600 -9 281 5.9506 0.1263 1.7600 -10 87 -7.7771 2.1798 1.7600 -10 88 -7.7057 2.1776 1.7600 -10 89 -7.6255 2.1788 1.7600 -10 90 -7.5381 2.1805 1.7600 -10 91 -7.4451 2.1822 1.7600 -10 92 -7.3501 2.1826 1.7600 -10 93 -7.2579 2.1841 1.7600 -10 94 -7.1701 2.1859 1.7600 -10 95 -7.0842 2.1871 1.7600 -10 96 -6.9936 2.1788 1.7600 -10 97 -6.9082 2.1654 1.7600 -10 98 -6.8201 2.1459 1.7600 -10 99 -6.7298 2.1232 1.7600 -10 100 -6.6406 2.1002 1.7600 -10 101 -6.5577 2.0803 1.7600 -10 102 -6.4873 2.0660 1.7600 -10 103 -6.4132 2.0574 1.7600 -10 104 -6.3291 2.0508 1.7600 -10 105 -6.2424 2.0521 1.7600 -10 106 -6.1589 2.0474 1.7600 -10 107 -6.0706 2.0382 1.7600 -10 108 -5.9858 2.0256 1.7600 -10 109 -5.8957 2.0122 1.7600 -10 110 -5.8190 1.9951 1.7600 -10 111 -5.7372 1.9760 1.7600 -10 112 -5.6553 1.9497 1.7600 -10 113 -5.5757 1.9209 1.7600 -10 114 -5.4957 1.8917 1.7600 -10 115 -5.4132 1.8595 1.7600 -10 116 -5.3272 1.8292 1.7600 -10 117 -5.2398 1.7982 1.7600 -10 118 -5.1520 1.7719 1.7600 -10 119 -5.0691 1.7559 1.7600 -10 120 -4.9888 1.7504 1.7600 -10 121 -4.9134 1.7464 1.7600 -10 122 -4.8406 1.7438 1.7600 -10 123 -4.7633 1.7404 1.7600 -10 124 -4.6777 1.7366 1.7600 -10 125 -4.5987 1.7359 1.7600 -10 126 -4.5252 1.7311 1.7600 -10 127 -4.4604 1.7197 1.7600 -10 128 -4.3983 1.7000 1.7600 -10 129 -4.3396 1.6804 1.7600 -10 130 -4.2784 1.6598 1.7600 -10 131 -4.2128 1.6439 1.7600 -10 132 -4.1462 1.6312 1.7600 -10 133 -4.0801 1.6246 1.7600 -10 134 -4.0132 1.6185 1.7600 -10 135 -3.9457 1.6187 1.7600 -10 136 -3.8807 1.6201 1.7600 -10 137 -3.8169 1.6220 1.7600 -10 138 -3.7538 1.6204 1.7600 -10 139 -3.6845 1.6147 1.7600 -10 140 -3.6101 1.6133 1.7600 -10 141 -3.5396 1.6058 1.7600 -10 142 -3.4661 1.5960 1.7600 -10 143 -3.3885 1.5786 1.7600 -10 144 -3.3181 1.5583 1.7600 -10 145 -3.2477 1.5359 1.7600 -10 146 -3.1770 1.5145 1.7600 -10 147 -3.0999 1.4948 1.7600 -10 148 -3.0198 1.4763 1.7600 -10 149 -2.9405 1.4667 1.7600 -10 150 -2.8619 1.4686 1.7600 -10 151 -2.7847 1.4830 1.7600 -10 152 -2.7128 1.5001 1.7600 -10 153 -2.6443 1.5159 1.7600 -10 154 -2.5728 1.5309 1.7600 -10 155 -2.4973 1.5467 1.7600 -10 156 -2.4112 1.5635 1.7600 -10 157 -2.3273 1.5788 1.7600 -10 158 -2.2465 1.5856 1.7600 -10 159 -2.1698 1.5813 1.7600 -10 160 -2.0977 1.5699 1.7600 -10 161 -2.0263 1.5578 1.7600 -10 162 -1.9540 1.5435 1.7600 -10 163 -1.8764 1.5307 1.7600 -10 164 -1.7965 1.5209 1.7600 -10 165 -1.7165 1.5168 1.7600 -10 166 -1.6325 1.5193 1.7600 -10 167 -1.5499 1.5263 1.7600 -10 168 -1.4699 1.5355 1.7600 -10 169 -1.3900 1.5444 1.7600 -10 170 -1.3059 1.5536 1.7600 -10 171 -1.2146 1.5655 1.7600 -10 172 -1.1151 1.5784 1.7600 -10 173 -1.0139 1.5892 1.7600 -10 174 -0.9163 1.5853 1.7600 -10 175 -0.8232 1.5777 1.7600 -10 176 -0.7326 1.5687 1.7600 -10 177 -0.6446 1.5618 1.7600 -10 178 -0.5542 1.5524 1.7600 -10 179 -0.4657 1.5440 1.7600 -10 180 -0.3770 1.5395 1.7600 -10 181 -0.2874 1.5417 1.7600 -10 182 -0.1997 1.5456 1.7600 -10 183 -0.1142 1.5517 1.7600 -10 184 -0.0245 1.5557 1.7600 -10 185 0.0712 1.5568 1.7600 -10 186 0.1679 1.5569 1.7600 -10 187 0.2607 1.5577 1.7600 -10 188 0.3490 1.5565 1.7600 -10 189 0.4327 1.5504 1.7600 -10 190 0.5103 1.5392 1.7600 -10 191 0.5883 1.5242 1.7600 -10 192 0.6711 1.5094 1.7600 -10 193 0.7608 1.4954 1.7600 -10 194 0.8491 1.4871 1.7600 -10 195 0.9389 1.4828 1.7600 -10 196 1.0273 1.4830 1.7600 -10 197 1.1128 1.4936 1.7600 -10 198 1.1938 1.5079 1.7600 -10 199 1.2755 1.5238 1.7600 -10 200 1.3646 1.5391 1.7600 -10 201 1.4561 1.5503 1.7600 -10 202 1.5541 1.5644 1.7600 -10 203 1.6457 1.5724 1.7600 -10 204 1.7338 1.5733 1.7600 -10 205 1.8170 1.5674 1.7600 -10 206 1.8943 1.5565 1.7600 -10 207 1.9737 1.5471 1.7600 -10 208 2.0574 1.5373 1.7600 -10 209 2.1435 1.5286 1.7600 -10 210 2.2338 1.5216 1.7600 -10 211 2.3213 1.5191 1.7600 -10 212 2.4073 1.5226 1.7600 -10 213 2.4868 1.5349 1.7600 -10 214 2.5641 1.5485 1.7600 -10 215 2.6420 1.5603 1.7600 -10 216 2.7249 1.5675 1.7600 -10 217 2.8153 1.5765 1.7600 -10 218 2.9099 1.5869 1.7600 -10 219 2.9984 1.5937 1.7600 -10 220 3.0845 1.5879 1.7600 -10 221 3.1653 1.5724 1.7600 -10 222 3.2454 1.5525 1.7600 -10 223 3.3248 1.5332 1.7600 -10 224 3.4092 1.5170 1.7600 -10 225 3.5014 1.5076 1.7600 -10 226 3.5983 1.5016 1.7600 -10 227 3.6926 1.5013 1.7600 -10 228 3.7848 1.5086 1.7600 -10 229 3.8652 1.5211 1.7600 -10 230 3.9430 1.5345 1.7600 -10 231 4.0193 1.5473 1.7600 -10 232 4.1033 1.5621 1.7600 -10 233 4.1978 1.5783 1.7600 -10 234 4.2925 1.5924 1.7600 -10 235 4.3887 1.6019 1.7600 -10 236 4.4812 1.5998 1.7600 -10 237 4.5655 1.5945 1.7600 -10 238 4.6465 1.5876 1.7600 -10 239 4.7287 1.5847 1.7600 -10 240 4.8143 1.5861 1.7600 -10 241 4.9067 1.5936 1.7600 -10 242 5.0022 1.6001 1.7600 -10 243 5.0953 1.6144 1.7600 -10 244 5.1806 1.6380 1.7600 -10 245 5.2517 1.6628 1.7600 -10 246 5.3216 1.6871 1.7600 -10 247 5.3920 1.7107 1.7600 -10 248 5.4727 1.7361 1.7600 -10 249 5.5633 1.7653 1.7600 -10 250 5.6551 1.7887 1.7600 -10 251 5.7493 1.8004 1.7600 -10 252 5.8389 1.8002 1.7600 -10 253 5.9197 1.7948 1.7600 -11 83 -7.8082 1.6497 1.7600 -11 84 -7.7401 1.6533 1.7600 -11 85 -7.6657 1.6468 1.7600 -11 86 -7.5825 1.6343 1.7600 -11 87 -7.4941 1.6173 1.7600 -11 88 -7.4063 1.5939 1.7600 -11 89 -7.3205 1.5653 1.7600 -11 90 -7.2414 1.5356 1.7600 -11 91 -7.1655 1.5096 1.7600 -11 92 -7.0892 1.4944 1.7600 -11 93 -7.0058 1.4886 1.7600 -11 94 -6.9166 1.4876 1.7600 -11 95 -6.8242 1.4917 1.7600 -11 96 -6.7316 1.5036 1.7600 -11 97 -6.6265 1.5245 1.7600 -11 98 -6.5397 1.5407 1.7600 -11 99 -6.4595 1.5501 1.7600 -11 100 -6.3851 1.5485 1.7600 -11 101 -6.3105 1.5381 1.7600 -11 102 -6.2317 1.5233 1.7600 -11 103 -6.1486 1.5051 1.7600 -11 104 -6.0657 1.4821 1.7600 -11 105 -5.9825 1.4542 1.7600 -11 106 -5.9027 1.4245 1.7600 -11 107 -5.8297 1.4013 1.7600 -11 108 -5.7511 1.3869 1.7600 -11 109 -5.6630 1.3843 1.7600 -11 110 -5.5741 1.3856 1.7600 -11 111 -5.4803 1.3903 1.7600 -11 112 -5.3846 1.4017 1.7600 -11 113 -5.2940 1.4186 1.7600 -11 114 -5.2083 1.4350 1.7600 -11 115 -5.1286 1.4429 1.7600 -11 116 -5.0573 1.4376 1.7600 -11 117 -4.9831 1.4259 1.7600 -11 118 -4.9068 1.4096 1.7600 -11 119 -4.8263 1.3882 1.7600 -11 120 -4.7457 1.3615 1.7600 -11 121 -4.6656 1.3319 1.7600 -11 122 -4.5840 1.3037 1.7600 -11 123 -4.5029 1.2777 1.7600 -11 124 -4.4248 1.2650 1.7600 -11 125 -4.3491 1.2639 1.7600 -11 126 -4.2682 1.2669 1.7600 -11 127 -4.1860 1.2759 1.7600 -11 128 -4.1039 1.2891 1.7600 -11 129 -4.0213 1.3095 1.7600 -11 130 -3.9375 1.3307 1.7600 -11 131 -3.8557 1.3485 1.7600 -11 132 -3.7741 1.3540 1.7600 -11 133 -3.6947 1.3488 1.7600 -11 134 -3.6142 1.3406 1.7600 -11 135 -3.5323 1.3273 1.7600 -11 136 -3.4515 1.3072 1.7600 -11 137 -3.3727 1.2839 1.7600 -11 138 -3.2905 1.2583 1.7600 -11 139 -3.2088 1.2356 1.7600 -11 140 -3.1290 1.2238 1.7600 -11 141 -3.0488 1.2245 1.7600 -11 142 -2.9682 1.2306 1.7600 -11 143 -2.8856 1.2427 1.7600 -11 144 -2.8046 1.2609 1.7600 -11 145 -2.7220 1.2859 1.7600 -11 146 -2.6353 1.3121 1.7600 -11 147 -2.5474 1.3328 1.7600 -11 148 -2.4595 1.3439 1.7600 -11 149 -2.3752 1.3438 1.7600 -11 150 -2.2951 1.3390 1.7600 -11 151 -2.2154 1.3281 1.7600 -11 152 -2.1343 1.3110 1.7600 -11 153 -2.0496 1.2894 1.7600 -11 154 -1.9579 1.2673 1.7600 -11 155 -1.8680 1.2494 1.7600 -11 156 -1.7817 1.2472 1.7600 -11 157 -1.6974 1.2541 1.7600 -11 158 -1.6107 1.2664 1.7600 -11 159 -1.5250 1.2852 1.7600 -11 160 -1.4389 1.3084 1.7600 -11 161 -1.3495 1.3384 1.7600 -11 162 -1.2560 1.3684 1.7600 -11 163 -1.1561 1.3879 1.7600 -11 164 -1.0616 1.3964 1.7600 -11 165 -0.9786 1.3967 1.7600 -11 166 -0.8954 1.3921 1.7600 -11 167 -0.8110 1.3826 1.7600 -11 168 -0.7277 1.3649 1.7600 -11 169 -0.6421 1.3405 1.7600 -11 170 -0.5564 1.3167 1.7600 -11 171 -0.4643 1.2937 1.7600 -11 172 -0.3804 1.2905 1.7600 -11 173 -0.2936 1.2945 1.7600 -11 174 -0.2012 1.3027 1.7600 -11 175 -0.1073 1.3188 1.7600 -11 176 -0.0147 1.3424 1.7600 -11 177 0.0756 1.3652 1.7600 -11 178 0.1614 1.3915 1.7600 -11 179 0.2419 1.4015 1.7600 -11 180 0.3192 1.4017 1.7600 -11 181 0.3986 1.3967 1.7600 -11 182 0.4838 1.3884 1.7600 -11 183 0.5723 1.3729 1.7600 -11 184 0.6606 1.3510 1.7600 -11 185 0.7479 1.3270 1.7600 -11 186 0.8337 1.2994 1.7600 -11 187 0.9188 1.2897 1.7600 -11 188 1.0031 1.2956 1.7600 -11 189 1.0901 1.3018 1.7600 -11 190 1.1821 1.3118 1.7600 -11 191 1.2756 1.3278 1.7600 -11 192 1.3663 1.3479 1.7600 -11 193 1.4572 1.3682 1.7600 -11 194 1.5473 1.3825 1.7600 -11 195 1.6363 1.3881 1.7600 -11 196 1.7230 1.3841 1.7600 -11 197 1.8076 1.3776 1.7600 -11 198 1.8917 1.3665 1.7600 -11 199 1.9759 1.3500 1.7600 -11 200 2.0626 1.3306 1.7600 -11 201 2.1516 1.3109 1.7600 -11 202 2.2407 1.2961 1.7600 -11 203 2.3297 1.2949 1.7600 -11 204 2.4158 1.3007 1.7600 -11 205 2.4997 1.3101 1.7600 -11 206 2.5876 1.3233 1.7600 -11 207 2.6766 1.3426 1.7600 -11 208 2.7581 1.3643 1.7600 -11 209 2.8466 1.3867 1.7600 -11 210 2.9333 1.3997 1.7600 -11 211 3.0197 1.4019 1.7600 -11 212 3.0999 1.3965 1.7600 -11 213 3.1794 1.3858 1.7600 -11 214 3.2578 1.3681 1.7600 -11 215 3.3381 1.3430 1.7600 -11 216 3.4183 1.3152 1.7600 -11 217 3.5067 1.2880 1.7600 -11 218 3.5958 1.2674 1.7600 -11 219 3.6898 1.2579 1.7600 -11 220 3.7780 1.2572 1.7600 -11 221 3.8707 1.2627 1.7600 -11 222 3.9636 1.2754 1.7600 -11 223 4.0589 1.2913 1.7600 -11 224 4.1604 1.3037 1.7600 -11 225 4.2591 1.3088 1.7600 -11 226 4.3542 1.3027 1.7600 -11 227 4.4413 1.2901 1.7600 -11 228 4.5209 1.2744 1.7600 -11 229 4.5973 1.2567 1.7600 -11 230 4.6777 1.2326 1.7600 -11 231 4.7554 1.2058 1.7600 -11 232 4.8493 1.1747 1.7600 -11 233 4.9421 1.1479 1.7600 -11 234 5.0317 1.1334 1.7600 -11 235 5.1212 1.1287 1.7600 -11 236 5.2113 1.1273 1.7600 -11 237 5.3022 1.1314 1.7600 -11 238 5.3909 1.1425 1.7600 -11 239 5.4825 1.1554 1.7600 -11 240 5.5764 1.1640 1.7600 -11 241 5.6711 1.1623 1.7600 -11 242 5.7607 1.1496 1.7600 -11 243 5.8437 1.1318 1.7600 -11 244 5.9245 1.1125 1.7600 -12 98 -7.7835 2.0876 1.7600 -12 99 -7.6858 2.0667 1.7600 -12 100 -7.5886 2.0480 1.7600 -12 101 -7.5004 2.0356 1.7600 -12 102 -7.4160 2.0234 1.7600 -12 103 -7.3286 2.0112 1.7600 -12 104 -7.2524 2.0187 1.7600 -12 105 -7.1714 2.0225 1.7600 -12 106 -7.0830 2.0227 1.7600 -12 107 -6.9891 2.0181 1.7600 -12 108 -6.8943 2.0126 1.7600 -12 109 -6.8062 2.0090 1.7600 -12 110 -6.7261 2.0116 1.7600 -12 111 -6.6463 2.0132 1.7600 -12 112 -6.5748 1.9987 1.7600 -12 113 -6.5036 1.9775 1.7600 -12 114 -6.4226 1.9537 1.7600 -12 115 -6.3304 1.9301 1.7600 -12 116 -6.2406 1.9103 1.7600 -12 117 -6.1532 1.8963 1.7600 -12 118 -6.0726 1.8818 1.7600 -12 119 -5.9944 1.8736 1.7600 -12 120 -5.9168 1.8818 1.7600 -12 121 -5.8369 1.8916 1.7600 -12 122 -5.7553 1.9055 1.7600 -12 123 -5.6641 1.9163 1.7600 -12 124 -5.5731 1.9240 1.7600 -12 125 -5.4798 1.9320 1.7600 -12 126 -5.3965 1.9405 1.7600 -12 127 -5.3139 1.9394 1.7600 -12 128 -5.2433 1.9255 1.7600 -12 129 -5.1752 1.9014 1.7600 -12 130 -5.1001 1.8760 1.7600 -12 131 -5.0251 1.8500 1.7600 -12 132 -4.9548 1.8229 1.7600 -12 133 -4.8903 1.7959 1.7600 -12 134 -4.8246 1.7684 1.7600 -12 135 -4.7612 1.7520 1.7600 -12 136 -4.6986 1.7438 1.7600 -12 137 -4.6402 1.7344 1.7600 -12 138 -4.5826 1.7181 1.7600 -12 139 -4.5252 1.7045 1.7600 -12 140 -4.4676 1.6899 1.7600 -12 141 -4.4083 1.6813 1.7600 -12 142 -4.3520 1.6706 1.7600 -12 143 -4.2948 1.6600 1.7600 -12 144 -4.2381 1.6433 1.7600 -12 145 -4.1868 1.6194 1.7600 -12 146 -4.1302 1.5974 1.7600 -12 147 -4.0714 1.5754 1.7600 -12 148 -4.0088 1.5557 1.7600 -12 149 -3.9465 1.5369 1.7600 -12 150 -3.8830 1.5191 1.7600 -12 151 -3.8171 1.5022 1.7600 -12 152 -3.7431 1.4965 1.7600 -12 153 -3.6709 1.4959 1.7600 -12 154 -3.6025 1.4954 1.7600 -12 155 -3.5314 1.4975 1.7600 -12 156 -3.4589 1.5026 1.7600 -12 157 -3.3827 1.5128 1.7600 -12 158 -3.3077 1.5279 1.7600 -12 159 -3.2316 1.5388 1.7600 -12 160 -3.1575 1.5394 1.7600 -12 161 -3.0837 1.5311 1.7600 -12 162 -3.0105 1.5204 1.7600 -12 163 -2.9349 1.5059 1.7600 -12 164 -2.8578 1.4929 1.7600 -12 165 -2.7795 1.4821 1.7600 -12 166 -2.6984 1.4718 1.7600 -12 167 -2.6117 1.4676 1.7600 -12 168 -2.5245 1.4690 1.7600 -12 169 -2.4410 1.4724 1.7600 -12 170 -2.3595 1.4754 1.7600 -12 171 -2.2760 1.4785 1.7600 -12 172 -2.1874 1.4849 1.7600 -12 173 -2.0945 1.4972 1.7600 -12 174 -2.0006 1.5091 1.7600 -12 175 -1.9004 1.5102 1.7600 -12 176 -1.8070 1.4989 1.7600 -12 177 -1.7200 1.4809 1.7600 -12 178 -1.6317 1.4603 1.7600 -12 179 -1.5363 1.4398 1.7600 -12 180 -1.4366 1.4215 1.7600 -12 181 -1.3299 1.4023 1.7600 -12 182 -1.2241 1.3908 1.7600 -12 183 -1.1201 1.3919 1.7600 -12 184 -1.0223 1.4036 1.7600 -12 185 -0.9246 1.4118 1.7600 -12 186 -0.8341 1.4204 1.7600 -12 187 -0.7343 1.4221 1.7600 -12 188 -0.6380 1.4226 1.7600 -12 189 -0.5428 1.4290 1.7600 -12 190 -0.4536 1.4252 1.7600 -12 191 -0.3694 1.4148 1.7600 -12 192 -0.2874 1.3953 1.7600 -12 193 -0.2021 1.3730 1.7600 -12 194 -0.1116 1.3487 1.7600 -12 195 -0.0149 1.3278 1.7600 -12 196 0.0761 1.3122 1.7600 -12 197 0.1635 1.2986 1.7600 -12 198 0.2401 1.2927 1.7600 -12 199 0.3129 1.2932 1.7600 -12 200 0.3851 1.2912 1.7600 -12 201 0.4592 1.2874 1.7600 -12 202 0.5364 1.2838 1.7600 -12 203 0.6200 1.2784 1.7600 -12 204 0.6978 1.2796 1.7600 -12 205 0.7790 1.2805 1.7600 -12 206 0.8636 1.2738 1.7600 -12 207 0.9456 1.2569 1.7600 -12 208 1.0303 1.2391 1.7600 -12 209 1.1257 1.2203 1.7600 -12 210 1.2210 1.2027 1.7600 -12 211 1.3149 1.1871 1.7600 -12 212 1.4050 1.1666 1.7600 -12 213 1.4974 1.1486 1.7600 -12 214 1.5881 1.1441 1.7600 -12 215 1.6744 1.1481 1.7600 -12 216 1.7572 1.1480 1.7600 -12 217 1.8433 1.1468 1.7600 -12 218 1.9332 1.1453 1.7600 -12 219 2.0277 1.1477 1.7600 -12 220 2.1218 1.1580 1.7600 -12 221 2.2200 1.1677 1.7600 -12 222 2.3143 1.1690 1.7600 -12 223 2.4024 1.1625 1.7600 -12 224 2.4922 1.1543 1.7600 -12 225 2.5885 1.1482 1.7600 -12 226 2.6903 1.1464 1.7600 -12 227 2.7996 1.1459 1.7600 -12 228 2.9054 1.1446 1.7600 -12 229 3.0068 1.1534 1.7600 -12 230 3.0984 1.1722 1.7600 -12 231 3.1847 1.1913 1.7600 -12 232 3.2677 1.2017 1.7600 -12 233 3.3547 1.2092 1.7600 -12 234 3.4422 1.2181 1.7600 -12 235 3.5356 1.2306 1.7600 -12 236 3.6333 1.2403 1.7600 -12 237 3.7240 1.2397 1.7600 -12 238 3.8066 1.2307 1.7600 -12 239 3.8838 1.2179 1.7600 -12 240 3.9599 1.2088 1.7600 -12 241 4.0341 1.2036 1.7600 -12 242 4.1104 1.2032 1.7600 -12 243 4.1920 1.2013 1.7600 -12 244 4.2843 1.2025 1.7600 -12 245 4.3704 1.2137 1.7600 -12 246 4.4475 1.2304 1.7600 -12 247 4.5168 1.2447 1.7600 -12 248 4.5882 1.2538 1.7600 -12 249 4.6639 1.2601 1.7600 -12 250 4.7504 1.2675 1.7600 -12 251 4.8431 1.2788 1.7600 -12 252 4.9469 1.2857 1.7600 -12 253 5.0456 1.2796 1.7600 -12 254 5.1325 1.2689 1.7600 -12 255 5.2073 1.2584 1.7600 -12 256 5.2822 1.2510 1.7600 -12 257 5.3635 1.2484 1.7600 -12 258 5.4513 1.2499 1.7600 -12 259 5.5514 1.2506 1.7600 -12 260 5.6567 1.2541 1.7600 -12 261 5.7531 1.2689 1.7600 -12 262 5.8348 1.2891 1.7600 -12 263 5.9087 1.3092 1.7600 -13 97 -7.7591 1.5030 1.7600 -13 98 -7.6762 1.5097 1.7600 -13 99 -7.5879 1.5129 1.7600 -13 100 -7.5029 1.5150 1.7600 -13 101 -7.4248 1.5172 1.7600 -13 102 -7.3517 1.5188 1.7600 -13 103 -7.2821 1.5163 1.7600 -13 104 -7.2120 1.5099 1.7600 -13 105 -7.1365 1.4992 1.7600 -13 106 -7.0532 1.4849 1.7600 -13 107 -6.9638 1.4694 1.7600 -13 108 -6.8714 1.4549 1.7600 -13 109 -6.7799 1.4416 1.7600 -13 110 -6.6932 1.4295 1.7600 -13 111 -6.6083 1.4180 1.7600 -13 112 -6.5309 1.4111 1.7600 -13 113 -6.4536 1.4101 1.7600 -13 114 -6.3747 1.4109 1.7600 -13 115 -6.2886 1.4131 1.7600 -13 116 -6.1973 1.4137 1.7600 -13 117 -6.1089 1.4112 1.7600 -13 118 -6.0204 1.4092 1.7600 -13 119 -5.9352 1.4051 1.7600 -13 120 -5.8513 1.4021 1.7600 -13 121 -5.7736 1.3907 1.7600 -13 122 -5.6899 1.3792 1.7600 -13 123 -5.6057 1.3650 1.7600 -13 124 -5.5207 1.3504 1.7600 -13 125 -5.4351 1.3307 1.7600 -13 126 -5.3501 1.3114 1.7600 -13 127 -5.2656 1.2923 1.7600 -13 128 -5.1840 1.2789 1.7600 -13 129 -5.1019 1.2708 1.7600 -13 130 -5.0225 1.2692 1.7600 -13 131 -4.9453 1.2683 1.7600 -13 132 -4.8685 1.2681 1.7600 -13 133 -4.7910 1.2653 1.7600 -13 134 -4.7164 1.2624 1.7600 -13 135 -4.6392 1.2569 1.7600 -13 136 -4.5626 1.2521 1.7600 -13 137 -4.4852 1.2514 1.7600 -13 138 -4.4068 1.2439 1.7600 -13 139 -4.3324 1.2340 1.7600 -13 140 -4.2552 1.2236 1.7600 -13 141 -4.1771 1.2112 1.7600 -13 142 -4.0946 1.1957 1.7600 -13 143 -4.0086 1.1790 1.7600 -13 144 -3.9220 1.1613 1.7600 -13 145 -3.8299 1.1436 1.7600 -13 146 -3.7343 1.1268 1.7600 -13 147 -3.6448 1.1188 1.7600 -13 148 -3.5528 1.1134 1.7600 -13 149 -3.4616 1.1103 1.7600 -13 150 -3.3726 1.1106 1.7600 -13 151 -3.2852 1.1126 1.7600 -13 152 -3.1980 1.1162 1.7600 -13 153 -3.1111 1.1194 1.7600 -13 154 -3.0200 1.1208 1.7600 -13 155 -2.9358 1.1196 1.7600 -13 156 -2.8516 1.1127 1.7600 -13 157 -2.7707 1.1012 1.7600 -13 158 -2.6907 1.0831 1.7600 -13 159 -2.6158 1.0615 1.7600 -13 160 -2.5399 1.0353 1.7600 -13 161 -2.4579 1.0089 1.7600 -13 162 -2.3690 0.9865 1.7600 -13 163 -2.2741 0.9674 1.7600 -13 164 -2.1753 0.9526 1.7600 -13 165 -2.0751 0.9486 1.7600 -13 166 -1.9795 0.9499 1.7600 -13 167 -1.8874 0.9523 1.7600 -13 168 -1.8005 0.9534 1.7600 -13 169 -1.7110 0.9545 1.7600 -13 170 -1.6182 0.9545 1.7600 -13 171 -1.5224 0.9574 1.7600 -13 172 -1.4257 0.9564 1.7600 -13 173 -1.3327 0.9521 1.7600 -13 174 -1.2417 0.9432 1.7600 -13 175 -1.1518 0.9320 1.7600 -13 176 -1.0631 0.9186 1.7600 -13 177 -0.9735 0.9035 1.7600 -13 178 -0.8835 0.8873 1.7600 -13 179 -0.7923 0.8722 1.7600 -13 180 -0.7015 0.8606 1.7600 -13 181 -0.6103 0.8538 1.7600 -13 182 -0.5240 0.8559 1.7600 -13 183 -0.4378 0.8615 1.7600 -13 184 -0.3482 0.8668 1.7600 -13 185 -0.2522 0.8717 1.7600 -13 186 -0.1544 0.8789 1.7600 -13 187 -0.0588 0.8841 1.7600 -13 188 0.0333 0.8890 1.7600 -13 189 0.1212 0.8895 1.7600 -13 190 0.2073 0.8817 1.7600 -13 191 0.2876 0.8722 1.7600 -13 192 0.3683 0.8586 1.7600 -13 193 0.4530 0.8440 1.7600 -13 194 0.5390 0.8276 1.7600 -13 195 0.6204 0.8147 1.7600 -13 196 0.7061 0.7979 1.7600 -13 197 0.7917 0.7873 1.7600 -13 198 0.8737 0.7780 1.7600 -13 199 0.9569 0.7787 1.7600 -13 200 1.0424 0.7818 1.7600 -13 201 1.1299 0.7883 1.7600 -13 202 1.2177 0.7963 1.7600 -13 203 1.3071 0.8009 1.7600 -13 204 1.3982 0.8071 1.7600 -13 205 1.4904 0.8116 1.7600 -13 206 1.5806 0.8148 1.7600 -13 207 1.6684 0.8128 1.7600 -13 208 1.7538 0.8098 1.7600 -13 209 1.8391 0.8013 1.7600 -13 210 1.9241 0.7896 1.7600 -13 211 2.0067 0.7785 1.7600 -13 212 2.0867 0.7646 1.7600 -13 213 2.1701 0.7525 1.7600 -13 214 2.2578 0.7463 1.7600 -13 215 2.3457 0.7450 1.7600 -13 216 2.4301 0.7515 1.7600 -13 217 2.5112 0.7630 1.7600 -13 218 2.5899 0.7763 1.7600 -13 219 2.6708 0.7906 1.7600 -13 220 2.7535 0.8027 1.7600 -13 221 2.8402 0.8124 1.7600 -13 222 2.9312 0.8177 1.7600 -13 223 3.0258 0.8202 1.7600 -13 224 3.1187 0.8168 1.7600 -13 225 3.2050 0.8069 1.7600 -13 226 3.2899 0.7960 1.7600 -13 227 3.3702 0.7820 1.7600 -13 228 3.4519 0.7703 1.7600 -13 229 3.5326 0.7593 1.7600 -13 230 3.6202 0.7501 1.7600 -13 231 3.7096 0.7384 1.7600 -13 232 3.8014 0.7296 1.7600 -13 233 3.8892 0.7266 1.7600 -13 234 3.9731 0.7305 1.7600 -13 235 4.0519 0.7391 1.7600 -13 236 4.1267 0.7506 1.7600 -13 237 4.1997 0.7623 1.7600 -13 238 4.2686 0.7694 1.7600 -13 239 4.3453 0.7738 1.7600 -13 240 4.4296 0.7763 1.7600 -13 241 4.5182 0.7770 1.7600 -13 242 4.6029 0.7751 1.7600 -13 243 4.6828 0.7725 1.7600 -13 244 4.7571 0.7669 1.7600 -13 245 4.8303 0.7603 1.7600 -13 246 4.9026 0.7498 1.7600 -13 247 4.9733 0.7413 1.7600 -13 248 5.0474 0.7341 1.7600 -13 249 5.1285 0.7265 1.7600 -13 250 5.2116 0.7177 1.7600 -13 251 5.2936 0.7117 1.7600 -13 252 5.3759 0.7124 1.7600 -13 253 5.4563 0.7193 1.7600 -13 254 5.5318 0.7283 1.7600 -13 255 5.6032 0.7395 1.7600 -13 256 5.6731 0.7509 1.7600 -13 257 5.7485 0.7622 1.7600 -13 258 5.8334 0.7714 1.7600 -13 259 5.9244 0.7789 1.7600 -14 104 -7.7722 1.1610 1.7600 -14 105 -7.6669 1.1494 1.7600 -14 106 -7.5616 1.1387 1.7600 -14 107 -7.4693 1.1338 1.7600 -14 108 -7.3856 1.1191 1.7600 -14 109 -7.3144 1.1038 1.7600 -14 110 -7.2405 1.0813 1.7600 -14 111 -7.1528 1.0538 1.7600 -14 112 -7.0594 1.0271 1.7600 -14 113 -6.9636 1.0017 1.7600 -14 114 -6.8700 0.9777 1.7600 -14 115 -6.7848 0.9537 1.7600 -14 116 -6.7052 0.9363 1.7600 -14 117 -6.6286 0.9252 1.7600 -14 118 -6.5478 0.9266 1.7600 -14 119 -6.4629 0.9381 1.7600 -14 120 -6.3687 0.9485 1.7600 -14 121 -6.2704 0.9594 1.7600 -14 122 -6.1702 0.9677 1.7600 -14 123 -6.0745 0.9764 1.7600 -14 124 -5.9827 0.9818 1.7600 -14 125 -5.8989 0.9827 1.7600 -14 126 -5.8141 0.9761 1.7600 -14 127 -5.7314 0.9581 1.7600 -14 128 -5.6453 0.9363 1.7600 -14 129 -5.5545 0.9136 1.7600 -14 130 -5.4607 0.8889 1.7600 -14 131 -5.3690 0.8627 1.7600 -14 132 -5.2778 0.8401 1.7600 -14 133 -5.1919 0.8197 1.7600 -14 134 -5.1064 0.8092 1.7600 -14 135 -5.0193 0.8114 1.7600 -14 136 -4.9339 0.8206 1.7600 -14 137 -4.8478 0.8314 1.7600 -14 138 -4.7586 0.8447 1.7600 -14 139 -4.6693 0.8569 1.7600 -14 140 -4.5864 0.8714 1.7600 -14 141 -4.5063 0.8845 1.7600 -14 142 -4.4337 0.8940 1.7600 -14 143 -4.3637 0.8919 1.7600 -14 144 -4.3001 0.8808 1.7600 -14 145 -4.2395 0.8667 1.7600 -14 146 -4.1725 0.8503 1.7600 -14 147 -4.1044 0.8324 1.7600 -14 148 -4.0301 0.8114 1.7600 -14 149 -3.9573 0.7904 1.7600 -14 150 -3.8880 0.7680 1.7600 -14 151 -3.8177 0.7493 1.7600 -14 152 -3.7459 0.7419 1.7600 -14 153 -3.6761 0.7466 1.7600 -14 154 -3.6019 0.7571 1.7600 -14 155 -3.5218 0.7696 1.7600 -14 156 -3.4417 0.7826 1.7600 -14 157 -3.3618 0.7944 1.7600 -14 158 -3.2829 0.8072 1.7600 -14 159 -3.2044 0.8180 1.7600 -14 160 -3.1266 0.8255 1.7600 -14 161 -3.0531 0.8271 1.7600 -14 162 -2.9829 0.8227 1.7600 -14 163 -2.9152 0.8130 1.7600 -14 164 -2.8437 0.8027 1.7600 -14 165 -2.7723 0.7919 1.7600 -14 166 -2.6957 0.7783 1.7600 -14 167 -2.6107 0.7620 1.7600 -14 168 -2.5238 0.7469 1.7600 -14 169 -2.4366 0.7359 1.7600 -14 170 -2.3506 0.7389 1.7600 -14 171 -2.2687 0.7551 1.7600 -14 172 -2.1909 0.7754 1.7600 -14 173 -2.1149 0.7978 1.7600 -14 174 -2.0380 0.8195 1.7600 -14 175 -1.9599 0.8382 1.7600 -14 176 -1.8825 0.8559 1.7600 -14 177 -1.8032 0.8629 1.7600 -14 178 -1.7201 0.8610 1.7600 -14 179 -1.6438 0.8439 1.7600 -14 180 -1.5744 0.8251 1.7600 -14 181 -1.5057 0.8037 1.7600 -14 182 -1.4303 0.7853 1.7600 -14 183 -1.3499 0.7694 1.7600 -14 184 -1.2627 0.7528 1.7600 -14 185 -1.1750 0.7423 1.7600 -14 186 -1.0911 0.7404 1.7600 -14 187 -1.0116 0.7552 1.7600 -14 188 -0.9369 0.7804 1.7600 -14 189 -0.8608 0.8049 1.7600 -14 190 -0.7798 0.8292 1.7600 -14 191 -0.6964 0.8508 1.7600 -14 192 -0.6125 0.8728 1.7600 -14 193 -0.5312 0.8924 1.7600 -14 194 -0.4520 0.9087 1.7600 -14 195 -0.3798 0.9115 1.7600 -14 196 -0.3104 0.9097 1.7600 -14 197 -0.2379 0.9013 1.7600 -14 198 -0.1604 0.8949 1.7600 -14 199 -0.0718 0.8874 1.7600 -14 200 0.0156 0.8748 1.7600 -14 201 0.1011 0.8592 1.7600 -14 202 0.1824 0.8488 1.7600 -14 203 0.2584 0.8511 1.7600 -14 204 0.3348 0.8647 1.7600 -14 205 0.4125 0.8812 1.7600 -14 206 0.4958 0.9000 1.7600 -14 207 0.5847 0.9151 1.7600 -14 208 0.6772 0.9286 1.7600 -14 209 0.7650 0.9422 1.7600 -14 210 0.8480 0.9486 1.7600 -14 211 0.9274 0.9507 1.7600 -14 212 1.0045 0.9407 1.7600 -14 213 1.0802 0.9244 1.7600 -14 214 1.1579 0.9084 1.7600 -14 215 1.2419 0.8924 1.7600 -14 216 1.3268 0.8760 1.7600 -14 217 1.4105 0.8586 1.7600 -14 218 1.4968 0.8403 1.7600 -14 219 1.5790 0.8281 1.7600 -14 220 1.6562 0.8290 1.7600 -14 221 1.7318 0.8355 1.7600 -14 222 1.8097 0.8451 1.7600 -14 223 1.8916 0.8563 1.7600 -14 224 1.9772 0.8637 1.7600 -14 225 2.0626 0.8716 1.7600 -14 226 2.1476 0.8764 1.7600 -14 227 2.2269 0.8772 1.7600 -14 228 2.3130 0.8748 1.7600 -14 229 2.3995 0.8668 1.7600 -14 230 2.4831 0.8554 1.7600 -14 231 2.5678 0.8444 1.7600 -14 232 2.6548 0.8372 1.7600 -14 233 2.7437 0.8263 1.7600 -14 234 2.8348 0.8115 1.7600 -14 235 2.9271 0.7984 1.7600 -14 236 3.0134 0.7884 1.7600 -14 237 3.1033 0.7847 1.7600 -14 238 3.1911 0.7944 1.7600 -14 239 3.2783 0.8093 1.7600 -14 240 3.3636 0.8253 1.7600 -14 241 3.4552 0.8435 1.7600 -14 242 3.5493 0.8605 1.7600 -14 243 3.6486 0.8731 1.7600 -14 244 3.7458 0.8814 1.7600 -14 245 3.8475 0.8810 1.7600 -14 246 3.9473 0.8676 1.7600 -14 247 4.0341 0.8513 1.7600 -14 248 4.1154 0.8337 1.7600 -14 249 4.1940 0.8147 1.7600 -14 250 4.2777 0.7939 1.7600 -14 251 4.3660 0.7692 1.7600 -14 252 4.4593 0.7456 1.7600 -14 253 4.5595 0.7245 1.7600 -14 254 4.6616 0.7143 1.7600 -14 255 4.7582 0.7109 1.7600 -14 256 4.8450 0.7127 1.7600 -14 257 4.9321 0.7144 1.7600 -14 258 5.0207 0.7114 1.7600 -14 259 5.1147 0.7023 1.7600 -14 260 5.2120 0.6907 1.7600 -14 261 5.3098 0.6731 1.7600 -14 262 5.4037 0.6415 1.7600 -14 263 5.4788 0.6057 1.7600 -14 264 5.5478 0.5707 1.7600 -14 265 5.6126 0.5372 1.7600 -14 266 5.6832 0.5066 1.7600 -14 267 5.7698 0.4753 1.7600 -14 268 5.8672 0.4498 1.7600 -15 108 -7.7907 1.7413 1.7600 -15 109 -7.7077 1.7316 1.7600 -15 110 -7.6263 1.7239 1.7600 -15 111 -7.5450 1.7182 1.7600 -15 112 -7.4591 1.7138 1.7600 -15 113 -7.3685 1.7105 1.7600 -15 114 -7.2757 1.7071 1.7600 -15 115 -7.1854 1.7032 1.7600 -15 116 -7.1007 1.6975 1.7600 -15 117 -7.0193 1.6899 1.7600 -15 118 -6.9404 1.6799 1.7600 -15 119 -6.8606 1.6663 1.7600 -15 120 -6.7794 1.6485 1.7600 -15 121 -6.6963 1.6279 1.7600 -15 122 -6.6116 1.6055 1.7600 -15 123 -6.5276 1.5815 1.7600 -15 124 -6.4474 1.5567 1.7600 -15 125 -6.3702 1.5362 1.7600 -15 126 -6.2905 1.5156 1.7600 -15 127 -6.2130 1.4995 1.7600 -15 128 -6.1290 1.4856 1.7600 -15 129 -6.0427 1.4712 1.7600 -15 130 -5.9547 1.4615 1.7600 -15 131 -5.8698 1.4530 1.7600 -15 132 -5.7864 1.4445 1.7600 -15 133 -5.7043 1.4354 1.7600 -15 134 -5.6226 1.4243 1.7600 -15 135 -5.5408 1.4084 1.7600 -15 136 -5.4586 1.3918 1.7600 -15 137 -5.3771 1.3720 1.7600 -15 138 -5.2977 1.3500 1.7600 -15 139 -5.2198 1.3266 1.7600 -15 140 -5.1440 1.3039 1.7600 -15 141 -5.0693 1.2844 1.7600 -15 142 -4.9968 1.2671 1.7600 -15 143 -4.9257 1.2538 1.7600 -15 144 -4.8526 1.2419 1.7600 -15 145 -4.7804 1.2310 1.7600 -15 146 -4.7081 1.2207 1.7600 -15 147 -4.6365 1.2128 1.7600 -15 148 -4.5667 1.2071 1.7600 -15 149 -4.4967 1.1995 1.7600 -15 150 -4.4262 1.1908 1.7600 -15 151 -4.3562 1.1804 1.7600 -15 152 -4.2824 1.1683 1.7600 -15 153 -4.2091 1.1557 1.7600 -15 154 -4.1362 1.1391 1.7600 -15 155 -4.0606 1.1243 1.7600 -15 156 -3.9870 1.1108 1.7600 -15 157 -3.9118 1.1004 1.7600 -15 158 -3.8335 1.0938 1.7600 -15 159 -3.7547 1.0886 1.7600 -15 160 -3.6795 1.0854 1.7600 -15 161 -3.6024 1.0855 1.7600 -15 162 -3.5231 1.0891 1.7600 -15 163 -3.4435 1.0927 1.7600 -15 164 -3.3642 1.0971 1.7600 -15 165 -3.2839 1.0989 1.7600 -15 166 -3.2025 1.1018 1.7600 -15 167 -3.1249 1.1014 1.7600 -15 168 -3.0495 1.1022 1.7600 -15 169 -2.9792 1.1021 1.7600 -15 170 -2.9057 1.1017 1.7600 -15 171 -2.8298 1.0996 1.7600 -15 172 -2.7533 1.0984 1.7600 -15 173 -2.6724 1.1018 1.7600 -15 174 -2.5903 1.1100 1.7600 -15 175 -2.5119 1.1154 1.7600 -15 176 -2.4334 1.1218 1.7600 -15 177 -2.3542 1.1305 1.7600 -15 178 -2.2757 1.1416 1.7600 -15 179 -2.1916 1.1561 1.7600 -15 180 -2.1070 1.1688 1.7600 -15 181 -2.0209 1.1802 1.7600 -15 182 -1.9384 1.1850 1.7600 -15 183 -1.8546 1.1901 1.7600 -15 184 -1.7750 1.1886 1.7600 -15 185 -1.6954 1.1885 1.7600 -15 186 -1.6139 1.1867 1.7600 -15 187 -1.5290 1.1855 1.7600 -15 188 -1.4448 1.1846 1.7600 -15 189 -1.3577 1.1874 1.7600 -15 190 -1.2700 1.1908 1.7600 -15 191 -1.1851 1.1916 1.7600 -15 192 -1.1005 1.1953 1.7600 -15 193 -1.0133 1.1999 1.7600 -15 194 -0.9274 1.2074 1.7600 -15 195 -0.8411 1.2118 1.7600 -15 196 -0.7568 1.2155 1.7600 -15 197 -0.6753 1.2165 1.7600 -15 198 -0.5940 1.2156 1.7600 -15 199 -0.5155 1.2126 1.7600 -15 200 -0.4392 1.2115 1.7600 -15 201 -0.3640 1.2138 1.7600 -15 202 -0.2885 1.2185 1.7600 -15 203 -0.2135 1.2288 1.7600 -15 204 -0.1411 1.2393 1.7600 -15 205 -0.0679 1.2487 1.7600 -15 206 0.0111 1.2615 1.7600 -15 207 0.0899 1.2764 1.7600 -15 208 0.1696 1.2939 1.7600 -15 209 0.2477 1.3141 1.7600 -15 210 0.3260 1.3333 1.7600 -15 211 0.4083 1.3533 1.7600 -15 212 0.4938 1.3724 1.7600 -15 213 0.5812 1.3901 1.7600 -15 214 0.6698 1.4057 1.7600 -15 215 0.7583 1.4160 1.7600 -15 216 0.8479 1.4253 1.7600 -15 217 0.9371 1.4349 1.7600 -15 218 1.0266 1.4471 1.7600 -15 219 1.1201 1.4590 1.7600 -15 220 1.2149 1.4727 1.7600 -15 221 1.3112 1.4855 1.7600 -15 222 1.4072 1.4998 1.7600 -15 223 1.5054 1.5127 1.7600 -15 224 1.6026 1.5234 1.7600 -15 225 1.7018 1.5320 1.7600 -15 226 1.7971 1.5380 1.7600 -15 227 1.8928 1.5394 1.7600 -15 228 1.9936 1.5382 1.7600 -15 229 2.0893 1.5315 1.7600 -15 230 2.1836 1.5264 1.7600 -15 231 2.2814 1.5186 1.7600 -15 232 2.3817 1.5131 1.7600 -15 233 2.4833 1.5104 1.7600 -15 234 2.5831 1.5090 1.7600 -15 235 2.6772 1.5069 1.7600 -15 236 2.7693 1.5046 1.7600 -15 237 2.8592 1.5028 1.7600 -15 238 2.9448 1.5056 1.7600 -15 239 3.0328 1.5085 1.7600 -15 240 3.1210 1.5117 1.7600 -15 241 3.2137 1.5176 1.7600 -15 242 3.3095 1.5228 1.7600 -15 243 3.4010 1.5237 1.7600 -15 244 3.4865 1.5250 1.7600 -15 245 3.5720 1.5213 1.7600 -15 246 3.6570 1.5221 1.7600 -15 247 3.7477 1.5237 1.7600 -15 248 3.8404 1.5254 1.7600 -15 249 3.9336 1.5313 1.7600 -15 250 4.0309 1.5357 1.7600 -15 251 4.1193 1.5425 1.7600 -15 252 4.2051 1.5481 1.7600 -15 253 4.2874 1.5577 1.7600 -15 254 4.3741 1.5679 1.7600 -15 255 4.4682 1.5789 1.7600 -15 256 4.5666 1.5909 1.7600 -15 257 4.6661 1.5991 1.7600 -15 258 4.7637 1.6010 1.7600 -15 259 4.8556 1.6001 1.7600 -15 260 4.9414 1.5946 1.7600 -15 261 5.0211 1.5850 1.7600 -15 262 5.1003 1.5732 1.7600 -15 263 5.1846 1.5656 1.7600 -15 264 5.2732 1.5604 1.7600 -15 265 5.3629 1.5598 1.7600 -15 266 5.4472 1.5605 1.7600 -15 267 5.5285 1.5609 1.7600 -15 268 5.6060 1.5612 1.7600 -15 269 5.6835 1.5612 1.7600 -15 270 5.7650 1.5613 1.7600 -15 271 5.8518 1.5602 1.7600 -15 272 5.9391 1.5533 1.7600 -16 119 -7.7712 1.5876 1.7600 -16 120 -7.6811 1.5912 1.7600 -16 121 -7.5950 1.5947 1.7600 -16 122 -7.5107 1.5977 1.7600 -16 123 -7.4252 1.6021 1.7600 -16 124 -7.3455 1.6113 1.7600 -16 125 -7.2628 1.6225 1.7600 -16 126 -7.1775 1.6362 1.7600 -16 127 -7.0875 1.6454 1.7600 -16 128 -6.9962 1.6584 1.7600 -16 129 -6.8994 1.6663 1.7600 -16 130 -6.8048 1.6767 1.7600 -16 131 -6.7112 1.6819 1.7600 -16 132 -6.6210 1.6871 1.7600 -16 133 -6.5323 1.6896 1.7600 -16 134 -6.4459 1.6913 1.7600 -16 135 -6.3578 1.6945 1.7600 -16 136 -6.2645 1.6966 1.7600 -16 137 -6.1675 1.6991 1.7600 -16 138 -6.0750 1.6992 1.7600 -16 139 -5.9838 1.6960 1.7600 -16 140 -5.8962 1.6946 1.7600 -16 141 -5.8111 1.6932 1.7600 -16 142 -5.7278 1.6916 1.7600 -16 143 -5.6420 1.6871 1.7600 -16 144 -5.5569 1.6812 1.7600 -16 145 -5.4679 1.6733 1.7600 -16 146 -5.3782 1.6650 1.7600 -16 147 -5.2888 1.6564 1.7600 -16 148 -5.2069 1.6428 1.7600 -16 149 -5.1314 1.6293 1.7600 -16 150 -5.0541 1.6152 1.7600 -16 151 -4.9780 1.6006 1.7600 -16 152 -4.8964 1.5842 1.7600 -16 153 -4.8141 1.5696 1.7600 -16 154 -4.7313 1.5525 1.7600 -16 155 -4.6540 1.5392 1.7600 -16 156 -4.5811 1.5276 1.7600 -16 157 -4.5077 1.5140 1.7600 -16 158 -4.4352 1.5026 1.7600 -16 159 -4.3630 1.4924 1.7600 -16 160 -4.2901 1.4832 1.7600 -16 161 -4.2108 1.4749 1.7600 -16 162 -4.1289 1.4635 1.7600 -16 163 -4.0464 1.4535 1.7600 -16 164 -3.9625 1.4447 1.7600 -16 165 -3.8782 1.4352 1.7600 -16 166 -3.7981 1.4257 1.7600 -16 167 -3.7187 1.4176 1.7600 -16 168 -3.6354 1.4121 1.7600 -16 169 -3.5541 1.4038 1.7600 -16 170 -3.4665 1.3982 1.7600 -16 171 -3.3782 1.3930 1.7600 -16 172 -3.2935 1.3866 1.7600 -16 173 -3.2125 1.3836 1.7600 -16 174 -3.1310 1.3850 1.7600 -16 175 -3.0510 1.3883 1.7600 -16 176 -2.9699 1.3888 1.7600 -16 177 -2.8860 1.3932 1.7600 -16 178 -2.7993 1.3938 1.7600 -16 179 -2.7129 1.3994 1.7600 -16 180 -2.6279 1.4065 1.7600 -16 181 -2.5450 1.4124 1.7600 -16 182 -2.4640 1.4118 1.7600 -16 183 -2.3835 1.4125 1.7600 -16 184 -2.3097 1.4118 1.7600 -16 185 -2.2340 1.4134 1.7600 -16 186 -2.1531 1.4166 1.7600 -16 187 -2.0704 1.4183 1.7600 -16 188 -1.9881 1.4222 1.7600 -16 189 -1.9056 1.4284 1.7600 -16 190 -1.8171 1.4358 1.7600 -16 191 -1.7374 1.4408 1.7600 -16 192 -1.6543 1.4459 1.7600 -16 193 -1.5711 1.4503 1.7600 -16 194 -1.4848 1.4552 1.7600 -16 195 -1.3969 1.4620 1.7600 -16 196 -1.3100 1.4692 1.7600 -16 197 -1.2253 1.4722 1.7600 -16 198 -1.1429 1.4702 1.7600 -16 199 -1.0620 1.4652 1.7600 -16 200 -0.9808 1.4595 1.7600 -16 201 -0.9001 1.4543 1.7600 -16 202 -0.8174 1.4483 1.7600 -16 203 -0.7336 1.4426 1.7600 -16 204 -0.6522 1.4376 1.7600 -16 205 -0.5700 1.4330 1.7600 -16 206 -0.4916 1.4314 1.7600 -16 207 -0.4160 1.4318 1.7600 -16 208 -0.3392 1.4334 1.7600 -16 209 -0.2611 1.4342 1.7600 -16 210 -0.1838 1.4340 1.7600 -16 211 -0.1080 1.4350 1.7600 -16 212 -0.0337 1.4401 1.7600 -16 213 0.0362 1.4437 1.7600 -16 214 0.0986 1.4435 1.7600 -16 215 0.1584 1.4445 1.7600 -16 216 0.2229 1.4466 1.7600 -16 217 0.2902 1.4485 1.7600 -16 218 0.3596 1.4505 1.7600 -16 219 0.4277 1.4503 1.7600 -16 220 0.4943 1.4455 1.7600 -16 221 0.5655 1.4381 1.7600 -16 222 0.6392 1.4300 1.7600 -16 223 0.7151 1.4223 1.7600 -16 224 0.7888 1.4176 1.7600 -16 225 0.8660 1.4123 1.7600 -16 226 0.9435 1.4088 1.7600 -16 227 1.0237 1.4070 1.7600 -16 228 1.1055 1.4079 1.7600 -16 229 1.1883 1.4034 1.7600 -16 230 1.2680 1.3966 1.7600 -16 231 1.3476 1.3914 1.7600 -16 232 1.4315 1.3860 1.7600 -16 233 1.5194 1.3826 1.7600 -16 234 1.6108 1.3795 1.7600 -16 235 1.7082 1.3726 1.7600 -16 236 1.8022 1.3658 1.7600 -16 237 1.8941 1.3643 1.7600 -16 238 1.9810 1.3646 1.7600 -16 239 2.0670 1.3669 1.7600 -16 240 2.1576 1.3658 1.7600 -16 241 2.2457 1.3664 1.7600 -16 242 2.3380 1.3646 1.7600 -16 243 2.4302 1.3649 1.7600 -16 244 2.5240 1.3613 1.7600 -16 245 2.6187 1.3559 1.7600 -16 246 2.7085 1.3501 1.7600 -16 247 2.7976 1.3427 1.7600 -16 248 2.8830 1.3344 1.7600 -16 249 2.9771 1.3260 1.7600 -16 250 3.0725 1.3198 1.7600 -16 251 3.1664 1.3148 1.7600 -16 252 3.2569 1.3088 1.7600 -16 253 3.3443 1.3067 1.7600 -16 254 3.4323 1.3078 1.7600 -16 255 3.5226 1.3096 1.7600 -16 256 3.6072 1.3111 1.7600 -16 257 3.6920 1.3109 1.7600 -16 258 3.7793 1.3090 1.7600 -16 259 3.8690 1.3075 1.7600 -16 260 3.9602 1.3061 1.7600 -16 261 4.0497 1.3039 1.7600 -16 262 4.1290 1.2994 1.7600 -16 263 4.2011 1.2980 1.7600 -16 264 4.2645 1.2973 1.7600 -16 265 4.3335 1.2992 1.7600 -16 266 4.4188 1.3010 1.7600 -16 267 4.5150 1.2952 1.7600 -16 268 4.6162 1.2920 1.7600 -16 269 4.7162 1.2915 1.7600 -16 270 4.8127 1.2944 1.7600 -16 271 4.9032 1.2999 1.7600 -16 272 4.9876 1.3068 1.7600 -16 273 5.0714 1.3129 1.7600 -16 274 5.1580 1.3185 1.7600 -16 275 5.2500 1.3245 1.7600 -16 276 5.3443 1.3296 1.7600 -16 277 5.4433 1.3324 1.7600 -16 278 5.5380 1.3348 1.7600 -16 279 5.6223 1.3370 1.7600 -16 280 5.7027 1.3401 1.7600 -16 281 5.7855 1.3433 1.7600 -16 282 5.8759 1.3486 1.7600 -17 119 -7.7646 1.0697 1.7600 -17 120 -7.6986 1.0460 1.7600 -17 121 -7.6363 1.0224 1.7600 -17 122 -7.5763 0.9994 1.7600 -17 123 -7.5154 0.9794 1.7600 -17 124 -7.4528 0.9624 1.7600 -17 125 -7.3864 0.9510 1.7600 -17 126 -7.3169 0.9436 1.7600 -17 127 -7.2441 0.9391 1.7600 -17 128 -7.1695 0.9366 1.7600 -17 129 -7.0964 0.9351 1.7600 -17 130 -7.0230 0.9400 1.7600 -17 131 -6.9553 0.9434 1.7600 -17 132 -6.8898 0.9509 1.7600 -17 133 -6.8219 0.9561 1.7600 -17 134 -6.7512 0.9536 1.7600 -17 135 -6.6785 0.9454 1.7600 -17 136 -6.6073 0.9319 1.7600 -17 137 -6.5320 0.9131 1.7600 -17 138 -6.4557 0.8959 1.7600 -17 139 -6.3798 0.8760 1.7600 -17 140 -6.3067 0.8517 1.7600 -17 141 -6.2323 0.8236 1.7600 -17 142 -6.1551 0.8000 1.7600 -17 143 -6.0722 0.7806 1.7600 -17 144 -5.9918 0.7668 1.7600 -17 145 -5.9077 0.7603 1.7600 -17 146 -5.8229 0.7527 1.7600 -17 147 -5.7409 0.7432 1.7600 -17 148 -5.6627 0.7327 1.7600 -17 149 -5.5880 0.7226 1.7600 -17 150 -5.5105 0.7125 1.7600 -17 151 -5.4363 0.7056 1.7600 -17 152 -5.3599 0.6937 1.7600 -17 153 -5.2840 0.6739 1.7600 -17 154 -5.2090 0.6490 1.7600 -17 155 -5.1344 0.6202 1.7600 -17 156 -5.0598 0.5954 1.7600 -17 157 -4.9852 0.5729 1.7600 -17 158 -4.9074 0.5532 1.7600 -17 159 -4.8257 0.5324 1.7600 -17 160 -4.7497 0.5109 1.7600 -17 161 -4.6715 0.4975 1.7600 -17 162 -4.5949 0.4890 1.7600 -17 163 -4.5149 0.4882 1.7600 -17 164 -4.4386 0.4864 1.7600 -17 165 -4.3633 0.4852 1.7600 -17 166 -4.2885 0.4850 1.7600 -17 167 -4.2131 0.4851 1.7600 -17 168 -4.1343 0.4861 1.7600 -17 169 -4.0604 0.4908 1.7600 -17 170 -3.9878 0.4945 1.7600 -17 171 -3.9161 0.4934 1.7600 -17 172 -3.8460 0.4882 1.7600 -17 173 -3.7798 0.4835 1.7600 -17 174 -3.7131 0.4782 1.7600 -17 175 -3.6479 0.4773 1.7600 -17 176 -3.5801 0.4779 1.7600 -17 177 -3.5091 0.4748 1.7600 -17 178 -3.4390 0.4691 1.7600 -17 179 -3.3718 0.4651 1.7600 -17 180 -3.3045 0.4656 1.7600 -17 181 -3.2394 0.4686 1.7600 -17 182 -3.1750 0.4755 1.7600 -17 183 -3.1091 0.4803 1.7600 -17 184 -3.0467 0.4811 1.7600 -17 185 -2.9818 0.4828 1.7600 -17 186 -2.9120 0.4844 1.7600 -17 187 -2.8373 0.4874 1.7600 -17 188 -2.7661 0.4932 1.7600 -17 189 -2.6900 0.4968 1.7600 -17 190 -2.6177 0.4955 1.7600 -17 191 -2.5440 0.4909 1.7600 -17 192 -2.4734 0.4830 1.7600 -17 193 -2.4031 0.4767 1.7600 -17 194 -2.3332 0.4717 1.7600 -17 195 -2.2583 0.4687 1.7600 -17 196 -2.1734 0.4625 1.7600 -17 197 -2.0939 0.4557 1.7600 -17 198 -2.0177 0.4521 1.7600 -17 199 -1.9440 0.4540 1.7600 -17 200 -1.8691 0.4623 1.7600 -17 201 -1.7937 0.4708 1.7600 -17 202 -1.7208 0.4802 1.7600 -17 203 -1.6467 0.4888 1.7600 -17 204 -1.5658 0.4993 1.7600 -17 205 -1.4838 0.5083 1.7600 -17 206 -1.4032 0.5128 1.7600 -17 207 -1.3221 0.5134 1.7600 -17 208 -1.2449 0.5086 1.7600 -17 209 -1.1691 0.5018 1.7600 -17 210 -1.0950 0.4913 1.7600 -17 211 -1.0200 0.4816 1.7600 -17 212 -0.9407 0.4741 1.7600 -17 213 -0.8606 0.4671 1.7600 -17 214 -0.7821 0.4572 1.7600 -17 215 -0.7046 0.4444 1.7600 -17 216 -0.6264 0.4369 1.7600 -17 217 -0.5493 0.4328 1.7600 -17 218 -0.4727 0.4324 1.7600 -17 219 -0.4002 0.4318 1.7600 -17 220 -0.3272 0.4285 1.7600 -17 221 -0.2516 0.4259 1.7600 -17 222 -0.1718 0.4235 1.7600 -17 223 -0.0975 0.4245 1.7600 -17 224 -0.0238 0.4269 1.7600 -17 225 0.0513 0.4220 1.7600 -17 226 0.1261 0.4130 1.7600 -17 227 0.1987 0.3995 1.7600 -17 228 0.2703 0.3904 1.7600 -17 229 0.3430 0.3827 1.7600 -17 230 0.4128 0.3764 1.7600 -17 231 0.4825 0.3705 1.7600 -17 232 0.5458 0.3684 1.7600 -17 233 0.6074 0.3638 1.7600 -17 234 0.6699 0.3625 1.7600 -17 235 0.7336 0.3643 1.7600 -17 236 0.7972 0.3695 1.7600 -17 237 0.8634 0.3775 1.7600 -17 238 0.9250 0.3837 1.7600 -17 239 0.9898 0.3894 1.7600 -17 240 1.0556 0.3901 1.7600 -17 241 1.1227 0.3938 1.7600 -17 242 1.1858 0.3985 1.7600 -17 243 1.2510 0.4021 1.7600 -17 244 1.3199 0.4008 1.7600 -17 245 1.3883 0.3915 1.7600 -17 246 1.4598 0.3820 1.7600 -17 247 1.5296 0.3714 1.7600 -17 248 1.5990 0.3590 1.7600 -17 249 1.6705 0.3464 1.7600 -17 250 1.7429 0.3288 1.7600 -17 251 1.8157 0.3106 1.7600 -17 252 1.8861 0.2951 1.7600 -17 253 1.9595 0.2825 1.7600 -17 254 2.0329 0.2769 1.7600 -17 255 2.1022 0.2793 1.7600 -17 256 2.1746 0.2846 1.7600 -17 257 2.2431 0.2905 1.7600 -17 258 2.3115 0.2970 1.7600 -17 259 2.3812 0.3034 1.7600 -17 260 2.4521 0.3124 1.7600 -17 261 2.5220 0.3199 1.7600 -17 262 2.5948 0.3246 1.7600 -17 263 2.6679 0.3226 1.7600 -17 264 2.7420 0.3207 1.7600 -17 265 2.8157 0.3181 1.7600 -17 266 2.8875 0.3171 1.7600 -17 267 2.9628 0.3170 1.7600 -17 268 3.0375 0.3147 1.7600 -17 269 3.1150 0.3124 1.7600 -17 270 3.1908 0.3104 1.7600 -17 271 3.2654 0.3084 1.7600 -17 272 3.3383 0.3145 1.7600 -17 273 3.4112 0.3218 1.7600 -17 274 3.4792 0.3356 1.7600 -17 275 3.5438 0.3467 1.7600 -17 276 3.6094 0.3600 1.7600 -17 277 3.6789 0.3686 1.7600 -17 278 3.7529 0.3790 1.7600 -17 279 3.8251 0.3904 1.7600 -17 280 3.8988 0.3989 1.7600 -17 281 3.9713 0.3988 1.7600 -17 282 4.0456 0.3960 1.7600 -17 283 4.1146 0.3903 1.7600 -17 284 4.1836 0.3849 1.7600 -17 285 4.2542 0.3775 1.7600 -17 286 4.3256 0.3702 1.7600 -17 287 4.4035 0.3618 1.7600 -17 288 4.4819 0.3540 1.7600 -17 289 4.5565 0.3460 1.7600 -17 290 4.6305 0.3398 1.7600 -17 291 4.7028 0.3377 1.7600 -17 292 4.7718 0.3387 1.7600 -17 293 4.8376 0.3418 1.7600 -17 294 4.9023 0.3433 1.7600 -17 295 4.9713 0.3425 1.7600 -17 296 5.0446 0.3442 1.7600 -17 297 5.1190 0.3468 1.7600 -17 298 5.1914 0.3475 1.7600 -17 299 5.2714 0.3464 1.7600 -17 300 5.3496 0.3408 1.7600 -17 301 5.4257 0.3311 1.7600 -17 302 5.4939 0.3210 1.7600 -17 303 5.5552 0.3118 1.7600 -17 304 5.6231 0.3018 1.7600 -17 305 5.6944 0.2912 1.7600 -17 306 5.7733 0.2789 1.7600 -17 307 5.8474 0.2676 1.7600 -17 308 5.9190 0.2577 1.7600 -18 131 -7.8135 1.2632 1.7600 -18 132 -7.7387 1.2512 1.7600 -18 133 -7.6582 1.2361 1.7600 -18 134 -7.5697 1.2212 1.7600 -18 135 -7.4787 1.2055 1.7600 -18 136 -7.3892 1.1874 1.7600 -18 137 -7.3090 1.1715 1.7600 -18 138 -7.2318 1.1556 1.7600 -18 139 -7.1526 1.1512 1.7600 -18 140 -7.0718 1.1577 1.7600 -18 141 -6.9831 1.1661 1.7600 -18 142 -6.8874 1.1775 1.7600 -18 143 -6.7925 1.1887 1.7600 -18 144 -6.7021 1.2032 1.7600 -18 145 -6.6157 1.2186 1.7600 -18 146 -6.5329 1.2318 1.7600 -18 147 -6.4509 1.2374 1.7600 -18 148 -6.3598 1.2372 1.7600 -18 149 -6.2685 1.2342 1.7600 -18 150 -6.1667 1.2331 1.7600 -18 151 -6.0658 1.2282 1.7600 -18 152 -5.9666 1.2206 1.7600 -18 153 -5.8748 1.2097 1.7600 -18 154 -5.7868 1.2029 1.7600 -18 155 -5.7030 1.2075 1.7600 -18 156 -5.6219 1.2182 1.7600 -18 157 -5.5416 1.2299 1.7600 -18 158 -5.4525 1.2387 1.7600 -18 159 -5.3569 1.2503 1.7600 -18 160 -5.2656 1.2554 1.7600 -18 161 -5.1806 1.2632 1.7600 -18 162 -5.0974 1.2690 1.7600 -18 163 -5.0190 1.2655 1.7600 -18 164 -4.9422 1.2550 1.7600 -18 165 -4.8607 1.2434 1.7600 -18 166 -4.7734 1.2307 1.7600 -18 167 -4.6803 1.2147 1.7600 -18 168 -4.5905 1.1956 1.7600 -18 169 -4.5028 1.1768 1.7600 -18 170 -4.4183 1.1654 1.7600 -18 171 -4.3358 1.1607 1.7600 -18 172 -4.2548 1.1607 1.7600 -18 173 -4.1696 1.1611 1.7600 -18 174 -4.0826 1.1568 1.7600 -18 175 -3.9915 1.1560 1.7600 -18 176 -3.8973 1.1584 1.7600 -18 177 -3.8035 1.1625 1.7600 -18 178 -3.7145 1.1637 1.7600 -18 179 -3.6280 1.1563 1.7600 -18 180 -3.5437 1.1410 1.7600 -18 181 -3.4603 1.1265 1.7600 -18 182 -3.3727 1.1147 1.7600 -18 183 -3.2793 1.0997 1.7600 -18 184 -3.1863 1.0846 1.7600 -18 185 -3.0977 1.0705 1.7600 -18 186 -3.0109 1.0613 1.7600 -18 187 -2.9207 1.0620 1.7600 -18 188 -2.8318 1.0674 1.7600 -18 189 -2.7425 1.0771 1.7600 -18 190 -2.6489 1.0858 1.7600 -18 191 -2.5564 1.0918 1.7600 -18 192 -2.4638 1.0984 1.7600 -18 193 -2.3735 1.1054 1.7600 -18 194 -2.2846 1.1095 1.7600 -18 195 -2.1951 1.1038 1.7600 -18 196 -2.1104 1.0933 1.7600 -18 197 -2.0297 1.0818 1.7600 -18 198 -1.9460 1.0713 1.7600 -18 199 -1.8603 1.0585 1.7600 -18 200 -1.7660 1.0421 1.7600 -18 201 -1.6693 1.0255 1.7600 -18 202 -1.5758 1.0135 1.7600 -18 203 -1.4805 1.0084 1.7600 -18 204 -1.3881 1.0074 1.7600 -18 205 -1.2979 1.0097 1.7600 -18 206 -1.2013 1.0109 1.7600 -18 207 -1.1027 1.0107 1.7600 -18 208 -1.0057 1.0121 1.7600 -18 209 -0.9116 1.0153 1.7600 -18 210 -0.8222 1.0140 1.7600 -18 211 -0.7336 1.0042 1.7600 -18 212 -0.6503 0.9866 1.7600 -18 213 -0.5622 0.9672 1.7600 -18 214 -0.4677 0.9495 1.7600 -18 215 -0.3685 0.9273 1.7600 -18 216 -0.2749 0.9007 1.7600 -18 217 -0.1846 0.8749 1.7600 -18 218 -0.0984 0.8548 1.7600 -18 219 -0.0110 0.8425 1.7600 -18 220 0.0784 0.8376 1.7600 -18 221 0.1728 0.8309 1.7600 -18 222 0.2745 0.8256 1.7600 -18 223 0.3762 0.8176 1.7600 -18 224 0.4726 0.8087 1.7600 -18 225 0.5584 0.8024 1.7600 -18 226 0.6438 0.7947 1.7600 -18 227 0.7301 0.7781 1.7600 -18 228 0.8131 0.7607 1.7600 -18 229 0.9039 0.7402 1.7600 -18 230 0.9997 0.7214 1.7600 -18 231 1.0959 0.7012 1.7600 -18 232 1.1899 0.6768 1.7600 -18 233 1.2812 0.6533 1.7600 -18 234 1.3708 0.6400 1.7600 -18 235 1.4631 0.6367 1.7600 -18 236 1.5527 0.6374 1.7600 -18 237 1.6452 0.6402 1.7600 -18 238 1.7408 0.6407 1.7600 -18 239 1.8375 0.6448 1.7600 -18 240 1.9354 0.6474 1.7600 -18 241 2.0284 0.6500 1.7600 -18 242 2.1212 0.6439 1.7600 -18 243 2.2107 0.6292 1.7600 -18 244 2.2935 0.6151 1.7600 -18 245 2.3757 0.6037 1.7600 -18 246 2.4628 0.5943 1.7600 -18 247 2.5563 0.5778 1.7600 -18 248 2.6527 0.5602 1.7600 -18 249 2.7468 0.5454 1.7600 -18 250 2.8418 0.5417 1.7600 -18 251 2.9337 0.5451 1.7600 -18 252 3.0236 0.5531 1.7600 -18 253 3.1160 0.5601 1.7600 -18 254 3.2086 0.5701 1.7600 -18 255 3.3043 0.5819 1.7600 -18 256 3.4023 0.5941 1.7600 -18 257 3.4948 0.6023 1.7600 -18 258 3.5903 0.5992 1.7600 -18 259 3.6810 0.5895 1.7600 -18 260 3.7623 0.5793 1.7600 -18 261 3.8436 0.5710 1.7600 -18 262 3.9323 0.5641 1.7600 -18 263 4.0243 0.5513 1.7600 -18 264 4.1206 0.5363 1.7600 -18 265 4.2143 0.5236 1.7600 -18 266 4.3089 0.5221 1.7600 -18 267 4.3999 0.5293 1.7600 -18 268 4.4821 0.5386 1.7600 -18 269 4.5631 0.5487 1.7600 -18 270 4.6483 0.5589 1.7600 -18 271 4.7381 0.5735 1.7600 -18 272 4.8321 0.5865 1.7600 -18 273 4.9264 0.5995 1.7600 -18 274 5.0227 0.6028 1.7600 -18 275 5.1111 0.5997 1.7600 -18 276 5.1903 0.5974 1.7600 -18 277 5.2672 0.5980 1.7600 -18 278 5.3487 0.5970 1.7600 -18 279 5.4413 0.5960 1.7600 -18 280 5.5372 0.5911 1.7600 -18 281 5.6323 0.5882 1.7600 -18 282 5.7305 0.5917 1.7600 -18 283 5.8297 0.5999 1.7600 -18 284 5.9179 0.6137 1.7600 -19 142 -7.8180 0.9714 1.7600 -19 143 -7.7577 0.9730 1.7600 -19 144 -7.7011 0.9679 1.7600 -19 145 -7.6444 0.9550 1.7600 -19 146 -7.5831 0.9371 1.7600 -19 147 -7.5177 0.9167 1.7600 -19 148 -7.4501 0.8940 1.7600 -19 149 -7.3817 0.8678 1.7600 -19 150 -7.3152 0.8383 1.7600 -19 151 -7.2540 0.8063 1.7600 -19 152 -7.1981 0.7737 1.7600 -19 153 -7.1445 0.7447 1.7600 -19 154 -7.0893 0.7231 1.7600 -19 155 -7.0311 0.7076 1.7600 -19 156 -6.9657 0.6980 1.7600 -19 157 -6.8984 0.6915 1.7600 -19 158 -6.8289 0.6874 1.7600 -19 159 -6.7583 0.6836 1.7600 -19 160 -6.6898 0.6778 1.7600 -19 161 -6.6228 0.6704 1.7600 -19 162 -6.5600 0.6605 1.7600 -19 163 -6.4959 0.6462 1.7600 -19 164 -6.4315 0.6292 1.7600 -19 165 -6.3654 0.6054 1.7600 -19 166 -6.2989 0.5817 1.7600 -19 167 -6.2333 0.5571 1.7600 -19 168 -6.1678 0.5295 1.7600 -19 169 -6.1049 0.4999 1.7600 -19 170 -6.0489 0.4672 1.7600 -19 171 -5.9880 0.4377 1.7600 -19 172 -5.9295 0.4185 1.7600 -19 173 -5.8684 0.4059 1.7600 -19 174 -5.8024 0.3999 1.7600 -19 175 -5.7349 0.3961 1.7600 -19 176 -5.6650 0.3937 1.7600 -19 177 -5.5944 0.3953 1.7600 -19 178 -5.5271 0.3939 1.7600 -19 179 -5.4608 0.3927 1.7600 -19 180 -5.3943 0.3919 1.7600 -19 181 -5.3270 0.3857 1.7600 -19 182 -5.2591 0.3742 1.7600 -19 183 -5.1903 0.3629 1.7600 -19 184 -5.1222 0.3511 1.7600 -19 185 -5.0527 0.3396 1.7600 -19 186 -4.9831 0.3276 1.7600 -19 187 -4.9151 0.3142 1.7600 -19 188 -4.8494 0.2985 1.7600 -19 189 -4.7816 0.2870 1.7600 -19 190 -4.7149 0.2783 1.7600 -19 191 -4.6492 0.2762 1.7600 -19 192 -4.5838 0.2786 1.7600 -19 193 -4.5154 0.2848 1.7600 -19 194 -4.4486 0.2952 1.7600 -19 195 -4.3780 0.3060 1.7600 -19 196 -4.3082 0.3163 1.7600 -19 197 -4.2390 0.3279 1.7600 -19 198 -4.1704 0.3351 1.7600 -19 199 -4.1001 0.3405 1.7600 -19 200 -4.0273 0.3421 1.7600 -19 201 -3.9587 0.3436 1.7600 -19 202 -3.8855 0.3453 1.7600 -19 203 -3.8136 0.3468 1.7600 -19 204 -3.7434 0.3451 1.7600 -19 205 -3.6740 0.3361 1.7600 -19 206 -3.6008 0.3268 1.7600 -19 207 -3.5270 0.3170 1.7600 -19 208 -3.4539 0.3128 1.7600 -19 209 -3.3811 0.3181 1.7600 -19 210 -3.3057 0.3295 1.7600 -19 211 -3.2325 0.3429 1.7600 -19 212 -3.1600 0.3587 1.7600 -19 213 -3.0876 0.3721 1.7600 -19 214 -3.0162 0.3876 1.7600 -19 215 -2.9416 0.4001 1.7600 -19 216 -2.8683 0.4109 1.7600 -19 217 -2.7937 0.4156 1.7600 -19 218 -2.7182 0.4147 1.7600 -19 219 -2.6465 0.4144 1.7600 -19 220 -2.5765 0.4114 1.7600 -19 221 -2.5058 0.4079 1.7600 -19 222 -2.4361 0.4035 1.7600 -19 223 -2.3629 0.3961 1.7600 -19 224 -2.2913 0.3843 1.7600 -19 225 -2.2142 0.3740 1.7600 -19 226 -2.1370 0.3684 1.7600 -19 227 -2.0613 0.3731 1.7600 -19 228 -1.9901 0.3829 1.7600 -19 229 -1.9192 0.3991 1.7600 -19 230 -1.8499 0.4165 1.7600 -19 231 -1.7779 0.4309 1.7600 -19 232 -1.7006 0.4437 1.7600 -19 233 -1.6197 0.4560 1.7600 -19 234 -1.5380 0.4659 1.7600 -19 235 -1.4557 0.4701 1.7600 -19 236 -1.3768 0.4702 1.7600 -19 237 -1.3009 0.4701 1.7600 -19 238 -1.2263 0.4685 1.7600 -19 239 -1.1507 0.4662 1.7600 -19 240 -1.0746 0.4622 1.7600 -19 241 -0.9974 0.4579 1.7600 -19 242 -0.9195 0.4530 1.7600 -19 243 -0.8416 0.4492 1.7600 -19 244 -0.7630 0.4499 1.7600 -19 245 -0.6846 0.4541 1.7600 -19 246 -0.6072 0.4624 1.7600 -19 247 -0.5292 0.4720 1.7600 -19 248 -0.4515 0.4841 1.7600 -19 249 -0.3712 0.4938 1.7600 -19 250 -0.2929 0.5014 1.7600 -19 251 -0.2156 0.5066 1.7600 -19 252 -0.1400 0.5100 1.7600 -19 253 -0.0646 0.5074 1.7600 -19 254 0.0144 0.5031 1.7600 -19 255 0.0938 0.4972 1.7600 -19 256 0.1761 0.4907 1.7600 -19 257 0.2524 0.4812 1.7600 -19 258 0.3262 0.4723 1.7600 -19 259 0.3961 0.4626 1.7600 -19 260 0.4683 0.4535 1.7600 -19 261 0.5397 0.4493 1.7600 -19 262 0.6120 0.4481 1.7600 -19 263 0.6860 0.4472 1.7600 -19 264 0.7611 0.4517 1.7600 -19 265 0.8387 0.4556 1.7600 -19 266 0.9147 0.4612 1.7600 -19 267 0.9907 0.4633 1.7600 -19 268 1.0646 0.4673 1.7600 -19 269 1.1406 0.4691 1.7600 -19 270 1.2154 0.4704 1.7600 -19 271 1.2921 0.4672 1.7600 -19 272 1.3701 0.4629 1.7600 -19 273 1.4490 0.4573 1.7600 -19 274 1.5245 0.4488 1.7600 -19 275 1.6013 0.4399 1.7600 -19 276 1.6754 0.4313 1.7600 -19 277 1.7502 0.4229 1.7600 -19 278 1.8283 0.4187 1.7600 -19 279 1.9051 0.4199 1.7600 -19 280 1.9801 0.4228 1.7600 -19 281 2.0539 0.4285 1.7600 -19 282 2.1276 0.4374 1.7600 -19 283 2.2027 0.4479 1.7600 -19 284 2.2772 0.4581 1.7600 -19 285 2.3542 0.4673 1.7600 -19 286 2.4310 0.4732 1.7600 -19 287 2.5082 0.4734 1.7600 -19 288 2.5826 0.4698 1.7600 -19 289 2.6566 0.4640 1.7600 -19 290 2.7298 0.4563 1.7600 -19 291 2.8013 0.4494 1.7600 -19 292 2.8739 0.4392 1.7600 -19 293 2.9506 0.4276 1.7600 -19 294 3.0319 0.4181 1.7600 -19 295 3.1174 0.4124 1.7600 -19 296 3.1992 0.4105 1.7600 -19 297 3.2778 0.4150 1.7600 -19 298 3.3525 0.4233 1.7600 -19 299 3.4257 0.4323 1.7600 -19 300 3.4993 0.4426 1.7600 -19 301 3.5771 0.4522 1.7600 -19 302 3.6586 0.4584 1.7600 -19 303 3.7409 0.4622 1.7600 -19 304 3.8228 0.4599 1.7600 -19 305 3.8990 0.4549 1.7600 -19 306 3.9704 0.4485 1.7600 -19 307 4.0411 0.4422 1.7600 -19 308 4.1086 0.4339 1.7600 -19 309 4.1783 0.4235 1.7600 -19 310 4.2559 0.4135 1.7600 -19 311 4.3354 0.4045 1.7600 -19 312 4.4202 0.3970 1.7600 -19 313 4.5029 0.3952 1.7600 -19 314 4.5805 0.3991 1.7600 -19 315 4.6563 0.4067 1.7600 -19 316 4.7235 0.4171 1.7600 -19 317 4.7981 0.4277 1.7600 -19 318 4.8741 0.4360 1.7600 -19 319 4.9558 0.4419 1.7600 -19 320 5.0384 0.4412 1.7600 -19 321 5.1209 0.4350 1.7600 -19 322 5.1969 0.4255 1.7600 -19 323 5.2663 0.4153 1.7600 -19 324 5.3308 0.4051 1.7600 -19 325 5.3942 0.3942 1.7600 -19 326 5.4637 0.3802 1.7600 -19 327 5.5378 0.3643 1.7600 -19 328 5.6225 0.3445 1.7600 -19 329 5.7077 0.3345 1.7600 -19 330 5.7889 0.3295 1.7600 -19 331 5.8625 0.3299 1.7600 -19 332 5.9307 0.3335 1.7600 -20 145 -7.8077 1.4648 1.7600 -20 146 -7.7055 1.4668 1.7600 -20 147 -7.6043 1.4720 1.7600 -20 148 -7.5108 1.4782 1.7600 -20 149 -7.4173 1.4829 1.7600 -20 150 -7.3282 1.4803 1.7600 -20 151 -7.2380 1.4657 1.7600 -20 152 -7.1432 1.4452 1.7600 -20 153 -7.0439 1.4234 1.7600 -20 154 -6.9437 1.4006 1.7600 -20 155 -6.8453 1.3759 1.7600 -20 156 -6.7480 1.3497 1.7600 -20 157 -6.6523 1.3188 1.7600 -20 158 -6.5550 1.2876 1.7600 -20 159 -6.4539 1.2648 1.7600 -20 160 -6.3424 1.2521 1.7600 -20 161 -6.2284 1.2405 1.7600 -20 162 -6.1149 1.2300 1.7600 -20 163 -6.0021 1.2154 1.7600 -20 164 -5.8926 1.2042 1.7600 -20 165 -5.7846 1.1887 1.7600 -20 166 -5.6837 1.1600 1.7600 -20 167 -5.5854 1.1265 1.7600 -20 168 -5.4860 1.0942 1.7600 -20 169 -5.3838 1.0630 1.7600 -20 170 -5.2792 1.0276 1.7600 -20 171 -5.1711 0.9929 1.7600 -20 172 -5.0614 0.9568 1.7600 -20 173 -4.9561 0.9334 1.7600 -20 174 -4.8521 0.9256 1.7600 -20 175 -4.7460 0.9209 1.7600 -20 176 -4.6412 0.9172 1.7600 -20 177 -4.5362 0.9120 1.7600 -20 178 -4.4331 0.9075 1.7600 -20 179 -4.3367 0.9099 1.7600 -20 180 -4.2403 0.9138 1.7600 -20 181 -4.1438 0.9108 1.7600 -20 182 -4.0517 0.9014 1.7600 -20 183 -3.9680 0.8879 1.7600 -20 184 -3.8856 0.8744 1.7600 -20 185 -3.8027 0.8608 1.7600 -20 186 -3.7172 0.8457 1.7600 -20 187 -3.6250 0.8277 1.7600 -20 188 -3.5298 0.8103 1.7600 -20 189 -3.4372 0.7950 1.7600 -20 190 -3.3490 0.7902 1.7600 -20 191 -3.2617 0.7956 1.7600 -20 192 -3.1743 0.8044 1.7600 -20 193 -3.0884 0.8135 1.7600 -20 194 -3.0030 0.8233 1.7600 -20 195 -2.9150 0.8342 1.7600 -20 196 -2.8264 0.8501 1.7600 -20 197 -2.7383 0.8667 1.7600 -20 198 -2.6469 0.8835 1.7600 -20 199 -2.5580 0.8872 1.7600 -20 200 -2.4746 0.8831 1.7600 -20 201 -2.3937 0.8791 1.7600 -20 202 -2.3152 0.8762 1.7600 -20 203 -2.2350 0.8696 1.7600 -20 204 -2.1457 0.8608 1.7600 -20 205 -2.0517 0.8541 1.7600 -20 206 -1.9564 0.8479 1.7600 -20 207 -1.8635 0.8547 1.7600 -20 208 -1.7735 0.8623 1.7600 -20 209 -1.6936 0.8736 1.7600 -20 210 -1.6165 0.8832 1.7600 -20 211 -1.5369 0.8917 1.7600 -20 212 -1.4556 0.9038 1.7600 -20 213 -1.3703 0.9165 1.7600 -20 214 -1.2856 0.9280 1.7600 -20 215 -1.2007 0.9365 1.7600 -20 216 -1.1191 0.9397 1.7600 -20 217 -1.0386 0.9404 1.7600 -20 218 -0.9545 0.9408 1.7600 -20 219 -0.8691 0.9405 1.7600 -20 220 -0.7821 0.9374 1.7600 -20 221 -0.6945 0.9336 1.7600 -20 222 -0.6080 0.9298 1.7600 -20 223 -0.5231 0.9402 1.7600 -20 224 -0.4416 0.9562 1.7600 -20 225 -0.3564 0.9754 1.7600 -20 226 -0.2675 0.9961 1.7600 -20 227 -0.1747 1.0177 1.7600 -20 228 -0.0816 1.0408 1.7600 -20 229 0.0138 1.0658 1.7600 -20 230 0.1112 1.0864 1.7600 -20 231 0.2040 1.0957 1.7600 -20 232 0.2965 1.0976 1.7600 -20 233 0.3908 1.0994 1.7600 -20 234 0.4880 1.0997 1.7600 -20 235 0.5891 1.0974 1.7600 -20 236 0.6916 1.0885 1.7600 -20 237 0.7929 1.0786 1.7600 -20 238 0.8960 1.0685 1.7600 -20 239 1.0014 1.0696 1.7600 -20 240 1.1057 1.0766 1.7600 -20 241 1.2143 1.0846 1.7600 -20 242 1.3221 1.0961 1.7600 -20 243 1.4304 1.1063 1.7600 -20 244 1.5374 1.1150 1.7600 -20 245 1.6421 1.1239 1.7600 -20 246 1.7480 1.1307 1.7600 -20 247 1.8513 1.1260 1.7600 -20 248 1.9501 1.1153 1.7600 -20 249 2.0501 1.1051 1.7600 -20 250 2.1466 1.0948 1.7600 -20 251 2.2455 1.0840 1.7600 -20 252 2.3504 1.0695 1.7600 -20 253 2.4587 1.0522 1.7600 -20 254 2.5664 1.0418 1.7600 -20 255 2.6730 1.0407 1.7600 -20 256 2.7743 1.0418 1.7600 -20 257 2.8736 1.0420 1.7600 -20 258 2.9708 1.0444 1.7600 -20 259 3.0720 1.0456 1.7600 -20 260 3.1786 1.0509 1.7600 -20 261 3.2871 1.0557 1.7600 -20 262 3.3880 1.0533 1.7600 -20 263 3.4841 1.0427 1.7600 -20 264 3.5737 1.0301 1.7600 -20 265 3.6573 1.0215 1.7600 -20 266 3.7383 1.0110 1.7600 -20 267 3.8206 0.9969 1.7600 -20 268 3.9079 0.9829 1.7600 -20 269 4.0060 0.9620 1.7600 -20 270 4.1064 0.9480 1.7600 -20 271 4.2059 0.9459 1.7600 -20 272 4.2975 0.9551 1.7600 -20 273 4.3866 0.9690 1.7600 -20 274 4.4718 0.9811 1.7600 -20 275 4.5607 0.9938 1.7600 -20 276 4.6613 1.0045 1.7600 -20 277 4.7693 1.0171 1.7600 -20 278 4.8795 1.0245 1.7600 -20 279 4.9841 1.0157 1.7600 -20 280 5.0801 0.9968 1.7600 -20 281 5.1703 0.9835 1.7600 -20 282 5.2596 0.9734 1.7600 -20 283 5.3535 0.9668 1.7600 -20 284 5.4520 0.9602 1.7600 -20 285 5.5556 0.9530 1.7600 -20 286 5.6589 0.9550 1.7600 -20 287 5.7642 0.9626 1.7600 -20 288 5.8590 0.9787 1.7600 -20 289 5.9478 0.9969 1.7600 -21 149 -7.7902 2.3598 1.7600 -21 150 -7.7200 2.3657 1.7600 -21 151 -7.6428 2.3693 1.7600 -21 152 -7.5630 2.3732 1.7600 -21 153 -7.4886 2.3771 1.7600 -21 154 -7.4210 2.3835 1.7600 -21 155 -7.3565 2.3961 1.7600 -21 156 -7.2945 2.4178 1.7600 -21 157 -7.2369 2.4435 1.7600 -21 158 -7.1788 2.4663 1.7600 -21 159 -7.1178 2.4827 1.7600 -21 160 -7.0529 2.4930 1.7600 -21 161 -6.9893 2.5015 1.7600 -21 162 -6.9232 2.5135 1.7600 -21 163 -6.8562 2.5250 1.7600 -21 164 -6.7937 2.5352 1.7600 -21 165 -6.7305 2.5410 1.7600 -21 166 -6.6668 2.5406 1.7600 -21 167 -6.5994 2.5295 1.7600 -21 168 -6.5325 2.5161 1.7600 -21 169 -6.4650 2.4993 1.7600 -21 170 -6.3917 2.4795 1.7600 -21 171 -6.3133 2.4574 1.7600 -21 172 -6.2320 2.4330 1.7600 -21 173 -6.1554 2.4110 1.7600 -21 174 -6.0811 2.3869 1.7600 -21 175 -6.0166 2.3710 1.7600 -21 176 -5.9558 2.3649 1.7600 -21 177 -5.8942 2.3606 1.7600 -21 178 -5.8330 2.3567 1.7600 -21 179 -5.7680 2.3416 1.7600 -21 180 -5.7036 2.3235 1.7600 -21 181 -5.6351 2.3024 1.7600 -21 182 -5.5565 2.2838 1.7600 -21 183 -5.4847 2.2643 1.7600 -21 184 -5.4203 2.2418 1.7600 -21 185 -5.3684 2.2184 1.7600 -21 186 -5.3203 2.1907 1.7600 -21 187 -5.2779 2.1600 1.7600 -21 188 -5.2393 2.1332 1.7600 -21 189 -5.1951 2.1067 1.7600 -21 190 -5.1457 2.0719 1.7600 -21 191 -5.0944 2.0337 1.7600 -21 192 -5.0401 1.9936 1.7600 -21 193 -4.9870 1.9530 1.7600 -21 194 -4.9373 1.9164 1.7600 -21 195 -4.8923 1.8882 1.7600 -21 196 -4.8478 1.8690 1.7600 -21 197 -4.8023 1.8562 1.7600 -21 198 -4.7615 1.8453 1.7600 -21 199 -4.7223 1.8342 1.7600 -21 200 -4.6812 1.8202 1.7600 -21 201 -4.6393 1.8096 1.7600 -21 202 -4.5957 1.7997 1.7600 -21 203 -4.5445 1.7913 1.7600 -21 204 -4.4944 1.7806 1.7600 -21 205 -4.4443 1.7698 1.7600 -21 206 -4.3947 1.7562 1.7600 -21 207 -4.3492 1.7384 1.7600 -21 208 -4.3075 1.7143 1.7600 -21 209 -4.2646 1.6853 1.7600 -21 210 -4.2227 1.6527 1.7600 -21 211 -4.1803 1.6176 1.7600 -21 212 -4.1356 1.5793 1.7600 -21 213 -4.0890 1.5427 1.7600 -21 214 -4.0409 1.5033 1.7600 -21 215 -3.9894 1.4557 1.7600 -21 216 -3.9373 1.4154 1.7600 -21 217 -3.8813 1.3865 1.7600 -21 218 -3.8238 1.3678 1.7600 -21 219 -3.7626 1.3535 1.7600 -21 220 -3.7044 1.3423 1.7600 -21 221 -3.6455 1.3363 1.7600 -21 222 -3.5901 1.3358 1.7600 -21 223 -3.5276 1.3384 1.7600 -21 224 -3.4620 1.3447 1.7600 -21 225 -3.3947 1.3502 1.7600 -21 226 -3.3292 1.3496 1.7600 -21 227 -3.2675 1.3410 1.7600 -21 228 -3.2077 1.3296 1.7600 -21 229 -3.1504 1.3174 1.7600 -21 230 -3.0951 1.3049 1.7600 -21 231 -3.0349 1.2943 1.7600 -21 232 -2.9752 1.2825 1.7600 -21 233 -2.9133 1.2639 1.7600 -21 234 -2.8475 1.2374 1.7600 -21 235 -2.7811 1.2145 1.7600 -21 236 -2.7110 1.2047 1.7600 -21 237 -2.6506 1.2051 1.7600 -21 238 -2.5951 1.2119 1.7600 -21 239 -2.5393 1.2186 1.7600 -21 240 -2.4851 1.2278 1.7600 -21 241 -2.4309 1.2400 1.7600 -21 242 -2.3766 1.2537 1.7600 -21 243 -2.3190 1.2697 1.7600 -21 244 -2.2552 1.2864 1.7600 -21 245 -2.1867 1.3006 1.7600 -21 246 -2.1135 1.3107 1.7600 -21 247 -2.0387 1.3095 1.7600 -21 248 -1.9686 1.3013 1.7600 -21 249 -1.9007 1.2882 1.7600 -21 250 -1.8351 1.2719 1.7600 -21 251 -1.7657 1.2510 1.7600 -21 252 -1.6935 1.2271 1.7600 -21 253 -1.6180 1.2000 1.7600 -21 254 -1.5398 1.1683 1.7600 -21 255 -1.4625 1.1372 1.7600 -21 256 -1.3833 1.1193 1.7600 -21 257 -1.3064 1.1159 1.7600 -21 258 -1.2313 1.1178 1.7600 -21 259 -1.1542 1.1217 1.7600 -21 260 -1.0753 1.1272 1.7600 -21 261 -1.0000 1.1358 1.7600 -21 262 -0.9266 1.1458 1.7600 -21 263 -0.8493 1.1555 1.7600 -21 264 -0.7715 1.1665 1.7600 -21 265 -0.6958 1.1743 1.7600 -21 266 -0.6226 1.1706 1.7600 -21 267 -0.5549 1.1638 1.7600 -21 268 -0.4868 1.1523 1.7600 -21 269 -0.4186 1.1392 1.7600 -21 270 -0.3495 1.1223 1.7600 -21 271 -0.2780 1.1061 1.7600 -21 272 -0.2012 1.0892 1.7600 -21 273 -0.1194 1.0716 1.7600 -21 274 -0.0361 1.0504 1.7600 -21 275 0.0485 1.0348 1.7600 -21 276 0.1295 1.0315 1.7600 -21 277 0.2040 1.0412 1.7600 -21 278 0.2794 1.0544 1.7600 -21 279 0.3553 1.0664 1.7600 -21 280 0.4328 1.0765 1.7600 -21 281 0.5069 1.0904 1.7600 -21 282 0.5812 1.1070 1.7600 -21 283 0.6563 1.1239 1.7600 -21 284 0.7259 1.1407 1.7600 -21 285 0.7858 1.1483 1.7600 -21 286 0.8439 1.1476 1.7600 -21 287 0.9020 1.1413 1.7600 -21 288 0.9606 1.1310 1.7600 -21 289 1.0215 1.1179 1.7600 -21 290 1.0891 1.1034 1.7600 -21 291 1.1608 1.0891 1.7600 -21 292 1.2353 1.0746 1.7600 -21 293 1.3163 1.0610 1.7600 -21 294 1.3979 1.0527 1.7600 -21 295 1.4763 1.0580 1.7600 -21 296 1.5526 1.0732 1.7600 -21 297 1.6277 1.0993 1.7600 -21 298 1.7040 1.1265 1.7600 -21 299 1.7843 1.1542 1.7600 -21 300 1.8631 1.1850 1.7600 -21 301 1.9414 1.2164 1.7600 -21 302 2.0225 1.2465 1.7600 -21 303 2.1040 1.2715 1.7600 -21 304 2.1826 1.2840 1.7600 -21 305 2.2561 1.2813 1.7600 -21 306 2.3226 1.2748 1.7600 -21 307 2.3888 1.2675 1.7600 -21 308 2.4580 1.2597 1.7600 -21 309 2.5288 1.2529 1.7600 -21 310 2.6029 1.2475 1.7600 -21 311 2.6810 1.2406 1.7600 -21 312 2.7617 1.2334 1.7600 -21 313 2.8474 1.2304 1.7600 -21 314 2.9302 1.2361 1.7600 -21 315 3.0066 1.2514 1.7600 -21 316 3.0773 1.2705 1.7600 -21 317 3.1480 1.2914 1.7600 -21 318 3.2210 1.3129 1.7600 -21 319 3.2935 1.3345 1.7600 -21 320 3.3667 1.3580 1.7600 -21 321 3.4435 1.3836 1.7600 -21 322 3.5237 1.4118 1.7600 -21 323 3.6079 1.4294 1.7600 -21 324 3.6891 1.4374 1.7600 -21 325 3.7668 1.4387 1.7600 -21 326 3.8412 1.4382 1.7600 -21 327 3.9110 1.4404 1.7600 -21 328 3.9815 1.4400 1.7600 -21 329 4.0561 1.4393 1.7600 -21 330 4.1410 1.4313 1.7600 -21 331 4.2303 1.4230 1.7600 -21 332 4.3265 1.4201 1.7600 -21 333 4.4173 1.4292 1.7600 -21 334 4.5020 1.4410 1.7600 -21 335 4.5788 1.4528 1.7600 -21 336 4.6481 1.4648 1.7600 -21 337 4.7146 1.4752 1.7600 -21 338 4.7829 1.4891 1.7600 -21 339 4.8540 1.5060 1.7600 -21 340 4.9315 1.5278 1.7600 -21 341 5.0101 1.5489 1.7600 -21 342 5.0951 1.5631 1.7600 -21 343 5.1836 1.5648 1.7600 -21 344 5.2686 1.5550 1.7600 -21 345 5.3470 1.5436 1.7600 -21 346 5.4197 1.5294 1.7600 -21 347 5.4890 1.5113 1.7600 -21 348 5.5599 1.4870 1.7600 -21 349 5.6428 1.4650 1.7600 -21 350 5.7329 1.4463 1.7600 -21 351 5.8220 1.4281 1.7600 -21 352 5.9128 1.4192 1.7600 -22 161 -7.7508 0.8484 1.7600 -22 162 -7.6681 0.8108 1.7600 -22 163 -7.5934 0.7718 1.7600 -22 164 -7.5257 0.7337 1.7600 -22 165 -7.4610 0.7017 1.7600 -22 166 -7.3948 0.6830 1.7600 -22 167 -7.3235 0.6755 1.7600 -22 168 -7.2458 0.6749 1.7600 -22 169 -7.1655 0.6758 1.7600 -22 170 -7.0805 0.6805 1.7600 -22 171 -6.9959 0.6891 1.7600 -22 172 -6.9126 0.7003 1.7600 -22 173 -6.8326 0.7150 1.7600 -22 174 -6.7535 0.7298 1.7600 -22 175 -6.6801 0.7414 1.7600 -22 176 -6.6046 0.7345 1.7600 -22 177 -6.5303 0.7200 1.7600 -22 178 -6.4484 0.7057 1.7600 -22 179 -6.3641 0.6897 1.7600 -22 180 -6.2744 0.6736 1.7600 -22 181 -6.1887 0.6536 1.7600 -22 182 -6.1038 0.6312 1.7600 -22 183 -6.0238 0.6126 1.7600 -22 184 -5.9475 0.5987 1.7600 -22 185 -5.8753 0.5946 1.7600 -22 186 -5.7956 0.6009 1.7600 -22 187 -5.7138 0.6141 1.7600 -22 188 -5.6291 0.6270 1.7600 -22 189 -5.5447 0.6421 1.7600 -22 190 -5.4597 0.6579 1.7600 -22 191 -5.3750 0.6744 1.7600 -22 192 -5.2935 0.6918 1.7600 -22 193 -5.2154 0.7048 1.7600 -22 194 -5.1386 0.7082 1.7600 -22 195 -5.0611 0.7028 1.7600 -22 196 -4.9842 0.6933 1.7600 -22 197 -4.9054 0.6811 1.7600 -22 198 -4.8256 0.6683 1.7600 -22 199 -4.7463 0.6527 1.7600 -22 200 -4.6647 0.6384 1.7600 -22 201 -4.5843 0.6244 1.7600 -22 202 -4.5079 0.6106 1.7600 -22 203 -4.4346 0.5979 1.7600 -22 204 -4.3563 0.5932 1.7600 -22 205 -4.2845 0.5974 1.7600 -22 206 -4.2122 0.6057 1.7600 -22 207 -4.1356 0.6157 1.7600 -22 208 -4.0601 0.6267 1.7600 -22 209 -3.9854 0.6389 1.7600 -22 210 -3.9076 0.6543 1.7600 -22 211 -3.8310 0.6704 1.7600 -22 212 -3.7610 0.6858 1.7600 -22 213 -3.6895 0.6940 1.7600 -22 214 -3.6172 0.6916 1.7600 -22 215 -3.5429 0.6846 1.7600 -22 216 -3.4695 0.6760 1.7600 -22 217 -3.3956 0.6677 1.7600 -22 218 -3.3189 0.6575 1.7600 -22 219 -3.2408 0.6429 1.7600 -22 220 -3.1568 0.6266 1.7600 -22 221 -3.0768 0.6103 1.7600 -22 222 -2.9991 0.6011 1.7600 -22 223 -2.9244 0.6048 1.7600 -22 224 -2.8513 0.6175 1.7600 -22 225 -2.7781 0.6371 1.7600 -22 226 -2.7037 0.6590 1.7600 -22 227 -2.6298 0.6814 1.7600 -22 228 -2.5554 0.7060 1.7600 -22 229 -2.4758 0.7293 1.7600 -22 230 -2.3900 0.7525 1.7600 -22 231 -2.3086 0.7740 1.7600 -22 232 -2.2334 0.7891 1.7600 -22 233 -2.1545 0.7932 1.7600 -22 234 -2.0785 0.7914 1.7600 -22 235 -1.9999 0.7863 1.7600 -22 236 -1.9244 0.7800 1.7600 -22 237 -1.8451 0.7695 1.7600 -22 238 -1.7593 0.7567 1.7600 -22 239 -1.6689 0.7440 1.7600 -22 240 -1.5836 0.7333 1.7600 -22 241 -1.5008 0.7295 1.7600 -22 242 -1.4240 0.7374 1.7600 -22 243 -1.3521 0.7538 1.7600 -22 244 -1.2835 0.7719 1.7600 -22 245 -1.2150 0.7927 1.7600 -22 246 -1.1452 0.8151 1.7600 -22 247 -1.0719 0.8406 1.7600 -22 248 -0.9917 0.8669 1.7600 -22 249 -0.9106 0.8927 1.7600 -22 250 -0.8344 0.9137 1.7600 -22 251 -0.7589 0.9214 1.7600 -22 252 -0.6820 0.9212 1.7600 -22 253 -0.6061 0.9179 1.7600 -22 254 -0.5247 0.9142 1.7600 -22 255 -0.4422 0.9082 1.7600 -22 256 -0.3555 0.9001 1.7600 -22 257 -0.2688 0.8932 1.7600 -22 258 -0.1854 0.8879 1.7600 -22 259 -0.1009 0.8866 1.7600 -22 260 -0.0101 0.8969 1.7600 -22 261 0.0819 0.9144 1.7600 -22 262 0.1760 0.9389 1.7600 -22 263 0.2750 0.9645 1.7600 -22 264 0.3757 0.9886 1.7600 -22 265 0.4741 1.0123 1.7600 -22 266 0.5736 1.0393 1.7600 -22 267 0.6635 1.0605 1.7600 -22 268 0.7504 1.0760 1.7600 -22 269 0.8353 1.0775 1.7600 -22 270 0.9153 1.0665 1.7600 -22 271 0.9999 1.0563 1.7600 -22 272 1.0867 1.0471 1.7600 -22 273 1.1781 1.0393 1.7600 -22 274 1.2679 1.0289 1.7600 -22 275 1.3582 1.0184 1.7600 -22 276 1.4411 1.0069 1.7600 -22 277 1.5252 0.9990 1.7600 -22 278 1.6030 0.9981 1.7600 -22 279 1.6827 1.0046 1.7600 -22 280 1.7621 1.0149 1.7600 -22 281 1.8449 1.0202 1.7600 -22 282 1.9285 1.0274 1.7600 -22 283 2.0134 1.0362 1.7600 -22 284 2.1018 1.0491 1.7600 -22 285 2.1866 1.0656 1.7600 -22 286 2.2728 1.0794 1.7600 -22 287 2.3595 1.0841 1.7600 -22 288 2.4450 1.0813 1.7600 -22 289 2.5269 1.0746 1.7600 -22 290 2.6116 1.0676 1.7600 -22 291 2.6986 1.0596 1.7600 -22 292 2.7883 1.0504 1.7600 -22 293 2.8809 1.0394 1.7600 -22 294 2.9715 1.0305 1.7600 -22 295 3.0629 1.0270 1.7600 -22 296 3.1576 1.0371 1.7600 -22 297 3.2463 1.0552 1.7600 -22 298 3.3325 1.0791 1.7600 -22 299 3.4157 1.1055 1.7600 -22 300 3.4995 1.1285 1.7600 -22 301 3.5864 1.1515 1.7600 -22 302 3.6780 1.1721 1.7600 -22 303 3.7675 1.1917 1.7600 -22 304 3.8609 1.2023 1.7600 -22 305 3.9493 1.2045 1.7600 -22 306 4.0397 1.2006 1.7600 -22 307 4.1238 1.1946 1.7600 -22 308 4.2098 1.1856 1.7600 -22 309 4.2950 1.1762 1.7600 -22 310 4.3870 1.1629 1.7600 -22 311 4.4892 1.1483 1.7600 -22 312 4.5933 1.1352 1.7600 -22 313 4.6902 1.1293 1.7600 -22 314 4.7846 1.1351 1.7600 -22 315 4.8707 1.1459 1.7600 -22 316 4.9505 1.1565 1.7600 -22 317 5.0308 1.1678 1.7600 -22 318 5.1122 1.1802 1.7600 -22 319 5.2029 1.1925 1.7600 -22 320 5.3017 1.2067 1.7600 -22 321 5.3977 1.2212 1.7600 -22 322 5.4932 1.2282 1.7600 -22 323 5.5894 1.2252 1.7600 -22 324 5.6786 1.2147 1.7600 -22 325 5.7583 1.2012 1.7600 -22 326 5.8364 1.1881 1.7600 -22 327 5.9200 1.1743 1.7600 -23 137 -7.8033 1.9421 1.7600 -23 138 -7.7480 1.9441 1.7600 -23 139 -7.6887 1.9490 1.7600 -23 140 -7.6232 1.9507 1.7600 -23 141 -7.5705 1.9524 1.7600 -23 142 -7.5220 1.9680 1.7600 -23 143 -7.4641 1.9900 1.7600 -23 144 -7.4032 2.0171 1.7600 -23 145 -7.3619 2.0183 1.7600 -23 146 -7.3220 2.0263 1.7600 -23 147 -7.2820 2.0343 1.7600 -23 148 -7.2239 2.0277 1.7600 -23 149 -7.1615 2.0028 1.7600 -23 150 -7.1068 1.9881 1.7600 -23 151 -7.0590 1.9922 1.7600 -23 152 -7.0138 1.9896 1.7600 -23 153 -6.9770 2.0088 1.7600 -23 154 -6.9032 2.0338 1.7600 -23 155 -6.8419 2.0628 1.7600 -23 156 -6.7715 2.0679 1.7600 -23 157 -6.7036 2.0628 1.7600 -23 158 -6.6428 2.0464 1.7600 -23 159 -6.5636 2.0491 1.7600 -23 160 -6.4954 2.0311 1.7600 -23 161 -6.4269 2.0068 1.7600 -23 162 -6.3636 1.9761 1.7600 -23 163 -6.3030 1.9399 1.7600 -23 164 -6.2524 1.9167 1.7600 -23 165 -6.1947 1.8961 1.7600 -23 166 -6.1300 1.8736 1.7600 -23 167 -6.0603 1.8468 1.7600 -23 168 -5.9917 1.8165 1.7600 -23 169 -5.9271 1.7874 1.7600 -23 170 -5.8664 1.7691 1.7600 -23 171 -5.8100 1.7662 1.7600 -23 172 -5.7540 1.7678 1.7600 -23 173 -5.6952 1.7678 1.7600 -23 174 -5.6311 1.7660 1.7600 -23 175 -5.5629 1.7652 1.7600 -23 176 -5.4953 1.7687 1.7600 -23 177 -5.4267 1.7798 1.7600 -23 178 -5.3629 1.7849 1.7600 -23 179 -5.3015 1.7853 1.7600 -23 180 -5.2371 1.7699 1.7600 -23 181 -5.1726 1.7486 1.7600 -23 182 -5.1065 1.7345 1.7600 -23 183 -5.0389 1.7155 1.7600 -23 184 -4.9692 1.6946 1.7600 -23 185 -4.9009 1.6652 1.7600 -23 186 -4.8339 1.6299 1.7600 -23 187 -4.7735 1.6057 1.7600 -23 188 -4.7168 1.5969 1.7600 -23 189 -4.6609 1.5992 1.7600 -23 190 -4.6021 1.6061 1.7600 -23 191 -4.5342 1.6098 1.7600 -23 192 -4.4648 1.6074 1.7600 -23 193 -4.3983 1.6002 1.7600 -23 194 -4.3264 1.5971 1.7600 -23 195 -4.2509 1.5960 1.7600 -23 196 -4.1819 1.5959 1.7600 -23 197 -4.1234 1.5899 1.7600 -23 198 -4.0694 1.5757 1.7600 -23 199 -4.0224 1.5538 1.7600 -23 200 -3.9726 1.5344 1.7600 -23 201 -3.9170 1.5145 1.7600 -23 202 -3.8577 1.4929 1.7600 -23 203 -3.7991 1.4623 1.7600 -23 204 -3.7374 1.4286 1.7600 -23 205 -3.6771 1.4012 1.7600 -23 206 -3.6185 1.3920 1.7600 -23 207 -3.5607 1.3970 1.7600 -23 208 -3.5045 1.4062 1.7600 -23 209 -3.4445 1.4114 1.7600 -23 210 -3.3862 1.4183 1.7600 -23 211 -3.3242 1.4362 1.7600 -23 212 -3.2631 1.4626 1.7600 -23 213 -3.1994 1.4884 1.7600 -23 214 -3.1411 1.5071 1.7600 -23 215 -3.0851 1.5118 1.7600 -23 216 -3.0262 1.5091 1.7600 -23 217 -2.9646 1.4996 1.7600 -23 218 -2.9064 1.4897 1.7600 -23 219 -2.8473 1.4763 1.7600 -23 220 -2.7870 1.4590 1.7600 -23 221 -2.7237 1.4372 1.7600 -23 222 -2.6566 1.4170 1.7600 -23 223 -2.5938 1.4037 1.7600 -23 224 -2.5360 1.4025 1.7600 -23 225 -2.4840 1.4097 1.7600 -23 226 -2.4321 1.4181 1.7600 -23 227 -2.3776 1.4250 1.7600 -23 228 -2.3219 1.4315 1.7600 -23 229 -2.2721 1.4491 1.7600 -23 230 -2.2152 1.4685 1.7600 -23 231 -2.1551 1.4932 1.7600 -23 232 -2.0936 1.5209 1.7600 -23 233 -2.0380 1.5429 1.7600 -23 234 -1.9821 1.5555 1.7600 -23 235 -1.9271 1.5573 1.7600 -23 236 -1.8738 1.5576 1.7600 -23 237 -1.8198 1.5567 1.7600 -23 238 -1.7632 1.5508 1.7600 -23 239 -1.7013 1.5368 1.7600 -23 240 -1.6345 1.5154 1.7600 -23 241 -1.5625 1.4902 1.7600 -23 242 -1.4894 1.4686 1.7600 -23 243 -1.4239 1.4619 1.7600 -23 244 -1.3651 1.4699 1.7600 -23 245 -1.3094 1.4847 1.7600 -23 246 -1.2537 1.4993 1.7600 -23 247 -1.1966 1.5089 1.7600 -23 248 -1.1362 1.5167 1.7600 -23 249 -1.0740 1.5294 1.7600 -23 250 -1.0103 1.5491 1.7600 -23 251 -0.9427 1.5740 1.7600 -23 252 -0.8777 1.5963 1.7600 -23 253 -0.8202 1.6091 1.7600 -23 254 -0.7652 1.6107 1.7600 -23 255 -0.7107 1.6054 1.7600 -23 256 -0.6541 1.5999 1.7600 -23 257 -0.5970 1.5935 1.7600 -23 258 -0.5382 1.5845 1.7600 -23 259 -0.4758 1.5708 1.7600 -23 260 -0.4121 1.5513 1.7600 -23 261 -0.3496 1.5325 1.7600 -23 262 -0.2919 1.5226 1.7600 -23 263 -0.2402 1.5265 1.7600 -23 264 -0.1910 1.5423 1.7600 -23 265 -0.1444 1.5586 1.7600 -23 266 -0.0977 1.5698 1.7600 -23 267 -0.0450 1.5798 1.7600 -23 268 0.0159 1.5919 1.7600 -23 269 0.0977 1.6001 1.7600 -23 270 0.1842 1.6130 1.7600 -23 271 0.2699 1.6141 1.7600 -23 272 0.3425 1.6204 1.7600 -23 273 0.4007 1.6260 1.7600 -23 274 0.4495 1.6262 1.7600 -23 275 0.4956 1.6208 1.7600 -23 276 0.5440 1.6133 1.7600 -23 277 0.5942 1.6059 1.7600 -23 278 0.6475 1.5967 1.7600 -23 279 0.7034 1.5808 1.7600 -23 280 0.7576 1.5577 1.7600 -23 281 0.8135 1.5340 1.7600 -23 282 0.8579 1.5088 1.7600 -23 283 0.9075 1.5007 1.7600 -23 284 0.9611 1.5037 1.7600 -23 285 1.0159 1.5136 1.7600 -23 286 1.0711 1.5232 1.7600 -23 287 1.1292 1.5315 1.7600 -23 288 1.1893 1.5437 1.7600 -23 289 1.2444 1.5629 1.7600 -23 290 1.3063 1.5824 1.7600 -23 291 1.3528 1.5988 1.7600 -23 292 1.3984 1.6080 1.7600 -23 293 1.4338 1.6110 1.7600 -23 294 1.4708 1.6115 1.7600 -23 295 1.5115 1.6094 1.7600 -23 296 1.5505 1.6041 1.7600 -23 297 1.5982 1.5957 1.7600 -23 298 1.6447 1.5816 1.7600 -23 299 1.6903 1.5589 1.7600 -23 300 1.7290 1.5341 1.7600 -23 301 1.7651 1.5135 1.7600 -23 302 1.8010 1.5014 1.7600 -23 303 1.8398 1.5004 1.7600 -23 304 1.8768 1.5031 1.7600 -23 305 1.9168 1.5026 1.7600 -23 306 1.9605 1.5025 1.7600 -23 307 2.0077 1.5019 1.7600 -23 308 2.0597 1.5062 1.7600 -23 309 2.1114 1.5180 1.7600 -23 310 2.1608 1.5340 1.7600 -23 311 2.2073 1.5471 1.7600 -23 312 2.2459 1.5555 1.7600 -23 313 2.2827 1.5607 1.7600 -23 314 2.3144 1.5586 1.7600 -23 315 2.3463 1.5509 1.7600 -23 316 2.3785 1.5384 1.7600 -23 317 2.4127 1.5228 1.7600 -23 318 2.4500 1.5022 1.7600 -23 319 2.4887 1.4750 1.7600 -23 320 2.5262 1.4404 1.7600 -23 321 2.5656 1.4045 1.7600 -23 322 2.5982 1.3633 1.7600 -23 323 2.6343 1.3337 1.7600 -23 324 2.6725 1.3178 1.7600 -23 325 2.7107 1.3058 1.7600 -23 326 2.7511 1.2921 1.7600 -23 327 2.7952 1.2800 1.7600 -23 328 2.8446 1.2726 1.7600 -23 329 2.8982 1.2738 1.7600 -23 330 2.9554 1.2831 1.7600 -23 331 3.0147 1.2934 1.7600 -23 332 3.0720 1.3049 1.7600 -23 333 3.1230 1.3126 1.7600 -23 334 3.1734 1.3134 1.7600 -23 335 3.2264 1.3061 1.7600 -23 336 3.2829 1.2980 1.7600 -23 337 3.3436 1.2913 1.7600 -23 338 3.4086 1.2865 1.7600 -23 339 3.4772 1.2772 1.7600 -23 340 3.5480 1.2588 1.7600 -23 341 3.6145 1.2373 1.7600 -23 342 3.6828 1.2209 1.7600 -23 343 3.7478 1.2216 1.7600 -23 344 3.8026 1.2327 1.7600 -23 345 3.8581 1.2451 1.7600 -23 346 3.9137 1.2521 1.7600 -23 347 3.9711 1.2560 1.7600 -23 348 4.0344 1.2590 1.7600 -23 349 4.0993 1.2710 1.7600 -23 350 4.1685 1.2871 1.7600 -23 351 4.2354 1.3009 1.7600 -23 352 4.3006 1.3022 1.7600 -23 353 4.3614 1.2927 1.7600 -23 354 4.4231 1.2828 1.7600 -23 355 4.4867 1.2729 1.7600 -23 356 4.5513 1.2562 1.7600 -23 357 4.6172 1.2296 1.7600 -23 358 4.6864 1.2017 1.7600 -23 359 4.7571 1.1803 1.7600 -23 360 4.8265 1.1707 1.7600 -23 361 4.8934 1.1730 1.7600 -23 362 4.9567 1.1765 1.7600 -23 363 5.0167 1.1775 1.7600 -23 364 5.0748 1.1760 1.7600 -23 365 5.1328 1.1780 1.7600 -23 366 5.1938 1.1871 1.7600 -23 367 5.2626 1.1988 1.7600 -23 368 5.3362 1.2098 1.7600 -23 369 5.4064 1.2142 1.7600 -23 370 5.4721 1.2052 1.7600 -23 371 5.5343 1.1883 1.7600 -23 372 5.5959 1.1716 1.7600 -23 373 5.6577 1.1562 1.7600 -23 374 5.7217 1.1396 1.7600 -23 375 5.7886 1.1145 1.7600 -23 376 5.8597 1.0846 1.7600 -23 377 5.9314 1.0616 1.7600 -24 172 -7.7979 0.7551 1.7600 -24 173 -7.7247 0.7383 1.7600 -24 174 -7.6558 0.7156 1.7600 -24 175 -7.5791 0.6887 1.7600 -24 176 -7.4908 0.6611 1.7600 -24 177 -7.3942 0.6342 1.7600 -24 178 -7.2952 0.6061 1.7600 -24 179 -7.1996 0.5778 1.7600 -24 180 -7.1114 0.5489 1.7600 -24 181 -7.0402 0.5230 1.7600 -24 182 -6.9746 0.5047 1.7600 -24 183 -6.9078 0.4946 1.7600 -24 184 -6.8356 0.4874 1.7600 -24 185 -6.7571 0.4824 1.7600 -24 186 -6.6734 0.4828 1.7600 -24 187 -6.5882 0.4841 1.7600 -24 188 -6.5078 0.4872 1.7600 -24 189 -6.4336 0.4918 1.7600 -24 190 -6.3616 0.4947 1.7600 -24 191 -6.2890 0.4964 1.7600 -24 192 -6.2120 0.4897 1.7600 -24 193 -6.1290 0.4816 1.7600 -24 194 -6.0434 0.4742 1.7600 -24 195 -5.9591 0.4664 1.7600 -24 196 -5.8761 0.4521 1.7600 -24 197 -5.7950 0.4336 1.7600 -24 198 -5.7187 0.4138 1.7600 -24 199 -5.6445 0.4021 1.7600 -24 200 -5.5730 0.3964 1.7600 -24 201 -5.4962 0.3956 1.7600 -24 202 -5.4159 0.3948 1.7600 -24 203 -5.3331 0.3950 1.7600 -24 204 -5.2492 0.3981 1.7600 -24 205 -5.1690 0.4032 1.7600 -24 206 -5.0935 0.4100 1.7600 -24 207 -5.0188 0.4151 1.7600 -24 208 -4.9474 0.4136 1.7600 -24 209 -4.8760 0.4043 1.7600 -24 210 -4.8015 0.3909 1.7600 -24 211 -4.7224 0.3779 1.7600 -24 212 -4.6386 0.3660 1.7600 -24 213 -4.5542 0.3561 1.7600 -24 214 -4.4683 0.3392 1.7600 -24 215 -4.3791 0.3217 1.7600 -24 216 -4.2974 0.3058 1.7600 -24 217 -4.2196 0.2960 1.7600 -24 218 -4.1433 0.2950 1.7600 -24 219 -4.0674 0.3000 1.7600 -24 220 -3.9879 0.3077 1.7600 -24 221 -3.9089 0.3161 1.7600 -24 222 -3.8266 0.3275 1.7600 -24 223 -3.7473 0.3371 1.7600 -24 224 -3.6682 0.3463 1.7600 -24 225 -3.5927 0.3564 1.7600 -24 226 -3.5176 0.3612 1.7600 -24 227 -3.4411 0.3596 1.7600 -24 228 -3.3602 0.3531 1.7600 -24 229 -3.2757 0.3470 1.7600 -24 230 -3.1872 0.3409 1.7600 -24 231 -3.0990 0.3343 1.7600 -24 232 -3.0025 0.3239 1.7600 -24 233 -2.9015 0.3111 1.7600 -24 234 -2.8050 0.3023 1.7600 -24 235 -2.7169 0.2977 1.7600 -24 236 -2.6281 0.3002 1.7600 -24 237 -2.5452 0.3081 1.7600 -24 238 -2.4627 0.3179 1.7600 -24 239 -2.3805 0.3294 1.7600 -24 240 -2.2989 0.3429 1.7600 -24 241 -2.2139 0.3560 1.7600 -24 242 -2.1226 0.3673 1.7600 -24 243 -2.0395 0.3751 1.7600 -24 244 -1.9580 0.3754 1.7600 -24 245 -1.8751 0.3712 1.7600 -24 246 -1.7968 0.3640 1.7600 -24 247 -1.7167 0.3553 1.7600 -24 248 -1.6432 0.3490 1.7600 -24 249 -1.5649 0.3403 1.7600 -24 250 -1.4796 0.3283 1.7600 -24 251 -1.3882 0.3145 1.7600 -24 252 -1.3073 0.3034 1.7600 -24 253 -1.2296 0.3003 1.7600 -24 254 -1.1561 0.3045 1.7600 -24 255 -1.0814 0.3180 1.7600 -24 256 -1.0011 0.3314 1.7600 -24 257 -0.9225 0.3465 1.7600 -24 258 -0.8441 0.3618 1.7600 -24 259 -0.7660 0.3785 1.7600 -24 260 -0.6847 0.3943 1.7600 -24 261 -0.6104 0.4069 1.7600 -24 262 -0.5405 0.4109 1.7600 -24 263 -0.4697 0.4090 1.7600 -24 264 -0.3958 0.4062 1.7600 -24 265 -0.3170 0.4026 1.7600 -24 266 -0.2353 0.3991 1.7600 -24 267 -0.1492 0.3921 1.7600 -24 268 -0.0625 0.3813 1.7600 -24 269 0.0229 0.3694 1.7600 -24 270 0.1011 0.3615 1.7600 -24 271 0.1775 0.3610 1.7600 -24 272 0.2548 0.3696 1.7600 -24 273 0.3373 0.3813 1.7600 -24 274 0.4244 0.3950 1.7600 -24 275 0.5114 0.4114 1.7600 -24 276 0.5945 0.4324 1.7600 -24 277 0.6786 0.4551 1.7600 -24 278 0.7589 0.4780 1.7600 -24 279 0.8374 0.4977 1.7600 -24 280 0.9170 0.5137 1.7600 -24 281 1.0004 0.5276 1.7600 -24 282 1.0889 0.5397 1.7600 -24 283 1.1814 0.5505 1.7600 -24 284 1.2734 0.5617 1.7600 -24 285 1.3690 0.5756 1.7600 -24 286 1.4693 0.5843 1.7600 -24 287 1.5685 0.5916 1.7600 -24 288 1.6629 0.6021 1.7600 -24 289 1.7563 0.6165 1.7600 -24 290 1.8453 0.6299 1.7600 -24 291 1.9343 0.6455 1.7600 -24 292 2.0216 0.6617 1.7600 -24 293 2.1090 0.6826 1.7600 -24 294 2.1934 0.7043 1.7600 -24 295 2.2826 0.7221 1.7600 -24 296 2.3685 0.7415 1.7600 -24 297 2.4569 0.7545 1.7600 -24 298 2.5449 0.7610 1.7600 -24 299 2.6345 0.7623 1.7600 -24 300 2.7283 0.7638 1.7600 -24 301 2.8234 0.7671 1.7600 -24 302 2.9213 0.7665 1.7600 -24 303 3.0251 0.7621 1.7600 -24 304 3.1267 0.7613 1.7600 -24 305 3.2220 0.7596 1.7600 -24 306 3.3149 0.7654 1.7600 -24 307 3.4053 0.7793 1.7600 -24 308 3.4957 0.7947 1.7600 -24 309 3.5845 0.8115 1.7600 -24 310 3.6725 0.8298 1.7600 -24 311 3.7671 0.8500 1.7600 -24 312 3.8661 0.8697 1.7600 -24 313 3.9646 0.8852 1.7600 -24 314 4.0617 0.8947 1.7600 -24 315 4.1541 0.8938 1.7600 -24 316 4.2466 0.8914 1.7600 -24 317 4.3345 0.8896 1.7600 -24 318 4.4243 0.8898 1.7600 -24 319 4.5137 0.8878 1.7600 -24 320 4.6076 0.8828 1.7600 -24 321 4.7031 0.8775 1.7600 -24 322 4.7974 0.8742 1.7600 -24 323 4.8924 0.8775 1.7600 -24 324 4.9776 0.8854 1.7600 -24 325 5.0613 0.8926 1.7600 -24 326 5.1380 0.9008 1.7600 -24 327 5.2119 0.9103 1.7600 -24 328 5.2877 0.9221 1.7600 -24 329 5.3740 0.9320 1.7600 -24 330 5.4608 0.9420 1.7600 -24 331 5.5470 0.9444 1.7600 -24 332 5.6335 0.9392 1.7600 -24 333 5.7157 0.9294 1.7600 -24 334 5.7943 0.9177 1.7600 -24 335 5.8696 0.9054 1.7600 -24 336 5.9466 0.8908 1.7600 -25 166 -7.8141 1.3738 1.7600 -25 167 -7.7385 1.3639 1.7600 -25 168 -7.6588 1.3537 1.7600 -25 169 -7.5684 1.3415 1.7600 -25 170 -7.4672 1.3277 1.7600 -25 171 -7.3585 1.3121 1.7600 -25 172 -7.2521 1.2929 1.7600 -25 173 -7.1582 1.2658 1.7600 -25 174 -7.0757 1.2391 1.7600 -25 175 -6.9963 1.2205 1.7600 -25 176 -6.9143 1.2079 1.7600 -25 177 -6.8322 1.1980 1.7600 -25 178 -6.7385 1.1853 1.7600 -25 179 -6.6372 1.1785 1.7600 -25 180 -6.5290 1.1751 1.7600 -25 181 -6.4184 1.1780 1.7600 -25 182 -6.3149 1.1822 1.7600 -25 183 -6.2171 1.1913 1.7600 -25 184 -6.1253 1.1973 1.7600 -25 185 -6.0332 1.1978 1.7600 -25 186 -5.9328 1.1964 1.7600 -25 187 -5.8268 1.1958 1.7600 -25 188 -5.7140 1.1889 1.7600 -25 189 -5.6012 1.1813 1.7600 -25 190 -5.4872 1.1731 1.7600 -25 191 -5.3792 1.1612 1.7600 -25 192 -5.2744 1.1557 1.7600 -25 193 -5.1720 1.1526 1.7600 -25 194 -5.0698 1.1489 1.7600 -25 195 -4.9641 1.1426 1.7600 -25 196 -4.8512 1.1377 1.7600 -25 197 -4.7374 1.1321 1.7600 -25 198 -4.6216 1.1285 1.7600 -25 199 -4.5114 1.1242 1.7600 -25 200 -4.4049 1.1186 1.7600 -25 201 -4.3040 1.1123 1.7600 -25 202 -4.2008 1.1005 1.7600 -25 203 -4.0957 1.0857 1.7600 -25 204 -3.9885 1.0692 1.7600 -25 205 -3.8785 1.0467 1.7600 -25 206 -3.7705 1.0179 1.7600 -25 207 -3.6589 0.9898 1.7600 -25 208 -3.5542 0.9643 1.7600 -25 209 -3.4504 0.9478 1.7600 -25 210 -3.3458 0.9427 1.7600 -25 211 -3.2433 0.9394 1.7600 -25 212 -3.1405 0.9396 1.7600 -25 213 -3.0386 0.9409 1.7600 -25 214 -2.9383 0.9491 1.7600 -25 215 -2.8343 0.9582 1.7600 -25 216 -2.7299 0.9692 1.7600 -25 217 -2.6224 0.9810 1.7600 -25 218 -2.5157 0.9872 1.7600 -25 219 -2.4107 0.9892 1.7600 -25 220 -2.3071 0.9901 1.7600 -25 221 -2.2038 0.9900 1.7600 -25 222 -2.1034 0.9918 1.7600 -25 223 -1.9965 0.9912 1.7600 -25 224 -1.8784 0.9937 1.7600 -25 225 -1.7607 0.9955 1.7600 -25 226 -1.6461 1.0053 1.7600 -25 227 -1.5307 1.0227 1.7600 -25 228 -1.4267 1.0414 1.7600 -25 229 -1.3258 1.0607 1.7600 -25 230 -1.2221 1.0812 1.7600 -25 231 -1.1175 1.1089 1.7600 -25 232 -1.0099 1.1420 1.7600 -25 233 -0.9007 1.1777 1.7600 -25 234 -0.7958 1.2091 1.7600 -25 235 -0.6957 1.2335 1.7600 -25 236 -0.5964 1.2524 1.7600 -25 237 -0.4926 1.2701 1.7600 -25 238 -0.3832 1.2878 1.7600 -25 239 -0.2641 1.3001 1.7600 -25 240 -0.1437 1.3091 1.7600 -25 241 -0.0336 1.3169 1.7600 -25 242 0.0688 1.3244 1.7600 -25 243 0.1690 1.3354 1.7600 -25 244 0.2716 1.3502 1.7600 -25 245 0.3814 1.3642 1.7600 -25 246 0.4998 1.3786 1.7600 -25 247 0.6227 1.3935 1.7600 -25 248 0.7448 1.4134 1.7600 -25 249 0.8637 1.4351 1.7600 -25 250 0.9762 1.4524 1.7600 -25 251 1.0864 1.4625 1.7600 -25 252 1.1960 1.4653 1.7600 -25 253 1.3051 1.4668 1.7600 -25 254 1.4206 1.4641 1.7600 -25 255 1.5405 1.4588 1.7600 -25 256 1.6613 1.4500 1.7600 -25 257 1.7872 1.4413 1.7600 -25 258 1.9017 1.4350 1.7600 -25 259 2.0139 1.4342 1.7600 -25 260 2.1276 1.4380 1.7600 -25 261 2.2435 1.4451 1.7600 -25 262 2.3592 1.4507 1.7600 -25 263 2.4726 1.4579 1.7600 -25 264 2.5889 1.4634 1.7600 -25 265 2.7071 1.4736 1.7600 -25 266 2.8243 1.4900 1.7600 -25 267 2.9439 1.5005 1.7600 -25 268 3.0595 1.5043 1.7600 -25 269 3.1739 1.5035 1.7600 -25 270 3.2861 1.4996 1.7600 -25 271 3.3983 1.4960 1.7600 -25 272 3.5100 1.4903 1.7600 -25 273 3.6260 1.4873 1.7600 -25 274 3.7466 1.4873 1.7600 -25 275 3.8699 1.4924 1.7600 -25 276 3.9908 1.5035 1.7600 -25 277 4.1098 1.5168 1.7600 -25 278 4.2183 1.5319 1.7600 -25 279 4.3213 1.5441 1.7600 -25 280 4.4230 1.5590 1.7600 -25 281 4.5299 1.5780 1.7600 -25 282 4.6487 1.6001 1.7600 -25 283 4.7728 1.6224 1.7600 -25 284 4.8964 1.6334 1.7600 -25 285 5.0141 1.6398 1.7600 -25 286 5.1259 1.6442 1.7600 -25 287 5.2320 1.6470 1.7600 -25 288 5.3350 1.6454 1.7600 -25 289 5.4401 1.6433 1.7600 -25 290 5.5500 1.6438 1.7600 -25 291 5.6643 1.6463 1.7600 -25 292 5.7832 1.6617 1.7600 -25 293 5.8978 1.6821 1.7600 -26 162 -7.7858 1.7722 1.7600 -26 163 -7.7301 1.7671 1.7600 -26 164 -7.6733 1.7557 1.7600 -26 165 -7.6147 1.7395 1.7600 -26 166 -7.5526 1.7197 1.7600 -26 167 -7.4885 1.6984 1.7600 -26 168 -7.4256 1.6747 1.7600 -26 169 -7.3684 1.6503 1.7600 -26 170 -7.3192 1.6297 1.7600 -26 171 -7.2717 1.6158 1.7600 -26 172 -7.2222 1.6070 1.7600 -26 173 -7.1711 1.6021 1.7600 -26 174 -7.1164 1.6004 1.7600 -26 175 -7.0574 1.5979 1.7600 -26 176 -6.9947 1.5944 1.7600 -26 177 -6.9286 1.5904 1.7600 -26 178 -6.8617 1.5891 1.7600 -26 179 -6.7962 1.5915 1.7600 -26 180 -6.7347 1.5959 1.7600 -26 181 -6.6755 1.5956 1.7600 -26 182 -6.6181 1.5972 1.7600 -26 183 -6.5576 1.5907 1.7600 -26 184 -6.4977 1.5803 1.7600 -26 185 -6.4366 1.5662 1.7600 -26 186 -6.3770 1.5505 1.7600 -26 187 -6.3122 1.5324 1.7600 -26 188 -6.2456 1.5101 1.7600 -26 189 -6.1837 1.4855 1.7600 -26 190 -6.1266 1.4593 1.7600 -26 191 -6.0735 1.4392 1.7600 -26 192 -6.0177 1.4292 1.7600 -26 193 -5.9603 1.4214 1.7600 -26 194 -5.9046 1.4209 1.7600 -26 195 -5.8457 1.4165 1.7600 -26 196 -5.7845 1.4092 1.7600 -26 197 -5.7183 1.4032 1.7600 -26 198 -5.6563 1.4006 1.7600 -26 199 -5.5878 1.4002 1.7600 -26 200 -5.5213 1.3982 1.7600 -26 201 -5.4586 1.3918 1.7600 -26 202 -5.3967 1.3786 1.7600 -26 203 -5.3348 1.3558 1.7600 -26 204 -5.2735 1.3320 1.7600 -26 205 -5.2120 1.3050 1.7600 -26 206 -5.1510 1.2750 1.7600 -26 207 -5.0876 1.2430 1.7600 -26 208 -5.0239 1.2095 1.7600 -26 209 -4.9601 1.1793 1.7600 -26 210 -4.8974 1.1521 1.7600 -26 211 -4.8332 1.1333 1.7600 -26 212 -4.7677 1.1212 1.7600 -26 213 -4.7022 1.1150 1.7600 -26 214 -4.6365 1.1091 1.7600 -26 215 -4.5709 1.1053 1.7600 -26 216 -4.5033 1.1037 1.7600 -26 217 -4.4372 1.1043 1.7600 -26 218 -4.3654 1.1115 1.7600 -26 219 -4.2977 1.1128 1.7600 -26 220 -4.2306 1.1083 1.7600 -26 221 -4.1616 1.0951 1.7600 -26 222 -4.0943 1.0754 1.7600 -26 223 -4.0275 1.0554 1.7600 -26 224 -3.9602 1.0307 1.7600 -26 225 -3.8957 1.0080 1.7600 -26 226 -3.8256 0.9822 1.7600 -26 227 -3.7498 0.9583 1.7600 -26 228 -3.6828 0.9358 1.7600 -26 229 -3.6198 0.9224 1.7600 -26 230 -3.5561 0.9152 1.7600 -26 231 -3.4939 0.9125 1.7600 -26 232 -3.4309 0.9093 1.7600 -26 233 -3.3700 0.9083 1.7600 -26 234 -3.3039 0.9082 1.7600 -26 235 -3.2376 0.9047 1.7600 -26 236 -3.1698 0.9089 1.7600 -26 237 -3.0996 0.9145 1.7600 -26 238 -3.0366 0.9189 1.7600 -26 239 -2.9781 0.9177 1.7600 -26 240 -2.9152 0.9082 1.7600 -26 241 -2.8525 0.8957 1.7600 -26 242 -2.7940 0.8826 1.7600 -26 243 -2.7310 0.8724 1.7600 -26 244 -2.6685 0.8566 1.7600 -26 245 -2.6051 0.8392 1.7600 -26 246 -2.5392 0.8198 1.7600 -26 247 -2.4742 0.8010 1.7600 -26 248 -2.4109 0.7869 1.7600 -26 249 -2.3476 0.7804 1.7600 -26 250 -2.2862 0.7830 1.7600 -26 251 -2.2279 0.7875 1.7600 -26 252 -2.1695 0.7924 1.7600 -26 253 -2.1104 0.8000 1.7600 -26 254 -2.0499 0.8125 1.7600 -26 255 -1.9872 0.8299 1.7600 -26 256 -1.9160 0.8465 1.7600 -26 257 -1.8498 0.8594 1.7600 -26 258 -1.7839 0.8659 1.7600 -26 259 -1.7156 0.8657 1.7600 -26 260 -1.6474 0.8611 1.7600 -26 261 -1.5807 0.8537 1.7600 -26 262 -1.5143 0.8455 1.7600 -26 263 -1.4434 0.8333 1.7600 -26 264 -1.3726 0.8223 1.7600 -26 265 -1.2985 0.8109 1.7600 -26 266 -1.2298 0.8015 1.7600 -26 267 -1.1654 0.8011 1.7600 -26 268 -1.1005 0.8078 1.7600 -26 269 -1.0377 0.8176 1.7600 -26 270 -0.9765 0.8267 1.7600 -26 271 -0.9172 0.8357 1.7600 -26 272 -0.8543 0.8435 1.7600 -26 273 -0.7892 0.8528 1.7600 -26 274 -0.7239 0.8654 1.7600 -26 275 -0.6565 0.8794 1.7600 -26 276 -0.5943 0.8908 1.7600 -26 277 -0.5278 0.8942 1.7600 -26 278 -0.4600 0.8920 1.7600 -26 279 -0.3986 0.8890 1.7600 -26 280 -0.3385 0.8856 1.7600 -26 281 -0.2739 0.8836 1.7600 -26 282 -0.2067 0.8813 1.7600 -26 283 -0.1391 0.8784 1.7600 -26 284 -0.0665 0.8708 1.7600 -26 285 -0.0015 0.8640 1.7600 -26 286 0.0594 0.8614 1.7600 -26 287 0.1198 0.8691 1.7600 -26 288 0.1788 0.8813 1.7600 -26 289 0.2344 0.8921 1.7600 -26 290 0.2962 0.9024 1.7600 -26 291 0.3584 0.9083 1.7600 -26 292 0.4249 0.9142 1.7600 -26 293 0.4899 0.9191 1.7600 -26 294 0.5550 0.9221 1.7600 -26 295 0.6200 0.9230 1.7600 -26 296 0.6806 0.9169 1.7600 -26 297 0.7452 0.9063 1.7600 -26 298 0.8098 0.8938 1.7600 -26 299 0.8722 0.8823 1.7600 -26 300 0.9370 0.8705 1.7600 -26 301 1.0044 0.8574 1.7600 -26 302 1.0735 0.8451 1.7600 -26 303 1.1430 0.8336 1.7600 -26 304 1.2126 0.8237 1.7600 -26 305 1.2779 0.8153 1.7600 -26 306 1.3434 0.8152 1.7600 -26 307 1.4061 0.8192 1.7600 -26 308 1.4672 0.8282 1.7600 -26 309 1.5338 0.8404 1.7600 -26 310 1.5999 0.8520 1.7600 -26 311 1.6644 0.8668 1.7600 -26 312 1.7318 0.8814 1.7600 -26 313 1.8055 0.8988 1.7600 -26 314 1.8734 0.9123 1.7600 -26 315 1.9414 0.9191 1.7600 -26 316 2.0112 0.9166 1.7600 -26 317 2.0823 0.9088 1.7600 -26 318 2.1518 0.8987 1.7600 -26 319 2.2255 0.8878 1.7600 -26 320 2.2997 0.8762 1.7600 -26 321 2.3731 0.8660 1.7600 -26 322 2.4425 0.8554 1.7600 -26 323 2.5031 0.8466 1.7600 -26 324 2.5584 0.8468 1.7600 -26 325 2.6133 0.8516 1.7600 -26 326 2.6670 0.8579 1.7600 -26 327 2.7225 0.8626 1.7600 -26 328 2.7790 0.8697 1.7600 -26 329 2.8364 0.8766 1.7600 -26 330 2.8949 0.8854 1.7600 -26 331 2.9607 0.8944 1.7600 -26 332 3.0255 0.9031 1.7600 -26 333 3.0895 0.9076 1.7600 -26 334 3.1578 0.9056 1.7600 -26 335 3.2259 0.8998 1.7600 -26 336 3.2894 0.8908 1.7600 -26 337 3.3491 0.8817 1.7600 -26 338 3.4139 0.8728 1.7600 -26 339 3.4745 0.8582 1.7600 -26 340 3.5448 0.8389 1.7600 -26 341 3.6151 0.8221 1.7600 -26 342 3.6818 0.8108 1.7600 -26 343 3.7476 0.8025 1.7600 -26 344 3.8182 0.7989 1.7600 -26 345 3.8854 0.7982 1.7600 -26 346 3.9486 0.7971 1.7600 -26 347 4.0124 0.7982 1.7600 -26 348 4.0751 0.7990 1.7600 -26 349 4.1385 0.8016 1.7600 -26 350 4.2089 0.8093 1.7600 -26 351 4.2736 0.8149 1.7600 -26 352 4.3377 0.8160 1.7600 -26 353 4.4001 0.8113 1.7600 -26 354 4.4618 0.8056 1.7600 -26 355 4.5222 0.8005 1.7600 -26 356 4.5801 0.7950 1.7600 -26 357 4.6363 0.7876 1.7600 -26 358 4.6957 0.7766 1.7600 -26 359 4.7612 0.7642 1.7600 -26 360 4.8273 0.7519 1.7600 -26 361 4.8878 0.7441 1.7600 -26 362 4.9495 0.7413 1.7600 -26 363 5.0148 0.7440 1.7600 -26 364 5.0769 0.7459 1.7600 -26 365 5.1390 0.7494 1.7600 -26 366 5.1991 0.7565 1.7600 -26 367 5.2503 0.7622 1.7600 -26 368 5.3062 0.7674 1.7600 -26 369 5.3800 0.7720 1.7600 -26 370 5.4556 0.7776 1.7600 -26 371 5.5256 0.7800 1.7600 -26 372 5.6012 0.7770 1.7600 -26 373 5.6745 0.7706 1.7600 -26 374 5.7386 0.7643 1.7600 -26 375 5.7963 0.7569 1.7600 -26 376 5.8528 0.7471 1.7600 -26 377 5.9132 0.7326 1.7600 -27 179 -7.7507 1.3970 1.7600 -27 180 -7.6714 1.3845 1.7600 -27 181 -7.5983 1.3743 1.7600 -27 182 -7.5270 1.3602 1.7600 -27 183 -7.4543 1.3369 1.7600 -27 184 -7.3777 1.3071 1.7600 -27 185 -7.2972 1.2739 1.7600 -27 186 -7.2136 1.2387 1.7600 -27 187 -7.1308 1.2005 1.7600 -27 188 -7.0546 1.1620 1.7600 -27 189 -6.9845 1.1249 1.7600 -27 190 -6.9146 1.0928 1.7600 -27 191 -6.8422 1.0685 1.7600 -27 192 -6.7653 1.0508 1.7600 -27 193 -6.6867 1.0321 1.7600 -27 194 -6.6009 1.0144 1.7600 -27 195 -6.5173 0.9966 1.7600 -27 196 -6.4370 0.9849 1.7600 -27 197 -6.3607 0.9768 1.7600 -27 198 -6.2883 0.9650 1.7600 -27 199 -6.2205 0.9452 1.7600 -27 200 -6.1517 0.9212 1.7600 -27 201 -6.0825 0.8982 1.7600 -27 202 -6.0116 0.8748 1.7600 -27 203 -5.9387 0.8534 1.7600 -27 204 -5.8675 0.8324 1.7600 -27 205 -5.8025 0.8114 1.7600 -27 206 -5.7375 0.7947 1.7600 -27 207 -5.6694 0.7830 1.7600 -27 208 -5.6011 0.7790 1.7600 -27 209 -5.5321 0.7769 1.7600 -27 210 -5.4599 0.7787 1.7600 -27 211 -5.3911 0.7833 1.7600 -27 212 -5.3233 0.7901 1.7600 -27 213 -5.2566 0.7983 1.7600 -27 214 -5.1919 0.8060 1.7600 -27 215 -5.1303 0.8042 1.7600 -27 216 -5.0640 0.7969 1.7600 -27 217 -4.9997 0.7844 1.7600 -27 218 -4.9345 0.7727 1.7600 -27 219 -4.8711 0.7562 1.7600 -27 220 -4.8033 0.7398 1.7600 -27 221 -4.7355 0.7196 1.7600 -27 222 -4.6652 0.6992 1.7600 -27 223 -4.5923 0.6768 1.7600 -27 224 -4.5183 0.6638 1.7600 -27 225 -4.4446 0.6559 1.7600 -27 226 -4.3653 0.6523 1.7600 -27 227 -4.2912 0.6517 1.7600 -27 228 -4.2164 0.6531 1.7600 -27 229 -4.1430 0.6542 1.7600 -27 230 -4.0705 0.6595 1.7600 -27 231 -4.0024 0.6586 1.7600 -27 232 -3.9345 0.6492 1.7600 -27 233 -3.8670 0.6362 1.7600 -27 234 -3.7958 0.6142 1.7600 -27 235 -3.7257 0.5949 1.7600 -27 236 -3.6555 0.5729 1.7600 -27 237 -3.5819 0.5449 1.7600 -27 238 -3.5020 0.5160 1.7600 -27 239 -3.4230 0.4930 1.7600 -27 240 -3.3429 0.4781 1.7600 -27 241 -3.2592 0.4684 1.7600 -27 242 -3.1780 0.4607 1.7600 -27 243 -3.0953 0.4518 1.7600 -27 244 -3.0169 0.4453 1.7600 -27 245 -2.9395 0.4393 1.7600 -27 246 -2.8629 0.4312 1.7600 -27 247 -2.7909 0.4192 1.7600 -27 248 -2.7205 0.4060 1.7600 -27 249 -2.6493 0.3905 1.7600 -27 250 -2.5774 0.3742 1.7600 -27 251 -2.5026 0.3569 1.7600 -27 252 -2.4226 0.3354 1.7600 -27 253 -2.3409 0.3159 1.7600 -27 254 -2.2625 0.2990 1.7600 -27 255 -2.1788 0.2923 1.7600 -27 256 -2.0951 0.2908 1.7600 -27 257 -2.0125 0.2935 1.7600 -27 258 -1.9281 0.2987 1.7600 -27 259 -1.8456 0.3048 1.7600 -27 260 -1.7579 0.3138 1.7600 -27 261 -1.6688 0.3195 1.7600 -27 262 -1.5868 0.3179 1.7600 -27 263 -1.5042 0.3133 1.7600 -27 264 -1.4194 0.3041 1.7600 -27 265 -1.3326 0.2931 1.7600 -27 266 -1.2481 0.2821 1.7600 -27 267 -1.1614 0.2699 1.7600 -27 268 -1.0773 0.2612 1.7600 -27 269 -0.9964 0.2648 1.7600 -27 270 -0.9165 0.2736 1.7600 -27 271 -0.8371 0.2842 1.7600 -27 272 -0.7570 0.2979 1.7600 -27 273 -0.6776 0.3165 1.7600 -27 274 -0.5972 0.3375 1.7600 -27 275 -0.5177 0.3575 1.7600 -27 276 -0.4388 0.3752 1.7600 -27 277 -0.3623 0.3836 1.7600 -27 278 -0.2821 0.3885 1.7600 -27 279 -0.2019 0.3901 1.7600 -27 280 -0.1157 0.3897 1.7600 -27 281 -0.0285 0.3858 1.7600 -27 282 0.0570 0.3810 1.7600 -27 283 0.1378 0.3735 1.7600 -27 284 0.2205 0.3679 1.7600 -27 285 0.3045 0.3688 1.7600 -27 286 0.3892 0.3747 1.7600 -27 287 0.4778 0.3815 1.7600 -27 288 0.5664 0.3904 1.7600 -27 289 0.6568 0.3986 1.7600 -27 290 0.7446 0.4091 1.7600 -27 291 0.8328 0.4152 1.7600 -27 292 0.9245 0.4167 1.7600 -27 293 1.0224 0.4114 1.7600 -27 294 1.1211 0.4034 1.7600 -27 295 1.2242 0.3944 1.7600 -27 296 1.3268 0.3817 1.7600 -27 297 1.4305 0.3669 1.7600 -27 298 1.5341 0.3519 1.7600 -27 299 1.6358 0.3452 1.7600 -27 300 1.7352 0.3472 1.7600 -27 301 1.8357 0.3506 1.7600 -27 302 1.9362 0.3549 1.7600 -27 303 2.0411 0.3588 1.7600 -27 304 2.1437 0.3638 1.7600 -27 305 2.2498 0.3650 1.7600 -27 306 2.3542 0.3602 1.7600 -27 307 2.4599 0.3511 1.7600 -27 308 2.5640 0.3396 1.7600 -27 309 2.6701 0.3286 1.7600 -27 310 2.7763 0.3158 1.7600 -27 311 2.8836 0.3012 1.7600 -27 312 2.9927 0.2891 1.7600 -27 313 3.0931 0.2834 1.7600 -27 314 3.1963 0.2896 1.7600 -27 315 3.2933 0.2979 1.7600 -27 316 3.3892 0.3040 1.7600 -27 317 3.4887 0.3091 1.7600 -27 318 3.5821 0.3146 1.7600 -27 319 3.6865 0.3196 1.7600 -27 320 3.7926 0.3133 1.7600 -27 321 3.8936 0.3012 1.7600 -27 322 3.9895 0.2844 1.7600 -27 323 4.0857 0.2713 1.7600 -27 324 4.1784 0.2580 1.7600 -27 325 4.2795 0.2439 1.7600 -27 326 4.3845 0.2270 1.7600 -27 327 4.4907 0.2167 1.7600 -27 328 4.5955 0.2181 1.7600 -27 329 4.6939 0.2248 1.7600 -27 330 4.7859 0.2298 1.7600 -27 331 4.8721 0.2344 1.7600 -27 332 4.9572 0.2396 1.7600 -27 333 5.0436 0.2487 1.7600 -27 334 5.1330 0.2528 1.7600 -27 335 5.2277 0.2525 1.7600 -27 336 5.3193 0.2437 1.7600 -27 337 5.4011 0.2325 1.7600 -27 338 5.4814 0.2176 1.7600 -27 339 5.5634 0.2038 1.7600 -27 340 5.6490 0.1862 1.7600 -27 341 5.7473 0.1648 1.7600 -27 342 5.8487 0.1462 1.7600 -27 343 5.9508 0.1342 1.7600 -28 165 -7.7838 2.1088 1.7600 -28 166 -7.7234 2.1117 1.7600 -28 167 -7.6573 2.1147 1.7600 -28 168 -7.5891 2.1204 1.7600 -28 169 -7.5208 2.1301 1.7600 -28 170 -7.4548 2.1418 1.7600 -28 171 -7.3929 2.1532 1.7600 -28 172 -7.3354 2.1604 1.7600 -28 173 -7.2815 2.1608 1.7600 -28 174 -7.2244 2.1534 1.7600 -28 175 -7.1618 2.1409 1.7600 -28 176 -7.0956 2.1262 1.7600 -28 177 -7.0289 2.1090 1.7600 -28 178 -6.9647 2.0889 1.7600 -28 179 -6.9037 2.0645 1.7600 -28 180 -6.8476 2.0386 1.7600 -28 181 -6.7935 2.0152 1.7600 -28 182 -6.7375 1.9929 1.7600 -28 183 -6.6778 1.9761 1.7600 -28 184 -6.6152 1.9652 1.7600 -28 185 -6.5513 1.9567 1.7600 -28 186 -6.4831 1.9483 1.7600 -28 187 -6.4107 1.9402 1.7600 -28 188 -6.3352 1.9352 1.7600 -28 189 -6.2600 1.9346 1.7600 -28 190 -6.1859 1.9350 1.7600 -28 191 -6.1204 1.9368 1.7600 -28 192 -6.0599 1.9288 1.7600 -28 193 -6.0020 1.9171 1.7600 -28 194 -5.9464 1.9015 1.7600 -28 195 -5.8828 1.8821 1.7600 -28 196 -5.8140 1.8618 1.7600 -28 197 -5.7471 1.8436 1.7600 -28 198 -5.6847 1.8221 1.7600 -28 199 -5.6221 1.8001 1.7600 -28 200 -5.5627 1.7787 1.7600 -28 201 -5.5096 1.7661 1.7600 -28 202 -5.4582 1.7566 1.7600 -28 203 -5.4071 1.7512 1.7600 -28 204 -5.3562 1.7473 1.7600 -28 205 -5.3018 1.7413 1.7600 -28 206 -5.2455 1.7333 1.7600 -28 207 -5.1895 1.7259 1.7600 -28 208 -5.1280 1.7220 1.7600 -28 209 -5.0684 1.7236 1.7600 -28 210 -5.0079 1.7245 1.7600 -28 211 -4.9532 1.7218 1.7600 -28 212 -4.9055 1.7148 1.7600 -28 213 -4.8602 1.7020 1.7600 -28 214 -4.8128 1.6877 1.7600 -28 215 -4.7632 1.6696 1.7600 -28 216 -4.7149 1.6492 1.7600 -28 217 -4.6664 1.6297 1.7600 -28 218 -4.6149 1.6056 1.7600 -28 219 -4.5652 1.5770 1.7600 -28 220 -4.5183 1.5521 1.7600 -28 221 -4.4709 1.5297 1.7600 -28 222 -4.4222 1.5120 1.7600 -28 223 -4.3745 1.4983 1.7600 -28 224 -4.3222 1.4857 1.7600 -28 225 -4.2697 1.4745 1.7600 -28 226 -4.2136 1.4639 1.7600 -28 227 -4.1593 1.4556 1.7600 -28 228 -4.0996 1.4568 1.7600 -28 229 -4.0384 1.4633 1.7600 -28 230 -3.9763 1.4736 1.7600 -28 231 -3.9210 1.4755 1.7600 -28 232 -3.8652 1.4649 1.7600 -28 233 -3.8118 1.4474 1.7600 -28 234 -3.7524 1.4324 1.7600 -28 235 -3.6958 1.4159 1.7600 -28 236 -3.6384 1.3984 1.7600 -28 237 -3.5801 1.3752 1.7600 -28 238 -3.5193 1.3520 1.7600 -28 239 -3.4605 1.3354 1.7600 -28 240 -3.4033 1.3287 1.7600 -28 241 -3.3441 1.3262 1.7600 -28 242 -3.2825 1.3256 1.7600 -28 243 -3.2219 1.3268 1.7600 -28 244 -3.1579 1.3323 1.7600 -28 245 -3.0926 1.3440 1.7600 -28 246 -3.0095 1.3653 1.7600 -28 247 -2.9270 1.3907 1.7600 -28 248 -2.8464 1.4024 1.7600 -28 249 -2.7832 1.4045 1.7600 -28 250 -2.7168 1.3921 1.7600 -28 251 -2.6471 1.3821 1.7600 -28 252 -2.5768 1.3716 1.7600 -28 253 -2.5104 1.3609 1.7600 -28 254 -2.4449 1.3442 1.7600 -28 255 -2.3774 1.3251 1.7600 -28 256 -2.3054 1.3082 1.7600 -28 257 -2.2389 1.2987 1.7600 -28 258 -2.1725 1.2972 1.7600 -28 259 -2.1077 1.3037 1.7600 -28 260 -2.0450 1.3107 1.7600 -28 261 -1.9811 1.3202 1.7600 -28 262 -1.9154 1.3300 1.7600 -28 263 -1.8399 1.3366 1.7600 -28 264 -1.7630 1.3557 1.7600 -28 265 -1.6861 1.3809 1.7600 -28 266 -1.6163 1.3947 1.7600 -28 267 -1.5542 1.3983 1.7600 -28 268 -1.4964 1.3958 1.7600 -28 269 -1.4369 1.3891 1.7600 -28 270 -1.3742 1.3857 1.7600 -28 271 -1.3105 1.3792 1.7600 -28 272 -1.2482 1.3716 1.7600 -28 273 -1.1827 1.3571 1.7600 -28 274 -1.1189 1.3456 1.7600 -28 275 -1.0506 1.3282 1.7600 -28 276 -0.9862 1.3162 1.7600 -28 277 -0.9239 1.3131 1.7600 -28 278 -0.8660 1.3179 1.7600 -28 279 -0.8029 1.3263 1.7600 -28 280 -0.7325 1.3365 1.7600 -28 281 -0.6586 1.3473 1.7600 -28 282 -0.5804 1.3610 1.7600 -28 283 -0.4983 1.3798 1.7600 -28 284 -0.4113 1.3979 1.7600 -28 285 -0.3343 1.4107 1.7600 -28 286 -0.2662 1.4186 1.7600 -28 287 -0.2000 1.4164 1.7600 -28 288 -0.1327 1.4105 1.7600 -28 289 -0.0586 1.4034 1.7600 -28 290 0.0175 1.3960 1.7600 -28 291 0.0943 1.3868 1.7600 -28 292 0.1682 1.3758 1.7600 -28 293 0.2424 1.3638 1.7600 -28 294 0.3061 1.3533 1.7600 -28 295 0.3686 1.3501 1.7600 -28 296 0.4258 1.3561 1.7600 -28 297 0.4862 1.3665 1.7600 -28 298 0.5495 1.3768 1.7600 -28 299 0.6154 1.3864 1.7600 -28 300 0.6822 1.3966 1.7600 -28 301 0.7502 1.4058 1.7600 -28 302 0.8222 1.4151 1.7600 -28 303 0.8977 1.4291 1.7600 -28 304 0.9618 1.4377 1.7600 -28 305 1.0205 1.4353 1.7600 -28 306 1.0798 1.4258 1.7600 -28 307 1.1418 1.4124 1.7600 -28 308 1.2101 1.3960 1.7600 -28 309 1.2787 1.3796 1.7600 -28 310 1.3426 1.3619 1.7600 -28 311 1.4081 1.3448 1.7600 -28 312 1.4744 1.3248 1.7600 -28 313 1.5376 1.3070 1.7600 -28 314 1.5949 1.2958 1.7600 -28 315 1.6482 1.2923 1.7600 -28 316 1.7027 1.2912 1.7600 -28 317 1.7601 1.2908 1.7600 -28 318 1.8169 1.2908 1.7600 -28 319 1.8695 1.2912 1.7600 -28 320 1.9257 1.2925 1.7600 -28 321 1.9842 1.2962 1.7600 -28 322 2.0465 1.3024 1.7600 -28 323 2.0999 1.3060 1.7600 -28 324 2.1530 1.3038 1.7600 -28 325 2.2059 1.2961 1.7600 -28 326 2.2629 1.2853 1.7600 -28 327 2.3217 1.2713 1.7600 -28 328 2.3840 1.2592 1.7600 -28 329 2.4474 1.2447 1.7600 -28 330 2.5091 1.2301 1.7600 -28 331 2.5677 1.2174 1.7600 -28 332 2.6204 1.2121 1.7600 -28 333 2.6759 1.2128 1.7600 -28 334 2.7303 1.2210 1.7600 -28 335 2.7888 1.2357 1.7600 -28 336 2.8458 1.2542 1.7600 -28 337 2.9019 1.2788 1.7600 -28 338 2.9612 1.3133 1.7600 -28 339 3.0290 1.3534 1.7600 -28 340 3.0871 1.4072 1.7600 -28 341 3.1457 1.4426 1.7600 -28 342 3.2011 1.4658 1.7600 -28 343 3.2537 1.4770 1.7600 -28 344 3.3103 1.4817 1.7600 -28 345 3.3687 1.4830 1.7600 -28 346 3.4306 1.4818 1.7600 -28 347 3.4913 1.4725 1.7600 -28 348 3.5528 1.4643 1.7600 -28 349 3.6138 1.4511 1.7600 -28 350 3.6763 1.4420 1.7600 -28 351 3.7436 1.4417 1.7600 -28 352 3.8115 1.4501 1.7600 -28 353 3.8759 1.4603 1.7600 -28 354 3.9404 1.4685 1.7600 -28 355 4.0052 1.4802 1.7600 -28 356 4.0744 1.4995 1.7600 -28 357 4.1533 1.5272 1.7600 -28 358 4.2368 1.5600 1.7600 -28 359 4.3180 1.5888 1.7600 -28 360 4.4008 1.6125 1.7600 -28 361 4.4776 1.6231 1.7600 -28 362 4.5498 1.6273 1.7600 -28 363 4.6228 1.6309 1.7600 -28 364 4.6975 1.6302 1.7600 -28 365 4.7726 1.6259 1.7600 -28 366 4.8490 1.6181 1.7600 -28 367 4.9358 1.6119 1.7600 -28 368 5.0257 1.6102 1.7600 -28 369 5.1162 1.6213 1.7600 -28 370 5.1983 1.6357 1.7600 -28 371 5.2745 1.6524 1.7600 -28 372 5.3468 1.6674 1.7600 -28 373 5.4182 1.6843 1.7600 -28 374 5.4879 1.6998 1.7600 -28 375 5.5682 1.7217 1.7600 -28 376 5.6598 1.7453 1.7600 -28 377 5.7490 1.7610 1.7600 -28 378 5.8332 1.7666 1.7600 -28 379 5.9090 1.7635 1.7600 -29 188 -7.8279 0.9157 1.7600 -29 189 -7.7627 0.8959 1.7600 -29 190 -7.6940 0.8675 1.7600 -29 191 -7.6223 0.8391 1.7600 -29 192 -7.5458 0.8130 1.7600 -29 193 -7.4639 0.7872 1.7600 -29 194 -7.3816 0.7601 1.7600 -29 195 -7.3011 0.7313 1.7600 -29 196 -7.2260 0.7050 1.7600 -29 197 -7.1506 0.6803 1.7600 -29 198 -7.0752 0.6623 1.7600 -29 199 -6.9921 0.6567 1.7600 -29 200 -6.9147 0.6560 1.7600 -29 201 -6.8392 0.6527 1.7600 -29 202 -6.7634 0.6465 1.7600 -29 203 -6.6865 0.6394 1.7600 -29 204 -6.6078 0.6352 1.7600 -29 205 -6.5305 0.6300 1.7600 -29 206 -6.4571 0.6238 1.7600 -29 207 -6.3824 0.6091 1.7600 -29 208 -6.3087 0.5892 1.7600 -29 209 -6.2366 0.5723 1.7600 -29 210 -6.1629 0.5581 1.7600 -29 211 -6.0866 0.5435 1.7600 -29 212 -6.0051 0.5238 1.7600 -29 213 -5.9249 0.5000 1.7600 -29 214 -5.8576 0.4776 1.7600 -29 215 -5.7884 0.4618 1.7600 -29 216 -5.7208 0.4563 1.7600 -29 217 -5.6516 0.4523 1.7600 -29 218 -5.5888 0.4517 1.7600 -29 219 -5.5171 0.4541 1.7600 -29 220 -5.4482 0.4571 1.7600 -29 221 -5.3864 0.4641 1.7600 -29 222 -5.3246 0.4754 1.7600 -29 223 -5.2623 0.4826 1.7600 -29 224 -5.1972 0.4840 1.7600 -29 225 -5.1357 0.4745 1.7600 -29 226 -5.0833 0.4611 1.7600 -29 227 -5.0266 0.4482 1.7600 -29 228 -4.9655 0.4344 1.7600 -29 229 -4.9012 0.4203 1.7600 -29 230 -4.8337 0.4022 1.7600 -29 231 -4.7605 0.3797 1.7600 -29 232 -4.6870 0.3610 1.7600 -29 233 -4.6175 0.3490 1.7600 -29 234 -4.5467 0.3458 1.7600 -29 235 -4.4823 0.3498 1.7600 -29 236 -4.4207 0.3520 1.7600 -29 237 -4.3584 0.3516 1.7600 -29 238 -4.2892 0.3528 1.7600 -29 239 -4.2220 0.3608 1.7600 -29 240 -4.1529 0.3750 1.7600 -29 241 -4.0908 0.3884 1.7600 -29 242 -4.0271 0.4002 1.7600 -29 243 -3.9648 0.4027 1.7600 -29 244 -3.9078 0.3992 1.7600 -29 245 -3.8573 0.3955 1.7600 -29 246 -3.8017 0.3936 1.7600 -29 247 -3.7383 0.3945 1.7600 -29 248 -3.6710 0.3960 1.7600 -29 249 -3.5995 0.3940 1.7600 -29 250 -3.5287 0.3852 1.7600 -29 251 -3.4598 0.3689 1.7600 -29 252 -3.3901 0.3600 1.7600 -29 253 -3.3222 0.3606 1.7600 -29 254 -3.2530 0.3698 1.7600 -29 255 -3.1875 0.3781 1.7600 -29 256 -3.1196 0.3888 1.7600 -29 257 -3.0537 0.4047 1.7600 -29 258 -2.9813 0.4225 1.7600 -29 259 -2.9030 0.4411 1.7600 -29 260 -2.8267 0.4569 1.7600 -29 261 -2.7551 0.4683 1.7600 -29 262 -2.6810 0.4726 1.7600 -29 263 -2.6045 0.4753 1.7600 -29 264 -2.5308 0.4740 1.7600 -29 265 -2.4599 0.4750 1.7600 -29 266 -2.3869 0.4710 1.7600 -29 267 -2.3048 0.4636 1.7600 -29 268 -2.2195 0.4557 1.7600 -29 269 -2.1351 0.4472 1.7600 -29 270 -2.0570 0.4427 1.7600 -29 271 -1.9805 0.4460 1.7600 -29 272 -1.9102 0.4507 1.7600 -29 273 -1.8441 0.4569 1.7600 -29 274 -1.7794 0.4623 1.7600 -29 275 -1.7134 0.4684 1.7600 -29 276 -1.6468 0.4776 1.7600 -29 277 -1.5798 0.4914 1.7600 -29 278 -1.5186 0.5000 1.7600 -29 279 -1.4479 0.4946 1.7600 -29 280 -1.3760 0.4819 1.7600 -29 281 -1.3085 0.4696 1.7600 -29 282 -1.2411 0.4649 1.7600 -29 283 -1.1706 0.4650 1.7600 -29 284 -1.0932 0.4624 1.7600 -29 285 -1.0134 0.4504 1.7600 -29 286 -0.9312 0.4303 1.7600 -29 287 -0.8534 0.4024 1.7600 -29 288 -0.7828 0.3813 1.7600 -29 289 -0.7178 0.3660 1.7600 -29 290 -0.6537 0.3513 1.7600 -29 291 -0.5850 0.3409 1.7600 -29 292 -0.5121 0.3352 1.7600 -29 293 -0.4348 0.3350 1.7600 -29 294 -0.3555 0.3359 1.7600 -29 295 -0.2816 0.3389 1.7600 -29 296 -0.2110 0.3366 1.7600 -29 297 -0.1370 0.3260 1.7600 -29 298 -0.0662 0.3132 1.7600 -29 299 0.0021 0.3056 1.7600 -29 300 0.0771 0.3030 1.7600 -29 301 0.1577 0.3013 1.7600 -29 302 0.2437 0.2945 1.7600 -29 303 0.3289 0.2818 1.7600 -29 304 0.4098 0.2679 1.7600 -29 305 0.4859 0.2622 1.7600 -29 306 0.5632 0.2653 1.7600 -29 307 0.6362 0.2756 1.7600 -29 308 0.7080 0.2862 1.7600 -29 309 0.7809 0.2962 1.7600 -29 310 0.8573 0.3099 1.7600 -29 311 0.9335 0.3210 1.7600 -29 312 1.0118 0.3347 1.7600 -29 313 1.0871 0.3458 1.7600 -29 314 1.1628 0.3535 1.7600 -29 315 1.2395 0.3561 1.7600 -29 316 1.3141 0.3637 1.7600 -29 317 1.3835 0.3746 1.7600 -29 318 1.4550 0.3882 1.7600 -29 319 1.5316 0.3913 1.7600 -29 320 1.6065 0.3797 1.7600 -29 321 1.6771 0.3612 1.7600 -29 322 1.7492 0.3496 1.7600 -29 323 1.8253 0.3519 1.7600 -29 324 1.9041 0.3585 1.7600 -29 325 1.9756 0.3633 1.7600 -29 326 2.0395 0.3775 1.7600 -29 327 2.1037 0.3890 1.7600 -29 328 2.1826 0.4033 1.7600 -29 329 2.2767 0.4191 1.7600 -29 330 2.3593 0.4286 1.7600 -29 331 2.4263 0.4259 1.7600 -29 332 2.4882 0.4131 1.7600 -29 333 2.5485 0.3987 1.7600 -29 334 2.6137 0.3858 1.7600 -29 335 2.6820 0.3728 1.7600 -29 336 2.7537 0.3560 1.7600 -29 337 2.8314 0.3384 1.7600 -29 338 2.9102 0.3182 1.7600 -29 339 2.9851 0.2998 1.7600 -29 340 3.0605 0.2908 1.7600 -29 341 3.1354 0.2907 1.7600 -29 342 3.2054 0.2970 1.7600 -29 343 3.2754 0.3064 1.7600 -29 344 3.3464 0.3137 1.7600 -29 345 3.4225 0.3216 1.7600 -29 346 3.5027 0.3301 1.7600 -29 347 3.5798 0.3455 1.7600 -29 348 3.6583 0.3572 1.7600 -29 349 3.7370 0.3571 1.7600 -29 350 3.8099 0.3499 1.7600 -29 351 3.8753 0.3417 1.7600 -29 352 3.9355 0.3332 1.7600 -29 353 3.9983 0.3223 1.7600 -29 354 4.0650 0.3076 1.7600 -29 355 4.1384 0.2870 1.7600 -29 356 4.2085 0.2625 1.7600 -29 357 4.2841 0.2412 1.7600 -29 358 4.3528 0.2263 1.7600 -29 359 4.4221 0.2212 1.7600 -29 360 4.4939 0.2223 1.7600 -29 361 4.5673 0.2263 1.7600 -29 362 4.6359 0.2284 1.7600 -29 363 4.7101 0.2269 1.7600 -29 364 4.7930 0.2266 1.7600 -29 365 4.8773 0.2285 1.7600 -29 366 4.9495 0.2272 1.7600 -29 367 5.0167 0.2182 1.7600 -29 368 5.0781 0.2097 1.7600 -29 369 5.1336 0.1999 1.7600 -29 370 5.1896 0.1879 1.7600 -29 371 5.2475 0.1735 1.7600 -29 372 5.3110 0.1571 1.7600 -29 373 5.3804 0.1394 1.7600 -29 374 5.4495 0.1207 1.7600 -29 375 5.5173 0.1002 1.7600 -29 376 5.5885 0.0877 1.7600 -29 377 5.6526 0.0840 1.7600 -29 378 5.7086 0.0826 1.7600 -29 379 5.7606 0.0829 1.7600 -29 380 5.8119 0.0869 1.7600 -29 381 5.8681 0.0962 1.7600 -29 382 5.9364 0.1099 1.7600 -30 191 -7.7941 1.3868 1.7600 -30 192 -7.7134 1.3675 1.7600 -30 193 -7.6366 1.3426 1.7600 -30 194 -7.5609 1.3135 1.7600 -30 195 -7.4880 1.2926 1.7600 -30 196 -7.4137 1.2808 1.7600 -30 197 -7.3340 1.2748 1.7600 -30 198 -7.2453 1.2671 1.7600 -30 199 -7.1530 1.2569 1.7600 -30 200 -7.0590 1.2475 1.7600 -30 201 -6.9724 1.2418 1.7600 -30 202 -6.8923 1.2411 1.7600 -30 203 -6.8135 1.2340 1.7600 -30 204 -6.7363 1.2176 1.7600 -30 205 -6.6556 1.1964 1.7600 -30 206 -6.5706 1.1760 1.7600 -30 207 -6.4822 1.1555 1.7600 -30 208 -6.3955 1.1338 1.7600 -30 209 -6.3117 1.1128 1.7600 -30 210 -6.2355 1.0879 1.7600 -30 211 -6.1645 1.0760 1.7600 -30 212 -6.0945 1.0690 1.7600 -30 213 -6.0208 1.0689 1.7600 -30 214 -5.9409 1.0681 1.7600 -30 215 -5.8567 1.0664 1.7600 -30 216 -5.7734 1.0661 1.7600 -30 217 -5.6927 1.0690 1.7600 -30 218 -5.6216 1.0767 1.7600 -30 219 -5.5561 1.0748 1.7600 -30 220 -5.4883 1.0594 1.7600 -30 221 -5.4213 1.0441 1.7600 -30 222 -5.3538 1.0298 1.7600 -30 223 -5.2867 1.0188 1.7600 -30 224 -5.2228 1.0087 1.7600 -30 225 -5.1616 0.9964 1.7600 -30 226 -5.1038 0.9835 1.7600 -30 227 -5.0482 0.9729 1.7600 -30 228 -4.9917 0.9658 1.7600 -30 229 -4.9283 0.9620 1.7600 -30 230 -4.8675 0.9623 1.7600 -30 231 -4.8034 0.9621 1.7600 -30 232 -4.7422 0.9632 1.7600 -30 233 -4.6781 0.9655 1.7600 -30 234 -4.6155 0.9644 1.7600 -30 235 -4.5525 0.9589 1.7600 -30 236 -4.4853 0.9526 1.7600 -30 237 -4.4170 0.9405 1.7600 -30 238 -4.3492 0.9219 1.7600 -30 239 -4.2814 0.9002 1.7600 -30 240 -4.2187 0.8772 1.7600 -30 241 -4.1571 0.8566 1.7600 -30 242 -4.0965 0.8369 1.7600 -30 243 -4.0374 0.8151 1.7600 -30 244 -3.9775 0.7980 1.7600 -30 245 -3.9206 0.7870 1.7600 -30 246 -3.8627 0.7843 1.7600 -30 247 -3.8095 0.7837 1.7600 -30 248 -3.7502 0.7875 1.7600 -30 249 -3.6916 0.7904 1.7600 -30 250 -3.6247 0.7964 1.7600 -30 251 -3.5541 0.8006 1.7600 -30 252 -3.4888 0.7985 1.7600 -30 253 -3.4279 0.7937 1.7600 -30 254 -3.3680 0.7869 1.7600 -30 255 -3.3061 0.7850 1.7600 -30 256 -3.2504 0.7874 1.7600 -30 257 -3.1894 0.7905 1.7600 -30 258 -3.1258 0.7925 1.7600 -30 259 -3.0591 0.7946 1.7600 -30 260 -2.9843 0.7958 1.7600 -30 261 -2.9140 0.7971 1.7600 -30 262 -2.8476 0.8026 1.7600 -30 263 -2.7841 0.8094 1.7600 -30 264 -2.7203 0.8183 1.7600 -30 265 -2.6559 0.8268 1.7600 -30 266 -2.5951 0.8388 1.7600 -30 267 -2.5278 0.8514 1.7600 -30 268 -2.4556 0.8640 1.7600 -30 269 -2.3763 0.8758 1.7600 -30 270 -2.2955 0.8867 1.7600 -30 271 -2.2180 0.8933 1.7600 -30 272 -2.1479 0.8922 1.7600 -30 273 -2.0795 0.8864 1.7600 -30 274 -2.0124 0.8795 1.7600 -30 275 -1.9485 0.8718 1.7600 -30 276 -1.8802 0.8628 1.7600 -30 277 -1.8063 0.8495 1.7600 -30 278 -1.7318 0.8347 1.7600 -30 279 -1.6559 0.8271 1.7600 -30 280 -1.5819 0.8236 1.7600 -30 281 -1.5118 0.8219 1.7600 -30 282 -1.4452 0.8214 1.7600 -30 283 -1.3774 0.8188 1.7600 -30 284 -1.3065 0.8109 1.7600 -30 285 -1.2252 0.8043 1.7600 -30 286 -1.1399 0.8039 1.7600 -30 287 -1.0567 0.8082 1.7600 -30 288 -0.9727 0.8073 1.7600 -30 289 -0.8820 0.7963 1.7600 -30 290 -0.7989 0.7841 1.7600 -30 291 -0.7095 0.7702 1.7600 -30 292 -0.6240 0.7532 1.7600 -30 293 -0.5353 0.7333 1.7600 -30 294 -0.4510 0.7105 1.7600 -30 295 -0.3796 0.6966 1.7600 -30 296 -0.3079 0.6949 1.7600 -30 297 -0.2391 0.7069 1.7600 -30 298 -0.1711 0.7199 1.7600 -30 299 -0.1022 0.7330 1.7600 -30 300 -0.0309 0.7462 1.7600 -30 301 0.0401 0.7594 1.7600 -30 302 0.1092 0.7741 1.7600 -30 303 0.1724 0.7922 1.7600 -30 304 0.2337 0.8104 1.7600 -30 305 0.3060 0.8209 1.7600 -30 306 0.3884 0.8181 1.7600 -30 307 0.4625 0.8123 1.7600 -30 308 0.5264 0.8040 1.7600 -30 309 0.5875 0.7932 1.7600 -30 310 0.6496 0.7791 1.7600 -30 311 0.7127 0.7642 1.7600 -30 312 0.7803 0.7424 1.7600 -30 313 0.8500 0.7247 1.7600 -30 314 0.9232 0.7194 1.7600 -30 315 0.9989 0.7268 1.7600 -30 316 1.0730 0.7378 1.7600 -30 317 1.1423 0.7461 1.7600 -30 318 1.2141 0.7542 1.7600 -30 319 1.2846 0.7652 1.7600 -30 320 1.3537 0.7769 1.7600 -30 321 1.4193 0.7832 1.7600 -30 322 1.4840 0.7874 1.7600 -30 323 1.5451 0.7805 1.7600 -30 324 1.6056 0.7757 1.7600 -30 325 1.6677 0.7709 1.7600 -30 326 1.7393 0.7625 1.7600 -30 327 1.8143 0.7457 1.7600 -30 328 1.8915 0.7291 1.7600 -30 329 1.9671 0.7169 1.7600 -30 330 2.0405 0.7093 1.7600 -30 331 2.1137 0.7107 1.7600 -30 332 2.1876 0.7157 1.7600 -30 333 2.2588 0.7247 1.7600 -30 334 2.3261 0.7356 1.7600 -30 335 2.3938 0.7442 1.7600 -30 336 2.4654 0.7485 1.7600 -30 337 2.5378 0.7498 1.7600 -30 338 2.6065 0.7467 1.7600 -30 339 2.6735 0.7397 1.7600 -30 340 2.7382 0.7348 1.7600 -30 341 2.7999 0.7293 1.7600 -30 342 2.8575 0.7221 1.7600 -30 343 2.9186 0.7113 1.7600 -30 344 2.9808 0.7000 1.7600 -30 345 3.0432 0.6841 1.7600 -30 346 3.1098 0.6699 1.7600 -30 347 3.1777 0.6613 1.7600 -30 348 3.2450 0.6652 1.7600 -30 349 3.3086 0.6711 1.7600 -30 350 3.3728 0.6777 1.7600 -30 351 3.4382 0.6840 1.7600 -30 352 3.5063 0.6868 1.7600 -30 353 3.5725 0.6963 1.7600 -30 354 3.6377 0.7052 1.7600 -30 355 3.7062 0.7120 1.7600 -30 356 3.7753 0.7093 1.7600 -30 357 3.8485 0.7017 1.7600 -30 358 3.9149 0.6944 1.7600 -30 359 3.9785 0.6859 1.7600 -30 360 4.0468 0.6762 1.7600 -30 361 4.1198 0.6630 1.7600 -30 362 4.1983 0.6460 1.7600 -30 363 4.2711 0.6313 1.7600 -30 364 4.3442 0.6232 1.7600 -30 365 4.4147 0.6226 1.7600 -30 366 4.4804 0.6286 1.7600 -30 367 4.5425 0.6355 1.7600 -30 368 4.6040 0.6439 1.7600 -30 369 4.6691 0.6532 1.7600 -30 370 4.7352 0.6683 1.7600 -30 371 4.7960 0.6828 1.7600 -30 372 4.8573 0.6916 1.7600 -30 373 4.9193 0.6924 1.7600 -30 374 4.9810 0.6886 1.7600 -30 375 5.0363 0.6815 1.7600 -30 376 5.0904 0.6742 1.7600 -30 377 5.1481 0.6668 1.7600 -30 378 5.2180 0.6558 1.7600 -30 379 5.2887 0.6457 1.7600 -30 380 5.3522 0.6361 1.7600 -30 381 5.4140 0.6312 1.7600 -30 382 5.4761 0.6292 1.7600 -30 383 5.5347 0.6311 1.7600 -30 384 5.5892 0.6340 1.7600 -30 385 5.6470 0.6368 1.7600 -30 386 5.7116 0.6382 1.7600 -30 387 5.7823 0.6427 1.7600 -30 388 5.8486 0.6494 1.7600 -30 389 5.9137 0.6514 1.7600 -31 180 -7.8339 2.3074 1.7600 -31 181 -7.7753 2.3013 1.7600 -31 182 -7.7222 2.2960 1.7600 -31 183 -7.6633 2.2936 1.7600 -31 184 -7.6004 2.2956 1.7600 -31 185 -7.5341 2.2996 1.7600 -31 186 -7.4642 2.3038 1.7600 -31 187 -7.3918 2.3076 1.7600 -31 188 -7.3170 2.3116 1.7600 -31 189 -7.2421 2.3176 1.7600 -31 190 -7.1686 2.3279 1.7600 -31 191 -7.1032 2.3422 1.7600 -31 192 -7.0490 2.3522 1.7600 -31 193 -6.9985 2.3552 1.7600 -31 194 -6.9482 2.3532 1.7600 -31 195 -6.8973 2.3465 1.7600 -31 196 -6.8436 2.3368 1.7600 -31 197 -6.7872 2.3234 1.7600 -31 198 -6.7283 2.3051 1.7600 -31 199 -6.6680 2.2837 1.7600 -31 200 -6.6083 2.2601 1.7600 -31 201 -6.5520 2.2391 1.7600 -31 202 -6.5016 2.2198 1.7600 -31 203 -6.4467 2.2036 1.7600 -31 204 -6.3885 2.1948 1.7600 -31 205 -6.3258 2.1860 1.7600 -31 206 -6.2600 2.1763 1.7600 -31 207 -6.1947 2.1703 1.7600 -31 208 -6.1246 2.1596 1.7600 -31 209 -6.0517 2.1510 1.7600 -31 210 -5.9768 2.1462 1.7600 -31 211 -5.9061 2.1452 1.7600 -31 212 -5.8476 2.1434 1.7600 -31 213 -5.7955 2.1330 1.7600 -31 214 -5.7412 2.1123 1.7600 -31 215 -5.6877 2.0883 1.7600 -31 216 -5.6373 2.0619 1.7600 -31 217 -5.5865 2.0355 1.7600 -31 218 -5.5335 2.0069 1.7600 -31 219 -5.4776 1.9785 1.7600 -31 220 -5.4207 1.9444 1.7600 -31 221 -5.3706 1.9138 1.7600 -31 222 -5.3267 1.8847 1.7600 -31 223 -5.2791 1.8577 1.7600 -31 224 -5.2240 1.8363 1.7600 -31 225 -5.1639 1.8154 1.7600 -31 226 -5.1063 1.7988 1.7600 -31 227 -5.0493 1.7845 1.7600 -31 228 -4.9941 1.7721 1.7600 -31 229 -4.9363 1.7601 1.7600 -31 230 -4.8794 1.7498 1.7600 -31 231 -4.8221 1.7436 1.7600 -31 232 -4.7632 1.7430 1.7600 -31 233 -4.7085 1.7438 1.7600 -31 234 -4.6573 1.7382 1.7600 -31 235 -4.6070 1.7295 1.7600 -31 236 -4.5565 1.7188 1.7600 -31 237 -4.5042 1.7041 1.7600 -31 238 -4.4550 1.6869 1.7600 -31 239 -4.4051 1.6680 1.7600 -31 240 -4.3507 1.6485 1.7600 -31 241 -4.2992 1.6259 1.7600 -31 242 -4.2446 1.6049 1.7600 -31 243 -4.1936 1.5828 1.7600 -31 244 -4.1393 1.5615 1.7600 -31 245 -4.0790 1.5467 1.7600 -31 246 -4.0171 1.5379 1.7600 -31 247 -3.9548 1.5317 1.7600 -31 248 -3.8897 1.5350 1.7600 -31 249 -3.8262 1.5371 1.7600 -31 250 -3.7574 1.5452 1.7600 -31 251 -3.6900 1.5539 1.7600 -31 252 -3.6183 1.5689 1.7600 -31 253 -3.5479 1.5815 1.7600 -31 254 -3.4835 1.5893 1.7600 -31 255 -3.4216 1.5902 1.7600 -31 256 -3.3582 1.5863 1.7600 -31 257 -3.2944 1.5823 1.7600 -31 258 -3.2291 1.5760 1.7600 -31 259 -3.1637 1.5686 1.7600 -31 260 -3.1024 1.5595 1.7600 -31 261 -3.0373 1.5472 1.7600 -31 262 -2.9721 1.5335 1.7600 -31 263 -2.9038 1.5178 1.7600 -31 264 -2.8350 1.5057 1.7600 -31 265 -2.7672 1.4992 1.7600 -31 266 -2.7010 1.4997 1.7600 -31 267 -2.6332 1.4991 1.7600 -31 268 -2.5678 1.5030 1.7600 -31 269 -2.5030 1.5091 1.7600 -31 270 -2.4393 1.5176 1.7600 -31 271 -2.3703 1.5349 1.7600 -31 272 -2.2982 1.5541 1.7600 -31 273 -2.2286 1.5702 1.7600 -31 274 -2.1577 1.5780 1.7600 -31 275 -2.0890 1.5825 1.7600 -31 276 -2.0212 1.5815 1.7600 -31 277 -1.9561 1.5789 1.7600 -31 278 -1.8943 1.5745 1.7600 -31 279 -1.8343 1.5659 1.7600 -31 280 -1.7730 1.5530 1.7600 -31 281 -1.7056 1.5406 1.7600 -31 282 -1.6353 1.5276 1.7600 -31 283 -1.5697 1.5148 1.7600 -31 284 -1.5059 1.5085 1.7600 -31 285 -1.4427 1.5087 1.7600 -31 286 -1.3795 1.5115 1.7600 -31 287 -1.3151 1.5154 1.7600 -31 288 -1.2492 1.5236 1.7600 -31 289 -1.1815 1.5367 1.7600 -31 290 -1.1127 1.5557 1.7600 -31 291 -1.0411 1.5804 1.7600 -31 292 -0.9729 1.5964 1.7600 -31 293 -0.9086 1.6033 1.7600 -31 294 -0.8467 1.6035 1.7600 -31 295 -0.7847 1.5979 1.7600 -31 296 -0.7203 1.5874 1.7600 -31 297 -0.6549 1.5741 1.7600 -31 298 -0.5910 1.5556 1.7600 -31 299 -0.5239 1.5349 1.7600 -31 300 -0.4540 1.5113 1.7600 -31 301 -0.3850 1.4906 1.7600 -31 302 -0.3213 1.4780 1.7600 -31 303 -0.2597 1.4715 1.7600 -31 304 -0.1964 1.4709 1.7600 -31 305 -0.1324 1.4732 1.7600 -31 306 -0.0650 1.4773 1.7600 -31 307 0.0027 1.4819 1.7600 -31 308 0.0723 1.4920 1.7600 -31 309 0.1426 1.5030 1.7600 -31 310 0.2153 1.5185 1.7600 -31 311 0.2854 1.5426 1.7600 -31 312 0.3551 1.5590 1.7600 -31 313 0.4219 1.5666 1.7600 -31 314 0.4851 1.5686 1.7600 -31 315 0.5484 1.5635 1.7600 -31 316 0.6127 1.5562 1.7600 -31 317 0.6745 1.5476 1.7600 -31 318 0.7387 1.5336 1.7600 -31 319 0.8041 1.5176 1.7600 -31 320 0.8726 1.4958 1.7600 -31 321 0.9465 1.4765 1.7600 -31 322 1.0163 1.4618 1.7600 -31 323 1.0816 1.4525 1.7600 -31 324 1.1430 1.4490 1.7600 -31 325 1.2074 1.4506 1.7600 -31 326 1.2735 1.4521 1.7600 -31 327 1.3376 1.4577 1.7600 -31 328 1.4028 1.4690 1.7600 -31 329 1.4662 1.4829 1.7600 -31 330 1.5339 1.5032 1.7600 -31 331 1.5964 1.5283 1.7600 -31 332 1.6606 1.5471 1.7600 -31 333 1.7209 1.5636 1.7600 -31 334 1.7778 1.5746 1.7600 -31 335 1.8380 1.5827 1.7600 -31 336 1.8980 1.5897 1.7600 -31 337 1.9594 1.5921 1.7600 -31 338 2.0219 1.5918 1.7600 -31 339 2.0833 1.5801 1.7600 -31 340 2.1496 1.5663 1.7600 -31 341 2.2176 1.5527 1.7600 -31 342 2.2837 1.5393 1.7600 -31 343 2.3506 1.5232 1.7600 -31 344 2.4168 1.5074 1.7600 -31 345 2.4828 1.4987 1.7600 -31 346 2.5505 1.4948 1.7600 -31 347 2.6172 1.4939 1.7600 -31 348 2.6838 1.4996 1.7600 -31 349 2.7496 1.5108 1.7600 -31 350 2.8159 1.5337 1.7600 -31 351 2.8771 1.5642 1.7600 -31 352 2.9342 1.5913 1.7600 -31 353 2.9895 1.6000 1.7600 -31 354 3.0471 1.5949 1.7600 -31 355 3.1053 1.5812 1.7600 -31 356 3.1649 1.5581 1.7600 -31 357 3.2207 1.5341 1.7600 -31 358 3.2723 1.5053 1.7600 -31 359 3.3246 1.4737 1.7600 -31 360 3.3808 1.4427 1.7600 -31 361 3.4423 1.4131 1.7600 -31 362 3.5046 1.3923 1.7600 -31 363 3.5664 1.3806 1.7600 -31 364 3.6316 1.3772 1.7600 -31 365 3.6974 1.3758 1.7600 -31 366 3.7651 1.3769 1.7600 -31 367 3.8342 1.3786 1.7600 -31 368 3.9060 1.3803 1.7600 -31 369 3.9783 1.3857 1.7600 -31 370 4.0573 1.3943 1.7600 -31 371 4.1469 1.4005 1.7600 -31 372 4.2341 1.4039 1.7600 -31 373 4.3186 1.4018 1.7600 -31 374 4.3990 1.3965 1.7600 -31 375 4.4751 1.3888 1.7600 -31 376 4.5503 1.3796 1.7600 -31 377 4.6262 1.3677 1.7600 -31 378 4.7032 1.3537 1.7600 -31 379 4.7844 1.3409 1.7600 -31 380 4.8744 1.3287 1.7600 -31 381 4.9752 1.3174 1.7600 -31 382 5.0733 1.3122 1.7600 -31 383 5.1694 1.3136 1.7600 -31 384 5.2608 1.3166 1.7600 -31 385 5.3495 1.3236 1.7600 -31 386 5.4345 1.3363 1.7600 -31 387 5.5245 1.3538 1.7600 -31 388 5.6282 1.3739 1.7600 -31 389 5.7335 1.3910 1.7600 -31 390 5.8367 1.3995 1.7600 -31 391 5.9318 1.3999 1.7600 -32 192 -7.7687 1.9125 1.7600 -32 193 -7.7103 1.8771 1.7600 -32 194 -7.6525 1.8441 1.7600 -32 195 -7.5942 1.8186 1.7600 -32 196 -7.5356 1.8012 1.7600 -32 197 -7.4752 1.7902 1.7600 -32 198 -7.4093 1.7838 1.7600 -32 199 -7.3367 1.7804 1.7600 -32 200 -7.2600 1.7811 1.7600 -32 201 -7.1838 1.7868 1.7600 -32 202 -7.1103 1.7977 1.7600 -32 203 -7.0426 1.8138 1.7600 -32 204 -6.9760 1.8279 1.7600 -32 205 -6.9085 1.8352 1.7600 -32 206 -6.8409 1.8328 1.7600 -32 207 -6.7720 1.8217 1.7600 -32 208 -6.7018 1.8065 1.7600 -32 209 -6.6299 1.7885 1.7600 -32 210 -6.5586 1.7687 1.7600 -32 211 -6.4846 1.7482 1.7600 -32 212 -6.4104 1.7255 1.7600 -32 213 -6.3429 1.7037 1.7600 -32 214 -6.2781 1.6856 1.7600 -32 215 -6.2174 1.6739 1.7600 -32 216 -6.1539 1.6698 1.7600 -32 217 -6.0903 1.6664 1.7600 -32 218 -6.0284 1.6624 1.7600 -32 219 -5.9619 1.6615 1.7600 -32 220 -5.8974 1.6585 1.7600 -32 221 -5.8321 1.6595 1.7600 -32 222 -5.7753 1.6707 1.7600 -32 223 -5.7110 1.6770 1.7600 -32 224 -5.6542 1.6745 1.7600 -32 225 -5.5945 1.6631 1.7600 -32 226 -5.5291 1.6460 1.7600 -32 227 -5.4674 1.6248 1.7600 -32 228 -5.4075 1.6007 1.7600 -32 229 -5.3479 1.5739 1.7600 -32 230 -5.2901 1.5415 1.7600 -32 231 -5.2377 1.5094 1.7600 -32 232 -5.1895 1.4806 1.7600 -32 233 -5.1463 1.4537 1.7600 -32 234 -5.1023 1.4339 1.7600 -32 235 -5.0528 1.4167 1.7600 -32 236 -4.9988 1.3989 1.7600 -32 237 -4.9406 1.3863 1.7600 -32 238 -4.8874 1.3749 1.7600 -32 239 -4.8351 1.3670 1.7600 -32 240 -4.7841 1.3627 1.7600 -32 241 -4.7280 1.3603 1.7600 -32 242 -4.6734 1.3590 1.7600 -32 243 -4.6193 1.3563 1.7600 -32 244 -4.5676 1.3515 1.7600 -32 245 -4.5206 1.3411 1.7600 -32 246 -4.4801 1.3236 1.7600 -32 247 -4.4382 1.3038 1.7600 -32 248 -4.3927 1.2823 1.7600 -32 249 -4.3440 1.2595 1.7600 -32 250 -4.2908 1.2327 1.7600 -32 251 -4.2387 1.2095 1.7600 -32 252 -4.1839 1.1846 1.7600 -32 253 -4.1270 1.1626 1.7600 -32 254 -4.0678 1.1464 1.7600 -32 255 -4.0066 1.1361 1.7600 -32 256 -3.9377 1.1307 1.7600 -32 257 -3.8678 1.1268 1.7600 -32 258 -3.7984 1.1250 1.7600 -32 259 -3.7286 1.1211 1.7600 -32 260 -3.6570 1.1206 1.7600 -32 261 -3.5882 1.1210 1.7600 -32 262 -3.5166 1.1284 1.7600 -32 263 -3.4408 1.1378 1.7600 -32 264 -3.3632 1.1455 1.7600 -32 265 -3.2907 1.1438 1.7600 -32 266 -3.2200 1.1338 1.7600 -32 267 -3.1498 1.1204 1.7600 -32 268 -3.0848 1.1037 1.7600 -32 269 -3.0181 1.0869 1.7600 -32 270 -2.9477 1.0688 1.7600 -32 271 -2.8769 1.0511 1.7600 -32 272 -2.8119 1.0356 1.7600 -32 273 -2.7475 1.0264 1.7600 -32 274 -2.6849 1.0247 1.7600 -32 275 -2.6206 1.0294 1.7600 -32 276 -2.5576 1.0390 1.7600 -32 277 -2.4922 1.0526 1.7600 -32 278 -2.4260 1.0670 1.7600 -32 279 -2.3539 1.0864 1.7600 -32 280 -2.2793 1.1092 1.7600 -32 281 -2.2026 1.1343 1.7600 -32 282 -2.1304 1.1561 1.7600 -32 283 -2.0609 1.1658 1.7600 -32 284 -1.9949 1.1617 1.7600 -32 285 -1.9295 1.1511 1.7600 -32 286 -1.8655 1.1405 1.7600 -32 287 -1.8027 1.1312 1.7600 -32 288 -1.7373 1.1215 1.7600 -32 289 -1.6654 1.1105 1.7600 -32 290 -1.5883 1.1002 1.7600 -32 291 -1.5107 1.0946 1.7600 -32 292 -1.4413 1.0940 1.7600 -32 293 -1.3736 1.1040 1.7600 -32 294 -1.3063 1.1172 1.7600 -32 295 -1.2370 1.1320 1.7600 -32 296 -1.1677 1.1464 1.7600 -32 297 -1.1002 1.1610 1.7600 -32 298 -1.0302 1.1779 1.7600 -32 299 -0.9582 1.1993 1.7600 -32 300 -0.8852 1.2243 1.7600 -32 301 -0.8193 1.2429 1.7600 -32 302 -0.7565 1.2506 1.7600 -32 303 -0.6921 1.2482 1.7600 -32 304 -0.6242 1.2403 1.7600 -32 305 -0.5562 1.2309 1.7600 -32 306 -0.4883 1.2186 1.7600 -32 307 -0.4179 1.2036 1.7600 -32 308 -0.3464 1.1855 1.7600 -32 309 -0.2772 1.1648 1.7600 -32 310 -0.2143 1.1453 1.7600 -32 311 -0.1526 1.1351 1.7600 -32 312 -0.0943 1.1351 1.7600 -32 313 -0.0326 1.1421 1.7600 -32 314 0.0324 1.1537 1.7600 -32 315 0.0980 1.1648 1.7600 -32 316 0.1697 1.1806 1.7600 -32 317 0.2412 1.1956 1.7600 -32 318 0.3103 1.2144 1.7600 -32 319 0.3787 1.2393 1.7600 -32 320 0.4488 1.2611 1.7600 -32 321 0.5164 1.2722 1.7600 -32 322 0.5825 1.2746 1.7600 -32 323 0.6524 1.2697 1.7600 -32 324 0.7227 1.2639 1.7600 -32 325 0.7916 1.2538 1.7600 -32 326 0.8632 1.2419 1.7600 -32 327 0.9333 1.2289 1.7600 -32 328 1.0048 1.2120 1.7600 -32 329 1.0748 1.1933 1.7600 -32 330 1.1458 1.1753 1.7600 -32 331 1.2128 1.1625 1.7600 -32 332 1.2828 1.1594 1.7600 -32 333 1.3501 1.1608 1.7600 -32 334 1.4187 1.1654 1.7600 -32 335 1.4865 1.1698 1.7600 -32 336 1.5554 1.1769 1.7600 -32 337 1.6251 1.1868 1.7600 -32 338 1.6939 1.2007 1.7600 -32 339 1.7662 1.2119 1.7600 -32 340 1.8279 1.2179 1.7600 -32 341 1.8878 1.2171 1.7600 -32 342 1.9532 1.2081 1.7600 -32 343 2.0179 1.1955 1.7600 -32 344 2.0809 1.1794 1.7600 -32 345 2.1462 1.1599 1.7600 -32 346 2.2089 1.1400 1.7600 -32 347 2.2700 1.1167 1.7600 -32 348 2.3358 1.0909 1.7600 -32 349 2.3961 1.0685 1.7600 -32 350 2.4518 1.0535 1.7600 -32 351 2.5078 1.0489 1.7600 -32 352 2.5694 1.0511 1.7600 -32 353 2.6307 1.0562 1.7600 -32 354 2.6949 1.0663 1.7600 -32 355 2.7579 1.0783 1.7600 -32 356 2.8219 1.0950 1.7600 -32 357 2.8877 1.1141 1.7600 -32 358 2.9623 1.1347 1.7600 -32 359 3.0285 1.1537 1.7600 -32 360 3.0924 1.1642 1.7600 -32 361 3.1595 1.1719 1.7600 -32 362 3.2259 1.1736 1.7600 -32 363 3.2909 1.1697 1.7600 -32 364 3.3543 1.1641 1.7600 -32 365 3.4168 1.1532 1.7600 -32 366 3.4780 1.1399 1.7600 -32 367 3.5436 1.1238 1.7600 -32 368 3.6137 1.1063 1.7600 -32 369 3.6763 1.0904 1.7600 -32 370 3.7338 1.0809 1.7600 -32 371 3.7921 1.0805 1.7600 -32 372 3.8579 1.0819 1.7600 -32 373 3.9234 1.0853 1.7600 -32 374 3.9850 1.0887 1.7600 -32 375 4.0411 1.0946 1.7600 -32 376 4.1017 1.1033 1.7600 -32 377 4.1742 1.1150 1.7600 -32 378 4.2543 1.1300 1.7600 -32 379 4.3243 1.1395 1.7600 -32 380 4.3891 1.1409 1.7600 -32 381 4.4534 1.1332 1.7600 -32 382 4.5192 1.1215 1.7600 -32 383 4.5822 1.1077 1.7600 -32 384 4.6417 1.0938 1.7600 -32 385 4.7012 1.0776 1.7600 -32 386 4.7661 1.0602 1.7600 -32 387 4.8409 1.0411 1.7600 -32 388 4.9217 1.0238 1.7600 -32 389 4.9904 1.0102 1.7600 -32 390 5.0609 1.0040 1.7600 -32 391 5.1321 1.0027 1.7600 -32 392 5.2021 1.0047 1.7600 -32 393 5.2688 1.0074 1.7600 -32 394 5.3336 1.0151 1.7600 -32 395 5.4043 1.0265 1.7600 -32 396 5.4857 1.0414 1.7600 -32 397 5.5766 1.0571 1.7600 -32 398 5.6592 1.0650 1.7600 -32 399 5.7326 1.0642 1.7600 -32 400 5.8049 1.0556 1.7600 -32 401 5.8754 1.0445 1.7600 -32 402 5.9423 1.0342 1.7600 -33 211 -7.7646 1.2420 1.7600 -33 212 -7.6855 1.2314 1.7600 -33 213 -7.5992 1.2211 1.7600 -33 214 -7.5110 1.2139 1.7600 -33 215 -7.4267 1.2057 1.7600 -33 216 -7.3461 1.1999 1.7600 -33 217 -7.2778 1.1867 1.7600 -33 218 -7.2152 1.1696 1.7600 -33 219 -7.1462 1.1524 1.7600 -33 220 -7.0649 1.1393 1.7600 -33 221 -6.9771 1.1263 1.7600 -33 222 -6.8868 1.1097 1.7600 -33 223 -6.8001 1.0958 1.7600 -33 224 -6.7203 1.0831 1.7600 -33 225 -6.6393 1.0719 1.7600 -33 226 -6.5624 1.0677 1.7600 -33 227 -6.4921 1.0702 1.7600 -33 228 -6.4132 1.0731 1.7600 -33 229 -6.3273 1.0745 1.7600 -33 230 -6.2392 1.0753 1.7600 -33 231 -6.1544 1.0751 1.7600 -33 232 -6.0699 1.0761 1.7600 -33 233 -5.9933 1.0780 1.7600 -33 234 -5.9212 1.0705 1.7600 -33 235 -5.8534 1.0630 1.7600 -33 236 -5.7865 1.0529 1.7600 -33 237 -5.7180 1.0455 1.7600 -33 238 -5.6495 1.0345 1.7600 -33 239 -5.5780 1.0213 1.7600 -33 240 -5.5073 1.0052 1.7600 -33 241 -5.4391 0.9869 1.7600 -33 242 -5.3755 0.9704 1.7600 -33 243 -5.3108 0.9584 1.7600 -33 244 -5.2485 0.9526 1.7600 -33 245 -5.1880 0.9502 1.7600 -33 246 -5.1274 0.9470 1.7600 -33 247 -5.0657 0.9475 1.7600 -33 248 -5.0009 0.9495 1.7600 -33 249 -4.9351 0.9531 1.7600 -33 250 -4.8705 0.9563 1.7600 -33 251 -4.8065 0.9621 1.7600 -33 252 -4.7478 0.9674 1.7600 -33 253 -4.6892 0.9693 1.7600 -33 254 -4.6357 0.9670 1.7600 -33 255 -4.5822 0.9629 1.7600 -33 256 -4.5309 0.9573 1.7600 -33 257 -4.4765 0.9504 1.7600 -33 258 -4.4227 0.9415 1.7600 -33 259 -4.3649 0.9289 1.7600 -33 260 -4.3089 0.9140 1.7600 -33 261 -4.2525 0.8967 1.7600 -33 262 -4.1998 0.8817 1.7600 -33 263 -4.1461 0.8722 1.7600 -33 264 -4.0924 0.8665 1.7600 -33 265 -4.0374 0.8678 1.7600 -33 266 -3.9843 0.8705 1.7600 -33 267 -3.9275 0.8729 1.7600 -33 268 -3.8687 0.8777 1.7600 -33 269 -3.8075 0.8805 1.7600 -33 270 -3.7420 0.8850 1.7600 -33 271 -3.6773 0.8921 1.7600 -33 272 -3.6105 0.8993 1.7600 -33 273 -3.5463 0.9004 1.7600 -33 274 -3.4842 0.8969 1.7600 -33 275 -3.4213 0.8923 1.7600 -33 276 -3.3630 0.8875 1.7600 -33 277 -3.3021 0.8826 1.7600 -33 278 -3.2411 0.8765 1.7600 -33 279 -3.1740 0.8669 1.7600 -33 280 -3.1057 0.8539 1.7600 -33 281 -3.0314 0.8397 1.7600 -33 282 -2.9650 0.8269 1.7600 -33 283 -2.8957 0.8159 1.7600 -33 284 -2.8259 0.8095 1.7600 -33 285 -2.7563 0.8096 1.7600 -33 286 -2.6886 0.8108 1.7600 -33 287 -2.6191 0.8114 1.7600 -33 288 -2.5487 0.8112 1.7600 -33 289 -2.4802 0.8157 1.7600 -33 290 -2.4081 0.8231 1.7600 -33 291 -2.3306 0.8301 1.7600 -33 292 -2.2587 0.8352 1.7600 -33 293 -2.1855 0.8363 1.7600 -33 294 -2.1164 0.8352 1.7600 -33 295 -2.0486 0.8324 1.7600 -33 296 -1.9825 0.8302 1.7600 -33 297 -1.9188 0.8280 1.7600 -33 298 -1.8509 0.8248 1.7600 -33 299 -1.7776 0.8205 1.7600 -33 300 -1.6985 0.8121 1.7600 -33 301 -1.6279 0.8059 1.7600 -33 302 -1.5570 0.8034 1.7600 -33 303 -1.4887 0.8050 1.7600 -33 304 -1.4221 0.8099 1.7600 -33 305 -1.3553 0.8170 1.7600 -33 306 -1.2890 0.8212 1.7600 -33 307 -1.2203 0.8291 1.7600 -33 308 -1.1489 0.8386 1.7600 -33 309 -1.0748 0.8492 1.7600 -33 310 -1.0031 0.8605 1.7600 -33 311 -0.9321 0.8699 1.7600 -33 312 -0.8631 0.8770 1.7600 -33 313 -0.7953 0.8818 1.7600 -33 314 -0.7305 0.8868 1.7600 -33 315 -0.6642 0.8910 1.7600 -33 316 -0.5965 0.8922 1.7600 -33 317 -0.5243 0.8922 1.7600 -33 318 -0.4509 0.8902 1.7600 -33 319 -0.3793 0.8852 1.7600 -33 320 -0.3131 0.8809 1.7600 -33 321 -0.2462 0.8791 1.7600 -33 322 -0.1828 0.8806 1.7600 -33 323 -0.1190 0.8840 1.7600 -33 324 -0.0518 0.8909 1.7600 -33 325 0.0209 0.8957 1.7600 -33 326 0.0970 0.9065 1.7600 -33 327 0.1711 0.9152 1.7600 -33 328 0.2438 0.9249 1.7600 -33 329 0.3118 0.9328 1.7600 -33 330 0.3792 0.9387 1.7600 -33 331 0.4480 0.9390 1.7600 -33 332 0.5165 0.9382 1.7600 -33 333 0.5846 0.9339 1.7600 -33 334 0.6536 0.9287 1.7600 -33 335 0.7271 0.9216 1.7600 -33 336 0.8012 0.9101 1.7600 -33 337 0.8731 0.8955 1.7600 -33 338 0.9449 0.8790 1.7600 -33 339 1.0139 0.8651 1.7600 -33 340 1.0832 0.8565 1.7600 -33 341 1.1548 0.8522 1.7600 -33 342 1.2220 0.8506 1.7600 -33 343 1.2952 0.8498 1.7600 -33 344 1.3638 0.8496 1.7600 -33 345 1.4371 0.8503 1.7600 -33 346 1.5121 0.8504 1.7600 -33 347 1.5847 0.8500 1.7600 -33 348 1.6549 0.8499 1.7600 -33 349 1.7216 0.8471 1.7600 -33 350 1.7869 0.8428 1.7600 -33 351 1.8510 0.8368 1.7600 -33 352 1.9142 0.8296 1.7600 -33 353 1.9772 0.8217 1.7600 -33 354 2.0430 0.8122 1.7600 -33 355 2.1069 0.7981 1.7600 -33 356 2.1763 0.7828 1.7600 -33 357 2.2439 0.7662 1.7600 -33 358 2.3090 0.7532 1.7600 -33 359 2.3732 0.7458 1.7600 -33 360 2.4395 0.7424 1.7600 -33 361 2.5049 0.7412 1.7600 -33 362 2.5714 0.7424 1.7600 -33 363 2.6386 0.7452 1.7600 -33 364 2.7054 0.7485 1.7600 -33 365 2.7758 0.7561 1.7600 -33 366 2.8455 0.7610 1.7600 -33 367 2.9149 0.7675 1.7600 -33 368 2.9834 0.7723 1.7600 -33 369 3.0487 0.7740 1.7600 -33 370 3.1128 0.7743 1.7600 -33 371 3.1735 0.7748 1.7600 -33 372 3.2336 0.7725 1.7600 -33 373 3.2956 0.7693 1.7600 -33 374 3.3626 0.7618 1.7600 -33 375 3.4317 0.7538 1.7600 -33 376 3.5076 0.7442 1.7600 -33 377 3.5791 0.7358 1.7600 -33 378 3.6505 0.7299 1.7600 -33 379 3.7201 0.7246 1.7600 -33 380 3.7859 0.7235 1.7600 -33 381 3.8503 0.7227 1.7600 -33 382 3.9133 0.7213 1.7600 -33 383 3.9806 0.7223 1.7600 -33 384 4.0495 0.7229 1.7600 -33 385 4.1210 0.7246 1.7600 -33 386 4.1989 0.7275 1.7600 -33 387 4.2753 0.7288 1.7600 -33 388 4.3450 0.7262 1.7600 -33 389 4.4140 0.7180 1.7600 -33 390 4.4774 0.7103 1.7600 -33 391 4.5388 0.7021 1.7600 -33 392 4.5972 0.6923 1.7600 -33 393 4.6603 0.6785 1.7600 -33 394 4.7277 0.6627 1.7600 -33 395 4.8034 0.6453 1.7600 -33 396 4.8765 0.6305 1.7600 -33 397 4.9472 0.6190 1.7600 -33 398 5.0205 0.6092 1.7600 -33 399 5.0890 0.6040 1.7600 -33 400 5.1526 0.5983 1.7600 -33 401 5.2205 0.5952 1.7600 -33 402 5.2872 0.5944 1.7600 -33 403 5.3592 0.5943 1.7600 -33 404 5.4390 0.5945 1.7600 -33 405 5.5234 0.5937 1.7600 -33 406 5.6048 0.5905 1.7600 -33 407 5.6830 0.5824 1.7600 -33 408 5.7540 0.5716 1.7600 -33 409 5.8216 0.5590 1.7600 -33 410 5.8857 0.5453 1.7600 -33 411 5.9464 0.5304 1.7600 -34 209 -7.7897 2.0318 1.7600 -34 210 -7.7118 2.0324 1.7600 -34 211 -7.6304 2.0372 1.7600 -34 212 -7.5540 2.0489 1.7600 -34 213 -7.4861 2.0615 1.7600 -34 214 -7.4242 2.0680 1.7600 -34 215 -7.3636 2.0665 1.7600 -34 216 -7.3016 2.0576 1.7600 -34 217 -7.2365 2.0455 1.7600 -34 218 -7.1652 2.0302 1.7600 -34 219 -7.0900 2.0104 1.7600 -34 220 -7.0145 1.9847 1.7600 -34 221 -6.9405 1.9567 1.7600 -34 222 -6.8720 1.9315 1.7600 -34 223 -6.8073 1.9091 1.7600 -34 224 -6.7417 1.9000 1.7600 -34 225 -6.6769 1.8980 1.7600 -34 226 -6.6091 1.8974 1.7600 -34 227 -6.5398 1.8988 1.7600 -34 228 -6.4653 1.8981 1.7600 -34 229 -6.3863 1.9007 1.7600 -34 230 -6.3100 1.9080 1.7600 -34 231 -6.2295 1.9227 1.7600 -34 232 -6.1552 1.9337 1.7600 -34 233 -6.0881 1.9372 1.7600 -34 234 -6.0282 1.9320 1.7600 -34 235 -5.9665 1.9215 1.7600 -34 236 -5.9056 1.9062 1.7600 -34 237 -5.8452 1.8863 1.7600 -34 238 -5.7811 1.8635 1.7600 -34 239 -5.7193 1.8350 1.7600 -34 240 -5.6598 1.8052 1.7600 -34 241 -5.6013 1.7787 1.7600 -34 242 -5.5495 1.7678 1.7600 -34 243 -5.4982 1.7635 1.7600 -34 244 -5.4438 1.7609 1.7600 -34 245 -5.3914 1.7604 1.7600 -34 246 -5.3398 1.7591 1.7600 -34 247 -5.2843 1.7604 1.7600 -34 248 -5.2258 1.7631 1.7600 -34 249 -5.1692 1.7741 1.7600 -34 250 -5.1146 1.7884 1.7600 -34 251 -5.0577 1.8053 1.7600 -34 252 -5.0061 1.8180 1.7600 -34 253 -4.9537 1.8227 1.7600 -34 254 -4.9032 1.8195 1.7600 -34 255 -4.8540 1.8108 1.7600 -34 256 -4.8092 1.7974 1.7600 -34 257 -4.7583 1.7805 1.7600 -34 258 -4.7084 1.7547 1.7600 -34 259 -4.6562 1.7224 1.7600 -34 260 -4.6048 1.6809 1.7600 -34 261 -4.5561 1.6374 1.7600 -34 262 -4.5111 1.6054 1.7600 -34 263 -4.4677 1.5826 1.7600 -34 264 -4.4196 1.5676 1.7600 -34 265 -4.3593 1.5592 1.7600 -34 266 -4.2973 1.5532 1.7600 -34 267 -4.2365 1.5431 1.7600 -34 268 -4.1750 1.5282 1.7600 -34 269 -4.1107 1.5156 1.7600 -34 270 -4.0436 1.5111 1.7600 -34 271 -3.9687 1.5144 1.7600 -34 272 -3.8917 1.5171 1.7600 -34 273 -3.8270 1.5136 1.7600 -34 274 -3.7607 1.5030 1.7600 -34 275 -3.6967 1.4941 1.7600 -34 276 -3.6411 1.4849 1.7600 -34 277 -3.5854 1.4715 1.7600 -34 278 -3.5280 1.4532 1.7600 -34 279 -3.4649 1.4279 1.7600 -34 280 -3.3970 1.3976 1.7600 -34 281 -3.3287 1.3717 1.7600 -34 282 -3.2619 1.3554 1.7600 -34 283 -3.1929 1.3508 1.7600 -34 284 -3.1233 1.3511 1.7600 -34 285 -3.0532 1.3579 1.7600 -34 286 -2.9865 1.3664 1.7600 -34 287 -2.9216 1.3767 1.7600 -34 288 -2.8545 1.3869 1.7600 -34 289 -2.7838 1.4006 1.7600 -34 290 -2.7101 1.4206 1.7600 -34 291 -2.6394 1.4386 1.7600 -34 292 -2.5678 1.4522 1.7600 -34 293 -2.4981 1.4522 1.7600 -34 294 -2.4338 1.4496 1.7600 -34 295 -2.3704 1.4400 1.7600 -34 296 -2.3068 1.4318 1.7600 -34 297 -2.2400 1.4169 1.7600 -34 298 -2.1708 1.4003 1.7600 -34 299 -2.0971 1.3815 1.7600 -34 300 -2.0211 1.3643 1.7600 -34 301 -1.9459 1.3592 1.7600 -34 302 -1.8695 1.3638 1.7600 -34 303 -1.7934 1.3735 1.7600 -34 304 -1.7250 1.3821 1.7600 -34 305 -1.6607 1.3896 1.7600 -34 306 -1.6008 1.4009 1.7600 -34 307 -1.5338 1.4146 1.7600 -34 308 -1.4630 1.4335 1.7600 -34 309 -1.3839 1.4461 1.7600 -34 310 -1.3108 1.4580 1.7600 -34 311 -1.2381 1.4611 1.7600 -34 312 -1.1661 1.4561 1.7600 -34 313 -1.0990 1.4487 1.7600 -34 314 -1.0293 1.4320 1.7600 -34 315 -0.9563 1.4147 1.7600 -34 316 -0.8793 1.3995 1.7600 -34 317 -0.8017 1.3772 1.7600 -34 318 -0.7227 1.3541 1.7600 -34 319 -0.6474 1.3393 1.7600 -34 320 -0.5751 1.3371 1.7600 -34 321 -0.4983 1.3463 1.7600 -34 322 -0.4236 1.3597 1.7600 -34 323 -0.3484 1.3743 1.7600 -34 324 -0.2760 1.3885 1.7600 -34 325 -0.2020 1.4041 1.7600 -34 326 -0.1286 1.4273 1.7600 -34 327 -0.0493 1.4542 1.7600 -34 328 0.0180 1.4724 1.7600 -34 329 0.0826 1.4871 1.7600 -34 330 0.1433 1.4923 1.7600 -34 331 0.2017 1.4898 1.7600 -34 332 0.2574 1.4882 1.7600 -34 333 0.3135 1.4829 1.7600 -34 334 0.3768 1.4760 1.7600 -34 335 0.4424 1.4643 1.7600 -34 336 0.5104 1.4489 1.7600 -34 337 0.5833 1.4233 1.7600 -34 338 0.6513 1.4025 1.7600 -34 339 0.7132 1.3934 1.7600 -34 340 0.7759 1.3979 1.7600 -34 341 0.8363 1.4083 1.7600 -34 342 0.8940 1.4177 1.7600 -34 343 0.9501 1.4287 1.7600 -34 344 1.0094 1.4397 1.7600 -34 345 1.0658 1.4544 1.7600 -34 346 1.1229 1.4685 1.7600 -34 347 1.1800 1.4846 1.7600 -34 348 1.2355 1.4971 1.7600 -34 349 1.2930 1.5010 1.7600 -34 350 1.3532 1.4961 1.7600 -34 351 1.4103 1.4887 1.7600 -34 352 1.4680 1.4767 1.7600 -34 353 1.5256 1.4616 1.7600 -34 354 1.5862 1.4432 1.7600 -34 355 1.6470 1.4203 1.7600 -34 356 1.7159 1.3929 1.7600 -34 357 1.7831 1.3631 1.7600 -34 358 1.8500 1.3429 1.7600 -34 359 1.9156 1.3332 1.7600 -34 360 1.9804 1.3328 1.7600 -34 361 2.0452 1.3365 1.7600 -34 362 2.1109 1.3411 1.7600 -34 363 2.1739 1.3448 1.7600 -34 364 2.2410 1.3485 1.7600 -34 365 2.3069 1.3581 1.7600 -34 366 2.3749 1.3732 1.7600 -34 367 2.4421 1.3896 1.7600 -34 368 2.5082 1.4034 1.7600 -34 369 2.5740 1.4074 1.7600 -34 370 2.6382 1.4017 1.7600 -34 371 2.7011 1.3907 1.7600 -34 372 2.7633 1.3783 1.7600 -34 373 2.8275 1.3603 1.7600 -34 374 2.8941 1.3374 1.7600 -34 375 2.9623 1.3099 1.7600 -34 376 3.0318 1.2830 1.7600 -34 377 3.1017 1.2636 1.7600 -34 378 3.1716 1.2533 1.7600 -34 379 3.2441 1.2540 1.7600 -34 380 3.3164 1.2550 1.7600 -34 381 3.3842 1.2604 1.7600 -34 382 3.4502 1.2664 1.7600 -34 383 3.5169 1.2787 1.7600 -34 384 3.5889 1.2958 1.7600 -34 385 3.6645 1.3154 1.7600 -34 386 3.7399 1.3339 1.7600 -34 387 3.8151 1.3485 1.7600 -34 388 3.8900 1.3600 1.7600 -34 389 3.9640 1.3691 1.7600 -34 390 4.0368 1.3758 1.7600 -34 391 4.1074 1.3801 1.7600 -34 392 4.1810 1.3836 1.7600 -34 393 4.2581 1.3820 1.7600 -34 394 4.3465 1.3821 1.7600 -34 395 4.4402 1.3837 1.7600 -34 396 4.5327 1.3937 1.7600 -34 397 4.6188 1.4150 1.7600 -34 398 4.7032 1.4396 1.7600 -34 399 4.7845 1.4656 1.7600 -34 400 4.8620 1.4918 1.7600 -34 401 4.9408 1.5248 1.7600 -34 402 5.0195 1.5602 1.7600 -34 403 5.1027 1.5945 1.7600 -34 404 5.1882 1.6233 1.7600 -34 405 5.2787 1.6404 1.7600 -34 406 5.3655 1.6461 1.7600 -34 407 5.4442 1.6462 1.7600 -34 408 5.5174 1.6443 1.7600 -34 409 5.5891 1.6362 1.7600 -34 410 5.6687 1.6268 1.7600 -34 411 5.7534 1.6123 1.7600 -34 412 5.8434 1.6012 1.7600 -34 413 5.9352 1.5993 1.7600 -35 203 -7.7520 0.9030 1.7600 -35 204 -7.6697 0.8590 1.7600 -35 205 -7.5990 0.8200 1.7600 -35 206 -7.5404 0.7957 1.7600 -35 207 -7.4854 0.7841 1.7600 -35 208 -7.4286 0.7780 1.7600 -35 209 -7.3651 0.7729 1.7600 -35 210 -7.2916 0.7691 1.7600 -35 211 -7.2084 0.7671 1.7600 -35 212 -7.1191 0.7699 1.7600 -35 213 -7.0279 0.7762 1.7600 -35 214 -6.9427 0.7825 1.7600 -35 215 -6.8689 0.7840 1.7600 -35 216 -6.8066 0.7749 1.7600 -35 217 -6.7477 0.7561 1.7600 -35 218 -6.6839 0.7327 1.7600 -35 219 -6.6122 0.7058 1.7600 -35 220 -6.5348 0.6750 1.7600 -35 221 -6.4538 0.6391 1.7600 -35 222 -6.3711 0.5997 1.7600 -35 223 -6.2790 0.5506 1.7600 -35 224 -6.2082 0.5238 1.7600 -35 225 -6.1495 0.5087 1.7600 -35 226 -6.0927 0.5028 1.7600 -35 227 -6.0313 0.4945 1.7600 -35 228 -5.9636 0.4879 1.7600 -35 229 -5.8881 0.4893 1.7600 -35 230 -5.8057 0.4964 1.7600 -35 231 -5.7281 0.5102 1.7600 -35 232 -5.6473 0.5278 1.7600 -35 233 -5.5734 0.5434 1.7600 -35 234 -5.5108 0.5504 1.7600 -35 235 -5.4587 0.5474 1.7600 -35 236 -5.4071 0.5405 1.7600 -35 237 -5.3553 0.5251 1.7600 -35 238 -5.3002 0.5079 1.7600 -35 239 -5.2433 0.4874 1.7600 -35 240 -5.1819 0.4648 1.7600 -35 241 -5.1173 0.4330 1.7600 -35 242 -5.0486 0.3997 1.7600 -35 243 -4.9806 0.3653 1.7600 -35 244 -4.9245 0.3419 1.7600 -35 245 -4.8688 0.3300 1.7600 -35 246 -4.8158 0.3245 1.7600 -35 247 -4.7614 0.3251 1.7600 -35 248 -4.7110 0.3295 1.7600 -35 249 -4.6582 0.3362 1.7600 -35 250 -4.6061 0.3472 1.7600 -35 251 -4.5511 0.3623 1.7600 -35 252 -4.4973 0.3844 1.7600 -35 253 -4.4435 0.4081 1.7600 -35 254 -4.3904 0.4248 1.7600 -35 255 -4.3388 0.4368 1.7600 -35 256 -4.2860 0.4424 1.7600 -35 257 -4.2349 0.4433 1.7600 -35 258 -4.1863 0.4407 1.7600 -35 259 -4.1349 0.4340 1.7600 -35 260 -4.0823 0.4204 1.7600 -35 261 -4.0246 0.4012 1.7600 -35 262 -3.9668 0.3800 1.7600 -35 263 -3.9073 0.3555 1.7600 -35 264 -3.8519 0.3386 1.7600 -35 265 -3.7975 0.3318 1.7600 -35 266 -3.7425 0.3286 1.7600 -35 267 -3.6842 0.3303 1.7600 -35 268 -3.6215 0.3333 1.7600 -35 269 -3.5533 0.3384 1.7600 -35 270 -3.4779 0.3494 1.7600 -35 271 -3.3985 0.3671 1.7600 -35 272 -3.3110 0.3908 1.7600 -35 273 -3.2185 0.4112 1.7600 -35 274 -3.1375 0.4209 1.7600 -35 275 -3.0658 0.4202 1.7600 -35 276 -2.9945 0.4106 1.7600 -35 277 -2.9264 0.3991 1.7600 -35 278 -2.8531 0.3863 1.7600 -35 279 -2.7778 0.3690 1.7600 -35 280 -2.7014 0.3445 1.7600 -35 281 -2.6198 0.3196 1.7600 -35 282 -2.5358 0.2960 1.7600 -35 283 -2.4616 0.2822 1.7600 -35 284 -2.3915 0.2778 1.7600 -35 285 -2.3246 0.2771 1.7600 -35 286 -2.2571 0.2808 1.7600 -35 287 -2.1896 0.2857 1.7600 -35 288 -2.1208 0.2980 1.7600 -35 289 -2.0506 0.3169 1.7600 -35 290 -1.9751 0.3414 1.7600 -35 291 -1.8866 0.3668 1.7600 -35 292 -1.8154 0.3937 1.7600 -35 293 -1.7441 0.4025 1.7600 -35 294 -1.6760 0.4035 1.7600 -35 295 -1.6100 0.4004 1.7600 -35 296 -1.5430 0.3901 1.7600 -35 297 -1.4720 0.3766 1.7600 -35 298 -1.3957 0.3619 1.7600 -35 299 -1.3028 0.3431 1.7600 -35 300 -1.2097 0.3313 1.7600 -35 301 -1.1265 0.3171 1.7600 -35 302 -1.0555 0.3155 1.7600 -35 303 -0.9902 0.3205 1.7600 -35 304 -0.9262 0.3303 1.7600 -35 305 -0.8617 0.3428 1.7600 -35 306 -0.7912 0.3596 1.7600 -35 307 -0.7155 0.3820 1.7600 -35 308 -0.6343 0.4108 1.7600 -35 309 -0.5512 0.4423 1.7600 -35 310 -0.4697 0.4706 1.7600 -35 311 -0.3964 0.4870 1.7600 -35 312 -0.3303 0.4914 1.7600 -35 313 -0.2656 0.4894 1.7600 -35 314 -0.1986 0.4838 1.7600 -35 315 -0.1265 0.4758 1.7600 -35 316 -0.0477 0.4636 1.7600 -35 317 0.0353 0.4465 1.7600 -35 318 0.1282 0.4229 1.7600 -35 319 0.2126 0.3968 1.7600 -35 320 0.2888 0.3752 1.7600 -35 321 0.3496 0.3691 1.7600 -35 322 0.4056 0.3740 1.7600 -35 323 0.4696 0.3802 1.7600 -35 324 0.5386 0.3900 1.7600 -35 325 0.6123 0.4039 1.7600 -35 326 0.7024 0.4229 1.7600 -35 327 0.7792 0.4509 1.7600 -35 328 0.8633 0.4799 1.7600 -35 329 0.9405 0.5046 1.7600 -35 330 1.0059 0.5167 1.7600 -35 331 1.0688 0.5198 1.7600 -35 332 1.1343 0.5166 1.7600 -35 333 1.2012 0.5081 1.7600 -35 334 1.2731 0.4957 1.7600 -35 335 1.3489 0.4736 1.7600 -35 336 1.4282 0.4457 1.7600 -35 337 1.5126 0.4127 1.7600 -35 338 1.5970 0.3759 1.7600 -35 339 1.6678 0.3511 1.7600 -35 340 1.7309 0.3395 1.7600 -35 341 1.7917 0.3366 1.7600 -35 342 1.8542 0.3370 1.7600 -35 343 1.9217 0.3414 1.7600 -35 344 1.9943 0.3536 1.7600 -35 345 2.0705 0.3739 1.7600 -35 346 2.1494 0.3968 1.7600 -35 347 2.2297 0.4202 1.7600 -35 348 2.2993 0.4456 1.7600 -35 349 2.3664 0.4674 1.7600 -35 350 2.4279 0.4755 1.7600 -35 351 2.4884 0.4746 1.7600 -35 352 2.5501 0.4691 1.7600 -35 353 2.6166 0.4618 1.7600 -35 354 2.6878 0.4467 1.7600 -35 355 2.7653 0.4287 1.7600 -35 356 2.8489 0.4020 1.7600 -35 357 2.9353 0.3743 1.7600 -35 358 3.0131 0.3557 1.7600 -35 359 3.0804 0.3447 1.7600 -35 360 3.1445 0.3408 1.7600 -35 361 3.2094 0.3411 1.7600 -35 362 3.2754 0.3460 1.7600 -35 363 3.3422 0.3523 1.7600 -35 364 3.4065 0.3610 1.7600 -35 365 3.4733 0.3731 1.7600 -35 366 3.5409 0.3936 1.7600 -35 367 3.6113 0.4121 1.7600 -35 368 3.6776 0.4247 1.7600 -35 369 3.7431 0.4308 1.7600 -35 370 3.8076 0.4310 1.7600 -35 371 3.8688 0.4261 1.7600 -35 372 3.9317 0.4186 1.7600 -35 373 3.9960 0.4077 1.7600 -35 374 4.0641 0.3881 1.7600 -35 375 4.1360 0.3626 1.7600 -35 376 4.2146 0.3343 1.7600 -35 377 4.2901 0.3098 1.7600 -35 378 4.3546 0.2974 1.7600 -35 379 4.4195 0.2886 1.7600 -35 380 4.4870 0.2835 1.7600 -35 381 4.5529 0.2793 1.7600 -35 382 4.6245 0.2757 1.7600 -35 383 4.6980 0.2755 1.7600 -35 384 4.7777 0.2811 1.7600 -35 385 4.8583 0.2889 1.7600 -35 386 4.9405 0.2935 1.7600 -35 387 5.0185 0.2907 1.7600 -35 388 5.0878 0.2793 1.7600 -35 389 5.1541 0.2616 1.7600 -35 390 5.2174 0.2405 1.7600 -35 391 5.2811 0.2192 1.7600 -35 392 5.3452 0.1953 1.7600 -35 393 5.4126 0.1670 1.7600 -35 394 5.4832 0.1338 1.7600 -35 395 5.5603 0.0984 1.7600 -35 396 5.6366 0.0704 1.7600 -35 397 5.7098 0.0542 1.7600 -35 398 5.7830 0.0454 1.7600 -35 399 5.8541 0.0400 1.7600 -35 400 5.9242 0.0369 1.7600 -36 212 -7.8321 1.7345 1.7600 -36 213 -7.7702 1.7172 1.7600 -36 214 -7.7036 1.7017 1.7600 -36 215 -7.6469 1.6821 1.7600 -36 216 -7.5880 1.6623 1.7600 -36 217 -7.5268 1.6462 1.7600 -36 218 -7.4608 1.6338 1.7600 -36 219 -7.3886 1.6236 1.7600 -36 220 -7.3102 1.6130 1.7600 -36 221 -7.2288 1.6019 1.7600 -36 222 -7.1493 1.5923 1.7600 -36 223 -7.0748 1.5849 1.7600 -36 224 -7.0039 1.5801 1.7600 -36 225 -6.9336 1.5761 1.7600 -36 226 -6.8644 1.5674 1.7600 -36 227 -6.7949 1.5515 1.7600 -36 228 -6.7234 1.5313 1.7600 -36 229 -6.6505 1.5090 1.7600 -36 230 -6.5771 1.4861 1.7600 -36 231 -6.5064 1.4632 1.7600 -36 232 -6.4418 1.4397 1.7600 -36 233 -6.3805 1.4146 1.7600 -36 234 -6.3201 1.3935 1.7600 -36 235 -6.2574 1.3748 1.7600 -36 236 -6.1932 1.3607 1.7600 -36 237 -6.1262 1.3499 1.7600 -36 238 -6.0572 1.3433 1.7600 -36 239 -5.9877 1.3363 1.7600 -36 240 -5.9226 1.3295 1.7600 -36 241 -5.8559 1.3258 1.7600 -36 242 -5.7910 1.3245 1.7600 -36 243 -5.7239 1.3246 1.7600 -36 244 -5.6575 1.3221 1.7600 -36 245 -5.5887 1.3155 1.7600 -36 246 -5.5267 1.3068 1.7600 -36 247 -5.4663 1.2984 1.7600 -36 248 -5.4066 1.2878 1.7600 -36 249 -5.3465 1.2773 1.7600 -36 250 -5.2886 1.2647 1.7600 -36 251 -5.2300 1.2497 1.7600 -36 252 -5.1727 1.2355 1.7600 -36 253 -5.1158 1.2222 1.7600 -36 254 -5.0581 1.2111 1.7600 -36 255 -4.9983 1.2047 1.7600 -36 256 -4.9382 1.2006 1.7600 -36 257 -4.8816 1.1968 1.7600 -36 258 -4.8260 1.1968 1.7600 -36 259 -4.7718 1.1957 1.7600 -36 260 -4.7213 1.1968 1.7600 -36 261 -4.6693 1.1978 1.7600 -36 262 -4.6171 1.2034 1.7600 -36 263 -4.5686 1.2073 1.7600 -36 264 -4.5222 1.2093 1.7600 -36 265 -4.4751 1.2089 1.7600 -36 266 -4.4319 1.2031 1.7600 -36 267 -4.3903 1.1911 1.7600 -36 268 -4.3557 1.1791 1.7600 -36 269 -4.3204 1.1671 1.7600 -36 270 -4.2843 1.1530 1.7600 -36 271 -4.2515 1.1372 1.7600 -36 272 -4.2150 1.1186 1.7600 -36 273 -4.1778 1.1004 1.7600 -36 274 -4.1411 1.0851 1.7600 -36 275 -4.1027 1.0740 1.7600 -36 276 -4.0594 1.0667 1.7600 -36 277 -4.0152 1.0605 1.7600 -36 278 -3.9684 1.0553 1.7600 -36 279 -3.9241 1.0511 1.7600 -36 280 -3.8774 1.0508 1.7600 -36 281 -3.8300 1.0513 1.7600 -36 282 -3.7830 1.0569 1.7600 -36 283 -3.7289 1.0633 1.7600 -36 284 -3.6742 1.0694 1.7600 -36 285 -3.6184 1.0716 1.7600 -36 286 -3.5636 1.0713 1.7600 -36 287 -3.5095 1.0669 1.7600 -36 288 -3.4514 1.0595 1.7600 -36 289 -3.3948 1.0464 1.7600 -36 290 -3.3465 1.0258 1.7600 -36 291 -3.3113 1.0114 1.7600 -36 292 -3.2753 1.0033 1.7600 -36 293 -3.2313 0.9957 1.7600 -36 294 -3.1846 0.9897 1.7600 -36 295 -3.1362 0.9860 1.7600 -36 296 -3.0789 0.9796 1.7600 -36 297 -3.0188 0.9777 1.7600 -36 298 -2.9540 0.9767 1.7600 -36 299 -2.8875 0.9775 1.7600 -36 300 -2.8193 0.9816 1.7600 -36 301 -2.7501 0.9886 1.7600 -36 302 -2.6808 0.9962 1.7600 -36 303 -2.6140 1.0066 1.7600 -36 304 -2.5504 1.0142 1.7600 -36 305 -2.4974 1.0193 1.7600 -36 306 -2.4441 1.0206 1.7600 -36 307 -2.3944 1.0196 1.7600 -36 308 -2.3485 1.0154 1.7600 -36 309 -2.3045 1.0123 1.7600 -36 310 -2.2645 1.0070 1.7600 -36 311 -2.2255 1.0002 1.7600 -36 312 -2.1885 0.9880 1.7600 -36 313 -2.1510 0.9760 1.7600 -36 314 -2.1228 0.9629 1.7600 -36 315 -2.0831 0.9460 1.7600 -36 316 -2.0381 0.9307 1.7600 -36 317 -1.9855 0.9243 1.7600 -36 318 -1.9272 0.9231 1.7600 -36 319 -1.8664 0.9281 1.7600 -36 320 -1.8016 0.9342 1.7600 -36 321 -1.7364 0.9437 1.7600 -36 322 -1.6700 0.9521 1.7600 -36 323 -1.6047 0.9617 1.7600 -36 324 -1.5403 0.9684 1.7600 -36 325 -1.4789 0.9729 1.7600 -36 326 -1.4203 0.9740 1.7600 -36 327 -1.3604 0.9716 1.7600 -36 328 -1.2996 0.9663 1.7600 -36 329 -1.2371 0.9617 1.7600 -36 330 -1.1697 0.9581 1.7600 -36 331 -1.1056 0.9507 1.7600 -36 332 -1.0401 0.9407 1.7600 -36 333 -0.9734 0.9343 1.7600 -36 334 -0.9099 0.9340 1.7600 -36 335 -0.8457 0.9378 1.7600 -36 336 -0.7800 0.9448 1.7600 -36 337 -0.7134 0.9549 1.7600 -36 338 -0.6471 0.9661 1.7600 -36 339 -0.5791 0.9780 1.7600 -36 340 -0.5079 0.9892 1.7600 -36 341 -0.4406 1.0031 1.7600 -36 342 -0.3734 1.0182 1.7600 -36 343 -0.3078 1.0322 1.7600 -36 344 -0.2413 1.0386 1.7600 -36 345 -0.1759 1.0407 1.7600 -36 346 -0.1112 1.0400 1.7600 -36 347 -0.0443 1.0360 1.7600 -36 348 0.0256 1.0291 1.7600 -36 349 0.0942 1.0203 1.7600 -36 350 0.1574 1.0066 1.7600 -36 351 0.2123 0.9890 1.7600 -36 352 0.2697 0.9727 1.7600 -36 353 0.3296 0.9626 1.7600 -36 354 0.3894 0.9592 1.7600 -36 355 0.4514 0.9596 1.7600 -36 356 0.5173 0.9631 1.7600 -36 357 0.5812 0.9732 1.7600 -36 358 0.6476 0.9770 1.7600 -36 359 0.7150 0.9784 1.7600 -36 360 0.7825 0.9785 1.7600 -36 361 0.8455 0.9844 1.7600 -36 362 0.9051 0.9920 1.7600 -36 363 0.9678 1.0001 1.7600 -36 364 1.0329 0.9995 1.7600 -36 365 1.0980 0.9960 1.7600 -36 366 1.1663 0.9876 1.7600 -36 367 1.2316 0.9766 1.7600 -36 368 1.3002 0.9653 1.7600 -36 369 1.3657 0.9512 1.7600 -36 370 1.4325 0.9361 1.7600 -36 371 1.4965 0.9165 1.7600 -36 372 1.5660 0.9005 1.7600 -36 373 1.6312 0.8912 1.7600 -36 374 1.6942 0.8860 1.7600 -36 375 1.7574 0.8835 1.7600 -36 376 1.8188 0.8781 1.7600 -36 377 1.8845 0.8799 1.7600 -36 378 1.9488 0.8807 1.7600 -36 379 2.0139 0.8807 1.7600 -36 380 2.0838 0.8794 1.7600 -36 381 2.1585 0.8771 1.7600 -36 382 2.2448 0.8768 1.7600 -36 383 2.3201 0.8681 1.7600 -36 384 2.4003 0.8567 1.7600 -36 385 2.4779 0.8458 1.7600 -36 386 2.5518 0.8324 1.7600 -36 387 2.6241 0.8195 1.7600 -36 388 2.7034 0.8086 1.7600 -36 389 2.7877 0.7960 1.7600 -36 390 2.8644 0.7868 1.7600 -36 391 2.9400 0.7818 1.7600 -36 392 3.0124 0.7822 1.7600 -36 393 3.0825 0.7883 1.7600 -36 394 3.1509 0.7945 1.7600 -36 395 3.2168 0.8013 1.7600 -36 396 3.2804 0.8097 1.7600 -36 397 3.3417 0.8163 1.7600 -36 398 3.4031 0.8220 1.7600 -36 399 3.4651 0.8301 1.7600 -36 400 3.5272 0.8407 1.7600 -36 401 3.5891 0.8538 1.7600 -36 402 3.6354 0.8621 1.7600 -36 403 3.6851 0.8665 1.7600 -36 404 3.7339 0.8717 1.7600 -36 405 3.7830 0.8761 1.7600 -36 406 3.8337 0.8792 1.7600 -36 407 3.8885 0.8785 1.7600 -36 408 3.9517 0.8737 1.7600 -36 409 4.0297 0.8663 1.7600 -36 410 4.1091 0.8633 1.7600 -36 411 4.1857 0.8653 1.7600 -36 412 4.2682 0.8719 1.7600 -36 413 4.3596 0.8804 1.7600 -36 414 4.4353 0.8926 1.7600 -36 415 4.5054 0.9061 1.7600 -36 416 4.5729 0.9223 1.7600 -36 417 4.6389 0.9370 1.7600 -36 418 4.7098 0.9460 1.7600 -36 419 4.7870 0.9544 1.7600 -36 420 4.8606 0.9664 1.7600 -36 421 4.9276 0.9746 1.7600 -36 422 4.9909 0.9760 1.7600 -36 423 5.0516 0.9748 1.7600 -36 424 5.1085 0.9736 1.7600 -36 425 5.1659 0.9687 1.7600 -36 426 5.2225 0.9683 1.7600 -36 427 5.2879 0.9645 1.7600 -36 428 5.3657 0.9585 1.7600 -36 429 5.4496 0.9596 1.7600 -36 430 5.5282 0.9700 1.7600 -36 431 5.6074 0.9832 1.7600 -36 432 5.6831 0.9977 1.7600 -36 433 5.7536 1.0145 1.7600 -36 434 5.8200 1.0299 1.7600 -36 435 5.8872 1.0429 1.7600 -37 228 -7.7835 0.9071 1.7600 -37 229 -7.7128 0.8866 1.7600 -37 230 -7.6334 0.8680 1.7600 -37 231 -7.5507 0.8473 1.7600 -37 232 -7.4725 0.8234 1.7600 -37 233 -7.4021 0.7990 1.7600 -37 234 -7.3374 0.7787 1.7600 -37 235 -7.2778 0.7648 1.7600 -37 236 -7.2195 0.7582 1.7600 -37 237 -7.1566 0.7556 1.7600 -37 238 -7.0861 0.7521 1.7600 -37 239 -7.0079 0.7466 1.7600 -37 240 -6.9278 0.7429 1.7600 -37 241 -6.8427 0.7437 1.7600 -37 242 -6.7624 0.7457 1.7600 -37 243 -6.6925 0.7454 1.7600 -37 244 -6.6208 0.7462 1.7600 -37 245 -6.5576 0.7409 1.7600 -37 246 -6.4955 0.7303 1.7600 -37 247 -6.4308 0.7189 1.7600 -37 248 -6.3573 0.7096 1.7600 -37 249 -6.2774 0.6987 1.7600 -37 250 -6.1960 0.6850 1.7600 -37 251 -6.1176 0.6666 1.7600 -37 252 -6.0476 0.6452 1.7600 -37 253 -5.9874 0.6268 1.7600 -37 254 -5.9316 0.6182 1.7600 -37 255 -5.8807 0.6129 1.7600 -37 256 -5.8254 0.6105 1.7600 -37 257 -5.7643 0.6056 1.7600 -37 258 -5.6991 0.6037 1.7600 -37 259 -5.6344 0.6034 1.7600 -37 260 -5.5649 0.6042 1.7600 -37 261 -5.4901 0.6081 1.7600 -37 262 -5.4233 0.6142 1.7600 -37 263 -5.3617 0.6187 1.7600 -37 264 -5.2977 0.6201 1.7600 -37 265 -5.2361 0.6126 1.7600 -37 266 -5.1767 0.5987 1.7600 -37 267 -5.1173 0.5849 1.7600 -37 268 -5.0508 0.5764 1.7600 -37 269 -4.9839 0.5673 1.7600 -37 270 -4.9169 0.5600 1.7600 -37 271 -4.8460 0.5449 1.7600 -37 272 -4.7813 0.5237 1.7600 -37 273 -4.7193 0.5062 1.7600 -37 274 -4.6557 0.4939 1.7600 -37 275 -4.5960 0.4879 1.7600 -37 276 -4.5373 0.4903 1.7600 -37 277 -4.4782 0.4926 1.7600 -37 278 -4.4173 0.4909 1.7600 -37 279 -4.3517 0.4878 1.7600 -37 280 -4.2842 0.4877 1.7600 -37 281 -4.2137 0.4934 1.7600 -37 282 -4.1436 0.5002 1.7600 -37 283 -4.0799 0.5041 1.7600 -37 284 -4.0168 0.5035 1.7600 -37 285 -3.9536 0.4962 1.7600 -37 286 -3.8961 0.4834 1.7600 -37 287 -3.8369 0.4666 1.7600 -37 288 -3.7763 0.4521 1.7600 -37 289 -3.7119 0.4406 1.7600 -37 290 -3.6476 0.4233 1.7600 -37 291 -3.5800 0.4036 1.7600 -37 292 -3.5083 0.3785 1.7600 -37 293 -3.4413 0.3602 1.7600 -37 294 -3.3739 0.3434 1.7600 -37 295 -3.3070 0.3370 1.7600 -37 296 -3.2402 0.3367 1.7600 -37 297 -3.1769 0.3372 1.7600 -37 298 -3.1098 0.3357 1.7600 -37 299 -3.0451 0.3364 1.7600 -37 300 -2.9752 0.3396 1.7600 -37 301 -2.9037 0.3484 1.7600 -37 302 -2.8323 0.3587 1.7600 -37 303 -2.7641 0.3664 1.7600 -37 304 -2.6925 0.3720 1.7600 -37 305 -2.6227 0.3669 1.7600 -37 306 -2.5545 0.3539 1.7600 -37 307 -2.4876 0.3424 1.7600 -37 308 -2.4166 0.3358 1.7600 -37 309 -2.3449 0.3325 1.7600 -37 310 -2.2723 0.3263 1.7600 -37 311 -2.1955 0.3155 1.7600 -37 312 -2.1208 0.3005 1.7600 -37 313 -2.0424 0.2905 1.7600 -37 314 -1.9663 0.2866 1.7600 -37 315 -1.8986 0.2937 1.7600 -37 316 -1.8408 0.3003 1.7600 -37 317 -1.7852 0.3050 1.7600 -37 318 -1.7244 0.3088 1.7600 -37 319 -1.6581 0.3154 1.7600 -37 320 -1.5847 0.3271 1.7600 -37 321 -1.5087 0.3417 1.7600 -37 322 -1.4398 0.3529 1.7600 -37 323 -1.3668 0.3621 1.7600 -37 324 -1.2921 0.3629 1.7600 -37 325 -1.2216 0.3562 1.7600 -37 326 -1.1553 0.3483 1.7600 -37 327 -1.0844 0.3417 1.7600 -37 328 -1.0058 0.3369 1.7600 -37 329 -0.9208 0.3323 1.7600 -37 330 -0.8346 0.3251 1.7600 -37 331 -0.7540 0.3143 1.7600 -37 332 -0.6787 0.3041 1.7600 -37 333 -0.6073 0.3030 1.7600 -37 334 -0.5374 0.3127 1.7600 -37 335 -0.4630 0.3275 1.7600 -37 336 -0.3809 0.3407 1.7600 -37 337 -0.2947 0.3541 1.7600 -37 338 -0.2072 0.3666 1.7600 -37 339 -0.1168 0.3780 1.7600 -37 340 -0.0380 0.3905 1.7600 -37 341 0.0311 0.4051 1.7600 -37 342 0.0975 0.4174 1.7600 -37 343 0.1658 0.4182 1.7600 -37 344 0.2244 0.4096 1.7600 -37 345 0.2888 0.4049 1.7600 -37 346 0.3615 0.4024 1.7600 -37 347 0.4411 0.4031 1.7600 -37 348 0.5255 0.4045 1.7600 -37 349 0.6114 0.3971 1.7600 -37 350 0.6909 0.3870 1.7600 -37 351 0.7670 0.3787 1.7600 -37 352 0.8424 0.3747 1.7600 -37 353 0.9113 0.3826 1.7600 -37 354 0.9750 0.3949 1.7600 -37 355 1.0414 0.4030 1.7600 -37 356 1.1125 0.4089 1.7600 -37 357 1.1919 0.4155 1.7600 -37 358 1.2775 0.4243 1.7600 -37 359 1.3642 0.4328 1.7600 -37 360 1.4382 0.4427 1.7600 -37 361 1.5165 0.4521 1.7600 -37 362 1.5909 0.4510 1.7600 -37 363 1.6571 0.4405 1.7600 -37 364 1.7258 0.4279 1.7600 -37 365 1.7961 0.4187 1.7600 -37 366 1.8718 0.4163 1.7600 -37 367 1.9531 0.4137 1.7600 -37 368 2.0358 0.4082 1.7600 -37 369 2.1058 0.3985 1.7600 -37 370 2.1768 0.3904 1.7600 -37 371 2.2510 0.3899 1.7600 -37 372 2.3181 0.3994 1.7600 -37 373 2.3826 0.4128 1.7600 -37 374 2.4514 0.4218 1.7600 -37 375 2.5207 0.4279 1.7600 -37 376 2.5945 0.4334 1.7600 -37 377 2.6709 0.4442 1.7600 -37 378 2.7438 0.4559 1.7600 -37 379 2.8125 0.4645 1.7600 -37 380 2.8797 0.4666 1.7600 -37 381 2.9463 0.4612 1.7600 -37 382 3.0103 0.4501 1.7600 -37 383 3.0783 0.4414 1.7600 -37 384 3.1467 0.4340 1.7600 -37 385 3.2157 0.4274 1.7600 -37 386 3.2873 0.4168 1.7600 -37 387 3.3580 0.4011 1.7600 -37 388 3.4236 0.3832 1.7600 -37 389 3.4908 0.3723 1.7600 -37 390 3.5624 0.3718 1.7600 -37 391 3.6285 0.3768 1.7600 -37 392 3.6905 0.3819 1.7600 -37 393 3.7554 0.3855 1.7600 -37 394 3.8202 0.3918 1.7600 -37 395 3.8864 0.4022 1.7600 -37 396 3.9563 0.4175 1.7600 -37 397 4.0265 0.4341 1.7600 -37 398 4.0934 0.4455 1.7600 -37 399 4.1633 0.4495 1.7600 -37 400 4.2308 0.4443 1.7600 -37 401 4.2943 0.4366 1.7600 -37 402 4.3554 0.4297 1.7600 -37 403 4.4206 0.4254 1.7600 -37 404 4.4825 0.4181 1.7600 -37 405 4.5492 0.4044 1.7600 -37 406 4.6195 0.3870 1.7600 -37 407 4.6902 0.3695 1.7600 -37 408 4.7575 0.3583 1.7600 -37 409 4.8265 0.3556 1.7600 -37 410 4.8910 0.3583 1.7600 -37 411 4.9520 0.3596 1.7600 -37 412 5.0104 0.3602 1.7600 -37 413 5.0655 0.3629 1.7600 -37 414 5.1233 0.3678 1.7600 -37 415 5.1871 0.3749 1.7600 -37 416 5.2559 0.3808 1.7600 -37 417 5.3200 0.3816 1.7600 -37 418 5.3884 0.3809 1.7600 -37 419 5.4574 0.3705 1.7600 -37 420 5.5190 0.3560 1.7600 -37 421 5.5778 0.3396 1.7600 -37 422 5.6368 0.3261 1.7600 -37 423 5.6951 0.3129 1.7600 -37 424 5.7571 0.2958 1.7600 -37 425 5.8215 0.2727 1.7600 -37 426 5.8876 0.2478 1.7600 -37 427 5.9565 0.2255 1.7600 -38 223 -7.8171 2.1608 1.7600 -38 224 -7.7516 2.1475 1.7600 -38 225 -7.6800 2.1323 1.7600 -38 226 -7.6018 2.1146 1.7600 -38 227 -7.5204 2.0934 1.7600 -38 228 -7.4445 2.0704 1.7600 -38 229 -7.3778 2.0514 1.7600 -38 230 -7.3171 2.0432 1.7600 -38 231 -7.2584 2.0449 1.7600 -38 232 -7.1982 2.0500 1.7600 -38 233 -7.1342 2.0565 1.7600 -38 234 -7.0651 2.0636 1.7600 -38 235 -6.9908 2.0705 1.7600 -38 236 -6.9134 2.0782 1.7600 -38 237 -6.8393 2.0860 1.7600 -38 238 -6.7717 2.0941 1.7600 -38 239 -6.7042 2.0984 1.7600 -38 240 -6.6358 2.0936 1.7600 -38 241 -6.5660 2.0831 1.7600 -38 242 -6.4984 2.0707 1.7600 -38 243 -6.4244 2.0513 1.7600 -38 244 -6.3498 2.0293 1.7600 -38 245 -6.2729 2.0053 1.7600 -38 246 -6.2055 1.9827 1.7600 -38 247 -6.1450 1.9593 1.7600 -38 248 -6.0909 1.9463 1.7600 -38 249 -6.0352 1.9434 1.7600 -38 250 -5.9764 1.9391 1.7600 -38 251 -5.9166 1.9394 1.7600 -38 252 -5.8551 1.9386 1.7600 -38 253 -5.7884 1.9425 1.7600 -38 254 -5.7250 1.9480 1.7600 -38 255 -5.6661 1.9550 1.7600 -38 256 -5.6100 1.9621 1.7600 -38 257 -5.5591 1.9624 1.7600 -38 258 -5.5114 1.9548 1.7600 -38 259 -5.4623 1.9424 1.7600 -38 260 -5.4164 1.9269 1.7600 -38 261 -5.3721 1.9065 1.7600 -38 262 -5.3253 1.8795 1.7600 -38 263 -5.2783 1.8479 1.7600 -38 264 -5.2363 1.8125 1.7600 -38 265 -5.1990 1.7787 1.7600 -38 266 -5.1609 1.7529 1.7600 -38 267 -5.1203 1.7347 1.7600 -38 268 -5.0755 1.7193 1.7600 -38 269 -5.0286 1.7087 1.7600 -38 270 -4.9796 1.7003 1.7600 -38 271 -4.9266 1.6935 1.7600 -38 272 -4.8696 1.6862 1.7600 -38 273 -4.8124 1.6832 1.7600 -38 274 -4.7537 1.6875 1.7600 -38 275 -4.6962 1.6955 1.7600 -38 276 -4.6396 1.7041 1.7600 -38 277 -4.5848 1.7037 1.7600 -38 278 -4.5314 1.6968 1.7600 -38 279 -4.4793 1.6856 1.7600 -38 280 -4.4244 1.6700 1.7600 -38 281 -4.3678 1.6483 1.7600 -38 282 -4.3145 1.6210 1.7600 -38 283 -4.2592 1.5906 1.7600 -38 284 -4.2040 1.5608 1.7600 -38 285 -4.1507 1.5360 1.7600 -38 286 -4.0954 1.5188 1.7600 -38 287 -4.0369 1.5123 1.7600 -38 288 -3.9754 1.5093 1.7600 -38 289 -3.9149 1.5077 1.7600 -38 290 -3.8522 1.5059 1.7600 -38 291 -3.7833 1.5036 1.7600 -38 292 -3.7098 1.5098 1.7600 -38 293 -3.6330 1.5151 1.7600 -38 294 -3.5561 1.5170 1.7600 -38 295 -3.4819 1.5135 1.7600 -38 296 -3.4071 1.5076 1.7600 -38 297 -3.3392 1.4999 1.7600 -38 298 -3.2725 1.4893 1.7600 -38 299 -3.2027 1.4792 1.7600 -38 300 -3.1296 1.4646 1.7600 -38 301 -3.0561 1.4516 1.7600 -38 302 -2.9801 1.4373 1.7600 -38 303 -2.9038 1.4290 1.7600 -38 304 -2.8314 1.4332 1.7600 -38 305 -2.7603 1.4502 1.7600 -38 306 -2.6856 1.4682 1.7600 -38 307 -2.6149 1.4762 1.7600 -38 308 -2.5424 1.4919 1.7600 -38 309 -2.4737 1.5066 1.7600 -38 310 -2.3996 1.5269 1.7600 -38 311 -2.3205 1.5461 1.7600 -38 312 -2.2492 1.5586 1.7600 -38 313 -2.1834 1.5615 1.7600 -38 314 -2.1181 1.5614 1.7600 -38 315 -2.0526 1.5580 1.7600 -38 316 -1.9863 1.5522 1.7600 -38 317 -1.9189 1.5423 1.7600 -38 318 -1.8482 1.5235 1.7600 -38 319 -1.7711 1.5016 1.7600 -38 320 -1.6916 1.4845 1.7600 -38 321 -1.6109 1.4742 1.7600 -38 322 -1.5422 1.4811 1.7600 -38 323 -1.4692 1.4866 1.7600 -38 324 -1.3935 1.4900 1.7600 -38 325 -1.3178 1.5018 1.7600 -38 326 -1.2441 1.5141 1.7600 -38 327 -1.1728 1.5302 1.7600 -38 328 -1.0974 1.5420 1.7600 -38 329 -1.0265 1.5517 1.7600 -38 330 -0.9583 1.5563 1.7600 -38 331 -0.8917 1.5538 1.7600 -38 332 -0.8259 1.5480 1.7600 -38 333 -0.7578 1.5380 1.7600 -38 334 -0.6874 1.5238 1.7600 -38 335 -0.6154 1.5062 1.7600 -38 336 -0.5439 1.4882 1.7600 -38 337 -0.4701 1.4650 1.7600 -38 338 -0.4107 1.4588 1.7600 -38 339 -0.3487 1.4583 1.7600 -38 340 -0.2855 1.4604 1.7600 -38 341 -0.2229 1.4692 1.7600 -38 342 -0.1552 1.4770 1.7600 -38 343 -0.0842 1.4875 1.7600 -38 344 -0.0132 1.4985 1.7600 -38 345 0.0552 1.5134 1.7600 -38 346 0.1191 1.5290 1.7600 -38 347 0.1777 1.5394 1.7600 -38 348 0.2348 1.5408 1.7600 -38 349 0.2970 1.5375 1.7600 -38 350 0.3593 1.5335 1.7600 -38 351 0.4284 1.5235 1.7600 -38 352 0.4974 1.5120 1.7600 -38 353 0.5671 1.4987 1.7600 -38 354 0.6374 1.4843 1.7600 -38 355 0.7036 1.4733 1.7600 -38 356 0.7647 1.4653 1.7600 -38 357 0.8269 1.4633 1.7600 -38 358 0.8890 1.4642 1.7600 -38 359 0.9493 1.4694 1.7600 -38 360 1.0122 1.4739 1.7600 -38 361 1.0807 1.4815 1.7600 -38 362 1.1498 1.4909 1.7600 -38 363 1.2196 1.5062 1.7600 -38 364 1.2876 1.5231 1.7600 -38 365 1.3492 1.5359 1.7600 -38 366 1.4076 1.5428 1.7600 -38 367 1.4668 1.5420 1.7600 -38 368 1.5249 1.5388 1.7600 -38 369 1.5844 1.5356 1.7600 -38 370 1.6450 1.5262 1.7600 -38 371 1.7109 1.5120 1.7600 -38 372 1.7773 1.4942 1.7600 -38 373 1.8468 1.4736 1.7600 -38 374 1.9082 1.4587 1.7600 -38 375 1.9676 1.4482 1.7600 -38 376 2.0289 1.4467 1.7600 -38 377 2.0918 1.4527 1.7600 -38 378 2.1573 1.4580 1.7600 -38 379 2.2253 1.4628 1.7600 -38 380 2.2934 1.4676 1.7600 -38 381 2.3631 1.4758 1.7600 -38 382 2.4329 1.4872 1.7600 -38 383 2.4978 1.5002 1.7600 -38 384 2.5635 1.5035 1.7600 -38 385 2.6307 1.5015 1.7600 -38 386 2.6983 1.4973 1.7600 -38 387 2.7649 1.4913 1.7600 -38 388 2.8323 1.4822 1.7600 -38 389 2.8980 1.4707 1.7600 -38 390 2.9696 1.4582 1.7600 -38 391 3.0467 1.4482 1.7600 -38 392 3.1211 1.4387 1.7600 -38 393 3.1927 1.4363 1.7600 -38 394 3.2633 1.4436 1.7600 -38 395 3.3361 1.4527 1.7600 -38 396 3.4054 1.4614 1.7600 -38 397 3.4765 1.4709 1.7600 -38 398 3.5472 1.4809 1.7600 -38 399 3.6188 1.4982 1.7600 -38 400 3.6922 1.5172 1.7600 -38 401 3.7641 1.5337 1.7600 -38 402 3.8361 1.5451 1.7600 -38 403 3.9058 1.5531 1.7600 -38 404 3.9752 1.5615 1.7600 -38 405 4.0416 1.5698 1.7600 -38 406 4.1137 1.5752 1.7600 -38 407 4.1898 1.5729 1.7600 -38 408 4.2734 1.5717 1.7600 -38 409 4.3610 1.5692 1.7600 -38 410 4.4462 1.5744 1.7600 -38 411 4.5243 1.5890 1.7600 -38 412 4.6000 1.6090 1.7600 -38 413 4.6711 1.6319 1.7600 -38 414 4.7405 1.6522 1.7600 -38 415 4.8091 1.6731 1.7600 -38 416 4.8840 1.6965 1.7600 -38 417 4.9614 1.7210 1.7600 -38 418 5.0418 1.7464 1.7600 -38 419 5.1274 1.7673 1.7600 -38 420 5.2077 1.7831 1.7600 -38 421 5.2813 1.7971 1.7600 -38 422 5.3506 1.8086 1.7600 -38 423 5.4190 1.8187 1.7600 -38 424 5.4877 1.8255 1.7600 -38 425 5.5614 1.8298 1.7600 -38 426 5.6417 1.8354 1.7600 -38 427 5.7210 1.8466 1.7600 -38 428 5.8002 1.8624 1.7600 -38 429 5.8765 1.8784 1.7600 -38 430 5.9448 1.8946 1.7600 -39 236 -7.8021 1.3730 1.7600 -39 237 -7.7334 1.3535 1.7600 -39 238 -7.6698 1.3325 1.7600 -39 239 -7.6105 1.3117 1.7600 -39 240 -7.5518 1.2891 1.7600 -39 241 -7.4917 1.2682 1.7600 -39 242 -7.4305 1.2535 1.7600 -39 243 -7.3676 1.2432 1.7600 -39 244 -7.3029 1.2345 1.7600 -39 245 -7.2377 1.2261 1.7600 -39 246 -7.1685 1.2200 1.7600 -39 247 -7.1049 1.2111 1.7600 -39 248 -7.0441 1.2064 1.7600 -39 249 -6.9834 1.2012 1.7600 -39 250 -6.9233 1.1960 1.7600 -39 251 -6.8639 1.1844 1.7600 -39 252 -6.7985 1.1652 1.7600 -39 253 -6.7348 1.1445 1.7600 -39 254 -6.6692 1.1235 1.7600 -39 255 -6.6032 1.1010 1.7600 -39 256 -6.5355 1.0818 1.7600 -39 257 -6.4726 1.0575 1.7600 -39 258 -6.4149 1.0363 1.7600 -39 259 -6.3600 1.0151 1.7600 -39 260 -6.3041 0.9955 1.7600 -39 261 -6.2471 0.9774 1.7600 -39 262 -6.1886 0.9654 1.7600 -39 263 -6.1277 0.9564 1.7600 -39 264 -6.0657 0.9496 1.7600 -39 265 -6.0062 0.9478 1.7600 -39 266 -5.9465 0.9468 1.7600 -39 267 -5.8951 0.9512 1.7600 -39 268 -5.8431 0.9546 1.7600 -39 269 -5.7944 0.9550 1.7600 -39 270 -5.7388 0.9478 1.7600 -39 271 -5.6815 0.9360 1.7600 -39 272 -5.6247 0.9256 1.7600 -39 273 -5.5679 0.9149 1.7600 -39 274 -5.5082 0.9040 1.7600 -39 275 -5.4512 0.8917 1.7600 -39 276 -5.3958 0.8782 1.7600 -39 277 -5.3429 0.8608 1.7600 -39 278 -5.2909 0.8456 1.7600 -39 279 -5.2422 0.8352 1.7600 -39 280 -5.1897 0.8295 1.7600 -39 281 -5.1376 0.8271 1.7600 -39 282 -5.0831 0.8238 1.7600 -39 283 -5.0316 0.8216 1.7600 -39 284 -4.9798 0.8186 1.7600 -39 285 -4.9256 0.8177 1.7600 -39 286 -4.8769 0.8162 1.7600 -39 287 -4.8268 0.8168 1.7600 -39 288 -4.7774 0.8189 1.7600 -39 289 -4.7301 0.8191 1.7600 -39 290 -4.6817 0.8166 1.7600 -39 291 -4.6297 0.8132 1.7600 -39 292 -4.5818 0.8051 1.7600 -39 293 -4.5289 0.7941 1.7600 -39 294 -4.4758 0.7797 1.7600 -39 295 -4.4280 0.7616 1.7600 -39 296 -4.3761 0.7428 1.7600 -39 297 -4.3287 0.7200 1.7600 -39 298 -4.2804 0.6972 1.7600 -39 299 -4.2289 0.6759 1.7600 -39 300 -4.1755 0.6619 1.7600 -39 301 -4.1229 0.6573 1.7600 -39 302 -4.0665 0.6574 1.7600 -39 303 -4.0090 0.6579 1.7600 -39 304 -3.9426 0.6651 1.7600 -39 305 -3.8868 0.6730 1.7600 -39 306 -3.8262 0.6899 1.7600 -39 307 -3.7631 0.7085 1.7600 -39 308 -3.7072 0.7257 1.7600 -39 309 -3.6505 0.7388 1.7600 -39 310 -3.5929 0.7482 1.7600 -39 311 -3.5283 0.7563 1.7600 -39 312 -3.4726 0.7557 1.7600 -39 313 -3.4126 0.7585 1.7600 -39 314 -3.3549 0.7566 1.7600 -39 315 -3.2989 0.7541 1.7600 -39 316 -3.2372 0.7471 1.7600 -39 317 -3.1766 0.7398 1.7600 -39 318 -3.1096 0.7354 1.7600 -39 319 -3.0604 0.7235 1.7600 -39 320 -2.9997 0.7209 1.7600 -39 321 -2.9326 0.7253 1.7600 -39 322 -2.8745 0.7295 1.7600 -39 323 -2.8118 0.7436 1.7600 -39 324 -2.7517 0.7558 1.7600 -39 325 -2.6882 0.7701 1.7600 -39 326 -2.6204 0.7830 1.7600 -39 327 -2.5452 0.7958 1.7600 -39 328 -2.4791 0.8045 1.7600 -39 329 -2.4112 0.8112 1.7600 -39 330 -2.3420 0.8177 1.7600 -39 331 -2.2772 0.8143 1.7600 -39 332 -2.2132 0.8147 1.7600 -39 333 -2.1471 0.8110 1.7600 -39 334 -2.0849 0.8068 1.7600 -39 335 -2.0179 0.8022 1.7600 -39 336 -1.9457 0.7933 1.7600 -39 337 -1.8684 0.7837 1.7600 -39 338 -1.7991 0.7751 1.7600 -39 339 -1.7251 0.7749 1.7600 -39 340 -1.6555 0.7765 1.7600 -39 341 -1.5876 0.7810 1.7600 -39 342 -1.5191 0.7866 1.7600 -39 343 -1.4494 0.7937 1.7600 -39 344 -1.3749 0.8028 1.7600 -39 345 -1.2989 0.8140 1.7600 -39 346 -1.2226 0.8266 1.7600 -39 347 -1.1512 0.8358 1.7600 -39 348 -1.0787 0.8399 1.7600 -39 349 -1.0086 0.8395 1.7600 -39 350 -0.9371 0.8364 1.7600 -39 351 -0.8684 0.8312 1.7600 -39 352 -0.7984 0.8246 1.7600 -39 353 -0.7302 0.8181 1.7600 -39 354 -0.6611 0.8078 1.7600 -39 355 -0.5925 0.7971 1.7600 -39 356 -0.5230 0.7898 1.7600 -39 357 -0.4547 0.7854 1.7600 -39 358 -0.3856 0.7855 1.7600 -39 359 -0.3167 0.7913 1.7600 -39 360 -0.2452 0.7969 1.7600 -39 361 -0.1701 0.8067 1.7600 -39 362 -0.0964 0.8131 1.7600 -39 363 -0.0219 0.8239 1.7600 -39 364 0.0505 0.8360 1.7600 -39 365 0.1358 0.8503 1.7600 -39 366 0.1952 0.8515 1.7600 -39 367 0.2671 0.8523 1.7600 -39 368 0.3385 0.8528 1.7600 -39 369 0.4121 0.8510 1.7600 -39 370 0.4785 0.8463 1.7600 -39 371 0.5488 0.8412 1.7600 -39 372 0.6160 0.8330 1.7600 -39 373 0.6817 0.8232 1.7600 -39 374 0.7429 0.8102 1.7600 -39 375 0.8060 0.7994 1.7600 -39 376 0.8725 0.7938 1.7600 -39 377 0.9375 0.7914 1.7600 -39 378 0.9942 0.7878 1.7600 -39 379 1.0563 0.7869 1.7600 -39 380 1.1194 0.7887 1.7600 -39 381 1.1838 0.7938 1.7600 -39 382 1.2489 0.8006 1.7600 -39 383 1.3104 0.8055 1.7600 -39 384 1.3723 0.8079 1.7600 -39 385 1.4376 0.8065 1.7600 -39 386 1.5037 0.8013 1.7600 -39 387 1.5701 0.7928 1.7600 -39 388 1.6367 0.7841 1.7600 -39 389 1.7023 0.7750 1.7600 -39 390 1.7659 0.7627 1.7600 -39 391 1.8318 0.7499 1.7600 -39 392 1.8929 0.7368 1.7600 -39 393 1.9549 0.7266 1.7600 -39 394 2.0231 0.7208 1.7600 -39 395 2.0812 0.7190 1.7600 -39 396 2.1459 0.7189 1.7600 -39 397 2.2078 0.7221 1.7600 -39 398 2.2680 0.7248 1.7600 -39 399 2.3261 0.7300 1.7600 -39 400 2.3862 0.7378 1.7600 -39 401 2.4458 0.7460 1.7600 -39 402 2.5014 0.7515 1.7600 -39 403 2.5597 0.7524 1.7600 -39 404 2.6201 0.7516 1.7600 -39 405 2.6820 0.7443 1.7600 -39 406 2.7429 0.7379 1.7600 -39 407 2.8067 0.7313 1.7600 -39 408 2.8675 0.7217 1.7600 -39 409 2.9307 0.7121 1.7600 -39 410 2.9970 0.6996 1.7600 -39 411 3.0649 0.6857 1.7600 -39 412 3.1320 0.6802 1.7600 -39 413 3.1971 0.6746 1.7600 -39 414 3.2631 0.6745 1.7600 -39 415 3.3287 0.6757 1.7600 -39 416 3.3951 0.6790 1.7600 -39 417 3.4603 0.6853 1.7600 -39 418 3.5234 0.6933 1.7600 -39 419 3.5858 0.6999 1.7600 -39 420 3.6547 0.7063 1.7600 -39 421 3.7214 0.7136 1.7600 -39 422 3.7853 0.7181 1.7600 -39 423 3.8501 0.7165 1.7600 -39 424 3.9129 0.7108 1.7600 -39 425 3.9748 0.7031 1.7600 -39 426 4.0386 0.6960 1.7600 -39 427 4.1051 0.6846 1.7600 -39 428 4.1735 0.6729 1.7600 -39 429 4.2486 0.6582 1.7600 -39 430 4.3240 0.6460 1.7600 -39 431 4.3946 0.6371 1.7600 -39 432 4.4640 0.6306 1.7600 -39 433 4.5323 0.6289 1.7600 -39 434 4.5945 0.6297 1.7600 -39 435 4.6565 0.6305 1.7600 -39 436 4.7180 0.6316 1.7600 -39 437 4.7822 0.6359 1.7600 -39 438 4.8499 0.6423 1.7600 -39 439 4.9197 0.6456 1.7600 -39 440 4.9901 0.6480 1.7600 -39 441 5.0601 0.6455 1.7600 -39 442 5.1285 0.6379 1.7600 -39 443 5.1932 0.6317 1.7600 -39 444 5.2612 0.6197 1.7600 -39 445 5.3251 0.6108 1.7600 -39 446 5.3902 0.6009 1.7600 -39 447 5.4606 0.5895 1.7600 -39 448 5.5347 0.5768 1.7600 -39 449 5.6083 0.5635 1.7600 -39 450 5.6813 0.5531 1.7600 -39 451 5.7533 0.5471 1.7600 -39 452 5.8204 0.5448 1.7600 -39 453 5.8833 0.5453 1.7600 -39 454 5.9437 0.5482 1.7600 -40 238 -7.8002 0.6611 1.7600 -40 239 -7.7374 0.6183 1.7600 -40 240 -7.6761 0.5943 1.7600 -40 241 -7.6110 0.5741 1.7600 -40 242 -7.5370 0.5567 1.7600 -40 243 -7.4565 0.5393 1.7600 -40 244 -7.3739 0.5220 1.7600 -40 245 -7.2927 0.5042 1.7600 -40 246 -7.2145 0.4858 1.7600 -40 247 -7.1465 0.4650 1.7600 -40 248 -7.0888 0.4414 1.7600 -40 249 -7.0279 0.4147 1.7600 -40 250 -6.9594 0.3875 1.7600 -40 251 -6.8819 0.3591 1.7600 -40 252 -6.7991 0.3280 1.7600 -40 253 -6.7173 0.2969 1.7600 -40 254 -6.6376 0.2699 1.7600 -40 255 -6.5635 0.2506 1.7600 -40 256 -6.4917 0.2425 1.7600 -40 257 -6.4198 0.2410 1.7600 -40 258 -6.3429 0.2386 1.7600 -40 259 -6.2606 0.2362 1.7600 -40 260 -6.1803 0.2369 1.7600 -40 261 -6.1037 0.2404 1.7600 -40 262 -6.0283 0.2406 1.7600 -40 263 -5.9657 0.2342 1.7600 -40 264 -5.9116 0.2224 1.7600 -40 265 -5.8535 0.2110 1.7600 -40 266 -5.7932 0.2024 1.7600 -40 267 -5.7269 0.1922 1.7600 -40 268 -5.6561 0.1817 1.7600 -40 269 -5.5879 0.1668 1.7600 -40 270 -5.5219 0.1543 1.7600 -40 271 -5.4657 0.1509 1.7600 -40 272 -5.4087 0.1521 1.7600 -40 273 -5.3529 0.1572 1.7600 -40 274 -5.2954 0.1643 1.7600 -40 275 -5.2380 0.1754 1.7600 -40 276 -5.1817 0.1875 1.7600 -40 277 -5.1234 0.2009 1.7600 -40 278 -5.0641 0.2144 1.7600 -40 279 -5.0100 0.2224 1.7600 -40 280 -4.9531 0.2288 1.7600 -40 281 -4.8919 0.2292 1.7600 -40 282 -4.8338 0.2253 1.7600 -40 283 -4.7763 0.2207 1.7600 -40 284 -4.7174 0.2148 1.7600 -40 285 -4.6535 0.2070 1.7600 -40 286 -4.5867 0.1958 1.7600 -40 287 -4.5280 0.1895 1.7600 -40 288 -4.4763 0.1907 1.7600 -40 289 -4.4231 0.1966 1.7600 -40 290 -4.3699 0.2099 1.7600 -40 291 -4.3184 0.2284 1.7600 -40 292 -4.2630 0.2493 1.7600 -40 293 -4.2084 0.2717 1.7600 -40 294 -4.1531 0.2924 1.7600 -40 295 -4.1052 0.3047 1.7600 -40 296 -4.0543 0.3086 1.7600 -40 297 -4.0031 0.3066 1.7600 -40 298 -3.9500 0.3038 1.7600 -40 299 -3.8954 0.3009 1.7600 -40 300 -3.8368 0.2951 1.7600 -40 301 -3.7797 0.2887 1.7600 -40 302 -3.7168 0.2831 1.7600 -40 303 -3.6600 0.2828 1.7600 -40 304 -3.6001 0.2917 1.7600 -40 305 -3.5457 0.3065 1.7600 -40 306 -3.4896 0.3243 1.7600 -40 307 -3.4303 0.3394 1.7600 -40 308 -3.3674 0.3563 1.7600 -40 309 -3.3001 0.3752 1.7600 -40 310 -3.2314 0.3920 1.7600 -40 311 -3.1660 0.4013 1.7600 -40 312 -3.1033 0.4047 1.7600 -40 313 -3.0420 0.4048 1.7600 -40 314 -2.9787 0.4035 1.7600 -40 315 -2.9156 0.3992 1.7600 -40 316 -2.8448 0.3916 1.7600 -40 317 -2.7729 0.3826 1.7600 -40 318 -2.7020 0.3699 1.7600 -40 319 -2.6290 0.3632 1.7600 -40 320 -2.5540 0.3618 1.7600 -40 321 -2.4833 0.3654 1.7600 -40 322 -2.4155 0.3724 1.7600 -40 323 -2.3412 0.3837 1.7600 -40 324 -2.2613 0.3964 1.7600 -40 325 -2.1859 0.4090 1.7600 -40 326 -2.1138 0.4115 1.7600 -40 327 -2.0410 0.4025 1.7600 -40 328 -1.9797 0.4039 1.7600 -40 329 -1.9101 0.3982 1.7600 -40 330 -1.8351 0.3920 1.7600 -40 331 -1.7539 0.3815 1.7600 -40 332 -1.6732 0.3731 1.7600 -40 333 -1.6014 0.3732 1.7600 -40 334 -1.5274 0.3829 1.7600 -40 335 -1.4526 0.3953 1.7600 -40 336 -1.3752 0.4095 1.7600 -40 337 -1.2930 0.4236 1.7600 -40 338 -1.2086 0.4374 1.7600 -40 339 -1.1256 0.4482 1.7600 -40 340 -1.0524 0.4497 1.7600 -40 341 -0.9816 0.4420 1.7600 -40 342 -0.9085 0.4335 1.7600 -40 343 -0.8329 0.4261 1.7600 -40 344 -0.7553 0.4208 1.7600 -40 345 -0.6750 0.4115 1.7600 -40 346 -0.6003 0.4022 1.7600 -40 347 -0.5315 0.3951 1.7600 -40 348 -0.4628 0.3971 1.7600 -40 349 -0.3907 0.4030 1.7600 -40 350 -0.3120 0.4107 1.7600 -40 351 -0.2319 0.4168 1.7600 -40 352 -0.1500 0.4225 1.7600 -40 353 -0.0668 0.4275 1.7600 -40 354 0.0061 0.4208 1.7600 -40 355 0.0745 0.4099 1.7600 -40 356 0.1440 0.3969 1.7600 -40 357 0.2148 0.3861 1.7600 -40 358 0.2886 0.3716 1.7600 -40 359 0.3678 0.3533 1.7600 -40 360 0.4442 0.3311 1.7600 -40 361 0.5147 0.3159 1.7600 -40 362 0.5837 0.3060 1.7600 -40 363 0.6580 0.3036 1.7600 -40 364 0.7352 0.3056 1.7600 -40 365 0.8154 0.3098 1.7600 -40 366 0.8921 0.3175 1.7600 -40 367 0.9684 0.3267 1.7600 -40 368 1.0432 0.3334 1.7600 -40 369 1.1090 0.3341 1.7600 -40 370 1.1772 0.3321 1.7600 -40 371 1.2502 0.3298 1.7600 -40 372 1.3270 0.3276 1.7600 -40 373 1.4061 0.3265 1.7600 -40 374 1.4857 0.3228 1.7600 -40 375 1.5603 0.3182 1.7600 -40 376 1.6299 0.3208 1.7600 -40 377 1.6944 0.3292 1.7600 -40 378 1.7624 0.3409 1.7600 -40 379 1.8345 0.3551 1.7600 -40 380 1.9088 0.3688 1.7600 -40 381 1.9824 0.3822 1.7600 -40 382 2.0585 0.3970 1.7600 -40 383 2.1301 0.4008 1.7600 -40 384 2.1977 0.3987 1.7600 -40 385 2.2664 0.3924 1.7600 -40 386 2.3360 0.3843 1.7600 -40 387 2.4066 0.3737 1.7600 -40 388 2.4865 0.3634 1.7600 -40 389 2.5592 0.3553 1.7600 -40 390 2.6280 0.3531 1.7600 -40 391 2.6956 0.3553 1.7600 -40 392 2.7639 0.3613 1.7600 -40 393 2.8290 0.3703 1.7600 -40 394 2.8980 0.3770 1.7600 -40 395 2.9710 0.3863 1.7600 -40 396 3.0439 0.3945 1.7600 -40 397 3.1126 0.3951 1.7600 -40 398 3.1781 0.3887 1.7600 -40 399 3.2489 0.3796 1.7600 -40 400 3.3180 0.3726 1.7600 -40 401 3.3856 0.3607 1.7600 -40 402 3.4559 0.3428 1.7600 -40 403 3.5297 0.3201 1.7600 -40 404 3.6013 0.3077 1.7600 -40 405 3.6723 0.3022 1.7600 -40 406 3.7461 0.3019 1.7600 -40 407 3.8281 0.3020 1.7600 -40 408 3.9165 0.3051 1.7600 -40 409 4.0060 0.3043 1.7600 -40 410 4.0867 0.2954 1.7600 -40 411 4.1597 0.2784 1.7600 -40 412 4.2350 0.2563 1.7600 -40 413 4.3143 0.2318 1.7600 -40 414 4.3996 0.2019 1.7600 -40 415 4.4880 0.1664 1.7600 -40 416 4.5786 0.1334 1.7600 -40 417 4.6620 0.1096 1.7600 -40 418 4.7376 0.0944 1.7600 -40 419 4.8147 0.0802 1.7600 -40 420 4.8948 0.0654 1.7600 -40 421 4.9843 0.0474 1.7600 -40 422 5.0772 0.0290 1.7600 -40 423 5.1772 0.0054 1.7600 -40 424 5.2637 -0.0268 1.7600 -40 425 5.3424 -0.0613 1.7600 -40 426 5.4180 -0.0921 1.7600 -40 427 5.4974 -0.1223 1.7600 -40 428 5.5886 -0.1522 1.7600 -40 429 5.6897 -0.1849 1.7600 -40 430 5.7900 -0.2034 1.7600 -40 431 5.8791 -0.2088 1.7600 -40 432 5.9583 -0.2048 1.7600 -41 235 -7.8292 1.8645 1.7600 -41 236 -7.7561 1.8681 1.7600 -41 237 -7.6849 1.8737 1.7600 -41 238 -7.6182 1.8824 1.7600 -41 239 -7.5566 1.8936 1.7600 -41 240 -7.4994 1.9028 1.7600 -41 241 -7.4459 1.9048 1.7600 -41 242 -7.3910 1.8988 1.7600 -41 243 -7.3312 1.8866 1.7600 -41 244 -7.2658 1.8703 1.7600 -41 245 -7.2078 1.8536 1.7600 -41 246 -7.1415 1.8382 1.7600 -41 247 -7.0750 1.8218 1.7600 -41 248 -7.0099 1.8025 1.7600 -41 249 -6.9480 1.7829 1.7600 -41 250 -6.8861 1.7676 1.7600 -41 251 -6.8242 1.7593 1.7600 -41 252 -6.7572 1.7536 1.7600 -41 253 -6.6875 1.7485 1.7600 -41 254 -6.6157 1.7393 1.7600 -41 255 -6.5400 1.7302 1.7600 -41 256 -6.4664 1.7210 1.7600 -41 257 -6.3939 1.7140 1.7600 -41 258 -6.3269 1.7105 1.7600 -41 259 -6.2632 1.7062 1.7600 -41 260 -6.2019 1.6932 1.7600 -41 261 -6.1437 1.6732 1.7600 -41 262 -6.0821 1.6447 1.7600 -41 263 -6.0167 1.6177 1.7600 -41 264 -5.9515 1.5941 1.7600 -41 265 -5.8832 1.5684 1.7600 -41 266 -5.8208 1.5426 1.7600 -41 267 -5.7595 1.5148 1.7600 -41 268 -5.7024 1.4933 1.7600 -41 269 -5.6459 1.4814 1.7600 -41 270 -5.5908 1.4721 1.7600 -41 271 -5.5364 1.4643 1.7600 -41 272 -5.4811 1.4555 1.7600 -41 273 -5.4254 1.4491 1.7600 -41 274 -5.3703 1.4427 1.7600 -41 275 -5.3141 1.4378 1.7600 -41 276 -5.2599 1.4348 1.7600 -41 277 -5.2073 1.4330 1.7600 -41 278 -5.1567 1.4332 1.7600 -41 279 -5.1064 1.4275 1.7600 -41 280 -5.0579 1.4161 1.7600 -41 281 -5.0110 1.4040 1.7600 -41 282 -4.9646 1.3943 1.7600 -41 283 -4.9187 1.3849 1.7600 -41 284 -4.8743 1.3747 1.7600 -41 285 -4.8260 1.3628 1.7600 -41 286 -4.7837 1.3511 1.7600 -41 287 -4.7377 1.3364 1.7600 -41 288 -4.6938 1.3224 1.7600 -41 289 -4.6503 1.3114 1.7600 -41 290 -4.6071 1.3037 1.7600 -41 291 -4.5616 1.2985 1.7600 -41 292 -4.5182 1.2965 1.7600 -41 293 -4.4773 1.2944 1.7600 -41 294 -4.4348 1.2958 1.7600 -41 295 -4.3895 1.2992 1.7600 -41 296 -4.3432 1.3052 1.7600 -41 297 -4.2941 1.3138 1.7600 -41 298 -4.2464 1.3252 1.7600 -41 299 -4.1935 1.3363 1.7600 -41 300 -4.1452 1.3473 1.7600 -41 301 -4.0943 1.3519 1.7600 -41 302 -4.0461 1.3525 1.7600 -41 303 -3.9947 1.3490 1.7600 -41 304 -3.9428 1.3463 1.7600 -41 305 -3.8896 1.3406 1.7600 -41 306 -3.8316 1.3326 1.7600 -41 307 -3.7721 1.3231 1.7600 -41 308 -3.7120 1.3113 1.7600 -41 309 -3.6468 1.3026 1.7600 -41 310 -3.5843 1.2967 1.7600 -41 311 -3.5226 1.2944 1.7600 -41 312 -3.4654 1.2941 1.7600 -41 313 -3.4082 1.2948 1.7600 -41 314 -3.3502 1.2960 1.7600 -41 315 -3.2929 1.2979 1.7600 -41 316 -3.2332 1.3031 1.7600 -41 317 -3.1684 1.3103 1.7600 -41 318 -3.1027 1.3193 1.7600 -41 319 -3.0330 1.3306 1.7600 -41 320 -2.9676 1.3378 1.7600 -41 321 -2.9083 1.3401 1.7600 -41 322 -2.8503 1.3384 1.7600 -41 323 -2.7921 1.3354 1.7600 -41 324 -2.7325 1.3330 1.7600 -41 325 -2.6753 1.3320 1.7600 -41 326 -2.6143 1.3256 1.7600 -41 327 -2.5494 1.3161 1.7600 -41 328 -2.4792 1.3070 1.7600 -41 329 -2.4079 1.2972 1.7600 -41 330 -2.3392 1.2955 1.7600 -41 331 -2.2694 1.2984 1.7600 -41 332 -2.2041 1.3044 1.7600 -41 333 -2.1400 1.3116 1.7600 -41 334 -2.0795 1.3210 1.7600 -41 335 -2.0191 1.3316 1.7600 -41 336 -1.9459 1.3421 1.7600 -41 337 -1.8796 1.3553 1.7600 -41 338 -1.8033 1.3704 1.7600 -41 339 -1.7284 1.3843 1.7600 -41 340 -1.6579 1.3939 1.7600 -41 341 -1.5905 1.3993 1.7600 -41 342 -1.5269 1.4040 1.7600 -41 343 -1.4651 1.4130 1.7600 -41 344 -1.4012 1.4265 1.7600 -41 345 -1.3337 1.4280 1.7600 -41 346 -1.2634 1.4254 1.7600 -41 347 -1.1895 1.4176 1.7600 -41 348 -1.1131 1.4028 1.7600 -41 349 -1.0356 1.3899 1.7600 -41 350 -0.9655 1.3905 1.7600 -41 351 -0.8973 1.3960 1.7600 -41 352 -0.8263 1.4021 1.7600 -41 353 -0.7552 1.4112 1.7600 -41 354 -0.6858 1.4182 1.7600 -41 355 -0.6150 1.4236 1.7600 -41 356 -0.5405 1.4241 1.7600 -41 357 -0.4645 1.4224 1.7600 -41 358 -0.3902 1.4293 1.7600 -41 359 -0.3208 1.4376 1.7600 -41 360 -0.2529 1.4383 1.7600 -41 361 -0.1857 1.4326 1.7600 -41 362 -0.1188 1.4257 1.7600 -41 363 -0.0535 1.4168 1.7600 -41 364 0.0189 1.4093 1.7600 -41 365 0.0948 1.3967 1.7600 -41 366 0.1739 1.3789 1.7600 -41 367 0.2350 1.3685 1.7600 -41 368 0.3023 1.3638 1.7600 -41 369 0.3681 1.3678 1.7600 -41 370 0.4364 1.3730 1.7600 -41 371 0.5008 1.3792 1.7600 -41 372 0.5677 1.3830 1.7600 -41 373 0.6376 1.3843 1.7600 -41 374 0.7073 1.3877 1.7600 -41 375 0.7785 1.3921 1.7600 -41 376 0.8511 1.4039 1.7600 -41 377 0.9199 1.4182 1.7600 -41 378 0.9852 1.4293 1.7600 -41 379 1.0471 1.4326 1.7600 -41 380 1.1082 1.4272 1.7600 -41 381 1.1712 1.4168 1.7600 -41 382 1.2353 1.4079 1.7600 -41 383 1.3018 1.4016 1.7600 -41 384 1.3697 1.3942 1.7600 -41 385 1.4392 1.3877 1.7600 -41 386 1.5082 1.3883 1.7600 -41 387 1.5717 1.3940 1.7600 -41 388 1.6352 1.3964 1.7600 -41 389 1.6978 1.4004 1.7600 -41 390 1.7612 1.4018 1.7600 -41 391 1.8228 1.4055 1.7600 -41 392 1.8881 1.4079 1.7600 -41 393 1.9529 1.4122 1.7600 -41 394 2.0234 1.4190 1.7600 -41 395 2.0943 1.4287 1.7600 -41 396 2.1665 1.4365 1.7600 -41 397 2.2355 1.4392 1.7600 -41 398 2.2987 1.4411 1.7600 -41 399 2.3578 1.4379 1.7600 -41 400 2.4181 1.4332 1.7600 -41 401 2.4768 1.4287 1.7600 -41 402 2.5354 1.4199 1.7600 -41 403 2.5974 1.4146 1.7600 -41 404 2.6596 1.4078 1.7600 -41 405 2.7252 1.3984 1.7600 -41 406 2.7875 1.3915 1.7600 -41 407 2.8505 1.3899 1.7600 -41 408 2.9110 1.3914 1.7600 -41 409 2.9722 1.3910 1.7600 -41 410 3.0339 1.3922 1.7600 -41 411 3.0949 1.3954 1.7600 -41 412 3.1554 1.3982 1.7600 -41 413 3.2162 1.4047 1.7600 -41 414 3.2849 1.4094 1.7600 -41 415 3.3534 1.4151 1.7600 -41 416 3.4165 1.4166 1.7600 -41 417 3.4773 1.4127 1.7600 -41 418 3.5367 1.4090 1.7600 -41 419 3.5927 1.4025 1.7600 -41 420 3.6489 1.3980 1.7600 -41 421 3.7034 1.3898 1.7600 -41 422 3.7592 1.3809 1.7600 -41 423 3.8181 1.3635 1.7600 -41 424 3.8849 1.3477 1.7600 -41 425 3.9558 1.3342 1.7600 -41 426 4.0238 1.3292 1.7600 -41 427 4.0889 1.3295 1.7600 -41 428 4.1463 1.3324 1.7600 -41 429 4.2036 1.3355 1.7600 -41 430 4.2610 1.3377 1.7600 -41 431 4.3182 1.3430 1.7600 -41 432 4.3804 1.3548 1.7600 -41 433 4.4518 1.3676 1.7600 -41 434 4.5283 1.3811 1.7600 -41 435 4.6038 1.3840 1.7600 -41 436 4.6772 1.3801 1.7600 -41 437 4.7437 1.3680 1.7600 -41 438 4.8062 1.3559 1.7600 -41 439 4.8692 1.3511 1.7600 -41 440 4.9330 1.3534 1.7600 -41 441 5.0078 1.3512 1.7600 -41 442 5.0912 1.3427 1.7600 -41 443 5.1760 1.3317 1.7600 -41 444 5.2608 1.3350 1.7600 -41 445 5.3431 1.3530 1.7600 -41 446 5.4187 1.3702 1.7600 -41 447 5.4898 1.3874 1.7600 -41 448 5.5612 1.4053 1.7600 -41 449 5.6291 1.4201 1.7600 -41 450 5.7056 1.4342 1.7600 -41 451 5.7927 1.4525 1.7600 -41 452 5.8819 1.4726 1.7600 -42 244 -7.7878 1.6210 1.7600 -42 245 -7.7123 1.6212 1.7600 -42 246 -7.6397 1.6195 1.7600 -42 247 -7.5713 1.6117 1.7600 -42 248 -7.5042 1.5980 1.7600 -42 249 -7.4361 1.5812 1.7600 -42 250 -7.3641 1.5638 1.7600 -42 251 -7.2882 1.5460 1.7600 -42 252 -7.2111 1.5269 1.7600 -42 253 -7.1389 1.5055 1.7600 -42 254 -7.0732 1.4835 1.7600 -42 255 -7.0083 1.4662 1.7600 -42 256 -6.9427 1.4555 1.7600 -42 257 -6.8747 1.4480 1.7600 -42 258 -6.8032 1.4404 1.7600 -42 259 -6.7280 1.4332 1.7600 -42 260 -6.6510 1.4261 1.7600 -42 261 -6.5753 1.4195 1.7600 -42 262 -6.5048 1.4144 1.7600 -42 263 -6.4355 1.4090 1.7600 -42 264 -6.3692 1.4016 1.7600 -42 265 -6.3055 1.3854 1.7600 -42 266 -6.2427 1.3646 1.7600 -42 267 -6.1767 1.3451 1.7600 -42 268 -6.1113 1.3229 1.7600 -42 269 -6.0445 1.3002 1.7600 -42 270 -5.9763 1.2761 1.7600 -42 271 -5.9116 1.2521 1.7600 -42 272 -5.8524 1.2259 1.7600 -42 273 -5.7879 1.2085 1.7600 -42 274 -5.7278 1.1988 1.7600 -42 275 -5.6681 1.1954 1.7600 -42 276 -5.6117 1.1906 1.7600 -42 277 -5.5534 1.1872 1.7600 -42 278 -5.4978 1.1832 1.7600 -42 279 -5.4391 1.1824 1.7600 -42 280 -5.3833 1.1831 1.7600 -42 281 -5.3264 1.1861 1.7600 -42 282 -5.2685 1.1866 1.7600 -42 283 -5.2146 1.1776 1.7600 -42 284 -5.1615 1.1599 1.7600 -42 285 -5.1106 1.1416 1.7600 -42 286 -5.0580 1.1230 1.7600 -42 287 -5.0066 1.1034 1.7600 -42 288 -4.9570 1.0843 1.7600 -42 289 -4.9130 1.0657 1.7600 -42 290 -4.8702 1.0451 1.7600 -42 291 -4.8287 1.0312 1.7600 -42 292 -4.7884 1.0209 1.7600 -42 293 -4.7452 1.0151 1.7600 -42 294 -4.6993 1.0118 1.7600 -42 295 -4.6463 1.0098 1.7600 -42 296 -4.5952 1.0106 1.7600 -42 297 -4.5464 1.0144 1.7600 -42 298 -4.4937 1.0232 1.7600 -42 299 -4.4441 1.0363 1.7600 -42 300 -4.3921 1.0477 1.7600 -42 301 -4.3410 1.0526 1.7600 -42 302 -4.2887 1.0528 1.7600 -42 303 -4.2360 1.0492 1.7600 -42 304 -4.1835 1.0447 1.7600 -42 305 -4.1317 1.0398 1.7600 -42 306 -4.0774 1.0371 1.7600 -42 307 -4.0206 1.0317 1.7600 -42 308 -3.9627 1.0215 1.7600 -42 309 -3.9069 1.0070 1.7600 -42 310 -3.8455 0.9913 1.7600 -42 311 -3.7841 0.9842 1.7600 -42 312 -3.7229 0.9850 1.7600 -42 313 -3.6594 0.9890 1.7600 -42 314 -3.5962 0.9925 1.7600 -42 315 -3.5346 0.9948 1.7600 -42 316 -3.4698 0.9999 1.7600 -42 317 -3.4054 1.0063 1.7600 -42 318 -3.3387 1.0148 1.7600 -42 319 -3.2732 1.0259 1.7600 -42 320 -3.2100 1.0348 1.7600 -42 321 -3.1490 1.0349 1.7600 -42 322 -3.0903 1.0313 1.7600 -42 323 -3.0314 1.0256 1.7600 -42 324 -2.9692 1.0218 1.7600 -42 325 -2.9049 1.0199 1.7600 -42 326 -2.8429 1.0146 1.7600 -42 327 -2.7797 1.0081 1.7600 -42 328 -2.7152 1.0001 1.7600 -42 329 -2.6470 1.0002 1.7600 -42 330 -2.5810 1.0077 1.7600 -42 331 -2.5154 1.0169 1.7600 -42 332 -2.4503 1.0266 1.7600 -42 333 -2.3858 1.0360 1.7600 -42 334 -2.3216 1.0425 1.7600 -42 335 -2.2547 1.0543 1.7600 -42 336 -2.1871 1.0679 1.7600 -42 337 -2.1203 1.0773 1.7600 -42 338 -2.0569 1.0797 1.7600 -42 339 -1.9932 1.0776 1.7600 -42 340 -1.9281 1.0744 1.7600 -42 341 -1.8612 1.0720 1.7600 -42 342 -1.7931 1.0701 1.7600 -42 343 -1.7231 1.0694 1.7600 -42 344 -1.6490 1.0643 1.7600 -42 345 -1.5758 1.0595 1.7600 -42 346 -1.5020 1.0593 1.7600 -42 347 -1.4300 1.0650 1.7600 -42 348 -1.3612 1.0743 1.7600 -42 349 -1.2932 1.0829 1.7600 -42 350 -1.2261 1.0911 1.7600 -42 351 -1.1596 1.1001 1.7600 -42 352 -1.0934 1.1081 1.7600 -42 353 -1.0259 1.1170 1.7600 -42 354 -0.9581 1.1242 1.7600 -42 355 -0.8889 1.1263 1.7600 -42 356 -0.8214 1.1208 1.7600 -42 357 -0.7527 1.1128 1.7600 -42 358 -0.6843 1.1037 1.7600 -42 359 -0.6143 1.0969 1.7600 -42 360 -0.5428 1.0884 1.7600 -42 361 -0.4729 1.0808 1.7600 -42 362 -0.4043 1.0725 1.7600 -42 363 -0.3353 1.0673 1.7600 -42 364 -0.2680 1.0662 1.7600 -42 365 -0.2017 1.0699 1.7600 -42 366 -0.1336 1.0724 1.7600 -42 367 -0.0652 1.0773 1.7600 -42 368 0.0016 1.0820 1.7600 -42 369 0.0706 1.0905 1.7600 -42 370 0.1381 1.0995 1.7600 -42 371 0.2038 1.1071 1.7600 -42 372 0.2677 1.1135 1.7600 -42 373 0.3325 1.1155 1.7600 -42 374 0.3965 1.1137 1.7600 -42 375 0.4633 1.1137 1.7600 -42 376 0.5324 1.1163 1.7600 -42 377 0.5997 1.1157 1.7600 -42 378 0.6680 1.1160 1.7600 -42 379 0.7360 1.1162 1.7600 -42 380 0.8031 1.1165 1.7600 -42 381 0.8686 1.1212 1.7600 -42 382 0.9341 1.1268 1.7600 -42 383 0.9981 1.1343 1.7600 -42 384 1.0628 1.1407 1.7600 -42 385 1.1289 1.1470 1.7600 -42 386 1.1959 1.1513 1.7600 -42 387 1.2613 1.1584 1.7600 -42 388 1.3259 1.1661 1.7600 -42 389 1.3937 1.1729 1.7600 -42 390 1.4569 1.1741 1.7600 -42 391 1.5200 1.1711 1.7600 -42 392 1.5800 1.1648 1.7600 -42 393 1.6417 1.1607 1.7600 -42 394 1.7035 1.1564 1.7600 -42 395 1.7696 1.1506 1.7600 -42 396 1.8353 1.1450 1.7600 -42 397 1.9036 1.1379 1.7600 -42 398 1.9736 1.1327 1.7600 -42 399 2.0406 1.1311 1.7600 -42 400 2.1055 1.1362 1.7600 -42 401 2.1689 1.1398 1.7600 -42 402 2.2349 1.1433 1.7600 -42 403 2.2997 1.1472 1.7600 -42 404 2.3650 1.1518 1.7600 -42 405 2.4309 1.1581 1.7600 -42 406 2.4928 1.1598 1.7600 -42 407 2.5545 1.1603 1.7600 -42 408 2.6140 1.1573 1.7600 -42 409 2.6732 1.1524 1.7600 -42 410 2.7291 1.1457 1.7600 -42 411 2.7889 1.1377 1.7600 -42 412 2.8468 1.1288 1.7600 -42 413 2.9086 1.1175 1.7600 -42 414 2.9713 1.1074 1.7600 -42 415 3.0345 1.0969 1.7600 -42 416 3.1001 1.0899 1.7600 -42 417 3.1674 1.0890 1.7600 -42 418 3.2349 1.0904 1.7600 -42 419 3.3008 1.0928 1.7600 -42 420 3.3669 1.0995 1.7600 -42 421 3.4347 1.1058 1.7600 -42 422 3.5061 1.1124 1.7600 -42 423 3.5758 1.1197 1.7600 -42 424 3.6428 1.1204 1.7600 -42 425 3.7112 1.1133 1.7600 -42 426 3.7785 1.1011 1.7600 -42 427 3.8413 1.0859 1.7600 -42 428 3.9081 1.0721 1.7600 -42 429 3.9726 1.0598 1.7600 -42 430 4.0422 1.0459 1.7600 -42 431 4.1188 1.0303 1.7600 -42 432 4.1953 1.0140 1.7600 -42 433 4.2717 1.0019 1.7600 -42 434 4.3482 0.9964 1.7600 -42 435 4.4173 0.9961 1.7600 -42 436 4.4868 0.9977 1.7600 -42 437 4.5533 1.0001 1.7600 -42 438 4.6197 1.0017 1.7600 -42 439 4.6904 1.0013 1.7600 -42 440 4.7722 1.0022 1.7600 -42 441 4.8557 1.0024 1.7600 -42 442 4.9400 0.9981 1.7600 -42 443 5.0200 0.9866 1.7600 -42 444 5.0923 0.9774 1.7600 -42 445 5.1643 0.9684 1.7600 -42 446 5.2317 0.9625 1.7600 -42 447 5.3015 0.9556 1.7600 -42 448 5.3734 0.9473 1.7600 -42 449 5.4473 0.9371 1.7600 -42 450 5.5307 0.9289 1.7600 -42 451 5.6144 0.9311 1.7600 -42 452 5.6915 0.9405 1.7600 -42 453 5.7645 0.9497 1.7600 -42 454 5.8313 0.9582 1.7600 -42 455 5.8989 0.9679 1.7600 -43 252 -7.7825 2.0520 1.7600 -43 253 -7.7178 2.0502 1.7600 -43 254 -7.6481 2.0490 1.7600 -43 255 -7.5723 2.0482 1.7600 -43 256 -7.4922 2.0507 1.7600 -43 257 -7.4136 2.0598 1.7600 -43 258 -7.3420 2.0759 1.7600 -43 259 -7.2772 2.0956 1.7600 -43 260 -7.2187 2.1077 1.7600 -43 261 -7.1653 2.1099 1.7600 -43 262 -7.1118 2.1056 1.7600 -43 263 -7.0543 2.0970 1.7600 -43 264 -6.9921 2.0855 1.7600 -43 265 -6.9246 2.0705 1.7600 -43 266 -6.8582 2.0515 1.7600 -43 267 -6.7921 2.0280 1.7600 -43 268 -6.7275 2.0005 1.7600 -43 269 -6.6626 1.9693 1.7600 -43 270 -6.5996 1.9416 1.7600 -43 271 -6.5339 1.9196 1.7600 -43 272 -6.4709 1.9030 1.7600 -43 273 -6.4039 1.8876 1.7600 -43 274 -6.3320 1.8701 1.7600 -43 275 -6.2557 1.8567 1.7600 -43 276 -6.1789 1.8456 1.7600 -43 277 -6.1010 1.8453 1.7600 -43 278 -6.0268 1.8539 1.7600 -43 279 -5.9609 1.8591 1.7600 -43 280 -5.9110 1.8580 1.7600 -43 281 -5.8653 1.8491 1.7600 -43 282 -5.8207 1.8363 1.7600 -43 283 -5.7732 1.8216 1.7600 -43 284 -5.7190 1.8061 1.7600 -43 285 -5.6629 1.7857 1.7600 -43 286 -5.6069 1.7573 1.7600 -43 287 -5.5585 1.7215 1.7600 -43 288 -5.5096 1.6803 1.7600 -43 289 -5.4622 1.6394 1.7600 -43 290 -5.4144 1.6055 1.7600 -43 291 -5.3618 1.5857 1.7600 -43 292 -5.3079 1.5694 1.7600 -43 293 -5.2537 1.5596 1.7600 -43 294 -5.1959 1.5533 1.7600 -43 295 -5.1376 1.5521 1.7600 -43 296 -5.0761 1.5566 1.7600 -43 297 -5.0142 1.5696 1.7600 -43 298 -4.9539 1.5861 1.7600 -43 299 -4.9038 1.6012 1.7600 -43 300 -4.8557 1.6115 1.7600 -43 301 -4.8096 1.6161 1.7600 -43 302 -4.7645 1.6131 1.7600 -43 303 -4.7157 1.6102 1.7600 -43 304 -4.6638 1.5994 1.7600 -43 305 -4.6098 1.5876 1.7600 -43 306 -4.5570 1.5689 1.7600 -43 307 -4.5081 1.5446 1.7600 -43 308 -4.4616 1.5155 1.7600 -43 309 -4.4213 1.4836 1.7600 -43 310 -4.3845 1.4529 1.7600 -43 311 -4.3412 1.4293 1.7600 -43 312 -4.2951 1.4134 1.7600 -43 313 -4.2484 1.4054 1.7600 -43 314 -4.1947 1.4028 1.7600 -43 315 -4.1427 1.4056 1.7600 -43 316 -4.0841 1.4141 1.7600 -43 317 -4.0280 1.4321 1.7600 -43 318 -3.9678 1.4542 1.7600 -43 319 -3.9119 1.4769 1.7600 -43 320 -3.8563 1.4948 1.7600 -43 321 -3.8050 1.5060 1.7600 -43 322 -3.7527 1.5118 1.7600 -43 323 -3.7022 1.5160 1.7600 -43 324 -3.6513 1.5109 1.7600 -43 325 -3.5946 1.5054 1.7600 -43 326 -3.5372 1.4953 1.7600 -43 327 -3.4745 1.4808 1.7600 -43 328 -3.4042 1.4625 1.7600 -43 329 -3.3285 1.4382 1.7600 -43 330 -3.2480 1.4157 1.7600 -43 331 -3.1677 1.4056 1.7600 -43 332 -3.0903 1.4018 1.7600 -43 333 -3.0164 1.4007 1.7600 -43 334 -2.9487 1.4013 1.7600 -43 335 -2.8833 1.4067 1.7600 -43 336 -2.8165 1.4172 1.7600 -43 337 -2.7464 1.4321 1.7600 -43 338 -2.6804 1.4504 1.7600 -43 339 -2.6157 1.4676 1.7600 -43 340 -2.5508 1.4727 1.7600 -43 341 -2.4952 1.4757 1.7600 -43 342 -2.4452 1.4776 1.7600 -43 343 -2.3949 1.4783 1.7600 -43 344 -2.3344 1.4810 1.7600 -43 345 -2.2749 1.4764 1.7600 -43 346 -2.2108 1.4632 1.7600 -43 347 -2.1430 1.4517 1.7600 -43 348 -2.0689 1.4340 1.7600 -43 349 -1.9942 1.4161 1.7600 -43 350 -1.9260 1.4039 1.7600 -43 351 -1.8613 1.4028 1.7600 -43 352 -1.7984 1.4019 1.7600 -43 353 -1.7365 1.4025 1.7600 -43 354 -1.6746 1.4064 1.7600 -43 355 -1.6175 1.4188 1.7600 -43 356 -1.5484 1.4316 1.7600 -43 357 -1.4766 1.4518 1.7600 -43 358 -1.4172 1.4766 1.7600 -43 359 -1.3618 1.4941 1.7600 -43 360 -1.3076 1.5041 1.7600 -43 361 -1.2531 1.5084 1.7600 -43 362 -1.1988 1.5098 1.7600 -43 363 -1.1422 1.5085 1.7600 -43 364 -1.0824 1.5025 1.7600 -43 365 -1.0180 1.4909 1.7600 -43 366 -0.9487 1.4771 1.7600 -43 367 -0.8733 1.4615 1.7600 -43 368 -0.8002 1.4436 1.7600 -43 369 -0.7306 1.4321 1.7600 -43 370 -0.6641 1.4249 1.7600 -43 371 -0.5979 1.4261 1.7600 -43 372 -0.5294 1.4276 1.7600 -43 373 -0.4576 1.4344 1.7600 -43 374 -0.3867 1.4411 1.7600 -43 375 -0.3217 1.4542 1.7600 -43 376 -0.2530 1.4726 1.7600 -43 377 -0.1861 1.4895 1.7600 -43 378 -0.1270 1.5071 1.7600 -43 379 -0.0696 1.5168 1.7600 -43 380 -0.0111 1.5208 1.7600 -43 381 0.0494 1.5212 1.7600 -43 382 0.1105 1.5200 1.7600 -43 383 0.1719 1.5223 1.7600 -43 384 0.2393 1.5132 1.7600 -43 385 0.3092 1.5003 1.7600 -43 386 0.3777 1.4857 1.7600 -43 387 0.4504 1.4683 1.7600 -43 388 0.5114 1.4611 1.7600 -43 389 0.5773 1.4585 1.7600 -43 390 0.6421 1.4618 1.7600 -43 391 0.7066 1.4686 1.7600 -43 392 0.7732 1.4739 1.7600 -43 393 0.8369 1.4809 1.7600 -43 394 0.9045 1.4905 1.7600 -43 395 0.9722 1.5051 1.7600 -43 396 1.0391 1.5243 1.7600 -43 397 1.1042 1.5453 1.7600 -43 398 1.1650 1.5580 1.7600 -43 399 1.2269 1.5646 1.7600 -43 400 1.2862 1.5660 1.7600 -43 401 1.3485 1.5649 1.7600 -43 402 1.4119 1.5624 1.7600 -43 403 1.4778 1.5573 1.7600 -43 404 1.5438 1.5505 1.7600 -43 405 1.6148 1.5380 1.7600 -43 406 1.6826 1.5265 1.7600 -43 407 1.7517 1.5099 1.7600 -43 408 1.8170 1.4979 1.7600 -43 409 1.8835 1.4924 1.7600 -43 410 1.9500 1.4893 1.7600 -43 411 2.0146 1.4876 1.7600 -43 412 2.0783 1.4880 1.7600 -43 413 2.1434 1.4913 1.7600 -43 414 2.2072 1.4958 1.7600 -43 415 2.2691 1.5048 1.7600 -43 416 2.3368 1.5178 1.7600 -43 417 2.4036 1.5284 1.7600 -43 418 2.4659 1.5352 1.7600 -43 419 2.5255 1.5374 1.7600 -43 420 2.5891 1.5341 1.7600 -43 421 2.6490 1.5288 1.7600 -43 422 2.7098 1.5228 1.7600 -43 423 2.7691 1.5120 1.7600 -43 424 2.8338 1.4980 1.7600 -43 425 2.9002 1.4819 1.7600 -43 426 2.9698 1.4615 1.7600 -43 427 3.0367 1.4389 1.7600 -43 428 3.1016 1.4210 1.7600 -43 429 3.1637 1.4130 1.7600 -43 430 3.2241 1.4088 1.7600 -43 431 3.2855 1.4077 1.7600 -43 432 3.3438 1.4080 1.7600 -43 433 3.4032 1.4138 1.7600 -43 434 3.4605 1.4246 1.7600 -43 435 3.5247 1.4388 1.7600 -43 436 3.5961 1.4569 1.7600 -43 437 3.6698 1.4748 1.7600 -43 438 3.7392 1.4899 1.7600 -43 439 3.8077 1.5015 1.7600 -43 440 3.8792 1.5098 1.7600 -43 441 3.9467 1.5171 1.7600 -43 442 4.0133 1.5216 1.7600 -43 443 4.0827 1.5216 1.7600 -43 444 4.1523 1.5220 1.7600 -43 445 4.2378 1.5171 1.7600 -43 446 4.3326 1.5082 1.7600 -43 447 4.4230 1.4969 1.7600 -43 448 4.5084 1.4905 1.7600 -43 449 4.5907 1.4958 1.7600 -43 450 4.6704 1.5046 1.7600 -43 451 4.7437 1.5165 1.7600 -43 452 4.8159 1.5307 1.7600 -43 453 4.8899 1.5517 1.7600 -43 454 4.9684 1.5850 1.7600 -43 455 5.0585 1.6233 1.7600 -43 456 5.1409 1.6623 1.7600 -43 457 5.2161 1.6834 1.7600 -43 458 5.2848 1.6945 1.7600 -43 459 5.3500 1.7004 1.7600 -43 460 5.4142 1.7065 1.7600 -43 461 5.4825 1.7093 1.7600 -43 462 5.5538 1.7046 1.7600 -43 463 5.6384 1.6943 1.7600 -43 464 5.7396 1.6824 1.7600 -43 465 5.8325 1.6752 1.7600 -43 466 5.9186 1.6779 1.7600 -44 255 -7.7915 0.8637 1.7600 -44 256 -7.7255 0.8296 1.7600 -44 257 -7.6571 0.7929 1.7600 -44 258 -7.5877 0.7502 1.7600 -44 259 -7.5200 0.6995 1.7600 -44 260 -7.4570 0.6475 1.7600 -44 261 -7.4001 0.6031 1.7600 -44 262 -7.3466 0.5717 1.7600 -44 263 -7.2878 0.5485 1.7600 -44 264 -7.2213 0.5277 1.7600 -44 265 -7.1490 0.5098 1.7600 -44 266 -7.0724 0.4972 1.7600 -44 267 -6.9955 0.4919 1.7600 -44 268 -6.9207 0.4952 1.7600 -44 269 -6.8497 0.5018 1.7600 -44 270 -6.7826 0.5026 1.7600 -44 271 -6.7170 0.4939 1.7600 -44 272 -6.6467 0.4785 1.7600 -44 273 -6.5720 0.4604 1.7600 -44 274 -6.4949 0.4405 1.7600 -44 275 -6.4167 0.4169 1.7600 -44 276 -6.3407 0.3878 1.7600 -44 277 -6.2696 0.3565 1.7600 -44 278 -6.2036 0.3324 1.7600 -44 279 -6.1378 0.3195 1.7600 -44 280 -6.0680 0.3122 1.7600 -44 281 -5.9991 0.3097 1.7600 -44 282 -5.9263 0.3070 1.7600 -44 283 -5.8514 0.3100 1.7600 -44 284 -5.7805 0.3198 1.7600 -44 285 -5.7158 0.3340 1.7600 -44 286 -5.6570 0.3437 1.7600 -44 287 -5.5993 0.3399 1.7600 -44 288 -5.5430 0.3313 1.7600 -44 289 -5.4859 0.3224 1.7600 -44 290 -5.4245 0.3114 1.7600 -44 291 -5.3592 0.2973 1.7600 -44 292 -5.2935 0.2779 1.7600 -44 293 -5.2267 0.2526 1.7600 -44 294 -5.1652 0.2268 1.7600 -44 295 -5.1083 0.2085 1.7600 -44 296 -5.0534 0.2027 1.7600 -44 297 -4.9993 0.2024 1.7600 -44 298 -4.9437 0.2033 1.7600 -44 299 -4.8895 0.2081 1.7600 -44 300 -4.8366 0.2185 1.7600 -44 301 -4.7881 0.2400 1.7600 -44 302 -4.7427 0.2649 1.7600 -44 303 -4.6973 0.2885 1.7600 -44 304 -4.6521 0.3050 1.7600 -44 305 -4.6032 0.3124 1.7600 -44 306 -4.5510 0.3126 1.7600 -44 307 -4.4971 0.3113 1.7600 -44 308 -4.4442 0.3092 1.7600 -44 309 -4.3876 0.3059 1.7600 -44 310 -4.3309 0.2989 1.7600 -44 311 -4.2672 0.2853 1.7600 -44 312 -4.2035 0.2737 1.7600 -44 313 -4.1401 0.2686 1.7600 -44 314 -4.0781 0.2724 1.7600 -44 315 -4.0125 0.2795 1.7600 -44 316 -3.9470 0.2886 1.7600 -44 317 -3.8844 0.3005 1.7600 -44 318 -3.8165 0.3151 1.7600 -44 319 -3.7481 0.3353 1.7600 -44 320 -3.6727 0.3613 1.7600 -44 321 -3.5966 0.3847 1.7600 -44 322 -3.5210 0.3982 1.7600 -44 323 -3.4517 0.4034 1.7600 -44 324 -3.3849 0.4033 1.7600 -44 325 -3.3203 0.4017 1.7600 -44 326 -3.2504 0.3973 1.7600 -44 327 -3.1790 0.3883 1.7600 -44 328 -3.0995 0.3667 1.7600 -44 329 -3.0257 0.3416 1.7600 -44 330 -2.9569 0.3195 1.7600 -44 331 -2.8895 0.3119 1.7600 -44 332 -2.8198 0.3162 1.7600 -44 333 -2.7511 0.3232 1.7600 -44 334 -2.6867 0.3298 1.7600 -44 335 -2.6205 0.3382 1.7600 -44 336 -2.5533 0.3488 1.7600 -44 337 -2.4855 0.3695 1.7600 -44 338 -2.4187 0.3898 1.7600 -44 339 -2.3550 0.4011 1.7600 -44 340 -2.2902 0.3991 1.7600 -44 341 -2.2253 0.3920 1.7600 -44 342 -2.1594 0.3842 1.7600 -44 343 -2.0928 0.3787 1.7600 -44 344 -2.0241 0.3674 1.7600 -44 345 -1.9552 0.3563 1.7600 -44 346 -1.8888 0.3427 1.7600 -44 347 -1.8283 0.3323 1.7600 -44 348 -1.7657 0.3288 1.7600 -44 349 -1.7045 0.3340 1.7600 -44 350 -1.6436 0.3430 1.7600 -44 351 -1.5816 0.3538 1.7600 -44 352 -1.5153 0.3662 1.7600 -44 353 -1.4488 0.3856 1.7600 -44 354 -1.3812 0.4098 1.7600 -44 355 -1.3191 0.4284 1.7600 -44 356 -1.2566 0.4362 1.7600 -44 357 -1.1955 0.4365 1.7600 -44 358 -1.1318 0.4339 1.7600 -44 359 -1.0645 0.4316 1.7600 -44 360 -0.9988 0.4262 1.7600 -44 361 -0.9303 0.4145 1.7600 -44 362 -0.8595 0.3934 1.7600 -44 363 -0.7878 0.3676 1.7600 -44 364 -0.7203 0.3491 1.7600 -44 365 -0.6553 0.3371 1.7600 -44 366 -0.5897 0.3310 1.7600 -44 367 -0.5222 0.3273 1.7600 -44 368 -0.4525 0.3262 1.7600 -44 369 -0.3826 0.3266 1.7600 -44 370 -0.3113 0.3354 1.7600 -44 371 -0.2426 0.3475 1.7600 -44 372 -0.1793 0.3588 1.7600 -44 373 -0.1182 0.3622 1.7600 -44 374 -0.0567 0.3588 1.7600 -44 375 0.0056 0.3525 1.7600 -44 376 0.0736 0.3465 1.7600 -44 377 0.1445 0.3428 1.7600 -44 378 0.2174 0.3358 1.7600 -44 379 0.2896 0.3248 1.7600 -44 380 0.3607 0.3081 1.7600 -44 381 0.4266 0.2974 1.7600 -44 382 0.4911 0.2936 1.7600 -44 383 0.5566 0.3009 1.7600 -44 384 0.6243 0.3074 1.7600 -44 385 0.6921 0.3163 1.7600 -44 386 0.7612 0.3308 1.7600 -44 387 0.8297 0.3461 1.7600 -44 388 0.8934 0.3682 1.7600 -44 389 0.9581 0.3915 1.7600 -44 390 1.0201 0.4013 1.7600 -44 391 1.0828 0.3997 1.7600 -44 392 1.1434 0.3940 1.7600 -44 393 1.2094 0.3895 1.7600 -44 394 1.2779 0.3814 1.7600 -44 395 1.3465 0.3722 1.7600 -44 396 1.4179 0.3577 1.7600 -44 397 1.4889 0.3370 1.7600 -44 398 1.5575 0.3179 1.7600 -44 399 1.6222 0.3096 1.7600 -44 400 1.6875 0.3085 1.7600 -44 401 1.7532 0.3112 1.7600 -44 402 1.8206 0.3161 1.7600 -44 403 1.8865 0.3261 1.7600 -44 404 1.9506 0.3394 1.7600 -44 405 2.0175 0.3606 1.7600 -44 406 2.0817 0.3818 1.7600 -44 407 2.1482 0.3955 1.7600 -44 408 2.2144 0.4000 1.7600 -44 409 2.2788 0.3978 1.7600 -44 410 2.3447 0.3959 1.7600 -44 411 2.4123 0.3968 1.7600 -44 412 2.4829 0.3924 1.7600 -44 413 2.5538 0.3837 1.7600 -44 414 2.6302 0.3677 1.7600 -44 415 2.7036 0.3451 1.7600 -44 416 2.7735 0.3327 1.7600 -44 417 2.8404 0.3279 1.7600 -44 418 2.9051 0.3303 1.7600 -44 419 2.9699 0.3345 1.7600 -44 420 3.0318 0.3406 1.7600 -44 421 3.0947 0.3474 1.7600 -44 422 3.1549 0.3613 1.7600 -44 423 3.2145 0.3797 1.7600 -44 424 3.2725 0.3946 1.7600 -44 425 3.3312 0.4047 1.7600 -44 426 3.3914 0.4070 1.7600 -44 427 3.4500 0.4055 1.7600 -44 428 3.5089 0.4034 1.7600 -44 429 3.5706 0.4021 1.7600 -44 430 3.6286 0.3969 1.7600 -44 431 3.6855 0.3838 1.7600 -44 432 3.7461 0.3631 1.7600 -44 433 3.8092 0.3341 1.7600 -44 434 3.8747 0.3097 1.7600 -44 435 3.9414 0.2998 1.7600 -44 436 4.0100 0.2934 1.7600 -44 437 4.0793 0.2898 1.7600 -44 438 4.1479 0.2857 1.7600 -44 439 4.2175 0.2838 1.7600 -44 440 4.2921 0.2832 1.7600 -44 441 4.3677 0.2844 1.7600 -44 442 4.4430 0.2861 1.7600 -44 443 4.5155 0.2796 1.7600 -44 444 4.5862 0.2653 1.7600 -44 445 4.6538 0.2464 1.7600 -44 446 4.7171 0.2248 1.7600 -44 447 4.7818 0.2008 1.7600 -44 448 4.8404 0.1731 1.7600 -44 449 4.9067 0.1364 1.7600 -44 450 4.9803 0.0926 1.7600 -44 451 5.0557 0.0586 1.7600 -44 452 5.1293 0.0404 1.7600 -44 453 5.2013 0.0338 1.7600 -44 454 5.2737 0.0283 1.7600 -44 455 5.3409 0.0221 1.7600 -44 456 5.4049 0.0246 1.7600 -44 457 5.4746 0.0317 1.7600 -44 458 5.5441 0.0468 1.7600 -44 459 5.6117 0.0620 1.7600 -44 460 5.6801 0.0670 1.7600 -44 461 5.7466 0.0629 1.7600 -44 462 5.8048 0.0524 1.7600 -44 463 5.8618 0.0415 1.7600 -44 464 5.9184 0.0307 1.7600 -45 264 -7.8170 1.8360 1.7600 -45 265 -7.7253 1.8217 1.7600 -45 266 -7.6372 1.8125 1.7600 -45 267 -7.5554 1.8022 1.7600 -45 268 -7.4826 1.7846 1.7600 -45 269 -7.4163 1.7596 1.7600 -45 270 -7.3473 1.7292 1.7600 -45 271 -7.2672 1.6949 1.7600 -45 272 -7.1803 1.6572 1.7600 -45 273 -7.0941 1.6166 1.7600 -45 274 -7.0143 1.5740 1.7600 -45 275 -6.9424 1.5331 1.7600 -45 276 -6.8733 1.4963 1.7600 -45 277 -6.8092 1.4702 1.7600 -45 278 -6.7424 1.4435 1.7600 -45 279 -6.6727 1.4170 1.7600 -45 280 -6.5957 1.3915 1.7600 -45 281 -6.5129 1.3683 1.7600 -45 282 -6.4285 1.3504 1.7600 -45 283 -6.3420 1.3352 1.7600 -45 284 -6.2644 1.3216 1.7600 -45 285 -6.1926 1.3007 1.7600 -45 286 -6.1296 1.2781 1.7600 -45 287 -6.0651 1.2518 1.7600 -45 288 -5.9952 1.2257 1.7600 -45 289 -5.9232 1.1976 1.7600 -45 290 -5.8552 1.1663 1.7600 -45 291 -5.7872 1.1317 1.7600 -45 292 -5.7263 1.0979 1.7600 -45 293 -5.6654 1.0672 1.7600 -45 294 -5.6090 1.0437 1.7600 -45 295 -5.5533 1.0291 1.7600 -45 296 -5.4950 1.0186 1.7600 -45 297 -5.4375 1.0129 1.7600 -45 298 -5.3781 1.0117 1.7600 -45 299 -5.3204 1.0154 1.7600 -45 300 -5.2661 1.0251 1.7600 -45 301 -5.2141 1.0413 1.7600 -45 302 -5.1606 1.0547 1.7600 -45 303 -5.1061 1.0639 1.7600 -45 304 -5.0539 1.0654 1.7600 -45 305 -4.9984 1.0646 1.7600 -45 306 -4.9432 1.0610 1.7600 -45 307 -4.8861 1.0558 1.7600 -45 308 -4.8277 1.0443 1.7600 -45 309 -4.7717 1.0269 1.7600 -45 310 -4.7142 1.0031 1.7600 -45 311 -4.6533 0.9768 1.7600 -45 312 -4.5987 0.9544 1.7600 -45 313 -4.5452 0.9370 1.7600 -45 314 -4.4883 0.9233 1.7600 -45 315 -4.4330 0.9128 1.7600 -45 316 -4.3737 0.9054 1.7600 -45 317 -4.3124 0.8990 1.7600 -45 318 -4.2468 0.8975 1.7600 -45 319 -4.1822 0.9027 1.7600 -45 320 -4.1196 0.9143 1.7600 -45 321 -4.0542 0.9246 1.7600 -45 322 -3.9923 0.9322 1.7600 -45 323 -3.9293 0.9351 1.7600 -45 324 -3.8639 0.9339 1.7600 -45 325 -3.7965 0.9325 1.7600 -45 326 -3.7251 0.9293 1.7600 -45 327 -3.6544 0.9213 1.7600 -45 328 -3.5809 0.9054 1.7600 -45 329 -3.5042 0.8870 1.7600 -45 330 -3.4270 0.8742 1.7600 -45 331 -3.3536 0.8685 1.7600 -45 332 -3.2790 0.8706 1.7600 -45 333 -3.2033 0.8736 1.7600 -45 334 -3.1276 0.8780 1.7600 -45 335 -3.0483 0.8898 1.7600 -45 336 -2.9732 0.9026 1.7600 -45 337 -2.9014 0.9189 1.7600 -45 338 -2.8217 0.9364 1.7600 -45 339 -2.7463 0.9480 1.7600 -45 340 -2.6724 0.9528 1.7600 -45 341 -2.6051 0.9513 1.7600 -45 342 -2.5393 0.9473 1.7600 -45 343 -2.4761 0.9401 1.7600 -45 344 -2.4155 0.9308 1.7600 -45 345 -2.3568 0.9159 1.7600 -45 346 -2.2911 0.8961 1.7600 -45 347 -2.2245 0.8802 1.7600 -45 348 -2.1631 0.8706 1.7600 -45 349 -2.1017 0.8675 1.7600 -45 350 -2.0387 0.8631 1.7600 -45 351 -1.9754 0.8620 1.7600 -45 352 -1.9130 0.8626 1.7600 -45 353 -1.8532 0.8685 1.7600 -45 354 -1.7938 0.8793 1.7600 -45 355 -1.7280 0.8932 1.7600 -45 356 -1.6613 0.9021 1.7600 -45 357 -1.5973 0.9014 1.7600 -45 358 -1.5324 0.9021 1.7600 -45 359 -1.4658 0.9024 1.7600 -45 360 -1.3999 0.9009 1.7600 -45 361 -1.3345 0.8954 1.7600 -45 362 -1.2723 0.8839 1.7600 -45 363 -1.2092 0.8699 1.7600 -45 364 -1.1442 0.8579 1.7600 -45 365 -1.0848 0.8510 1.7600 -45 366 -1.0251 0.8474 1.7600 -45 367 -0.9642 0.8448 1.7600 -45 368 -0.9003 0.8424 1.7600 -45 369 -0.8355 0.8430 1.7600 -45 370 -0.7689 0.8473 1.7600 -45 371 -0.7021 0.8555 1.7600 -45 372 -0.6363 0.8679 1.7600 -45 373 -0.5719 0.8812 1.7600 -45 374 -0.5089 0.8908 1.7600 -45 375 -0.4468 0.8954 1.7600 -45 376 -0.3836 0.8970 1.7600 -45 377 -0.3190 0.8960 1.7600 -45 378 -0.2504 0.8940 1.7600 -45 379 -0.1826 0.8885 1.7600 -45 380 -0.1157 0.8786 1.7600 -45 381 -0.0457 0.8662 1.7600 -45 382 0.0226 0.8520 1.7600 -45 383 0.0876 0.8435 1.7600 -45 384 0.1479 0.8405 1.7600 -45 385 0.2118 0.8375 1.7600 -45 386 0.2750 0.8358 1.7600 -45 387 0.3429 0.8351 1.7600 -45 388 0.4130 0.8371 1.7600 -45 389 0.4840 0.8417 1.7600 -45 390 0.5547 0.8496 1.7600 -45 391 0.6253 0.8635 1.7600 -45 392 0.6929 0.8750 1.7600 -45 393 0.7582 0.8796 1.7600 -45 394 0.8253 0.8786 1.7600 -45 395 0.8920 0.8774 1.7600 -45 396 0.9637 0.8767 1.7600 -45 397 1.0328 0.8737 1.7600 -45 398 1.1039 0.8677 1.7600 -45 399 1.1734 0.8543 1.7600 -45 400 1.2407 0.8380 1.7600 -45 401 1.3092 0.8250 1.7600 -45 402 1.3730 0.8180 1.7600 -45 403 1.4411 0.8175 1.7600 -45 404 1.5086 0.8189 1.7600 -45 405 1.5783 0.8194 1.7600 -45 406 1.6482 0.8234 1.7600 -45 407 1.7172 0.8309 1.7600 -45 408 1.7832 0.8427 1.7600 -45 409 1.8524 0.8578 1.7600 -45 410 1.9187 0.8722 1.7600 -45 411 1.9818 0.8814 1.7600 -45 412 2.0471 0.8852 1.7600 -45 413 2.1115 0.8852 1.7600 -45 414 2.1766 0.8865 1.7600 -45 415 2.2444 0.8858 1.7600 -45 416 2.3112 0.8828 1.7600 -45 417 2.3748 0.8740 1.7600 -45 418 2.4436 0.8609 1.7600 -45 419 2.5103 0.8476 1.7600 -45 420 2.5770 0.8409 1.7600 -45 421 2.6422 0.8383 1.7600 -45 422 2.7084 0.8367 1.7600 -45 423 2.7751 0.8363 1.7600 -45 424 2.8404 0.8375 1.7600 -45 425 2.9070 0.8418 1.7600 -45 426 2.9723 0.8488 1.7600 -45 427 3.0390 0.8586 1.7600 -45 428 3.1066 0.8696 1.7600 -45 429 3.1751 0.8741 1.7600 -45 430 3.2433 0.8759 1.7600 -45 431 3.3112 0.8724 1.7600 -45 432 3.3793 0.8693 1.7600 -45 433 3.4448 0.8618 1.7600 -45 434 3.5092 0.8506 1.7600 -45 435 3.5709 0.8326 1.7600 -45 436 3.6324 0.8110 1.7600 -45 437 3.6967 0.7910 1.7600 -45 438 3.7627 0.7763 1.7600 -45 439 3.8301 0.7641 1.7600 -45 440 3.8961 0.7527 1.7600 -45 441 3.9606 0.7397 1.7600 -45 442 4.0264 0.7234 1.7600 -45 443 4.0912 0.7074 1.7600 -45 444 4.1555 0.6932 1.7600 -45 445 4.2226 0.6783 1.7600 -45 446 4.2917 0.6582 1.7600 -45 447 4.3612 0.6356 1.7600 -45 448 4.4278 0.6073 1.7600 -45 449 4.4887 0.5760 1.7600 -45 450 4.5388 0.5445 1.7600 -45 451 4.5866 0.5052 1.7600 -45 452 4.6318 0.4534 1.7600 -45 453 4.6822 0.3943 1.7600 -45 454 4.7313 0.3254 1.7600 -45 455 4.7807 0.2510 1.7600 -45 456 4.8315 0.1734 1.7600 -45 457 4.8889 0.1008 1.7600 -45 458 4.9507 0.0387 1.7600 -45 459 5.0086 -0.0163 1.7600 -45 460 5.0649 -0.0704 1.7600 -45 461 5.1187 -0.1228 1.7600 -45 462 5.1773 -0.1711 1.7600 -45 463 5.2392 -0.2163 1.7600 -45 464 5.3094 -0.2622 1.7600 -45 465 5.3835 -0.3084 1.7600 -45 466 5.4640 -0.3584 1.7600 -45 467 5.5456 -0.4080 1.7600 -45 468 5.6249 -0.4548 1.7600 -45 469 5.6968 -0.4984 1.7600 -45 470 5.7670 -0.5421 1.7600 -45 471 5.8375 -0.5863 1.7600 -45 472 5.9185 -0.6299 1.7600 -46 271 -7.7708 1.1609 1.7600 -46 272 -7.7084 1.1505 1.7600 -46 273 -7.6424 1.1431 1.7600 -46 274 -7.5722 1.1367 1.7600 -46 275 -7.4988 1.1320 1.7600 -46 276 -7.4260 1.1308 1.7600 -46 277 -7.3579 1.1328 1.7600 -46 278 -7.2976 1.1359 1.7600 -46 279 -7.2410 1.1356 1.7600 -46 280 -7.1893 1.1264 1.7600 -46 281 -7.1362 1.1118 1.7600 -46 282 -7.0864 1.0945 1.7600 -46 283 -7.0303 1.0783 1.7600 -46 284 -6.9704 1.0600 1.7600 -46 285 -6.9076 1.0391 1.7600 -46 286 -6.8456 1.0153 1.7600 -46 287 -6.7862 0.9885 1.7600 -46 288 -6.7316 0.9608 1.7600 -46 289 -6.6789 0.9364 1.7600 -46 290 -6.6272 0.9209 1.7600 -46 291 -6.5715 0.9103 1.7600 -46 292 -6.5159 0.9071 1.7600 -46 293 -6.4603 0.9051 1.7600 -46 294 -6.4044 0.9074 1.7600 -46 295 -6.3444 0.9122 1.7600 -46 296 -6.2859 0.9237 1.7600 -46 297 -6.2286 0.9324 1.7600 -46 298 -6.1746 0.9394 1.7600 -46 299 -6.1255 0.9405 1.7600 -46 300 -6.0792 0.9349 1.7600 -46 301 -6.0310 0.9226 1.7600 -46 302 -5.9817 0.9110 1.7600 -46 303 -5.9302 0.8981 1.7600 -46 304 -5.8780 0.8809 1.7600 -46 305 -5.8214 0.8594 1.7600 -46 306 -5.7670 0.8380 1.7600 -46 307 -5.7126 0.8169 1.7600 -46 308 -5.6639 0.7966 1.7600 -46 309 -5.6169 0.7815 1.7600 -46 310 -5.5697 0.7720 1.7600 -46 311 -5.5241 0.7706 1.7600 -46 312 -5.4772 0.7717 1.7600 -46 313 -5.4282 0.7743 1.7600 -46 314 -5.3771 0.7786 1.7600 -46 315 -5.3236 0.7859 1.7600 -46 316 -5.2715 0.7978 1.7600 -46 317 -5.2214 0.8100 1.7600 -46 318 -5.1726 0.8195 1.7600 -46 319 -5.1256 0.8227 1.7600 -46 320 -5.0798 0.8194 1.7600 -46 321 -5.0307 0.8164 1.7600 -46 322 -4.9789 0.8085 1.7600 -46 323 -4.9280 0.7992 1.7600 -46 324 -4.8748 0.7845 1.7600 -46 325 -4.8226 0.7635 1.7600 -46 326 -4.7715 0.7398 1.7600 -46 327 -4.7179 0.7208 1.7600 -46 328 -4.6652 0.7051 1.7600 -46 329 -4.6137 0.7004 1.7600 -46 330 -4.5581 0.6994 1.7600 -46 331 -4.5016 0.7042 1.7600 -46 332 -4.4439 0.7130 1.7600 -46 333 -4.3809 0.7224 1.7600 -46 334 -4.3179 0.7317 1.7600 -46 335 -4.2542 0.7439 1.7600 -46 336 -4.1929 0.7567 1.7600 -46 337 -4.1347 0.7673 1.7600 -46 338 -4.0808 0.7713 1.7600 -46 339 -4.0291 0.7706 1.7600 -46 340 -3.9724 0.7631 1.7600 -46 341 -3.9196 0.7576 1.7600 -46 342 -3.8660 0.7522 1.7600 -46 343 -3.8076 0.7470 1.7600 -46 344 -3.7458 0.7397 1.7600 -46 345 -3.6868 0.7305 1.7600 -46 346 -3.6262 0.7156 1.7600 -46 347 -3.5666 0.6988 1.7600 -46 348 -3.5072 0.6863 1.7600 -46 349 -3.4535 0.6787 1.7600 -46 350 -3.3967 0.6779 1.7600 -46 351 -3.3400 0.6789 1.7600 -46 352 -3.2809 0.6815 1.7600 -46 353 -3.2225 0.6867 1.7600 -46 354 -3.1593 0.6966 1.7600 -46 355 -3.0958 0.7121 1.7600 -46 356 -3.0359 0.7320 1.7600 -46 357 -2.9787 0.7520 1.7600 -46 358 -2.9213 0.7655 1.7600 -46 359 -2.8631 0.7681 1.7600 -46 360 -2.8066 0.7627 1.7600 -46 361 -2.7501 0.7615 1.7600 -46 362 -2.6936 0.7578 1.7600 -46 363 -2.6361 0.7560 1.7600 -46 364 -2.5808 0.7493 1.7600 -46 365 -2.5252 0.7369 1.7600 -46 366 -2.4672 0.7223 1.7600 -46 367 -2.4066 0.7037 1.7600 -46 368 -2.3447 0.6841 1.7600 -46 369 -2.2860 0.6723 1.7600 -46 370 -2.2250 0.6652 1.7600 -46 371 -2.1644 0.6626 1.7600 -46 372 -2.1053 0.6660 1.7600 -46 373 -2.0498 0.6681 1.7600 -46 374 -1.9912 0.6725 1.7600 -46 375 -1.9314 0.6826 1.7600 -46 376 -1.8713 0.6960 1.7600 -46 377 -1.8081 0.7144 1.7600 -46 378 -1.7445 0.7261 1.7600 -46 379 -1.6829 0.7282 1.7600 -46 380 -1.6207 0.7252 1.7600 -46 381 -1.5576 0.7211 1.7600 -46 382 -1.4992 0.7146 1.7600 -46 383 -1.4413 0.7089 1.7600 -46 384 -1.3828 0.6962 1.7600 -46 385 -1.3330 0.6760 1.7600 -46 386 -1.2836 0.6574 1.7600 -46 387 -1.2238 0.6415 1.7600 -46 388 -1.1550 0.6262 1.7600 -46 389 -1.0830 0.6155 1.7600 -46 390 -1.0112 0.6082 1.7600 -46 391 -0.9432 0.6061 1.7600 -46 392 -0.8777 0.6079 1.7600 -46 393 -0.8137 0.6115 1.7600 -46 394 -0.7479 0.6146 1.7600 -46 395 -0.6797 0.6206 1.7600 -46 396 -0.6118 0.6295 1.7600 -46 397 -0.5446 0.6385 1.7600 -46 398 -0.4834 0.6442 1.7600 -46 399 -0.4220 0.6446 1.7600 -46 400 -0.3595 0.6400 1.7600 -46 401 -0.2985 0.6345 1.7600 -46 402 -0.2371 0.6331 1.7600 -46 403 -0.1732 0.6298 1.7600 -46 404 -0.1053 0.6267 1.7600 -46 405 -0.0391 0.6183 1.7600 -46 406 0.0246 0.6086 1.7600 -46 407 0.0833 0.5950 1.7600 -46 408 0.1419 0.5835 1.7600 -46 409 0.2055 0.5780 1.7600 -46 410 0.2711 0.5813 1.7600 -46 411 0.3369 0.5877 1.7600 -46 412 0.4039 0.5922 1.7600 -46 413 0.4726 0.5969 1.7600 -46 414 0.5454 0.6032 1.7600 -46 415 0.6170 0.6104 1.7600 -46 416 0.6852 0.6195 1.7600 -46 417 0.7543 0.6243 1.7600 -46 418 0.8191 0.6254 1.7600 -46 419 0.8845 0.6203 1.7600 -46 420 0.9495 0.6161 1.7600 -46 421 1.0130 0.6103 1.7600 -46 422 1.0800 0.6072 1.7600 -46 423 1.1462 0.6037 1.7600 -46 424 1.2132 0.5976 1.7600 -46 425 1.2768 0.5906 1.7600 -46 426 1.3397 0.5804 1.7600 -46 427 1.4014 0.5691 1.7600 -46 428 1.4625 0.5637 1.7600 -46 429 1.5248 0.5639 1.7600 -46 430 1.5844 0.5699 1.7600 -46 431 1.6451 0.5758 1.7600 -46 432 1.7050 0.5831 1.7600 -46 433 1.7679 0.5932 1.7600 -46 434 1.8352 0.6059 1.7600 -46 435 1.9019 0.6230 1.7600 -46 436 1.9660 0.6386 1.7600 -46 437 2.0288 0.6462 1.7600 -46 438 2.0907 0.6448 1.7600 -46 439 2.1545 0.6413 1.7600 -46 440 2.2174 0.6346 1.7600 -46 441 2.2779 0.6276 1.7600 -46 442 2.3384 0.6203 1.7600 -46 443 2.3981 0.6109 1.7600 -46 444 2.4589 0.5967 1.7600 -46 445 2.5222 0.5835 1.7600 -46 446 2.5861 0.5664 1.7600 -46 447 2.6449 0.5518 1.7600 -46 448 2.7043 0.5436 1.7600 -46 449 2.7659 0.5429 1.7600 -46 450 2.8279 0.5435 1.7600 -46 451 2.8880 0.5471 1.7600 -46 452 2.9461 0.5498 1.7600 -46 453 3.0077 0.5553 1.7600 -46 454 3.0691 0.5653 1.7600 -46 455 3.1324 0.5776 1.7600 -46 456 3.1962 0.5915 1.7600 -46 457 3.2565 0.6022 1.7600 -46 458 3.3188 0.6017 1.7600 -46 459 3.3802 0.5956 1.7600 -46 460 3.4406 0.5870 1.7600 -46 461 3.4993 0.5785 1.7600 -46 462 3.5585 0.5685 1.7600 -46 463 3.6139 0.5573 1.7600 -46 464 3.6734 0.5403 1.7600 -46 465 3.7366 0.5217 1.7600 -46 466 3.8012 0.5023 1.7600 -46 467 3.8630 0.4891 1.7600 -46 468 3.9258 0.4809 1.7600 -46 469 3.9892 0.4773 1.7600 -46 470 4.0537 0.4782 1.7600 -46 471 4.1158 0.4819 1.7600 -46 472 4.1764 0.4874 1.7600 -46 473 4.2424 0.4912 1.7600 -46 474 4.3108 0.4990 1.7600 -46 475 4.3864 0.5075 1.7600 -46 476 4.4602 0.5149 1.7600 -46 477 4.5310 0.5155 1.7600 -46 478 4.6008 0.5099 1.7600 -46 479 4.6702 0.5021 1.7600 -46 480 4.7326 0.4924 1.7600 -46 481 4.7956 0.4822 1.7600 -46 482 4.8527 0.4737 1.7600 -46 483 4.9117 0.4583 1.7600 -46 484 4.9753 0.4413 1.7600 -46 485 5.0428 0.4222 1.7600 -46 486 5.1115 0.4037 1.7600 -46 487 5.1812 0.3919 1.7600 -46 488 5.2515 0.3874 1.7600 -46 489 5.3182 0.3890 1.7600 -46 490 5.3823 0.3914 1.7600 -46 491 5.4438 0.3962 1.7600 -46 492 5.5054 0.4014 1.7600 -46 493 5.5705 0.4120 1.7600 -46 494 5.6440 0.4224 1.7600 -46 495 5.7196 0.4324 1.7600 -46 496 5.7903 0.4342 1.7600 -46 497 5.8638 0.4277 1.7600 -46 498 5.9366 0.4187 1.7600 -47 278 -7.8047 1.7288 1.7600 -47 279 -7.7358 1.7029 1.7600 -47 280 -7.6603 1.6743 1.7600 -47 281 -7.5819 1.6449 1.7600 -47 282 -7.5066 1.6147 1.7600 -47 283 -7.4357 1.5857 1.7600 -47 284 -7.3684 1.5579 1.7600 -47 285 -7.3015 1.5354 1.7600 -47 286 -7.2344 1.5237 1.7600 -47 287 -7.1629 1.5194 1.7600 -47 288 -7.0849 1.5165 1.7600 -47 289 -7.0023 1.5127 1.7600 -47 290 -6.9191 1.5125 1.7600 -47 291 -6.8356 1.5173 1.7600 -47 292 -6.7613 1.5225 1.7600 -47 293 -6.6934 1.5293 1.7600 -47 294 -6.6253 1.5274 1.7600 -47 295 -6.5609 1.5158 1.7600 -47 296 -6.4970 1.5001 1.7600 -47 297 -6.4283 1.4828 1.7600 -47 298 -6.3517 1.4687 1.7600 -47 299 -6.2697 1.4526 1.7600 -47 300 -6.1888 1.4337 1.7600 -47 301 -6.1165 1.4153 1.7600 -47 302 -6.0511 1.4020 1.7600 -47 303 -5.9881 1.3965 1.7600 -47 304 -5.9243 1.3964 1.7600 -47 305 -5.8530 1.3967 1.7600 -47 306 -5.7805 1.3960 1.7600 -47 307 -5.7052 1.4002 1.7600 -47 308 -5.6332 1.4046 1.7600 -47 309 -5.5645 1.4118 1.7600 -47 310 -5.5017 1.4144 1.7600 -47 311 -5.4398 1.4131 1.7600 -47 312 -5.3768 1.4045 1.7600 -47 313 -5.3185 1.3893 1.7600 -47 314 -5.2594 1.3738 1.7600 -47 315 -5.2012 1.3574 1.7600 -47 316 -5.1432 1.3394 1.7600 -47 317 -5.0843 1.3148 1.7600 -47 318 -5.0239 1.2860 1.7600 -47 319 -4.9704 1.2577 1.7600 -47 320 -4.9223 1.2298 1.7600 -47 321 -4.8704 1.2086 1.7600 -47 322 -4.8121 1.1973 1.7600 -47 323 -4.7526 1.1925 1.7600 -47 324 -4.6896 1.1900 1.7600 -47 325 -4.6257 1.1882 1.7600 -47 326 -4.5586 1.1925 1.7600 -47 327 -4.4888 1.2013 1.7600 -47 328 -4.4165 1.2125 1.7600 -47 329 -4.3557 1.2228 1.7600 -47 330 -4.2993 1.2259 1.7600 -47 331 -4.2492 1.2202 1.7600 -47 332 -4.2009 1.2088 1.7600 -47 333 -4.1548 1.1966 1.7600 -47 334 -4.1053 1.1853 1.7600 -47 335 -4.0528 1.1746 1.7600 -47 336 -3.9992 1.1620 1.7600 -47 337 -3.9412 1.1480 1.7600 -47 338 -3.8828 1.1295 1.7600 -47 339 -3.8250 1.1131 1.7600 -47 340 -3.7654 1.1001 1.7600 -47 341 -3.6993 1.0908 1.7600 -47 342 -3.6293 1.0872 1.7600 -47 343 -3.5570 1.0873 1.7600 -47 344 -3.4877 1.0898 1.7600 -47 345 -3.4177 1.0946 1.7600 -47 346 -3.3473 1.1045 1.7600 -47 347 -3.2772 1.1166 1.7600 -47 348 -3.2147 1.1273 1.7600 -47 349 -3.1566 1.1297 1.7600 -47 350 -3.0986 1.1249 1.7600 -47 351 -3.0417 1.1165 1.7600 -47 352 -2.9891 1.1046 1.7600 -47 353 -2.9349 1.0915 1.7600 -47 354 -2.8756 1.0768 1.7600 -47 355 -2.8137 1.0585 1.7600 -47 356 -2.7465 1.0415 1.7600 -47 357 -2.6832 1.0274 1.7600 -47 358 -2.6209 1.0196 1.7600 -47 359 -2.5560 1.0173 1.7600 -47 360 -2.4898 1.0225 1.7600 -47 361 -2.4244 1.0302 1.7600 -47 362 -2.3606 1.0405 1.7600 -47 363 -2.2979 1.0509 1.7600 -47 364 -2.2371 1.0673 1.7600 -47 365 -2.1730 1.0878 1.7600 -47 366 -2.1115 1.1089 1.7600 -47 367 -2.0550 1.1202 1.7600 -47 368 -1.9976 1.1186 1.7600 -47 369 -1.9395 1.1108 1.7600 -47 370 -1.8815 1.0990 1.7600 -47 371 -1.8266 1.0897 1.7600 -47 372 -1.7671 1.0772 1.7600 -47 373 -1.7096 1.0623 1.7600 -47 374 -1.6460 1.0449 1.7600 -47 375 -1.5847 1.0307 1.7600 -47 376 -1.5285 1.0225 1.7600 -47 377 -1.4682 1.0195 1.7600 -47 378 -1.4094 1.0218 1.7600 -47 379 -1.3496 1.0286 1.7600 -47 380 -1.2875 1.0363 1.7600 -47 381 -1.2224 1.0466 1.7600 -47 382 -1.1572 1.0612 1.7600 -47 383 -1.0909 1.0741 1.7600 -47 384 -1.0300 1.0850 1.7600 -47 385 -0.9739 1.0865 1.7600 -47 386 -0.9195 1.0793 1.7600 -47 387 -0.8640 1.0689 1.7600 -47 388 -0.8059 1.0555 1.7600 -47 389 -0.7465 1.0413 1.7600 -47 390 -0.6849 1.0294 1.7600 -47 391 -0.6217 1.0160 1.7600 -47 392 -0.5556 1.0012 1.7600 -47 393 -0.4947 0.9932 1.7600 -47 394 -0.4342 0.9945 1.7600 -47 395 -0.3740 1.0008 1.7600 -47 396 -0.3117 1.0072 1.7600 -47 397 -0.2491 1.0157 1.7600 -47 398 -0.1827 1.0248 1.7600 -47 399 -0.1168 1.0384 1.7600 -47 400 -0.0505 1.0537 1.7600 -47 401 0.0146 1.0692 1.7600 -47 402 0.0743 1.0824 1.7600 -47 403 0.1317 1.0887 1.7600 -47 404 0.1930 1.0853 1.7600 -47 405 0.2545 1.0782 1.7600 -47 406 0.3225 1.0666 1.7600 -47 407 0.3935 1.0537 1.7600 -47 408 0.4663 1.0371 1.7600 -47 409 0.5410 1.0237 1.7600 -47 410 0.6126 1.0108 1.7600 -47 411 0.6801 1.0003 1.7600 -47 412 0.7438 0.9930 1.7600 -47 413 0.8121 0.9934 1.7600 -47 414 0.8786 0.9986 1.7600 -47 415 0.9521 1.0068 1.7600 -47 416 1.0253 1.0163 1.7600 -47 417 1.0973 1.0324 1.7600 -47 418 1.1699 1.0503 1.7600 -47 419 1.2416 1.0670 1.7600 -47 420 1.3052 1.0781 1.7600 -47 421 1.3726 1.0744 1.7600 -47 422 1.4372 1.0634 1.7600 -47 423 1.5031 1.0491 1.7600 -47 424 1.5686 1.0315 1.7600 -47 425 1.6307 1.0161 1.7600 -47 426 1.6899 1.0034 1.7600 -47 427 1.7546 0.9886 1.7600 -47 428 1.8196 0.9764 1.7600 -47 429 1.8860 0.9697 1.7600 -47 430 1.9547 0.9651 1.7600 -47 431 2.0259 0.9666 1.7600 -47 432 2.0980 0.9712 1.7600 -47 433 2.1703 0.9798 1.7600 -47 434 2.2420 0.9906 1.7600 -47 435 2.3113 1.0051 1.7600 -47 436 2.3817 1.0229 1.7600 -47 437 2.4484 1.0380 1.7600 -47 438 2.5124 1.0493 1.7600 -47 439 2.5745 1.0518 1.7600 -47 440 2.6364 1.0481 1.7600 -47 441 2.6964 1.0408 1.7600 -47 442 2.7539 1.0315 1.7600 -47 443 2.8111 1.0202 1.7600 -47 444 2.8693 1.0049 1.7600 -47 445 2.9318 0.9907 1.7600 -47 446 2.9956 0.9769 1.7600 -47 447 3.0523 0.9680 1.7600 -47 448 3.1152 0.9620 1.7600 -47 449 3.1780 0.9602 1.7600 -47 450 3.2390 0.9632 1.7600 -47 451 3.2986 0.9664 1.7600 -47 452 3.3595 0.9711 1.7600 -47 453 3.4221 0.9783 1.7600 -47 454 3.4888 0.9856 1.7600 -47 455 3.5606 0.9918 1.7600 -47 456 3.6289 0.9985 1.7600 -47 457 3.6953 0.9991 1.7600 -47 458 3.7641 0.9925 1.7600 -47 459 3.8289 0.9817 1.7600 -47 460 3.8928 0.9698 1.7600 -47 461 3.9568 0.9586 1.7600 -47 462 4.0225 0.9476 1.7600 -47 463 4.0925 0.9382 1.7600 -47 464 4.1667 0.9315 1.7600 -47 465 4.2355 0.9278 1.7600 -47 466 4.3059 0.9299 1.7600 -47 467 4.3803 0.9351 1.7600 -47 468 4.4496 0.9438 1.7600 -47 469 4.5166 0.9537 1.7600 -47 470 4.5826 0.9636 1.7600 -47 471 4.6546 0.9773 1.7600 -47 472 4.7317 0.9903 1.7600 -47 473 4.8050 1.0025 1.7600 -47 474 4.8739 1.0065 1.7600 -47 475 4.9444 1.0049 1.7600 -47 476 5.0078 0.9974 1.7600 -47 477 5.0678 0.9864 1.7600 -47 478 5.1320 0.9745 1.7600 -47 479 5.1978 0.9623 1.7600 -47 480 5.2676 0.9474 1.7600 -47 481 5.3429 0.9306 1.7600 -47 482 5.4133 0.9149 1.7600 -47 483 5.4898 0.8996 1.7600 -47 484 5.5691 0.8930 1.7600 -47 485 5.6437 0.8932 1.7600 -47 486 5.7123 0.8958 1.7600 -47 487 5.7771 0.8996 1.7600 -47 488 5.8448 0.9056 1.7600 -47 489 5.9220 0.9118 1.7600 -48 283 -7.7838 2.1483 1.7600 -48 284 -7.7002 2.1464 1.7600 -48 285 -7.6203 2.1456 1.7600 -48 286 -7.5503 2.1482 1.7600 -48 287 -7.4829 2.1493 1.7600 -48 288 -7.4191 2.1465 1.7600 -48 289 -7.3544 2.1368 1.7600 -48 290 -7.2838 2.1198 1.7600 -48 291 -7.2059 2.0979 1.7600 -48 292 -7.1254 2.0762 1.7600 -48 293 -7.0469 2.0551 1.7600 -48 294 -6.9735 2.0301 1.7600 -48 295 -6.9092 2.0074 1.7600 -48 296 -6.8471 1.9879 1.7600 -48 297 -6.7829 1.9703 1.7600 -48 298 -6.7104 1.9638 1.7600 -48 299 -6.6307 1.9543 1.7600 -48 300 -6.5461 1.9447 1.7600 -48 301 -6.4620 1.9375 1.7600 -48 302 -6.3782 1.9300 1.7600 -48 303 -6.3048 1.9265 1.7600 -48 304 -6.2308 1.9285 1.7600 -48 305 -6.1624 1.9254 1.7600 -48 306 -6.0974 1.9163 1.7600 -48 307 -6.0320 1.9025 1.7600 -48 308 -5.9646 1.8845 1.7600 -48 309 -5.8931 1.8648 1.7600 -48 310 -5.8201 1.8489 1.7600 -48 311 -5.7492 1.8322 1.7600 -48 312 -5.6856 1.8119 1.7600 -48 313 -5.6228 1.7919 1.7600 -48 314 -5.5628 1.7807 1.7600 -48 315 -5.4975 1.7776 1.7600 -48 316 -5.4280 1.7811 1.7600 -48 317 -5.3591 1.7825 1.7600 -48 318 -5.2874 1.7854 1.7600 -48 319 -5.2182 1.7891 1.7600 -48 320 -5.1499 1.7943 1.7600 -48 321 -5.0816 1.8053 1.7600 -48 322 -5.0154 1.8179 1.7600 -48 323 -4.9545 1.8227 1.7600 -48 324 -4.8942 1.8185 1.7600 -48 325 -4.8342 1.8061 1.7600 -48 326 -4.7774 1.7904 1.7600 -48 327 -4.7223 1.7755 1.7600 -48 328 -4.6661 1.7571 1.7600 -48 329 -4.6085 1.7318 1.7600 -48 330 -4.5505 1.7005 1.7600 -48 331 -4.4933 1.6688 1.7600 -48 332 -4.4357 1.6371 1.7600 -48 333 -4.3746 1.6085 1.7600 -48 334 -4.3124 1.5934 1.7600 -48 335 -4.2469 1.5893 1.7600 -48 336 -4.1827 1.5906 1.7600 -48 337 -4.1188 1.5918 1.7600 -48 338 -4.0579 1.5910 1.7600 -48 339 -3.9906 1.5879 1.7600 -48 340 -3.9191 1.5834 1.7600 -48 341 -3.8452 1.5792 1.7600 -48 342 -3.7630 1.5827 1.7600 -48 343 -3.6893 1.5784 1.7600 -48 344 -3.6211 1.5774 1.7600 -48 345 -3.5603 1.5754 1.7600 -48 346 -3.5058 1.5749 1.7600 -48 347 -3.4573 1.5701 1.7600 -48 348 -3.4043 1.5609 1.7600 -48 349 -3.3470 1.5462 1.7600 -48 350 -3.2851 1.5310 1.7600 -48 351 -3.2236 1.5137 1.7600 -48 352 -3.1610 1.4968 1.7600 -48 353 -3.0932 1.4851 1.7600 -48 354 -3.0288 1.4829 1.7600 -48 355 -2.9654 1.4889 1.7600 -48 356 -2.9042 1.4969 1.7600 -48 357 -2.8435 1.5038 1.7600 -48 358 -2.7794 1.5097 1.7600 -48 359 -2.7114 1.5169 1.7600 -48 360 -2.6393 1.5274 1.7600 -48 361 -2.5576 1.5406 1.7600 -48 362 -2.4773 1.5532 1.7600 -48 363 -2.4014 1.5619 1.7600 -48 364 -2.3271 1.5668 1.7600 -48 365 -2.2557 1.5662 1.7600 -48 366 -2.1860 1.5626 1.7600 -48 367 -2.1131 1.5632 1.7600 -48 368 -2.0397 1.5567 1.7600 -48 369 -1.9587 1.5459 1.7600 -48 370 -1.8693 1.5306 1.7600 -48 371 -1.7804 1.5166 1.7600 -48 372 -1.6950 1.5129 1.7600 -48 373 -1.6070 1.5215 1.7600 -48 374 -1.5206 1.5355 1.7600 -48 375 -1.4368 1.5532 1.7600 -48 376 -1.3552 1.5680 1.7600 -48 377 -1.2750 1.5802 1.7600 -48 378 -1.1888 1.5922 1.7600 -48 379 -1.1014 1.6004 1.7600 -48 380 -1.0203 1.6020 1.7600 -48 381 -0.9463 1.5954 1.7600 -48 382 -0.8744 1.5840 1.7600 -48 383 -0.8029 1.5710 1.7600 -48 384 -0.7280 1.5542 1.7600 -48 385 -0.6510 1.5327 1.7600 -48 386 -0.5733 1.5121 1.7600 -48 387 -0.4972 1.4987 1.7600 -48 388 -0.4254 1.4951 1.7600 -48 389 -0.3541 1.5012 1.7600 -48 390 -0.2821 1.5099 1.7600 -48 391 -0.2090 1.5150 1.7600 -48 392 -0.1315 1.5205 1.7600 -48 393 -0.0467 1.5279 1.7600 -48 394 0.0403 1.5373 1.7600 -48 395 0.1216 1.5429 1.7600 -48 396 0.1987 1.5416 1.7600 -48 397 0.2717 1.5370 1.7600 -48 398 0.3435 1.5260 1.7600 -48 399 0.4157 1.5138 1.7600 -48 400 0.4914 1.4970 1.7600 -48 401 0.5695 1.4797 1.7600 -48 402 0.6519 1.4630 1.7600 -48 403 0.7327 1.4431 1.7600 -48 404 0.8094 1.4199 1.7600 -48 405 0.8830 1.4053 1.7600 -48 406 0.9527 1.4051 1.7600 -48 407 1.0236 1.4112 1.7600 -48 408 1.0939 1.4188 1.7600 -48 409 1.1665 1.4273 1.7600 -48 410 1.2452 1.4388 1.7600 -48 411 1.3208 1.4548 1.7600 -48 412 1.3943 1.4721 1.7600 -48 413 1.4631 1.4795 1.7600 -48 414 1.5300 1.4817 1.7600 -48 415 1.5998 1.4724 1.7600 -48 416 1.6651 1.4546 1.7600 -48 417 1.7355 1.4379 1.7600 -48 418 1.8052 1.4207 1.7600 -48 419 1.8776 1.4050 1.7600 -48 420 1.9490 1.3848 1.7600 -48 421 2.0174 1.3655 1.7600 -48 422 2.0823 1.3527 1.7600 -48 423 2.1505 1.3519 1.7600 -48 424 2.2137 1.3555 1.7600 -48 425 2.2744 1.3618 1.7600 -48 426 2.3399 1.3693 1.7600 -48 427 2.4025 1.3802 1.7600 -48 428 2.4695 1.3945 1.7600 -48 429 2.5405 1.4116 1.7600 -48 430 2.6104 1.4257 1.7600 -48 431 2.6834 1.4322 1.7600 -48 432 2.7536 1.4245 1.7600 -48 433 2.8244 1.4096 1.7600 -48 434 2.8862 1.3915 1.7600 -48 435 2.9508 1.3704 1.7600 -48 436 3.0124 1.3430 1.7600 -48 437 3.0754 1.3109 1.7600 -48 438 3.1398 1.2803 1.7600 -48 439 3.1978 1.2617 1.7600 -48 440 3.2614 1.2488 1.7600 -48 441 3.3280 1.2415 1.7600 -48 442 3.3895 1.2363 1.7600 -48 443 3.4558 1.2334 1.7600 -48 444 3.5226 1.2327 1.7600 -48 445 3.5922 1.2354 1.7600 -48 446 3.6692 1.2411 1.7600 -48 447 3.7430 1.2459 1.7600 -48 448 3.8165 1.2451 1.7600 -48 449 3.8864 1.2351 1.7600 -48 450 3.9532 1.2222 1.7600 -48 451 4.0206 1.2095 1.7600 -48 452 4.0865 1.1967 1.7600 -48 453 4.1533 1.1829 1.7600 -48 454 4.2277 1.1703 1.7600 -48 455 4.3050 1.1571 1.7600 -48 456 4.3826 1.1503 1.7600 -48 457 4.4612 1.1510 1.7600 -48 458 4.5361 1.1581 1.7600 -48 459 4.6077 1.1682 1.7600 -48 460 4.6757 1.1768 1.7600 -48 461 4.7438 1.1844 1.7600 -48 462 4.8180 1.1946 1.7600 -48 463 4.8991 1.2060 1.7600 -48 464 4.9811 1.2149 1.7600 -48 465 5.0660 1.2181 1.7600 -48 466 5.1458 1.2133 1.7600 -48 467 5.2183 1.2057 1.7600 -48 468 5.2839 1.1967 1.7600 -48 469 5.3488 1.1908 1.7600 -48 470 5.4177 1.1812 1.7600 -48 471 5.4983 1.1698 1.7600 -48 472 5.5827 1.1575 1.7600 -48 473 5.6696 1.1500 1.7600 -48 474 5.7557 1.1478 1.7600 -48 475 5.8405 1.1521 1.7600 -48 476 5.9159 1.1560 1.7600 -49 275 -7.8043 0.6522 1.7600 -49 276 -7.7374 0.6347 1.7600 -49 277 -7.6713 0.6181 1.7600 -49 278 -7.6084 0.6005 1.7600 -49 279 -7.5495 0.5782 1.7600 -49 280 -7.4919 0.5496 1.7600 -49 281 -7.4329 0.5190 1.7600 -49 282 -7.3695 0.4899 1.7600 -49 283 -7.3008 0.4623 1.7600 -49 284 -7.2284 0.4305 1.7600 -49 285 -7.1578 0.3947 1.7600 -49 286 -7.0914 0.3570 1.7600 -49 287 -7.0288 0.3206 1.7600 -49 288 -6.9670 0.2860 1.7600 -49 289 -6.9024 0.2578 1.7600 -49 290 -6.8349 0.2373 1.7600 -49 291 -6.7637 0.2217 1.7600 -49 292 -6.6891 0.2078 1.7600 -49 293 -6.6120 0.1993 1.7600 -49 294 -6.5328 0.1946 1.7600 -49 295 -6.4588 0.1934 1.7600 -49 296 -6.3906 0.1911 1.7600 -49 297 -6.3290 0.1837 1.7600 -49 298 -6.2664 0.1668 1.7600 -49 299 -6.2083 0.1511 1.7600 -49 300 -6.1478 0.1345 1.7600 -49 301 -6.0826 0.1208 1.7600 -49 302 -6.0155 0.1043 1.7600 -49 303 -5.9474 0.0845 1.7600 -49 304 -5.8762 0.0619 1.7600 -49 305 -5.8081 0.0394 1.7600 -49 306 -5.7418 0.0234 1.7600 -49 307 -5.6776 0.0166 1.7600 -49 308 -5.6134 0.0195 1.7600 -49 309 -5.5474 0.0217 1.7600 -49 310 -5.4816 0.0308 1.7600 -49 311 -5.4176 0.0461 1.7600 -49 312 -5.3549 0.0685 1.7600 -49 313 -5.2895 0.0964 1.7600 -49 314 -5.2254 0.1251 1.7600 -49 315 -5.1633 0.1478 1.7600 -49 316 -5.1025 0.1652 1.7600 -49 317 -5.0424 0.1758 1.7600 -49 318 -4.9839 0.1856 1.7600 -49 319 -4.9224 0.1945 1.7600 -49 320 -4.8581 0.2047 1.7600 -49 321 -4.7880 0.2112 1.7600 -49 322 -4.7175 0.2115 1.7600 -49 323 -4.6479 0.2080 1.7600 -49 324 -4.5796 0.2045 1.7600 -49 325 -4.5074 0.2027 1.7600 -49 326 -4.4355 0.2058 1.7600 -49 327 -4.3584 0.2157 1.7600 -49 328 -4.2821 0.2264 1.7600 -49 329 -4.2068 0.2372 1.7600 -49 330 -4.1295 0.2527 1.7600 -49 331 -4.0528 0.2752 1.7600 -49 332 -3.9742 0.3034 1.7600 -49 333 -3.8991 0.3232 1.7600 -49 334 -3.8263 0.3351 1.7600 -49 335 -3.7576 0.3399 1.7600 -49 336 -3.6935 0.3435 1.7600 -49 337 -3.6286 0.3481 1.7600 -49 338 -3.5634 0.3505 1.7600 -49 339 -3.4970 0.3508 1.7600 -49 340 -3.4282 0.3451 1.7600 -49 341 -3.3560 0.3342 1.7600 -49 342 -3.2854 0.3236 1.7600 -49 343 -3.2143 0.3192 1.7600 -49 344 -3.1409 0.3241 1.7600 -49 345 -3.0689 0.3338 1.7600 -49 346 -3.0003 0.3475 1.7600 -49 347 -2.9363 0.3618 1.7600 -49 348 -2.8725 0.3759 1.7600 -49 349 -2.8031 0.3953 1.7600 -49 350 -2.7290 0.4143 1.7600 -49 351 -2.6563 0.4259 1.7600 -49 352 -2.5852 0.4246 1.7600 -49 353 -2.5153 0.4167 1.7600 -49 354 -2.4493 0.4045 1.7600 -49 355 -2.3874 0.3929 1.7600 -49 356 -2.3285 0.3812 1.7600 -49 357 -2.2702 0.3658 1.7600 -49 358 -2.2073 0.3438 1.7600 -49 359 -2.1395 0.3201 1.7600 -49 360 -2.0724 0.3014 1.7600 -49 361 -2.0041 0.2923 1.7600 -49 362 -1.9391 0.2915 1.7600 -49 363 -1.8724 0.2927 1.7600 -49 364 -1.8168 0.2966 1.7600 -49 365 -1.7569 0.3022 1.7600 -49 366 -1.6945 0.3093 1.7600 -49 367 -1.6288 0.3222 1.7600 -49 368 -1.5550 0.3384 1.7600 -49 369 -1.4848 0.3544 1.7600 -49 370 -1.4203 0.3623 1.7600 -49 371 -1.3550 0.3620 1.7600 -49 372 -1.2870 0.3613 1.7600 -49 373 -1.2251 0.3615 1.7600 -49 374 -1.1618 0.3606 1.7600 -49 375 -1.0962 0.3585 1.7600 -49 376 -1.0257 0.3518 1.7600 -49 377 -0.9523 0.3399 1.7600 -49 378 -0.8768 0.3254 1.7600 -49 379 -0.8038 0.3160 1.7600 -49 380 -0.7330 0.3140 1.7600 -49 381 -0.6656 0.3166 1.7600 -49 382 -0.6004 0.3173 1.7600 -49 383 -0.5355 0.3198 1.7600 -49 384 -0.4654 0.3248 1.7600 -49 385 -0.3954 0.3370 1.7600 -49 386 -0.3222 0.3551 1.7600 -49 387 -0.2528 0.3744 1.7600 -49 388 -0.1909 0.3852 1.7600 -49 389 -0.1291 0.3860 1.7600 -49 390 -0.0641 0.3798 1.7600 -49 391 0.0029 0.3690 1.7600 -49 392 0.0695 0.3551 1.7600 -49 393 0.1372 0.3408 1.7600 -49 394 0.2060 0.3269 1.7600 -49 395 0.2753 0.3087 1.7600 -49 396 0.3494 0.2857 1.7600 -49 397 0.4269 0.2610 1.7600 -49 398 0.5014 0.2445 1.7600 -49 399 0.5767 0.2341 1.7600 -49 400 0.6522 0.2341 1.7600 -49 401 0.7288 0.2383 1.7600 -49 402 0.8017 0.2461 1.7600 -49 403 0.8737 0.2573 1.7600 -49 404 0.9446 0.2748 1.7600 -49 405 1.0118 0.2990 1.7600 -49 406 1.0843 0.3211 1.7600 -49 407 1.1446 0.3347 1.7600 -49 408 1.2002 0.3402 1.7600 -49 409 1.2543 0.3407 1.7600 -49 410 1.3057 0.3376 1.7600 -49 411 1.3537 0.3351 1.7600 -49 412 1.4062 0.3320 1.7600 -49 413 1.4498 0.3264 1.7600 -49 414 1.5066 0.3141 1.7600 -49 415 1.5668 0.2967 1.7600 -49 416 1.6313 0.2723 1.7600 -49 417 1.6987 0.2521 1.7600 -49 418 1.7615 0.2419 1.7600 -49 419 1.8285 0.2395 1.7600 -49 420 1.8904 0.2439 1.7600 -49 421 1.9502 0.2518 1.7600 -49 422 2.0074 0.2606 1.7600 -49 423 2.0658 0.2782 1.7600 -49 424 2.1248 0.2994 1.7600 -49 425 2.1930 0.3290 1.7600 -49 426 2.2615 0.3549 1.7600 -49 427 2.3251 0.3717 1.7600 -49 428 2.3925 0.3787 1.7600 -49 429 2.4658 0.3797 1.7600 -49 430 2.5415 0.3745 1.7600 -49 431 2.6191 0.3681 1.7600 -49 432 2.6903 0.3612 1.7600 -49 433 2.7582 0.3500 1.7600 -49 434 2.8286 0.3364 1.7600 -49 435 2.9002 0.3168 1.7600 -49 436 2.9712 0.2981 1.7600 -49 437 3.0363 0.2881 1.7600 -49 438 3.1000 0.2844 1.7600 -49 439 3.1601 0.2850 1.7600 -49 440 3.2158 0.2856 1.7600 -49 441 3.2602 0.2886 1.7600 -49 442 3.3081 0.2995 1.7600 -49 443 3.3570 0.3123 1.7600 -49 444 3.4149 0.3335 1.7600 -49 445 3.4783 0.3562 1.7600 -49 446 3.5446 0.3720 1.7600 -49 447 3.6031 0.3787 1.7600 -49 448 3.6635 0.3742 1.7600 -49 449 3.7253 0.3662 1.7600 -49 450 3.7795 0.3565 1.7600 -49 451 3.8358 0.3468 1.7600 -49 452 3.8827 0.3357 1.7600 -49 453 3.9385 0.3194 1.7600 -49 454 4.0031 0.2970 1.7600 -49 455 4.0745 0.2730 1.7600 -49 456 4.1424 0.2539 1.7600 -49 457 4.2078 0.2444 1.7600 -49 458 4.2771 0.2436 1.7600 -49 459 4.3404 0.2473 1.7600 -49 460 4.4008 0.2567 1.7600 -49 461 4.4627 0.2672 1.7600 -49 462 4.5199 0.2832 1.7600 -49 463 4.5766 0.3043 1.7600 -49 464 4.6401 0.3304 1.7600 -49 465 4.7058 0.3568 1.7600 -49 466 4.7695 0.3740 1.7600 -49 467 4.8319 0.3813 1.7600 -49 468 4.8906 0.3778 1.7600 -49 469 4.9467 0.3706 1.7600 -49 470 4.9966 0.3636 1.7600 -49 471 5.0467 0.3541 1.7600 -49 472 5.0989 0.3427 1.7600 -49 473 5.1535 0.3232 1.7600 -49 474 5.2112 0.2978 1.7600 -49 475 5.2775 0.2707 1.7600 -49 476 5.3400 0.2495 1.7600 -49 477 5.4052 0.2398 1.7600 -49 478 5.4760 0.2341 1.7600 -49 479 5.5428 0.2329 1.7600 -49 480 5.6033 0.2334 1.7600 -49 481 5.6587 0.2360 1.7600 -49 482 5.7116 0.2438 1.7600 -49 483 5.7694 0.2570 1.7600 -49 484 5.8382 0.2745 1.7600 -49 485 5.9164 0.2918 1.7600 -50 288 -7.7987 0.8669 1.7600 -50 289 -7.7536 0.8315 1.7600 -50 290 -7.7078 0.8096 1.7600 -50 291 -7.6571 0.7958 1.7600 -50 292 -7.6038 0.7848 1.7600 -50 293 -7.5438 0.7720 1.7600 -50 294 -7.4777 0.7581 1.7600 -50 295 -7.4032 0.7430 1.7600 -50 296 -7.3278 0.7296 1.7600 -50 297 -7.2483 0.7162 1.7600 -50 298 -7.1763 0.7010 1.7600 -50 299 -7.1149 0.6848 1.7600 -50 300 -7.0640 0.6601 1.7600 -50 301 -7.0198 0.6254 1.7600 -50 302 -6.9677 0.5913 1.7600 -50 303 -6.9043 0.5599 1.7600 -50 304 -6.8305 0.5319 1.7600 -50 305 -6.7591 0.5045 1.7600 -50 306 -6.6830 0.4732 1.7600 -50 307 -6.6052 0.4372 1.7600 -50 308 -6.5421 0.4075 1.7600 -50 309 -6.4823 0.3917 1.7600 -50 310 -6.4238 0.3873 1.7600 -50 311 -6.3583 0.3891 1.7600 -50 312 -6.2891 0.3910 1.7600 -50 313 -6.2133 0.3970 1.7600 -50 314 -6.1385 0.4040 1.7600 -50 315 -6.0632 0.4173 1.7600 -50 316 -5.9899 0.4354 1.7600 -50 317 -5.9213 0.4506 1.7600 -50 318 -5.8655 0.4509 1.7600 -50 319 -5.8097 0.4369 1.7600 -50 320 -5.7566 0.4194 1.7600 -50 321 -5.6991 0.3985 1.7600 -50 322 -5.6336 0.3808 1.7600 -50 323 -5.5630 0.3600 1.7600 -50 324 -5.4964 0.3347 1.7600 -50 325 -5.4344 0.3044 1.7600 -50 326 -5.3774 0.2835 1.7600 -50 327 -5.3271 0.2695 1.7600 -50 328 -5.2777 0.2633 1.7600 -50 329 -5.2187 0.2602 1.7600 -50 330 -5.1562 0.2636 1.7600 -50 331 -5.0881 0.2675 1.7600 -50 332 -5.0142 0.2737 1.7600 -50 333 -4.9302 0.2818 1.7600 -50 334 -4.8458 0.2940 1.7600 -50 335 -4.7614 0.3106 1.7600 -50 336 -4.6845 0.3254 1.7600 -50 337 -4.6170 0.3301 1.7600 -50 338 -4.5548 0.3176 1.7600 -50 339 -4.4941 0.3001 1.7600 -50 340 -4.4296 0.2835 1.7600 -50 341 -4.3589 0.2713 1.7600 -50 342 -4.2861 0.2599 1.7600 -50 343 -4.2145 0.2465 1.7600 -50 344 -4.1472 0.2268 1.7600 -50 345 -4.0812 0.2035 1.7600 -50 346 -4.0260 0.1847 1.7600 -50 347 -3.9757 0.1760 1.7600 -50 348 -3.9233 0.1742 1.7600 -50 349 -3.8725 0.1777 1.7600 -50 350 -3.8273 0.1865 1.7600 -50 351 -3.7809 0.1992 1.7600 -50 352 -3.7259 0.2134 1.7600 -50 353 -3.6652 0.2328 1.7600 -50 354 -3.5977 0.2532 1.7600 -50 355 -3.5304 0.2785 1.7600 -50 356 -3.4636 0.2915 1.7600 -50 357 -3.4028 0.2907 1.7600 -50 358 -3.3412 0.2858 1.7600 -50 359 -3.2787 0.2778 1.7600 -50 360 -3.2134 0.2720 1.7600 -50 361 -3.1449 0.2660 1.7600 -50 362 -3.0681 0.2565 1.7600 -50 363 -2.9863 0.2427 1.7600 -50 364 -2.9012 0.2280 1.7600 -50 365 -2.8162 0.2163 1.7600 -50 366 -2.7326 0.2168 1.7600 -50 367 -2.6436 0.2306 1.7600 -50 368 -2.5510 0.2497 1.7600 -50 369 -2.4660 0.2720 1.7600 -50 370 -2.3834 0.2852 1.7600 -50 371 -2.3057 0.2988 1.7600 -50 372 -2.2277 0.3134 1.7600 -50 373 -2.1484 0.3303 1.7600 -50 374 -2.0730 0.3375 1.7600 -50 375 -2.0035 0.3321 1.7600 -50 376 -1.9333 0.3180 1.7600 -50 377 -1.8668 0.3002 1.7600 -50 378 -1.8757 0.3351 1.7600 -50 379 -1.8077 0.3174 1.7600 -50 380 -1.7335 0.2907 1.7600 -50 381 -1.6661 0.2572 1.7600 -50 382 -1.5927 0.2049 1.7600 -50 383 -1.5358 0.1771 1.7600 -50 384 -1.4782 0.1725 1.7600 -50 385 -1.4187 0.1766 1.7600 -50 386 -1.3687 0.1805 1.7600 -50 387 -1.3155 0.1848 1.7600 -50 388 -1.2515 0.1903 1.7600 -50 389 -1.1896 0.1946 1.7600 -50 390 -1.1302 0.1985 1.7600 -50 391 -1.0664 0.2043 1.7600 -50 392 -1.0011 0.2124 1.7600 -50 393 -0.9394 0.2192 1.7600 -50 394 -0.8768 0.2145 1.7600 -50 395 -0.8174 0.2020 1.7600 -50 396 -0.7597 0.1878 1.7600 -50 397 -0.6962 0.1775 1.7600 -50 398 -0.6339 0.1665 1.7600 -50 399 -0.5710 0.1570 1.7600 -50 400 -0.5108 0.1424 1.7600 -50 401 -0.4680 0.1243 1.7600 -50 402 -0.4462 0.1113 1.7600 -50 403 -0.4231 0.1032 1.7600 -50 404 -0.3891 0.1002 1.7600 -50 405 -0.3537 0.1002 1.7600 -50 406 -0.3260 0.1046 1.7600 -50 407 -0.3018 0.1073 1.7600 -50 408 -0.2686 0.1052 1.7600 -50 409 -0.2344 0.1036 1.7600 -50 410 -0.1889 0.1023 1.7600 -50 411 -0.1431 0.1198 1.7600 -50 412 -0.0923 0.1424 1.7600 -50 413 -0.0403 0.1743 1.7600 -50 414 0.0136 0.2046 1.7600 -50 415 0.0814 0.2280 1.7600 -50 416 0.1453 0.2366 1.7600 -50 417 0.2173 0.2323 1.7600 -50 418 0.2911 0.2237 1.7600 -50 419 0.3685 0.2137 1.7600 -50 420 0.4433 0.2017 1.7600 -50 421 0.5182 0.1824 1.7600 -50 422 0.5956 0.1602 1.7600 -50 423 0.6722 0.1393 1.7600 -50 424 0.7469 0.1280 1.7600 -50 425 0.8240 0.1233 1.7600 -50 426 0.8932 0.1294 1.7600 -50 427 0.9549 0.1420 1.7600 -50 428 1.0131 0.1553 1.7600 -50 429 1.0741 0.1721 1.7600 -50 430 1.1364 0.1875 1.7600 -50 431 1.1982 0.2090 1.7600 -50 432 1.2573 0.2329 1.7600 -50 433 1.3151 0.2572 1.7600 -50 434 1.3713 0.2817 1.7600 -50 435 1.4265 0.2942 1.7600 -50 436 1.4807 0.2882 1.7600 -50 437 1.5290 0.2755 1.7600 -50 438 1.5825 0.2638 1.7600 -50 439 1.6441 0.2527 1.7600 -50 440 1.7079 0.2385 1.7600 -50 441 1.7734 0.2205 1.7600 -50 442 1.8378 0.1948 1.7600 -50 443 1.8966 0.1692 1.7600 -50 444 1.9477 0.1513 1.7600 -50 445 1.9982 0.1441 1.7600 -50 446 2.0538 0.1470 1.7600 -50 447 2.1049 0.1595 1.7600 -50 448 2.1594 0.1735 1.7600 -50 449 2.2175 0.1908 1.7600 -50 450 2.2737 0.2083 1.7600 -50 451 2.3352 0.2318 1.7600 -50 452 2.3985 0.2555 1.7600 -50 453 2.4625 0.2804 1.7600 -50 454 2.5250 0.2938 1.7600 -50 455 2.5858 0.2921 1.7600 -50 456 2.6395 0.2809 1.7600 -50 457 2.6958 0.2653 1.7600 -50 458 2.7547 0.2517 1.7600 -50 459 2.8225 0.2382 1.7600 -50 460 2.9002 0.2256 1.7600 -50 461 2.9782 0.2083 1.7600 -50 462 3.0541 0.1861 1.7600 -50 463 3.1294 0.1583 1.7600 -50 464 3.1947 0.1429 1.7600 -50 465 3.2511 0.1368 1.7600 -50 466 3.3036 0.1371 1.7600 -50 467 3.3509 0.1400 1.7600 -50 468 3.3976 0.1433 1.7600 -50 469 3.4412 0.1514 1.7600 -50 470 3.4874 0.1570 1.7600 -50 471 3.5426 0.1616 1.7600 -50 472 3.5986 0.1687 1.7600 -50 473 3.6585 0.1740 1.7600 -50 474 3.7182 0.1853 1.7600 -50 475 3.7807 0.1960 1.7600 -50 476 3.8429 0.2055 1.7600 -50 477 3.8970 0.1996 1.7600 -50 478 3.9438 0.1855 1.7600 -50 479 3.9867 0.1742 1.7600 -50 480 4.0365 0.1661 1.7600 -50 481 4.0898 0.1608 1.7600 -50 482 4.1458 0.1522 1.7600 -50 483 4.2019 0.1437 1.7600 -50 484 4.2672 0.1249 1.7600 -50 485 4.3369 0.0984 1.7600 -50 486 4.4067 0.0743 1.7600 -50 487 4.4656 0.0590 1.7600 -50 488 4.5256 0.0510 1.7600 -50 489 4.5868 0.0532 1.7600 -50 490 4.6460 0.0594 1.7600 -50 491 4.7016 0.0678 1.7600 -50 492 4.7537 0.0732 1.7600 -50 493 4.8078 0.0824 1.7600 -50 494 4.8645 0.0924 1.7600 -50 495 4.9281 0.1047 1.7600 -50 496 5.0010 0.1188 1.7600 -50 497 5.0691 0.1287 1.7600 -50 498 5.1343 0.1259 1.7600 -50 499 5.2025 0.1106 1.7600 -50 500 5.2658 0.0909 1.7600 -50 501 5.3228 0.0722 1.7600 -50 502 5.3798 0.0569 1.7600 -50 503 5.4402 0.0411 1.7600 -50 504 5.5102 0.0229 1.7600 -50 505 5.5847 -0.0002 1.7600 -50 506 5.6612 -0.0201 1.7600 -50 507 5.7270 -0.0297 1.7600 -50 508 5.7911 -0.0295 1.7600 -50 509 5.8569 -0.0198 1.7600 -50 510 5.9197 -0.0056 1.7600 -51 298 -7.7967 2.0086 1.7600 -51 299 -7.7342 2.0162 1.7600 -51 300 -7.6695 2.0181 1.7600 -51 301 -7.6016 2.0130 1.7600 -51 302 -7.5302 2.0042 1.7600 -51 303 -7.4557 1.9931 1.7600 -51 304 -7.3796 1.9799 1.7600 -51 305 -7.3049 1.9639 1.7600 -51 306 -7.2353 1.9441 1.7600 -51 307 -7.1724 1.9237 1.7600 -51 308 -7.1121 1.9039 1.7600 -51 309 -7.0555 1.8863 1.7600 -51 310 -6.9939 1.8707 1.7600 -51 311 -6.9282 1.8610 1.7600 -51 312 -6.8589 1.8495 1.7600 -51 313 -6.7859 1.8391 1.7600 -51 314 -6.7106 1.8307 1.7600 -51 315 -6.6347 1.8240 1.7600 -51 316 -6.5633 1.8237 1.7600 -51 317 -6.4930 1.8204 1.7600 -51 318 -6.4269 1.8219 1.7600 -51 319 -6.3608 1.8162 1.7600 -51 320 -6.2959 1.8048 1.7600 -51 321 -6.2282 1.7886 1.7600 -51 322 -6.1628 1.7730 1.7600 -51 323 -6.0973 1.7562 1.7600 -51 324 -6.0334 1.7362 1.7600 -51 325 -5.9716 1.7126 1.7600 -51 326 -5.9140 1.6889 1.7600 -51 327 -5.8584 1.6639 1.7600 -51 328 -5.8076 1.6409 1.7600 -51 329 -5.7549 1.6239 1.7600 -51 330 -5.7031 1.6151 1.7600 -51 331 -5.6489 1.6075 1.7600 -51 332 -5.5882 1.6029 1.7600 -51 333 -5.5274 1.6001 1.7600 -51 334 -5.4663 1.6040 1.7600 -51 335 -5.4036 1.6132 1.7600 -51 336 -5.3426 1.6248 1.7600 -51 337 -5.2842 1.6378 1.7600 -51 338 -5.2258 1.6464 1.7600 -51 339 -5.1706 1.6506 1.7600 -51 340 -5.1129 1.6503 1.7600 -51 341 -5.0551 1.6476 1.7600 -51 342 -4.9946 1.6429 1.7600 -51 343 -4.9341 1.6377 1.7600 -51 344 -4.8741 1.6333 1.7600 -51 345 -4.8148 1.6234 1.7600 -51 346 -4.7565 1.6090 1.7600 -51 347 -4.7001 1.5922 1.7600 -51 348 -4.6402 1.5746 1.7600 -51 349 -4.5852 1.5576 1.7600 -51 350 -4.5290 1.5439 1.7600 -51 351 -4.4701 1.5332 1.7600 -51 352 -4.4130 1.5244 1.7600 -51 353 -4.3567 1.5153 1.7600 -51 354 -4.2964 1.5060 1.7600 -51 355 -4.2360 1.5021 1.7600 -51 356 -4.1728 1.5009 1.7600 -51 357 -4.1089 1.5055 1.7600 -51 358 -4.0473 1.5122 1.7600 -51 359 -3.9822 1.5189 1.7600 -51 360 -3.9229 1.5202 1.7600 -51 361 -3.8602 1.5194 1.7600 -51 362 -3.8032 1.5127 1.7600 -51 363 -3.7409 1.5056 1.7600 -51 364 -3.6789 1.5016 1.7600 -51 365 -3.6171 1.4949 1.7600 -51 366 -3.5543 1.4841 1.7600 -51 367 -3.4908 1.4695 1.7600 -51 368 -3.4248 1.4543 1.7600 -51 369 -3.3594 1.4425 1.7600 -51 370 -3.2939 1.4340 1.7600 -51 371 -3.2281 1.4324 1.7600 -51 372 -3.1594 1.4349 1.7600 -51 373 -3.0917 1.4376 1.7600 -51 374 -3.0220 1.4435 1.7600 -51 375 -2.9550 1.4507 1.7600 -51 376 -2.8856 1.4611 1.7600 -51 377 -2.8106 1.4749 1.7600 -51 378 -2.7381 1.4885 1.7600 -51 379 -2.6707 1.5006 1.7600 -51 380 -2.6043 1.5071 1.7600 -51 381 -2.5357 1.5089 1.7600 -51 382 -2.4687 1.5096 1.7600 -51 383 -2.4040 1.5091 1.7600 -51 384 -2.3400 1.5057 1.7600 -51 385 -2.2763 1.4985 1.7600 -51 386 -2.2112 1.4892 1.7600 -51 387 -2.1371 1.4766 1.7600 -51 388 -2.0627 1.4583 1.7600 -51 389 -1.9960 1.4546 1.7600 -51 390 -1.9269 1.4496 1.7600 -51 391 -1.8576 1.4466 1.7600 -51 392 -1.7925 1.4467 1.7600 -51 393 -1.7312 1.4456 1.7600 -51 394 -1.6704 1.4473 1.7600 -51 395 -1.6054 1.4498 1.7600 -51 396 -1.5402 1.4571 1.7600 -51 397 -1.4652 1.4641 1.7600 -51 398 -1.3916 1.4767 1.7600 -51 399 -1.3217 1.4843 1.7600 -51 400 -1.2540 1.4882 1.7600 -51 401 -1.1885 1.4878 1.7600 -51 402 -1.1261 1.4861 1.7600 -51 403 -1.0646 1.4845 1.7600 -51 404 -1.0025 1.4808 1.7600 -51 405 -0.9402 1.4749 1.7600 -51 406 -0.8772 1.4662 1.7600 -51 407 -0.8106 1.4531 1.7600 -51 408 -0.7535 1.4472 1.7600 -51 409 -0.6942 1.4401 1.7600 -51 410 -0.6356 1.4377 1.7600 -51 411 -0.5776 1.4375 1.7600 -51 412 -0.5217 1.4338 1.7600 -51 413 -0.4636 1.4322 1.7600 -51 414 -0.4055 1.4303 1.7600 -51 415 -0.3460 1.4303 1.7600 -51 416 -0.2870 1.4336 1.7600 -51 417 -0.2277 1.4408 1.7600 -51 418 -0.1678 1.4497 1.7600 -51 419 -0.1099 1.4601 1.7600 -51 420 -0.0484 1.4666 1.7600 -51 421 0.0130 1.4722 1.7600 -51 422 0.0753 1.4742 1.7600 -51 423 0.1388 1.4755 1.7600 -51 424 0.2018 1.4778 1.7600 -51 425 0.2669 1.4755 1.7600 -51 426 0.3307 1.4711 1.7600 -51 427 0.3946 1.4622 1.7600 -51 428 0.4564 1.4520 1.7600 -51 429 0.5178 1.4438 1.7600 -51 430 0.5755 1.4374 1.7600 -51 431 0.6373 1.4339 1.7600 -51 432 0.6967 1.4347 1.7600 -51 433 0.7567 1.4370 1.7600 -51 434 0.8211 1.4397 1.7600 -51 435 0.8877 1.4435 1.7600 -51 436 0.9566 1.4482 1.7600 -51 437 1.0262 1.4563 1.7600 -51 438 1.0953 1.4668 1.7600 -51 439 1.1629 1.4799 1.7600 -51 440 1.2315 1.4907 1.7600 -51 441 1.2969 1.4979 1.7600 -51 442 1.3640 1.4990 1.7600 -51 443 1.4287 1.4984 1.7600 -51 444 1.4941 1.4966 1.7600 -51 445 1.5605 1.4922 1.7600 -51 446 1.6265 1.4868 1.7600 -51 447 1.6959 1.4751 1.7600 -51 448 1.7643 1.4597 1.7600 -51 449 1.8339 1.4465 1.7600 -51 450 1.9043 1.4316 1.7600 -51 451 1.9729 1.4218 1.7600 -51 452 2.0419 1.4171 1.7600 -51 453 2.1105 1.4157 1.7600 -51 454 2.1798 1.4141 1.7600 -51 455 2.2512 1.4161 1.7600 -51 456 2.3226 1.4206 1.7600 -51 457 2.3935 1.4283 1.7600 -51 458 2.4701 1.4414 1.7600 -51 459 2.5492 1.4581 1.7600 -51 460 2.6249 1.4750 1.7600 -51 461 2.7011 1.4907 1.7600 -51 462 2.7734 1.4940 1.7600 -51 463 2.8468 1.4929 1.7600 -51 464 2.9194 1.4896 1.7600 -51 465 2.9921 1.4856 1.7600 -51 466 3.0621 1.4827 1.7600 -51 467 3.1338 1.4743 1.7600 -51 468 3.2106 1.4639 1.7600 -51 469 3.2923 1.4523 1.7600 -51 470 3.3717 1.4438 1.7600 -51 471 3.4488 1.4373 1.7600 -51 472 3.5237 1.4387 1.7600 -51 473 3.5939 1.4422 1.7600 -51 474 3.6633 1.4476 1.7600 -51 475 3.7332 1.4532 1.7600 -51 476 3.8042 1.4616 1.7600 -51 477 3.8792 1.4760 1.7600 -51 478 3.9605 1.4933 1.7600 -51 479 4.0444 1.5108 1.7600 -51 480 4.1284 1.5256 1.7600 -51 481 4.2133 1.5354 1.7600 -51 482 4.2957 1.5378 1.7600 -51 483 4.3781 1.5361 1.7600 -51 484 4.4530 1.5336 1.7600 -51 485 4.5289 1.5322 1.7600 -51 486 4.6026 1.5270 1.7600 -51 487 4.6834 1.5221 1.7600 -51 488 4.7774 1.5188 1.7600 -51 489 4.8722 1.5196 1.7600 -51 490 4.9670 1.5235 1.7600 -51 491 5.0537 1.5355 1.7600 -51 492 5.1347 1.5521 1.7600 -51 493 5.2069 1.5658 1.7600 -51 494 5.2780 1.5808 1.7600 -51 495 5.3505 1.5954 1.7600 -51 496 5.4253 1.6128 1.7600 -51 497 5.5088 1.6350 1.7600 -51 498 5.5932 1.6591 1.7600 -51 499 5.6801 1.6816 1.7600 -51 500 5.7673 1.6963 1.7600 -51 501 5.8519 1.7032 1.7600 -51 502 5.9294 1.7062 1.7600 -52 292 -7.7609 1.4916 1.7600 -52 293 -7.6813 1.4959 1.7600 -52 294 -7.5968 1.4954 1.7600 -52 295 -7.5370 1.4814 1.7600 -52 296 -7.4803 1.4599 1.7600 -52 297 -7.4187 1.4364 1.7600 -52 298 -7.3981 1.4490 1.7600 -52 299 -7.3112 1.4186 1.7600 -52 300 -7.2172 1.3740 1.7600 -52 301 -7.1400 1.3490 1.7600 -52 302 -7.0726 1.3296 1.7600 -52 303 -7.0129 1.3135 1.7600 -52 304 -6.9531 1.3052 1.7600 -52 305 -6.8889 1.3000 1.7600 -52 306 -6.8200 1.2916 1.7600 -52 307 -6.7458 1.2803 1.7600 -52 308 -6.6670 1.2695 1.7600 -52 309 -6.5753 1.2527 1.7600 -52 310 -6.5042 1.2405 1.7600 -52 311 -6.4398 1.2318 1.7600 -52 312 -6.3837 1.2139 1.7600 -52 313 -6.3280 1.1925 1.7600 -52 314 -6.2657 1.1752 1.7600 -52 315 -6.1914 1.1507 1.7600 -52 316 -6.1173 1.1271 1.7600 -52 317 -6.0426 1.1028 1.7600 -52 318 -5.9813 1.0841 1.7600 -52 319 -5.9244 1.0642 1.7600 -52 320 -5.8701 1.0572 1.7600 -52 321 -5.8194 1.0588 1.7600 -52 322 -5.7652 1.0704 1.7600 -52 323 -5.7091 1.0778 1.7600 -52 324 -5.6479 1.0871 1.7600 -52 325 -5.5858 1.1035 1.7600 -52 326 -5.5238 1.1261 1.7600 -52 327 -5.4633 1.1469 1.7600 -52 328 -5.4098 1.1529 1.7600 -52 329 -5.3623 1.1539 1.7600 -52 330 -5.3112 1.1464 1.7600 -52 331 -5.2572 1.1395 1.7600 -52 332 -5.1992 1.1307 1.7600 -52 333 -5.1421 1.1153 1.7600 -52 334 -5.0859 1.0984 1.7600 -52 335 -5.0265 1.0800 1.7600 -52 336 -4.9643 1.0652 1.7600 -52 337 -4.9068 1.0593 1.7600 -52 338 -4.8506 1.0655 1.7600 -52 339 -4.7972 1.0768 1.7600 -52 340 -4.7484 1.0929 1.7600 -52 341 -4.6987 1.1058 1.7600 -52 342 -4.6463 1.1177 1.7600 -52 343 -4.5888 1.1336 1.7600 -52 344 -4.5241 1.1529 1.7600 -52 345 -4.4563 1.1702 1.7600 -52 346 -4.3939 1.1873 1.7600 -52 347 -4.3384 1.1940 1.7600 -52 348 -4.2805 1.1952 1.7600 -52 349 -4.2205 1.1918 1.7600 -52 350 -4.1569 1.1839 1.7600 -52 351 -4.0951 1.1783 1.7600 -52 352 -4.0336 1.1729 1.7600 -52 353 -3.9666 1.1640 1.7600 -52 354 -3.9004 1.1565 1.7600 -52 355 -3.8402 1.1511 1.7600 -52 356 -3.7792 1.1494 1.7600 -52 357 -3.7126 1.1491 1.7600 -52 358 -3.6471 1.1467 1.7600 -52 359 -3.5837 1.1450 1.7600 -52 360 -3.5142 1.1401 1.7600 -52 361 -3.4439 1.1370 1.7600 -52 362 -3.3767 1.1350 1.7600 -52 363 -3.3061 1.1388 1.7600 -52 364 -3.2425 1.1425 1.7600 -52 365 -3.1831 1.1421 1.7600 -52 366 -3.1276 1.1344 1.7600 -52 367 -3.0751 1.1254 1.7600 -52 368 -3.0173 1.1168 1.7600 -52 369 -2.9644 1.1030 1.7600 -52 370 -2.9074 1.0886 1.7600 -52 371 -2.8485 1.0718 1.7600 -52 372 -2.7930 1.0587 1.7600 -52 373 -2.7424 1.0537 1.7600 -52 374 -2.6898 1.0541 1.7600 -52 375 -2.6391 1.0559 1.7600 -52 376 -2.5864 1.0593 1.7600 -52 377 -2.5317 1.0637 1.7600 -52 378 -2.4732 1.0724 1.7600 -52 379 -2.4079 1.0864 1.7600 -52 380 -2.3358 1.1027 1.7600 -52 381 -2.2703 1.1071 1.7600 -52 382 -2.2137 1.1042 1.7600 -52 383 -2.1568 1.0964 1.7600 -52 384 -2.0990 1.0878 1.7600 -52 385 -2.0431 1.0791 1.7600 -52 386 -1.9876 1.0685 1.7600 -52 387 -1.9285 1.0582 1.7600 -52 388 -1.8642 1.0477 1.7600 -52 389 -1.8028 1.0396 1.7600 -52 390 -1.7497 1.0411 1.7600 -52 391 -1.7001 1.0506 1.7600 -52 392 -1.6461 1.0635 1.7600 -52 393 -1.5947 1.0745 1.7600 -52 394 -1.5412 1.0837 1.7600 -52 395 -1.4852 1.0962 1.7600 -52 396 -1.4204 1.1167 1.7600 -52 397 -1.3482 1.1404 1.7600 -52 398 -1.2807 1.1564 1.7600 -52 399 -1.2204 1.1638 1.7600 -52 400 -1.1593 1.1655 1.7600 -52 401 -1.0939 1.1643 1.7600 -52 402 -1.0286 1.1638 1.7600 -52 403 -0.9625 1.1648 1.7600 -52 404 -0.8941 1.1647 1.7600 -52 405 -0.8214 1.1607 1.7600 -52 406 -0.7505 1.1574 1.7600 -52 407 -0.6828 1.1576 1.7600 -52 408 -0.6109 1.1511 1.7600 -52 409 -0.5434 1.1574 1.7600 -52 410 -0.4808 1.1653 1.7600 -52 411 -0.4164 1.1721 1.7600 -52 412 -0.3470 1.1772 1.7600 -52 413 -0.2721 1.1813 1.7600 -52 414 -0.1960 1.1918 1.7600 -52 415 -0.1229 1.2026 1.7600 -52 416 -0.0550 1.2066 1.7600 -52 417 0.0089 1.2016 1.7600 -52 418 0.0731 1.1919 1.7600 -52 419 0.1390 1.1805 1.7600 -52 420 0.2088 1.1674 1.7600 -52 421 0.2818 1.1526 1.7600 -52 422 0.3548 1.1340 1.7600 -52 423 0.4283 1.1198 1.7600 -52 424 0.4942 1.1033 1.7600 -52 425 0.5553 1.0926 1.7600 -52 426 0.6138 1.0903 1.7600 -52 427 0.6726 1.0929 1.7600 -52 428 0.7340 1.0915 1.7600 -52 429 0.7988 1.0902 1.7600 -52 430 0.8691 1.0914 1.7600 -52 431 0.9435 1.0999 1.7600 -52 432 1.0164 1.1101 1.7600 -52 433 1.0883 1.1179 1.7600 -52 434 1.1517 1.1155 1.7600 -52 435 1.2178 1.1067 1.7600 -52 436 1.2835 1.0930 1.7600 -52 437 1.3514 1.0828 1.7600 -52 438 1.4236 1.0726 1.7600 -52 439 1.4951 1.0622 1.7600 -52 440 1.5706 1.0483 1.7600 -52 441 1.6446 1.0304 1.7600 -52 442 1.7080 1.0228 1.7600 -52 443 1.7636 1.0290 1.7600 -52 444 1.8224 1.0350 1.7600 -52 445 1.8823 1.0391 1.7600 -52 446 1.9454 1.0427 1.7600 -52 447 2.0091 1.0494 1.7600 -52 448 2.0761 1.0598 1.7600 -52 449 2.1447 1.0738 1.7600 -52 450 2.2144 1.0825 1.7600 -52 451 2.2806 1.0840 1.7600 -52 452 2.3438 1.0778 1.7600 -52 453 2.4059 1.0678 1.7600 -52 454 2.4689 1.0577 1.7600 -52 455 2.5305 1.0485 1.7600 -52 456 2.5915 1.0389 1.7600 -52 457 2.6590 1.0254 1.7600 -52 458 2.7280 1.0103 1.7600 -52 459 2.7963 0.9963 1.7600 -52 460 2.8551 0.9888 1.7600 -52 461 2.9104 0.9884 1.7600 -52 462 2.9615 0.9951 1.7600 -52 463 3.0108 1.0000 1.7600 -52 464 3.0649 1.0054 1.7600 -52 465 3.1211 1.0092 1.7600 -52 466 3.1811 1.0149 1.7600 -52 467 3.2443 1.0252 1.7600 -52 468 3.3150 1.0382 1.7600 -52 469 3.3851 1.0457 1.7600 -52 470 3.4513 1.0468 1.7600 -52 471 3.5167 1.0415 1.7600 -52 472 3.5824 1.0308 1.7600 -52 473 3.6438 1.0221 1.7600 -52 474 3.7090 1.0133 1.7600 -52 475 3.7752 1.0038 1.7600 -52 476 3.8463 0.9920 1.7600 -52 477 3.9204 0.9820 1.7600 -52 478 3.9876 0.9755 1.7600 -52 479 4.0504 0.9741 1.7600 -52 480 4.1141 0.9776 1.7600 -52 481 4.1755 0.9843 1.7600 -52 482 4.2338 0.9909 1.7600 -52 483 4.2961 0.9935 1.7600 -52 484 4.3604 1.0022 1.7600 -52 485 4.4332 1.0125 1.7600 -52 486 4.5135 1.0221 1.7600 -52 487 4.5870 1.0253 1.7600 -52 488 4.6582 1.0249 1.7600 -52 489 4.7308 1.0167 1.7600 -52 490 4.7997 1.0027 1.7600 -52 491 4.8622 0.9907 1.7600 -52 492 4.9279 0.9799 1.7600 -52 493 4.9972 0.9633 1.7600 -52 494 5.0697 0.9441 1.7600 -52 495 5.1449 0.9250 1.7600 -52 496 5.2124 0.9138 1.7600 -52 497 5.2823 0.9132 1.7600 -52 498 5.3503 0.9189 1.7600 -52 499 5.4105 0.9248 1.7600 -52 500 5.4701 0.9302 1.7600 -52 501 5.5347 0.9374 1.7600 -52 502 5.6057 0.9483 1.7600 -52 503 5.6867 0.9613 1.7600 -52 504 5.7712 0.9699 1.7600 -52 505 5.8517 0.9696 1.7600 -52 506 5.9336 0.9618 1.7600 -53 303 -7.8121 0.9394 1.7600 -53 304 -7.7310 0.9310 1.7600 -53 305 -7.6575 0.9290 1.7600 -53 306 -7.5957 0.9185 1.7600 -53 307 -7.5433 0.8927 1.7600 -53 308 -7.4911 0.8584 1.7600 -53 309 -7.4332 0.8221 1.7600 -53 310 -7.3678 0.7856 1.7600 -53 311 -7.2982 0.7467 1.7600 -53 312 -7.2287 0.7044 1.7600 -53 313 -7.1649 0.6588 1.7600 -53 314 -7.1070 0.6153 1.7600 -53 315 -7.0515 0.5787 1.7600 -53 316 -6.9974 0.5511 1.7600 -53 317 -6.9398 0.5325 1.7600 -53 318 -6.8707 0.5212 1.7600 -53 319 -6.8035 0.5098 1.7600 -53 320 -6.7294 0.4978 1.7600 -53 321 -6.6551 0.4925 1.7600 -53 322 -6.5908 0.4900 1.7600 -53 323 -6.5272 0.4816 1.7600 -53 324 -6.4684 0.4645 1.7600 -53 325 -6.4142 0.4391 1.7600 -53 326 -6.3566 0.4105 1.7600 -53 327 -6.2921 0.3816 1.7600 -53 328 -6.2203 0.3518 1.7600 -53 329 -6.1451 0.3194 1.7600 -53 330 -6.0661 0.2788 1.7600 -53 331 -5.9936 0.2412 1.7600 -53 332 -5.9330 0.2064 1.7600 -53 333 -5.8791 0.1790 1.7600 -53 334 -5.8296 0.1581 1.7600 -53 335 -5.7790 0.1428 1.7600 -53 336 -5.7290 0.1323 1.7600 -53 337 -5.6786 0.1247 1.7600 -53 338 -5.6301 0.1209 1.7600 -53 339 -5.5862 0.1214 1.7600 -53 340 -5.5456 0.1251 1.7600 -53 341 -5.4987 0.1315 1.7600 -53 342 -5.4477 0.1383 1.7600 -53 343 -5.3829 0.1433 1.7600 -53 344 -5.3322 0.1424 1.7600 -53 345 -5.2856 0.1402 1.7600 -53 346 -5.2333 0.1372 1.7600 -53 347 -5.1800 0.1342 1.7600 -53 348 -5.1254 0.1318 1.7600 -53 349 -5.0686 0.1285 1.7600 -53 350 -5.0090 0.1174 1.7600 -53 351 -4.9497 0.1155 1.7600 -53 352 -4.8948 0.1171 1.7600 -53 353 -4.8424 0.1250 1.7600 -53 354 -4.7917 0.1376 1.7600 -53 355 -4.7377 0.1538 1.7600 -53 356 -4.6795 0.1700 1.7600 -53 357 -4.6230 0.1957 1.7600 -53 358 -4.5643 0.2264 1.7600 -53 359 -4.5067 0.2636 1.7600 -53 360 -4.4504 0.2952 1.7600 -53 361 -4.3924 0.3164 1.7600 -53 362 -4.3298 0.3271 1.7600 -53 363 -4.2660 0.3363 1.7600 -53 364 -4.2021 0.3424 1.7600 -53 365 -4.1369 0.3481 1.7600 -53 366 -4.0675 0.3534 1.7600 -53 367 -3.9947 0.3491 1.7600 -53 368 -3.9213 0.3424 1.7600 -53 369 -3.8551 0.3374 1.7600 -53 370 -3.7895 0.3373 1.7600 -53 371 -3.7246 0.3448 1.7600 -53 372 -3.6632 0.3596 1.7600 -53 373 -3.5988 0.3751 1.7600 -53 374 -3.5378 0.3904 1.7600 -53 375 -3.4720 0.4087 1.7600 -53 376 -3.4065 0.4342 1.7600 -53 377 -3.3371 0.4607 1.7600 -53 378 -3.2690 0.4820 1.7600 -53 379 -3.2008 0.4933 1.7600 -53 380 -3.1312 0.4928 1.7600 -53 381 -3.0609 0.4915 1.7600 -53 382 -2.9924 0.4876 1.7600 -53 383 -2.9245 0.4850 1.7600 -53 384 -2.8535 0.4805 1.7600 -53 385 -2.7800 0.4715 1.7600 -53 386 -2.7073 0.4590 1.7600 -53 387 -2.6361 0.4491 1.7600 -53 388 -2.5671 0.4471 1.7600 -53 389 -2.5016 0.4534 1.7600 -53 390 -2.4393 0.4636 1.7600 -53 391 -2.3777 0.4732 1.7600 -53 392 -2.3147 0.4829 1.7600 -53 393 -2.2513 0.4954 1.7600 -53 394 -2.1885 0.5147 1.7600 -53 395 -2.1249 0.5374 1.7600 -53 396 -2.0543 0.5549 1.7600 -53 397 -1.9825 0.5591 1.7600 -53 398 -1.9136 0.5523 1.7600 -53 399 -1.8427 0.5443 1.7600 -53 400 -1.7760 0.5347 1.7600 -53 401 -1.7111 0.5238 1.7600 -53 402 -1.6437 0.5088 1.7600 -53 403 -1.5749 0.4889 1.7600 -53 404 -1.5030 0.4665 1.7600 -53 405 -1.4330 0.4464 1.7600 -53 406 -1.3674 0.4336 1.7600 -53 407 -1.3040 0.4311 1.7600 -53 408 -1.2405 0.4350 1.7600 -53 409 -1.1768 0.4415 1.7600 -53 410 -1.1135 0.4494 1.7600 -53 411 -1.0498 0.4598 1.7600 -53 412 -0.9842 0.4759 1.7600 -53 413 -0.9192 0.4969 1.7600 -53 414 -0.8527 0.5147 1.7600 -53 415 -0.7931 0.5234 1.7600 -53 416 -0.7316 0.5198 1.7600 -53 417 -0.6686 0.5114 1.7600 -53 418 -0.6075 0.5038 1.7600 -53 419 -0.5459 0.4974 1.7600 -53 420 -0.4823 0.4908 1.7600 -53 421 -0.4161 0.4800 1.7600 -53 422 -0.3508 0.4646 1.7600 -53 423 -0.2867 0.4466 1.7600 -53 424 -0.2245 0.4304 1.7600 -53 425 -0.1645 0.4203 1.7600 -53 426 -0.1063 0.4175 1.7600 -53 427 -0.0467 0.4193 1.7600 -53 428 0.0178 0.4237 1.7600 -53 429 0.0874 0.4301 1.7600 -53 430 0.1584 0.4395 1.7600 -53 431 0.2269 0.4556 1.7600 -53 432 0.2853 0.4778 1.7600 -53 433 0.3401 0.4961 1.7600 -53 434 0.3924 0.5025 1.7600 -53 435 0.4444 0.5005 1.7600 -53 436 0.4982 0.4961 1.7600 -53 437 0.5547 0.4921 1.7600 -53 438 0.6132 0.4886 1.7600 -53 439 0.6725 0.4843 1.7600 -53 440 0.7337 0.4772 1.7600 -53 441 0.7963 0.4672 1.7600 -53 442 0.8581 0.4553 1.7600 -53 443 0.9161 0.4444 1.7600 -53 444 0.9703 0.4392 1.7600 -53 445 1.0221 0.4410 1.7600 -53 446 1.0738 0.4480 1.7600 -53 447 1.1281 0.4573 1.7600 -53 448 1.1861 0.4677 1.7600 -53 449 1.2473 0.4809 1.7600 -53 450 1.3085 0.4984 1.7600 -53 451 1.3664 0.5221 1.7600 -53 452 1.4237 0.5477 1.7600 -53 453 1.4793 0.5685 1.7600 -53 454 1.5374 0.5769 1.7600 -53 455 1.5964 0.5789 1.7600 -53 456 1.6550 0.5789 1.7600 -53 457 1.7151 0.5775 1.7600 -53 458 1.7772 0.5736 1.7600 -53 459 1.8405 0.5670 1.7600 -53 460 1.9049 0.5578 1.7600 -53 461 1.9700 0.5464 1.7600 -53 462 2.0342 0.5353 1.7600 -53 463 2.0944 0.5283 1.7600 -53 464 2.1516 0.5277 1.7600 -53 465 2.2090 0.5313 1.7600 -53 466 2.2682 0.5369 1.7600 -53 467 2.3280 0.5419 1.7600 -53 468 2.3887 0.5475 1.7600 -53 469 2.4502 0.5583 1.7600 -53 470 2.5112 0.5742 1.7600 -53 471 2.5718 0.5906 1.7600 -53 472 2.6331 0.5995 1.7600 -53 473 2.6958 0.5968 1.7600 -53 474 2.7590 0.5859 1.7600 -53 475 2.8277 0.5683 1.7600 -53 476 2.8891 0.5444 1.7600 -53 477 2.9509 0.5267 1.7600 -53 478 3.0091 0.5121 1.7600 -53 479 3.0677 0.4923 1.7600 -53 480 3.1295 0.4700 1.7600 -53 481 3.1904 0.4530 1.7600 -53 482 3.2488 0.4424 1.7600 -53 483 3.3028 0.4369 1.7600 -53 484 3.3537 0.4363 1.7600 -53 485 3.4032 0.4409 1.7600 -53 486 3.4531 0.4481 1.7600 -53 487 3.5060 0.4556 1.7600 -53 488 3.5611 0.4650 1.7600 -53 489 3.6192 0.4809 1.7600 -53 490 3.6813 0.5018 1.7600 -53 491 3.7462 0.5162 1.7600 -53 492 3.8106 0.5138 1.7600 -53 493 3.8811 0.5099 1.7600 -53 494 3.9490 0.5033 1.7600 -53 495 4.0119 0.4957 1.7600 -53 496 4.0716 0.4861 1.7600 -53 497 4.1327 0.4716 1.7600 -53 498 4.1970 0.4528 1.7600 -53 499 4.2635 0.4351 1.7600 -53 500 4.3329 0.4164 1.7600 -53 501 4.4023 0.4047 1.7600 -53 502 4.4738 0.3995 1.7600 -53 503 4.5427 0.3989 1.7600 -53 504 4.6054 0.4036 1.7600 -53 505 4.6650 0.4136 1.7600 -53 506 4.7252 0.4283 1.7600 -53 507 4.7892 0.4475 1.7600 -53 508 4.8567 0.4708 1.7600 -53 509 4.9280 0.4929 1.7600 -53 510 5.0040 0.5062 1.7600 -53 511 5.0783 0.5114 1.7600 -53 512 5.1447 0.5165 1.7600 -53 513 5.2059 0.5256 1.7600 -53 514 5.2681 0.5323 1.7600 -53 515 5.3315 0.5313 1.7600 -53 516 5.3999 0.5221 1.7600 -53 517 5.4792 0.5062 1.7600 -53 518 5.5588 0.4940 1.7600 -53 519 5.6333 0.4931 1.7600 -53 520 5.7052 0.5026 1.7600 -53 521 5.7744 0.5165 1.7600 -53 522 5.8393 0.5293 1.7600 -53 523 5.8975 0.5411 1.7600 -53 524 5.9536 0.5568 1.7600 -54 312 -7.8138 1.2839 1.7600 -54 313 -7.7348 1.2822 1.7600 -54 314 -7.6626 1.2834 1.7600 -54 315 -7.5974 1.2830 1.7600 -54 316 -7.5373 1.2756 1.7600 -54 317 -7.4824 1.2594 1.7600 -54 318 -7.4292 1.2378 1.7600 -54 319 -7.3722 1.2141 1.7600 -54 320 -7.3088 1.1893 1.7600 -54 321 -7.2402 1.1622 1.7600 -54 322 -7.1716 1.1314 1.7600 -54 323 -7.1060 1.0974 1.7600 -54 324 -7.0460 1.0632 1.7600 -54 325 -6.9875 1.0331 1.7600 -54 326 -6.9310 1.0125 1.7600 -54 327 -6.8755 0.9996 1.7600 -54 328 -6.8211 0.9932 1.7600 -54 329 -6.7664 0.9892 1.7600 -54 330 -6.7072 0.9888 1.7600 -54 331 -6.6423 0.9893 1.7600 -54 332 -6.5760 0.9941 1.7600 -54 333 -6.5050 1.0029 1.7600 -54 334 -6.4352 1.0102 1.7600 -54 335 -6.3688 1.0142 1.7600 -54 336 -6.3090 1.0123 1.7600 -54 337 -6.2508 1.0010 1.7600 -54 338 -6.1930 0.9871 1.7600 -54 339 -6.1365 0.9718 1.7600 -54 340 -6.0784 0.9557 1.7600 -54 341 -6.0184 0.9392 1.7600 -54 342 -5.9564 0.9178 1.7600 -54 343 -5.9013 0.8932 1.7600 -54 344 -5.8457 0.8643 1.7600 -54 345 -5.7952 0.8392 1.7600 -54 346 -5.7391 0.8222 1.7600 -54 347 -5.6866 0.8108 1.7600 -54 348 -5.6364 0.8056 1.7600 -54 349 -5.5881 0.8054 1.7600 -54 350 -5.5352 0.8076 1.7600 -54 351 -5.4812 0.8139 1.7600 -54 352 -5.4253 0.8214 1.7600 -54 353 -5.3663 0.8355 1.7600 -54 354 -5.3074 0.8493 1.7600 -54 355 -5.2479 0.8630 1.7600 -54 356 -5.1891 0.8718 1.7600 -54 357 -5.1330 0.8759 1.7600 -54 358 -5.0764 0.8727 1.7600 -54 359 -5.0217 0.8645 1.7600 -54 360 -4.9661 0.8557 1.7600 -54 361 -4.9087 0.8439 1.7600 -54 362 -4.8518 0.8323 1.7600 -54 363 -4.7925 0.8188 1.7600 -54 364 -4.7351 0.8009 1.7600 -54 365 -4.6735 0.7811 1.7600 -54 366 -4.6151 0.7662 1.7600 -54 367 -4.5588 0.7556 1.7600 -54 368 -4.5051 0.7499 1.7600 -54 369 -4.4557 0.7504 1.7600 -54 370 -4.4091 0.7530 1.7600 -54 371 -4.3632 0.7609 1.7600 -54 372 -4.3193 0.7699 1.7600 -54 373 -4.2701 0.7826 1.7600 -54 374 -4.2208 0.8016 1.7600 -54 375 -4.1669 0.8252 1.7600 -54 376 -4.1132 0.8507 1.7600 -54 377 -4.0516 0.8742 1.7600 -54 378 -3.9978 0.8924 1.7600 -54 379 -3.9414 0.8993 1.7600 -54 380 -3.8868 0.9006 1.7600 -54 381 -3.8330 0.8973 1.7600 -54 382 -3.7780 0.8923 1.7600 -54 383 -3.7211 0.8855 1.7600 -54 384 -3.6650 0.8749 1.7600 -54 385 -3.6099 0.8619 1.7600 -54 386 -3.5465 0.8465 1.7600 -54 387 -3.4922 0.8326 1.7600 -54 388 -3.4402 0.8234 1.7600 -54 389 -3.3949 0.8206 1.7600 -54 390 -3.3523 0.8231 1.7600 -54 391 -3.3108 0.8270 1.7600 -54 392 -3.2698 0.8355 1.7600 -54 393 -3.2251 0.8457 1.7600 -54 394 -3.1757 0.8599 1.7600 -54 395 -3.1269 0.8758 1.7600 -54 396 -3.0757 0.8961 1.7600 -54 397 -3.0283 0.9183 1.7600 -54 398 -2.9820 0.9374 1.7600 -54 399 -2.9383 0.9487 1.7600 -54 400 -2.8926 0.9574 1.7600 -54 401 -2.8432 0.9622 1.7600 -54 402 -2.7951 0.9614 1.7600 -54 403 -2.7417 0.9596 1.7600 -54 404 -2.6849 0.9536 1.7600 -54 405 -2.6260 0.9419 1.7600 -54 406 -2.5645 0.9249 1.7600 -54 407 -2.4937 0.9042 1.7600 -54 408 -2.4247 0.8893 1.7600 -54 409 -2.3603 0.8847 1.7600 -54 410 -2.2966 0.8871 1.7600 -54 411 -2.2330 0.8955 1.7600 -54 412 -2.1683 0.9050 1.7600 -54 413 -2.1045 0.9183 1.7600 -54 414 -2.0393 0.9356 1.7600 -54 415 -1.9689 0.9566 1.7600 -54 416 -1.8929 0.9802 1.7600 -54 417 -1.8084 1.0041 1.7600 -54 418 -1.7320 1.0217 1.7600 -54 419 -1.6634 1.0318 1.7600 -54 420 -1.5956 1.0343 1.7600 -54 421 -1.5335 1.0333 1.7600 -54 422 -1.4685 1.0289 1.7600 -54 423 -1.4041 1.0218 1.7600 -54 424 -1.3390 1.0131 1.7600 -54 425 -1.2697 1.0017 1.7600 -54 426 -1.1953 0.9864 1.7600 -54 427 -1.1185 0.9724 1.7600 -54 428 -1.0467 0.9669 1.7600 -54 429 -0.9768 0.9723 1.7600 -54 430 -0.9086 0.9815 1.7600 -54 431 -0.8428 0.9942 1.7600 -54 432 -0.7746 1.0078 1.7600 -54 433 -0.7043 1.0227 1.7600 -54 434 -0.6317 1.0397 1.7600 -54 435 -0.5573 1.0583 1.7600 -54 436 -0.4773 1.0766 1.7600 -54 437 -0.4056 1.0869 1.7600 -54 438 -0.3371 1.0878 1.7600 -54 439 -0.2710 1.0852 1.7600 -54 440 -0.2078 1.0785 1.7600 -54 441 -0.1422 1.0709 1.7600 -54 442 -0.0763 1.0594 1.7600 -54 443 -0.0076 1.0447 1.7600 -54 444 0.0638 1.0274 1.7600 -54 445 0.1355 1.0104 1.7600 -54 446 0.1959 0.9958 1.7600 -54 447 0.2530 0.9897 1.7600 -54 448 0.3124 0.9899 1.7600 -54 449 0.3673 0.9957 1.7600 -54 450 0.4272 1.0016 1.7600 -54 451 0.4877 1.0100 1.7600 -54 452 0.5500 1.0199 1.7600 -54 453 0.6131 1.0342 1.7600 -54 454 0.6759 1.0458 1.7600 -54 455 0.7339 1.0566 1.7600 -54 456 0.7919 1.0585 1.7600 -54 457 0.8523 1.0551 1.7600 -54 458 0.9137 1.0469 1.7600 -54 459 0.9750 1.0381 1.7600 -54 460 1.0369 1.0298 1.7600 -54 461 1.0991 1.0149 1.7600 -54 462 1.1654 0.9975 1.7600 -54 463 1.2309 0.9809 1.7600 -54 464 1.2897 0.9714 1.7600 -54 465 1.3461 0.9699 1.7600 -54 466 1.4017 0.9705 1.7600 -54 467 1.4569 0.9758 1.7600 -54 468 1.5131 0.9818 1.7600 -54 469 1.5677 0.9902 1.7600 -54 470 1.6240 1.0009 1.7600 -54 471 1.6829 1.0133 1.7600 -54 472 1.7490 1.0248 1.7600 -54 473 1.8075 1.0348 1.7600 -54 474 1.8674 1.0384 1.7600 -54 475 1.9285 1.0367 1.7600 -54 476 1.9857 1.0305 1.7600 -54 477 2.0416 1.0235 1.7600 -54 478 2.0976 1.0114 1.7600 -54 479 2.1553 0.9966 1.7600 -54 480 2.2135 0.9775 1.7600 -54 481 2.2721 0.9593 1.7600 -54 482 2.3283 0.9476 1.7600 -54 483 2.3770 0.9396 1.7600 -54 484 2.4254 0.9396 1.7600 -54 485 2.4728 0.9399 1.7600 -54 486 2.5219 0.9426 1.7600 -54 487 2.5729 0.9453 1.7600 -54 488 2.6261 0.9527 1.7600 -54 489 2.6818 0.9603 1.7600 -54 490 2.7445 0.9729 1.7600 -54 491 2.8136 0.9843 1.7600 -54 492 2.8800 0.9959 1.7600 -54 493 2.9444 0.9998 1.7600 -54 494 3.0046 1.0037 1.7600 -54 495 3.0651 1.0003 1.7600 -54 496 3.1209 0.9953 1.7600 -54 497 3.1835 0.9934 1.7600 -54 498 3.2429 0.9879 1.7600 -54 499 3.3066 0.9786 1.7600 -54 500 3.3710 0.9664 1.7600 -54 501 3.4414 0.9534 1.7600 -54 502 3.5098 0.9461 1.7600 -54 503 3.5734 0.9469 1.7600 -54 504 3.6365 0.9491 1.7600 -54 505 3.6965 0.9579 1.7600 -54 506 3.7587 0.9695 1.7600 -54 507 3.8195 0.9798 1.7600 -54 508 3.8847 0.9934 1.7600 -54 509 3.9493 1.0085 1.7600 -54 510 4.0236 1.0287 1.7600 -54 511 4.1038 1.0474 1.7600 -54 512 4.1817 1.0582 1.7600 -54 513 4.2524 1.0610 1.7600 -54 514 4.3261 1.0564 1.7600 -54 515 4.3948 1.0514 1.7600 -54 516 4.4628 1.0432 1.7600 -54 517 4.5284 1.0337 1.7600 -54 518 4.5989 1.0200 1.7600 -54 519 4.6756 1.0064 1.7600 -54 520 4.7554 0.9917 1.7600 -54 521 4.8309 0.9838 1.7600 -54 522 4.9022 0.9861 1.7600 -54 523 4.9718 0.9960 1.7600 -54 524 5.0411 1.0067 1.7600 -54 525 5.1113 1.0213 1.7600 -54 526 5.1791 1.0360 1.7600 -54 527 5.2502 1.0571 1.7600 -54 528 5.3276 1.0801 1.7600 -54 529 5.4138 1.1050 1.7600 -54 530 5.4900 1.1190 1.7600 -54 531 5.5671 1.1274 1.7600 -54 532 5.6417 1.1302 1.7600 -54 533 5.7142 1.1320 1.7600 -54 534 5.7850 1.1335 1.7600 -54 535 5.8552 1.1338 1.7600 -54 536 5.9263 1.1307 1.7600 -55 304 -7.8170 1.6148 1.7600 -55 305 -7.7394 1.6120 1.7600 -55 306 -7.6752 1.6078 1.7600 -55 307 -7.6186 1.5975 1.7600 -55 308 -7.5596 1.5810 1.7600 -55 309 -7.4941 1.5600 1.7600 -55 310 -7.4233 1.5352 1.7600 -55 311 -7.3482 1.5071 1.7600 -55 312 -7.2731 1.4771 1.7600 -55 313 -7.2037 1.4463 1.7600 -55 314 -7.1414 1.4168 1.7600 -55 315 -7.0833 1.3914 1.7600 -55 316 -7.0256 1.3724 1.7600 -55 317 -6.9637 1.3593 1.7600 -55 318 -6.8963 1.3476 1.7600 -55 319 -6.8238 1.3369 1.7600 -55 320 -6.7474 1.3281 1.7600 -55 321 -6.6693 1.3224 1.7600 -55 322 -6.5932 1.3192 1.7600 -55 323 -6.5225 1.3170 1.7600 -55 324 -6.4575 1.3141 1.7600 -55 325 -6.3975 1.3072 1.7600 -55 326 -6.3393 1.2970 1.7600 -55 327 -6.2807 1.2869 1.7600 -55 328 -6.2198 1.2776 1.7600 -55 329 -6.1610 1.2688 1.7600 -55 330 -6.1022 1.2539 1.7600 -55 331 -6.0462 1.2377 1.7600 -55 332 -5.9943 1.2173 1.7600 -55 333 -5.9451 1.1956 1.7600 -55 334 -5.8959 1.1805 1.7600 -55 335 -5.8464 1.1686 1.7600 -55 336 -5.7966 1.1599 1.7600 -55 337 -5.7430 1.1580 1.7600 -55 338 -5.6890 1.1586 1.7600 -55 339 -5.6313 1.1648 1.7600 -55 340 -5.5710 1.1729 1.7600 -55 341 -5.5068 1.1912 1.7600 -55 342 -5.4425 1.2070 1.7600 -55 343 -5.3830 1.2164 1.7600 -55 344 -5.3330 1.2193 1.7600 -55 345 -5.2834 1.2181 1.7600 -55 346 -5.2308 1.2108 1.7600 -55 347 -5.1792 1.1979 1.7600 -55 348 -5.1235 1.1799 1.7600 -55 349 -5.0679 1.1571 1.7600 -55 350 -5.0093 1.1292 1.7600 -55 351 -4.9493 1.0943 1.7600 -55 352 -4.8897 1.0609 1.7600 -55 353 -4.8314 1.0312 1.7600 -55 354 -4.7745 1.0041 1.7600 -55 355 -4.7213 0.9873 1.7600 -55 356 -4.6676 0.9771 1.7600 -55 357 -4.6134 0.9700 1.7600 -55 358 -4.5587 0.9650 1.7600 -55 359 -4.4970 0.9641 1.7600 -55 360 -4.4341 0.9665 1.7600 -55 361 -4.3661 0.9761 1.7600 -55 362 -4.3003 0.9851 1.7600 -55 363 -4.2345 0.9969 1.7600 -55 364 -4.1677 1.0074 1.7600 -55 365 -4.1045 1.0087 1.7600 -55 366 -4.0411 1.0058 1.7600 -55 367 -3.9804 1.0000 1.7600 -55 368 -3.9189 0.9963 1.7600 -55 369 -3.8557 0.9922 1.7600 -55 370 -3.7914 0.9841 1.7600 -55 371 -3.7239 0.9722 1.7600 -55 372 -3.6563 0.9587 1.7600 -55 373 -3.5922 0.9469 1.7600 -55 374 -3.5280 0.9392 1.7600 -55 375 -3.4749 0.9372 1.7600 -55 376 -3.4199 0.9419 1.7600 -55 377 -3.3706 0.9469 1.7600 -55 378 -3.3204 0.9558 1.7600 -55 379 -3.2705 0.9682 1.7600 -55 380 -3.2171 0.9846 1.7600 -55 381 -3.1637 1.0025 1.7600 -55 382 -3.1065 1.0209 1.7600 -55 383 -3.0535 1.0405 1.7600 -55 384 -3.0050 1.0554 1.7600 -55 385 -2.9549 1.0653 1.7600 -55 386 -2.9024 1.0706 1.7600 -55 387 -2.8467 1.0725 1.7600 -55 388 -2.7930 1.0761 1.7600 -55 389 -2.7356 1.0759 1.7600 -55 390 -2.6748 1.0774 1.7600 -55 391 -2.6144 1.0822 1.7600 -55 392 -2.5473 1.0835 1.7600 -55 393 -2.4855 1.0902 1.7600 -55 394 -2.4249 1.0964 1.7600 -55 395 -2.3643 1.1031 1.7600 -55 396 -2.3014 1.1086 1.7600 -55 397 -2.2381 1.1138 1.7600 -55 398 -2.1747 1.1190 1.7600 -55 399 -2.1096 1.1248 1.7600 -55 400 -2.0309 1.1266 1.7600 -55 401 -1.9475 1.1280 1.7600 -55 402 -1.8691 1.1292 1.7600 -55 403 -1.7983 1.1258 1.7600 -55 404 -1.7318 1.1226 1.7600 -55 405 -1.6663 1.1182 1.7600 -55 406 -1.6010 1.1176 1.7600 -55 407 -1.5342 1.1204 1.7600 -55 408 -1.4643 1.1154 1.7600 -55 409 -1.3947 1.1066 1.7600 -55 410 -1.3250 1.0916 1.7600 -55 411 -1.2616 1.0777 1.7600 -55 412 -1.2046 1.0707 1.7600 -55 413 -1.1454 1.0704 1.7600 -55 414 -1.0857 1.0734 1.7600 -55 415 -1.0278 1.0761 1.7600 -55 416 -0.9685 1.0826 1.7600 -55 417 -0.9087 1.0931 1.7600 -55 418 -0.8479 1.1095 1.7600 -55 419 -0.7856 1.1275 1.7600 -55 420 -0.7275 1.1431 1.7600 -55 421 -0.6722 1.1515 1.7600 -55 422 -0.6158 1.1548 1.7600 -55 423 -0.5545 1.1565 1.7600 -55 424 -0.4884 1.1569 1.7600 -55 425 -0.4191 1.1545 1.7600 -55 426 -0.3497 1.1465 1.7600 -55 427 -0.2826 1.1342 1.7600 -55 428 -0.2112 1.1238 1.7600 -55 429 -0.1482 1.1154 1.7600 -55 430 -0.0865 1.1131 1.7600 -55 431 -0.0215 1.1146 1.7600 -55 432 0.0454 1.1191 1.7600 -55 433 0.1154 1.1266 1.7600 -55 434 0.1872 1.1385 1.7600 -55 435 0.2586 1.1543 1.7600 -55 436 0.3273 1.1695 1.7600 -55 437 0.3942 1.1826 1.7600 -55 438 0.4524 1.1901 1.7600 -55 439 0.5113 1.1899 1.7600 -55 440 0.5704 1.1855 1.7600 -55 441 0.6382 1.1743 1.7600 -55 442 0.7058 1.1700 1.7600 -55 443 0.7789 1.1636 1.7600 -55 444 0.8545 1.1552 1.7600 -55 445 0.9293 1.1437 1.7600 -55 446 1.0025 1.1305 1.7600 -55 447 1.0717 1.1202 1.7600 -55 448 1.1407 1.1158 1.7600 -55 449 1.2110 1.1172 1.7600 -55 450 1.2843 1.1236 1.7600 -55 451 1.3564 1.1304 1.7600 -55 452 1.4264 1.1409 1.7600 -55 453 1.4973 1.1555 1.7600 -55 454 1.5668 1.1725 1.7600 -55 455 1.6331 1.1885 1.7600 -55 456 1.6906 1.2006 1.7600 -55 457 1.7462 1.2078 1.7600 -55 458 1.7984 1.2116 1.7600 -55 459 1.8512 1.2125 1.7600 -55 460 1.9037 1.2121 1.7600 -55 461 1.9603 1.2093 1.7600 -55 462 2.0195 1.2017 1.7600 -55 463 2.0793 1.1901 1.7600 -55 464 2.1427 1.1776 1.7600 -55 465 2.2076 1.1629 1.7600 -55 466 2.2729 1.1475 1.7600 -55 467 2.3382 1.1399 1.7600 -55 468 2.4006 1.1387 1.7600 -55 469 2.4652 1.1413 1.7600 -55 470 2.5322 1.1471 1.7600 -55 471 2.5969 1.1538 1.7600 -55 472 2.6634 1.1620 1.7600 -55 473 2.7350 1.1732 1.7600 -55 474 2.8092 1.1870 1.7600 -55 475 2.8869 1.1983 1.7600 -55 476 2.9633 1.2084 1.7600 -55 477 3.0350 1.2123 1.7600 -55 478 3.1045 1.2125 1.7600 -55 479 3.1765 1.2100 1.7600 -55 480 3.2460 1.2061 1.7600 -55 481 3.3227 1.2007 1.7600 -55 482 3.4019 1.1939 1.7600 -55 483 3.4860 1.1852 1.7600 -55 484 3.5719 1.1756 1.7600 -55 485 3.6633 1.1684 1.7600 -55 486 3.7489 1.1703 1.7600 -55 487 3.8290 1.1784 1.7600 -55 488 3.9045 1.1918 1.7600 -55 489 3.9819 1.2065 1.7600 -55 490 4.0594 1.2242 1.7600 -55 491 4.1377 1.2443 1.7600 -55 492 4.2172 1.2648 1.7600 -55 493 4.3007 1.2875 1.7600 -55 494 4.3832 1.3073 1.7600 -55 495 4.4612 1.3218 1.7600 -55 496 4.5317 1.3331 1.7600 -55 497 4.5988 1.3383 1.7600 -55 498 4.6643 1.3440 1.7600 -55 499 4.7323 1.3475 1.7600 -55 500 4.8021 1.3494 1.7600 -55 501 4.8770 1.3505 1.7600 -55 502 4.9633 1.3467 1.7600 -55 503 5.0508 1.3421 1.7600 -55 504 5.1382 1.3450 1.7600 -55 505 5.2219 1.3539 1.7600 -55 506 5.2986 1.3655 1.7600 -55 507 5.3700 1.3717 1.7600 -55 508 5.4420 1.3778 1.7600 -55 509 5.5154 1.3849 1.7600 -55 510 5.5983 1.3951 1.7600 -55 511 5.6881 1.4096 1.7600 -55 512 5.7772 1.4247 1.7600 -55 513 5.8630 1.4366 1.7600 -55 514 5.9479 1.4423 1.7600 -56 311 -7.8289 2.1249 1.7600 -56 312 -7.7687 2.1200 1.7600 -56 313 -7.7059 2.1175 1.7600 -56 314 -7.6358 2.1154 1.7600 -56 315 -7.5633 2.1133 1.7600 -56 316 -7.4892 2.1123 1.7600 -56 317 -7.4195 2.1126 1.7600 -56 318 -7.3525 2.1119 1.7600 -56 319 -7.2892 2.1072 1.7600 -56 320 -7.2287 2.0985 1.7600 -56 321 -7.1666 2.0810 1.7600 -56 322 -7.1012 2.0590 1.7600 -56 323 -7.0322 2.0349 1.7600 -56 324 -6.9614 2.0074 1.7600 -56 325 -6.8917 1.9782 1.7600 -56 326 -6.8270 1.9503 1.7600 -56 327 -6.7647 1.9250 1.7600 -56 328 -6.7038 1.9021 1.7600 -56 329 -6.6422 1.8824 1.7600 -56 330 -6.5785 1.8644 1.7600 -56 331 -6.5125 1.8482 1.7600 -56 332 -6.4430 1.8338 1.7600 -56 333 -6.3712 1.8223 1.7600 -56 334 -6.3069 1.8138 1.7600 -56 335 -6.2445 1.8068 1.7600 -56 336 -6.1838 1.7956 1.7600 -56 337 -6.1281 1.7838 1.7600 -56 338 -6.0740 1.7667 1.7600 -56 339 -6.0227 1.7472 1.7600 -56 340 -5.9708 1.7263 1.7600 -56 341 -5.9170 1.7037 1.7600 -56 342 -5.8664 1.6823 1.7600 -56 343 -5.8147 1.6616 1.7600 -56 344 -5.7656 1.6445 1.7600 -56 345 -5.7175 1.6307 1.7600 -56 346 -5.6709 1.6229 1.7600 -56 347 -5.6225 1.6191 1.7600 -56 348 -5.5724 1.6199 1.7600 -56 349 -5.5273 1.6228 1.7600 -56 350 -5.4784 1.6289 1.7600 -56 351 -5.4316 1.6378 1.7600 -56 352 -5.3836 1.6456 1.7600 -56 353 -5.3354 1.6471 1.7600 -56 354 -5.2868 1.6445 1.7600 -56 355 -5.2374 1.6387 1.7600 -56 356 -5.1869 1.6312 1.7600 -56 357 -5.1348 1.6190 1.7600 -56 358 -5.0816 1.6013 1.7600 -56 359 -5.0265 1.5828 1.7600 -56 360 -4.9705 1.5643 1.7600 -56 361 -4.9123 1.5468 1.7600 -56 362 -4.8561 1.5329 1.7600 -56 363 -4.7959 1.5195 1.7600 -56 364 -4.7319 1.5084 1.7600 -56 365 -4.6669 1.4986 1.7600 -56 366 -4.6003 1.4915 1.7600 -56 367 -4.5337 1.4909 1.7600 -56 368 -4.4674 1.4920 1.7600 -56 369 -4.4045 1.4950 1.7600 -56 370 -4.3418 1.4942 1.7600 -56 371 -4.2844 1.4885 1.7600 -56 372 -4.2253 1.4791 1.7600 -56 373 -4.1655 1.4679 1.7600 -56 374 -4.1032 1.4535 1.7600 -56 375 -4.0418 1.4381 1.7600 -56 376 -3.9764 1.4216 1.7600 -56 377 -3.9106 1.4080 1.7600 -56 378 -3.8446 1.3974 1.7600 -56 379 -3.7797 1.3904 1.7600 -56 380 -3.7171 1.3854 1.7600 -56 381 -3.6484 1.3846 1.7600 -56 382 -3.5830 1.3865 1.7600 -56 383 -3.5157 1.3925 1.7600 -56 384 -3.4465 1.4004 1.7600 -56 385 -3.3784 1.4133 1.7600 -56 386 -3.3101 1.4241 1.7600 -56 387 -3.2427 1.4273 1.7600 -56 388 -3.1807 1.4292 1.7600 -56 389 -3.1185 1.4290 1.7600 -56 390 -3.0569 1.4279 1.7600 -56 391 -2.9966 1.4271 1.7600 -56 392 -2.9344 1.4231 1.7600 -56 393 -2.8728 1.4177 1.7600 -56 394 -2.8083 1.4159 1.7600 -56 395 -2.7457 1.4146 1.7600 -56 396 -2.6822 1.4186 1.7600 -56 397 -2.6190 1.4265 1.7600 -56 398 -2.5504 1.4357 1.7600 -56 399 -2.4888 1.4486 1.7600 -56 400 -2.4210 1.4615 1.7600 -56 401 -2.3470 1.4809 1.7600 -56 402 -2.2730 1.4938 1.7600 -56 403 -2.2046 1.5034 1.7600 -56 404 -2.1377 1.5102 1.7600 -56 405 -2.0720 1.5130 1.7600 -56 406 -2.0102 1.5110 1.7600 -56 407 -1.9529 1.5054 1.7600 -56 408 -1.8965 1.4963 1.7600 -56 409 -1.8372 1.4858 1.7600 -56 410 -1.7682 1.4795 1.7600 -56 411 -1.7075 1.4679 1.7600 -56 412 -1.6418 1.4685 1.7600 -56 413 -1.5799 1.4687 1.7600 -56 414 -1.5177 1.4724 1.7600 -56 415 -1.4556 1.4785 1.7600 -56 416 -1.3953 1.4884 1.7600 -56 417 -1.3273 1.5013 1.7600 -56 418 -1.2603 1.5176 1.7600 -56 419 -1.1939 1.5342 1.7600 -56 420 -1.1301 1.5455 1.7600 -56 421 -1.0676 1.5491 1.7600 -56 422 -1.0070 1.5466 1.7600 -56 423 -0.9471 1.5405 1.7600 -56 424 -0.8877 1.5311 1.7600 -56 425 -0.8268 1.5179 1.7600 -56 426 -0.7645 1.5033 1.7600 -56 427 -0.7033 1.4932 1.7600 -56 428 -0.6422 1.4849 1.7600 -56 429 -0.5842 1.4787 1.7600 -56 430 -0.5259 1.4754 1.7600 -56 431 -0.4667 1.4765 1.7600 -56 432 -0.4063 1.4791 1.7600 -56 433 -0.3469 1.4848 1.7600 -56 434 -0.2835 1.4951 1.7600 -56 435 -0.2225 1.5098 1.7600 -56 436 -0.1640 1.5264 1.7600 -56 437 -0.1057 1.5393 1.7600 -56 438 -0.0498 1.5479 1.7600 -56 439 0.0032 1.5532 1.7600 -56 440 0.0564 1.5546 1.7600 -56 441 0.1119 1.5509 1.7600 -56 442 0.1706 1.5433 1.7600 -56 443 0.2311 1.5345 1.7600 -56 444 0.2916 1.5243 1.7600 -56 445 0.3511 1.5134 1.7600 -56 446 0.4108 1.5034 1.7600 -56 447 0.4692 1.4970 1.7600 -56 448 0.5289 1.4945 1.7600 -56 449 0.5894 1.4966 1.7600 -56 450 0.6532 1.4949 1.7600 -56 451 0.7170 1.4989 1.7600 -56 452 0.7808 1.5103 1.7600 -56 453 0.8467 1.5181 1.7600 -56 454 0.9151 1.5296 1.7600 -56 455 0.9821 1.5403 1.7600 -56 456 1.0492 1.5454 1.7600 -56 457 1.1115 1.5429 1.7600 -56 458 1.1709 1.5374 1.7600 -56 459 1.2335 1.5278 1.7600 -56 460 1.2969 1.5160 1.7600 -56 461 1.3593 1.5006 1.7600 -56 462 1.4219 1.4868 1.7600 -56 463 1.4868 1.4742 1.7600 -56 464 1.5472 1.4649 1.7600 -56 465 1.6095 1.4587 1.7600 -56 466 1.6674 1.4604 1.7600 -56 467 1.7266 1.4661 1.7600 -56 468 1.7858 1.4721 1.7600 -56 469 1.8475 1.4789 1.7600 -56 470 1.9107 1.4914 1.7600 -56 471 1.9770 1.5064 1.7600 -56 472 2.0428 1.5228 1.7600 -56 473 2.1059 1.5343 1.7600 -56 474 2.1672 1.5411 1.7600 -56 475 2.2297 1.5413 1.7600 -56 476 2.2944 1.5382 1.7600 -56 477 2.3568 1.5320 1.7600 -56 478 2.4193 1.5230 1.7600 -56 479 2.4876 1.5111 1.7600 -56 480 2.5531 1.5007 1.7600 -56 481 2.6233 1.4894 1.7600 -56 482 2.6950 1.4838 1.7600 -56 483 2.7630 1.4823 1.7600 -56 484 2.8307 1.4851 1.7600 -56 485 2.8996 1.4905 1.7600 -56 486 2.9713 1.4947 1.7600 -56 487 3.0442 1.5040 1.7600 -56 488 3.1225 1.5177 1.7600 -56 489 3.2051 1.5341 1.7600 -56 490 3.2872 1.5476 1.7600 -56 491 3.3729 1.5552 1.7600 -56 492 3.4530 1.5613 1.7600 -56 493 3.5331 1.5621 1.7600 -56 494 3.6143 1.5587 1.7600 -56 495 3.6949 1.5538 1.7600 -56 496 3.7806 1.5458 1.7600 -56 497 3.8697 1.5441 1.7600 -56 498 3.9615 1.5457 1.7600 -56 499 4.0532 1.5558 1.7600 -56 500 4.1423 1.5715 1.7600 -56 501 4.2291 1.5914 1.7600 -56 502 4.3138 1.6148 1.7600 -56 503 4.3999 1.6443 1.7600 -56 504 4.4929 1.6815 1.7600 -56 505 4.5943 1.7203 1.7600 -56 506 4.6952 1.7562 1.7600 -56 507 4.7943 1.7809 1.7600 -56 508 4.8873 1.8019 1.7600 -56 509 4.9780 1.8184 1.7600 -56 510 5.0665 1.8318 1.7600 -56 511 5.1575 1.8450 1.7600 -56 512 5.2582 1.8628 1.7600 -56 513 5.3705 1.8885 1.7600 -56 514 5.4829 1.9215 1.7600 -56 515 5.5903 1.9598 1.7600 -56 516 5.6866 1.9999 1.7600 -56 517 5.7725 2.0402 1.7600 -56 518 5.8636 2.0734 1.7600 -57 334 -7.8001 0.7909 1.7600 -57 335 -7.7183 0.7920 1.7600 -57 336 -7.6487 0.7891 1.7600 -57 337 -7.5904 0.7838 1.7600 -57 338 -7.5397 0.7755 1.7600 -57 339 -7.4923 0.7623 1.7600 -57 340 -7.4437 0.7447 1.7600 -57 341 -7.3915 0.7242 1.7600 -57 342 -7.3385 0.7029 1.7600 -57 343 -7.2852 0.6779 1.7600 -57 344 -7.2259 0.6458 1.7600 -57 345 -7.1653 0.6126 1.7600 -57 346 -7.1061 0.5831 1.7600 -57 347 -7.0515 0.5609 1.7600 -57 348 -7.0003 0.5456 1.7600 -57 349 -6.9449 0.5334 1.7600 -57 350 -6.8835 0.5223 1.7600 -57 351 -6.8151 0.5089 1.7600 -57 352 -6.7601 0.5128 1.7600 -57 353 -6.6922 0.5165 1.7600 -57 354 -6.6236 0.5229 1.7600 -57 355 -6.5573 0.5300 1.7600 -57 356 -6.4946 0.5316 1.7600 -57 357 -6.4345 0.5276 1.7600 -57 358 -6.3744 0.5197 1.7600 -57 359 -6.3123 0.5079 1.7600 -57 360 -6.2478 0.4918 1.7600 -57 361 -6.1823 0.4716 1.7600 -57 362 -6.1181 0.4488 1.7600 -57 363 -6.0581 0.4265 1.7600 -57 364 -6.0007 0.4055 1.7600 -57 365 -5.9436 0.3936 1.7600 -57 366 -5.8859 0.3806 1.7600 -57 367 -5.8182 0.3686 1.7600 -57 368 -5.7448 0.3597 1.7600 -57 369 -5.6752 0.3558 1.7600 -57 370 -5.6026 0.3579 1.7600 -57 371 -5.5274 0.3636 1.7600 -57 372 -5.4496 0.3709 1.7600 -57 373 -5.3696 0.3767 1.7600 -57 374 -5.2949 0.3787 1.7600 -57 375 -5.2237 0.3769 1.7600 -57 376 -5.1543 0.3683 1.7600 -57 377 -5.0831 0.3585 1.7600 -57 378 -5.0104 0.3448 1.7600 -57 379 -4.9393 0.3288 1.7600 -57 380 -4.8718 0.3083 1.7600 -57 381 -4.8058 0.2882 1.7600 -57 382 -4.7423 0.2654 1.7600 -57 383 -4.6813 0.2530 1.7600 -57 384 -4.6286 0.2478 1.7600 -57 385 -4.5771 0.2484 1.7600 -57 386 -4.5214 0.2503 1.7600 -57 387 -4.4635 0.2552 1.7600 -57 388 -4.4026 0.2673 1.7600 -57 389 -4.3412 0.2858 1.7600 -57 390 -4.2796 0.3071 1.7600 -57 391 -4.2220 0.3308 1.7600 -57 392 -4.1663 0.3484 1.7600 -57 393 -4.1107 0.3599 1.7600 -57 394 -4.0498 0.3647 1.7600 -57 395 -3.9845 0.3645 1.7600 -57 396 -3.9058 0.3602 1.7600 -57 397 -3.8244 0.3511 1.7600 -57 398 -3.7515 0.3330 1.7600 -57 399 -3.6872 0.3132 1.7600 -57 400 -3.6303 0.2915 1.7600 -57 401 -3.5805 0.2780 1.7600 -57 402 -3.5393 0.2729 1.7600 -57 403 -3.5043 0.2712 1.7600 -57 404 -3.4681 0.2729 1.7600 -57 405 -3.4265 0.2778 1.7600 -57 406 -3.3771 0.2877 1.7600 -57 407 -3.3222 0.3013 1.7600 -57 408 -3.2616 0.3207 1.7600 -57 409 -3.2051 0.3348 1.7600 -57 410 -3.1495 0.3452 1.7600 -57 411 -3.0939 0.3439 1.7600 -57 412 -3.0404 0.3408 1.7600 -57 413 -2.9844 0.3337 1.7600 -57 414 -2.9289 0.3245 1.7600 -57 415 -2.8725 0.3121 1.7600 -57 416 -2.8180 0.2980 1.7600 -57 417 -2.7657 0.2789 1.7600 -57 418 -2.7178 0.2584 1.7600 -57 419 -2.6758 0.2408 1.7600 -57 420 -2.6377 0.2262 1.7600 -57 421 -2.6035 0.2162 1.7600 -57 422 -2.5677 0.2093 1.7600 -57 423 -2.5304 0.2070 1.7600 -57 424 -2.4929 0.2109 1.7600 -57 425 -2.4544 0.2200 1.7600 -57 426 -2.4166 0.2331 1.7600 -57 427 -2.3768 0.2500 1.7600 -57 428 -2.3330 0.2703 1.7600 -57 429 -2.2821 0.2918 1.7600 -57 430 -2.2287 0.3115 1.7600 -57 431 -2.1677 0.3228 1.7600 -57 432 -2.1052 0.3212 1.7600 -57 433 -2.0428 0.3134 1.7600 -57 434 -1.9817 0.3027 1.7600 -57 435 -1.9189 0.2888 1.7600 -57 436 -1.8553 0.2695 1.7600 -57 437 -1.7851 0.2462 1.7600 -57 438 -1.7207 0.2234 1.7600 -57 439 -1.6621 0.2097 1.7600 -57 440 -1.6061 0.2047 1.7600 -57 441 -1.5505 0.2103 1.7600 -57 442 -1.4955 0.2214 1.7600 -57 443 -1.4394 0.2359 1.7600 -57 444 -1.3782 0.2523 1.7600 -57 445 -1.3196 0.2758 1.7600 -57 446 -1.2568 0.3036 1.7600 -57 447 -1.1906 0.3340 1.7600 -57 448 -1.1254 0.3624 1.7600 -57 449 -1.0626 0.3845 1.7600 -57 450 -1.0014 0.3925 1.7600 -57 451 -0.9419 0.3931 1.7600 -57 452 -0.8798 0.3892 1.7600 -57 453 -0.8156 0.3843 1.7600 -57 454 -0.7496 0.3789 1.7600 -57 455 -0.6812 0.3617 1.7600 -57 456 -0.6157 0.3372 1.7600 -57 457 -0.5477 0.3112 1.7600 -57 458 -0.4844 0.2849 1.7600 -57 459 -0.4232 0.2699 1.7600 -57 460 -0.3664 0.2660 1.7600 -57 461 -0.3067 0.2704 1.7600 -57 462 -0.2415 0.2755 1.7600 -57 463 -0.1731 0.2861 1.7600 -57 464 -0.0999 0.3015 1.7600 -57 465 -0.0255 0.3243 1.7600 -57 466 0.0484 0.3472 1.7600 -57 467 0.1155 0.3664 1.7600 -57 468 0.1781 0.3740 1.7600 -57 469 0.2342 0.3733 1.7600 -57 470 0.2940 0.3701 1.7600 -57 471 0.3570 0.3651 1.7600 -57 472 0.4248 0.3626 1.7600 -57 473 0.4950 0.3575 1.7600 -57 474 0.5688 0.3468 1.7600 -57 475 0.6410 0.3311 1.7600 -57 476 0.7076 0.3150 1.7600 -57 477 0.7643 0.3039 1.7600 -57 478 0.8174 0.2990 1.7600 -57 479 0.8681 0.2980 1.7600 -57 480 0.9162 0.2999 1.7600 -57 481 0.9696 0.3048 1.7600 -57 482 1.0234 0.3151 1.7600 -57 483 1.0768 0.3279 1.7600 -57 484 1.1302 0.3444 1.7600 -57 485 1.1813 0.3581 1.7600 -57 486 1.2347 0.3689 1.7600 -57 487 1.2864 0.3702 1.7600 -57 488 1.3367 0.3698 1.7600 -57 489 1.3884 0.3651 1.7600 -57 490 1.4352 0.3620 1.7600 -57 491 1.4827 0.3570 1.7600 -57 492 1.5283 0.3459 1.7600 -57 493 1.5713 0.3295 1.7600 -57 494 1.6154 0.3089 1.7600 -57 495 1.6476 0.2867 1.7600 -57 496 1.6791 0.2706 1.7600 -57 497 1.7084 0.2606 1.7600 -57 498 1.7373 0.2579 1.7600 -57 499 1.7659 0.2633 1.7600 -57 500 1.8007 0.2739 1.7600 -57 501 1.8330 0.2868 1.7600 -57 502 1.8694 0.3066 1.7600 -57 503 1.9049 0.3305 1.7600 -57 504 1.9418 0.3513 1.7600 -57 505 1.9788 0.3652 1.7600 -57 506 2.0271 0.3731 1.7600 -57 507 2.0765 0.3716 1.7600 -57 508 2.1277 0.3653 1.7600 -57 509 2.1821 0.3565 1.7600 -57 510 2.2341 0.3415 1.7600 -57 511 2.2841 0.3205 1.7600 -57 512 2.3361 0.2987 1.7600 -57 513 2.3858 0.2825 1.7600 -57 514 2.4363 0.2730 1.7600 -57 515 2.4885 0.2721 1.7600 -57 516 2.5399 0.2778 1.7600 -57 517 2.5979 0.2885 1.7600 -57 518 2.6574 0.3019 1.7600 -57 519 2.7214 0.3211 1.7600 -57 520 2.7822 0.3428 1.7600 -57 521 2.8407 0.3635 1.7600 -57 522 2.8923 0.3746 1.7600 -57 523 2.9443 0.3779 1.7600 -57 524 2.9974 0.3749 1.7600 -57 525 3.0547 0.3703 1.7600 -57 526 3.1161 0.3647 1.7600 -57 527 3.1848 0.3528 1.7600 -57 528 3.2654 0.3330 1.7600 -57 529 3.3487 0.3149 1.7600 -57 530 3.4148 0.3021 1.7600 -57 531 3.4701 0.2931 1.7600 -57 532 3.5152 0.2901 1.7600 -57 533 3.5616 0.2921 1.7600 -57 534 3.6124 0.2953 1.7600 -57 535 3.6710 0.3031 1.7600 -57 536 3.7359 0.3136 1.7600 -57 537 3.8093 0.3278 1.7600 -57 538 3.8825 0.3360 1.7600 -57 539 3.9595 0.3442 1.7600 -57 540 4.0266 0.3399 1.7600 -57 541 4.0927 0.3245 1.7600 -57 542 4.1559 0.2984 1.7600 -57 543 4.2126 0.2758 1.7600 -57 544 4.2669 0.2565 1.7600 -57 545 4.3261 0.2381 1.7600 -57 546 4.3880 0.2172 1.7600 -57 547 4.4551 0.1916 1.7600 -57 548 4.5233 0.1686 1.7600 -57 549 4.5896 0.1561 1.7600 -57 550 4.6522 0.1497 1.7600 -57 551 4.7101 0.1443 1.7600 -57 552 4.7676 0.1384 1.7600 -57 553 4.8221 0.1409 1.7600 -57 554 4.8773 0.1396 1.7600 -57 555 4.9404 0.1404 1.7600 -57 556 5.0092 0.1455 1.7600 -57 557 5.0792 0.1500 1.7600 -57 558 5.1426 0.1493 1.7600 -57 559 5.2001 0.1444 1.7600 -57 560 5.2572 0.1357 1.7600 -57 561 5.3161 0.1210 1.7600 -57 562 5.3748 0.1065 1.7600 -57 563 5.4320 0.0938 1.7600 -57 564 5.4966 0.0749 1.7600 -57 565 5.5667 0.0503 1.7600 -57 566 5.6336 0.0298 1.7600 -57 567 5.6994 0.0193 1.7600 -57 568 5.7667 0.0153 1.7600 -57 569 5.8286 0.0164 1.7600 -57 570 5.8878 0.0215 1.7600 -57 571 5.9487 0.0306 1.7600 -58 330 -7.8259 1.3043 1.7600 -58 331 -7.7611 1.3102 1.7600 -58 332 -7.6748 1.3144 1.7600 -58 333 -7.5939 1.3203 1.7600 -58 334 -7.5010 1.3178 1.7600 -58 335 -7.3842 1.3132 1.7600 -58 336 -7.2694 1.3125 1.7600 -58 337 -7.1736 1.3100 1.7600 -58 338 -7.0983 1.2963 1.7600 -58 339 -7.0428 1.2648 1.7600 -58 340 -6.9928 1.2321 1.7600 -58 341 -6.9368 1.2021 1.7600 -58 342 -6.8753 1.1758 1.7600 -58 343 -6.8111 1.1476 1.7600 -58 344 -6.7534 1.1149 1.7600 -58 345 -6.7091 1.0766 1.7600 -58 346 -6.6673 1.0399 1.7600 -58 347 -6.6249 1.0115 1.7600 -58 348 -6.5806 1.0004 1.7600 -58 349 -6.5283 0.9924 1.7600 -58 350 -6.4672 0.9751 1.7600 -58 351 -6.3968 0.9596 1.7600 -58 352 -6.3263 0.9515 1.7600 -58 353 -6.2587 0.9440 1.7600 -58 354 -6.1896 0.9416 1.7600 -58 355 -6.1300 0.9326 1.7600 -58 356 -6.0822 0.9158 1.7600 -58 357 -6.0294 0.8985 1.7600 -58 358 -5.9791 0.8885 1.7600 -58 359 -5.9344 0.8808 1.7600 -58 360 -5.8897 0.8707 1.7600 -58 361 -5.8383 0.8512 1.7600 -58 362 -5.7867 0.8182 1.7600 -58 363 -5.7307 0.7870 1.7600 -58 364 -5.6738 0.7691 1.7600 -58 365 -5.6120 0.7635 1.7600 -58 366 -5.5469 0.7623 1.7600 -58 367 -5.4844 0.7662 1.7600 -58 368 -5.4202 0.7733 1.7600 -58 369 -5.3562 0.7784 1.7600 -58 370 -5.2923 0.7875 1.7600 -58 371 -5.2319 0.7986 1.7600 -58 372 -5.1780 0.7980 1.7600 -58 373 -5.1256 0.7875 1.7600 -58 374 -5.0708 0.7741 1.7600 -58 375 -5.0120 0.7653 1.7600 -58 376 -4.9560 0.7601 1.7600 -58 377 -4.8990 0.7544 1.7600 -58 378 -4.8424 0.7464 1.7600 -58 379 -4.7864 0.7290 1.7600 -58 380 -4.7331 0.7160 1.7600 -58 381 -4.6814 0.7205 1.7600 -58 382 -4.6272 0.7329 1.7600 -58 383 -4.5754 0.7473 1.7600 -58 384 -4.5227 0.7603 1.7600 -58 385 -4.4693 0.7730 1.7600 -58 386 -4.4212 0.7904 1.7600 -58 387 -4.3723 0.8054 1.7600 -58 388 -4.3216 0.8032 1.7600 -58 389 -4.2682 0.7947 1.7600 -58 390 -4.2146 0.7826 1.7600 -58 391 -4.1540 0.7753 1.7600 -58 392 -4.0894 0.7663 1.7600 -58 393 -4.0221 0.7528 1.7600 -58 394 -3.9553 0.7240 1.7600 -58 395 -3.8987 0.6976 1.7600 -58 396 -3.8456 0.6852 1.7600 -58 397 -3.7913 0.6858 1.7600 -58 398 -3.7255 0.6947 1.7600 -58 399 -3.6550 0.7134 1.7600 -58 400 -3.5896 0.7338 1.7600 -58 401 -3.5245 0.7558 1.7600 -58 402 -3.4606 0.7794 1.7600 -58 403 -3.3886 0.8041 1.7600 -58 404 -3.3146 0.8216 1.7600 -58 405 -3.2436 0.8226 1.7600 -58 406 -3.1678 0.8106 1.7600 -58 407 -3.1008 0.7903 1.7600 -58 408 -3.0409 0.7777 1.7600 -58 409 -2.9800 0.7743 1.7600 -58 410 -2.9272 0.7687 1.7600 -58 411 -2.8715 0.7520 1.7600 -58 412 -2.8129 0.7360 1.7600 -58 413 -2.7594 0.7361 1.7600 -58 414 -2.7080 0.7416 1.7600 -58 415 -2.6527 0.7444 1.7600 -58 416 -2.5978 0.7515 1.7600 -58 417 -2.5438 0.7634 1.7600 -58 418 -2.4900 0.7764 1.7600 -58 419 -2.4275 0.7915 1.7600 -58 420 -2.3559 0.8091 1.7600 -58 421 -2.2756 0.8198 1.7600 -58 422 -2.1869 0.8207 1.7600 -58 423 -2.1115 0.8163 1.7600 -58 424 -2.0438 0.8061 1.7600 -58 425 -1.9800 0.7919 1.7600 -58 426 -1.9226 0.7797 1.7600 -58 427 -1.8649 0.7687 1.7600 -58 428 -1.7987 0.7500 1.7600 -58 429 -1.7318 0.7289 1.7600 -58 430 -1.6720 0.7226 1.7600 -58 431 -1.6146 0.7291 1.7600 -58 432 -1.5546 0.7372 1.7600 -58 433 -1.4948 0.7450 1.7600 -58 434 -1.4324 0.7493 1.7600 -58 435 -1.3693 0.7515 1.7600 -58 436 -1.2982 0.7508 1.7600 -58 437 -1.2179 0.7527 1.7600 -58 438 -1.1424 0.7630 1.7600 -58 439 -1.0782 0.7620 1.7600 -58 440 -1.0203 0.7440 1.7600 -58 441 -0.9654 0.7184 1.7600 -58 442 -0.9095 0.6961 1.7600 -58 443 -0.8491 0.6794 1.7600 -58 444 -0.7836 0.6632 1.7600 -58 445 -0.7104 0.6434 1.7600 -58 446 -0.6365 0.6182 1.7600 -58 447 -0.5734 0.5993 1.7600 -58 448 -0.5111 0.5975 1.7600 -58 449 -0.4488 0.6070 1.7600 -58 450 -0.3907 0.6153 1.7600 -58 451 -0.3326 0.6233 1.7600 -58 452 -0.2738 0.6364 1.7600 -58 453 -0.2118 0.6496 1.7600 -58 454 -0.1456 0.6623 1.7600 -58 455 -0.0767 0.6750 1.7600 -58 456 -0.0153 0.6794 1.7600 -58 457 0.0469 0.6714 1.7600 -58 458 0.1128 0.6607 1.7600 -58 459 0.1759 0.6541 1.7600 -58 460 0.2389 0.6500 1.7600 -58 461 0.3052 0.6414 1.7600 -58 462 0.3732 0.6267 1.7600 -58 463 0.4376 0.6101 1.7600 -58 464 0.4979 0.5907 1.7600 -58 465 0.5587 0.5732 1.7600 -58 466 0.6149 0.5610 1.7600 -58 467 0.6675 0.5583 1.7600 -58 468 0.7143 0.5593 1.7600 -58 469 0.7607 0.5627 1.7600 -58 470 0.8086 0.5645 1.7600 -58 471 0.8616 0.5671 1.7600 -58 472 0.9149 0.5770 1.7600 -58 473 0.9701 0.5971 1.7600 -58 474 1.0298 0.6131 1.7600 -58 475 1.0874 0.6171 1.7600 -58 476 1.1406 0.6034 1.7600 -58 477 1.1908 0.5792 1.7600 -58 478 1.2424 0.5522 1.7600 -58 479 1.2994 0.5255 1.7600 -58 480 1.3598 0.4990 1.7600 -58 481 1.4183 0.4695 1.7600 -58 482 1.4785 0.4277 1.7600 -58 483 1.5326 0.3858 1.7600 -58 484 1.5810 0.3502 1.7600 -58 485 1.6300 0.3339 1.7600 -58 486 1.6785 0.3295 1.7600 -58 487 1.7281 0.3270 1.7600 -58 488 1.7735 0.3275 1.7600 -58 489 1.8190 0.3288 1.7600 -58 490 1.8673 0.3363 1.7600 -58 491 1.9227 0.3438 1.7600 -58 492 1.9832 0.3562 1.7600 -58 493 2.0376 0.3685 1.7600 -58 494 2.0838 0.3706 1.7600 -58 495 2.1358 0.3659 1.7600 -58 496 2.1926 0.3566 1.7600 -58 497 2.2513 0.3482 1.7600 -58 498 2.3144 0.3439 1.7600 -58 499 2.3797 0.3345 1.7600 -58 500 2.4482 0.3263 1.7600 -58 501 2.5241 0.3154 1.7600 -58 502 2.5981 0.3069 1.7600 -58 503 2.6591 0.3005 1.7600 -58 504 2.7131 0.2992 1.7600 -58 505 2.7633 0.3034 1.7600 -58 506 2.8078 0.3096 1.7600 -58 507 2.8485 0.3137 1.7600 -58 508 2.8930 0.3189 1.7600 -58 509 2.9399 0.3250 1.7600 -58 510 2.9897 0.3399 1.7600 -58 511 3.0415 0.3573 1.7600 -58 512 3.0882 0.3829 1.7600 -58 513 3.1373 0.4050 1.7600 -58 514 3.1932 0.4185 1.7600 -58 515 3.2585 0.4241 1.7600 -58 516 3.3259 0.4172 1.7600 -58 517 3.3885 0.4094 1.7600 -58 518 3.4555 0.4008 1.7600 -58 519 3.5197 0.3875 1.7600 -58 520 3.5810 0.3702 1.7600 -58 521 3.6459 0.3451 1.7600 -58 522 3.7167 0.3192 1.7600 -58 523 3.7723 0.3013 1.7600 -58 524 3.8259 0.2911 1.7600 -58 525 3.8841 0.2869 1.7600 -58 526 3.9447 0.2872 1.7600 -58 527 4.0048 0.2884 1.7600 -58 528 4.0618 0.2933 1.7600 -58 529 4.1303 0.2957 1.7600 -58 530 4.2229 0.2962 1.7600 -58 531 4.3393 0.3058 1.7600 -58 532 4.4084 0.3118 1.7600 -58 533 4.4386 0.3006 1.7600 -58 534 4.4712 0.2803 1.7600 -58 535 4.5165 0.2595 1.7600 -58 536 4.5672 0.2377 1.7600 -58 537 4.6200 0.2211 1.7600 -58 538 4.6727 0.2053 1.7600 -58 539 4.7266 0.1840 1.7600 -58 540 4.7954 0.1543 1.7600 -58 541 4.8642 0.1180 1.7600 -58 542 4.9301 0.0921 1.7600 -58 543 4.9996 0.0842 1.7600 -58 544 5.0658 0.0895 1.7600 -58 545 5.1306 0.1044 1.7600 -58 546 5.1875 0.1159 1.7600 -58 547 5.2436 0.1216 1.7600 -58 548 5.3021 0.1215 1.7600 -58 549 5.3731 0.1206 1.7600 -58 550 5.4444 0.1246 1.7600 -58 551 5.5082 0.1318 1.7600 -58 552 5.5709 0.1270 1.7600 -58 553 5.6389 0.1092 1.7600 -58 554 5.7180 0.0866 1.7600 -58 555 5.7858 0.0752 1.7600 -58 556 5.8505 0.0656 1.7600 -58 557 5.9146 0.0530 1.7600 -59 320 -7.8178 0.7551 1.7600 -59 321 -7.7535 0.7077 1.7600 -59 322 -7.6985 0.6578 1.7600 -59 323 -7.6430 0.6105 1.7600 -59 324 -7.5869 0.5736 1.7600 -59 325 -7.5328 0.5465 1.7600 -59 326 -7.4794 0.5245 1.7600 -59 327 -7.4225 0.5058 1.7600 -59 328 -7.3587 0.4898 1.7600 -59 329 -7.2884 0.4760 1.7600 -59 330 -7.2187 0.4643 1.7600 -59 331 -7.1527 0.4522 1.7600 -59 332 -7.0867 0.4404 1.7600 -59 333 -7.0227 0.4275 1.7600 -59 334 -6.9632 0.4084 1.7600 -59 335 -6.9055 0.3839 1.7600 -59 336 -6.8429 0.3593 1.7600 -59 337 -6.7736 0.3364 1.7600 -59 338 -6.6990 0.3133 1.7600 -59 339 -6.6253 0.2844 1.7600 -59 340 -6.5553 0.2523 1.7600 -59 341 -6.4893 0.2211 1.7600 -59 342 -6.4270 0.1967 1.7600 -59 343 -6.3688 0.1824 1.7600 -59 344 -6.3122 0.1742 1.7600 -59 345 -6.2543 0.1709 1.7600 -59 346 -6.1949 0.1717 1.7600 -59 347 -6.1323 0.1742 1.7600 -59 348 -6.0716 0.1803 1.7600 -59 349 -6.0100 0.1870 1.7600 -59 350 -5.9512 0.1950 1.7600 -59 351 -5.8929 0.2029 1.7600 -59 352 -5.8368 0.2033 1.7600 -59 353 -5.7812 0.1976 1.7600 -59 354 -5.7253 0.1889 1.7600 -59 355 -5.6642 0.1827 1.7600 -59 356 -5.6024 0.1740 1.7600 -59 357 -5.5361 0.1628 1.7600 -59 358 -5.4714 0.1476 1.7600 -59 359 -5.4099 0.1300 1.7600 -59 360 -5.3471 0.1145 1.7600 -59 361 -5.2876 0.1088 1.7600 -59 362 -5.2328 0.1137 1.7600 -59 363 -5.1795 0.1226 1.7600 -59 364 -5.1284 0.1399 1.7600 -59 365 -5.0751 0.1592 1.7600 -59 366 -5.0197 0.1844 1.7600 -59 367 -4.9641 0.2151 1.7600 -59 368 -4.9091 0.2471 1.7600 -59 369 -4.8556 0.2767 1.7600 -59 370 -4.7991 0.3050 1.7600 -59 371 -4.7453 0.3201 1.7600 -59 372 -4.6895 0.3269 1.7600 -59 373 -4.6342 0.3262 1.7600 -59 374 -4.5786 0.3250 1.7600 -59 375 -4.5160 0.3198 1.7600 -59 376 -4.4545 0.3110 1.7600 -59 377 -4.3883 0.2986 1.7600 -59 378 -4.3253 0.2794 1.7600 -59 379 -4.2578 0.2608 1.7600 -59 380 -4.1936 0.2462 1.7600 -59 381 -4.1286 0.2439 1.7600 -59 382 -4.0623 0.2499 1.7600 -59 383 -3.9927 0.2612 1.7600 -59 384 -3.9210 0.2770 1.7600 -59 385 -3.8474 0.2979 1.7600 -59 386 -3.7718 0.3190 1.7600 -59 387 -3.6926 0.3450 1.7600 -59 388 -3.6105 0.3721 1.7600 -59 389 -3.5332 0.3952 1.7600 -59 390 -3.4585 0.4106 1.7600 -59 391 -3.3836 0.4126 1.7600 -59 392 -3.3103 0.4118 1.7600 -59 393 -3.2347 0.4092 1.7600 -59 394 -3.1599 0.4044 1.7600 -59 395 -3.0825 0.3959 1.7600 -59 396 -3.0045 0.3843 1.7600 -59 397 -2.9254 0.3697 1.7600 -59 398 -2.8498 0.3573 1.7600 -59 399 -2.7804 0.3516 1.7600 -59 400 -2.7130 0.3538 1.7600 -59 401 -2.6469 0.3594 1.7600 -59 402 -2.5843 0.3652 1.7600 -59 403 -2.5199 0.3722 1.7600 -59 404 -2.4557 0.3842 1.7600 -59 405 -2.3852 0.4009 1.7600 -59 406 -2.3056 0.4178 1.7600 -59 407 -2.2259 0.4323 1.7600 -59 408 -2.1484 0.4370 1.7600 -59 409 -2.0735 0.4309 1.7600 -59 410 -2.0018 0.4226 1.7600 -59 411 -1.9335 0.4120 1.7600 -59 412 -1.8688 0.3987 1.7600 -59 413 -1.8038 0.3816 1.7600 -59 414 -1.7382 0.3651 1.7600 -59 415 -1.6689 0.3473 1.7600 -59 416 -1.6022 0.3309 1.7600 -59 417 -1.5429 0.3208 1.7600 -59 418 -1.4818 0.3168 1.7600 -59 419 -1.4212 0.3188 1.7600 -59 420 -1.3660 0.3230 1.7600 -59 421 -1.3168 0.3295 1.7600 -59 422 -1.2690 0.3397 1.7600 -59 423 -1.2173 0.3541 1.7600 -59 424 -1.1641 0.3685 1.7600 -59 425 -1.1138 0.3853 1.7600 -59 426 -1.0623 0.3973 1.7600 -59 427 -1.0050 0.3994 1.7600 -59 428 -0.9456 0.3957 1.7600 -59 429 -0.8860 0.3891 1.7600 -59 430 -0.8253 0.3829 1.7600 -59 431 -0.7624 0.3770 1.7600 -59 432 -0.6972 0.3686 1.7600 -59 433 -0.6278 0.3563 1.7600 -59 434 -0.5626 0.3391 1.7600 -59 435 -0.4989 0.3210 1.7600 -59 436 -0.4346 0.3092 1.7600 -59 437 -0.3699 0.3032 1.7600 -59 438 -0.3070 0.3032 1.7600 -59 439 -0.2452 0.3073 1.7600 -59 440 -0.1819 0.3157 1.7600 -59 441 -0.1172 0.3283 1.7600 -59 442 -0.0548 0.3453 1.7600 -59 443 0.0166 0.3621 1.7600 -59 444 0.0823 0.3806 1.7600 -59 445 0.1440 0.3978 1.7600 -59 446 0.2147 0.3997 1.7600 -59 447 0.2862 0.4055 1.7600 -59 448 0.3656 0.4054 1.7600 -59 449 0.4482 0.4055 1.7600 -59 450 0.5291 0.4039 1.7600 -59 451 0.6060 0.3947 1.7600 -59 452 0.6801 0.3864 1.7600 -59 453 0.7476 0.3777 1.7600 -59 454 0.8119 0.3746 1.7600 -59 455 0.8722 0.3783 1.7600 -59 456 0.9318 0.3850 1.7600 -59 457 0.9885 0.3962 1.7600 -59 458 1.0434 0.4071 1.7600 -59 459 1.1004 0.4213 1.7600 -59 460 1.1552 0.4376 1.7600 -59 461 1.2083 0.4568 1.7600 -59 462 1.2621 0.4700 1.7600 -59 463 1.3157 0.4746 1.7600 -59 464 1.3770 0.4719 1.7600 -59 465 1.4371 0.4626 1.7600 -59 466 1.5022 0.4505 1.7600 -59 467 1.5673 0.4323 1.7600 -59 468 1.6335 0.4064 1.7600 -59 469 1.6992 0.3747 1.7600 -59 470 1.7606 0.3480 1.7600 -59 471 1.8169 0.3285 1.7600 -59 472 1.8747 0.3193 1.7600 -59 473 1.9336 0.3140 1.7600 -59 474 1.9909 0.3134 1.7600 -59 475 2.0464 0.3139 1.7600 -59 476 2.1011 0.3202 1.7600 -59 477 2.1553 0.3300 1.7600 -59 478 2.2123 0.3444 1.7600 -59 479 2.2660 0.3595 1.7600 -59 480 2.3199 0.3737 1.7600 -59 481 2.3713 0.3811 1.7600 -59 482 2.4249 0.3800 1.7600 -59 483 2.4799 0.3768 1.7600 -59 484 2.5347 0.3686 1.7600 -59 485 2.5929 0.3579 1.7600 -59 486 2.6539 0.3475 1.7600 -59 487 2.7176 0.3328 1.7600 -59 488 2.7840 0.3159 1.7600 -59 489 2.8520 0.2981 1.7600 -59 490 2.9146 0.2840 1.7600 -59 491 2.9783 0.2801 1.7600 -59 492 3.0423 0.2854 1.7600 -59 493 3.1037 0.2984 1.7600 -59 494 3.1667 0.3152 1.7600 -59 495 3.2248 0.3302 1.7600 -59 496 3.2856 0.3481 1.7600 -59 497 3.3468 0.3645 1.7600 -59 498 3.4119 0.3801 1.7600 -59 499 3.4768 0.3899 1.7600 -59 500 3.5412 0.3938 1.7600 -59 501 3.6090 0.3960 1.7600 -59 502 3.6733 0.3945 1.7600 -59 503 3.7359 0.3906 1.7600 -59 504 3.8004 0.3808 1.7600 -59 505 3.8657 0.3688 1.7600 -59 506 3.9361 0.3509 1.7600 -59 507 4.0094 0.3310 1.7600 -59 508 4.0864 0.3108 1.7600 -59 509 4.1535 0.2961 1.7600 -59 510 4.2193 0.2867 1.7600 -59 511 4.2899 0.2818 1.7600 -59 512 4.3569 0.2815 1.7600 -59 513 4.4241 0.2840 1.7600 -59 514 4.4907 0.2847 1.7600 -59 515 4.5558 0.2901 1.7600 -59 516 4.6222 0.3013 1.7600 -59 517 4.6903 0.3109 1.7600 -59 518 4.7622 0.3168 1.7600 -59 519 4.8314 0.3156 1.7600 -59 520 4.9047 0.3125 1.7600 -59 521 4.9707 0.3034 1.7600 -59 522 5.0258 0.2888 1.7600 -59 523 5.0833 0.2723 1.7600 -59 524 5.1439 0.2478 1.7600 -59 525 5.2122 0.2196 1.7600 -59 526 5.2826 0.1959 1.7600 -59 527 5.3554 0.1746 1.7600 -59 528 5.4269 0.1586 1.7600 -59 529 5.5039 0.1473 1.7600 -59 530 5.5774 0.1434 1.7600 -59 531 5.6446 0.1452 1.7600 -59 532 5.7094 0.1514 1.7600 -59 533 5.7792 0.1584 1.7600 -59 534 5.8526 0.1623 1.7600 -59 535 5.9284 0.1658 1.7600 -60 338 -7.8253 1.6298 1.7600 -60 339 -7.7561 1.6291 1.7600 -60 340 -7.6821 1.6309 1.7600 -60 341 -7.6053 1.6355 1.7600 -60 342 -7.5308 1.6448 1.7600 -60 343 -7.4625 1.6578 1.7600 -60 344 -7.3971 1.6678 1.7600 -60 345 -7.3365 1.6708 1.7600 -60 346 -7.2794 1.6657 1.7600 -60 347 -7.2258 1.6505 1.7600 -60 348 -7.1711 1.6352 1.7600 -60 349 -7.1094 1.6181 1.7600 -60 350 -7.0457 1.6016 1.7600 -60 351 -6.9785 1.5802 1.7600 -60 352 -6.9147 1.5600 1.7600 -60 353 -6.8535 1.5315 1.7600 -60 354 -6.7967 1.5082 1.7600 -60 355 -6.7402 1.4848 1.7600 -60 356 -6.6803 1.4707 1.7600 -60 357 -6.6163 1.4597 1.7600 -60 358 -6.5463 1.4532 1.7600 -60 359 -6.4765 1.4494 1.7600 -60 360 -6.4047 1.4466 1.7600 -60 361 -6.3291 1.4420 1.7600 -60 362 -6.2557 1.4403 1.7600 -60 363 -6.1870 1.4447 1.7600 -60 364 -6.1235 1.4530 1.7600 -60 365 -6.0613 1.4545 1.7600 -60 366 -6.0006 1.4446 1.7600 -60 367 -5.9371 1.4263 1.7600 -60 368 -5.8762 1.4047 1.7600 -60 369 -5.8161 1.3833 1.7600 -60 370 -5.7528 1.3568 1.7600 -60 371 -5.6944 1.3283 1.7600 -60 372 -5.6360 1.2968 1.7600 -60 373 -5.5833 1.2607 1.7600 -60 374 -5.5332 1.2207 1.7600 -60 375 -5.4841 1.1808 1.7600 -60 376 -5.4318 1.1481 1.7600 -60 377 -5.3814 1.1233 1.7600 -60 378 -5.3307 1.1069 1.7600 -60 379 -5.2807 1.0989 1.7600 -60 380 -5.2337 1.0943 1.7600 -60 381 -5.1832 1.0926 1.7600 -60 382 -5.1287 1.0952 1.7600 -60 383 -5.0758 1.1024 1.7600 -60 384 -5.0189 1.1134 1.7600 -60 385 -4.9623 1.1256 1.7600 -60 386 -4.9097 1.1383 1.7600 -60 387 -4.8574 1.1439 1.7600 -60 388 -4.8063 1.1443 1.7600 -60 389 -4.7566 1.1404 1.7600 -60 390 -4.7036 1.1341 1.7600 -60 391 -4.6507 1.1256 1.7600 -60 392 -4.5991 1.1146 1.7600 -60 393 -4.5426 1.1016 1.7600 -60 394 -4.4864 1.0893 1.7600 -60 395 -4.4261 1.0750 1.7600 -60 396 -4.3669 1.0602 1.7600 -60 397 -4.3099 1.0488 1.7600 -60 398 -4.2545 1.0412 1.7600 -60 399 -4.1965 1.0411 1.7600 -60 400 -4.1372 1.0451 1.7600 -60 401 -4.0772 1.0532 1.7600 -60 402 -4.0169 1.0629 1.7600 -60 403 -3.9527 1.0740 1.7600 -60 404 -3.8936 1.0874 1.7600 -60 405 -3.8328 1.1012 1.7600 -60 406 -3.7727 1.1154 1.7600 -60 407 -3.7158 1.1325 1.7600 -60 408 -3.6563 1.1420 1.7600 -60 409 -3.5995 1.1474 1.7600 -60 410 -3.5353 1.1493 1.7600 -60 411 -3.4770 1.1513 1.7600 -60 412 -3.4143 1.1518 1.7600 -60 413 -3.3507 1.1493 1.7600 -60 414 -3.2851 1.1460 1.7600 -60 415 -3.2203 1.1379 1.7600 -60 416 -3.1529 1.1263 1.7600 -60 417 -3.0864 1.1129 1.7600 -60 418 -3.0230 1.0966 1.7600 -60 419 -2.9632 1.0906 1.7600 -60 420 -2.9004 1.0940 1.7600 -60 421 -2.8377 1.1028 1.7600 -60 422 -2.7735 1.1136 1.7600 -60 423 -2.7088 1.1257 1.7600 -60 424 -2.6428 1.1393 1.7600 -60 425 -2.5767 1.1553 1.7600 -60 426 -2.5076 1.1744 1.7600 -60 427 -2.4348 1.1918 1.7600 -60 428 -2.3652 1.2063 1.7600 -60 429 -2.2955 1.2121 1.7600 -60 430 -2.2218 1.2136 1.7600 -60 431 -2.1535 1.2141 1.7600 -60 432 -2.0896 1.2086 1.7600 -60 433 -2.0210 1.2034 1.7600 -60 434 -1.9487 1.1954 1.7600 -60 435 -1.8760 1.1856 1.7600 -60 436 -1.7986 1.1713 1.7600 -60 437 -1.7238 1.1559 1.7600 -60 438 -1.6529 1.1455 1.7600 -60 439 -1.5844 1.1438 1.7600 -60 440 -1.5142 1.1449 1.7600 -60 441 -1.4499 1.1479 1.7600 -60 442 -1.3889 1.1525 1.7600 -60 443 -1.3252 1.1587 1.7600 -60 444 -1.2622 1.1665 1.7600 -60 445 -1.1989 1.1766 1.7600 -60 446 -1.1320 1.1893 1.7600 -60 447 -1.0719 1.1968 1.7600 -60 448 -1.0132 1.1985 1.7600 -60 449 -0.9547 1.1921 1.7600 -60 450 -0.8933 1.1820 1.7600 -60 451 -0.8350 1.1705 1.7600 -60 452 -0.7711 1.1587 1.7600 -60 453 -0.7068 1.1457 1.7600 -60 454 -0.6410 1.1304 1.7600 -60 455 -0.5768 1.1100 1.7600 -60 456 -0.5125 1.0859 1.7600 -60 457 -0.4470 1.0603 1.7600 -60 458 -0.3878 1.0421 1.7600 -60 459 -0.3296 1.0304 1.7600 -60 460 -0.2720 1.0263 1.7600 -60 461 -0.2130 1.0265 1.7600 -60 462 -0.1535 1.0285 1.7600 -60 463 -0.0892 1.0339 1.7600 -60 464 -0.0161 1.0449 1.7600 -60 465 0.0577 1.0595 1.7600 -60 466 0.1231 1.0690 1.7600 -60 467 0.1886 1.0733 1.7600 -60 468 0.2521 1.0740 1.7600 -60 469 0.3188 1.0691 1.7600 -60 470 0.3892 1.0589 1.7600 -60 471 0.4608 1.0476 1.7600 -60 472 0.5313 1.0370 1.7600 -60 473 0.6041 1.0242 1.7600 -60 474 0.6731 1.0102 1.7600 -60 475 0.7418 0.9930 1.7600 -60 476 0.8122 0.9748 1.7600 -60 477 0.8788 0.9567 1.7600 -60 478 0.9351 0.9473 1.7600 -60 479 0.9903 0.9418 1.7600 -60 480 1.0477 0.9380 1.7600 -60 481 1.1063 0.9387 1.7600 -60 482 1.1655 0.9418 1.7600 -60 483 1.2264 0.9461 1.7600 -60 484 1.2911 0.9539 1.7600 -60 485 1.3553 0.9686 1.7600 -60 486 1.4210 0.9881 1.7600 -60 487 1.4898 1.0006 1.7600 -60 488 1.5574 1.0019 1.7600 -60 489 1.6193 0.9971 1.7600 -60 490 1.6765 0.9887 1.7600 -60 491 1.7360 0.9810 1.7600 -60 492 1.7965 0.9736 1.7600 -60 493 1.8619 0.9657 1.7600 -60 494 1.9293 0.9519 1.7600 -60 495 1.9934 0.9330 1.7600 -60 496 2.0598 0.9110 1.7600 -60 497 2.1248 0.8902 1.7600 -60 498 2.1828 0.8775 1.7600 -60 499 2.2414 0.8735 1.7600 -60 500 2.3006 0.8716 1.7600 -60 501 2.3621 0.8730 1.7600 -60 502 2.4288 0.8754 1.7600 -60 503 2.4932 0.8816 1.7600 -60 504 2.5627 0.8909 1.7600 -60 505 2.6338 0.9031 1.7600 -60 506 2.7080 0.9155 1.7600 -60 507 2.7833 0.9249 1.7600 -60 508 2.8588 0.9317 1.7600 -60 509 2.9360 0.9300 1.7600 -60 510 3.0103 0.9214 1.7600 -60 511 3.0798 0.9139 1.7600 -60 512 3.1505 0.9092 1.7600 -60 513 3.2249 0.9054 1.7600 -60 514 3.2988 0.8993 1.7600 -60 515 3.3744 0.8898 1.7600 -60 516 3.4533 0.8778 1.7600 -60 517 3.5278 0.8654 1.7600 -60 518 3.6023 0.8581 1.7600 -60 519 3.6777 0.8624 1.7600 -60 520 3.7490 0.8708 1.7600 -60 521 3.8202 0.8798 1.7600 -60 522 3.8912 0.8894 1.7600 -60 523 3.9585 0.8964 1.7600 -60 524 4.0348 0.9077 1.7600 -60 525 4.1165 0.9184 1.7600 -60 526 4.2087 0.9322 1.7600 -60 527 4.2927 0.9425 1.7600 -60 528 4.3762 0.9430 1.7600 -60 529 4.4526 0.9308 1.7600 -60 530 4.5232 0.9166 1.7600 -60 531 4.5907 0.9021 1.7600 -60 532 4.6602 0.8892 1.7600 -60 533 4.7314 0.8746 1.7600 -60 534 4.8089 0.8602 1.7600 -60 535 4.8908 0.8449 1.7600 -60 536 4.9735 0.8289 1.7600 -60 537 5.0541 0.8176 1.7600 -60 538 5.1410 0.8132 1.7600 -60 539 5.2274 0.8104 1.7600 -60 540 5.3036 0.8084 1.7600 -60 541 5.3739 0.8064 1.7600 -60 542 5.4433 0.8057 1.7600 -60 543 5.5173 0.8058 1.7600 -60 544 5.5962 0.8069 1.7600 -60 545 5.6797 0.8066 1.7600 -60 546 5.7612 0.8067 1.7600 -60 547 5.8443 0.8012 1.7600 -60 548 5.9260 0.7894 1.7600 -61 345 -7.8185 1.6769 1.7600 -61 346 -7.7570 1.6754 1.7600 -61 347 -7.6946 1.6719 1.7600 -61 348 -7.6350 1.6673 1.7600 -61 349 -7.5786 1.6606 1.7600 -61 350 -7.5216 1.6556 1.7600 -61 351 -7.4602 1.6552 1.7600 -61 352 -7.3929 1.6571 1.7600 -61 353 -7.3211 1.6620 1.7600 -61 354 -7.2457 1.6695 1.7600 -61 355 -7.1726 1.6795 1.7600 -61 356 -7.1040 1.6892 1.7600 -61 357 -7.0391 1.6975 1.7600 -61 358 -6.9746 1.7026 1.7600 -61 359 -6.9087 1.7010 1.7600 -61 360 -6.8399 1.7000 1.7600 -61 361 -6.7670 1.6949 1.7600 -61 362 -6.6982 1.6860 1.7600 -61 363 -6.6339 1.6757 1.7600 -61 364 -6.5716 1.6634 1.7600 -61 365 -6.5108 1.6528 1.7600 -61 366 -6.4486 1.6412 1.7600 -61 367 -6.3873 1.6290 1.7600 -61 368 -6.3205 1.6154 1.7600 -61 369 -6.2540 1.5993 1.7600 -61 370 -6.1906 1.5857 1.7600 -61 371 -6.1302 1.5712 1.7600 -61 372 -6.0748 1.5553 1.7600 -61 373 -6.0249 1.5396 1.7600 -61 374 -5.9746 1.5270 1.7600 -61 375 -5.9212 1.5143 1.7600 -61 376 -5.8714 1.5009 1.7600 -61 377 -5.8204 1.4859 1.7600 -61 378 -5.7695 1.4677 1.7600 -61 379 -5.7145 1.4485 1.7600 -61 380 -5.6599 1.4300 1.7600 -61 381 -5.6018 1.4139 1.7600 -61 382 -5.5413 1.4012 1.7600 -61 383 -5.4823 1.3902 1.7600 -61 384 -5.4243 1.3782 1.7600 -61 385 -5.3641 1.3682 1.7600 -61 386 -5.3058 1.3623 1.7600 -61 387 -5.2453 1.3553 1.7600 -61 388 -5.1905 1.3487 1.7600 -61 389 -5.1401 1.3390 1.7600 -61 390 -5.0899 1.3278 1.7600 -61 391 -5.0380 1.3183 1.7600 -61 392 -4.9867 1.3095 1.7600 -61 393 -4.9391 1.3037 1.7600 -61 394 -4.8951 1.2943 1.7600 -61 395 -4.8547 1.2836 1.7600 -61 396 -4.8120 1.2725 1.7600 -61 397 -4.7673 1.2607 1.7600 -61 398 -4.7169 1.2470 1.7600 -61 399 -4.6669 1.2350 1.7600 -61 400 -4.6168 1.2236 1.7600 -61 401 -4.5625 1.2136 1.7600 -61 402 -4.5088 1.2054 1.7600 -61 403 -4.4539 1.2024 1.7600 -61 404 -4.4005 1.2011 1.7600 -61 405 -4.3500 1.1948 1.7600 -61 406 -4.2959 1.1889 1.7600 -61 407 -4.2446 1.1796 1.7600 -61 408 -4.1920 1.1713 1.7600 -61 409 -4.1396 1.1621 1.7600 -61 410 -4.0899 1.1506 1.7600 -61 411 -4.0378 1.1392 1.7600 -61 412 -3.9866 1.1329 1.7600 -61 413 -3.9338 1.1305 1.7600 -61 414 -3.8755 1.1356 1.7600 -61 415 -3.8180 1.1430 1.7600 -61 416 -3.7608 1.1509 1.7600 -61 417 -3.7077 1.1614 1.7600 -61 418 -3.6515 1.1710 1.7600 -61 419 -3.5993 1.1805 1.7600 -61 420 -3.5405 1.1838 1.7600 -61 421 -3.4891 1.1875 1.7600 -61 422 -3.4353 1.1897 1.7600 -61 423 -3.3865 1.1907 1.7600 -61 424 -3.3363 1.1904 1.7600 -61 425 -3.2917 1.1848 1.7600 -61 426 -3.2446 1.1786 1.7600 -61 427 -3.1935 1.1738 1.7600 -61 428 -3.1429 1.1712 1.7600 -61 429 -3.0890 1.1702 1.7600 -61 430 -3.0323 1.1716 1.7600 -61 431 -2.9781 1.1738 1.7600 -61 432 -2.9246 1.1767 1.7600 -61 433 -2.8693 1.1813 1.7600 -61 434 -2.8124 1.1849 1.7600 -61 435 -2.7561 1.1859 1.7600 -61 436 -2.6967 1.1819 1.7600 -61 437 -2.6343 1.1790 1.7600 -61 438 -2.5723 1.1743 1.7600 -61 439 -2.5101 1.1696 1.7600 -61 440 -2.4435 1.1629 1.7600 -61 441 -2.3795 1.1551 1.7600 -61 442 -2.3157 1.1500 1.7600 -61 443 -2.2491 1.1502 1.7600 -61 444 -2.1858 1.1516 1.7600 -61 445 -2.1206 1.1559 1.7600 -61 446 -2.0578 1.1603 1.7600 -61 447 -1.9911 1.1666 1.7600 -61 448 -1.9250 1.1749 1.7600 -61 449 -1.8550 1.1790 1.7600 -61 450 -1.7896 1.1776 1.7600 -61 451 -1.7242 1.1764 1.7600 -61 452 -1.6569 1.1764 1.7600 -61 453 -1.5887 1.1736 1.7600 -61 454 -1.5176 1.1682 1.7600 -61 455 -1.4429 1.1633 1.7600 -61 456 -1.3693 1.1582 1.7600 -61 457 -1.2968 1.1551 1.7600 -61 458 -1.2218 1.1553 1.7600 -61 459 -1.1506 1.1582 1.7600 -61 460 -1.0784 1.1588 1.7600 -61 461 -1.0038 1.1611 1.7600 -61 462 -0.9284 1.1681 1.7600 -61 463 -0.8508 1.1765 1.7600 -61 464 -0.7766 1.1863 1.7600 -61 465 -0.7025 1.1921 1.7600 -61 466 -0.6288 1.1957 1.7600 -61 467 -0.5600 1.1961 1.7600 -61 468 -0.4891 1.1965 1.7600 -61 469 -0.4182 1.1986 1.7600 -61 470 -0.3500 1.1965 1.7600 -61 471 -0.2827 1.1942 1.7600 -61 472 -0.2170 1.1914 1.7600 -61 473 -0.1503 1.1908 1.7600 -61 474 -0.0868 1.1959 1.7600 -61 475 -0.0230 1.1992 1.7600 -61 476 0.0353 1.2027 1.7600 -61 477 0.0973 1.2049 1.7600 -61 478 0.1581 1.2071 1.7600 -61 479 0.2163 1.2113 1.7600 -61 480 0.2753 1.2154 1.7600 -61 481 0.3350 1.2181 1.7600 -61 482 0.3944 1.2196 1.7600 -61 483 0.4576 1.2174 1.7600 -61 484 0.5169 1.2136 1.7600 -61 485 0.5824 1.2106 1.7600 -61 486 0.6503 1.2068 1.7600 -61 487 0.7199 1.1992 1.7600 -61 488 0.7842 1.1931 1.7600 -61 489 0.8461 1.1874 1.7600 -61 490 0.9123 1.1876 1.7600 -61 491 0.9742 1.1881 1.7600 -61 492 1.0342 1.1935 1.7600 -61 493 1.0990 1.1945 1.7600 -61 494 1.1629 1.1957 1.7600 -61 495 1.2238 1.2004 1.7600 -61 496 1.2836 1.2087 1.7600 -61 497 1.3429 1.2148 1.7600 -61 498 1.4055 1.2152 1.7600 -61 499 1.4651 1.2128 1.7600 -61 500 1.5288 1.2084 1.7600 -61 501 1.5906 1.2027 1.7600 -61 502 1.6555 1.1940 1.7600 -61 503 1.7245 1.1839 1.7600 -61 504 1.7922 1.1717 1.7600 -61 505 1.8538 1.1626 1.7600 -61 506 1.9130 1.1593 1.7600 -61 507 1.9759 1.1611 1.7600 -61 508 2.0397 1.1626 1.7600 -61 509 2.1037 1.1638 1.7600 -61 510 2.1725 1.1675 1.7600 -61 511 2.2445 1.1725 1.7600 -61 512 2.3193 1.1804 1.7600 -61 513 2.3949 1.1861 1.7600 -61 514 2.4696 1.1868 1.7600 -61 515 2.5426 1.1829 1.7600 -61 516 2.6121 1.1803 1.7600 -61 517 2.6842 1.1753 1.7600 -61 518 2.7549 1.1692 1.7600 -61 519 2.8296 1.1629 1.7600 -61 520 2.9050 1.1565 1.7600 -61 521 2.9784 1.1494 1.7600 -61 522 3.0539 1.1447 1.7600 -61 523 3.1291 1.1448 1.7600 -61 524 3.2004 1.1477 1.7600 -61 525 3.2732 1.1512 1.7600 -61 526 3.3460 1.1563 1.7600 -61 527 3.4273 1.1645 1.7600 -61 528 3.5084 1.1750 1.7600 -61 529 3.5907 1.1813 1.7600 -61 530 3.6727 1.1871 1.7600 -61 531 3.7549 1.1899 1.7600 -61 532 3.8332 1.1906 1.7600 -61 533 3.9112 1.1923 1.7600 -61 534 3.9924 1.1925 1.7600 -61 535 4.0800 1.1933 1.7600 -61 536 4.1649 1.1910 1.7600 -61 537 4.2465 1.1914 1.7600 -61 538 4.3301 1.1962 1.7600 -61 539 4.4073 1.2006 1.7600 -61 540 4.4848 1.2066 1.7600 -61 541 4.5636 1.2152 1.7600 -61 542 4.6459 1.2259 1.7600 -61 543 4.7327 1.2408 1.7600 -61 544 4.8187 1.2513 1.7600 -61 545 4.9052 1.2595 1.7600 -61 546 4.9902 1.2639 1.7600 -61 547 5.0696 1.2723 1.7600 -61 548 5.1482 1.2794 1.7600 -61 549 5.2334 1.2863 1.7600 -61 550 5.3252 1.2934 1.7600 -61 551 5.4157 1.2998 1.7600 -61 552 5.5073 1.3092 1.7600 -61 553 5.5968 1.3209 1.7600 -61 554 5.6800 1.3342 1.7600 -61 555 5.7647 1.3491 1.7600 -61 556 5.8577 1.3667 1.7600 -62 340 -7.7665 2.2668 1.7600 -62 341 -7.6826 2.2821 1.7600 -62 342 -7.5960 2.2957 1.7600 -62 343 -7.5115 2.3088 1.7600 -62 344 -7.4319 2.3238 1.7600 -62 345 -7.3597 2.3401 1.7600 -62 346 -7.2904 2.3545 1.7600 -62 347 -7.2206 2.3655 1.7600 -62 348 -7.1482 2.3694 1.7600 -62 349 -7.0728 2.3661 1.7600 -62 350 -6.9945 2.3581 1.7600 -62 351 -6.9159 2.3471 1.7600 -62 352 -6.8383 2.3329 1.7600 -62 353 -6.7645 2.3169 1.7600 -62 354 -6.6938 2.3005 1.7600 -62 355 -6.6232 2.2893 1.7600 -62 356 -6.5504 2.2833 1.7600 -62 357 -6.4769 2.2800 1.7600 -62 358 -6.4026 2.2761 1.7600 -62 359 -6.3272 2.2687 1.7600 -62 360 -6.2539 2.2578 1.7600 -62 361 -6.1873 2.2486 1.7600 -62 362 -6.1236 2.2381 1.7600 -62 363 -6.0618 2.2276 1.7600 -62 364 -6.0049 2.2163 1.7600 -62 365 -5.9532 2.2020 1.7600 -62 366 -5.9004 2.1840 1.7600 -62 367 -5.8472 2.1675 1.7600 -62 368 -5.7923 2.1533 1.7600 -62 369 -5.7361 2.1375 1.7600 -62 370 -5.6879 2.1207 1.7600 -62 371 -5.6377 2.1004 1.7600 -62 372 -5.5833 2.0854 1.7600 -62 373 -5.5254 2.0739 1.7600 -62 374 -5.4646 2.0621 1.7600 -62 375 -5.4062 2.0537 1.7600 -62 376 -5.3461 2.0424 1.7600 -62 377 -5.2836 2.0340 1.7600 -62 378 -5.2246 2.0268 1.7600 -62 379 -5.1686 2.0188 1.7600 -62 380 -5.1193 2.0094 1.7600 -62 381 -5.0664 1.9949 1.7600 -62 382 -5.0197 1.9793 1.7600 -62 383 -4.9797 1.9607 1.7600 -62 384 -4.9424 1.9416 1.7600 -62 385 -4.9051 1.9176 1.7600 -62 386 -4.8710 1.8935 1.7600 -62 387 -4.8368 1.8684 1.7600 -62 388 -4.8025 1.8445 1.7600 -62 389 -4.7707 1.8208 1.7600 -62 390 -4.7324 1.8005 1.7600 -62 391 -4.6896 1.7796 1.7600 -62 392 -4.6492 1.7652 1.7600 -62 393 -4.6087 1.7475 1.7600 -62 394 -4.5654 1.7331 1.7600 -62 395 -4.5166 1.7180 1.7600 -62 396 -4.4660 1.7049 1.7600 -62 397 -4.4122 1.6935 1.7600 -62 398 -4.3582 1.6835 1.7600 -62 399 -4.3046 1.6757 1.7600 -62 400 -4.2514 1.6640 1.7600 -62 401 -4.1993 1.6510 1.7600 -62 402 -4.1443 1.6360 1.7600 -62 403 -4.0887 1.6162 1.7600 -62 404 -4.0360 1.5935 1.7600 -62 405 -3.9816 1.5691 1.7600 -62 406 -3.9281 1.5467 1.7600 -62 407 -3.8738 1.5275 1.7600 -62 408 -3.8222 1.5183 1.7600 -62 409 -3.7715 1.5138 1.7600 -62 410 -3.7262 1.5127 1.7600 -62 411 -3.6764 1.5117 1.7600 -62 412 -3.6250 1.5052 1.7600 -62 413 -3.5668 1.5028 1.7600 -62 414 -3.5038 1.5034 1.7600 -62 415 -3.4436 1.5022 1.7600 -62 416 -3.3830 1.5027 1.7600 -62 417 -3.3261 1.4984 1.7600 -62 418 -3.2663 1.4931 1.7600 -62 419 -3.2120 1.4837 1.7600 -62 420 -3.1610 1.4755 1.7600 -62 421 -3.1066 1.4681 1.7600 -62 422 -3.0508 1.4624 1.7600 -62 423 -3.0019 1.4583 1.7600 -62 424 -2.9523 1.4577 1.7600 -62 425 -2.9016 1.4625 1.7600 -62 426 -2.8520 1.4710 1.7600 -62 427 -2.8026 1.4810 1.7600 -62 428 -2.7571 1.4918 1.7600 -62 429 -2.7104 1.5068 1.7600 -62 430 -2.6627 1.5237 1.7600 -62 431 -2.6105 1.5439 1.7600 -62 432 -2.5550 1.5566 1.7600 -62 433 -2.4983 1.5667 1.7600 -62 434 -2.4332 1.5718 1.7600 -62 435 -2.3752 1.5713 1.7600 -62 436 -2.3212 1.5674 1.7600 -62 437 -2.2643 1.5593 1.7600 -62 438 -2.2041 1.5491 1.7600 -62 439 -2.1381 1.5394 1.7600 -62 440 -2.0652 1.5300 1.7600 -62 441 -1.9919 1.5198 1.7600 -62 442 -1.9196 1.5134 1.7600 -62 443 -1.8459 1.5131 1.7600 -62 444 -1.7723 1.5166 1.7600 -62 445 -1.7064 1.5222 1.7600 -62 446 -1.6418 1.5289 1.7600 -62 447 -1.5782 1.5368 1.7600 -62 448 -1.5113 1.5458 1.7600 -62 449 -1.4423 1.5545 1.7600 -62 450 -1.3740 1.5602 1.7600 -62 451 -1.3041 1.5627 1.7600 -62 452 -1.2329 1.5628 1.7600 -62 453 -1.1647 1.5579 1.7600 -62 454 -1.0995 1.5482 1.7600 -62 455 -1.0365 1.5341 1.7600 -62 456 -0.9738 1.5201 1.7600 -62 457 -0.9097 1.5072 1.7600 -62 458 -0.8473 1.4964 1.7600 -62 459 -0.7878 1.4909 1.7600 -62 460 -0.7282 1.4907 1.7600 -62 461 -0.6704 1.4909 1.7600 -62 462 -0.6116 1.4884 1.7600 -62 463 -0.5556 1.4903 1.7600 -62 464 -0.5008 1.4948 1.7600 -62 465 -0.4388 1.4985 1.7600 -62 466 -0.3744 1.5045 1.7600 -62 467 -0.3119 1.5104 1.7600 -62 468 -0.2447 1.5137 1.7600 -62 469 -0.1780 1.5160 1.7600 -62 470 -0.1062 1.5138 1.7600 -62 471 -0.0318 1.5081 1.7600 -62 472 0.0430 1.5054 1.7600 -62 473 0.1223 1.4993 1.7600 -62 474 0.1991 1.4961 1.7600 -62 475 0.2842 1.4929 1.7600 -62 476 0.3692 1.4933 1.7600 -62 477 0.4585 1.4966 1.7600 -62 478 0.5450 1.5011 1.7600 -62 479 0.6369 1.5029 1.7600 -62 480 0.7279 1.5044 1.7600 -62 481 0.8068 1.5126 1.7600 -62 482 0.8790 1.5205 1.7600 -62 483 0.9473 1.5265 1.7600 -62 484 1.0084 1.5275 1.7600 -62 485 1.0554 1.5220 1.7600 -62 486 1.0954 1.5143 1.7600 -62 487 1.1308 1.5009 1.7600 -62 488 1.1754 1.4866 1.7600 -62 489 1.2195 1.4726 1.7600 -62 490 1.2627 1.4551 1.7600 -62 491 1.3082 1.4419 1.7600 -62 492 1.3570 1.4314 1.7600 -62 493 1.4046 1.4280 1.7600 -62 494 1.4537 1.4300 1.7600 -62 495 1.5051 1.4334 1.7600 -62 496 1.5538 1.4412 1.7600 -62 497 1.6051 1.4511 1.7600 -62 498 1.6544 1.4615 1.7600 -62 499 1.7105 1.4744 1.7600 -62 500 1.7678 1.4878 1.7600 -62 501 1.8268 1.5004 1.7600 -62 502 1.8887 1.5115 1.7600 -62 503 1.9510 1.5209 1.7600 -62 504 2.0139 1.5264 1.7600 -62 505 2.0774 1.5272 1.7600 -62 506 2.1430 1.5249 1.7600 -62 507 2.2143 1.5199 1.7600 -62 508 2.2859 1.5159 1.7600 -62 509 2.3554 1.5112 1.7600 -62 510 2.4250 1.5060 1.7600 -62 511 2.4983 1.5051 1.7600 -62 512 2.5743 1.5104 1.7600 -62 513 2.6475 1.5229 1.7600 -62 514 2.7196 1.5392 1.7600 -62 515 2.7877 1.5573 1.7600 -62 516 2.8599 1.5767 1.7600 -62 517 2.9280 1.5945 1.7600 -62 518 2.9946 1.6051 1.7600 -62 519 3.0676 1.6097 1.7600 -62 520 3.1394 1.6049 1.7600 -62 521 3.2064 1.5969 1.7600 -62 522 3.2736 1.5861 1.7600 -62 523 3.3462 1.5719 1.7600 -62 524 3.4255 1.5568 1.7600 -62 525 3.5073 1.5456 1.7600 -62 526 3.5902 1.5404 1.7600 -62 527 3.6710 1.5437 1.7600 -62 528 3.7471 1.5490 1.7600 -62 529 3.8170 1.5565 1.7600 -62 530 3.8789 1.5659 1.7600 -62 531 3.9438 1.5736 1.7600 -62 532 4.0137 1.5864 1.7600 -62 533 4.0902 1.6009 1.7600 -62 534 4.1740 1.6157 1.7600 -62 535 4.2614 1.6238 1.7600 -62 536 4.3432 1.6278 1.7600 -62 537 4.4161 1.6334 1.7600 -62 538 4.4847 1.6356 1.7600 -62 539 4.5570 1.6412 1.7600 -62 540 4.6364 1.6494 1.7600 -62 541 4.7248 1.6663 1.7600 -62 542 4.8115 1.6946 1.7600 -62 543 4.8888 1.7295 1.7600 -62 544 4.9544 1.7576 1.7600 -62 545 5.0173 1.7832 1.7600 -62 546 5.0923 1.8082 1.7600 -62 547 5.1766 1.8281 1.7600 -62 548 5.2740 1.8473 1.7600 -62 549 5.3821 1.8685 1.7600 -62 550 5.4908 1.8804 1.7600 -62 551 5.5903 1.8805 1.7600 -62 552 5.6741 1.8774 1.7600 -62 553 5.7525 1.8784 1.7600 -62 554 5.8391 1.8841 1.7600 -62 555 5.9303 1.8959 1.7600 -63 352 -7.8491 0.6197 1.7600 -63 353 -7.8008 0.5776 1.7600 -63 354 -7.7525 0.5355 1.7600 -63 355 -7.6973 0.4911 1.7600 -63 356 -7.6353 0.4452 1.7600 -63 357 -7.5709 0.3982 1.7600 -63 358 -7.5102 0.3496 1.7600 -63 359 -7.4549 0.3010 1.7600 -63 360 -7.3983 0.2587 1.7600 -63 361 -7.3391 0.2263 1.7600 -63 362 -7.2757 0.2042 1.7600 -63 363 -7.2058 0.1894 1.7600 -63 364 -7.1284 0.1815 1.7600 -63 365 -7.0463 0.1792 1.7600 -63 366 -6.9640 0.1824 1.7600 -63 367 -6.8847 0.1887 1.7600 -63 368 -6.8084 0.1954 1.7600 -63 369 -6.7365 0.1982 1.7600 -63 370 -6.6662 0.1925 1.7600 -63 371 -6.5936 0.1821 1.7600 -63 372 -6.5127 0.1695 1.7600 -63 373 -6.4352 0.1550 1.7600 -63 374 -6.3550 0.1407 1.7600 -63 375 -6.2803 0.1239 1.7600 -63 376 -6.2111 0.1095 1.7600 -63 377 -6.1434 0.1046 1.7600 -63 378 -6.0821 0.1129 1.7600 -63 379 -6.0250 0.1302 1.7600 -63 380 -5.9662 0.1506 1.7600 -63 381 -5.9050 0.1775 1.7600 -63 382 -5.8426 0.2059 1.7600 -63 383 -5.7851 0.2342 1.7600 -63 384 -5.7263 0.2577 1.7600 -63 385 -5.6758 0.2707 1.7600 -63 386 -5.6232 0.2752 1.7600 -63 387 -5.5619 0.2719 1.7600 -63 388 -5.4982 0.2614 1.7600 -63 389 -5.4298 0.2479 1.7600 -63 390 -5.3595 0.2292 1.7600 -63 391 -5.2909 0.2081 1.7600 -63 392 -5.2228 0.1902 1.7600 -63 393 -5.1609 0.1778 1.7600 -63 394 -5.1052 0.1722 1.7600 -63 395 -5.0556 0.1740 1.7600 -63 396 -5.0072 0.1800 1.7600 -63 397 -4.9603 0.1919 1.7600 -63 398 -4.9175 0.2064 1.7600 -63 399 -4.8760 0.2297 1.7600 -63 400 -4.8335 0.2555 1.7600 -63 401 -4.7924 0.2875 1.7600 -63 402 -4.7507 0.3211 1.7600 -63 403 -4.7066 0.3436 1.7600 -63 404 -4.6617 0.3555 1.7600 -63 405 -4.6190 0.3600 1.7600 -63 406 -4.5740 0.3626 1.7600 -63 407 -4.5253 0.3613 1.7600 -63 408 -4.4762 0.3572 1.7600 -63 409 -4.4244 0.3510 1.7600 -63 410 -4.3625 0.3374 1.7600 -63 411 -4.2962 0.3166 1.7600 -63 412 -4.2300 0.2921 1.7600 -63 413 -4.1640 0.2723 1.7600 -63 414 -4.1048 0.2616 1.7600 -63 415 -4.0507 0.2628 1.7600 -63 416 -4.0038 0.2744 1.7600 -63 417 -3.9552 0.2873 1.7600 -63 418 -3.9037 0.3042 1.7600 -63 419 -3.8515 0.3220 1.7600 -63 420 -3.7985 0.3433 1.7600 -63 421 -3.7444 0.3668 1.7600 -63 422 -3.6937 0.3860 1.7600 -63 423 -3.6483 0.3976 1.7600 -63 424 -3.6012 0.3991 1.7600 -63 425 -3.5572 0.3940 1.7600 -63 426 -3.5087 0.3843 1.7600 -63 427 -3.4619 0.3700 1.7600 -63 428 -3.4143 0.3490 1.7600 -63 429 -3.3647 0.3230 1.7600 -63 430 -3.3138 0.2965 1.7600 -63 431 -3.2620 0.2678 1.7600 -63 432 -3.2151 0.2427 1.7600 -63 433 -3.1672 0.2285 1.7600 -63 434 -3.1204 0.2239 1.7600 -63 435 -3.0737 0.2271 1.7600 -63 436 -3.0253 0.2330 1.7600 -63 437 -2.9729 0.2442 1.7600 -63 438 -2.9200 0.2623 1.7600 -63 439 -2.8677 0.2860 1.7600 -63 440 -2.8147 0.3148 1.7600 -63 441 -2.7622 0.3422 1.7600 -63 442 -2.7145 0.3609 1.7600 -63 443 -2.6664 0.3738 1.7600 -63 444 -2.6168 0.3816 1.7600 -63 445 -2.5705 0.3850 1.7600 -63 446 -2.5233 0.3844 1.7600 -63 447 -2.4767 0.3805 1.7600 -63 448 -2.4264 0.3676 1.7600 -63 449 -2.3728 0.3500 1.7600 -63 450 -2.3154 0.3340 1.7600 -63 451 -2.2547 0.3145 1.7600 -63 452 -2.1920 0.2923 1.7600 -63 453 -2.1311 0.2715 1.7600 -63 454 -2.0739 0.2573 1.7600 -63 455 -2.0210 0.2548 1.7600 -63 456 -1.9699 0.2580 1.7600 -63 457 -1.9246 0.2660 1.7600 -63 458 -1.8815 0.2809 1.7600 -63 459 -1.8462 0.3003 1.7600 -63 460 -1.8071 0.3204 1.7600 -63 461 -1.7670 0.3392 1.7600 -63 462 -1.7298 0.3481 1.7600 -63 463 -1.6943 0.3451 1.7600 -63 464 -1.6518 0.3356 1.7600 -63 465 -1.6037 0.3247 1.7600 -63 466 -1.5499 0.3124 1.7600 -63 467 -1.4902 0.2949 1.7600 -63 468 -1.4260 0.2721 1.7600 -63 469 -1.3566 0.2458 1.7600 -63 470 -1.2884 0.2192 1.7600 -63 471 -1.2214 0.2036 1.7600 -63 472 -1.1575 0.1970 1.7600 -63 473 -1.0948 0.2015 1.7600 -63 474 -1.0294 0.2128 1.7600 -63 475 -0.9587 0.2288 1.7600 -63 476 -0.8809 0.2470 1.7600 -63 477 -0.7980 0.2685 1.7600 -63 478 -0.7167 0.2883 1.7600 -63 479 -0.6393 0.3055 1.7600 -63 480 -0.5660 0.3133 1.7600 -63 481 -0.4946 0.3073 1.7600 -63 482 -0.4245 0.2928 1.7600 -63 483 -0.3506 0.2784 1.7600 -63 484 -0.2752 0.2608 1.7600 -63 485 -0.1971 0.2411 1.7600 -63 486 -0.1204 0.2202 1.7600 -63 487 -0.0474 0.1999 1.7600 -63 488 0.0194 0.1817 1.7600 -63 489 0.0861 0.1777 1.7600 -63 490 0.1554 0.1857 1.7600 -63 491 0.2282 0.2021 1.7600 -63 492 0.3039 0.2234 1.7600 -63 493 0.3838 0.2478 1.7600 -63 494 0.4641 0.2749 1.7600 -63 495 0.5441 0.3011 1.7600 -63 496 0.6210 0.3259 1.7600 -63 497 0.6942 0.3415 1.7600 -63 498 0.7668 0.3460 1.7600 -63 499 0.8354 0.3430 1.7600 -63 500 0.9041 0.3365 1.7600 -63 501 0.9746 0.3289 1.7600 -63 502 1.0446 0.3205 1.7600 -63 503 1.1125 0.3114 1.7600 -63 504 1.1777 0.2982 1.7600 -63 505 1.2402 0.2909 1.7600 -63 506 1.2992 0.2929 1.7600 -63 507 1.3578 0.3049 1.7600 -63 508 1.4158 0.3233 1.7600 -63 509 1.4754 0.3471 1.7600 -63 510 1.5353 0.3732 1.7600 -63 511 1.5881 0.3984 1.7600 -63 512 1.6382 0.4194 1.7600 -63 513 1.6846 0.4330 1.7600 -63 514 1.7320 0.4339 1.7600 -63 515 1.7781 0.4245 1.7600 -63 516 1.8294 0.4105 1.7600 -63 517 1.8758 0.3902 1.7600 -63 518 1.9262 0.3646 1.7600 -63 519 1.9696 0.3373 1.7600 -63 520 2.0130 0.3131 1.7600 -63 521 2.0559 0.2966 1.7600 -63 522 2.1010 0.2881 1.7600 -63 523 2.1477 0.2898 1.7600 -63 524 2.1957 0.2993 1.7600 -63 525 2.2459 0.3149 1.7600 -63 526 2.2983 0.3350 1.7600 -63 527 2.3497 0.3628 1.7600 -63 528 2.4050 0.3911 1.7600 -63 529 2.4599 0.4093 1.7600 -63 530 2.5120 0.4194 1.7600 -63 531 2.5686 0.4168 1.7600 -63 532 2.6240 0.4081 1.7600 -63 533 2.6825 0.3954 1.7600 -63 534 2.7417 0.3801 1.7600 -63 535 2.8029 0.3602 1.7600 -63 536 2.8675 0.3383 1.7600 -63 537 2.9322 0.3183 1.7600 -63 538 2.9976 0.3029 1.7600 -63 539 3.0605 0.2995 1.7600 -63 540 3.1250 0.3066 1.7600 -63 541 3.1855 0.3198 1.7600 -63 542 3.2466 0.3382 1.7600 -63 543 3.3075 0.3610 1.7600 -63 544 3.3672 0.3856 1.7600 -63 545 3.4314 0.4119 1.7600 -63 546 3.5000 0.4356 1.7600 -63 547 3.5705 0.4580 1.7600 -63 548 3.6359 0.4718 1.7600 -63 549 3.7000 0.4750 1.7600 -63 550 3.7637 0.4747 1.7600 -63 551 3.8274 0.4698 1.7600 -63 552 3.8912 0.4639 1.7600 -63 553 3.9573 0.4545 1.7600 -63 554 4.0243 0.4390 1.7600 -63 555 4.0982 0.4235 1.7600 -63 556 4.1686 0.4101 1.7600 -63 557 4.2379 0.4026 1.7600 -63 558 4.3045 0.4066 1.7600 -63 559 4.3683 0.4139 1.7600 -63 560 4.4281 0.4209 1.7600 -63 561 4.4903 0.4346 1.7600 -63 562 4.5536 0.4476 1.7600 -63 563 4.6197 0.4621 1.7600 -63 564 4.6946 0.4744 1.7600 -63 565 4.7729 0.4848 1.7600 -63 566 4.8464 0.4856 1.7600 -63 567 4.9168 0.4790 1.7600 -63 568 4.9858 0.4664 1.7600 -63 569 5.0521 0.4514 1.7600 -63 570 5.1168 0.4344 1.7600 -63 571 5.1795 0.4157 1.7600 -63 572 5.2481 0.3974 1.7600 -63 573 5.3167 0.3790 1.7600 -63 574 5.3838 0.3611 1.7600 -63 575 5.4492 0.3501 1.7600 -63 576 5.5150 0.3484 1.7600 -63 577 5.5786 0.3496 1.7600 -63 578 5.6411 0.3512 1.7600 -63 579 5.7051 0.3576 1.7600 -63 580 5.7722 0.3665 1.7600 -63 581 5.8448 0.3777 1.7600 -63 582 5.9227 0.3894 1.7600 -64 368 -7.8113 1.4146 1.7600 -64 369 -7.7536 1.3974 1.7600 -64 370 -7.6943 1.3800 1.7600 -64 371 -7.6304 1.3632 1.7600 -64 372 -7.5635 1.3466 1.7600 -64 373 -7.4967 1.3309 1.7600 -64 374 -7.4349 1.3176 1.7600 -64 375 -7.3797 1.3020 1.7600 -64 376 -7.3227 1.2890 1.7600 -64 377 -7.2654 1.2762 1.7600 -64 378 -7.2096 1.2688 1.7600 -64 379 -7.1510 1.2588 1.7600 -64 380 -7.0936 1.2493 1.7600 -64 381 -7.0354 1.2399 1.7600 -64 382 -6.9785 1.2279 1.7600 -64 383 -6.9230 1.2147 1.7600 -64 384 -6.8749 1.2016 1.7600 -64 385 -6.8295 1.1890 1.7600 -64 386 -6.7728 1.1726 1.7600 -64 387 -6.7194 1.1554 1.7600 -64 388 -6.6670 1.1365 1.7600 -64 389 -6.6085 1.1169 1.7600 -64 390 -6.5432 1.0964 1.7600 -64 391 -6.4778 1.0759 1.7600 -64 392 -6.4183 1.0569 1.7600 -64 393 -6.3625 1.0389 1.7600 -64 394 -6.3070 1.0194 1.7600 -64 395 -6.2406 0.9998 1.7600 -64 396 -6.1724 0.9848 1.7600 -64 397 -6.1086 0.9733 1.7600 -64 398 -6.0463 0.9649 1.7600 -64 399 -5.9865 0.9562 1.7600 -64 400 -5.9231 0.9487 1.7600 -64 401 -5.8571 0.9381 1.7600 -64 402 -5.7969 0.9259 1.7600 -64 403 -5.7453 0.9145 1.7600 -64 404 -5.6896 0.9026 1.7600 -64 405 -5.6282 0.8892 1.7600 -64 406 -5.5701 0.8752 1.7600 -64 407 -5.5164 0.8608 1.7600 -64 408 -5.4639 0.8484 1.7600 -64 409 -5.4075 0.8395 1.7600 -64 410 -5.3474 0.8323 1.7600 -64 411 -5.2879 0.8261 1.7600 -64 412 -5.2303 0.8185 1.7600 -64 413 -5.1763 0.8121 1.7600 -64 414 -5.1214 0.8033 1.7600 -64 415 -5.0579 0.7933 1.7600 -64 416 -4.9908 0.7824 1.7600 -64 417 -4.9335 0.7782 1.7600 -64 418 -4.8813 0.7770 1.7600 -64 419 -4.8318 0.7737 1.7600 -64 420 -4.7824 0.7717 1.7600 -64 421 -4.7327 0.7712 1.7600 -64 422 -4.6787 0.7719 1.7600 -64 423 -4.6336 0.7722 1.7600 -64 424 -4.5984 0.7726 1.7600 -64 425 -4.5605 0.7707 1.7600 -64 426 -4.5066 0.7671 1.7600 -64 427 -4.4544 0.7614 1.7600 -64 428 -4.4101 0.7525 1.7600 -64 429 -4.3715 0.7430 1.7600 -64 430 -4.3317 0.7356 1.7600 -64 431 -4.2860 0.7259 1.7600 -64 432 -4.2340 0.7208 1.7600 -64 433 -4.1781 0.7150 1.7600 -64 434 -4.1245 0.7083 1.7600 -64 435 -4.0726 0.7027 1.7600 -64 436 -4.0230 0.6972 1.7600 -64 437 -3.9643 0.6928 1.7600 -64 438 -3.8999 0.6939 1.7600 -64 439 -3.8346 0.6961 1.7600 -64 440 -3.7789 0.7028 1.7600 -64 441 -3.7293 0.7093 1.7600 -64 442 -3.6839 0.7164 1.7600 -64 443 -3.6366 0.7216 1.7600 -64 444 -3.5858 0.7257 1.7600 -64 445 -3.5316 0.7301 1.7600 -64 446 -3.4764 0.7355 1.7600 -64 447 -3.4176 0.7388 1.7600 -64 448 -3.3648 0.7384 1.7600 -64 449 -3.3176 0.7359 1.7600 -64 450 -3.2732 0.7321 1.7600 -64 451 -3.2315 0.7251 1.7600 -64 452 -3.1916 0.7111 1.7600 -64 453 -3.1514 0.6934 1.7600 -64 454 -3.1081 0.6770 1.7600 -64 455 -3.0607 0.6649 1.7600 -64 456 -3.0108 0.6566 1.7600 -64 457 -2.9585 0.6508 1.7600 -64 458 -2.9046 0.6459 1.7600 -64 459 -2.8474 0.6392 1.7600 -64 460 -2.7934 0.6341 1.7600 -64 461 -2.7426 0.6300 1.7600 -64 462 -2.6913 0.6294 1.7600 -64 463 -2.6391 0.6366 1.7600 -64 464 -2.5884 0.6487 1.7600 -64 465 -2.5381 0.6624 1.7600 -64 466 -2.4865 0.6757 1.7600 -64 467 -2.4330 0.6887 1.7600 -64 468 -2.3776 0.7027 1.7600 -64 469 -2.3203 0.7179 1.7600 -64 470 -2.2596 0.7318 1.7600 -64 471 -2.2015 0.7436 1.7600 -64 472 -2.1474 0.7492 1.7600 -64 473 -2.0952 0.7492 1.7600 -64 474 -2.0425 0.7434 1.7600 -64 475 -1.9876 0.7340 1.7600 -64 476 -1.9318 0.7257 1.7600 -64 477 -1.8733 0.7196 1.7600 -64 478 -1.8120 0.7151 1.7600 -64 479 -1.7452 0.7126 1.7600 -64 480 -1.6731 0.7130 1.7600 -64 481 -1.6076 0.7146 1.7600 -64 482 -1.5421 0.7217 1.7600 -64 483 -1.4732 0.7348 1.7600 -64 484 -1.4068 0.7526 1.7600 -64 485 -1.3421 0.7723 1.7600 -64 486 -1.2768 0.7935 1.7600 -64 487 -1.2074 0.8134 1.7600 -64 488 -1.1338 0.8275 1.7600 -64 489 -1.0560 0.8414 1.7600 -64 490 -0.9869 0.8546 1.7600 -64 491 -0.9240 0.8649 1.7600 -64 492 -0.8620 0.8693 1.7600 -64 493 -0.8001 0.8679 1.7600 -64 494 -0.7374 0.8629 1.7600 -64 495 -0.6709 0.8577 1.7600 -64 496 -0.6021 0.8537 1.7600 -64 497 -0.5325 0.8508 1.7600 -64 498 -0.4599 0.8479 1.7600 -64 499 -0.3944 0.8426 1.7600 -64 500 -0.3296 0.8323 1.7600 -64 501 -0.2621 0.8289 1.7600 -64 502 -0.1984 0.8304 1.7600 -64 503 -0.1385 0.8351 1.7600 -64 504 -0.0802 0.8380 1.7600 -64 505 -0.0179 0.8391 1.7600 -64 506 0.0468 0.8382 1.7600 -64 507 0.1172 0.8353 1.7600 -64 508 0.1811 0.8304 1.7600 -64 509 0.2386 0.8226 1.7600 -64 510 0.2984 0.8110 1.7600 -64 511 0.3630 0.8022 1.7600 -64 512 0.4166 0.7894 1.7600 -64 513 0.4687 0.7767 1.7600 -64 514 0.5269 0.7669 1.7600 -64 515 0.5903 0.7554 1.7600 -64 516 0.6558 0.7452 1.7600 -64 517 0.7148 0.7344 1.7600 -64 518 0.7664 0.7193 1.7600 -64 519 0.8185 0.7080 1.7600 -64 520 0.8740 0.7041 1.7600 -64 521 0.9274 0.7049 1.7600 -64 522 0.9823 0.7092 1.7600 -64 523 1.0343 0.7150 1.7600 -64 524 1.0859 0.7207 1.7600 -64 525 1.1408 0.7263 1.7600 -64 526 1.2031 0.7296 1.7600 -64 527 1.2578 0.7337 1.7600 -64 528 1.3053 0.7371 1.7600 -64 529 1.3595 0.7401 1.7600 -64 530 1.4166 0.7428 1.7600 -64 531 1.4688 0.7453 1.7600 -64 532 1.5172 0.7440 1.7600 -64 533 1.5712 0.7440 1.7600 -64 534 1.6262 0.7443 1.7600 -64 535 1.6830 0.7432 1.7600 -64 536 1.7440 0.7426 1.7600 -64 537 1.8013 0.7387 1.7600 -64 538 1.8514 0.7337 1.7600 -64 539 1.9069 0.7343 1.7600 -64 540 1.9654 0.7401 1.7600 -64 541 2.0203 0.7507 1.7600 -64 542 2.0727 0.7628 1.7600 -64 543 2.1261 0.7759 1.7600 -64 544 2.1812 0.7903 1.7600 -64 545 2.2386 0.8057 1.7600 -64 546 2.3028 0.8226 1.7600 -64 547 2.3679 0.8354 1.7600 -64 548 2.4237 0.8415 1.7600 -64 549 2.4845 0.8417 1.7600 -64 550 2.5511 0.8371 1.7600 -64 551 2.6127 0.8303 1.7600 -64 552 2.6723 0.8244 1.7600 -64 553 2.7336 0.8172 1.7600 -64 554 2.7960 0.8135 1.7600 -64 555 2.8615 0.8124 1.7600 -64 556 2.9346 0.8139 1.7600 -64 557 2.9996 0.8114 1.7600 -64 558 3.0691 0.8165 1.7600 -64 559 3.1368 0.8243 1.7600 -64 560 3.2042 0.8368 1.7600 -64 561 3.2698 0.8472 1.7600 -64 562 3.3360 0.8572 1.7600 -64 563 3.4035 0.8661 1.7600 -64 564 3.4762 0.8738 1.7600 -64 565 3.5492 0.8802 1.7600 -64 566 3.6160 0.8833 1.7600 -64 567 3.6875 0.8796 1.7600 -64 568 3.7588 0.8734 1.7600 -64 569 3.8292 0.8637 1.7600 -64 570 3.8942 0.8573 1.7600 -64 571 3.9608 0.8524 1.7600 -64 572 4.0289 0.8487 1.7600 -64 573 4.1047 0.8488 1.7600 -64 574 4.1817 0.8501 1.7600 -64 575 4.2550 0.8528 1.7600 -64 576 4.3289 0.8597 1.7600 -64 577 4.3999 0.8684 1.7600 -64 578 4.4678 0.8772 1.7600 -64 579 4.5356 0.8862 1.7600 -64 580 4.6051 0.8940 1.7600 -64 581 4.6804 0.9002 1.7600 -64 582 4.7617 0.9041 1.7600 -64 583 4.8384 0.9046 1.7600 -64 584 4.9131 0.8993 1.7600 -64 585 4.9870 0.8918 1.7600 -64 586 5.0572 0.8834 1.7600 -64 587 5.1248 0.8753 1.7600 -64 588 5.1930 0.8681 1.7600 -64 589 5.2609 0.8616 1.7600 -64 590 5.3309 0.8567 1.7600 -64 591 5.4097 0.8543 1.7600 -64 592 5.4888 0.8512 1.7600 -64 593 5.5678 0.8494 1.7600 -64 594 5.6438 0.8526 1.7600 -64 595 5.7168 0.8603 1.7600 -64 596 5.7896 0.8689 1.7600 -64 597 5.8619 0.8751 1.7600 -64 598 5.9336 0.8793 1.7600 -65 362 -7.7937 1.7088 1.7600 -65 363 -7.7249 1.6984 1.7600 -65 364 -7.6573 1.6884 1.7600 -65 365 -7.5931 1.6783 1.7600 -65 366 -7.5346 1.6683 1.7600 -65 367 -7.4755 1.6567 1.7600 -65 368 -7.4165 1.6433 1.7600 -65 369 -7.3566 1.6310 1.7600 -65 370 -7.2927 1.6207 1.7600 -65 371 -7.2252 1.6091 1.7600 -65 372 -7.1558 1.5940 1.7600 -65 373 -7.0867 1.5759 1.7600 -65 374 -7.0186 1.5580 1.7600 -65 375 -6.9545 1.5409 1.7600 -65 376 -6.8931 1.5233 1.7600 -65 377 -6.8290 1.5114 1.7600 -65 378 -6.7622 1.4946 1.7600 -65 379 -6.6944 1.4738 1.7600 -65 380 -6.6211 1.4477 1.7600 -65 381 -6.5446 1.4218 1.7600 -65 382 -6.4697 1.3999 1.7600 -65 383 -6.3994 1.3800 1.7600 -65 384 -6.3328 1.3596 1.7600 -65 385 -6.2718 1.3401 1.7600 -65 386 -6.2121 1.3216 1.7600 -65 387 -6.1537 1.3047 1.7600 -65 388 -6.0943 1.2913 1.7600 -65 389 -6.0375 1.2780 1.7600 -65 390 -5.9740 1.2630 1.7600 -65 391 -5.9100 1.2471 1.7600 -65 392 -5.8469 1.2316 1.7600 -65 393 -5.7824 1.2154 1.7600 -65 394 -5.7231 1.2021 1.7600 -65 395 -5.6652 1.1893 1.7600 -65 396 -5.6113 1.1771 1.7600 -65 397 -5.5548 1.1618 1.7600 -65 398 -5.5010 1.1459 1.7600 -65 399 -5.4493 1.1285 1.7600 -65 400 -5.4006 1.1113 1.7600 -65 401 -5.3541 1.0946 1.7600 -65 402 -5.3087 1.0803 1.7600 -65 403 -5.2627 1.0659 1.7600 -65 404 -5.2193 1.0486 1.7600 -65 405 -5.1776 1.0316 1.7600 -65 406 -5.1317 1.0168 1.7600 -65 407 -5.0816 1.0029 1.7600 -65 408 -5.0307 0.9945 1.7600 -65 409 -4.9765 0.9868 1.7600 -65 410 -4.9223 0.9796 1.7600 -65 411 -4.8683 0.9739 1.7600 -65 412 -4.8173 0.9697 1.7600 -65 413 -4.7679 0.9683 1.7600 -65 414 -4.7201 0.9690 1.7600 -65 415 -4.6768 0.9694 1.7600 -65 416 -4.6356 0.9705 1.7600 -65 417 -4.5935 0.9715 1.7600 -65 418 -4.5486 0.9742 1.7600 -65 419 -4.5064 0.9760 1.7600 -65 420 -4.4644 0.9769 1.7600 -65 421 -4.4225 0.9761 1.7600 -65 422 -4.3781 0.9771 1.7600 -65 423 -4.3353 0.9755 1.7600 -65 424 -4.2886 0.9735 1.7600 -65 425 -4.2415 0.9732 1.7600 -65 426 -4.1903 0.9716 1.7600 -65 427 -4.1359 0.9685 1.7600 -65 428 -4.0815 0.9679 1.7600 -65 429 -4.0269 0.9643 1.7600 -65 430 -3.9736 0.9626 1.7600 -65 431 -3.9209 0.9614 1.7600 -65 432 -3.8687 0.9576 1.7600 -65 433 -3.8152 0.9539 1.7600 -65 434 -3.7557 0.9476 1.7600 -65 435 -3.6963 0.9415 1.7600 -65 436 -3.6337 0.9391 1.7600 -65 437 -3.5699 0.9402 1.7600 -65 438 -3.5064 0.9395 1.7600 -65 439 -3.4435 0.9349 1.7600 -65 440 -3.3843 0.9282 1.7600 -65 441 -3.3233 0.9219 1.7600 -65 442 -3.2607 0.9110 1.7600 -65 443 -3.2065 0.9051 1.7600 -65 444 -3.1478 0.8994 1.7600 -65 445 -3.0891 0.8907 1.7600 -65 446 -3.0284 0.8828 1.7600 -65 447 -2.9663 0.8739 1.7600 -65 448 -2.9058 0.8636 1.7600 -65 449 -2.8460 0.8564 1.7600 -65 450 -2.7875 0.8547 1.7600 -65 451 -2.7313 0.8533 1.7600 -65 452 -2.6766 0.8491 1.7600 -65 453 -2.6129 0.8424 1.7600 -65 454 -2.5533 0.8373 1.7600 -65 455 -2.4890 0.8335 1.7600 -65 456 -2.4233 0.8333 1.7600 -65 457 -2.3499 0.8325 1.7600 -65 458 -2.2754 0.8318 1.7600 -65 459 -2.1990 0.8288 1.7600 -65 460 -2.1266 0.8243 1.7600 -65 461 -2.0572 0.8099 1.7600 -65 462 -1.9915 0.8054 1.7600 -65 463 -1.9244 0.8050 1.7600 -65 464 -1.8571 0.8047 1.7600 -65 465 -1.7824 0.8018 1.7600 -65 466 -1.7093 0.7979 1.7600 -65 467 -1.6404 0.7970 1.7600 -65 468 -1.5691 0.7997 1.7600 -65 469 -1.5014 0.8047 1.7600 -65 470 -1.4376 0.8107 1.7600 -65 471 -1.3748 0.8174 1.7600 -65 472 -1.3116 0.8253 1.7600 -65 473 -1.2465 0.8340 1.7600 -65 474 -1.1776 0.8439 1.7600 -65 475 -1.1097 0.8556 1.7600 -65 476 -1.0414 0.8658 1.7600 -65 477 -0.9718 0.8746 1.7600 -65 478 -0.9059 0.8806 1.7600 -65 479 -0.8415 0.8852 1.7600 -65 480 -0.7775 0.8870 1.7600 -65 481 -0.7090 0.8877 1.7600 -65 482 -0.6392 0.8861 1.7600 -65 483 -0.5662 0.8867 1.7600 -65 484 -0.4976 0.8850 1.7600 -65 485 -0.4293 0.8823 1.7600 -65 486 -0.3605 0.8800 1.7600 -65 487 -0.2928 0.8808 1.7600 -65 488 -0.2250 0.8843 1.7600 -65 489 -0.1559 0.8873 1.7600 -65 490 -0.0839 0.8910 1.7600 -65 491 -0.0137 0.8917 1.7600 -65 492 0.0580 0.8929 1.7600 -65 493 0.1257 0.8938 1.7600 -65 494 0.1876 0.8991 1.7600 -65 495 0.2527 0.9004 1.7600 -65 496 0.3159 0.8965 1.7600 -65 497 0.3793 0.8895 1.7600 -65 498 0.4408 0.8828 1.7600 -65 499 0.5027 0.8768 1.7600 -65 500 0.5627 0.8707 1.7600 -65 501 0.6211 0.8639 1.7600 -65 502 0.6756 0.8571 1.7600 -65 503 0.7284 0.8493 1.7600 -65 504 0.7821 0.8396 1.7600 -65 505 0.8336 0.8315 1.7600 -65 506 0.8879 0.8261 1.7600 -65 507 0.9414 0.8231 1.7600 -65 508 0.9957 0.8203 1.7600 -65 509 1.0485 0.8176 1.7600 -65 510 1.1060 0.8153 1.7600 -65 511 1.1615 0.8155 1.7600 -65 512 1.2162 0.8172 1.7600 -65 513 1.2725 0.8197 1.7600 -65 514 1.3255 0.8216 1.7600 -65 515 1.3804 0.8219 1.7600 -65 516 1.4320 0.8212 1.7600 -65 517 1.4849 0.8207 1.7600 -65 518 1.5360 0.8218 1.7600 -65 519 1.5874 0.8225 1.7600 -65 520 1.6394 0.8230 1.7600 -65 521 1.6914 0.8243 1.7600 -65 522 1.7462 0.8257 1.7600 -65 523 1.8002 0.8266 1.7600 -65 524 1.8566 0.8278 1.7600 -65 525 1.9142 0.8321 1.7600 -65 526 1.9744 0.8390 1.7600 -65 527 2.0345 0.8480 1.7600 -65 528 2.0980 0.8580 1.7600 -65 529 2.1598 0.8703 1.7600 -65 530 2.2212 0.8808 1.7600 -65 531 2.2862 0.8947 1.7600 -65 532 2.3517 0.9084 1.7600 -65 533 2.4142 0.9233 1.7600 -65 534 2.4767 0.9353 1.7600 -65 535 2.5417 0.9459 1.7600 -65 536 2.6059 0.9513 1.7600 -65 537 2.6685 0.9528 1.7600 -65 538 2.7317 0.9553 1.7600 -65 539 2.7979 0.9587 1.7600 -65 540 2.8633 0.9601 1.7600 -65 541 2.9321 0.9619 1.7600 -65 542 2.9986 0.9620 1.7600 -65 543 3.0660 0.9604 1.7600 -65 544 3.1318 0.9595 1.7600 -65 545 3.1945 0.9612 1.7600 -65 546 3.2548 0.9669 1.7600 -65 547 3.3155 0.9718 1.7600 -65 548 3.3764 0.9781 1.7600 -65 549 3.4401 0.9860 1.7600 -65 550 3.5103 0.9947 1.7600 -65 551 3.5868 1.0063 1.7600 -65 552 3.6620 1.0170 1.7600 -65 553 3.7398 1.0248 1.7600 -65 554 3.8090 1.0305 1.7600 -65 555 3.8767 1.0324 1.7600 -65 556 3.9383 1.0380 1.7600 -65 557 4.0030 1.0432 1.7600 -65 558 4.0707 1.0529 1.7600 -65 559 4.1428 1.0618 1.7600 -65 560 4.2145 1.0691 1.7600 -65 561 4.2897 1.0756 1.7600 -65 562 4.3637 1.0894 1.7600 -65 563 4.4362 1.1055 1.7600 -65 564 4.5004 1.1222 1.7600 -65 565 4.5631 1.1354 1.7600 -65 566 4.6279 1.1488 1.7600 -65 567 4.7070 1.1653 1.7600 -65 568 4.7897 1.1861 1.7600 -65 569 4.8761 1.2058 1.7600 -65 570 4.9623 1.2212 1.7600 -65 571 5.0444 1.2296 1.7600 -65 572 5.1191 1.2327 1.7600 -65 573 5.1829 1.2329 1.7600 -65 574 5.2435 1.2343 1.7600 -65 575 5.3099 1.2404 1.7600 -65 576 5.3853 1.2477 1.7600 -65 577 5.4602 1.2538 1.7600 -65 578 5.5351 1.2591 1.7600 -65 579 5.6094 1.2667 1.7600 -65 580 5.6776 1.2770 1.7600 -65 581 5.7401 1.2875 1.7600 -65 582 5.7985 1.2973 1.7600 -65 583 5.8619 1.3066 1.7600 -65 584 5.9325 1.3170 1.7600 -66 367 -7.7927 0.8829 1.7600 -66 368 -7.7349 0.8589 1.7600 -66 369 -7.6737 0.8407 1.7600 -66 370 -7.6077 0.8259 1.7600 -66 371 -7.5382 0.8116 1.7600 -66 372 -7.4632 0.7983 1.7600 -66 373 -7.3857 0.7860 1.7600 -66 374 -7.3109 0.7767 1.7600 -66 375 -7.2424 0.7713 1.7600 -66 376 -7.1778 0.7668 1.7600 -66 377 -7.1121 0.7579 1.7600 -66 378 -7.0462 0.7450 1.7600 -66 379 -6.9792 0.7239 1.7600 -66 380 -6.9100 0.7029 1.7600 -66 381 -6.8390 0.6805 1.7600 -66 382 -6.7653 0.6583 1.7600 -66 383 -6.6919 0.6352 1.7600 -66 384 -6.6214 0.6117 1.7600 -66 385 -6.5595 0.5864 1.7600 -66 386 -6.4996 0.5645 1.7600 -66 387 -6.4412 0.5495 1.7600 -66 388 -6.3786 0.5408 1.7600 -66 389 -6.3126 0.5352 1.7600 -66 390 -6.2477 0.5296 1.7600 -66 391 -6.1822 0.5251 1.7600 -66 392 -6.1195 0.5257 1.7600 -66 393 -6.0588 0.5318 1.7600 -66 394 -5.9970 0.5403 1.7600 -66 395 -5.9391 0.5416 1.7600 -66 396 -5.8886 0.5391 1.7600 -66 397 -5.8361 0.5297 1.7600 -66 398 -5.7875 0.5151 1.7600 -66 399 -5.7375 0.4986 1.7600 -66 400 -5.6853 0.4820 1.7600 -66 401 -5.6313 0.4640 1.7600 -66 402 -5.5822 0.4420 1.7600 -66 403 -5.5329 0.4191 1.7600 -66 404 -5.4883 0.3947 1.7600 -66 405 -5.4427 0.3738 1.7600 -66 406 -5.3958 0.3549 1.7600 -66 407 -5.3445 0.3430 1.7600 -66 408 -5.2946 0.3317 1.7600 -66 409 -5.2442 0.3222 1.7600 -66 410 -5.1921 0.3173 1.7600 -66 411 -5.1414 0.3148 1.7600 -66 412 -5.0880 0.3156 1.7600 -66 413 -5.0372 0.3206 1.7600 -66 414 -4.9871 0.3268 1.7600 -66 415 -4.9368 0.3342 1.7600 -66 416 -4.8875 0.3426 1.7600 -66 417 -4.8381 0.3455 1.7600 -66 418 -4.7901 0.3465 1.7600 -66 419 -4.7385 0.3457 1.7600 -66 420 -4.6848 0.3405 1.7600 -66 421 -4.6312 0.3356 1.7600 -66 422 -4.5773 0.3258 1.7600 -66 423 -4.5178 0.3151 1.7600 -66 424 -4.4635 0.3024 1.7600 -66 425 -4.4112 0.2877 1.7600 -66 426 -4.3590 0.2806 1.7600 -66 427 -4.3087 0.2790 1.7600 -66 428 -4.2580 0.2824 1.7600 -66 429 -4.2083 0.2886 1.7600 -66 430 -4.1576 0.2969 1.7600 -66 431 -4.1077 0.3057 1.7600 -66 432 -4.0536 0.3172 1.7600 -66 433 -4.0018 0.3325 1.7600 -66 434 -3.9492 0.3490 1.7600 -66 435 -3.8987 0.3645 1.7600 -66 436 -3.8478 0.3771 1.7600 -66 437 -3.7983 0.3858 1.7600 -66 438 -3.7477 0.3886 1.7600 -66 439 -3.6991 0.3897 1.7600 -66 440 -3.6519 0.3877 1.7600 -66 441 -3.6038 0.3838 1.7600 -66 442 -3.5578 0.3771 1.7600 -66 443 -3.5095 0.3683 1.7600 -66 444 -3.4617 0.3569 1.7600 -66 445 -3.4133 0.3408 1.7600 -66 446 -3.3614 0.3239 1.7600 -66 447 -3.3109 0.3121 1.7600 -66 448 -3.2607 0.3033 1.7600 -66 449 -3.2115 0.2992 1.7600 -66 450 -3.1608 0.2994 1.7600 -66 451 -3.1090 0.3017 1.7600 -66 452 -3.0594 0.3109 1.7600 -66 453 -3.0073 0.3211 1.7600 -66 454 -2.9523 0.3330 1.7600 -66 455 -2.8940 0.3470 1.7600 -66 456 -2.8371 0.3648 1.7600 -66 457 -2.7768 0.3826 1.7600 -66 458 -2.7192 0.3978 1.7600 -66 459 -2.6645 0.4042 1.7600 -66 460 -2.6095 0.4074 1.7600 -66 461 -2.5553 0.4039 1.7600 -66 462 -2.5029 0.3973 1.7600 -66 463 -2.4493 0.3905 1.7600 -66 464 -2.3975 0.3817 1.7600 -66 465 -2.3447 0.3685 1.7600 -66 466 -2.2951 0.3548 1.7600 -66 467 -2.2413 0.3410 1.7600 -66 468 -2.1846 0.3218 1.7600 -66 469 -2.1330 0.3093 1.7600 -66 470 -2.0774 0.3036 1.7600 -66 471 -2.0218 0.3022 1.7600 -66 472 -1.9689 0.3026 1.7600 -66 473 -1.9168 0.3065 1.7600 -66 474 -1.8618 0.3126 1.7600 -66 475 -1.8073 0.3209 1.7600 -66 476 -1.7485 0.3322 1.7600 -66 477 -1.6850 0.3456 1.7600 -66 478 -1.6206 0.3598 1.7600 -66 479 -1.5591 0.3722 1.7600 -66 480 -1.4994 0.3763 1.7600 -66 481 -1.4385 0.3772 1.7600 -66 482 -1.3754 0.3757 1.7600 -66 483 -1.3115 0.3725 1.7600 -66 484 -1.2476 0.3672 1.7600 -66 485 -1.1792 0.3563 1.7600 -66 486 -1.1128 0.3452 1.7600 -66 487 -1.0418 0.3272 1.7600 -66 488 -0.9725 0.3103 1.7600 -66 489 -0.9050 0.2991 1.7600 -66 490 -0.8367 0.2958 1.7600 -66 491 -0.7694 0.2959 1.7600 -66 492 -0.6999 0.2991 1.7600 -66 493 -0.6292 0.3040 1.7600 -66 494 -0.5571 0.3115 1.7600 -66 495 -0.4871 0.3212 1.7600 -66 496 -0.4158 0.3335 1.7600 -66 497 -0.3461 0.3436 1.7600 -66 498 -0.2776 0.3505 1.7600 -66 499 -0.2065 0.3488 1.7600 -66 500 -0.1362 0.3453 1.7600 -66 501 -0.0654 0.3409 1.7600 -66 502 0.0066 0.3366 1.7600 -66 503 0.0805 0.3334 1.7600 -66 504 0.1531 0.3284 1.7600 -66 505 0.2234 0.3217 1.7600 -66 506 0.2895 0.3143 1.7600 -66 507 0.3552 0.3068 1.7600 -66 508 0.4186 0.3050 1.7600 -66 509 0.4821 0.3105 1.7600 -66 510 0.5445 0.3181 1.7600 -66 511 0.6104 0.3307 1.7600 -66 512 0.6754 0.3433 1.7600 -66 513 0.7386 0.3561 1.7600 -66 514 0.8010 0.3708 1.7600 -66 515 0.8611 0.3847 1.7600 -66 516 0.9179 0.4023 1.7600 -66 517 0.9754 0.4151 1.7600 -66 518 1.0312 0.4209 1.7600 -66 519 1.0878 0.4229 1.7600 -66 520 1.1422 0.4220 1.7600 -66 521 1.1970 0.4222 1.7600 -66 522 1.2520 0.4195 1.7600 -66 523 1.3064 0.4161 1.7600 -66 524 1.3632 0.4080 1.7600 -66 525 1.4179 0.3972 1.7600 -66 526 1.4722 0.3881 1.7600 -66 527 1.5262 0.3814 1.7600 -66 528 1.5801 0.3819 1.7600 -66 529 1.6353 0.3856 1.7600 -66 530 1.6901 0.3916 1.7600 -66 531 1.7448 0.3976 1.7600 -66 532 1.7966 0.4093 1.7600 -66 533 1.8508 0.4200 1.7600 -66 534 1.9054 0.4326 1.7600 -66 535 1.9582 0.4436 1.7600 -66 536 2.0104 0.4548 1.7600 -66 537 2.0621 0.4640 1.7600 -66 538 2.1194 0.4680 1.7600 -66 539 2.1741 0.4682 1.7600 -66 540 2.2303 0.4633 1.7600 -66 541 2.2846 0.4560 1.7600 -66 542 2.3416 0.4485 1.7600 -66 543 2.3972 0.4368 1.7600 -66 544 2.4558 0.4225 1.7600 -66 545 2.5137 0.4084 1.7600 -66 546 2.5710 0.3973 1.7600 -66 547 2.6284 0.3919 1.7600 -66 548 2.6874 0.3900 1.7600 -66 549 2.7458 0.3917 1.7600 -66 550 2.8072 0.3963 1.7600 -66 551 2.8684 0.4031 1.7600 -66 552 2.9280 0.4093 1.7600 -66 553 2.9914 0.4197 1.7600 -66 554 3.0562 0.4317 1.7600 -66 555 3.1217 0.4419 1.7600 -66 556 3.1849 0.4505 1.7600 -66 557 3.2472 0.4518 1.7600 -66 558 3.3085 0.4491 1.7600 -66 559 3.3687 0.4431 1.7600 -66 560 3.4264 0.4336 1.7600 -66 561 3.4892 0.4229 1.7600 -66 562 3.5509 0.4080 1.7600 -66 563 3.6183 0.3883 1.7600 -66 564 3.6908 0.3677 1.7600 -66 565 3.7594 0.3482 1.7600 -66 566 3.8285 0.3398 1.7600 -66 567 3.8964 0.3380 1.7600 -66 568 3.9650 0.3403 1.7600 -66 569 4.0333 0.3452 1.7600 -66 570 4.0985 0.3503 1.7600 -66 571 4.1683 0.3564 1.7600 -66 572 4.2391 0.3651 1.7600 -66 573 4.3183 0.3725 1.7600 -66 574 4.3966 0.3805 1.7600 -66 575 4.4699 0.3830 1.7600 -66 576 4.5376 0.3781 1.7600 -66 577 4.6020 0.3703 1.7600 -66 578 4.6649 0.3618 1.7600 -66 579 4.7261 0.3494 1.7600 -66 580 4.7861 0.3360 1.7600 -66 581 4.8480 0.3178 1.7600 -66 582 4.9148 0.2966 1.7600 -66 583 4.9844 0.2756 1.7600 -66 584 5.0526 0.2562 1.7600 -66 585 5.1216 0.2422 1.7600 -66 586 5.1903 0.2336 1.7600 -66 587 5.2581 0.2269 1.7600 -66 588 5.3208 0.2204 1.7600 -66 589 5.3836 0.2178 1.7600 -66 590 5.4484 0.2141 1.7600 -66 591 5.5159 0.2143 1.7600 -66 592 5.5918 0.2149 1.7600 -66 593 5.6664 0.2156 1.7600 -66 594 5.7366 0.2111 1.7600 -66 595 5.8090 0.1987 1.7600 -66 596 5.8759 0.1859 1.7600 -66 597 5.9406 0.1716 1.7600 -67 352 -7.7883 1.3770 1.7600 -67 353 -7.7355 1.3599 1.7600 -67 354 -7.6784 1.3362 1.7600 -67 355 -7.6131 1.3067 1.7600 -67 356 -7.5371 1.2717 1.7600 -67 357 -7.4568 1.2292 1.7600 -67 358 -7.3825 1.1838 1.7600 -67 359 -7.3096 1.1520 1.7600 -67 360 -7.2555 1.1434 1.7600 -67 361 -7.1967 1.1382 1.7600 -67 362 -7.1283 1.1282 1.7600 -67 363 -7.0502 1.1176 1.7600 -67 364 -6.9665 1.1131 1.7600 -67 365 -6.8839 1.1176 1.7600 -67 366 -6.8097 1.1234 1.7600 -67 367 -6.7429 1.1199 1.7600 -67 368 -6.6824 1.1001 1.7600 -67 369 -6.6184 1.0724 1.7600 -67 370 -6.5475 1.0451 1.7600 -67 371 -6.4716 1.0162 1.7600 -67 372 -6.3942 0.9847 1.7600 -67 373 -6.3189 0.9482 1.7600 -67 374 -6.2500 0.9146 1.7600 -67 375 -6.1856 0.8960 1.7600 -67 376 -6.1226 0.8939 1.7600 -67 377 -6.0574 0.8956 1.7600 -67 378 -5.9902 0.8955 1.7600 -67 379 -5.9207 0.8947 1.7600 -67 380 -5.8493 0.8966 1.7600 -67 381 -5.7788 0.9030 1.7600 -67 382 -5.7147 0.9088 1.7600 -67 383 -5.6554 0.9112 1.7600 -67 384 -5.5971 0.9052 1.7600 -67 385 -5.5428 0.8890 1.7600 -67 386 -5.4873 0.8705 1.7600 -67 387 -5.4258 0.8501 1.7600 -67 388 -5.3610 0.8256 1.7600 -67 389 -5.2925 0.8043 1.7600 -67 390 -5.2216 0.7730 1.7600 -67 391 -5.1503 0.7412 1.7600 -67 392 -5.0796 0.7039 1.7600 -67 393 -5.0079 0.6675 1.7600 -67 394 -4.9512 0.6391 1.7600 -67 395 -4.9032 0.6237 1.7600 -67 396 -4.8662 0.6168 1.7600 -67 397 -4.8337 0.6152 1.7600 -67 398 -4.8000 0.6179 1.7600 -67 399 -4.7625 0.6259 1.7600 -67 400 -4.7172 0.6400 1.7600 -67 401 -4.6679 0.6576 1.7600 -67 402 -4.6156 0.6797 1.7600 -67 403 -4.5606 0.7050 1.7600 -67 404 -4.5012 0.7308 1.7600 -67 405 -4.4434 0.7553 1.7600 -67 406 -4.3868 0.7672 1.7600 -67 407 -4.3326 0.7670 1.7600 -67 408 -4.2804 0.7620 1.7600 -67 409 -4.2283 0.7538 1.7600 -67 410 -4.1747 0.7436 1.7600 -67 411 -4.1182 0.7308 1.7600 -67 412 -4.0589 0.7136 1.7600 -67 413 -3.9951 0.6931 1.7600 -67 414 -3.9300 0.6641 1.7600 -67 415 -3.8708 0.6416 1.7600 -67 416 -3.8173 0.6311 1.7600 -67 417 -3.7656 0.6302 1.7600 -67 418 -3.7113 0.6328 1.7600 -67 419 -3.6564 0.6389 1.7600 -67 420 -3.6006 0.6482 1.7600 -67 421 -3.5397 0.6606 1.7600 -67 422 -3.4731 0.6781 1.7600 -67 423 -3.3968 0.7021 1.7600 -67 424 -3.3140 0.7242 1.7600 -67 425 -3.2409 0.7373 1.7600 -67 426 -3.1780 0.7412 1.7600 -67 427 -3.1242 0.7415 1.7600 -67 428 -3.0718 0.7373 1.7600 -67 429 -3.0204 0.7360 1.7600 -67 430 -2.9713 0.7295 1.7600 -67 431 -2.9169 0.7139 1.7600 -67 432 -2.8621 0.6913 1.7600 -67 433 -2.8046 0.6646 1.7600 -67 434 -2.7488 0.6469 1.7600 -67 435 -2.6943 0.6423 1.7600 -67 436 -2.6389 0.6474 1.7600 -67 437 -2.5807 0.6596 1.7600 -67 438 -2.5248 0.6769 1.7600 -67 439 -2.4727 0.6957 1.7600 -67 440 -2.4206 0.7158 1.7600 -67 441 -2.3613 0.7402 1.7600 -67 442 -2.2943 0.7650 1.7600 -67 443 -2.2296 0.7789 1.7600 -67 444 -2.1661 0.7783 1.7600 -67 445 -2.1048 0.7707 1.7600 -67 446 -2.0434 0.7583 1.7600 -67 447 -1.9814 0.7442 1.7600 -67 448 -1.9246 0.7320 1.7600 -67 449 -1.8609 0.7154 1.7600 -67 450 -1.7859 0.6927 1.7600 -67 451 -1.7064 0.6664 1.7600 -67 452 -1.6323 0.6525 1.7600 -67 453 -1.5662 0.6520 1.7600 -67 454 -1.5059 0.6644 1.7600 -67 455 -1.4453 0.6797 1.7600 -67 456 -1.3854 0.6976 1.7600 -67 457 -1.3239 0.7161 1.7600 -67 458 -1.2575 0.7370 1.7600 -67 459 -1.1900 0.7604 1.7600 -67 460 -1.1233 0.7816 1.7600 -67 461 -1.0607 0.7954 1.7600 -67 462 -1.0027 0.8000 1.7600 -67 463 -0.9446 0.7977 1.7600 -67 464 -0.8811 0.7902 1.7600 -67 465 -0.8142 0.7763 1.7600 -67 466 -0.7448 0.7601 1.7600 -67 467 -0.6725 0.7404 1.7600 -67 468 -0.6001 0.7159 1.7600 -67 469 -0.5212 0.6815 1.7600 -67 470 -0.4538 0.6577 1.7600 -67 471 -0.3924 0.6497 1.7600 -67 472 -0.3332 0.6498 1.7600 -67 473 -0.2721 0.6561 1.7600 -67 474 -0.2067 0.6670 1.7600 -67 475 -0.1357 0.6825 1.7600 -67 476 -0.0579 0.7015 1.7600 -67 477 0.0247 0.7244 1.7600 -67 478 0.1067 0.7493 1.7600 -67 479 0.1799 0.7688 1.7600 -67 480 0.2524 0.7786 1.7600 -67 481 0.3195 0.7793 1.7600 -67 482 0.3874 0.7747 1.7600 -67 483 0.4604 0.7669 1.7600 -67 484 0.5370 0.7579 1.7600 -67 485 0.6218 0.7491 1.7600 -67 486 0.7132 0.7380 1.7600 -67 487 0.8039 0.7252 1.7600 -67 488 0.8810 0.7148 1.7600 -67 489 0.9471 0.7137 1.7600 -67 490 1.0035 0.7156 1.7600 -67 491 1.0555 0.7143 1.7600 -67 492 1.1016 0.7081 1.7600 -67 493 1.1479 0.7015 1.7600 -67 494 1.1931 0.6954 1.7600 -67 495 1.2436 0.6924 1.7600 -67 496 1.2956 0.6938 1.7600 -67 497 1.3501 0.6983 1.7600 -67 498 1.4064 0.7074 1.7600 -67 499 1.4634 0.7196 1.7600 -67 500 1.5246 0.7271 1.7600 -67 501 1.5773 0.7354 1.7600 -67 502 1.6304 0.7336 1.7600 -67 503 1.6783 0.7271 1.7600 -67 504 1.7216 0.7202 1.7600 -67 505 1.7606 0.7145 1.7600 -67 506 1.8088 0.7054 1.7600 -67 507 1.8520 0.7000 1.7600 -67 508 1.8985 0.6823 1.7600 -67 509 1.9406 0.6627 1.7600 -67 510 1.9879 0.6458 1.7600 -67 511 2.0305 0.6377 1.7600 -67 512 2.0737 0.6376 1.7600 -67 513 2.1198 0.6452 1.7600 -67 514 2.1654 0.6581 1.7600 -67 515 2.2149 0.6750 1.7600 -67 516 2.2670 0.6991 1.7600 -67 517 2.3220 0.7252 1.7600 -67 518 2.3804 0.7559 1.7600 -67 519 2.4382 0.7865 1.7600 -67 520 2.4946 0.8092 1.7600 -67 521 2.5459 0.8229 1.7600 -67 522 2.5970 0.8279 1.7600 -67 523 2.6505 0.8261 1.7600 -67 524 2.7099 0.8191 1.7600 -67 525 2.7705 0.8089 1.7600 -67 526 2.8337 0.7963 1.7600 -67 527 2.8966 0.7873 1.7600 -67 528 2.9621 0.7765 1.7600 -67 529 3.0363 0.7644 1.7600 -67 530 3.1083 0.7543 1.7600 -67 531 3.1743 0.7522 1.7600 -67 532 3.2380 0.7593 1.7600 -67 533 3.2984 0.7677 1.7600 -67 534 3.3583 0.7804 1.7600 -67 535 3.4184 0.7945 1.7600 -67 536 3.4799 0.8136 1.7600 -67 537 3.5474 0.8374 1.7600 -67 538 3.6323 0.8540 1.7600 -67 539 3.6999 0.8734 1.7600 -67 540 3.7517 0.8899 1.7600 -67 541 3.8104 0.8931 1.7600 -67 542 3.8659 0.8932 1.7600 -67 543 3.9253 0.8894 1.7600 -67 544 3.9818 0.8872 1.7600 -67 545 4.0382 0.8845 1.7600 -67 546 4.1044 0.8793 1.7600 -67 547 4.1866 0.8685 1.7600 -67 548 4.2726 0.8600 1.7600 -67 549 4.3527 0.8592 1.7600 -67 550 4.4281 0.8636 1.7600 -67 551 4.4975 0.8707 1.7600 -67 552 4.5654 0.8804 1.7600 -67 553 4.6428 0.8894 1.7600 -67 554 4.7167 0.9023 1.7600 -67 555 4.7947 0.9178 1.7600 -67 556 4.8788 0.9317 1.7600 -67 557 4.9541 0.9492 1.7600 -67 558 5.0222 0.9572 1.7600 -67 559 5.0832 0.9605 1.7600 -67 560 5.1425 0.9621 1.7600 -67 561 5.2004 0.9623 1.7600 -67 562 5.2574 0.9598 1.7600 -67 563 5.3161 0.9525 1.7600 -67 564 5.3843 0.9394 1.7600 -67 565 5.4642 0.9222 1.7600 -67 566 5.5423 0.9104 1.7600 -67 567 5.6154 0.9095 1.7600 -67 568 5.6858 0.9148 1.7600 -67 569 5.7528 0.9209 1.7600 -67 570 5.8190 0.9264 1.7600 -67 571 5.8855 0.9342 1.7600 -67 572 5.9550 0.9469 1.7600 -68 365 -7.8265 2.1854 1.7600 -68 366 -7.7515 2.1932 1.7600 -68 367 -7.6829 2.2057 1.7600 -68 368 -7.6195 2.2143 1.7600 -68 369 -7.5582 2.2195 1.7600 -68 370 -7.4901 2.2135 1.7600 -68 371 -7.4178 2.2023 1.7600 -68 372 -7.3536 2.1940 1.7600 -68 373 -7.2848 2.1783 1.7600 -68 374 -7.2133 2.1585 1.7600 -68 375 -7.1437 2.1363 1.7600 -68 376 -7.0800 2.1116 1.7600 -68 377 -7.0205 2.0819 1.7600 -68 378 -6.9565 2.0459 1.7600 -68 379 -6.9001 2.0256 1.7600 -68 380 -6.8395 2.0096 1.7600 -68 381 -6.7727 1.9961 1.7600 -68 382 -6.7004 1.9842 1.7600 -68 383 -6.6248 1.9751 1.7600 -68 384 -6.5483 1.9701 1.7600 -68 385 -6.4761 1.9691 1.7600 -68 386 -6.4088 1.9704 1.7600 -68 387 -6.3461 1.9664 1.7600 -68 388 -6.2853 1.9590 1.7600 -68 389 -6.2271 1.9470 1.7600 -68 390 -6.1653 1.9316 1.7600 -68 391 -6.1026 1.9126 1.7600 -68 392 -6.0373 1.8880 1.7600 -68 393 -5.9745 1.8645 1.7600 -68 394 -5.9123 1.8374 1.7600 -68 395 -5.8530 1.8095 1.7600 -68 396 -5.7980 1.7865 1.7600 -68 397 -5.7422 1.7685 1.7600 -68 398 -5.6855 1.7542 1.7600 -68 399 -5.6246 1.7415 1.7600 -68 400 -5.5663 1.7337 1.7600 -68 401 -5.5023 1.7286 1.7600 -68 402 -5.4394 1.7274 1.7600 -68 403 -5.3792 1.7332 1.7600 -68 404 -5.3208 1.7425 1.7600 -68 405 -5.2648 1.7539 1.7600 -68 406 -5.2090 1.7606 1.7600 -68 407 -5.1569 1.7655 1.7600 -68 408 -5.1039 1.7626 1.7600 -68 409 -5.0501 1.7511 1.7600 -68 410 -4.9964 1.7329 1.7600 -68 411 -4.9418 1.7135 1.7600 -68 412 -4.8885 1.6853 1.7600 -68 413 -4.8332 1.6544 1.7600 -68 414 -4.7793 1.6188 1.7600 -68 415 -4.7254 1.5835 1.7600 -68 416 -4.6727 1.5510 1.7600 -68 417 -4.6191 1.5222 1.7600 -68 418 -4.5648 1.4946 1.7600 -68 419 -4.5123 1.4752 1.7600 -68 420 -4.4580 1.4627 1.7600 -68 421 -4.4032 1.4566 1.7600 -68 422 -4.3476 1.4552 1.7600 -68 423 -4.2890 1.4607 1.7600 -68 424 -4.2247 1.4731 1.7600 -68 425 -4.1586 1.4862 1.7600 -68 426 -4.0922 1.4948 1.7600 -68 427 -4.0290 1.4982 1.7600 -68 428 -3.9623 1.4946 1.7600 -68 429 -3.8976 1.4839 1.7600 -68 430 -3.8336 1.4732 1.7600 -68 431 -3.7696 1.4601 1.7600 -68 432 -3.7090 1.4422 1.7600 -68 433 -3.6461 1.4215 1.7600 -68 434 -3.5797 1.3959 1.7600 -68 435 -3.5163 1.3735 1.7600 -68 436 -3.4569 1.3600 1.7600 -68 437 -3.3951 1.3559 1.7600 -68 438 -3.3316 1.3570 1.7600 -68 439 -3.2716 1.3598 1.7600 -68 440 -3.2113 1.3658 1.7600 -68 441 -3.1489 1.3749 1.7600 -68 442 -3.0836 1.3894 1.7600 -68 443 -3.0134 1.4131 1.7600 -68 444 -2.9406 1.4409 1.7600 -68 445 -2.8712 1.4642 1.7600 -68 446 -2.8092 1.4776 1.7600 -68 447 -2.7485 1.4865 1.7600 -68 448 -2.6920 1.4865 1.7600 -68 449 -2.6387 1.4857 1.7600 -68 450 -2.5832 1.4806 1.7600 -68 451 -2.5274 1.4735 1.7600 -68 452 -2.4662 1.4593 1.7600 -68 453 -2.3963 1.4435 1.7600 -68 454 -2.3232 1.4256 1.7600 -68 455 -2.2578 1.4110 1.7600 -68 456 -2.1900 1.4013 1.7600 -68 457 -2.1212 1.3992 1.7600 -68 458 -2.0519 1.4042 1.7600 -68 459 -1.9859 1.4103 1.7600 -68 460 -1.9190 1.4190 1.7600 -68 461 -1.8528 1.4296 1.7600 -68 462 -1.7810 1.4424 1.7600 -68 463 -1.7096 1.4676 1.7600 -68 464 -1.6451 1.4812 1.7600 -68 465 -1.5815 1.4926 1.7600 -68 466 -1.5212 1.4969 1.7600 -68 467 -1.4651 1.4971 1.7600 -68 468 -1.4127 1.4926 1.7600 -68 469 -1.3593 1.4864 1.7600 -68 470 -1.3043 1.4777 1.7600 -68 471 -1.2456 1.4677 1.7600 -68 472 -1.1795 1.4551 1.7600 -68 473 -1.1142 1.4410 1.7600 -68 474 -1.0578 1.4271 1.7600 -68 475 -0.9953 1.4181 1.7600 -68 476 -0.9345 1.4205 1.7600 -68 477 -0.8764 1.4251 1.7600 -68 478 -0.8160 1.4277 1.7600 -68 479 -0.7622 1.4310 1.7600 -68 480 -0.7107 1.4361 1.7600 -68 481 -0.6526 1.4460 1.7600 -68 482 -0.5928 1.4515 1.7600 -68 483 -0.5312 1.4600 1.7600 -68 484 -0.4748 1.4693 1.7600 -68 485 -0.4154 1.4697 1.7600 -68 486 -0.3541 1.4651 1.7600 -68 487 -0.2901 1.4571 1.7600 -68 488 -0.2241 1.4467 1.7600 -68 489 -0.1543 1.4335 1.7600 -68 490 -0.0828 1.4163 1.7600 -68 491 -0.0143 1.3957 1.7600 -68 492 0.0557 1.3737 1.7600 -68 493 0.1231 1.3534 1.7600 -68 494 0.1905 1.3351 1.7600 -68 495 0.2561 1.3238 1.7600 -68 496 0.3193 1.3163 1.7600 -68 497 0.3833 1.3157 1.7600 -68 498 0.4510 1.3177 1.7600 -68 499 0.5187 1.3219 1.7600 -68 500 0.5874 1.3297 1.7600 -68 501 0.6551 1.3409 1.7600 -68 502 0.7212 1.3558 1.7600 -68 503 0.7842 1.3699 1.7600 -68 504 0.8458 1.3817 1.7600 -68 505 0.9077 1.3883 1.7600 -68 506 0.9714 1.3915 1.7600 -68 507 1.0371 1.3925 1.7600 -68 508 1.1076 1.3918 1.7600 -68 509 1.1779 1.3858 1.7600 -68 510 1.2520 1.3803 1.7600 -68 511 1.3243 1.3689 1.7600 -68 512 1.3947 1.3628 1.7600 -68 513 1.4632 1.3623 1.7600 -68 514 1.5309 1.3669 1.7600 -68 515 1.5951 1.3787 1.7600 -68 516 1.6570 1.3909 1.7600 -68 517 1.7210 1.4044 1.7600 -68 518 1.7856 1.4206 1.7600 -68 519 1.8505 1.4414 1.7600 -68 520 1.9188 1.4630 1.7600 -68 521 1.9897 1.4897 1.7600 -68 522 2.0567 1.5119 1.7600 -68 523 2.1224 1.5261 1.7600 -68 524 2.1858 1.5297 1.7600 -68 525 2.2504 1.5258 1.7600 -68 526 2.3148 1.5185 1.7600 -68 527 2.3778 1.5066 1.7600 -68 528 2.4477 1.4922 1.7600 -68 529 2.5195 1.4750 1.7600 -68 530 2.5985 1.4557 1.7600 -68 531 2.6754 1.4350 1.7600 -68 532 2.7558 1.4198 1.7600 -68 533 2.8363 1.4109 1.7600 -68 534 2.9145 1.4130 1.7600 -68 535 2.9880 1.4166 1.7600 -68 536 3.0610 1.4241 1.7600 -68 537 3.1348 1.4338 1.7600 -68 538 3.2153 1.4501 1.7600 -68 539 3.3022 1.4718 1.7600 -68 540 3.3867 1.4895 1.7600 -68 541 3.4644 1.5018 1.7600 -68 542 3.5414 1.5057 1.7600 -68 543 3.6140 1.5102 1.7600 -68 544 3.6827 1.5101 1.7600 -68 545 3.7546 1.5089 1.7600 -68 546 3.8286 1.5037 1.7600 -68 547 3.9098 1.5026 1.7600 -68 548 3.9968 1.4996 1.7600 -68 549 4.0883 1.5025 1.7600 -68 550 4.1775 1.5124 1.7600 -68 551 4.2677 1.5271 1.7600 -68 552 4.3573 1.5439 1.7600 -68 553 4.4384 1.5654 1.7600 -68 554 4.5142 1.5902 1.7600 -68 555 4.5893 1.6163 1.7600 -68 556 4.6731 1.6494 1.7600 -68 557 4.7614 1.6825 1.7600 -68 558 4.8479 1.7133 1.7600 -68 559 4.9310 1.7369 1.7600 -68 560 5.0144 1.7569 1.7600 -68 561 5.0908 1.7715 1.7600 -68 562 5.1628 1.7819 1.7600 -68 563 5.2303 1.7882 1.7600 -68 564 5.3015 1.7909 1.7600 -68 565 5.3798 1.7915 1.7600 -68 566 5.4656 1.7999 1.7600 -68 567 5.5553 1.8113 1.7600 -68 568 5.6496 1.8258 1.7600 -68 569 5.7432 1.8428 1.7600 -68 570 5.8281 1.8598 1.7600 -68 571 5.9043 1.8769 1.7600 -69 383 -7.7709 0.6835 1.7600 -69 384 -7.7195 0.6636 1.7600 -69 385 -7.6754 0.6344 1.7600 -69 386 -7.6252 0.6020 1.7600 -69 387 -7.5636 0.5686 1.7600 -69 388 -7.4897 0.5320 1.7600 -69 389 -7.4085 0.4915 1.7600 -69 390 -7.3270 0.4474 1.7600 -69 391 -7.2491 0.3973 1.7600 -69 392 -7.1789 0.3449 1.7600 -69 393 -7.1155 0.3001 1.7600 -69 394 -7.0580 0.2685 1.7600 -69 395 -7.0022 0.2513 1.7600 -69 396 -6.9399 0.2426 1.7600 -69 397 -6.8715 0.2331 1.7600 -69 398 -6.7940 0.2256 1.7600 -69 399 -6.7116 0.2230 1.7600 -69 400 -6.6266 0.2267 1.7600 -69 401 -6.5436 0.2361 1.7600 -69 402 -6.4685 0.2462 1.7600 -69 403 -6.4071 0.2467 1.7600 -69 404 -6.3553 0.2382 1.7600 -69 405 -6.3037 0.2234 1.7600 -69 406 -6.2528 0.2098 1.7600 -69 407 -6.1971 0.1966 1.7600 -69 408 -6.1335 0.1799 1.7600 -69 409 -6.0619 0.1631 1.7600 -69 410 -5.9865 0.1383 1.7600 -69 411 -5.9137 0.1085 1.7600 -69 412 -5.8465 0.0756 1.7600 -69 413 -5.7811 0.0451 1.7600 -69 414 -5.7213 0.0258 1.7600 -69 415 -5.6694 0.0200 1.7600 -69 416 -5.6148 0.0223 1.7600 -69 417 -5.5586 0.0262 1.7600 -69 418 -5.4992 0.0329 1.7600 -69 419 -5.4399 0.0448 1.7600 -69 420 -5.3777 0.0635 1.7600 -69 421 -5.3204 0.0866 1.7600 -69 422 -5.2686 0.1078 1.7600 -69 423 -5.2244 0.1254 1.7600 -69 424 -5.1840 0.1333 1.7600 -69 425 -5.1420 0.1348 1.7600 -69 426 -5.0961 0.1329 1.7600 -69 427 -5.0459 0.1311 1.7600 -69 428 -4.9876 0.1311 1.7600 -69 429 -4.9306 0.1314 1.7600 -69 430 -4.8646 0.1257 1.7600 -69 431 -4.7988 0.1161 1.7600 -69 432 -4.7310 0.1013 1.7600 -69 433 -4.6717 0.0920 1.7600 -69 434 -4.6193 0.0914 1.7600 -69 435 -4.5689 0.0983 1.7600 -69 436 -4.5242 0.1110 1.7600 -69 437 -4.4794 0.1288 1.7600 -69 438 -4.4334 0.1499 1.7600 -69 439 -4.3884 0.1745 1.7600 -69 440 -4.3454 0.2066 1.7600 -69 441 -4.3004 0.2432 1.7600 -69 442 -4.2588 0.2814 1.7600 -69 443 -4.2243 0.3104 1.7600 -69 444 -4.1943 0.3274 1.7600 -69 445 -4.1604 0.3375 1.7600 -69 446 -4.1241 0.3436 1.7600 -69 447 -4.0817 0.3478 1.7600 -69 448 -4.0340 0.3464 1.7600 -69 449 -3.9822 0.3419 1.7600 -69 450 -3.9251 0.3317 1.7600 -69 451 -3.8675 0.3166 1.7600 -69 452 -3.8054 0.2957 1.7600 -69 453 -3.7534 0.2742 1.7600 -69 454 -3.7066 0.2633 1.7600 -69 455 -3.6682 0.2632 1.7600 -69 456 -3.6301 0.2668 1.7600 -69 457 -3.5915 0.2736 1.7600 -69 458 -3.5483 0.2826 1.7600 -69 459 -3.4981 0.2925 1.7600 -69 460 -3.4484 0.3101 1.7600 -69 461 -3.3961 0.3307 1.7600 -69 462 -3.3424 0.3536 1.7600 -69 463 -3.2891 0.3765 1.7600 -69 464 -3.2426 0.3977 1.7600 -69 465 -3.1995 0.4056 1.7600 -69 466 -3.1513 0.4077 1.7600 -69 467 -3.1024 0.4051 1.7600 -69 468 -3.0527 0.4013 1.7600 -69 469 -2.9999 0.3943 1.7600 -69 470 -2.9453 0.3822 1.7600 -69 471 -2.8856 0.3651 1.7600 -69 472 -2.8263 0.3414 1.7600 -69 473 -2.7624 0.3127 1.7600 -69 474 -2.7002 0.2860 1.7600 -69 475 -2.6458 0.2703 1.7600 -69 476 -2.5941 0.2636 1.7600 -69 477 -2.5436 0.2686 1.7600 -69 478 -2.4909 0.2745 1.7600 -69 479 -2.4360 0.2842 1.7600 -69 480 -2.3777 0.2981 1.7600 -69 481 -2.3152 0.3169 1.7600 -69 482 -2.2485 0.3395 1.7600 -69 483 -2.1782 0.3648 1.7600 -69 484 -2.1125 0.3857 1.7600 -69 485 -2.0566 0.3959 1.7600 -69 486 -1.9989 0.3956 1.7600 -69 487 -1.9438 0.3912 1.7600 -69 488 -1.8823 0.3823 1.7600 -69 489 -1.8235 0.3781 1.7600 -69 490 -1.7591 0.3669 1.7600 -69 491 -1.6958 0.3498 1.7600 -69 492 -1.6281 0.3296 1.7600 -69 493 -1.5551 0.2996 1.7600 -69 494 -1.4824 0.2771 1.7600 -69 495 -1.4170 0.2674 1.7600 -69 496 -1.3594 0.2689 1.7600 -69 497 -1.3077 0.2795 1.7600 -69 498 -1.2550 0.2940 1.7600 -69 499 -1.1970 0.3079 1.7600 -69 500 -1.1336 0.3255 1.7600 -69 501 -1.0660 0.3477 1.7600 -69 502 -0.9963 0.3749 1.7600 -69 503 -0.9262 0.4021 1.7600 -69 504 -0.8658 0.4249 1.7600 -69 505 -0.8134 0.4338 1.7600 -69 506 -0.7644 0.4328 1.7600 -69 507 -0.7126 0.4288 1.7600 -69 508 -0.6593 0.4232 1.7600 -69 509 -0.5988 0.4178 1.7600 -69 510 -0.5318 0.4084 1.7600 -69 511 -0.4606 0.3964 1.7600 -69 512 -0.3874 0.3791 1.7600 -69 513 -0.3155 0.3590 1.7600 -69 514 -0.2519 0.3411 1.7600 -69 515 -0.1929 0.3298 1.7600 -69 516 -0.1443 0.3303 1.7600 -69 517 -0.0937 0.3338 1.7600 -69 518 -0.0374 0.3413 1.7600 -69 519 0.0242 0.3478 1.7600 -69 520 0.0950 0.3548 1.7600 -69 521 0.1726 0.3654 1.7600 -69 522 0.2503 0.3846 1.7600 -69 523 0.3270 0.4039 1.7600 -69 524 0.4021 0.4234 1.7600 -69 525 0.4693 0.4309 1.7600 -69 526 0.5290 0.4270 1.7600 -69 527 0.5859 0.4153 1.7600 -69 528 0.6433 0.4036 1.7600 -69 529 0.7020 0.3931 1.7600 -69 530 0.7621 0.3803 1.7600 -69 531 0.8248 0.3667 1.7600 -69 532 0.8904 0.3491 1.7600 -69 533 0.9571 0.3267 1.7600 -69 534 1.0249 0.2990 1.7600 -69 535 1.0886 0.2746 1.7600 -69 536 1.1465 0.2657 1.7600 -69 537 1.1969 0.2664 1.7600 -69 538 1.2431 0.2750 1.7600 -69 539 1.2905 0.2883 1.7600 -69 540 1.3434 0.3054 1.7600 -69 541 1.4015 0.3238 1.7600 -69 542 1.4617 0.3498 1.7600 -69 543 1.5199 0.3777 1.7600 -69 544 1.5763 0.4076 1.7600 -69 545 1.6270 0.4307 1.7600 -69 546 1.6740 0.4431 1.7600 -69 547 1.7225 0.4476 1.7600 -69 548 1.7719 0.4468 1.7600 -69 549 1.8273 0.4419 1.7600 -69 550 1.8836 0.4369 1.7600 -69 551 1.9493 0.4257 1.7600 -69 552 2.0192 0.4139 1.7600 -69 553 2.0903 0.3962 1.7600 -69 554 2.1650 0.3738 1.7600 -69 555 2.2393 0.3489 1.7600 -69 556 2.3007 0.3346 1.7600 -69 557 2.3557 0.3297 1.7600 -69 558 2.4059 0.3352 1.7600 -69 559 2.4559 0.3433 1.7600 -69 560 2.5095 0.3543 1.7600 -69 561 2.5701 0.3661 1.7600 -69 562 2.6338 0.3818 1.7600 -69 563 2.7029 0.4020 1.7600 -69 564 2.7735 0.4267 1.7600 -69 565 2.8433 0.4488 1.7600 -69 566 2.9029 0.4622 1.7600 -69 567 2.9600 0.4652 1.7600 -69 568 3.0155 0.4603 1.7600 -69 569 3.0721 0.4567 1.7600 -69 570 3.1324 0.4503 1.7600 -69 571 3.1985 0.4427 1.7600 -69 572 3.2679 0.4300 1.7600 -69 573 3.3416 0.4093 1.7600 -69 574 3.4175 0.3831 1.7600 -69 575 3.4912 0.3577 1.7600 -69 576 3.5577 0.3408 1.7600 -69 577 3.6190 0.3386 1.7600 -69 578 3.6764 0.3436 1.7600 -69 579 3.7334 0.3539 1.7600 -69 580 3.7934 0.3639 1.7600 -69 581 3.8597 0.3785 1.7600 -69 582 3.9342 0.3952 1.7600 -69 583 4.0103 0.4183 1.7600 -69 584 4.0926 0.4424 1.7600 -69 585 4.1732 0.4654 1.7600 -69 586 4.2461 0.4830 1.7600 -69 587 4.3126 0.4870 1.7600 -69 588 4.3789 0.4838 1.7600 -69 589 4.4420 0.4773 1.7600 -69 590 4.5062 0.4672 1.7600 -69 591 4.5724 0.4579 1.7600 -69 592 4.6445 0.4454 1.7600 -69 593 4.7209 0.4254 1.7600 -69 594 4.8021 0.4009 1.7600 -69 595 4.8831 0.3775 1.7600 -69 596 4.9545 0.3640 1.7600 -69 597 5.0220 0.3615 1.7600 -69 598 5.0840 0.3642 1.7600 -69 599 5.1483 0.3698 1.7600 -69 600 5.2126 0.3755 1.7600 -69 601 5.2789 0.3851 1.7600 -69 602 5.3508 0.3974 1.7600 -69 603 5.4285 0.4131 1.7600 -69 604 5.5094 0.4309 1.7600 -69 605 5.5873 0.4424 1.7600 -69 606 5.6620 0.4423 1.7600 -69 607 5.7323 0.4341 1.7600 -69 608 5.7991 0.4192 1.7600 -69 609 5.8615 0.4017 1.7600 -69 610 5.9230 0.3830 1.7600 -70 390 -7.7787 1.3310 1.7600 -70 391 -7.7098 1.3104 1.7600 -70 392 -7.6478 1.2873 1.7600 -70 393 -7.5887 1.2643 1.7600 -70 394 -7.5324 1.2448 1.7600 -70 395 -7.4793 1.2313 1.7600 -70 396 -7.4259 1.2214 1.7600 -70 397 -7.3696 1.2131 1.7600 -70 398 -7.3081 1.2064 1.7600 -70 399 -7.2434 1.2023 1.7600 -70 400 -7.1774 1.2014 1.7600 -70 401 -7.1124 1.2034 1.7600 -70 402 -7.0501 1.2090 1.7600 -70 403 -6.9918 1.2114 1.7600 -70 404 -6.9375 1.2059 1.7600 -70 405 -6.8833 1.1940 1.7600 -70 406 -6.8244 1.1792 1.7600 -70 407 -6.7612 1.1624 1.7600 -70 408 -6.6941 1.1442 1.7600 -70 409 -6.6246 1.1246 1.7600 -70 410 -6.5570 1.1031 1.7600 -70 411 -6.4919 1.0790 1.7600 -70 412 -6.4306 1.0551 1.7600 -70 413 -6.3678 1.0380 1.7600 -70 414 -6.3100 1.0331 1.7600 -70 415 -6.2513 1.0305 1.7600 -70 416 -6.1929 1.0297 1.7600 -70 417 -6.1316 1.0277 1.7600 -70 418 -6.0699 1.0266 1.7600 -70 419 -6.0060 1.0278 1.7600 -70 420 -5.9444 1.0327 1.7600 -70 421 -5.8911 1.0391 1.7600 -70 422 -5.8338 1.0414 1.7600 -70 423 -5.7828 1.0352 1.7600 -70 424 -5.7341 1.0274 1.7600 -70 425 -5.6859 1.0193 1.7600 -70 426 -5.6347 1.0097 1.7600 -70 427 -5.5805 1.0011 1.7600 -70 428 -5.5263 0.9898 1.7600 -70 429 -5.4694 0.9754 1.7600 -70 430 -5.4165 0.9626 1.7600 -70 431 -5.3651 0.9497 1.7600 -70 432 -5.3089 0.9430 1.7600 -70 433 -5.2557 0.9414 1.7600 -70 434 -5.2028 0.9424 1.7600 -70 435 -5.1495 0.9441 1.7600 -70 436 -5.0953 0.9472 1.7600 -70 437 -5.0364 0.9537 1.7600 -70 438 -4.9780 0.9624 1.7600 -70 439 -4.9192 0.9746 1.7600 -70 440 -4.8673 0.9832 1.7600 -70 441 -4.8128 0.9837 1.7600 -70 442 -4.7655 0.9796 1.7600 -70 443 -4.7172 0.9694 1.7600 -70 444 -4.6685 0.9602 1.7600 -70 445 -4.6231 0.9507 1.7600 -70 446 -4.5752 0.9400 1.7600 -70 447 -4.5286 0.9261 1.7600 -70 448 -4.4818 0.9094 1.7600 -70 449 -4.4363 0.8906 1.7600 -70 450 -4.3923 0.8779 1.7600 -70 451 -4.3502 0.8684 1.7600 -70 452 -4.3094 0.8618 1.7600 -70 453 -4.2687 0.8581 1.7600 -70 454 -4.2359 0.8591 1.7600 -70 455 -4.2020 0.8639 1.7600 -70 456 -4.1635 0.8751 1.7600 -70 457 -4.1204 0.8866 1.7600 -70 458 -4.0711 0.9006 1.7600 -70 459 -4.0249 0.9165 1.7600 -70 460 -3.9805 0.9292 1.7600 -70 461 -3.9386 0.9374 1.7600 -70 462 -3.9015 0.9361 1.7600 -70 463 -3.8600 0.9289 1.7600 -70 464 -3.8225 0.9188 1.7600 -70 465 -3.7799 0.9066 1.7600 -70 466 -3.7314 0.8955 1.7600 -70 467 -3.6802 0.8822 1.7600 -70 468 -3.6254 0.8680 1.7600 -70 469 -3.5690 0.8516 1.7600 -70 470 -3.5140 0.8377 1.7600 -70 471 -3.4598 0.8295 1.7600 -70 472 -3.4073 0.8266 1.7600 -70 473 -3.3533 0.8242 1.7600 -70 474 -3.2970 0.8251 1.7600 -70 475 -3.2409 0.8280 1.7600 -70 476 -3.1824 0.8340 1.7600 -70 477 -3.1211 0.8414 1.7600 -70 478 -3.0555 0.8534 1.7600 -70 479 -2.9945 0.8639 1.7600 -70 480 -2.9378 0.8699 1.7600 -70 481 -2.8836 0.8728 1.7600 -70 482 -2.8319 0.8704 1.7600 -70 483 -2.7803 0.8690 1.7600 -70 484 -2.7283 0.8674 1.7600 -70 485 -2.6760 0.8666 1.7600 -70 486 -2.6196 0.8607 1.7600 -70 487 -2.5610 0.8558 1.7600 -70 488 -2.4997 0.8487 1.7600 -70 489 -2.4432 0.8443 1.7600 -70 490 -2.3886 0.8462 1.7600 -70 491 -2.3357 0.8506 1.7600 -70 492 -2.2873 0.8540 1.7600 -70 493 -2.2411 0.8587 1.7600 -70 494 -2.1933 0.8656 1.7600 -70 495 -2.1405 0.8745 1.7600 -70 496 -2.0832 0.8861 1.7600 -70 497 -2.0172 0.9002 1.7600 -70 498 -1.9529 0.9138 1.7600 -70 499 -1.8948 0.9236 1.7600 -70 500 -1.8390 0.9298 1.7600 -70 501 -1.7865 0.9321 1.7600 -70 502 -1.7363 0.9339 1.7600 -70 503 -1.6852 0.9362 1.7600 -70 504 -1.6325 0.9371 1.7600 -70 505 -1.5819 0.9331 1.7600 -70 506 -1.5318 0.9254 1.7600 -70 507 -1.4784 0.9136 1.7600 -70 508 -1.4301 0.9016 1.7600 -70 509 -1.3959 0.8926 1.7600 -70 510 -1.3555 0.8898 1.7600 -70 511 -1.3207 0.8849 1.7600 -70 512 -1.2858 0.8779 1.7600 -70 513 -1.2465 0.8757 1.7600 -70 514 -1.2051 0.8736 1.7600 -70 515 -1.1517 0.8776 1.7600 -70 516 -1.0922 0.8883 1.7600 -70 517 -1.0308 0.9004 1.7600 -70 518 -0.9672 0.9115 1.7600 -70 519 -0.9048 0.9194 1.7600 -70 520 -0.8464 0.9232 1.7600 -70 521 -0.7883 0.9260 1.7600 -70 522 -0.7286 0.9286 1.7600 -70 523 -0.6676 0.9290 1.7600 -70 524 -0.6062 0.9251 1.7600 -70 525 -0.5420 0.9174 1.7600 -70 526 -0.4753 0.9054 1.7600 -70 527 -0.4105 0.8925 1.7600 -70 528 -0.3483 0.8831 1.7600 -70 529 -0.2901 0.8814 1.7600 -70 530 -0.2329 0.8850 1.7600 -70 531 -0.1758 0.8893 1.7600 -70 532 -0.1180 0.8946 1.7600 -70 533 -0.0563 0.9020 1.7600 -70 534 0.0123 0.9128 1.7600 -70 535 0.0833 0.9281 1.7600 -70 536 0.1598 0.9458 1.7600 -70 537 0.2250 0.9594 1.7600 -70 538 0.2823 0.9616 1.7600 -70 539 0.3389 0.9560 1.7600 -70 540 0.3962 0.9473 1.7600 -70 541 0.4561 0.9382 1.7600 -70 542 0.5198 0.9286 1.7600 -70 543 0.5839 0.9169 1.7600 -70 544 0.6447 0.9022 1.7600 -70 545 0.7035 0.8850 1.7600 -70 546 0.7585 0.8670 1.7600 -70 547 0.8173 0.8581 1.7600 -70 548 0.8726 0.8534 1.7600 -70 549 0.9282 0.8528 1.7600 -70 550 0.9869 0.8542 1.7600 -70 551 1.0486 0.8576 1.7600 -70 552 1.1122 0.8631 1.7600 -70 553 1.1775 0.8707 1.7600 -70 554 1.2442 0.8809 1.7600 -70 555 1.3096 0.8913 1.7600 -70 556 1.3749 0.8922 1.7600 -70 557 1.4293 0.8927 1.7600 -70 558 1.4872 0.8871 1.7600 -70 559 1.5459 0.8799 1.7600 -70 560 1.6034 0.8711 1.7600 -70 561 1.6612 0.8611 1.7600 -70 562 1.7272 0.8466 1.7600 -70 563 1.7888 0.8325 1.7600 -70 564 1.8483 0.8188 1.7600 -70 565 1.9057 0.8106 1.7600 -70 566 1.9627 0.8098 1.7600 -70 567 2.0164 0.8133 1.7600 -70 568 2.0668 0.8172 1.7600 -70 569 2.1174 0.8219 1.7600 -70 570 2.1713 0.8282 1.7600 -70 571 2.2285 0.8384 1.7600 -70 572 2.2875 0.8521 1.7600 -70 573 2.3486 0.8685 1.7600 -70 574 2.4107 0.8851 1.7600 -70 575 2.4724 0.8921 1.7600 -70 576 2.5296 0.8966 1.7600 -70 577 2.5883 0.9040 1.7600 -70 578 2.6542 0.9133 1.7600 -70 579 2.7213 0.9214 1.7600 -70 580 2.7833 0.9223 1.7600 -70 581 2.8366 0.9160 1.7600 -70 582 2.9007 0.8958 1.7600 -70 583 2.9644 0.8743 1.7600 -70 584 3.0271 0.8635 1.7600 -70 585 3.0826 0.8632 1.7600 -70 586 3.1418 0.8659 1.7600 -70 587 3.2016 0.8712 1.7600 -70 588 3.2643 0.8755 1.7600 -70 589 3.3287 0.8854 1.7600 -70 590 3.3965 0.9003 1.7600 -70 591 3.4684 0.9164 1.7600 -70 592 3.5353 0.9290 1.7600 -70 593 3.5998 0.9295 1.7600 -70 594 3.6597 0.9203 1.7600 -70 595 3.7201 0.9125 1.7600 -70 596 3.7780 0.9046 1.7600 -70 597 3.8356 0.8956 1.7600 -70 598 3.8978 0.8810 1.7600 -70 599 3.9640 0.8637 1.7600 -70 600 4.0335 0.8464 1.7600 -70 601 4.0978 0.8320 1.7600 -70 602 4.1613 0.8213 1.7600 -70 603 4.2211 0.8157 1.7600 -70 604 4.2753 0.8146 1.7600 -70 605 4.3278 0.8162 1.7600 -70 606 4.3844 0.8190 1.7600 -70 607 4.4462 0.8258 1.7600 -70 608 4.5111 0.8368 1.7600 -70 609 4.5756 0.8500 1.7600 -70 610 4.6440 0.8564 1.7600 -70 611 4.7091 0.8518 1.7600 -70 612 4.7672 0.8405 1.7600 -70 613 4.8235 0.8274 1.7600 -70 614 4.8779 0.8115 1.7600 -70 615 4.9314 0.7964 1.7600 -70 616 4.9845 0.7785 1.7600 -70 617 5.0409 0.7589 1.7600 -70 618 5.1031 0.7345 1.7600 -70 619 5.1676 0.7123 1.7600 -70 620 5.2335 0.6979 1.7600 -70 621 5.2973 0.6911 1.7600 -70 622 5.3575 0.6862 1.7600 -70 623 5.4159 0.6821 1.7600 -70 624 5.4720 0.6796 1.7600 -70 625 5.5287 0.6797 1.7600 -70 626 5.5936 0.6813 1.7600 -70 627 5.6679 0.6834 1.7600 -70 628 5.7417 0.6848 1.7600 -70 629 5.8128 0.6805 1.7600 -70 630 5.8762 0.6727 1.7600 -70 631 5.9358 0.6656 1.7600 -71 393 -7.8134 2.0586 1.7600 -71 394 -7.7457 2.0440 1.7600 -71 395 -7.6821 2.0271 1.7600 -71 396 -7.6268 2.0113 1.7600 -71 397 -7.5749 1.9955 1.7600 -71 398 -7.5242 1.9834 1.7600 -71 399 -7.4733 1.9790 1.7600 -71 400 -7.4198 1.9792 1.7600 -71 401 -7.3617 1.9810 1.7600 -71 402 -7.2974 1.9821 1.7600 -71 403 -7.2301 1.9851 1.7600 -71 404 -7.1609 1.9908 1.7600 -71 405 -7.0918 1.9970 1.7600 -71 406 -7.0257 2.0016 1.7600 -71 407 -6.9611 2.0059 1.7600 -71 408 -6.8981 2.0078 1.7600 -71 409 -6.8360 2.0037 1.7600 -71 410 -6.7746 1.9952 1.7600 -71 411 -6.7133 1.9847 1.7600 -71 412 -6.6494 1.9729 1.7600 -71 413 -6.5851 1.9617 1.7600 -71 414 -6.5251 1.9465 1.7600 -71 415 -6.4707 1.9299 1.7600 -71 416 -6.4155 1.9127 1.7600 -71 417 -6.3647 1.9045 1.7600 -71 418 -6.3097 1.9023 1.7600 -71 419 -6.2536 1.9067 1.7600 -71 420 -6.1930 1.9084 1.7600 -71 421 -6.1301 1.9139 1.7600 -71 422 -6.0665 1.9239 1.7600 -71 423 -6.0043 1.9377 1.7600 -71 424 -5.9441 1.9578 1.7600 -71 425 -5.8862 1.9730 1.7600 -71 426 -5.8321 1.9824 1.7600 -71 427 -5.7801 1.9814 1.7600 -71 428 -5.7276 1.9770 1.7600 -71 429 -5.6758 1.9651 1.7600 -71 430 -5.6206 1.9507 1.7600 -71 431 -5.5684 1.9361 1.7600 -71 432 -5.5140 1.9115 1.7600 -71 433 -5.4631 1.8854 1.7600 -71 434 -5.4179 1.8533 1.7600 -71 435 -5.3735 1.8223 1.7600 -71 436 -5.3307 1.7974 1.7600 -71 437 -5.2883 1.7768 1.7600 -71 438 -5.2399 1.7604 1.7600 -71 439 -5.1907 1.7468 1.7600 -71 440 -5.1405 1.7342 1.7600 -71 441 -5.0840 1.7231 1.7600 -71 442 -5.0239 1.7145 1.7600 -71 443 -4.9608 1.7112 1.7600 -71 444 -4.8970 1.7091 1.7600 -71 445 -4.8372 1.7095 1.7600 -71 446 -4.7747 1.7041 1.7600 -71 447 -4.7073 1.6904 1.7600 -71 448 -4.6397 1.6707 1.7600 -71 449 -4.5747 1.6527 1.7600 -71 450 -4.5097 1.6316 1.7600 -71 451 -4.4443 1.6090 1.7600 -71 452 -4.3851 1.5864 1.7600 -71 453 -4.3293 1.5636 1.7600 -71 454 -4.2755 1.5398 1.7600 -71 455 -4.2221 1.5174 1.7600 -71 456 -4.1726 1.4993 1.7600 -71 457 -4.1210 1.4884 1.7600 -71 458 -4.0713 1.4828 1.7600 -71 459 -4.0182 1.4804 1.7600 -71 460 -3.9644 1.4784 1.7600 -71 461 -3.9109 1.4798 1.7600 -71 462 -3.8492 1.4860 1.7600 -71 463 -3.7871 1.4953 1.7600 -71 464 -3.7192 1.5036 1.7600 -71 465 -3.6561 1.5064 1.7600 -71 466 -3.5940 1.5015 1.7600 -71 467 -3.5311 1.4904 1.7600 -71 468 -3.4715 1.4769 1.7600 -71 469 -3.4184 1.4609 1.7600 -71 470 -3.3651 1.4416 1.7600 -71 471 -3.3116 1.4224 1.7600 -71 472 -3.2572 1.4004 1.7600 -71 473 -3.2021 1.3732 1.7600 -71 474 -3.1386 1.3464 1.7600 -71 475 -3.0832 1.3245 1.7600 -71 476 -3.0259 1.3092 1.7600 -71 477 -2.9705 1.3044 1.7600 -71 478 -2.9155 1.3034 1.7600 -71 479 -2.8625 1.3046 1.7600 -71 480 -2.8082 1.3109 1.7600 -71 481 -2.7515 1.3159 1.7600 -71 482 -2.6885 1.3266 1.7600 -71 483 -2.6181 1.3326 1.7600 -71 484 -2.5486 1.3382 1.7600 -71 485 -2.4775 1.3442 1.7600 -71 486 -2.4070 1.3416 1.7600 -71 487 -2.3384 1.3331 1.7600 -71 488 -2.2627 1.3235 1.7600 -71 489 -2.1823 1.3198 1.7600 -71 490 -2.1023 1.3224 1.7600 -71 491 -2.0315 1.3240 1.7600 -71 492 -1.9647 1.3243 1.7600 -71 493 -1.8938 1.3168 1.7600 -71 494 -1.8245 1.3062 1.7600 -71 495 -1.7596 1.3006 1.7600 -71 496 -1.6973 1.2996 1.7600 -71 497 -1.6407 1.3014 1.7600 -71 498 -1.5870 1.3024 1.7600 -71 499 -1.5298 1.3039 1.7600 -71 500 -1.4684 1.3085 1.7600 -71 501 -1.4065 1.3178 1.7600 -71 502 -1.3391 1.3357 1.7600 -71 503 -1.2758 1.3504 1.7600 -71 504 -1.2114 1.3574 1.7600 -71 505 -1.1485 1.3553 1.7600 -71 506 -1.0903 1.3507 1.7600 -71 507 -1.0351 1.3472 1.7600 -71 508 -0.9786 1.3402 1.7600 -71 509 -0.9196 1.3316 1.7600 -71 510 -0.8599 1.3201 1.7600 -71 511 -0.7972 1.3064 1.7600 -71 512 -0.7390 1.2940 1.7600 -71 513 -0.6835 1.2852 1.7600 -71 514 -0.6232 1.2846 1.7600 -71 515 -0.5596 1.2857 1.7600 -71 516 -0.4960 1.2875 1.7600 -71 517 -0.4320 1.2914 1.7600 -71 518 -0.3652 1.2964 1.7600 -71 519 -0.2930 1.3041 1.7600 -71 520 -0.2238 1.3130 1.7600 -71 521 -0.1550 1.3214 1.7600 -71 522 -0.0924 1.3240 1.7600 -71 523 -0.0350 1.3209 1.7600 -71 524 0.0209 1.3140 1.7600 -71 525 0.0779 1.3061 1.7600 -71 526 0.1376 1.2935 1.7600 -71 527 0.2001 1.2819 1.7600 -71 528 0.2680 1.2655 1.7600 -71 529 0.3313 1.2489 1.7600 -71 530 0.3936 1.2326 1.7600 -71 531 0.4528 1.2212 1.7600 -71 532 0.5124 1.2179 1.7600 -71 533 0.5728 1.2221 1.7600 -71 534 0.6349 1.2321 1.7600 -71 535 0.6967 1.2442 1.7600 -71 536 0.7591 1.2593 1.7600 -71 537 0.8235 1.2778 1.7600 -71 538 0.8908 1.2966 1.7600 -71 539 0.9597 1.3141 1.7600 -71 540 1.0269 1.3287 1.7600 -71 541 1.0929 1.3389 1.7600 -71 542 1.1560 1.3435 1.7600 -71 543 1.2170 1.3382 1.7600 -71 544 1.2785 1.3340 1.7600 -71 545 1.3380 1.3271 1.7600 -71 546 1.4033 1.3190 1.7600 -71 547 1.4653 1.3077 1.7600 -71 548 1.5320 1.2963 1.7600 -71 549 1.5942 1.2842 1.7600 -71 550 1.6537 1.2762 1.7600 -71 551 1.7136 1.2793 1.7600 -71 552 1.7747 1.2848 1.7600 -71 553 1.8398 1.2951 1.7600 -71 554 1.9016 1.3036 1.7600 -71 555 1.9658 1.3146 1.7600 -71 556 2.0324 1.3252 1.7600 -71 557 2.1009 1.3423 1.7600 -71 558 2.1710 1.3554 1.7600 -71 559 2.2355 1.3689 1.7600 -71 560 2.2982 1.3719 1.7600 -71 561 2.3626 1.3653 1.7600 -71 562 2.4239 1.3526 1.7600 -71 563 2.4844 1.3419 1.7600 -71 564 2.5418 1.3250 1.7600 -71 565 2.6005 1.3066 1.7600 -71 566 2.6605 1.2851 1.7600 -71 567 2.7235 1.2629 1.7600 -71 568 2.7832 1.2429 1.7600 -71 569 2.8392 1.2287 1.7600 -71 570 2.8967 1.2215 1.7600 -71 571 2.9583 1.2214 1.7600 -71 572 3.0153 1.2223 1.7600 -71 573 3.0711 1.2243 1.7600 -71 574 3.1298 1.2287 1.7600 -71 575 3.1907 1.2371 1.7600 -71 576 3.2570 1.2467 1.7600 -71 577 3.3277 1.2569 1.7600 -71 578 3.3963 1.2700 1.7600 -71 579 3.4655 1.2753 1.7600 -71 580 3.5338 1.2743 1.7600 -71 581 3.5970 1.2697 1.7600 -71 582 3.6555 1.2642 1.7600 -71 583 3.7134 1.2550 1.7600 -71 584 3.7698 1.2401 1.7600 -71 585 3.8310 1.2225 1.7600 -71 586 3.8918 1.2055 1.7600 -71 587 3.9626 1.1920 1.7600 -71 588 4.0232 1.1805 1.7600 -71 589 4.0817 1.1749 1.7600 -71 590 4.1393 1.1761 1.7600 -71 591 4.1958 1.1807 1.7600 -71 592 4.2477 1.1855 1.7600 -71 593 4.3016 1.1888 1.7600 -71 594 4.3549 1.1951 1.7600 -71 595 4.4153 1.2027 1.7600 -71 596 4.4857 1.2106 1.7600 -71 597 4.5543 1.2215 1.7600 -71 598 4.6235 1.2269 1.7600 -71 599 4.6972 1.2255 1.7600 -71 600 4.7670 1.2129 1.7600 -71 601 4.8311 1.1961 1.7600 -71 602 4.8948 1.1758 1.7600 -71 603 4.9582 1.1575 1.7600 -71 604 5.0258 1.1384 1.7600 -71 605 5.0983 1.1223 1.7600 -71 606 5.1747 1.1042 1.7600 -71 607 5.2393 1.0876 1.7600 -71 608 5.3083 1.0803 1.7600 -71 609 5.3755 1.0808 1.7600 -71 610 5.4383 1.0833 1.7600 -71 611 5.4988 1.0864 1.7600 -71 612 5.5570 1.0882 1.7600 -71 613 5.6204 1.0936 1.7600 -71 614 5.6902 1.1071 1.7600 -71 615 5.7670 1.1225 1.7600 -71 616 5.8405 1.1323 1.7600 -71 617 5.9168 1.1354 1.7600 -72 377 -7.8152 1.7848 1.7600 -72 378 -7.7540 1.7705 1.7600 -72 379 -7.6895 1.7598 1.7600 -72 380 -7.6190 1.7500 1.7600 -72 381 -7.5422 1.7409 1.7600 -72 382 -7.4637 1.7352 1.7600 -72 383 -7.3849 1.7355 1.7600 -72 384 -7.3113 1.7388 1.7600 -72 385 -7.2425 1.7408 1.7600 -72 386 -7.1780 1.7380 1.7600 -72 387 -7.1169 1.7319 1.7600 -72 388 -7.0540 1.7215 1.7600 -72 389 -6.9866 1.7078 1.7600 -72 390 -6.9154 1.6913 1.7600 -72 391 -6.8436 1.6730 1.7600 -72 392 -6.7742 1.6531 1.7600 -72 393 -6.7077 1.6307 1.7600 -72 394 -6.6454 1.6093 1.7600 -72 395 -6.5864 1.5923 1.7600 -72 396 -6.5277 1.5813 1.7600 -72 397 -6.4657 1.5738 1.7600 -72 398 -6.3988 1.5678 1.7600 -72 399 -6.3286 1.5624 1.7600 -72 400 -6.2565 1.5593 1.7600 -72 401 -6.1839 1.5601 1.7600 -72 402 -6.1133 1.5641 1.7600 -72 403 -6.0459 1.5678 1.7600 -72 404 -5.9814 1.5673 1.7600 -72 405 -5.9185 1.5605 1.7600 -72 406 -5.8564 1.5486 1.7600 -72 407 -5.7948 1.5334 1.7600 -72 408 -5.7326 1.5152 1.7600 -72 409 -5.6700 1.4939 1.7600 -72 410 -5.6089 1.4697 1.7600 -72 411 -5.5511 1.4441 1.7600 -72 412 -5.4953 1.4199 1.7600 -72 413 -5.4422 1.3960 1.7600 -72 414 -5.3880 1.3805 1.7600 -72 415 -5.3347 1.3692 1.7600 -72 416 -5.2808 1.3607 1.7600 -72 417 -5.2259 1.3540 1.7600 -72 418 -5.1712 1.3508 1.7600 -72 419 -5.1144 1.3516 1.7600 -72 420 -5.0596 1.3574 1.7600 -72 421 -5.0094 1.3636 1.7600 -72 422 -4.9579 1.3656 1.7600 -72 423 -4.9072 1.3653 1.7600 -72 424 -4.8590 1.3603 1.7600 -72 425 -4.8121 1.3551 1.7600 -72 426 -4.7664 1.3474 1.7600 -72 427 -4.7212 1.3372 1.7600 -72 428 -4.6799 1.3245 1.7600 -72 429 -4.6423 1.3130 1.7600 -72 430 -4.6015 1.3018 1.7600 -72 431 -4.5598 1.2923 1.7600 -72 432 -4.5153 1.2876 1.7600 -72 433 -4.4670 1.2871 1.7600 -72 434 -4.4166 1.2901 1.7600 -72 435 -4.3655 1.2974 1.7600 -72 436 -4.3132 1.3093 1.7600 -72 437 -4.2597 1.3246 1.7600 -72 438 -4.2066 1.3398 1.7600 -72 439 -4.1536 1.3487 1.7600 -72 440 -4.0955 1.3513 1.7600 -72 441 -4.0379 1.3517 1.7600 -72 442 -3.9796 1.3489 1.7600 -72 443 -3.9220 1.3446 1.7600 -72 444 -3.8611 1.3386 1.7600 -72 445 -3.7989 1.3282 1.7600 -72 446 -3.7373 1.3146 1.7600 -72 447 -3.6767 1.2967 1.7600 -72 448 -3.6169 1.2817 1.7600 -72 449 -3.5575 1.2736 1.7600 -72 450 -3.4969 1.2700 1.7600 -72 451 -3.4362 1.2698 1.7600 -72 452 -3.3758 1.2732 1.7600 -72 453 -3.3139 1.2787 1.7600 -72 454 -3.2548 1.2901 1.7600 -72 455 -3.1954 1.3043 1.7600 -72 456 -3.1357 1.3198 1.7600 -72 457 -3.0765 1.3301 1.7600 -72 458 -3.0166 1.3367 1.7600 -72 459 -2.9580 1.3368 1.7600 -72 460 -2.8988 1.3348 1.7600 -72 461 -2.8365 1.3288 1.7600 -72 462 -2.7726 1.3198 1.7600 -72 463 -2.7071 1.3062 1.7600 -72 464 -2.6402 1.2898 1.7600 -72 465 -2.5715 1.2723 1.7600 -72 466 -2.5036 1.2570 1.7600 -72 467 -2.4370 1.2490 1.7600 -72 468 -2.3701 1.2459 1.7600 -72 469 -2.3019 1.2429 1.7600 -72 470 -2.2347 1.2448 1.7600 -72 471 -2.1668 1.2513 1.7600 -72 472 -2.0985 1.2641 1.7600 -72 473 -2.0297 1.2803 1.7600 -72 474 -1.9604 1.2961 1.7600 -72 475 -1.8885 1.3041 1.7600 -72 476 -1.8207 1.3065 1.7600 -72 477 -1.7534 1.3043 1.7600 -72 478 -1.6908 1.2994 1.7600 -72 479 -1.6281 1.2906 1.7600 -72 480 -1.5629 1.2802 1.7600 -72 481 -1.4959 1.2644 1.7600 -72 482 -1.4253 1.2496 1.7600 -72 483 -1.3554 1.2345 1.7600 -72 484 -1.2874 1.2251 1.7600 -72 485 -1.2215 1.2222 1.7600 -72 486 -1.1556 1.2230 1.7600 -72 487 -1.0915 1.2256 1.7600 -72 488 -1.0274 1.2327 1.7600 -72 489 -0.9644 1.2435 1.7600 -72 490 -0.8999 1.2583 1.7600 -72 491 -0.8364 1.2763 1.7600 -72 492 -0.7734 1.2907 1.7600 -72 493 -0.7113 1.2971 1.7600 -72 494 -0.6482 1.2972 1.7600 -72 495 -0.5837 1.2929 1.7600 -72 496 -0.5170 1.2870 1.7600 -72 497 -0.4457 1.2775 1.7600 -72 498 -0.3730 1.2636 1.7600 -72 499 -0.3023 1.2455 1.7600 -72 500 -0.2372 1.2261 1.7600 -72 501 -0.1740 1.2083 1.7600 -72 502 -0.1117 1.1962 1.7600 -72 503 -0.0458 1.1900 1.7600 -72 504 0.0202 1.1870 1.7600 -72 505 0.0892 1.1867 1.7600 -72 506 0.1617 1.1893 1.7600 -72 507 0.2356 1.1951 1.7600 -72 508 0.3080 1.2058 1.7600 -72 509 0.3781 1.2197 1.7600 -72 510 0.4473 1.2318 1.7600 -72 511 0.5144 1.2381 1.7600 -72 512 0.5801 1.2399 1.7600 -72 513 0.6476 1.2388 1.7600 -72 514 0.7191 1.2348 1.7600 -72 515 0.7925 1.2290 1.7600 -72 516 0.8661 1.2213 1.7600 -72 517 0.9402 1.2107 1.7600 -72 518 1.0143 1.1984 1.7600 -72 519 1.0864 1.1878 1.7600 -72 520 1.1558 1.1829 1.7600 -72 521 1.2248 1.1849 1.7600 -72 522 1.2944 1.1922 1.7600 -72 523 1.3630 1.2034 1.7600 -72 524 1.4281 1.2181 1.7600 -72 525 1.4919 1.2364 1.7600 -72 526 1.5532 1.2581 1.7600 -72 527 1.6126 1.2800 1.7600 -72 528 1.6729 1.2960 1.7600 -72 529 1.7353 1.3098 1.7600 -72 530 1.7960 1.3158 1.7600 -72 531 1.8595 1.3207 1.7600 -72 532 1.9240 1.3207 1.7600 -72 533 1.9914 1.3179 1.7600 -72 534 2.0582 1.3089 1.7600 -72 535 2.1274 1.2977 1.7600 -72 536 2.1989 1.2830 1.7600 -72 537 2.2702 1.2749 1.7600 -72 538 2.3398 1.2744 1.7600 -72 539 2.4066 1.2818 1.7600 -72 540 2.4754 1.2910 1.7600 -72 541 2.5428 1.3027 1.7600 -72 542 2.6108 1.3193 1.7600 -72 543 2.6751 1.3396 1.7600 -72 544 2.7393 1.3638 1.7600 -72 545 2.8094 1.3898 1.7600 -72 546 2.8794 1.4159 1.7600 -72 547 2.9495 1.4348 1.7600 -72 548 3.0220 1.4457 1.7600 -72 549 3.0944 1.4514 1.7600 -72 550 3.1694 1.4551 1.7600 -72 551 3.2471 1.4537 1.7600 -72 552 3.3267 1.4495 1.7600 -72 553 3.4091 1.4416 1.7600 -72 554 3.4969 1.4319 1.7600 -72 555 3.5808 1.4279 1.7600 -72 556 3.6613 1.4313 1.7600 -72 557 3.7364 1.4418 1.7600 -72 558 3.8108 1.4525 1.7600 -72 559 3.8855 1.4664 1.7600 -72 560 3.9590 1.4840 1.7600 -72 561 4.0363 1.5065 1.7600 -72 562 4.1192 1.5283 1.7600 -72 563 4.2072 1.5518 1.7600 -72 564 4.2956 1.5749 1.7600 -72 565 4.3848 1.5962 1.7600 -72 566 4.4673 1.6151 1.7600 -72 567 4.5518 1.6345 1.7600 -72 568 4.6357 1.6469 1.7600 -72 569 4.7221 1.6604 1.7600 -72 570 4.8165 1.6699 1.7600 -72 571 4.9098 1.6810 1.7600 -72 572 5.0063 1.6993 1.7600 -72 573 5.0954 1.7247 1.7600 -72 574 5.1797 1.7517 1.7600 -72 575 5.2603 1.7794 1.7600 -72 576 5.3372 1.8106 1.7600 -72 577 5.4235 1.8463 1.7600 -72 578 5.5135 1.8810 1.7600 -72 579 5.6107 1.9132 1.7600 -72 580 5.7124 1.9381 1.7600 -72 581 5.8104 1.9524 1.7600 -72 582 5.9019 1.9621 1.7600 -73 400 -7.7770 1.6904 1.7600 -73 401 -7.7165 1.6902 1.7600 -73 402 -7.6557 1.6884 1.7600 -73 403 -7.5961 1.6851 1.7600 -73 404 -7.5352 1.6793 1.7600 -73 405 -7.4717 1.6702 1.7600 -73 406 -7.4071 1.6597 1.7600 -73 407 -7.3440 1.6477 1.7600 -73 408 -7.2845 1.6337 1.7600 -73 409 -7.2277 1.6196 1.7600 -73 410 -7.1703 1.6049 1.7600 -73 411 -7.1129 1.5916 1.7600 -73 412 -7.0549 1.5813 1.7600 -73 413 -6.9920 1.5700 1.7600 -73 414 -6.9258 1.5572 1.7600 -73 415 -6.8577 1.5425 1.7600 -73 416 -6.7934 1.5322 1.7600 -73 417 -6.7287 1.5212 1.7600 -73 418 -6.6687 1.5122 1.7600 -73 419 -6.6105 1.5055 1.7600 -73 420 -6.5541 1.4978 1.7600 -73 421 -6.4954 1.4858 1.7600 -73 422 -6.4347 1.4738 1.7600 -73 423 -6.3732 1.4641 1.7600 -73 424 -6.3113 1.4523 1.7600 -73 425 -6.2523 1.4404 1.7600 -73 426 -6.1956 1.4286 1.7600 -73 427 -6.1420 1.4170 1.7600 -73 428 -6.0863 1.4074 1.7600 -73 429 -6.0283 1.4007 1.7600 -73 430 -5.9687 1.3969 1.7600 -73 431 -5.9140 1.3926 1.7600 -73 432 -5.8551 1.3914 1.7600 -73 433 -5.8007 1.3899 1.7600 -73 434 -5.7447 1.3944 1.7600 -73 435 -5.6957 1.3967 1.7600 -73 436 -5.6486 1.3980 1.7600 -73 437 -5.6015 1.3971 1.7600 -73 438 -5.5534 1.3947 1.7600 -73 439 -5.5080 1.3895 1.7600 -73 440 -5.4607 1.3822 1.7600 -73 441 -5.4156 1.3720 1.7600 -73 442 -5.3722 1.3600 1.7600 -73 443 -5.3277 1.3444 1.7600 -73 444 -5.2830 1.3288 1.7600 -73 445 -5.2384 1.3094 1.7600 -73 446 -5.1935 1.2905 1.7600 -73 447 -5.1488 1.2728 1.7600 -73 448 -5.1042 1.2582 1.7600 -73 449 -5.0590 1.2446 1.7600 -73 450 -5.0131 1.2334 1.7600 -73 451 -4.9646 1.2260 1.7600 -73 452 -4.9137 1.2193 1.7600 -73 453 -4.8592 1.2138 1.7600 -73 454 -4.8055 1.2091 1.7600 -73 455 -4.7511 1.2046 1.7600 -73 456 -4.6923 1.2029 1.7600 -73 457 -4.6406 1.1995 1.7600 -73 458 -4.5865 1.1939 1.7600 -73 459 -4.5325 1.1899 1.7600 -73 460 -4.4820 1.1850 1.7600 -73 461 -4.4313 1.1801 1.7600 -73 462 -4.3797 1.1753 1.7600 -73 463 -4.3262 1.1687 1.7600 -73 464 -4.2690 1.1628 1.7600 -73 465 -4.2132 1.1584 1.7600 -73 466 -4.1559 1.1558 1.7600 -73 467 -4.0980 1.1536 1.7600 -73 468 -4.0404 1.1557 1.7600 -73 469 -3.9825 1.1577 1.7600 -73 470 -3.9271 1.1624 1.7600 -73 471 -3.8720 1.1668 1.7600 -73 472 -3.8171 1.1714 1.7600 -73 473 -3.7611 1.1767 1.7600 -73 474 -3.7109 1.1816 1.7600 -73 475 -3.6542 1.1839 1.7600 -73 476 -3.6020 1.1849 1.7600 -73 477 -3.5487 1.1837 1.7600 -73 478 -3.5011 1.1804 1.7600 -73 479 -3.4485 1.1765 1.7600 -73 480 -3.3972 1.1721 1.7600 -73 481 -3.3465 1.1625 1.7600 -73 482 -3.2937 1.1531 1.7600 -73 483 -3.2435 1.1447 1.7600 -73 484 -3.1917 1.1399 1.7600 -73 485 -3.1423 1.1391 1.7600 -73 486 -3.0935 1.1386 1.7600 -73 487 -3.0428 1.1375 1.7600 -73 488 -2.9960 1.1371 1.7600 -73 489 -2.9462 1.1380 1.7600 -73 490 -2.8976 1.1398 1.7600 -73 491 -2.8496 1.1419 1.7600 -73 492 -2.8014 1.1460 1.7600 -73 493 -2.7549 1.1451 1.7600 -73 494 -2.7052 1.1460 1.7600 -73 495 -2.6607 1.1457 1.7600 -73 496 -2.6161 1.1440 1.7600 -73 497 -2.5708 1.1428 1.7600 -73 498 -2.5216 1.1404 1.7600 -73 499 -2.4720 1.1375 1.7600 -73 500 -2.4188 1.1319 1.7600 -73 501 -2.3686 1.1260 1.7600 -73 502 -2.3146 1.1177 1.7600 -73 503 -2.2604 1.1109 1.7600 -73 504 -2.2033 1.1058 1.7600 -73 505 -2.1483 1.1049 1.7600 -73 506 -2.0924 1.1055 1.7600 -73 507 -2.0363 1.1068 1.7600 -73 508 -1.9803 1.1120 1.7600 -73 509 -1.9222 1.1170 1.7600 -73 510 -1.8665 1.1264 1.7600 -73 511 -1.8114 1.1322 1.7600 -73 512 -1.7549 1.1354 1.7600 -73 513 -1.6989 1.1367 1.7600 -73 514 -1.6462 1.1364 1.7600 -73 515 -1.5929 1.1343 1.7600 -73 516 -1.5355 1.1308 1.7600 -73 517 -1.4825 1.1281 1.7600 -73 518 -1.4280 1.1238 1.7600 -73 519 -1.3708 1.1177 1.7600 -73 520 -1.3161 1.1129 1.7600 -73 521 -1.2629 1.1111 1.7600 -73 522 -1.2069 1.1121 1.7600 -73 523 -1.1540 1.1130 1.7600 -73 524 -1.1013 1.1156 1.7600 -73 525 -1.0489 1.1207 1.7600 -73 526 -0.9922 1.1262 1.7600 -73 527 -0.9339 1.1321 1.7600 -73 528 -0.8720 1.1402 1.7600 -73 529 -0.8100 1.1471 1.7600 -73 530 -0.7487 1.1529 1.7600 -73 531 -0.6868 1.1555 1.7600 -73 532 -0.6299 1.1517 1.7600 -73 533 -0.5745 1.1466 1.7600 -73 534 -0.5174 1.1427 1.7600 -73 535 -0.4572 1.1378 1.7600 -73 536 -0.3963 1.1309 1.7600 -73 537 -0.3368 1.1242 1.7600 -73 538 -0.2779 1.1176 1.7600 -73 539 -0.2181 1.1142 1.7600 -73 540 -0.1561 1.1131 1.7600 -73 541 -0.0972 1.1143 1.7600 -73 542 -0.0347 1.1179 1.7600 -73 543 0.0244 1.1214 1.7600 -73 544 0.0871 1.1284 1.7600 -73 545 0.1492 1.1366 1.7600 -73 546 0.2076 1.1464 1.7600 -73 547 0.2666 1.1570 1.7600 -73 548 0.3247 1.1655 1.7600 -73 549 0.3809 1.1746 1.7600 -73 550 0.4413 1.1797 1.7600 -73 551 0.5049 1.1839 1.7600 -73 552 0.5707 1.1868 1.7600 -73 553 0.6382 1.1865 1.7600 -73 554 0.7059 1.1869 1.7600 -73 555 0.7751 1.1830 1.7600 -73 556 0.8428 1.1794 1.7600 -73 557 0.9096 1.1771 1.7600 -73 558 0.9774 1.1762 1.7600 -73 559 1.0435 1.1783 1.7600 -73 560 1.1093 1.1806 1.7600 -73 561 1.1725 1.1849 1.7600 -73 562 1.2338 1.1912 1.7600 -73 563 1.2972 1.1971 1.7600 -73 564 1.3571 1.2038 1.7600 -73 565 1.4155 1.2114 1.7600 -73 566 1.4739 1.2185 1.7600 -73 567 1.5327 1.2222 1.7600 -73 568 1.5932 1.2243 1.7600 -73 569 1.6533 1.2225 1.7600 -73 570 1.7115 1.2228 1.7600 -73 571 1.7723 1.2200 1.7600 -73 572 1.8370 1.2164 1.7600 -73 573 1.9009 1.2131 1.7600 -73 574 1.9653 1.2094 1.7600 -73 575 2.0323 1.2058 1.7600 -73 576 2.0959 1.2040 1.7600 -73 577 2.1586 1.2053 1.7600 -73 578 2.2185 1.2084 1.7600 -73 579 2.2780 1.2114 1.7600 -73 580 2.3397 1.2163 1.7600 -73 581 2.3986 1.2196 1.7600 -73 582 2.4629 1.2245 1.7600 -73 583 2.5276 1.2275 1.7600 -73 584 2.5919 1.2320 1.7600 -73 585 2.6564 1.2347 1.7600 -73 586 2.7199 1.2379 1.7600 -73 587 2.7824 1.2389 1.7600 -73 588 2.8436 1.2377 1.7600 -73 589 2.9020 1.2349 1.7600 -73 590 2.9667 1.2295 1.7600 -73 591 3.0310 1.2268 1.7600 -73 592 3.0976 1.2204 1.7600 -73 593 3.1686 1.2145 1.7600 -73 594 3.2386 1.2125 1.7600 -73 595 3.3075 1.2150 1.7600 -73 596 3.3747 1.2193 1.7600 -73 597 3.4387 1.2233 1.7600 -73 598 3.5041 1.2279 1.7600 -73 599 3.5716 1.2329 1.7600 -73 600 3.6450 1.2368 1.7600 -73 601 3.7173 1.2392 1.7600 -73 602 3.7898 1.2409 1.7600 -73 603 3.8606 1.2450 1.7600 -73 604 3.9344 1.2455 1.7600 -73 605 4.0057 1.2459 1.7600 -73 606 4.0687 1.2471 1.7600 -73 607 4.1359 1.2451 1.7600 -73 608 4.2055 1.2436 1.7600 -73 609 4.2784 1.2462 1.7600 -73 610 4.3523 1.2488 1.7600 -73 611 4.4307 1.2552 1.7600 -73 612 4.5076 1.2641 1.7600 -73 613 4.5797 1.2751 1.7600 -73 614 4.6443 1.2865 1.7600 -73 615 4.7119 1.2989 1.7600 -73 616 4.7846 1.3132 1.7600 -73 617 4.8608 1.3272 1.7600 -73 618 4.9385 1.3426 1.7600 -73 619 5.0169 1.3584 1.7600 -73 620 5.0955 1.3726 1.7600 -73 621 5.1724 1.3853 1.7600 -73 622 5.2422 1.3930 1.7600 -73 623 5.3090 1.4002 1.7600 -73 624 5.3801 1.4077 1.7600 -73 625 5.4568 1.4137 1.7600 -73 626 5.5391 1.4217 1.7600 -73 627 5.6246 1.4281 1.7600 -73 628 5.7103 1.4354 1.7600 -73 629 5.7897 1.4456 1.7600 -73 630 5.8602 1.4553 1.7600 -73 631 5.9275 1.4642 1.7600 -74 408 -7.7764 1.1543 1.7600 -74 409 -7.7031 1.1345 1.7600 -74 410 -7.6286 1.1107 1.7600 -74 411 -7.5595 1.0837 1.7600 -74 412 -7.5003 1.0571 1.7600 -74 413 -7.4468 1.0337 1.7600 -74 414 -7.3947 1.0167 1.7600 -74 415 -7.3412 1.0044 1.7600 -74 416 -7.2829 0.9941 1.7600 -74 417 -7.2190 0.9828 1.7600 -74 418 -7.1501 0.9725 1.7600 -74 419 -7.0807 0.9646 1.7600 -74 420 -7.0141 0.9612 1.7600 -74 421 -6.9526 0.9603 1.7600 -74 422 -6.8990 0.9602 1.7600 -74 423 -6.8434 0.9575 1.7600 -74 424 -6.7886 0.9479 1.7600 -74 425 -6.7296 0.9347 1.7600 -74 426 -6.6670 0.9212 1.7600 -74 427 -6.6030 0.9063 1.7600 -74 428 -6.5383 0.8898 1.7600 -74 429 -6.4774 0.8703 1.7600 -74 430 -6.4203 0.8492 1.7600 -74 431 -6.3674 0.8304 1.7600 -74 432 -6.3174 0.8185 1.7600 -74 433 -6.2670 0.8104 1.7600 -74 434 -6.2150 0.8023 1.7600 -74 435 -6.1584 0.7969 1.7600 -74 436 -6.1001 0.7934 1.7600 -74 437 -6.0400 0.7908 1.7600 -74 438 -5.9814 0.7962 1.7600 -74 439 -5.9296 0.8022 1.7600 -74 440 -5.8822 0.8085 1.7600 -74 441 -5.8328 0.8117 1.7600 -74 442 -5.7834 0.8155 1.7600 -74 443 -5.7322 0.8113 1.7600 -74 444 -5.6796 0.8052 1.7600 -74 445 -5.6226 0.7995 1.7600 -74 446 -5.5654 0.7893 1.7600 -74 447 -5.5072 0.7769 1.7600 -74 448 -5.4531 0.7637 1.7600 -74 449 -5.4022 0.7487 1.7600 -74 450 -5.3521 0.7344 1.7600 -74 451 -5.3029 0.7262 1.7600 -74 452 -5.2551 0.7187 1.7600 -74 453 -5.2043 0.7134 1.7600 -74 454 -5.1514 0.7098 1.7600 -74 455 -5.0992 0.7066 1.7600 -74 456 -5.0451 0.7068 1.7600 -74 457 -4.9957 0.7135 1.7600 -74 458 -4.9546 0.7239 1.7600 -74 459 -4.9123 0.7324 1.7600 -74 460 -4.8717 0.7385 1.7600 -74 461 -4.8277 0.7337 1.7600 -74 462 -4.7823 0.7282 1.7600 -74 463 -4.7316 0.7202 1.7600 -74 464 -4.6807 0.7069 1.7600 -74 465 -4.6261 0.6914 1.7600 -74 466 -4.5738 0.6712 1.7600 -74 467 -4.5257 0.6515 1.7600 -74 468 -4.4781 0.6378 1.7600 -74 469 -4.4330 0.6270 1.7600 -74 470 -4.3876 0.6245 1.7600 -74 471 -4.3396 0.6226 1.7600 -74 472 -4.2856 0.6235 1.7600 -74 473 -4.2309 0.6272 1.7600 -74 474 -4.1741 0.6350 1.7600 -74 475 -4.1151 0.6456 1.7600 -74 476 -4.0574 0.6604 1.7600 -74 477 -4.0036 0.6738 1.7600 -74 478 -3.9491 0.6834 1.7600 -74 479 -3.8985 0.6852 1.7600 -74 480 -3.8452 0.6864 1.7600 -74 481 -3.7921 0.6863 1.7600 -74 482 -3.7342 0.6843 1.7600 -74 483 -3.6801 0.6786 1.7600 -74 484 -3.6236 0.6685 1.7600 -74 485 -3.5715 0.6558 1.7600 -74 486 -3.5164 0.6407 1.7600 -74 487 -3.4635 0.6345 1.7600 -74 488 -3.4079 0.6347 1.7600 -74 489 -3.3555 0.6383 1.7600 -74 490 -3.2956 0.6418 1.7600 -74 491 -3.2398 0.6480 1.7600 -74 492 -3.1797 0.6583 1.7600 -74 493 -3.1225 0.6709 1.7600 -74 494 -3.0644 0.6821 1.7600 -74 495 -3.0088 0.6944 1.7600 -74 496 -2.9540 0.7016 1.7600 -74 497 -2.9015 0.7032 1.7600 -74 498 -2.8445 0.7050 1.7600 -74 499 -2.7895 0.7034 1.7600 -74 500 -2.7299 0.6993 1.7600 -74 501 -2.6708 0.6914 1.7600 -74 502 -2.6110 0.6779 1.7600 -74 503 -2.5516 0.6607 1.7600 -74 504 -2.4886 0.6441 1.7600 -74 505 -2.4286 0.6341 1.7600 -74 506 -2.3697 0.6276 1.7600 -74 507 -2.3095 0.6249 1.7600 -74 508 -2.2469 0.6247 1.7600 -74 509 -2.1844 0.6246 1.7600 -74 510 -2.1235 0.6288 1.7600 -74 511 -2.0618 0.6355 1.7600 -74 512 -1.9978 0.6447 1.7600 -74 513 -1.9353 0.6506 1.7600 -74 514 -1.8772 0.6536 1.7600 -74 515 -1.8195 0.6479 1.7600 -74 516 -1.7610 0.6425 1.7600 -74 517 -1.6984 0.6364 1.7600 -74 518 -1.6313 0.6268 1.7600 -74 519 -1.5636 0.6133 1.7600 -74 520 -1.4986 0.5956 1.7600 -74 521 -1.4327 0.5783 1.7600 -74 522 -1.3652 0.5641 1.7600 -74 523 -1.2973 0.5539 1.7600 -74 524 -1.2310 0.5467 1.7600 -74 525 -1.1641 0.5421 1.7600 -74 526 -1.0984 0.5418 1.7600 -74 527 -1.0324 0.5439 1.7600 -74 528 -0.9655 0.5505 1.7600 -74 529 -0.8976 0.5617 1.7600 -74 530 -0.8312 0.5717 1.7600 -74 531 -0.7630 0.5781 1.7600 -74 532 -0.6937 0.5803 1.7600 -74 533 -0.6260 0.5791 1.7600 -74 534 -0.5566 0.5762 1.7600 -74 535 -0.4871 0.5726 1.7600 -74 536 -0.4148 0.5646 1.7600 -74 537 -0.3398 0.5515 1.7600 -74 538 -0.2685 0.5377 1.7600 -74 539 -0.2038 0.5264 1.7600 -74 540 -0.1449 0.5214 1.7600 -74 541 -0.0866 0.5221 1.7600 -74 542 -0.0279 0.5280 1.7600 -74 543 0.0355 0.5350 1.7600 -74 544 0.1033 0.5449 1.7600 -74 545 0.1715 0.5554 1.7600 -74 546 0.2386 0.5716 1.7600 -74 547 0.3001 0.5901 1.7600 -74 548 0.3596 0.6054 1.7600 -74 549 0.4200 0.6175 1.7600 -74 550 0.4802 0.6212 1.7600 -74 551 0.5430 0.6218 1.7600 -74 552 0.6071 0.6221 1.7600 -74 553 0.6718 0.6229 1.7600 -74 554 0.7369 0.6193 1.7600 -74 555 0.8020 0.6101 1.7600 -74 556 0.8657 0.5992 1.7600 -74 557 0.9257 0.5879 1.7600 -74 558 0.9851 0.5794 1.7600 -74 559 1.0418 0.5751 1.7600 -74 560 1.1015 0.5781 1.7600 -74 561 1.1606 0.5797 1.7600 -74 562 1.2231 0.5832 1.7600 -74 563 1.2856 0.5866 1.7600 -74 564 1.3472 0.5934 1.7600 -74 565 1.4057 0.6057 1.7600 -74 566 1.4625 0.6222 1.7600 -74 567 1.5216 0.6352 1.7600 -74 568 1.5752 0.6430 1.7600 -74 569 1.6334 0.6482 1.7600 -74 570 1.6921 0.6516 1.7600 -74 571 1.7507 0.6549 1.7600 -74 572 1.8110 0.6546 1.7600 -74 573 1.8703 0.6516 1.7600 -74 574 1.9278 0.6432 1.7600 -74 575 1.9819 0.6334 1.7600 -74 576 2.0376 0.6274 1.7600 -74 577 2.0926 0.6231 1.7600 -74 578 2.1493 0.6201 1.7600 -74 579 2.2095 0.6165 1.7600 -74 580 2.2721 0.6161 1.7600 -74 581 2.3346 0.6170 1.7600 -74 582 2.3952 0.6192 1.7600 -74 583 2.4554 0.6277 1.7600 -74 584 2.5139 0.6382 1.7600 -74 585 2.5720 0.6426 1.7600 -74 586 2.6292 0.6463 1.7600 -74 587 2.6864 0.6420 1.7600 -74 588 2.7464 0.6352 1.7600 -74 589 2.8083 0.6280 1.7600 -74 590 2.8723 0.6198 1.7600 -74 591 2.9351 0.6051 1.7600 -74 592 2.9942 0.5903 1.7600 -74 593 3.0500 0.5754 1.7600 -74 594 3.1072 0.5622 1.7600 -74 595 3.1654 0.5527 1.7600 -74 596 3.2252 0.5477 1.7600 -74 597 3.2896 0.5477 1.7600 -74 598 3.3536 0.5475 1.7600 -74 599 3.4198 0.5484 1.7600 -74 600 3.4836 0.5514 1.7600 -74 601 3.5495 0.5602 1.7600 -74 602 3.6156 0.5743 1.7600 -74 603 3.6817 0.5852 1.7600 -74 604 3.7500 0.5887 1.7600 -74 605 3.8190 0.5851 1.7600 -74 606 3.8894 0.5784 1.7600 -74 607 3.9568 0.5729 1.7600 -74 608 4.0219 0.5660 1.7600 -74 609 4.0877 0.5562 1.7600 -74 610 4.1478 0.5427 1.7600 -74 611 4.2126 0.5290 1.7600 -74 612 4.2767 0.5149 1.7600 -74 613 4.3452 0.5037 1.7600 -74 614 4.4127 0.4999 1.7600 -74 615 4.4842 0.5020 1.7600 -74 616 4.5496 0.5030 1.7600 -74 617 4.6142 0.5042 1.7600 -74 618 4.6779 0.5055 1.7600 -74 619 4.7458 0.5113 1.7600 -74 620 4.8162 0.5183 1.7600 -74 621 4.8835 0.5259 1.7600 -74 622 4.9496 0.5267 1.7600 -74 623 5.0142 0.5218 1.7600 -74 624 5.0780 0.5167 1.7600 -74 625 5.1395 0.5114 1.7600 -74 626 5.2003 0.5069 1.7600 -74 627 5.2602 0.4979 1.7600 -74 628 5.3198 0.4860 1.7600 -74 629 5.3785 0.4740 1.7600 -74 630 5.4421 0.4621 1.7600 -74 631 5.5090 0.4542 1.7600 -74 632 5.5818 0.4483 1.7600 -74 633 5.6545 0.4447 1.7600 -74 634 5.7210 0.4405 1.7600 -74 635 5.7814 0.4388 1.7600 -74 636 5.8368 0.4374 1.7600 -74 637 5.8904 0.4373 1.7600 -74 638 5.9485 0.4396 1.7600 -75 394 -7.7990 0.9727 1.7600 -75 395 -7.7533 0.9571 1.7600 -75 396 -7.7011 0.9363 1.7600 -75 397 -7.6405 0.9093 1.7600 -75 398 -7.5809 0.8821 1.7600 -75 399 -7.5125 0.8454 1.7600 -75 400 -7.4505 0.8066 1.7600 -75 401 -7.3939 0.7688 1.7600 -75 402 -7.3433 0.7406 1.7600 -75 403 -7.2962 0.7250 1.7600 -75 404 -7.2468 0.7154 1.7600 -75 405 -7.1910 0.7087 1.7600 -75 406 -7.1285 0.7054 1.7600 -75 407 -7.0624 0.7071 1.7600 -75 408 -6.9962 0.7128 1.7600 -75 409 -6.9316 0.7194 1.7600 -75 410 -6.8692 0.7252 1.7600 -75 411 -6.8103 0.7258 1.7600 -75 412 -6.7529 0.7186 1.7600 -75 413 -6.6928 0.7052 1.7600 -75 414 -6.6295 0.6876 1.7600 -75 415 -6.5641 0.6675 1.7600 -75 416 -6.4986 0.6446 1.7600 -75 417 -6.4362 0.6199 1.7600 -75 418 -6.3778 0.5959 1.7600 -75 419 -6.3205 0.5751 1.7600 -75 420 -6.2616 0.5602 1.7600 -75 421 -6.2041 0.5553 1.7600 -75 422 -6.1428 0.5573 1.7600 -75 423 -6.0816 0.5653 1.7600 -75 424 -6.0173 0.5771 1.7600 -75 425 -5.9571 0.5979 1.7600 -75 426 -5.9031 0.6185 1.7600 -75 427 -5.8528 0.6368 1.7600 -75 428 -5.8063 0.6464 1.7600 -75 429 -5.7572 0.6476 1.7600 -75 430 -5.7061 0.6403 1.7600 -75 431 -5.6589 0.6287 1.7600 -75 432 -5.6111 0.6101 1.7600 -75 433 -5.5621 0.5856 1.7600 -75 434 -5.5162 0.5585 1.7600 -75 435 -5.4732 0.5276 1.7600 -75 436 -5.4276 0.4948 1.7600 -75 437 -5.3772 0.4689 1.7600 -75 438 -5.3228 0.4519 1.7600 -75 439 -5.2644 0.4418 1.7600 -75 440 -5.2033 0.4358 1.7600 -75 441 -5.1415 0.4360 1.7600 -75 442 -5.0785 0.4410 1.7600 -75 443 -5.0141 0.4525 1.7600 -75 444 -4.9486 0.4643 1.7600 -75 445 -4.8879 0.4743 1.7600 -75 446 -4.8294 0.4813 1.7600 -75 447 -4.7751 0.4847 1.7600 -75 448 -4.7236 0.4812 1.7600 -75 449 -4.6740 0.4765 1.7600 -75 450 -4.6265 0.4712 1.7600 -75 451 -4.5816 0.4608 1.7600 -75 452 -4.5345 0.4473 1.7600 -75 453 -4.4911 0.4282 1.7600 -75 454 -4.4533 0.4044 1.7600 -75 455 -4.4127 0.3775 1.7600 -75 456 -4.3679 0.3501 1.7600 -75 457 -4.3239 0.3291 1.7600 -75 458 -4.2742 0.3126 1.7600 -75 459 -4.2233 0.3033 1.7600 -75 460 -4.1708 0.3007 1.7600 -75 461 -4.1194 0.2996 1.7600 -75 462 -4.0671 0.3016 1.7600 -75 463 -4.0137 0.3092 1.7600 -75 464 -3.9611 0.3205 1.7600 -75 465 -3.9056 0.3360 1.7600 -75 466 -3.8461 0.3537 1.7600 -75 467 -3.7899 0.3689 1.7600 -75 468 -3.7361 0.3796 1.7600 -75 469 -3.6806 0.3838 1.7600 -75 470 -3.6288 0.3831 1.7600 -75 471 -3.5752 0.3797 1.7600 -75 472 -3.5202 0.3747 1.7600 -75 473 -3.4651 0.3670 1.7600 -75 474 -3.4104 0.3541 1.7600 -75 475 -3.3493 0.3359 1.7600 -75 476 -3.3007 0.3112 1.7600 -75 477 -3.2506 0.2931 1.7600 -75 478 -3.2078 0.2902 1.7600 -75 479 -3.1644 0.2879 1.7600 -75 480 -3.1200 0.2922 1.7600 -75 481 -3.0816 0.2987 1.7600 -75 482 -3.0426 0.3048 1.7600 -75 483 -3.0055 0.3146 1.7600 -75 484 -2.9612 0.3272 1.7600 -75 485 -2.9132 0.3477 1.7600 -75 486 -2.8687 0.3693 1.7600 -75 487 -2.8250 0.3851 1.7600 -75 488 -2.7814 0.3908 1.7600 -75 489 -2.7395 0.3898 1.7600 -75 490 -2.6941 0.3827 1.7600 -75 491 -2.6472 0.3708 1.7600 -75 492 -2.5971 0.3498 1.7600 -75 493 -2.5407 0.3280 1.7600 -75 494 -2.4764 0.3007 1.7600 -75 495 -2.4090 0.2726 1.7600 -75 496 -2.3422 0.2569 1.7600 -75 497 -2.2803 0.2495 1.7600 -75 498 -2.2215 0.2528 1.7600 -75 499 -2.1671 0.2635 1.7600 -75 500 -2.1149 0.2810 1.7600 -75 501 -2.0635 0.3037 1.7600 -75 502 -2.0100 0.3358 1.7600 -75 503 -1.9499 0.3723 1.7600 -75 504 -1.8858 0.4053 1.7600 -75 505 -1.8188 0.4266 1.7600 -75 506 -1.7516 0.4365 1.7600 -75 507 -1.6858 0.4374 1.7600 -75 508 -1.6208 0.4327 1.7600 -75 509 -1.5559 0.4221 1.7600 -75 510 -1.4921 0.4024 1.7600 -75 511 -1.4265 0.3765 1.7600 -75 512 -1.3605 0.3468 1.7600 -75 513 -1.2946 0.3207 1.7600 -75 514 -1.2285 0.3064 1.7600 -75 515 -1.1634 0.3023 1.7600 -75 516 -1.1001 0.3069 1.7600 -75 517 -1.0359 0.3163 1.7600 -75 518 -0.9687 0.3348 1.7600 -75 519 -0.8999 0.3607 1.7600 -75 520 -0.8295 0.3887 1.7600 -75 521 -0.7553 0.4143 1.7600 -75 522 -0.6790 0.4269 1.7600 -75 523 -0.6004 0.4269 1.7600 -75 524 -0.5176 0.4121 1.7600 -75 525 -0.4351 0.3920 1.7600 -75 526 -0.3555 0.3676 1.7600 -75 527 -0.2781 0.3400 1.7600 -75 528 -0.2004 0.3111 1.7600 -75 529 -0.1215 0.2788 1.7600 -75 530 -0.0439 0.2512 1.7600 -75 531 0.0348 0.2395 1.7600 -75 532 0.1137 0.2455 1.7600 -75 533 0.1882 0.2587 1.7600 -75 534 0.2570 0.2764 1.7600 -75 535 0.3196 0.3010 1.7600 -75 536 0.3776 0.3268 1.7600 -75 537 0.4336 0.3583 1.7600 -75 538 0.4862 0.3880 1.7600 -75 539 0.5383 0.4128 1.7600 -75 540 0.5940 0.4280 1.7600 -75 541 0.6511 0.4271 1.7600 -75 542 0.7079 0.4258 1.7600 -75 543 0.7664 0.4230 1.7600 -75 544 0.8249 0.4184 1.7600 -75 545 0.8829 0.4115 1.7600 -75 546 0.9389 0.3983 1.7600 -75 547 0.9981 0.3795 1.7600 -75 548 1.0590 0.3617 1.7600 -75 549 1.1164 0.3521 1.7600 -75 550 1.1701 0.3508 1.7600 -75 551 1.2201 0.3570 1.7600 -75 552 1.2634 0.3651 1.7600 -75 553 1.3058 0.3766 1.7600 -75 554 1.3451 0.3922 1.7600 -75 555 1.3872 0.4133 1.7600 -75 556 1.4280 0.4349 1.7600 -75 557 1.4720 0.4554 1.7600 -75 558 1.5199 0.4699 1.7600 -75 559 1.5701 0.4740 1.7600 -75 560 1.6229 0.4755 1.7600 -75 561 1.6787 0.4713 1.7600 -75 562 1.7362 0.4634 1.7600 -75 563 1.7950 0.4492 1.7600 -75 564 1.8528 0.4341 1.7600 -75 565 1.9130 0.4141 1.7600 -75 566 1.9713 0.3972 1.7600 -75 567 2.0280 0.3849 1.7600 -75 568 2.0860 0.3811 1.7600 -75 569 2.1428 0.3836 1.7600 -75 570 2.1993 0.3900 1.7600 -75 571 2.2565 0.4012 1.7600 -75 572 2.3130 0.4171 1.7600 -75 573 2.3707 0.4346 1.7600 -75 574 2.4270 0.4496 1.7600 -75 575 2.4871 0.4563 1.7600 -75 576 2.5469 0.4549 1.7600 -75 577 2.6075 0.4484 1.7600 -75 578 2.6685 0.4390 1.7600 -75 579 2.7286 0.4258 1.7600 -75 580 2.7907 0.4097 1.7600 -75 581 2.8542 0.3902 1.7600 -75 582 2.9182 0.3684 1.7600 -75 583 2.9852 0.3504 1.7600 -75 584 3.0486 0.3404 1.7600 -75 585 3.1108 0.3382 1.7600 -75 586 3.1689 0.3420 1.7600 -75 587 3.2278 0.3504 1.7600 -75 588 3.2843 0.3627 1.7600 -75 589 3.3424 0.3817 1.7600 -75 590 3.4059 0.4041 1.7600 -75 591 3.4704 0.4244 1.7600 -75 592 3.5351 0.4381 1.7600 -75 593 3.6049 0.4386 1.7600 -75 594 3.6744 0.4284 1.7600 -75 595 3.7388 0.4114 1.7600 -75 596 3.7995 0.3940 1.7600 -75 597 3.8614 0.3734 1.7600 -75 598 3.9283 0.3498 1.7600 -75 599 3.9955 0.3218 1.7600 -75 600 4.0656 0.2936 1.7600 -75 601 4.1352 0.2702 1.7600 -75 602 4.2024 0.2590 1.7600 -75 603 4.2698 0.2541 1.7600 -75 604 4.3343 0.2567 1.7600 -75 605 4.3967 0.2647 1.7600 -75 606 4.4532 0.2737 1.7600 -75 607 4.5141 0.2901 1.7600 -75 608 4.5757 0.3058 1.7600 -75 609 4.6420 0.3206 1.7600 -75 610 4.7086 0.3255 1.7600 -75 611 4.7767 0.3191 1.7600 -75 612 4.8388 0.3039 1.7600 -75 613 4.8959 0.2897 1.7600 -75 614 4.9521 0.2730 1.7600 -75 615 5.0095 0.2528 1.7600 -75 616 5.0706 0.2297 1.7600 -75 617 5.1343 0.2028 1.7600 -75 618 5.2035 0.1788 1.7600 -75 619 5.2714 0.1635 1.7600 -75 620 5.3389 0.1614 1.7600 -75 621 5.3978 0.1601 1.7600 -75 622 5.4484 0.1618 1.7600 -75 623 5.5014 0.1583 1.7600 -75 624 5.5505 0.1682 1.7600 -75 625 5.6025 0.1817 1.7600 -75 626 5.6615 0.1935 1.7600 -75 627 5.7254 0.2014 1.7600 -75 628 5.7973 0.2005 1.7600 -75 629 5.8729 0.1940 1.7600 -75 630 5.9470 0.1849 1.7600 -76 408 -7.8146 2.1401 1.7600 -76 409 -7.7569 2.1443 1.7600 -76 410 -7.6943 2.1459 1.7600 -76 411 -7.6237 2.1458 1.7600 -76 412 -7.5524 2.1467 1.7600 -76 413 -7.4825 2.1490 1.7600 -76 414 -7.4164 2.1527 1.7600 -76 415 -7.3526 2.1537 1.7600 -76 416 -7.2943 2.1491 1.7600 -76 417 -7.2399 2.1386 1.7600 -76 418 -7.1834 2.1219 1.7600 -76 419 -7.1212 2.1025 1.7600 -76 420 -7.0542 2.0813 1.7600 -76 421 -6.9836 2.0578 1.7600 -76 422 -6.9116 2.0321 1.7600 -76 423 -6.8420 2.0054 1.7600 -76 424 -6.7767 1.9818 1.7600 -76 425 -6.7144 1.9629 1.7600 -76 426 -6.6567 1.9497 1.7600 -76 427 -6.6005 1.9412 1.7600 -76 428 -6.5407 1.9332 1.7600 -76 429 -6.4764 1.9232 1.7600 -76 430 -6.4067 1.9120 1.7600 -76 431 -6.3339 1.9013 1.7600 -76 432 -6.2618 1.8928 1.7600 -76 433 -6.1944 1.8851 1.7600 -76 434 -6.1307 1.8754 1.7600 -76 435 -6.0732 1.8625 1.7600 -76 436 -6.0269 1.8477 1.7600 -76 437 -5.9733 1.8319 1.7600 -76 438 -5.9180 1.8120 1.7600 -76 439 -5.8581 1.7901 1.7600 -76 440 -5.7937 1.7639 1.7600 -76 441 -5.7309 1.7358 1.7600 -76 442 -5.6688 1.7034 1.7600 -76 443 -5.6103 1.6708 1.7600 -76 444 -5.5549 1.6455 1.7600 -76 445 -5.5043 1.6305 1.7600 -76 446 -5.4578 1.6231 1.7600 -76 447 -5.4115 1.6162 1.7600 -76 448 -5.3630 1.6102 1.7600 -76 449 -5.3129 1.6037 1.7600 -76 450 -5.2598 1.6018 1.7600 -76 451 -5.2051 1.6016 1.7600 -76 452 -5.1496 1.6021 1.7600 -76 453 -5.0926 1.6063 1.7600 -76 454 -5.0378 1.6076 1.7600 -76 455 -4.9867 1.6062 1.7600 -76 456 -4.9373 1.6060 1.7600 -76 457 -4.8908 1.5990 1.7600 -76 458 -4.8428 1.5886 1.7600 -76 459 -4.7964 1.5779 1.7600 -76 460 -4.7469 1.5678 1.7600 -76 461 -4.6949 1.5568 1.7600 -76 462 -4.6379 1.5436 1.7600 -76 463 -4.5789 1.5269 1.7600 -76 464 -4.5148 1.5081 1.7600 -76 465 -4.4529 1.4932 1.7600 -76 466 -4.3996 1.4878 1.7600 -76 467 -4.3457 1.4946 1.7600 -76 468 -4.2948 1.5062 1.7600 -76 469 -4.2417 1.5178 1.7600 -76 470 -4.1877 1.5304 1.7600 -76 471 -4.1298 1.5412 1.7600 -76 472 -4.0689 1.5490 1.7600 -76 473 -3.9994 1.5561 1.7600 -76 474 -3.9324 1.5738 1.7600 -76 475 -3.8699 1.5900 1.7600 -76 476 -3.8147 1.5976 1.7600 -76 477 -3.7560 1.5919 1.7600 -76 478 -3.6984 1.5824 1.7600 -76 479 -3.6373 1.5693 1.7600 -76 480 -3.5785 1.5535 1.7600 -76 481 -3.5164 1.5390 1.7600 -76 482 -3.4487 1.5198 1.7600 -76 483 -3.3732 1.5022 1.7600 -76 484 -3.2948 1.4855 1.7600 -76 485 -3.2250 1.4761 1.7600 -76 486 -3.1575 1.4763 1.7600 -76 487 -3.0905 1.4859 1.7600 -76 488 -3.0242 1.4991 1.7600 -76 489 -2.9625 1.5075 1.7600 -76 490 -2.8929 1.5153 1.7600 -76 491 -2.8172 1.5233 1.7600 -76 492 -2.7345 1.5372 1.7600 -76 493 -2.6446 1.5557 1.7600 -76 494 -2.5577 1.5749 1.7600 -76 495 -2.4797 1.5836 1.7600 -76 496 -2.4057 1.5802 1.7600 -76 497 -2.3367 1.5713 1.7600 -76 498 -2.2657 1.5582 1.7600 -76 499 -2.1978 1.5400 1.7600 -76 500 -2.1284 1.5184 1.7600 -76 501 -2.0604 1.4954 1.7600 -76 502 -1.9761 1.4718 1.7600 -76 503 -1.9020 1.4538 1.7600 -76 504 -1.8344 1.4479 1.7600 -76 505 -1.7689 1.4603 1.7600 -76 506 -1.7069 1.4862 1.7600 -76 507 -1.6486 1.5051 1.7600 -76 508 -1.5957 1.5215 1.7600 -76 509 -1.5329 1.5355 1.7600 -76 510 -1.4671 1.5502 1.7600 -76 511 -1.3955 1.5683 1.7600 -76 512 -1.3220 1.5887 1.7600 -76 513 -1.2519 1.6049 1.7600 -76 514 -1.1848 1.6097 1.7600 -76 515 -1.1253 1.6067 1.7600 -76 516 -1.0678 1.5978 1.7600 -76 517 -1.0079 1.5868 1.7600 -76 518 -0.9419 1.5745 1.7600 -76 519 -0.8747 1.5599 1.7600 -76 520 -0.8092 1.5431 1.7600 -76 521 -0.7374 1.5241 1.7600 -76 522 -0.6710 1.5053 1.7600 -76 523 -0.6107 1.4937 1.7600 -76 524 -0.5589 1.4983 1.7600 -76 525 -0.5075 1.5021 1.7600 -76 526 -0.4561 1.5068 1.7600 -76 527 -0.3991 1.5059 1.7600 -76 528 -0.3362 1.5074 1.7600 -76 529 -0.2701 1.5109 1.7600 -76 530 -0.1983 1.5187 1.7600 -76 531 -0.1262 1.5322 1.7600 -76 532 -0.0604 1.5447 1.7600 -76 533 0.0054 1.5506 1.7600 -76 534 0.0687 1.5506 1.7600 -76 535 0.1303 1.5465 1.7600 -76 536 0.2002 1.5400 1.7600 -76 537 0.2738 1.5307 1.7600 -76 538 0.3535 1.5203 1.7600 -76 539 0.4336 1.5057 1.7600 -76 540 0.5126 1.4908 1.7600 -76 541 0.5889 1.4741 1.7600 -76 542 0.6525 1.4685 1.7600 -76 543 0.7153 1.4740 1.7600 -76 544 0.7791 1.4868 1.7600 -76 545 0.8428 1.4997 1.7600 -76 546 0.9064 1.5116 1.7600 -76 547 0.9746 1.5251 1.7600 -76 548 1.0507 1.5413 1.7600 -76 549 1.1259 1.5609 1.7600 -76 550 1.2007 1.5832 1.7600 -76 551 1.2650 1.5975 1.7600 -76 552 1.3270 1.6046 1.7600 -76 553 1.3856 1.6065 1.7600 -76 554 1.4474 1.6077 1.7600 -76 555 1.5116 1.6065 1.7600 -76 556 1.5768 1.6024 1.7600 -76 557 1.6417 1.5939 1.7600 -76 558 1.7063 1.5813 1.7600 -76 559 1.7693 1.5646 1.7600 -76 560 1.8285 1.5504 1.7600 -76 561 1.8861 1.5434 1.7600 -76 562 1.9463 1.5426 1.7600 -76 563 2.0050 1.5480 1.7600 -76 564 2.0642 1.5539 1.7600 -76 565 2.1225 1.5633 1.7600 -76 566 2.1826 1.5779 1.7600 -76 567 2.2496 1.5979 1.7600 -76 568 2.3205 1.6228 1.7600 -76 569 2.3888 1.6492 1.7600 -76 570 2.4519 1.6709 1.7600 -76 571 2.5107 1.6807 1.7600 -76 572 2.5700 1.6775 1.7600 -76 573 2.6303 1.6710 1.7600 -76 574 2.6893 1.6627 1.7600 -76 575 2.7504 1.6555 1.7600 -76 576 2.8138 1.6448 1.7600 -76 577 2.8800 1.6302 1.7600 -76 578 2.9533 1.6155 1.7600 -76 579 3.0299 1.5970 1.7600 -76 580 3.0982 1.5836 1.7600 -76 581 3.1620 1.5798 1.7600 -76 582 3.2227 1.5813 1.7600 -76 583 3.2829 1.5871 1.7600 -76 584 3.3463 1.5889 1.7600 -76 585 3.4136 1.5926 1.7600 -76 586 3.4874 1.6011 1.7600 -76 587 3.5662 1.6153 1.7600 -76 588 3.6508 1.6317 1.7600 -76 589 3.7289 1.6462 1.7600 -76 590 3.8032 1.6499 1.7600 -76 591 3.8777 1.6516 1.7600 -76 592 3.9479 1.6529 1.7600 -76 593 4.0164 1.6531 1.7600 -76 594 4.0856 1.6528 1.7600 -76 595 4.1545 1.6501 1.7600 -76 596 4.2284 1.6451 1.7600 -76 597 4.3132 1.6369 1.7600 -76 598 4.3971 1.6266 1.7600 -76 599 4.4757 1.6241 1.7600 -76 600 4.5570 1.6353 1.7600 -76 601 4.6343 1.6507 1.7600 -76 602 4.7079 1.6673 1.7600 -76 603 4.7803 1.6871 1.7600 -76 604 4.8520 1.7082 1.7600 -76 605 4.9315 1.7290 1.7600 -76 606 5.0157 1.7503 1.7600 -76 607 5.1021 1.7759 1.7600 -76 608 5.1822 1.7936 1.7600 -76 609 5.2614 1.8079 1.7600 -76 610 5.3348 1.8169 1.7600 -76 611 5.4052 1.8190 1.7600 -76 612 5.4762 1.8210 1.7600 -76 613 5.5489 1.8223 1.7600 -76 614 5.6230 1.8211 1.7600 -76 615 5.7052 1.8194 1.7600 -76 616 5.7889 1.8230 1.7600 -76 617 5.8753 1.8328 1.7600 -77 438 -7.8164 2.3268 1.7600 -77 439 -7.7581 2.3418 1.7600 -77 440 -7.7028 2.3415 1.7600 -77 441 -7.6429 2.3418 1.7600 -77 442 -7.5886 2.3337 1.7600 -77 443 -7.5355 2.3232 1.7600 -77 444 -7.4794 2.3104 1.7600 -77 445 -7.4206 2.2927 1.7600 -77 446 -7.3627 2.2704 1.7600 -77 447 -7.3071 2.2440 1.7600 -77 448 -7.2560 2.2152 1.7600 -77 449 -7.2019 2.1897 1.7600 -77 450 -7.1513 2.1705 1.7600 -77 451 -7.0989 2.1557 1.7600 -77 452 -7.0457 2.1493 1.7600 -77 453 -6.9919 2.1441 1.7600 -77 454 -6.9328 2.1365 1.7600 -77 455 -6.8657 2.1306 1.7600 -77 456 -6.7916 2.1255 1.7600 -77 457 -6.7192 2.1238 1.7600 -77 458 -6.6443 2.1241 1.7600 -77 459 -6.5744 2.1315 1.7600 -77 460 -6.5103 2.1341 1.7600 -77 461 -6.4496 2.1391 1.7600 -77 462 -6.3868 2.1336 1.7600 -77 463 -6.3258 2.1259 1.7600 -77 464 -6.2609 2.1159 1.7600 -77 465 -6.1944 2.1013 1.7600 -77 466 -6.1232 2.0861 1.7600 -77 467 -6.0474 2.0611 1.7600 -77 468 -5.9768 2.0353 1.7600 -77 469 -5.9109 2.0089 1.7600 -77 470 -5.8473 1.9832 1.7600 -77 471 -5.7909 1.9663 1.7600 -77 472 -5.7322 1.9606 1.7600 -77 473 -5.6745 1.9619 1.7600 -77 474 -5.6149 1.9616 1.7600 -77 475 -5.5587 1.9661 1.7600 -77 476 -5.4945 1.9679 1.7600 -77 477 -5.4262 1.9687 1.7600 -77 478 -5.3544 1.9720 1.7600 -77 479 -5.2818 1.9753 1.7600 -77 480 -5.2096 1.9793 1.7600 -77 481 -5.1519 1.9795 1.7600 -77 482 -5.0977 1.9723 1.7600 -77 483 -5.0440 1.9595 1.7600 -77 484 -4.9905 1.9480 1.7600 -77 485 -4.9422 1.9316 1.7600 -77 486 -4.8950 1.9124 1.7600 -77 487 -4.8459 1.8845 1.7600 -77 488 -4.7947 1.8540 1.7600 -77 489 -4.7446 1.8174 1.7600 -77 490 -4.6971 1.7788 1.7600 -77 491 -4.6518 1.7363 1.7600 -77 492 -4.6104 1.6966 1.7600 -77 493 -4.5680 1.6609 1.7600 -77 494 -4.5196 1.6327 1.7600 -77 495 -4.4717 1.6141 1.7600 -77 496 -4.4229 1.5954 1.7600 -77 497 -4.3717 1.5768 1.7600 -77 498 -4.3183 1.5606 1.7600 -77 499 -4.2595 1.5455 1.7600 -77 500 -4.2001 1.5366 1.7600 -77 501 -4.1392 1.5347 1.7600 -77 502 -4.0766 1.5366 1.7600 -77 503 -4.0113 1.5411 1.7600 -77 504 -3.9526 1.5448 1.7600 -77 505 -3.8992 1.5474 1.7600 -77 506 -3.8481 1.5386 1.7600 -77 507 -3.7976 1.5260 1.7600 -77 508 -3.7435 1.5131 1.7600 -77 509 -3.6830 1.5055 1.7600 -77 510 -3.6210 1.4926 1.7600 -77 511 -3.5567 1.4769 1.7600 -77 512 -3.4934 1.4504 1.7600 -77 513 -3.4279 1.4238 1.7600 -77 514 -3.3642 1.3987 1.7600 -77 515 -3.3055 1.3806 1.7600 -77 516 -3.2509 1.3726 1.7600 -77 517 -3.1896 1.3737 1.7600 -77 518 -3.1307 1.3825 1.7600 -77 519 -3.0730 1.3915 1.7600 -77 520 -3.0130 1.4020 1.7600 -77 521 -2.9542 1.4149 1.7600 -77 522 -2.8978 1.4296 1.7600 -77 523 -2.8345 1.4520 1.7600 -77 524 -2.7730 1.4707 1.7600 -77 525 -2.7088 1.5002 1.7600 -77 526 -2.6499 1.5152 1.7600 -77 527 -2.5882 1.5217 1.7600 -77 528 -2.5252 1.5257 1.7600 -77 529 -2.4630 1.5272 1.7600 -77 530 -2.4035 1.5271 1.7600 -77 531 -2.3428 1.5245 1.7600 -77 532 -2.2799 1.5202 1.7600 -77 533 -2.2157 1.5135 1.7600 -77 534 -2.1511 1.5035 1.7600 -77 535 -2.0814 1.4891 1.7600 -77 536 -2.0136 1.4777 1.7600 -77 537 -1.9502 1.4582 1.7600 -77 538 -1.8836 1.4477 1.7600 -77 539 -1.8132 1.4521 1.7600 -77 540 -1.7515 1.4621 1.7600 -77 541 -1.6951 1.4739 1.7600 -77 542 -1.6372 1.4865 1.7600 -77 543 -1.5781 1.5000 1.7600 -77 544 -1.5181 1.5183 1.7600 -77 545 -1.4568 1.5315 1.7600 -77 546 -1.3901 1.5477 1.7600 -77 547 -1.3238 1.5626 1.7600 -77 548 -1.2597 1.5734 1.7600 -77 549 -1.1893 1.5730 1.7600 -77 550 -1.1154 1.5607 1.7600 -77 551 -1.0476 1.5438 1.7600 -77 552 -0.9835 1.5258 1.7600 -77 553 -0.9119 1.5043 1.7600 -77 554 -0.8436 1.4860 1.7600 -77 555 -0.7706 1.4599 1.7600 -77 556 -0.6985 1.4298 1.7600 -77 557 -0.6296 1.4048 1.7600 -77 558 -0.5683 1.3868 1.7600 -77 559 -0.5096 1.3806 1.7600 -77 560 -0.4517 1.3839 1.7600 -77 561 -0.3954 1.3850 1.7600 -77 562 -0.3377 1.3868 1.7600 -77 563 -0.2703 1.3883 1.7600 -77 564 -0.2041 1.3913 1.7600 -77 565 -0.1383 1.3990 1.7600 -77 566 -0.0716 1.4109 1.7600 -77 567 -0.0056 1.4276 1.7600 -77 568 0.0560 1.4388 1.7600 -77 569 0.1087 1.4427 1.7600 -77 570 0.1681 1.4389 1.7600 -77 571 0.2318 1.4298 1.7600 -77 572 0.2944 1.4165 1.7600 -77 573 0.3569 1.4056 1.7600 -77 574 0.4207 1.3927 1.7600 -77 575 0.4875 1.3832 1.7600 -77 576 0.5583 1.3716 1.7600 -77 577 0.6274 1.3573 1.7600 -77 578 0.6944 1.3422 1.7600 -77 579 0.7548 1.3286 1.7600 -77 580 0.8135 1.3220 1.7600 -77 581 0.8789 1.3251 1.7600 -77 582 0.9472 1.3386 1.7600 -77 583 1.0104 1.3561 1.7600 -77 584 1.0769 1.3734 1.7600 -77 585 1.1446 1.3915 1.7600 -77 586 1.2094 1.4100 1.7600 -77 587 1.2765 1.4348 1.7600 -77 588 1.3435 1.4616 1.7600 -77 589 1.4077 1.4881 1.7600 -77 590 1.4623 1.5072 1.7600 -77 591 1.5145 1.5201 1.7600 -77 592 1.5732 1.5284 1.7600 -77 593 1.6317 1.5354 1.7600 -77 594 1.6858 1.5370 1.7600 -77 595 1.7415 1.5358 1.7600 -77 596 1.7995 1.5307 1.7600 -77 597 1.8607 1.5225 1.7600 -77 598 1.9221 1.5082 1.7600 -77 599 1.9812 1.4899 1.7600 -77 600 2.0432 1.4717 1.7600 -77 601 2.0947 1.4591 1.7600 -77 602 2.1481 1.4551 1.7600 -77 603 2.2062 1.4602 1.7600 -77 604 2.2663 1.4688 1.7600 -77 605 2.3222 1.4816 1.7600 -77 606 2.3792 1.4986 1.7600 -77 607 2.4377 1.5159 1.7600 -77 608 2.4959 1.5352 1.7600 -77 609 2.5518 1.5549 1.7600 -77 610 2.6127 1.5738 1.7600 -77 611 2.6687 1.5905 1.7600 -77 612 2.7257 1.5999 1.7600 -77 613 2.7837 1.6012 1.7600 -77 614 2.8464 1.5941 1.7600 -77 615 2.9076 1.5810 1.7600 -77 616 2.9710 1.5624 1.7600 -77 617 3.0394 1.5370 1.7600 -77 618 3.1125 1.5106 1.7600 -77 619 3.1873 1.4869 1.7600 -77 620 3.2563 1.4644 1.7600 -77 621 3.3206 1.4469 1.7600 -77 622 3.3915 1.4430 1.7600 -77 623 3.4654 1.4457 1.7600 -77 624 3.5365 1.4518 1.7600 -77 625 3.6063 1.4620 1.7600 -77 626 3.6779 1.4743 1.7600 -77 627 3.7456 1.4887 1.7600 -77 628 3.8179 1.5065 1.7600 -77 629 3.8943 1.5271 1.7600 -77 630 3.9723 1.5457 1.7600 -77 631 4.0504 1.5553 1.7600 -77 632 4.1196 1.5612 1.7600 -77 633 4.1990 1.5561 1.7600 -77 634 4.2727 1.5489 1.7600 -77 635 4.3414 1.5450 1.7600 -77 636 4.4066 1.5406 1.7600 -77 637 4.4733 1.5328 1.7600 -77 638 4.5463 1.5281 1.7600 -77 639 4.6308 1.5234 1.7600 -77 640 4.7108 1.5219 1.7600 -77 641 4.7938 1.5293 1.7600 -77 642 4.8764 1.5439 1.7600 -77 643 4.9534 1.5630 1.7600 -77 644 5.0248 1.5858 1.7600 -77 645 5.0885 1.6083 1.7600 -77 646 5.1551 1.6322 1.7600 -77 647 5.2247 1.6576 1.7600 -77 648 5.3009 1.6841 1.7600 -77 649 5.3871 1.7089 1.7600 -77 650 5.4716 1.7220 1.7600 -77 651 5.5583 1.7292 1.7600 -77 652 5.6470 1.7307 1.7600 -77 653 5.7280 1.7313 1.7600 -77 654 5.8031 1.7253 1.7600 -77 655 5.8749 1.7164 1.7600 -77 656 5.9454 1.7051 1.7600 -78 417 -7.8135 1.7199 1.7600 -78 418 -7.7390 1.6931 1.7600 -78 419 -7.6571 1.6530 1.7600 -78 420 -7.5949 1.6272 1.7600 -78 421 -7.5371 1.6036 1.7600 -78 422 -7.4807 1.5862 1.7600 -78 423 -7.4234 1.5750 1.7600 -78 424 -7.3609 1.5679 1.7600 -78 425 -7.2927 1.5616 1.7600 -78 426 -7.2210 1.5567 1.7600 -78 427 -7.1500 1.5529 1.7600 -78 428 -7.0837 1.5489 1.7600 -78 429 -7.0244 1.5479 1.7600 -78 430 -6.9679 1.5485 1.7600 -78 431 -6.9127 1.5481 1.7600 -78 432 -6.8597 1.5426 1.7600 -78 433 -6.8042 1.5310 1.7600 -78 434 -6.7445 1.5155 1.7600 -78 435 -6.6816 1.4993 1.7600 -78 436 -6.6171 1.4813 1.7600 -78 437 -6.5520 1.4600 1.7600 -78 438 -6.4909 1.4348 1.7600 -78 439 -6.4349 1.4067 1.7600 -78 440 -6.3811 1.3771 1.7600 -78 441 -6.3276 1.3502 1.7600 -78 442 -6.2750 1.3302 1.7600 -78 443 -6.2217 1.3168 1.7600 -78 444 -6.1676 1.3076 1.7600 -78 445 -6.1120 1.3004 1.7600 -78 446 -6.0545 1.2954 1.7600 -78 447 -5.9985 1.2930 1.7600 -78 448 -5.9468 1.2944 1.7600 -78 449 -5.8969 1.2978 1.7600 -78 450 -5.8468 1.2989 1.7600 -78 451 -5.8021 1.2979 1.7600 -78 452 -5.7621 1.2933 1.7600 -78 453 -5.7240 1.2818 1.7600 -78 454 -5.6867 1.2688 1.7600 -78 455 -5.6449 1.2535 1.7600 -78 456 -5.6015 1.2357 1.7600 -78 457 -5.5570 1.2142 1.7600 -78 458 -5.5120 1.1890 1.7600 -78 459 -5.4686 1.1617 1.7600 -78 460 -5.4324 1.1327 1.7600 -78 461 -5.3880 1.1145 1.7600 -78 462 -5.3534 1.1017 1.7600 -78 463 -5.3130 1.0965 1.7600 -78 464 -5.2733 1.0882 1.7600 -78 465 -5.2332 1.0859 1.7600 -78 466 -5.1907 1.0853 1.7600 -78 467 -5.1474 1.0856 1.7600 -78 468 -5.1033 1.0899 1.7600 -78 469 -5.0608 1.0989 1.7600 -78 470 -5.0183 1.1122 1.7600 -78 471 -4.9773 1.1240 1.7600 -78 472 -4.9402 1.1343 1.7600 -78 473 -4.9011 1.1413 1.7600 -78 474 -4.8626 1.1469 1.7600 -78 475 -4.8224 1.1465 1.7600 -78 476 -4.7783 1.1432 1.7600 -78 477 -4.7330 1.1354 1.7600 -78 478 -4.6819 1.1244 1.7600 -78 479 -4.6290 1.1133 1.7600 -78 480 -4.5746 1.0961 1.7600 -78 481 -4.5178 1.0765 1.7600 -78 482 -4.4624 1.0522 1.7600 -78 483 -4.4078 1.0314 1.7600 -78 484 -4.3536 1.0129 1.7600 -78 485 -4.2973 1.0036 1.7600 -78 486 -4.2362 1.0047 1.7600 -78 487 -4.1755 1.0111 1.7600 -78 488 -4.1153 1.0225 1.7600 -78 489 -4.0530 1.0339 1.7600 -78 490 -3.9924 1.0481 1.7600 -78 491 -3.9324 1.0635 1.7600 -78 492 -3.8719 1.0808 1.7600 -78 493 -3.8134 1.0943 1.7600 -78 494 -3.7569 1.1006 1.7600 -78 495 -3.7054 1.1045 1.7600 -78 496 -3.6545 1.1015 1.7600 -78 497 -3.6051 1.0957 1.7600 -78 498 -3.5515 1.0867 1.7600 -78 499 -3.5026 1.0757 1.7600 -78 500 -3.4495 1.0651 1.7600 -78 501 -3.3977 1.0451 1.7600 -78 502 -3.3420 1.0182 1.7600 -78 503 -3.2827 0.9908 1.7600 -78 504 -3.2265 0.9663 1.7600 -78 505 -3.1699 0.9563 1.7600 -78 506 -3.1143 0.9553 1.7600 -78 507 -3.0561 0.9579 1.7600 -78 508 -2.9989 0.9643 1.7600 -78 509 -2.9434 0.9734 1.7600 -78 510 -2.8888 0.9862 1.7600 -78 511 -2.8343 1.0017 1.7600 -78 512 -2.7770 1.0223 1.7600 -78 513 -2.7164 1.0445 1.7600 -78 514 -2.6524 1.0669 1.7600 -78 515 -2.5964 1.0834 1.7600 -78 516 -2.5381 1.0903 1.7600 -78 517 -2.4840 1.0936 1.7600 -78 518 -2.4278 1.0873 1.7600 -78 519 -2.3698 1.0817 1.7600 -78 520 -2.3151 1.0749 1.7600 -78 521 -2.2625 1.0632 1.7600 -78 522 -2.2043 1.0466 1.7600 -78 523 -2.1415 1.0240 1.7600 -78 524 -2.0738 0.9991 1.7600 -78 525 -2.0147 0.9801 1.7600 -78 526 -1.9551 0.9680 1.7600 -78 527 -1.8971 0.9642 1.7600 -78 528 -1.8394 0.9679 1.7600 -78 529 -1.7793 0.9744 1.7600 -78 530 -1.7213 0.9800 1.7600 -78 531 -1.6612 0.9874 1.7600 -78 532 -1.6007 0.9951 1.7600 -78 533 -1.5373 1.0058 1.7600 -78 534 -1.4665 1.0198 1.7600 -78 535 -1.3993 1.0320 1.7600 -78 536 -1.3305 1.0361 1.7600 -78 537 -1.2686 1.0342 1.7600 -78 538 -1.2097 1.0251 1.7600 -78 539 -1.1486 1.0146 1.7600 -78 540 -1.0876 1.0045 1.7600 -78 541 -1.0247 0.9931 1.7600 -78 542 -0.9620 0.9791 1.7600 -78 543 -0.8988 0.9610 1.7600 -78 544 -0.8329 0.9402 1.7600 -78 545 -0.7697 0.9216 1.7600 -78 546 -0.7083 0.9135 1.7600 -78 547 -0.6467 0.9139 1.7600 -78 548 -0.5871 0.9211 1.7600 -78 549 -0.5269 0.9301 1.7600 -78 550 -0.4647 0.9390 1.7600 -78 551 -0.4007 0.9486 1.7600 -78 552 -0.3387 0.9594 1.7600 -78 553 -0.2771 0.9718 1.7600 -78 554 -0.2151 0.9867 1.7600 -78 555 -0.1525 0.9982 1.7600 -78 556 -0.0946 1.0091 1.7600 -78 557 -0.0388 1.0138 1.7600 -78 558 0.0184 1.0117 1.7600 -78 559 0.0782 1.0056 1.7600 -78 560 0.1387 0.9984 1.7600 -78 561 0.2007 0.9907 1.7600 -78 562 0.2640 0.9805 1.7600 -78 563 0.3269 0.9656 1.7600 -78 564 0.3865 0.9471 1.7600 -78 565 0.4443 0.9279 1.7600 -78 566 0.5031 0.9134 1.7600 -78 567 0.5607 0.9082 1.7600 -78 568 0.6229 0.9088 1.7600 -78 569 0.6757 0.9222 1.7600 -78 570 0.7338 0.9312 1.7600 -78 571 0.7949 0.9434 1.7600 -78 572 0.8564 0.9545 1.7600 -78 573 0.9165 0.9675 1.7600 -78 574 0.9771 0.9858 1.7600 -78 575 1.0378 1.0013 1.7600 -78 576 1.0938 1.0191 1.7600 -78 577 1.1512 1.0299 1.7600 -78 578 1.2061 1.0374 1.7600 -78 579 1.2600 1.0431 1.7600 -78 580 1.3161 1.0475 1.7600 -78 581 1.3728 1.0480 1.7600 -78 582 1.4299 1.0431 1.7600 -78 583 1.4903 1.0291 1.7600 -78 584 1.5513 1.0139 1.7600 -78 585 1.6135 1.0003 1.7600 -78 586 1.6736 0.9841 1.7600 -78 587 1.7343 0.9674 1.7600 -78 588 1.7932 0.9537 1.7600 -78 589 1.8512 0.9423 1.7600 -78 590 1.9077 0.9337 1.7600 -78 591 1.9639 0.9317 1.7600 -78 592 2.0209 0.9288 1.7600 -78 593 2.0775 0.9288 1.7600 -78 594 2.1377 0.9323 1.7600 -78 595 2.2014 0.9428 1.7600 -78 596 2.2635 0.9583 1.7600 -78 597 2.3267 0.9730 1.7600 -78 598 2.3826 0.9854 1.7600 -78 599 2.4429 0.9919 1.7600 -78 600 2.5035 0.9978 1.7600 -78 601 2.5652 0.9999 1.7600 -78 602 2.6245 0.9967 1.7600 -78 603 2.6881 0.9913 1.7600 -78 604 2.7512 0.9828 1.7600 -78 605 2.8198 0.9727 1.7600 -78 606 2.8933 0.9597 1.7600 -78 607 2.9707 0.9465 1.7600 -78 608 3.0497 0.9392 1.7600 -78 609 3.1213 0.9356 1.7600 -78 610 3.1928 0.9381 1.7600 -78 611 3.2599 0.9451 1.7600 -78 612 3.3251 0.9521 1.7600 -78 613 3.3912 0.9648 1.7600 -78 614 3.4580 0.9833 1.7600 -78 615 3.5245 1.0021 1.7600 -78 616 3.5994 1.0184 1.7600 -78 617 3.6763 1.0365 1.7600 -78 618 3.7533 1.0496 1.7600 -78 619 3.8284 1.0559 1.7600 -78 620 3.9065 1.0533 1.7600 -78 621 3.9829 1.0443 1.7600 -78 622 4.0546 1.0321 1.7600 -78 623 4.1199 1.0164 1.7600 -78 624 4.1789 0.9970 1.7600 -78 625 4.2409 0.9753 1.7600 -78 626 4.3134 0.9525 1.7600 -78 627 4.3909 0.9339 1.7600 -78 628 4.4636 0.9230 1.7600 -78 629 4.5315 0.9200 1.7600 -78 630 4.5955 0.9245 1.7600 -78 631 4.6547 0.9326 1.7600 -78 632 4.7131 0.9409 1.7600 -78 633 4.7753 0.9537 1.7600 -78 634 4.8396 0.9697 1.7600 -78 635 4.9127 0.9878 1.7600 -78 636 4.9930 1.0066 1.7600 -78 637 5.0699 1.0233 1.7600 -78 638 5.1437 1.0364 1.7600 -78 639 5.2166 1.0482 1.7600 -78 640 5.2807 1.0564 1.7600 -78 641 5.3464 1.0584 1.7600 -78 642 5.4086 1.0608 1.7600 -78 643 5.4697 1.0617 1.7600 -78 644 5.5362 1.0592 1.7600 -78 645 5.6100 1.0549 1.7600 -78 646 5.6905 1.0503 1.7600 -78 647 5.7728 1.0460 1.7600 -78 648 5.8513 1.0481 1.7600 -78 649 5.9212 1.0579 1.7600 -79 451 -7.8013 1.5294 1.7600 -79 452 -7.7528 1.4909 1.7600 -79 453 -7.7096 1.4614 1.7600 -79 454 -7.6666 1.4342 1.7600 -79 455 -7.6179 1.4060 1.7600 -79 456 -7.5656 1.3776 1.7600 -79 457 -7.5031 1.3515 1.7600 -79 458 -7.4353 1.3250 1.7600 -79 459 -7.3682 1.3050 1.7600 -79 460 -7.3066 1.2889 1.7600 -79 461 -7.2534 1.2699 1.7600 -79 462 -7.2085 1.2518 1.7600 -79 463 -7.1635 1.2341 1.7600 -79 464 -7.1127 1.2143 1.7600 -79 465 -7.0565 1.1949 1.7600 -79 466 -6.9920 1.1753 1.7600 -79 467 -6.9267 1.1539 1.7600 -79 468 -6.8696 1.1316 1.7600 -79 469 -6.8151 1.1097 1.7600 -79 470 -6.7657 1.0922 1.7600 -79 471 -6.7173 1.0777 1.7600 -79 472 -6.6648 1.0677 1.7600 -79 473 -6.6065 1.0572 1.7600 -79 474 -6.5431 1.0498 1.7600 -79 475 -6.4727 1.0449 1.7600 -79 476 -6.4083 1.0423 1.7600 -79 477 -6.3473 1.0392 1.7600 -79 478 -6.2896 1.0339 1.7600 -79 479 -6.2335 1.0250 1.7600 -79 480 -6.1790 1.0161 1.7600 -79 481 -6.1211 1.0047 1.7600 -79 482 -6.0629 0.9909 1.7600 -79 483 -5.9992 0.9773 1.7600 -79 484 -5.9341 0.9598 1.7600 -79 485 -5.8717 0.9431 1.7600 -79 486 -5.8173 0.9269 1.7600 -79 487 -5.7682 0.9098 1.7600 -79 488 -5.7153 0.8963 1.7600 -79 489 -5.6709 0.8842 1.7600 -79 490 -5.6230 0.8750 1.7600 -79 491 -5.5769 0.8660 1.7600 -79 492 -5.5246 0.8555 1.7600 -79 493 -5.4693 0.8500 1.7600 -79 494 -5.4141 0.8449 1.7600 -79 495 -5.3606 0.8413 1.7600 -79 496 -5.3117 0.8404 1.7600 -79 497 -5.2671 0.8363 1.7600 -79 498 -5.2221 0.8289 1.7600 -79 499 -5.1757 0.8158 1.7600 -79 500 -5.1269 0.8019 1.7600 -79 501 -5.0750 0.7869 1.7600 -79 502 -5.0225 0.7692 1.7600 -79 503 -4.9764 0.7519 1.7600 -79 504 -4.9331 0.7356 1.7600 -79 505 -4.8926 0.7267 1.7600 -79 506 -4.8492 0.7213 1.7600 -79 507 -4.8028 0.7182 1.7600 -79 508 -4.7554 0.7160 1.7600 -79 509 -4.7039 0.7156 1.7600 -79 510 -4.6488 0.7153 1.7600 -79 511 -4.5978 0.7154 1.7600 -79 512 -4.5511 0.7125 1.7600 -79 513 -4.5053 0.7059 1.7600 -79 514 -4.4614 0.6948 1.7600 -79 515 -4.4133 0.6815 1.7600 -79 516 -4.3617 0.6685 1.7600 -79 517 -4.3060 0.6504 1.7600 -79 518 -4.2490 0.6294 1.7600 -79 519 -4.1930 0.6052 1.7600 -79 520 -4.1399 0.5800 1.7600 -79 521 -4.0931 0.5613 1.7600 -79 522 -4.0452 0.5477 1.7600 -79 523 -3.9977 0.5361 1.7600 -79 524 -3.9474 0.5250 1.7600 -79 525 -3.8982 0.5152 1.7600 -79 526 -3.8438 0.5105 1.7600 -79 527 -3.7898 0.5094 1.7600 -79 528 -3.7321 0.5106 1.7600 -79 529 -3.6776 0.5135 1.7600 -79 530 -3.6225 0.5164 1.7600 -79 531 -3.5711 0.5157 1.7600 -79 532 -3.5210 0.5077 1.7600 -79 533 -3.4723 0.4988 1.7600 -79 534 -3.4177 0.4881 1.7600 -79 535 -3.3612 0.4782 1.7600 -79 536 -3.3027 0.4666 1.7600 -79 537 -3.2396 0.4501 1.7600 -79 538 -3.1751 0.4274 1.7600 -79 539 -3.1104 0.4068 1.7600 -79 540 -3.0535 0.3896 1.7600 -79 541 -2.9953 0.3730 1.7600 -79 542 -2.9371 0.3617 1.7600 -79 543 -2.8749 0.3531 1.7600 -79 544 -2.8142 0.3468 1.7600 -79 545 -2.7482 0.3431 1.7600 -79 546 -2.6792 0.3428 1.7600 -79 547 -2.6077 0.3447 1.7600 -79 548 -2.5370 0.3431 1.7600 -79 549 -2.4707 0.3411 1.7600 -79 550 -2.4040 0.3374 1.7600 -79 551 -2.3415 0.3290 1.7600 -79 552 -2.2764 0.3218 1.7600 -79 553 -2.2146 0.3129 1.7600 -79 554 -2.1536 0.3051 1.7600 -79 555 -2.0883 0.2942 1.7600 -79 556 -2.0225 0.2797 1.7600 -79 557 -1.9499 0.2644 1.7600 -79 558 -1.8880 0.2530 1.7600 -79 559 -1.8201 0.2436 1.7600 -79 560 -1.7520 0.2405 1.7600 -79 561 -1.6864 0.2386 1.7600 -79 562 -1.6246 0.2364 1.7600 -79 563 -1.5565 0.2379 1.7600 -79 564 -1.4833 0.2462 1.7600 -79 565 -1.4075 0.2561 1.7600 -79 566 -1.3310 0.2672 1.7600 -79 567 -1.2593 0.2758 1.7600 -79 568 -1.1930 0.2805 1.7600 -79 569 -1.1252 0.2863 1.7600 -79 570 -1.0633 0.2896 1.7600 -79 571 -0.9978 0.2943 1.7600 -79 572 -0.9311 0.3001 1.7600 -79 573 -0.8600 0.3027 1.7600 -79 574 -0.7853 0.3016 1.7600 -79 575 -0.7107 0.3004 1.7600 -79 576 -0.6434 0.2988 1.7600 -79 577 -0.5816 0.3035 1.7600 -79 578 -0.5231 0.3104 1.7600 -79 579 -0.4612 0.3216 1.7600 -79 580 -0.3983 0.3298 1.7600 -79 581 -0.3306 0.3416 1.7600 -79 582 -0.2658 0.3501 1.7600 -79 583 -0.2038 0.3604 1.7600 -79 584 -0.1446 0.3682 1.7600 -79 585 -0.0904 0.3696 1.7600 -79 586 -0.0283 0.3684 1.7600 -79 587 0.0357 0.3670 1.7600 -79 588 0.1033 0.3649 1.7600 -79 589 0.1759 0.3649 1.7600 -79 590 0.2445 0.3618 1.7600 -79 591 0.3092 0.3538 1.7600 -79 592 0.3722 0.3567 1.7600 -79 593 0.4271 0.3646 1.7600 -79 594 0.4882 0.3741 1.7600 -79 595 0.5350 0.3764 1.7600 -79 596 0.6003 0.3878 1.7600 -79 597 0.6589 0.3886 1.7600 -79 598 0.7237 0.3974 1.7600 -79 599 0.7921 0.4061 1.7600 -79 600 0.8529 0.4086 1.7600 -79 601 0.9134 0.4136 1.7600 -79 602 0.9696 0.4150 1.7600 -79 603 1.0255 0.4097 1.7600 -79 604 1.0854 0.4081 1.7600 -79 605 1.1466 0.4056 1.7600 -79 606 1.2145 0.4001 1.7600 -79 607 1.2839 0.3943 1.7600 -79 608 1.3526 0.3894 1.7600 -79 609 1.4218 0.3813 1.7600 -79 610 1.4860 0.3767 1.7600 -79 611 1.5462 0.3774 1.7600 -79 612 1.6048 0.3803 1.7600 -79 613 1.6602 0.3890 1.7600 -79 614 1.7176 0.4028 1.7600 -79 615 1.7743 0.4230 1.7600 -79 616 1.8368 0.4463 1.7600 -79 617 1.8997 0.4787 1.7600 -79 618 1.9677 0.5145 1.7600 -79 619 2.0388 0.5541 1.7600 -79 620 2.1065 0.5917 1.7600 -79 621 2.1719 0.6196 1.7600 -79 622 2.2437 0.6472 1.7600 -79 623 2.3042 0.6628 1.7600 -79 624 2.3762 0.6808 1.7600 -79 625 2.4529 0.6969 1.7600 -79 626 2.5363 0.7097 1.7600 -79 627 2.6225 0.7215 1.7600 -79 628 2.7123 0.7281 1.7600 -79 629 2.7986 0.7376 1.7600 -79 630 2.8706 0.7620 1.7600 -79 631 2.9430 0.7905 1.7600 -79 632 3.0105 0.8199 1.7600 -79 633 3.0811 0.8551 1.7600 -79 634 3.1544 0.8965 1.7600 -79 635 3.2282 0.9413 1.7600 -79 636 3.3029 0.9920 1.7600 -79 637 3.3765 1.0419 1.7600 -79 638 3.4512 1.0818 1.7600 -79 639 3.5262 1.1140 1.7600 -79 640 3.6033 1.1390 1.7600 -79 641 3.6801 1.1589 1.7600 -79 642 3.7594 1.1789 1.7600 -79 643 3.8471 1.1970 1.7600 -79 644 3.9367 1.2150 1.7600 -79 645 4.0380 1.2349 1.7600 -79 646 4.1312 1.2619 1.7600 -79 647 4.2183 1.2967 1.7600 -79 648 4.2993 1.3339 1.7600 -79 649 4.3785 1.3764 1.7600 -79 650 4.4578 1.4233 1.7600 -79 651 4.5426 1.4776 1.7600 -79 652 4.6284 1.5362 1.7600 -79 653 4.7144 1.5938 1.7600 -79 654 4.7981 1.6401 1.7600 -79 655 4.8887 1.6753 1.7600 -79 656 4.9777 1.7063 1.7600 -79 657 5.0638 1.7348 1.7600 -79 658 5.1471 1.7615 1.7600 -79 659 5.2323 1.7881 1.7600 -79 660 5.3261 1.8149 1.7600 -79 661 5.4273 1.8414 1.7600 -79 662 5.5267 1.8718 1.7600 -79 663 5.6251 1.9066 1.7600 -79 664 5.7202 1.9436 1.7600 -79 665 5.8096 1.9814 1.7600 -79 666 5.8936 2.0190 1.7600 -80 439 -7.8133 1.5212 1.7600 -80 440 -7.7531 1.5230 1.7600 -80 441 -7.6930 1.5260 1.7600 -80 442 -7.6404 1.5325 1.7600 -80 443 -7.5897 1.5422 1.7600 -80 444 -7.5358 1.5488 1.7600 -80 445 -7.4808 1.5511 1.7600 -80 446 -7.4274 1.5513 1.7600 -80 447 -7.3749 1.5488 1.7600 -80 448 -7.3198 1.5440 1.7600 -80 449 -7.2611 1.5373 1.7600 -80 450 -7.2014 1.5298 1.7600 -80 451 -7.1441 1.5219 1.7600 -80 452 -7.0932 1.5139 1.7600 -80 453 -7.0426 1.5057 1.7600 -80 454 -6.9902 1.4980 1.7600 -80 455 -6.9368 1.4913 1.7600 -80 456 -6.8805 1.4841 1.7600 -80 457 -6.8242 1.4892 1.7600 -80 458 -6.7691 1.4870 1.7600 -80 459 -6.7113 1.4858 1.7600 -80 460 -6.6534 1.4826 1.7600 -80 461 -6.6003 1.4791 1.7600 -80 462 -6.5448 1.4736 1.7600 -80 463 -6.4896 1.4706 1.7600 -80 464 -6.4341 1.4690 1.7600 -80 465 -6.3798 1.4614 1.7600 -80 466 -6.3294 1.4482 1.7600 -80 467 -6.2783 1.4316 1.7600 -80 468 -6.2303 1.4137 1.7600 -80 469 -6.1799 1.3965 1.7600 -80 470 -6.1316 1.3816 1.7600 -80 471 -6.0854 1.3663 1.7600 -80 472 -6.0387 1.3497 1.7600 -80 473 -5.9906 1.3329 1.7600 -80 474 -5.9482 1.3190 1.7600 -80 475 -5.9029 1.3093 1.7600 -80 476 -5.8602 1.3028 1.7600 -80 477 -5.8169 1.2970 1.7600 -80 478 -5.7731 1.2909 1.7600 -80 479 -5.7281 1.2823 1.7600 -80 480 -5.6829 1.2740 1.7600 -80 481 -5.6386 1.2678 1.7600 -80 482 -5.5974 1.2640 1.7600 -80 483 -5.5555 1.2621 1.7600 -80 484 -5.5131 1.2616 1.7600 -80 485 -5.4680 1.2589 1.7600 -80 486 -5.4251 1.2514 1.7600 -80 487 -5.3818 1.2429 1.7600 -80 488 -5.3375 1.2269 1.7600 -80 489 -5.2942 1.2133 1.7600 -80 490 -5.2509 1.1960 1.7600 -80 491 -5.2075 1.1787 1.7600 -80 492 -5.1649 1.1634 1.7600 -80 493 -5.1230 1.1488 1.7600 -80 494 -5.0799 1.1385 1.7600 -80 495 -5.0354 1.1262 1.7600 -80 496 -4.9899 1.1177 1.7600 -80 497 -4.9440 1.1129 1.7600 -80 498 -4.9008 1.1099 1.7600 -80 499 -4.8571 1.1103 1.7600 -80 500 -4.8108 1.1131 1.7600 -80 501 -4.7646 1.1200 1.7600 -80 502 -4.7208 1.1320 1.7600 -80 503 -4.6728 1.1448 1.7600 -80 504 -4.6273 1.1517 1.7600 -80 505 -4.5796 1.1525 1.7600 -80 506 -4.5312 1.1504 1.7600 -80 507 -4.4859 1.1423 1.7600 -80 508 -4.4422 1.1338 1.7600 -80 509 -4.3949 1.1228 1.7600 -80 510 -4.3508 1.1112 1.7600 -80 511 -4.3071 1.0976 1.7600 -80 512 -4.2628 1.0832 1.7600 -80 513 -4.2180 1.0653 1.7600 -80 514 -4.1712 1.0510 1.7600 -80 515 -4.1242 1.0385 1.7600 -80 516 -4.0762 1.0322 1.7600 -80 517 -4.0297 1.0285 1.7600 -80 518 -3.9857 1.0279 1.7600 -80 519 -3.9401 1.0276 1.7600 -80 520 -3.8948 1.0231 1.7600 -80 521 -3.8460 1.0210 1.7600 -80 522 -3.7977 1.0218 1.7600 -80 523 -3.7457 1.0260 1.7600 -80 524 -3.6939 1.0289 1.7600 -80 525 -3.6399 1.0306 1.7600 -80 526 -3.5889 1.0280 1.7600 -80 527 -3.5336 1.0243 1.7600 -80 528 -3.4817 1.0194 1.7600 -80 529 -3.4322 1.0136 1.7600 -80 530 -3.3834 1.0063 1.7600 -80 531 -3.3320 0.9958 1.7600 -80 532 -3.2823 0.9864 1.7600 -80 533 -3.2285 0.9782 1.7600 -80 534 -3.1730 0.9711 1.7600 -80 535 -3.1207 0.9672 1.7600 -80 536 -3.0681 0.9649 1.7600 -80 537 -3.0163 0.9630 1.7600 -80 538 -2.9716 0.9662 1.7600 -80 539 -2.9296 0.9692 1.7600 -80 540 -2.8916 0.9737 1.7600 -80 541 -2.8536 0.9792 1.7600 -80 542 -2.8170 0.9850 1.7600 -80 543 -2.7793 0.9957 1.7600 -80 544 -2.7397 1.0053 1.7600 -80 545 -2.7021 1.0154 1.7600 -80 546 -2.6603 1.0222 1.7600 -80 547 -2.6132 1.0276 1.7600 -80 548 -2.5600 1.0342 1.7600 -80 549 -2.5099 1.0377 1.7600 -80 550 -2.4605 1.0382 1.7600 -80 551 -2.4121 1.0361 1.7600 -80 552 -2.3663 1.0332 1.7600 -80 553 -2.3188 1.0292 1.7600 -80 554 -2.2703 1.0248 1.7600 -80 555 -2.2229 1.0185 1.7600 -80 556 -2.1824 1.0128 1.7600 -80 557 -2.1398 1.0115 1.7600 -80 558 -2.0950 1.0132 1.7600 -80 559 -2.0532 1.0183 1.7600 -80 560 -2.0136 1.0258 1.7600 -80 561 -1.9720 1.0336 1.7600 -80 562 -1.9261 1.0415 1.7600 -80 563 -1.8711 1.0513 1.7600 -80 564 -1.8168 1.0641 1.7600 -80 565 -1.7589 1.0750 1.7600 -80 566 -1.7008 1.0832 1.7600 -80 567 -1.6413 1.0882 1.7600 -80 568 -1.5834 1.0942 1.7600 -80 569 -1.5218 1.0962 1.7600 -80 570 -1.4630 1.0930 1.7600 -80 571 -1.4065 1.0884 1.7600 -80 572 -1.3452 1.0830 1.7600 -80 573 -1.2851 1.0775 1.7600 -80 574 -1.2224 1.0677 1.7600 -80 575 -1.1651 1.0580 1.7600 -80 576 -1.1172 1.0518 1.7600 -80 577 -1.0683 1.0521 1.7600 -80 578 -1.0203 1.0546 1.7600 -80 579 -0.9757 1.0575 1.7600 -80 580 -0.9316 1.0620 1.7600 -80 581 -0.8871 1.0670 1.7600 -80 582 -0.8397 1.0731 1.7600 -80 583 -0.7899 1.0825 1.7600 -80 584 -0.7364 1.0943 1.7600 -80 585 -0.6815 1.1039 1.7600 -80 586 -0.6248 1.1102 1.7600 -80 587 -0.5664 1.1161 1.7600 -80 588 -0.5029 1.1187 1.7600 -80 589 -0.4413 1.1214 1.7600 -80 590 -0.3848 1.1218 1.7600 -80 591 -0.3303 1.1203 1.7600 -80 592 -0.2798 1.1169 1.7600 -80 593 -0.2291 1.1135 1.7600 -80 594 -0.1799 1.1093 1.7600 -80 595 -0.1294 1.0995 1.7600 -80 596 -0.0759 1.0929 1.7600 -80 597 -0.0180 1.0903 1.7600 -80 598 0.0413 1.0909 1.7600 -80 599 0.0992 1.0952 1.7600 -80 600 0.1541 1.1024 1.7600 -80 601 0.2083 1.1138 1.7600 -80 602 0.2643 1.1213 1.7600 -80 603 0.3187 1.1314 1.7600 -80 604 0.3698 1.1420 1.7600 -80 605 0.4221 1.1552 1.7600 -80 606 0.4743 1.1640 1.7600 -80 607 0.5296 1.1716 1.7600 -80 608 0.5844 1.1763 1.7600 -80 609 0.6327 1.1809 1.7600 -80 610 0.6768 1.1839 1.7600 -80 611 0.7204 1.1857 1.7600 -80 612 0.7652 1.1864 1.7600 -80 613 0.8109 1.1853 1.7600 -80 614 0.8587 1.1827 1.7600 -80 615 0.9069 1.1786 1.7600 -80 616 0.9559 1.1714 1.7600 -80 617 1.0083 1.1657 1.7600 -80 618 1.0620 1.1656 1.7600 -80 619 1.1196 1.1706 1.7600 -80 620 1.1739 1.1791 1.7600 -80 621 1.2294 1.1889 1.7600 -80 622 1.2882 1.1989 1.7600 -80 623 1.3455 1.2100 1.7600 -80 624 1.4030 1.2231 1.7600 -80 625 1.4592 1.2336 1.7600 -80 626 1.5162 1.2435 1.7600 -80 627 1.5713 1.2504 1.7600 -80 628 1.6304 1.2539 1.7600 -80 629 1.6856 1.2553 1.7600 -80 630 1.7401 1.2546 1.7600 -80 631 1.7918 1.2496 1.7600 -80 632 1.8450 1.2446 1.7600 -80 633 1.8972 1.2361 1.7600 -80 634 1.9510 1.2250 1.7600 -80 635 2.0049 1.2138 1.7600 -80 636 2.0615 1.2058 1.7600 -80 637 2.1192 1.2045 1.7600 -80 638 2.1760 1.2054 1.7600 -80 639 2.2349 1.2077 1.7600 -80 640 2.2885 1.2107 1.7600 -80 641 2.3450 1.2154 1.7600 -80 642 2.4019 1.2181 1.7600 -80 643 2.4604 1.2227 1.7600 -80 644 2.5199 1.2299 1.7600 -80 645 2.5783 1.2364 1.7600 -80 646 2.6336 1.2381 1.7600 -80 647 2.6921 1.2344 1.7600 -80 648 2.7484 1.2281 1.7600 -80 649 2.8048 1.2193 1.7600 -80 650 2.8577 1.2091 1.7600 -80 651 2.9131 1.2015 1.7600 -80 652 2.9696 1.1925 1.7600 -80 653 3.0274 1.1807 1.7600 -80 654 3.0812 1.1677 1.7600 -80 655 3.1343 1.1554 1.7600 -80 656 3.1892 1.1465 1.7600 -80 657 3.2468 1.1461 1.7600 -80 658 3.2978 1.1502 1.7600 -80 659 3.3473 1.1543 1.7600 -80 660 3.3999 1.1584 1.7600 -80 661 3.4566 1.1630 1.7600 -80 662 3.5147 1.1643 1.7600 -80 663 3.5728 1.1689 1.7600 -80 664 3.6282 1.1726 1.7600 -80 665 3.6868 1.1739 1.7600 -80 666 3.7482 1.1723 1.7600 -80 667 3.8079 1.1657 1.7600 -80 668 3.8631 1.1586 1.7600 -80 669 3.9152 1.1472 1.7600 -80 670 3.9688 1.1337 1.7600 -80 671 4.0330 1.1204 1.7600 -80 672 4.1012 1.1044 1.7600 -80 673 4.1683 1.0872 1.7600 -80 674 4.2370 1.0732 1.7600 -80 675 4.3036 1.0632 1.7600 -80 676 4.3630 1.0591 1.7600 -80 677 4.4169 1.0596 1.7600 -80 678 4.4726 1.0626 1.7600 -80 679 4.5326 1.0646 1.7600 -80 680 4.6017 1.0658 1.7600 -80 681 4.6741 1.0679 1.7600 -80 682 4.7440 1.0678 1.7600 -80 683 4.8153 1.0652 1.7600 -80 684 4.8881 1.0594 1.7600 -80 685 4.9578 1.0513 1.7600 -80 686 5.0221 1.0413 1.7600 -80 687 5.0790 1.0311 1.7600 -80 688 5.1402 1.0259 1.7600 -80 689 5.2100 1.0223 1.7600 -80 690 5.2789 1.0218 1.7600 -80 691 5.3484 1.0238 1.7600 -80 692 5.4168 1.0331 1.7600 -80 693 5.4797 1.0447 1.7600 -80 694 5.5395 1.0592 1.7600 -80 695 5.5929 1.0730 1.7600 -80 696 5.6461 1.0855 1.7600 -80 697 5.7093 1.0975 1.7600 -80 698 5.7774 1.1094 1.7600 -80 699 5.8438 1.1196 1.7600 -80 700 5.9111 1.1242 1.7600 -81 450 -7.7904 2.1186 1.7600 -81 451 -7.7232 2.0931 1.7600 -81 452 -7.6578 2.0647 1.7600 -81 453 -7.5954 2.0374 1.7600 -81 454 -7.5378 2.0159 1.7600 -81 455 -7.4839 1.9998 1.7600 -81 456 -7.4267 1.9837 1.7600 -81 457 -7.3679 1.9700 1.7600 -81 458 -7.3053 1.9571 1.7600 -81 459 -7.2390 1.9433 1.7600 -81 460 -7.1751 1.9343 1.7600 -81 461 -7.1157 1.9295 1.7600 -81 462 -7.0629 1.9209 1.7600 -81 463 -7.0118 1.9128 1.7600 -81 464 -6.9592 1.8968 1.7600 -81 465 -6.9086 1.8831 1.7600 -81 466 -6.8468 1.8649 1.7600 -81 467 -6.7803 1.8435 1.7600 -81 468 -6.7120 1.8213 1.7600 -81 469 -6.6457 1.7960 1.7600 -81 470 -6.5828 1.7727 1.7600 -81 471 -6.5181 1.7460 1.7600 -81 472 -6.4584 1.7266 1.7600 -81 473 -6.4004 1.7099 1.7600 -81 474 -6.3427 1.7000 1.7600 -81 475 -6.2836 1.6912 1.7600 -81 476 -6.2230 1.6793 1.7600 -81 477 -6.1604 1.6670 1.7600 -81 478 -6.0947 1.6570 1.7600 -81 479 -6.0312 1.6497 1.7600 -81 480 -5.9709 1.6482 1.7600 -81 481 -5.9137 1.6496 1.7600 -81 482 -5.8538 1.6513 1.7600 -81 483 -5.8007 1.6507 1.7600 -81 484 -5.7426 1.6464 1.7600 -81 485 -5.6866 1.6414 1.7600 -81 486 -5.6318 1.6360 1.7600 -81 487 -5.5728 1.6282 1.7600 -81 488 -5.5153 1.6176 1.7600 -81 489 -5.4588 1.6048 1.7600 -81 490 -5.4014 1.5908 1.7600 -81 491 -5.3432 1.5742 1.7600 -81 492 -5.2875 1.5583 1.7600 -81 493 -5.2349 1.5460 1.7600 -81 494 -5.1820 1.5345 1.7600 -81 495 -5.1294 1.5243 1.7600 -81 496 -5.0807 1.5127 1.7600 -81 497 -5.0304 1.5030 1.7600 -81 498 -4.9820 1.4910 1.7600 -81 499 -4.9326 1.4817 1.7600 -81 500 -4.8835 1.4744 1.7600 -81 501 -4.8364 1.4688 1.7600 -81 502 -4.7914 1.4634 1.7600 -81 503 -4.7413 1.4563 1.7600 -81 504 -4.6900 1.4488 1.7600 -81 505 -4.6377 1.4391 1.7600 -81 506 -4.5821 1.4334 1.7600 -81 507 -4.5288 1.4254 1.7600 -81 508 -4.4708 1.4159 1.7600 -81 509 -4.4127 1.4051 1.7600 -81 510 -4.3586 1.3977 1.7600 -81 511 -4.3043 1.3961 1.7600 -81 512 -4.2514 1.3986 1.7600 -81 513 -4.1971 1.3993 1.7600 -81 514 -4.1434 1.4033 1.7600 -81 515 -4.0872 1.4113 1.7600 -81 516 -4.0324 1.4259 1.7600 -81 517 -3.9719 1.4509 1.7600 -81 518 -3.9100 1.4762 1.7600 -81 519 -3.8523 1.5022 1.7600 -81 520 -3.7955 1.5230 1.7600 -81 521 -3.7349 1.5390 1.7600 -81 522 -3.6755 1.5501 1.7600 -81 523 -3.6119 1.5583 1.7600 -81 524 -3.5482 1.5637 1.7600 -81 525 -3.4810 1.5625 1.7600 -81 526 -3.4105 1.5603 1.7600 -81 527 -3.3369 1.5547 1.7600 -81 528 -3.2652 1.5492 1.7600 -81 529 -3.1944 1.5434 1.7600 -81 530 -3.1306 1.5412 1.7600 -81 531 -3.0680 1.5426 1.7600 -81 532 -3.0119 1.5434 1.7600 -81 533 -2.9516 1.5440 1.7600 -81 534 -2.8915 1.5454 1.7600 -81 535 -2.8314 1.5506 1.7600 -81 536 -2.7738 1.5535 1.7600 -81 537 -2.7102 1.5595 1.7600 -81 538 -2.6449 1.5684 1.7600 -81 539 -2.5776 1.5743 1.7600 -81 540 -2.5229 1.5712 1.7600 -81 541 -2.4571 1.5674 1.7600 -81 542 -2.4049 1.5641 1.7600 -81 543 -2.3479 1.5600 1.7600 -81 544 -2.2906 1.5546 1.7600 -81 545 -2.2366 1.5424 1.7600 -81 546 -2.1788 1.5263 1.7600 -81 547 -2.1133 1.5098 1.7600 -81 548 -2.0429 1.4868 1.7600 -81 549 -1.9756 1.4690 1.7600 -81 550 -1.9057 1.4545 1.7600 -81 551 -1.8371 1.4471 1.7600 -81 552 -1.7714 1.4421 1.7600 -81 553 -1.7074 1.4414 1.7600 -81 554 -1.6365 1.4450 1.7600 -81 555 -1.5582 1.4516 1.7600 -81 556 -1.4789 1.4543 1.7600 -81 557 -1.3992 1.4521 1.7600 -81 558 -1.3188 1.4415 1.7600 -81 559 -1.2436 1.4248 1.7600 -81 560 -1.1661 1.4020 1.7600 -81 561 -1.0876 1.3764 1.7600 -81 562 -1.0061 1.3470 1.7600 -81 563 -0.9197 1.3138 1.7600 -81 564 -0.8309 1.2781 1.7600 -81 565 -0.7443 1.2451 1.7600 -81 566 -0.6647 1.2200 1.7600 -81 567 -0.5921 1.1993 1.7600 -81 568 -0.5219 1.1794 1.7600 -81 569 -0.4525 1.1599 1.7600 -81 570 -0.3819 1.1463 1.7600 -81 571 -0.3103 1.1334 1.7600 -81 572 -0.2402 1.1237 1.7600 -81 573 -0.1724 1.1121 1.7600 -81 574 -0.1069 1.0980 1.7600 -81 575 -0.0379 1.0824 1.7600 -81 576 0.0249 1.0675 1.7600 -81 577 0.0939 1.0529 1.7600 -81 578 0.1608 1.0372 1.7600 -81 579 0.2338 1.0183 1.7600 -81 580 0.3041 0.9981 1.7600 -81 581 0.3715 0.9785 1.7600 -81 582 0.4357 0.9631 1.7600 -81 583 0.4997 0.9560 1.7600 -81 584 0.5657 0.9586 1.7600 -81 585 0.6344 0.9615 1.7600 -81 586 0.7059 0.9682 1.7600 -81 587 0.7790 0.9747 1.7600 -81 588 0.8523 0.9855 1.7600 -81 589 0.9284 1.0014 1.7600 -81 590 1.0033 1.0178 1.7600 -81 591 1.0719 1.0344 1.7600 -81 592 1.1434 1.0457 1.7600 -81 593 1.2124 1.0490 1.7600 -81 594 1.2852 1.0472 1.7600 -81 595 1.3599 1.0430 1.7600 -81 596 1.4368 1.0333 1.7600 -81 597 1.5112 1.0185 1.7600 -81 598 1.5842 0.9975 1.7600 -81 599 1.6599 0.9747 1.7600 -81 600 1.7320 0.9604 1.7600 -81 601 1.7991 0.9597 1.7600 -81 602 1.8703 0.9665 1.7600 -81 603 1.9431 0.9775 1.7600 -81 604 2.0123 0.9927 1.7600 -81 605 2.0820 1.0087 1.7600 -81 606 2.1535 1.0282 1.7600 -81 607 2.2257 1.0490 1.7600 -81 608 2.2941 1.0682 1.7600 -81 609 2.3644 1.0806 1.7600 -81 610 2.4340 1.0869 1.7600 -81 611 2.4997 1.0892 1.7600 -81 612 2.5690 1.0896 1.7600 -81 613 2.6383 1.0891 1.7600 -81 614 2.7088 1.0851 1.7600 -81 615 2.7771 1.0780 1.7600 -81 616 2.8405 1.0686 1.7600 -81 617 2.8999 1.0573 1.7600 -81 618 2.9601 1.0497 1.7600 -81 619 3.0198 1.0468 1.7600 -81 620 3.0738 1.0468 1.7600 -81 621 3.1282 1.0473 1.7600 -81 622 3.1860 1.0468 1.7600 -81 623 3.2477 1.0458 1.7600 -81 624 3.3105 1.0461 1.7600 -81 625 3.3741 1.0472 1.7600 -81 626 3.4427 1.0503 1.7600 -81 627 3.5097 1.0516 1.7600 -81 628 3.5768 1.0487 1.7600 -81 629 3.6407 1.0398 1.7600 -81 630 3.7042 1.0294 1.7600 -81 631 3.7673 1.0152 1.7600 -81 632 3.8332 0.9988 1.7600 -81 633 3.9016 0.9802 1.7600 -81 634 3.9704 0.9712 1.7600 -81 635 4.0446 0.9602 1.7600 -81 636 4.1204 0.9464 1.7600 -81 637 4.1952 0.9402 1.7600 -81 638 4.2714 0.9401 1.7600 -81 639 4.3431 0.9431 1.7600 -81 640 4.4103 0.9480 1.7600 -81 641 4.4780 0.9560 1.7600 -81 642 4.5484 0.9682 1.7600 -81 643 4.6220 0.9835 1.7600 -81 644 4.7015 0.9985 1.7600 -81 645 4.7806 1.0099 1.7600 -81 646 4.8602 1.0182 1.7600 -81 647 4.9353 1.0206 1.7600 -81 648 5.0076 1.0220 1.7600 -81 649 5.0767 1.0217 1.7600 -81 650 5.1450 1.0197 1.7600 -81 651 5.2167 1.0141 1.7600 -81 652 5.2916 1.0072 1.7600 -81 653 5.3701 0.9980 1.7600 -81 654 5.4527 0.9927 1.7600 -81 655 5.5313 0.9938 1.7600 -81 656 5.6065 1.0024 1.7600 -81 657 5.6736 1.0148 1.7600 -81 658 5.7359 1.0278 1.7600 -81 659 5.7954 1.0441 1.7600 -81 660 5.8559 1.0630 1.7600 -81 661 5.9192 1.0860 1.7600 -82 460 -7.7861 1.4448 1.7600 -82 461 -7.7315 1.4451 1.7600 -82 462 -7.6763 1.4487 1.7600 -82 463 -7.6194 1.4536 1.7600 -82 464 -7.5633 1.4604 1.7600 -82 465 -7.5120 1.4676 1.7600 -82 466 -7.4626 1.4734 1.7600 -82 467 -7.4132 1.4801 1.7600 -82 468 -7.3593 1.4818 1.7600 -82 469 -7.3032 1.4792 1.7600 -82 470 -7.2481 1.4740 1.7600 -82 471 -7.1902 1.4650 1.7600 -82 472 -7.1349 1.4543 1.7600 -82 473 -7.0821 1.4421 1.7600 -82 474 -7.0310 1.4303 1.7600 -82 475 -6.9809 1.4256 1.7600 -82 476 -6.9299 1.4226 1.7600 -82 477 -6.8789 1.4209 1.7600 -82 478 -6.8251 1.4184 1.7600 -82 479 -6.7674 1.4168 1.7600 -82 480 -6.7090 1.4195 1.7600 -82 481 -6.6501 1.4227 1.7600 -82 482 -6.5927 1.4246 1.7600 -82 483 -6.5340 1.4232 1.7600 -82 484 -6.4741 1.4212 1.7600 -82 485 -6.4142 1.4127 1.7600 -82 486 -6.3536 1.4034 1.7600 -82 487 -6.2917 1.3901 1.7600 -82 488 -6.2305 1.3782 1.7600 -82 489 -6.1697 1.3638 1.7600 -82 490 -6.1072 1.3498 1.7600 -82 491 -6.0444 1.3348 1.7600 -82 492 -5.9856 1.3268 1.7600 -82 493 -5.9286 1.3212 1.7600 -82 494 -5.8701 1.3176 1.7600 -82 495 -5.8176 1.3158 1.7600 -82 496 -5.7633 1.3160 1.7600 -82 497 -5.7080 1.3155 1.7600 -82 498 -5.6500 1.3167 1.7600 -82 499 -5.5894 1.3196 1.7600 -82 500 -5.5338 1.3233 1.7600 -82 501 -5.4838 1.3236 1.7600 -82 502 -5.4317 1.3199 1.7600 -82 503 -5.3799 1.3099 1.7600 -82 504 -5.3348 1.3005 1.7600 -82 505 -5.2907 1.2865 1.7600 -82 506 -5.2493 1.2732 1.7600 -82 507 -5.2070 1.2580 1.7600 -82 508 -5.1647 1.2421 1.7600 -82 509 -5.1217 1.2242 1.7600 -82 510 -5.0793 1.2058 1.7600 -82 511 -5.0379 1.1889 1.7600 -82 512 -4.9918 1.1766 1.7600 -82 513 -4.9441 1.1660 1.7600 -82 514 -4.8964 1.1586 1.7600 -82 515 -4.8483 1.1532 1.7600 -82 516 -4.8042 1.1501 1.7600 -82 517 -4.7562 1.1478 1.7600 -82 518 -4.7085 1.1475 1.7600 -82 519 -4.6552 1.1472 1.7600 -82 520 -4.6012 1.1492 1.7600 -82 521 -4.5490 1.1508 1.7600 -82 522 -4.5003 1.1480 1.7600 -82 523 -4.4507 1.1427 1.7600 -82 524 -4.4004 1.1324 1.7600 -82 525 -4.3557 1.1225 1.7600 -82 526 -4.3090 1.1087 1.7600 -82 527 -4.2634 1.0934 1.7600 -82 528 -4.2137 1.0772 1.7600 -82 529 -4.1612 1.0595 1.7600 -82 530 -4.1124 1.0423 1.7600 -82 531 -4.0660 1.0303 1.7600 -82 532 -4.0202 1.0240 1.7600 -82 533 -3.9675 1.0222 1.7600 -82 534 -3.9208 1.0223 1.7600 -82 535 -3.8739 1.0240 1.7600 -82 536 -3.8282 1.0232 1.7600 -82 537 -3.7738 1.0220 1.7600 -82 538 -3.7157 1.0254 1.7600 -82 539 -3.6519 1.0321 1.7600 -82 540 -3.5962 1.0431 1.7600 -82 541 -3.5420 1.0520 1.7600 -82 542 -3.4885 1.0517 1.7600 -82 543 -3.4345 1.0448 1.7600 -82 544 -3.3894 1.0335 1.7600 -82 545 -3.3425 1.0216 1.7600 -82 546 -3.2990 1.0077 1.7600 -82 547 -3.2535 0.9896 1.7600 -82 548 -3.2033 0.9724 1.7600 -82 549 -3.1500 0.9536 1.7600 -82 550 -3.0957 0.9391 1.7600 -82 551 -3.0469 0.9304 1.7600 -82 552 -2.9952 0.9251 1.7600 -82 553 -2.9432 0.9241 1.7600 -82 554 -2.8943 0.9254 1.7600 -82 555 -2.8444 0.9311 1.7600 -82 556 -2.7948 0.9354 1.7600 -82 557 -2.7377 0.9454 1.7600 -82 558 -2.6806 0.9569 1.7600 -82 559 -2.6245 0.9651 1.7600 -82 560 -2.5655 0.9704 1.7600 -82 561 -2.5038 0.9661 1.7600 -82 562 -2.4451 0.9574 1.7600 -82 563 -2.3908 0.9455 1.7600 -82 564 -2.3353 0.9328 1.7600 -82 565 -2.2748 0.9156 1.7600 -82 566 -2.2094 0.8975 1.7600 -82 567 -2.1438 0.8777 1.7600 -82 568 -2.0807 0.8615 1.7600 -82 569 -2.0182 0.8506 1.7600 -82 570 -1.9549 0.8453 1.7600 -82 571 -1.8948 0.8435 1.7600 -82 572 -1.8344 0.8433 1.7600 -82 573 -1.7760 0.8457 1.7600 -82 574 -1.7160 0.8475 1.7600 -82 575 -1.6528 0.8524 1.7600 -82 576 -1.5893 0.8580 1.7600 -82 577 -1.5268 0.8679 1.7600 -82 578 -1.4654 0.8722 1.7600 -82 579 -1.4089 0.8727 1.7600 -82 580 -1.3566 0.8720 1.7600 -82 581 -1.3060 0.8712 1.7600 -82 582 -1.2521 0.8701 1.7600 -82 583 -1.1951 0.8636 1.7600 -82 584 -1.1347 0.8509 1.7600 -82 585 -1.0732 0.8456 1.7600 -82 586 -1.0130 0.8397 1.7600 -82 587 -0.9582 0.8285 1.7600 -82 588 -0.9001 0.8162 1.7600 -82 589 -0.8398 0.8073 1.7600 -82 590 -0.7829 0.8051 1.7600 -82 591 -0.7259 0.8065 1.7600 -82 592 -0.6715 0.8109 1.7600 -82 593 -0.6124 0.8151 1.7600 -82 594 -0.5524 0.8193 1.7600 -82 595 -0.4935 0.8205 1.7600 -82 596 -0.4311 0.8164 1.7600 -82 597 -0.3709 0.8087 1.7600 -82 598 -0.3133 0.7978 1.7600 -82 599 -0.2563 0.7846 1.7600 -82 600 -0.1967 0.7630 1.7600 -82 601 -0.1305 0.7457 1.7600 -82 602 -0.0641 0.7371 1.7600 -82 603 -0.0009 0.7405 1.7600 -82 604 0.0623 0.7522 1.7600 -82 605 0.1180 0.7662 1.7600 -82 606 0.1709 0.7814 1.7600 -82 607 0.2234 0.7954 1.7600 -82 608 0.2759 0.8111 1.7600 -82 609 0.3256 0.8306 1.7600 -82 610 0.3771 0.8520 1.7600 -82 611 0.4314 0.8709 1.7600 -82 612 0.4804 0.8834 1.7600 -82 613 0.5296 0.8919 1.7600 -82 614 0.5788 0.8980 1.7600 -82 615 0.6292 0.9025 1.7600 -82 616 0.6843 0.9034 1.7600 -82 617 0.7367 0.9048 1.7600 -82 618 0.7914 0.9061 1.7600 -82 619 0.8476 0.9093 1.7600 -82 620 0.9046 0.9180 1.7600 -82 621 0.9625 0.9293 1.7600 -82 622 1.0181 0.9421 1.7600 -82 623 1.0713 0.9532 1.7600 -82 624 1.1255 0.9609 1.7600 -82 625 1.1772 0.9712 1.7600 -82 626 1.2306 0.9825 1.7600 -82 627 1.2820 0.9841 1.7600 -82 628 1.3362 0.9789 1.7600 -82 629 1.3893 0.9668 1.7600 -82 630 1.4426 0.9561 1.7600 -82 631 1.5002 0.9434 1.7600 -82 632 1.5579 0.9306 1.7600 -82 633 1.6220 0.9187 1.7600 -82 634 1.6830 0.9073 1.7600 -82 635 1.7454 0.8985 1.7600 -82 636 1.8042 0.8950 1.7600 -82 637 1.8643 0.8947 1.7600 -82 638 1.9216 0.8972 1.7600 -82 639 1.9757 0.8997 1.7600 -82 640 2.0303 0.9039 1.7600 -82 641 2.0883 0.9110 1.7600 -82 642 2.1535 0.9203 1.7600 -82 643 2.2198 0.9282 1.7600 -82 644 2.2844 0.9332 1.7600 -82 645 2.3493 0.9349 1.7600 -82 646 2.4119 0.9338 1.7600 -82 647 2.4721 0.9283 1.7600 -82 648 2.5301 0.9242 1.7600 -82 649 2.5850 0.9178 1.7600 -82 650 2.6467 0.9135 1.7600 -82 651 2.7112 0.9061 1.7600 -82 652 2.7790 0.8994 1.7600 -82 653 2.8436 0.8969 1.7600 -82 654 2.9092 0.8963 1.7600 -82 655 2.9772 0.8994 1.7600 -82 656 3.0389 0.9027 1.7600 -82 657 3.0993 0.9075 1.7600 -82 658 3.1604 0.9101 1.7600 -82 659 3.2244 0.9161 1.7600 -82 660 3.2961 0.9204 1.7600 -82 661 3.3661 0.9226 1.7600 -82 662 3.4360 0.9188 1.7600 -82 663 3.5028 0.9073 1.7600 -82 664 3.5656 0.8942 1.7600 -82 665 3.6261 0.8748 1.7600 -82 666 3.6874 0.8578 1.7600 -82 667 3.7514 0.8369 1.7600 -82 668 3.8171 0.8138 1.7600 -82 669 3.8785 0.7924 1.7600 -82 670 3.9423 0.7740 1.7600 -82 671 4.0075 0.7595 1.7600 -82 672 4.0734 0.7500 1.7600 -82 673 4.1326 0.7422 1.7600 -82 674 4.1874 0.7350 1.7600 -82 675 4.2401 0.7281 1.7600 -82 676 4.2972 0.7203 1.7600 -82 677 4.3626 0.7119 1.7600 -82 678 4.4255 0.7024 1.7600 -82 679 4.4877 0.6951 1.7600 -82 680 4.5537 0.6817 1.7600 -82 681 4.6174 0.6639 1.7600 -82 682 4.6725 0.6435 1.7600 -82 683 4.7262 0.6244 1.7600 -82 684 4.7792 0.6038 1.7600 -82 685 4.8376 0.5864 1.7600 -82 686 4.9020 0.5653 1.7600 -82 687 4.9675 0.5440 1.7600 -82 688 5.0323 0.5271 1.7600 -82 689 5.0999 0.5150 1.7600 -82 690 5.1667 0.5078 1.7600 -82 691 5.2271 0.5029 1.7600 -82 692 5.2864 0.4990 1.7600 -82 693 5.3431 0.4990 1.7600 -82 694 5.4069 0.5016 1.7600 -82 695 5.4798 0.5053 1.7600 -82 696 5.5519 0.5090 1.7600 -82 697 5.6249 0.5073 1.7600 -82 698 5.6987 0.5006 1.7600 -82 699 5.7649 0.4922 1.7600 -82 700 5.8214 0.4845 1.7600 -82 701 5.8739 0.4757 1.7600 -82 702 5.9303 0.4660 1.7600 -83 427 -7.7637 1.9306 1.7600 -83 428 -7.6988 1.9219 1.7600 -83 429 -7.6432 1.9286 1.7600 -83 430 -7.5940 1.9475 1.7600 -83 431 -7.5349 1.9676 1.7600 -83 432 -7.4655 1.9736 1.7600 -83 433 -7.3877 1.9764 1.7600 -83 434 -7.3041 1.9906 1.7600 -83 435 -7.2330 1.9833 1.7600 -83 436 -7.1619 1.9760 1.7600 -83 437 -7.0728 1.9598 1.7600 -83 438 -7.0055 1.9678 1.7600 -83 439 -6.9383 1.9614 1.7600 -83 440 -6.8715 1.9538 1.7600 -83 441 -6.8232 2.0299 1.7600 -83 442 -6.7114 2.0119 1.7600 -83 443 -6.5995 1.9939 1.7600 -83 444 -6.5242 1.9696 1.7600 -83 445 -6.4564 1.9464 1.7600 -83 446 -6.3908 1.9360 1.7600 -83 447 -6.3282 1.9390 1.7600 -83 448 -6.2643 1.9450 1.7600 -83 449 -6.1950 1.9502 1.7600 -83 450 -6.1198 1.9565 1.7600 -83 451 -6.0442 1.9673 1.7600 -83 452 -5.9737 1.9828 1.7600 -83 453 -5.9070 1.9966 1.7600 -83 454 -5.8437 2.0007 1.7600 -83 455 -5.7822 1.9959 1.7600 -83 456 -5.7194 1.9861 1.7600 -83 457 -5.6537 1.9720 1.7600 -83 458 -5.5866 1.9525 1.7600 -83 459 -5.5099 1.9163 1.7600 -83 460 -5.4495 1.8885 1.7600 -83 461 -5.3914 1.8639 1.7600 -83 462 -5.3318 1.8501 1.7600 -83 463 -5.2590 1.8382 1.7600 -83 464 -5.2001 1.8400 1.7600 -83 465 -5.1360 1.8396 1.7600 -83 466 -5.0712 1.8406 1.7600 -83 467 -5.0045 1.8437 1.7600 -83 468 -4.9309 1.8475 1.7600 -83 469 -4.8625 1.8542 1.7600 -83 470 -4.8009 1.8529 1.7600 -83 471 -4.7456 1.8425 1.7600 -83 472 -4.7002 1.8209 1.7600 -83 473 -4.6498 1.7944 1.7600 -83 474 -4.6009 1.7632 1.7600 -83 475 -4.5526 1.7293 1.7600 -83 476 -4.5045 1.6930 1.7600 -83 477 -4.4610 1.6557 1.7600 -83 478 -4.4155 1.6277 1.7600 -83 479 -4.3687 1.6099 1.7600 -83 480 -4.3193 1.6024 1.7600 -83 481 -4.2723 1.5973 1.7600 -83 482 -4.2202 1.5965 1.7600 -83 483 -4.1697 1.5926 1.7600 -83 484 -4.1141 1.5869 1.7600 -83 485 -4.0575 1.5717 1.7600 -83 486 -4.0026 1.5496 1.7600 -83 487 -3.9452 1.5239 1.7600 -83 488 -3.8875 1.4967 1.7600 -83 489 -3.8327 1.4657 1.7600 -83 490 -3.7787 1.4395 1.7600 -83 491 -3.7260 1.4201 1.7600 -83 492 -3.6711 1.4167 1.7600 -83 493 -3.6191 1.4176 1.7600 -83 494 -3.5622 1.4211 1.7600 -83 495 -3.5014 1.4305 1.7600 -83 496 -3.4361 1.4440 1.7600 -83 497 -3.3676 1.4585 1.7600 -83 498 -3.2964 1.4719 1.7600 -83 499 -3.2270 1.4747 1.7600 -83 500 -3.1539 1.4712 1.7600 -83 501 -3.0811 1.4657 1.7600 -83 502 -3.0086 1.4589 1.7600 -83 503 -2.9364 1.4429 1.7600 -83 504 -2.8636 1.4268 1.7600 -83 505 -2.7896 1.4075 1.7600 -83 506 -2.7252 1.3979 1.7600 -83 507 -2.6637 1.4058 1.7600 -83 508 -2.6037 1.4195 1.7600 -83 509 -2.5435 1.4381 1.7600 -83 510 -2.4763 1.4487 1.7600 -83 511 -2.4146 1.4678 1.7600 -83 512 -2.3596 1.4931 1.7600 -83 513 -2.2992 1.5166 1.7600 -83 514 -2.2407 1.5339 1.7600 -83 515 -2.1809 1.5399 1.7600 -83 516 -2.1177 1.5394 1.7600 -83 517 -2.0535 1.5362 1.7600 -83 518 -1.9855 1.5290 1.7600 -83 519 -1.9147 1.5146 1.7600 -83 520 -1.8445 1.4967 1.7600 -83 521 -1.7726 1.4814 1.7600 -83 522 -1.7042 1.4788 1.7600 -83 523 -1.6367 1.4864 1.7600 -83 524 -1.5695 1.4970 1.7600 -83 525 -1.5031 1.5092 1.7600 -83 526 -1.4360 1.5220 1.7600 -83 527 -1.3681 1.5385 1.7600 -83 528 -1.3017 1.5593 1.7600 -83 529 -1.2367 1.5779 1.7600 -83 530 -1.1749 1.5865 1.7600 -83 531 -1.1140 1.5854 1.7600 -83 532 -1.0532 1.5808 1.7600 -83 533 -0.9918 1.5744 1.7600 -83 534 -0.9276 1.5609 1.7600 -83 535 -0.8612 1.5405 1.7600 -83 536 -0.7963 1.5159 1.7600 -83 537 -0.7332 1.4927 1.7600 -83 538 -0.6731 1.4809 1.7600 -83 539 -0.6115 1.4812 1.7600 -83 540 -0.5477 1.4876 1.7600 -83 541 -0.4834 1.4959 1.7600 -83 542 -0.4165 1.5063 1.7600 -83 543 -0.3484 1.5212 1.7600 -83 544 -0.2846 1.5411 1.7600 -83 545 -0.2270 1.5624 1.7600 -83 546 -0.1753 1.5771 1.7600 -83 547 -0.1263 1.5829 1.7600 -83 548 -0.0787 1.5844 1.7600 -83 549 -0.0290 1.5845 1.7600 -83 550 0.0285 1.5809 1.7600 -83 551 0.0951 1.5726 1.7600 -83 552 0.1632 1.5607 1.7600 -83 553 0.2285 1.5454 1.7600 -83 554 0.2930 1.5298 1.7600 -83 555 0.3576 1.5230 1.7600 -83 556 0.4187 1.5295 1.7600 -83 557 0.4800 1.5362 1.7600 -83 558 0.5479 1.5495 1.7600 -83 559 0.6236 1.5628 1.7600 -83 560 0.6956 1.5773 1.7600 -83 561 0.7653 1.5952 1.7600 -83 562 0.8335 1.6119 1.7600 -83 563 0.8975 1.6185 1.7600 -83 564 0.9546 1.6155 1.7600 -83 565 1.0034 1.6036 1.7600 -83 566 1.0591 1.5920 1.7600 -83 567 1.1224 1.5716 1.7600 -83 568 1.1833 1.5560 1.7600 -83 569 1.2485 1.5404 1.7600 -83 570 1.3118 1.5215 1.7600 -83 571 1.3768 1.5026 1.7600 -83 572 1.4346 1.4910 1.7600 -83 573 1.4875 1.4882 1.7600 -83 574 1.5416 1.4921 1.7600 -83 575 1.5931 1.4940 1.7600 -83 576 1.6462 1.4991 1.7600 -83 577 1.6988 1.5102 1.7600 -83 578 1.7587 1.5228 1.7600 -83 579 1.8200 1.5397 1.7600 -83 580 1.8787 1.5564 1.7600 -83 581 1.9295 1.5659 1.7600 -83 582 1.9780 1.5670 1.7600 -83 583 2.0314 1.5632 1.7600 -83 584 2.0863 1.5565 1.7600 -83 585 2.1430 1.5491 1.7600 -83 586 2.2036 1.5390 1.7600 -83 587 2.2652 1.5228 1.7600 -83 588 2.3250 1.5023 1.7600 -83 589 2.3916 1.4827 1.7600 -83 590 2.4523 1.4712 1.7600 -83 591 2.5065 1.4712 1.7600 -83 592 2.5674 1.4786 1.7600 -83 593 2.6254 1.4910 1.7600 -83 594 2.6896 1.5032 1.7600 -83 595 2.7548 1.5190 1.7600 -83 596 2.8217 1.5369 1.7600 -83 597 2.8944 1.5593 1.7600 -83 598 2.9646 1.5797 1.7600 -83 599 3.0220 1.5894 1.7600 -83 600 3.0774 1.5877 1.7600 -83 601 3.1354 1.5839 1.7600 -83 602 3.1929 1.5778 1.7600 -83 603 3.2530 1.5688 1.7600 -83 604 3.3133 1.5582 1.7600 -83 605 3.3759 1.5443 1.7600 -83 606 3.4440 1.5284 1.7600 -83 607 3.5142 1.5161 1.7600 -83 608 3.5776 1.5146 1.7600 -83 609 3.6423 1.5226 1.7600 -83 610 3.7099 1.5338 1.7600 -83 611 3.7788 1.5399 1.7600 -83 612 3.8448 1.5519 1.7600 -83 613 3.9124 1.5701 1.7600 -83 614 3.9873 1.5947 1.7600 -83 615 4.0660 1.6141 1.7600 -83 616 4.1357 1.6269 1.7600 -83 617 4.2037 1.6360 1.7600 -83 618 4.2744 1.6421 1.7600 -83 619 4.3506 1.6494 1.7600 -83 620 4.4305 1.6580 1.7600 -83 621 4.5173 1.6664 1.7600 -83 622 4.6139 1.6741 1.7600 -83 623 4.7115 1.6831 1.7600 -83 624 4.7993 1.7019 1.7600 -83 625 4.8869 1.7336 1.7600 -83 626 4.9699 1.7725 1.7600 -83 627 5.0518 1.8059 1.7600 -83 628 5.1265 1.8397 1.7600 -83 629 5.2081 1.8796 1.7600 -83 630 5.2966 1.9236 1.7600 -83 631 5.3835 1.9621 1.7600 -83 632 5.4727 1.9885 1.7600 -83 633 5.5693 2.0078 1.7600 -83 634 5.6616 2.0210 1.7600 -83 635 5.7453 2.0278 1.7600 -83 636 5.8299 2.0343 1.7600 -83 637 5.9214 2.0418 1.7600 -84 463 -7.8013 0.8321 1.7600 -84 464 -7.7595 0.8114 1.7600 -84 465 -7.7137 0.7955 1.7600 -84 466 -7.6630 0.7841 1.7600 -84 467 -7.6088 0.7758 1.7600 -84 468 -7.5518 0.7715 1.7600 -84 469 -7.4931 0.7710 1.7600 -84 470 -7.4353 0.7735 1.7600 -84 471 -7.3827 0.7776 1.7600 -84 472 -7.3330 0.7802 1.7600 -84 473 -7.2831 0.7782 1.7600 -84 474 -7.2280 0.7705 1.7600 -84 475 -7.1756 0.7589 1.7600 -84 476 -7.1213 0.7453 1.7600 -84 477 -7.0657 0.7279 1.7600 -84 478 -7.0093 0.7077 1.7600 -84 479 -6.9551 0.6823 1.7600 -84 480 -6.9003 0.6536 1.7600 -84 481 -6.8503 0.6270 1.7600 -84 482 -6.8036 0.5994 1.7600 -84 483 -6.7522 0.5754 1.7600 -84 484 -6.6996 0.5592 1.7600 -84 485 -6.6461 0.5447 1.7600 -84 486 -6.5933 0.5331 1.7600 -84 487 -6.5325 0.5259 1.7600 -84 488 -6.4702 0.5233 1.7600 -84 489 -6.4063 0.5231 1.7600 -84 490 -6.3411 0.5284 1.7600 -84 491 -6.2809 0.5337 1.7600 -84 492 -6.2208 0.5287 1.7600 -84 493 -6.1612 0.5180 1.7600 -84 494 -6.1033 0.5052 1.7600 -84 495 -6.0479 0.4912 1.7600 -84 496 -5.9905 0.4787 1.7600 -84 497 -5.9283 0.4633 1.7600 -84 498 -5.8742 0.4399 1.7600 -84 499 -5.8178 0.4158 1.7600 -84 500 -5.7664 0.3904 1.7600 -84 501 -5.7188 0.3691 1.7600 -84 502 -5.6669 0.3538 1.7600 -84 503 -5.6104 0.3423 1.7600 -84 504 -5.5579 0.3336 1.7600 -84 505 -5.5084 0.3297 1.7600 -84 506 -5.4555 0.3297 1.7600 -84 507 -5.4000 0.3363 1.7600 -84 508 -5.3432 0.3492 1.7600 -84 509 -5.2885 0.3642 1.7600 -84 510 -5.2382 0.3765 1.7600 -84 511 -5.1855 0.3783 1.7600 -84 512 -5.1348 0.3757 1.7600 -84 513 -5.0854 0.3699 1.7600 -84 514 -5.0351 0.3633 1.7600 -84 515 -4.9802 0.3523 1.7600 -84 516 -4.9287 0.3394 1.7600 -84 517 -4.8754 0.3197 1.7600 -84 518 -4.8265 0.3018 1.7600 -84 519 -4.7789 0.2849 1.7600 -84 520 -4.7332 0.2736 1.7600 -84 521 -4.6820 0.2665 1.7600 -84 522 -4.6253 0.2650 1.7600 -84 523 -4.5688 0.2664 1.7600 -84 524 -4.5169 0.2717 1.7600 -84 525 -4.4699 0.2793 1.7600 -84 526 -4.4288 0.2913 1.7600 -84 527 -4.3870 0.3050 1.7600 -84 528 -4.3467 0.3193 1.7600 -84 529 -4.3020 0.3305 1.7600 -84 530 -4.2597 0.3388 1.7600 -84 531 -4.2172 0.3434 1.7600 -84 532 -4.1712 0.3489 1.7600 -84 533 -4.1249 0.3475 1.7600 -84 534 -4.0724 0.3435 1.7600 -84 535 -4.0168 0.3345 1.7600 -84 536 -3.9636 0.3216 1.7600 -84 537 -3.9137 0.3099 1.7600 -84 538 -3.8666 0.3034 1.7600 -84 539 -3.8162 0.3053 1.7600 -84 540 -3.7773 0.3109 1.7600 -84 541 -3.7397 0.3154 1.7600 -84 542 -3.6977 0.3198 1.7600 -84 543 -3.6536 0.3269 1.7600 -84 544 -3.6051 0.3384 1.7600 -84 545 -3.5549 0.3530 1.7600 -84 546 -3.5014 0.3677 1.7600 -84 547 -3.4517 0.3813 1.7600 -84 548 -3.3984 0.3929 1.7600 -84 549 -3.3407 0.3991 1.7600 -84 550 -3.2770 0.3957 1.7600 -84 551 -3.2181 0.3856 1.7600 -84 552 -3.1599 0.3735 1.7600 -84 553 -3.1039 0.3586 1.7600 -84 554 -3.0504 0.3408 1.7600 -84 555 -2.9979 0.3148 1.7600 -84 556 -2.9466 0.2926 1.7600 -84 557 -2.8945 0.2768 1.7600 -84 558 -2.8384 0.2666 1.7600 -84 559 -2.7854 0.2636 1.7600 -84 560 -2.7326 0.2618 1.7600 -84 561 -2.6747 0.2625 1.7600 -84 562 -2.6123 0.2717 1.7600 -84 563 -2.5477 0.2864 1.7600 -84 564 -2.4793 0.3004 1.7600 -84 565 -2.4058 0.3143 1.7600 -84 566 -2.3344 0.3222 1.7600 -84 567 -2.2622 0.3242 1.7600 -84 568 -2.1917 0.3199 1.7600 -84 569 -2.1268 0.3148 1.7600 -84 570 -2.0595 0.3061 1.7600 -84 571 -1.9953 0.2943 1.7600 -84 572 -1.9371 0.2782 1.7600 -84 573 -1.8778 0.2559 1.7600 -84 574 -1.8177 0.2374 1.7600 -84 575 -1.7524 0.2253 1.7600 -84 576 -1.6848 0.2232 1.7600 -84 577 -1.6221 0.2269 1.7600 -84 578 -1.5573 0.2373 1.7600 -84 579 -1.4931 0.2525 1.7600 -84 580 -1.4284 0.2737 1.7600 -84 581 -1.3548 0.2961 1.7600 -84 582 -1.2813 0.3185 1.7600 -84 583 -1.2083 0.3323 1.7600 -84 584 -1.1372 0.3377 1.7600 -84 585 -1.0692 0.3390 1.7600 -84 586 -1.0032 0.3378 1.7600 -84 587 -0.9337 0.3360 1.7600 -84 588 -0.8615 0.3319 1.7600 -84 589 -0.7924 0.3242 1.7600 -84 590 -0.7219 0.3160 1.7600 -84 591 -0.6561 0.3108 1.7600 -84 592 -0.5921 0.3111 1.7600 -84 593 -0.5276 0.3179 1.7600 -84 594 -0.4659 0.3278 1.7600 -84 595 -0.4101 0.3381 1.7600 -84 596 -0.3508 0.3517 1.7600 -84 597 -0.2883 0.3685 1.7600 -84 598 -0.2248 0.3881 1.7600 -84 599 -0.1633 0.4077 1.7600 -84 600 -0.1077 0.4235 1.7600 -84 601 -0.0500 0.4353 1.7600 -84 602 0.0070 0.4378 1.7600 -84 603 0.0658 0.4369 1.7600 -84 604 0.1274 0.4286 1.7600 -84 605 0.1954 0.4121 1.7600 -84 606 0.2614 0.3933 1.7600 -84 607 0.3270 0.3718 1.7600 -84 608 0.3866 0.3556 1.7600 -84 609 0.4466 0.3448 1.7600 -84 610 0.5093 0.3432 1.7600 -84 611 0.5698 0.3454 1.7600 -84 612 0.6292 0.3514 1.7600 -84 613 0.6890 0.3592 1.7600 -84 614 0.7540 0.3735 1.7600 -84 615 0.8173 0.3922 1.7600 -84 616 0.8807 0.4165 1.7600 -84 617 0.9403 0.4337 1.7600 -84 618 0.9968 0.4398 1.7600 -84 619 1.0566 0.4430 1.7600 -84 620 1.1132 0.4424 1.7600 -84 621 1.1717 0.4423 1.7600 -84 622 1.2364 0.4375 1.7600 -84 623 1.3004 0.4293 1.7600 -84 624 1.3658 0.4135 1.7600 -84 625 1.4296 0.3993 1.7600 -84 626 1.4938 0.3842 1.7600 -84 627 1.5548 0.3719 1.7600 -84 628 1.6201 0.3679 1.7600 -84 629 1.6871 0.3719 1.7600 -84 630 1.7475 0.3786 1.7600 -84 631 1.8092 0.3864 1.7600 -84 632 1.8706 0.3993 1.7600 -84 633 1.9353 0.4159 1.7600 -84 634 2.0007 0.4376 1.7600 -84 635 2.0674 0.4592 1.7600 -84 636 2.1357 0.4753 1.7600 -84 637 2.2063 0.4837 1.7600 -84 638 2.2776 0.4844 1.7600 -84 639 2.3464 0.4809 1.7600 -84 640 2.4132 0.4756 1.7600 -84 641 2.4818 0.4677 1.7600 -84 642 2.5510 0.4552 1.7600 -84 643 2.6212 0.4403 1.7600 -84 644 2.6939 0.4247 1.7600 -84 645 2.7638 0.4150 1.7600 -84 646 2.8347 0.4127 1.7600 -84 647 2.9048 0.4166 1.7600 -84 648 2.9742 0.4213 1.7600 -84 649 3.0437 0.4277 1.7600 -84 650 3.1124 0.4397 1.7600 -84 651 3.1858 0.4562 1.7600 -84 652 3.2638 0.4756 1.7600 -84 653 3.3410 0.4910 1.7600 -84 654 3.4184 0.4967 1.7600 -84 655 3.4991 0.4942 1.7600 -84 656 3.5711 0.4866 1.7600 -84 657 3.6406 0.4786 1.7600 -84 658 3.7113 0.4687 1.7600 -84 659 3.7844 0.4570 1.7600 -84 660 3.8598 0.4409 1.7600 -84 661 3.9380 0.4233 1.7600 -84 662 4.0127 0.4127 1.7600 -84 663 4.0929 0.4087 1.7600 -84 664 4.1699 0.4127 1.7600 -84 665 4.2445 0.4190 1.7600 -84 666 4.3139 0.4271 1.7600 -84 667 4.3811 0.4385 1.7600 -84 668 4.4524 0.4550 1.7600 -84 669 4.5312 0.4732 1.7600 -84 670 4.6124 0.4889 1.7600 -84 671 4.6972 0.4994 1.7600 -84 672 4.7798 0.5008 1.7600 -84 673 4.8591 0.4990 1.7600 -84 674 4.9313 0.4940 1.7600 -84 675 5.0029 0.4889 1.7600 -84 676 5.0751 0.4832 1.7600 -84 677 5.1497 0.4725 1.7600 -84 678 5.2287 0.4602 1.7600 -84 679 5.3102 0.4524 1.7600 -84 680 5.3926 0.4535 1.7600 -84 681 5.4739 0.4598 1.7600 -84 682 5.5478 0.4690 1.7600 -84 683 5.6158 0.4821 1.7600 -84 684 5.6842 0.4980 1.7600 -84 685 5.7565 0.5173 1.7600 -84 686 5.8440 0.5374 1.7600 -84 687 5.9348 0.5546 1.7600 -85 443 -7.8046 0.9995 1.7600 -85 444 -7.7385 0.9914 1.7600 -85 445 -7.6681 0.9849 1.7600 -85 446 -7.5924 0.9809 1.7600 -85 447 -7.5181 0.9817 1.7600 -85 448 -7.4508 0.9872 1.7600 -85 449 -7.3877 0.9921 1.7600 -85 450 -7.3197 0.9864 1.7600 -85 451 -7.2608 0.9769 1.7600 -85 452 -7.2022 0.9689 1.7600 -85 453 -7.1395 0.9613 1.7600 -85 454 -7.0687 0.9464 1.7600 -85 455 -6.9986 0.9264 1.7600 -85 456 -6.9343 0.9023 1.7600 -85 457 -6.8740 0.8766 1.7600 -85 458 -6.8131 0.8543 1.7600 -85 459 -6.7528 0.8409 1.7600 -85 460 -6.6922 0.8317 1.7600 -85 461 -6.6273 0.8236 1.7600 -85 462 -6.5559 0.8179 1.7600 -85 463 -6.4809 0.8154 1.7600 -85 464 -6.4090 0.8167 1.7600 -85 465 -6.3439 0.8198 1.7600 -85 466 -6.2861 0.8187 1.7600 -85 467 -6.2341 0.8108 1.7600 -85 468 -6.1815 0.8004 1.7600 -85 469 -6.1254 0.7887 1.7600 -85 470 -6.0668 0.7728 1.7600 -85 471 -6.0082 0.7516 1.7600 -85 472 -5.9528 0.7248 1.7600 -85 473 -5.9018 0.6953 1.7600 -85 474 -5.8513 0.6670 1.7600 -85 475 -5.8008 0.6477 1.7600 -85 476 -5.7515 0.6374 1.7600 -85 477 -5.7016 0.6327 1.7600 -85 478 -5.6476 0.6308 1.7600 -85 479 -5.5906 0.6322 1.7600 -85 480 -5.5341 0.6377 1.7600 -85 481 -5.4775 0.6530 1.7600 -85 482 -5.4261 0.6667 1.7600 -85 483 -5.3724 0.6795 1.7600 -85 484 -5.3234 0.6853 1.7600 -85 485 -5.2770 0.6837 1.7600 -85 486 -5.2265 0.6831 1.7600 -85 487 -5.1745 0.6779 1.7600 -85 488 -5.1198 0.6667 1.7600 -85 489 -5.0640 0.6470 1.7600 -85 490 -5.0108 0.6222 1.7600 -85 491 -4.9580 0.5986 1.7600 -85 492 -4.9073 0.5821 1.7600 -85 493 -4.8552 0.5734 1.7600 -85 494 -4.8017 0.5700 1.7600 -85 495 -4.7483 0.5697 1.7600 -85 496 -4.6950 0.5693 1.7600 -85 497 -4.6392 0.5751 1.7600 -85 498 -4.5829 0.5874 1.7600 -85 499 -4.5257 0.6053 1.7600 -85 500 -4.4700 0.6242 1.7600 -85 501 -4.4173 0.6343 1.7600 -85 502 -4.3630 0.6378 1.7600 -85 503 -4.3112 0.6378 1.7600 -85 504 -4.2572 0.6365 1.7600 -85 505 -4.2035 0.6349 1.7600 -85 506 -4.1480 0.6242 1.7600 -85 507 -4.0929 0.6088 1.7600 -85 508 -4.0339 0.5886 1.7600 -85 509 -3.9764 0.5711 1.7600 -85 510 -3.9186 0.5610 1.7600 -85 511 -3.8603 0.5562 1.7600 -85 512 -3.8041 0.5575 1.7600 -85 513 -3.7473 0.5621 1.7600 -85 514 -3.6890 0.5668 1.7600 -85 515 -3.6272 0.5765 1.7600 -85 516 -3.5632 0.5871 1.7600 -85 517 -3.5013 0.6009 1.7600 -85 518 -3.4429 0.6059 1.7600 -85 519 -3.3848 0.6021 1.7600 -85 520 -3.3340 0.5938 1.7600 -85 521 -3.2814 0.5849 1.7600 -85 522 -3.2295 0.5737 1.7600 -85 523 -3.1736 0.5585 1.7600 -85 524 -3.1180 0.5399 1.7600 -85 525 -3.0613 0.5200 1.7600 -85 526 -3.0046 0.5017 1.7600 -85 527 -2.9456 0.4936 1.7600 -85 528 -2.8870 0.4931 1.7600 -85 529 -2.8256 0.5008 1.7600 -85 530 -2.7637 0.5103 1.7600 -85 531 -2.7004 0.5253 1.7600 -85 532 -2.6329 0.5451 1.7600 -85 533 -2.5637 0.5671 1.7600 -85 534 -2.4998 0.5871 1.7600 -85 535 -2.4343 0.5968 1.7600 -85 536 -2.3741 0.6000 1.7600 -85 537 -2.3166 0.6012 1.7600 -85 538 -2.2590 0.6039 1.7600 -85 539 -2.1993 0.6054 1.7600 -85 540 -2.1356 0.6010 1.7600 -85 541 -2.0663 0.5944 1.7600 -85 542 -1.9974 0.5856 1.7600 -85 543 -1.9290 0.5814 1.7600 -85 544 -1.8627 0.5900 1.7600 -85 545 -1.8013 0.6003 1.7600 -85 546 -1.7388 0.6151 1.7600 -85 547 -1.6770 0.6290 1.7600 -85 548 -1.6142 0.6479 1.7600 -85 549 -1.5489 0.6693 1.7600 -85 550 -1.4830 0.6901 1.7600 -85 551 -1.4170 0.7072 1.7600 -85 552 -1.3550 0.7119 1.7600 -85 553 -1.2940 0.7097 1.7600 -85 554 -1.2346 0.7079 1.7600 -85 555 -1.1723 0.7056 1.7600 -85 556 -1.1101 0.6964 1.7600 -85 557 -1.0461 0.6810 1.7600 -85 558 -0.9771 0.6629 1.7600 -85 559 -0.9102 0.6466 1.7600 -85 560 -0.8478 0.6365 1.7600 -85 561 -0.7886 0.6315 1.7600 -85 562 -0.7267 0.6320 1.7600 -85 563 -0.6637 0.6338 1.7600 -85 564 -0.5992 0.6388 1.7600 -85 565 -0.5315 0.6489 1.7600 -85 566 -0.4638 0.6620 1.7600 -85 567 -0.3996 0.6780 1.7600 -85 568 -0.3400 0.6901 1.7600 -85 569 -0.2836 0.6941 1.7600 -85 570 -0.2283 0.6941 1.7600 -85 571 -0.1706 0.6947 1.7600 -85 572 -0.1099 0.6930 1.7600 -85 573 -0.0463 0.6861 1.7600 -85 574 0.0197 0.6722 1.7600 -85 575 0.0832 0.6541 1.7600 -85 576 0.1427 0.6377 1.7600 -85 577 0.1990 0.6281 1.7600 -85 578 0.2540 0.6240 1.7600 -85 579 0.3100 0.6243 1.7600 -85 580 0.3679 0.6268 1.7600 -85 581 0.4277 0.6321 1.7600 -85 582 0.4899 0.6410 1.7600 -85 583 0.5519 0.6533 1.7600 -85 584 0.6093 0.6681 1.7600 -85 585 0.6641 0.6811 1.7600 -85 586 0.7187 0.6863 1.7600 -85 587 0.7737 0.6853 1.7600 -85 588 0.8298 0.6814 1.7600 -85 589 0.8877 0.6755 1.7600 -85 590 0.9481 0.6661 1.7600 -85 591 1.0097 0.6504 1.7600 -85 592 1.0693 0.6301 1.7600 -85 593 1.1318 0.6087 1.7600 -85 594 1.1872 0.5943 1.7600 -85 595 1.2371 0.5874 1.7600 -85 596 1.2903 0.5813 1.7600 -85 597 1.3441 0.5771 1.7600 -85 598 1.4014 0.5735 1.7600 -85 599 1.4617 0.5727 1.7600 -85 600 1.5229 0.5760 1.7600 -85 601 1.5826 0.5810 1.7600 -85 602 1.6409 0.5858 1.7600 -85 603 1.6968 0.5838 1.7600 -85 604 1.7509 0.5763 1.7600 -85 605 1.8031 0.5675 1.7600 -85 606 1.8565 0.5587 1.7600 -85 607 1.9103 0.5491 1.7600 -85 608 1.9663 0.5337 1.7600 -85 609 2.0248 0.5133 1.7600 -85 610 2.0835 0.4898 1.7600 -85 611 2.1390 0.4716 1.7600 -85 612 2.1951 0.4580 1.7600 -85 613 2.2521 0.4495 1.7600 -85 614 2.3069 0.4476 1.7600 -85 615 2.3627 0.4447 1.7600 -85 616 2.4238 0.4458 1.7600 -85 617 2.4872 0.4526 1.7600 -85 618 2.5505 0.4644 1.7600 -85 619 2.6124 0.4766 1.7600 -85 620 2.6740 0.4834 1.7600 -85 621 2.7332 0.4846 1.7600 -85 622 2.7903 0.4825 1.7600 -85 623 2.8478 0.4812 1.7600 -85 624 2.9053 0.4782 1.7600 -85 625 2.9648 0.4684 1.7600 -85 626 3.0273 0.4551 1.7600 -85 627 3.0912 0.4390 1.7600 -85 628 3.1539 0.4268 1.7600 -85 629 3.2142 0.4212 1.7600 -85 630 3.2747 0.4198 1.7600 -85 631 3.3369 0.4220 1.7600 -85 632 3.3969 0.4251 1.7600 -85 633 3.4552 0.4315 1.7600 -85 634 3.5200 0.4421 1.7600 -85 635 3.5899 0.4560 1.7600 -85 636 3.6576 0.4721 1.7600 -85 637 3.7239 0.4825 1.7600 -85 638 3.7883 0.4843 1.7600 -85 639 3.8461 0.4827 1.7600 -85 640 3.9027 0.4803 1.7600 -85 641 3.9614 0.4753 1.7600 -85 642 4.0193 0.4675 1.7600 -85 643 4.0817 0.4535 1.7600 -85 644 4.1476 0.4372 1.7600 -85 645 4.2099 0.4226 1.7600 -85 646 4.2711 0.4145 1.7600 -85 647 4.3333 0.4112 1.7600 -85 648 4.3904 0.4115 1.7600 -85 649 4.4489 0.4126 1.7600 -85 650 4.5071 0.4135 1.7600 -85 651 4.5692 0.4192 1.7600 -85 652 4.6348 0.4266 1.7600 -85 653 4.6995 0.4340 1.7600 -85 654 4.7608 0.4337 1.7600 -85 655 4.8198 0.4248 1.7600 -85 656 4.8758 0.4161 1.7600 -85 657 4.9236 0.4074 1.7600 -85 658 4.9738 0.3998 1.7600 -85 659 5.0265 0.3875 1.7600 -85 660 5.0790 0.3693 1.7600 -85 661 5.1439 0.3451 1.7600 -85 662 5.2053 0.3231 1.7600 -85 663 5.2654 0.3068 1.7600 -85 664 5.3281 0.2976 1.7600 -85 665 5.3868 0.2937 1.7600 -85 666 5.4430 0.2924 1.7600 -85 667 5.5002 0.2943 1.7600 -85 668 5.5584 0.3013 1.7600 -85 669 5.6233 0.3123 1.7600 -85 670 5.6944 0.3231 1.7600 -85 671 5.7607 0.3308 1.7600 -85 672 5.8241 0.3320 1.7600 -85 673 5.8827 0.3300 1.7600 -85 674 5.9343 0.3278 1.7600 -86 478 -7.8037 1.0498 1.7600 -86 479 -7.7511 1.0401 1.7600 -86 480 -7.6935 1.0312 1.7600 -86 481 -7.6323 1.0246 1.7600 -86 482 -7.5692 1.0212 1.7600 -86 483 -7.5091 1.0228 1.7600 -86 484 -7.4543 1.0257 1.7600 -86 485 -7.4042 1.0251 1.7600 -86 486 -7.3558 1.0190 1.7600 -86 487 -7.3052 1.0060 1.7600 -86 488 -7.2518 0.9916 1.7600 -86 489 -7.1971 0.9790 1.7600 -86 490 -7.1402 0.9662 1.7600 -86 491 -7.0800 0.9525 1.7600 -86 492 -7.0196 0.9375 1.7600 -86 493 -6.9635 0.9207 1.7600 -86 494 -6.9124 0.9012 1.7600 -86 495 -6.8572 0.8798 1.7600 -86 496 -6.8072 0.8609 1.7600 -86 497 -6.7560 0.8444 1.7600 -86 498 -6.7078 0.8287 1.7600 -86 499 -6.6570 0.8136 1.7600 -86 500 -6.6013 0.8019 1.7600 -86 501 -6.5372 0.7957 1.7600 -86 502 -6.4664 0.7916 1.7600 -86 503 -6.3974 0.7913 1.7600 -86 504 -6.3325 0.7936 1.7600 -86 505 -6.2747 0.7903 1.7600 -86 506 -6.2204 0.7796 1.7600 -86 507 -6.1729 0.7634 1.7600 -86 508 -6.1243 0.7472 1.7600 -86 509 -6.0772 0.7343 1.7600 -86 510 -6.0254 0.7192 1.7600 -86 511 -5.9693 0.7019 1.7600 -86 512 -5.9123 0.6845 1.7600 -86 513 -5.8523 0.6701 1.7600 -86 514 -5.7961 0.6577 1.7600 -86 515 -5.7420 0.6443 1.7600 -86 516 -5.6857 0.6337 1.7600 -86 517 -5.6314 0.6257 1.7600 -86 518 -5.5771 0.6196 1.7600 -86 519 -5.5255 0.6115 1.7600 -86 520 -5.4734 0.6074 1.7600 -86 521 -5.4178 0.6062 1.7600 -86 522 -5.3586 0.6067 1.7600 -86 523 -5.2974 0.6085 1.7600 -86 524 -5.2379 0.6099 1.7600 -86 525 -5.1808 0.6073 1.7600 -86 526 -5.1275 0.6011 1.7600 -86 527 -5.0734 0.5904 1.7600 -86 528 -5.0264 0.5799 1.7600 -86 529 -4.9749 0.5704 1.7600 -86 530 -4.9188 0.5613 1.7600 -86 531 -4.8616 0.5541 1.7600 -86 532 -4.8005 0.5461 1.7600 -86 533 -4.7453 0.5421 1.7600 -86 534 -4.7035 0.5361 1.7600 -86 535 -4.6607 0.5311 1.7600 -86 536 -4.6143 0.5284 1.7600 -86 537 -4.5680 0.5258 1.7600 -86 538 -4.5195 0.5252 1.7600 -86 539 -4.4744 0.5269 1.7600 -86 540 -4.4307 0.5347 1.7600 -86 541 -4.3821 0.5452 1.7600 -86 542 -4.3351 0.5536 1.7600 -86 543 -4.2904 0.5652 1.7600 -86 544 -4.2496 0.5688 1.7600 -86 545 -4.2048 0.5716 1.7600 -86 546 -4.1560 0.5701 1.7600 -86 547 -4.1090 0.5659 1.7600 -86 548 -4.0619 0.5610 1.7600 -86 549 -4.0187 0.5583 1.7600 -86 550 -3.9771 0.5556 1.7600 -86 551 -3.9365 0.5509 1.7600 -86 552 -3.8991 0.5435 1.7600 -86 553 -3.8641 0.5339 1.7600 -86 554 -3.8247 0.5268 1.7600 -86 555 -3.7817 0.5234 1.7600 -86 556 -3.7347 0.5197 1.7600 -86 557 -3.6887 0.5157 1.7600 -86 558 -3.6362 0.5163 1.7600 -86 559 -3.5861 0.5189 1.7600 -86 560 -3.5315 0.5265 1.7600 -86 561 -3.4781 0.5376 1.7600 -86 562 -3.4329 0.5459 1.7600 -86 563 -3.3894 0.5508 1.7600 -86 564 -3.3455 0.5519 1.7600 -86 565 -3.3002 0.5516 1.7600 -86 566 -3.2547 0.5508 1.7600 -86 567 -3.2099 0.5462 1.7600 -86 568 -3.1646 0.5398 1.7600 -86 569 -3.1199 0.5322 1.7600 -86 570 -3.0728 0.5227 1.7600 -86 571 -3.0174 0.5110 1.7600 -86 572 -2.9603 0.5011 1.7600 -86 573 -2.9043 0.4963 1.7600 -86 574 -2.8441 0.4952 1.7600 -86 575 -2.7805 0.4961 1.7600 -86 576 -2.7183 0.4969 1.7600 -86 577 -2.6561 0.4981 1.7600 -86 578 -2.5884 0.5016 1.7600 -86 579 -2.5263 0.5090 1.7600 -86 580 -2.4577 0.5178 1.7600 -86 581 -2.3911 0.5259 1.7600 -86 582 -2.3263 0.5280 1.7600 -86 583 -2.2570 0.5242 1.7600 -86 584 -2.1901 0.5171 1.7600 -86 585 -2.1290 0.5113 1.7600 -86 586 -2.0699 0.5067 1.7600 -86 587 -2.0088 0.5027 1.7600 -86 588 -1.9491 0.4979 1.7600 -86 589 -1.8833 0.4952 1.7600 -86 590 -1.8130 0.4940 1.7600 -86 591 -1.7492 0.4923 1.7600 -86 592 -1.6852 0.4946 1.7600 -86 593 -1.6222 0.4982 1.7600 -86 594 -1.5621 0.5015 1.7600 -86 595 -1.5016 0.5060 1.7600 -86 596 -1.4409 0.5133 1.7600 -86 597 -1.3801 0.5211 1.7600 -86 598 -1.3146 0.5324 1.7600 -86 599 -1.2576 0.5419 1.7600 -86 600 -1.2001 0.5510 1.7600 -86 601 -1.1421 0.5538 1.7600 -86 602 -1.0851 0.5514 1.7600 -86 603 -1.0303 0.5500 1.7600 -86 604 -0.9727 0.5475 1.7600 -86 605 -0.9126 0.5449 1.7600 -86 606 -0.8514 0.5427 1.7600 -86 607 -0.7904 0.5388 1.7600 -86 608 -0.7252 0.5337 1.7600 -86 609 -0.6585 0.5261 1.7600 -86 610 -0.5947 0.5212 1.7600 -86 611 -0.5311 0.5186 1.7600 -86 612 -0.4681 0.5184 1.7600 -86 613 -0.4085 0.5181 1.7600 -86 614 -0.3491 0.5171 1.7600 -86 615 -0.2874 0.5169 1.7600 -86 616 -0.2215 0.5173 1.7600 -86 617 -0.1534 0.5196 1.7600 -86 618 -0.0853 0.5222 1.7600 -86 619 -0.0225 0.5247 1.7600 -86 620 0.0396 0.5222 1.7600 -86 621 0.1013 0.5144 1.7600 -86 622 0.1613 0.5053 1.7600 -86 623 0.2230 0.4994 1.7600 -86 624 0.2903 0.4922 1.7600 -86 625 0.3573 0.4842 1.7600 -86 626 0.4222 0.4781 1.7600 -86 627 0.4885 0.4698 1.7600 -86 628 0.5530 0.4605 1.7600 -86 629 0.6146 0.4527 1.7600 -86 630 0.6716 0.4470 1.7600 -86 631 0.7287 0.4436 1.7600 -86 632 0.7863 0.4390 1.7600 -86 633 0.8476 0.4347 1.7600 -86 634 0.9156 0.4309 1.7600 -86 635 0.9812 0.4300 1.7600 -86 636 1.0464 0.4387 1.7600 -86 637 1.1101 0.4456 1.7600 -86 638 1.1700 0.4522 1.7600 -86 639 1.2352 0.4515 1.7600 -86 640 1.2941 0.4474 1.7600 -86 641 1.3506 0.4420 1.7600 -86 642 1.4074 0.4396 1.7600 -86 643 1.4678 0.4354 1.7600 -86 644 1.5335 0.4304 1.7600 -86 645 1.5990 0.4252 1.7600 -86 646 1.6657 0.4213 1.7600 -86 647 1.7291 0.4173 1.7600 -86 648 1.7863 0.4126 1.7600 -86 649 1.8431 0.4119 1.7600 -86 650 1.9003 0.4161 1.7600 -86 651 1.9590 0.4178 1.7600 -86 652 2.0186 0.4227 1.7600 -86 653 2.0801 0.4276 1.7600 -86 654 2.1427 0.4321 1.7600 -86 655 2.2060 0.4412 1.7600 -86 656 2.2713 0.4520 1.7600 -86 657 2.3316 0.4609 1.7600 -86 658 2.3879 0.4676 1.7600 -86 659 2.4455 0.4677 1.7600 -86 660 2.5016 0.4662 1.7600 -86 661 2.5622 0.4662 1.7600 -86 662 2.6248 0.4658 1.7600 -86 663 2.6897 0.4643 1.7600 -86 664 2.7538 0.4606 1.7600 -86 665 2.8263 0.4569 1.7600 -86 666 2.9019 0.4534 1.7600 -86 667 2.9761 0.4482 1.7600 -86 668 3.0420 0.4444 1.7600 -86 669 3.1039 0.4413 1.7600 -86 670 3.1630 0.4392 1.7600 -86 671 3.2216 0.4367 1.7600 -86 672 3.2829 0.4364 1.7600 -86 673 3.3445 0.4370 1.7600 -86 674 3.4051 0.4402 1.7600 -86 675 3.4715 0.4429 1.7600 -86 676 3.5362 0.4452 1.7600 -86 677 3.5974 0.4415 1.7600 -86 678 3.6574 0.4334 1.7600 -86 679 3.7156 0.4240 1.7600 -86 680 3.7714 0.4139 1.7600 -86 681 3.8283 0.4047 1.7600 -86 682 3.8843 0.3935 1.7600 -86 683 3.9455 0.3808 1.7600 -86 684 4.0076 0.3655 1.7600 -86 685 4.0765 0.3503 1.7600 -86 686 4.1399 0.3384 1.7600 -86 687 4.1974 0.3302 1.7600 -86 688 4.2592 0.3243 1.7600 -86 689 4.3180 0.3200 1.7600 -86 690 4.3726 0.3115 1.7600 -86 691 4.4255 0.3072 1.7600 -86 692 4.4794 0.3037 1.7600 -86 693 4.5354 0.2998 1.7600 -86 694 4.5927 0.2967 1.7600 -86 695 4.6448 0.2916 1.7600 -86 696 4.6985 0.2865 1.7600 -86 697 4.7546 0.2801 1.7600 -86 698 4.8092 0.2716 1.7600 -86 699 4.8626 0.2620 1.7600 -86 700 4.9185 0.2524 1.7600 -86 701 4.9812 0.2419 1.7600 -86 702 5.0497 0.2270 1.7600 -86 703 5.1179 0.2091 1.7600 -86 704 5.1821 0.1937 1.7600 -86 705 5.2451 0.1852 1.7600 -86 706 5.3108 0.1805 1.7600 -86 707 5.3703 0.1776 1.7600 -86 708 5.4310 0.1737 1.7600 -86 709 5.4927 0.1726 1.7600 -86 710 5.5488 0.1744 1.7600 -86 711 5.6137 0.1782 1.7600 -86 712 5.6810 0.1815 1.7600 -86 713 5.7485 0.1811 1.7600 -86 714 5.8164 0.1730 1.7600 -86 715 5.8818 0.1600 1.7600 -86 716 5.9438 0.1452 1.7600 -87 470 -7.8045 1.7650 1.7600 -87 471 -7.7444 1.7502 1.7600 -87 472 -7.6946 1.7306 1.7600 -87 473 -7.6479 1.7108 1.7600 -87 474 -7.5998 1.6981 1.7600 -87 475 -7.5496 1.6943 1.7600 -87 476 -7.4980 1.6954 1.7600 -87 477 -7.4425 1.6978 1.7600 -87 478 -7.3827 1.6986 1.7600 -87 479 -7.3202 1.6987 1.7600 -87 480 -7.2542 1.6997 1.7600 -87 481 -7.1875 1.7026 1.7600 -87 482 -7.1210 1.7087 1.7600 -87 483 -7.0594 1.7180 1.7600 -87 484 -6.9990 1.7280 1.7600 -87 485 -6.9406 1.7356 1.7600 -87 486 -6.8856 1.7393 1.7600 -87 487 -6.8312 1.7394 1.7600 -87 488 -6.7739 1.7385 1.7600 -87 489 -6.7143 1.7337 1.7600 -87 490 -6.6489 1.7303 1.7600 -87 491 -6.5825 1.7244 1.7600 -87 492 -6.5197 1.7135 1.7600 -87 493 -6.4661 1.7037 1.7600 -87 494 -6.4147 1.6945 1.7600 -87 495 -6.3628 1.6834 1.7600 -87 496 -6.3098 1.6733 1.7600 -87 497 -6.2524 1.6649 1.7600 -87 498 -6.1989 1.6599 1.7600 -87 499 -6.1431 1.6602 1.7600 -87 500 -6.0839 1.6589 1.7600 -87 501 -6.0177 1.6600 1.7600 -87 502 -5.9529 1.6640 1.7600 -87 503 -5.8876 1.6706 1.7600 -87 504 -5.8234 1.6763 1.7600 -87 505 -5.7625 1.6848 1.7600 -87 506 -5.7042 1.6882 1.7600 -87 507 -5.6503 1.6873 1.7600 -87 508 -5.5996 1.6845 1.7600 -87 509 -5.5512 1.6807 1.7600 -87 510 -5.5028 1.6774 1.7600 -87 511 -5.4549 1.6728 1.7600 -87 512 -5.4062 1.6646 1.7600 -87 513 -5.3594 1.6515 1.7600 -87 514 -5.3153 1.6299 1.7600 -87 515 -5.2752 1.6034 1.7600 -87 516 -5.2379 1.5728 1.7600 -87 517 -5.1986 1.5434 1.7600 -87 518 -5.1562 1.5217 1.7600 -87 519 -5.1118 1.5071 1.7600 -87 520 -5.0623 1.5014 1.7600 -87 521 -5.0118 1.4976 1.7600 -87 522 -4.9598 1.4932 1.7600 -87 523 -4.9032 1.4875 1.7600 -87 524 -4.8422 1.4820 1.7600 -87 525 -4.7795 1.4780 1.7600 -87 526 -4.7121 1.4768 1.7600 -87 527 -4.6442 1.4792 1.7600 -87 528 -4.5730 1.4846 1.7600 -87 529 -4.5078 1.4921 1.7600 -87 530 -4.4440 1.4966 1.7600 -87 531 -4.3881 1.4968 1.7600 -87 532 -4.3319 1.4954 1.7600 -87 533 -4.2831 1.4916 1.7600 -87 534 -4.2304 1.4862 1.7600 -87 535 -4.1765 1.4797 1.7600 -87 536 -4.1176 1.4718 1.7600 -87 537 -4.0612 1.4603 1.7600 -87 538 -4.0048 1.4446 1.7600 -87 539 -3.9491 1.4279 1.7600 -87 540 -3.8933 1.4116 1.7600 -87 541 -3.8376 1.3980 1.7600 -87 542 -3.7767 1.3964 1.7600 -87 543 -3.7134 1.4032 1.7600 -87 544 -3.6494 1.4118 1.7600 -87 545 -3.5878 1.4236 1.7600 -87 546 -3.5241 1.4334 1.7600 -87 547 -3.4635 1.4452 1.7600 -87 548 -3.4013 1.4591 1.7600 -87 549 -3.3343 1.4745 1.7600 -87 550 -3.2626 1.4912 1.7600 -87 551 -3.1957 1.5022 1.7600 -87 552 -3.1341 1.5075 1.7600 -87 553 -3.0754 1.5047 1.7600 -87 554 -3.0169 1.5005 1.7600 -87 555 -2.9585 1.4957 1.7600 -87 556 -2.8998 1.4882 1.7600 -87 557 -2.8414 1.4787 1.7600 -87 558 -2.7803 1.4634 1.7600 -87 559 -2.7175 1.4425 1.7600 -87 560 -2.6460 1.4222 1.7600 -87 561 -2.5723 1.4013 1.7600 -87 562 -2.5023 1.3909 1.7600 -87 563 -2.4272 1.3896 1.7600 -87 564 -2.3504 1.3922 1.7600 -87 565 -2.2778 1.4019 1.7600 -87 566 -2.2104 1.4109 1.7600 -87 567 -2.1440 1.4170 1.7600 -87 568 -2.0796 1.4261 1.7600 -87 569 -2.0120 1.4430 1.7600 -87 570 -1.9373 1.4637 1.7600 -87 571 -1.8595 1.4851 1.7600 -87 572 -1.7915 1.4979 1.7600 -87 573 -1.7371 1.5037 1.7600 -87 574 -1.6864 1.5075 1.7600 -87 575 -1.6370 1.5130 1.7600 -87 576 -1.5879 1.5190 1.7600 -87 577 -1.5377 1.5211 1.7600 -87 578 -1.4856 1.5188 1.7600 -87 579 -1.4297 1.5138 1.7600 -87 580 -1.3667 1.5069 1.7600 -87 581 -1.2919 1.4971 1.7600 -87 582 -1.2234 1.4834 1.7600 -87 583 -1.1618 1.4714 1.7600 -87 584 -1.0964 1.4684 1.7600 -87 585 -1.0411 1.4665 1.7600 -87 586 -0.9854 1.4588 1.7600 -87 587 -0.9287 1.4521 1.7600 -87 588 -0.8706 1.4451 1.7600 -87 589 -0.8089 1.4448 1.7600 -87 590 -0.7482 1.4461 1.7600 -87 591 -0.6812 1.4539 1.7600 -87 592 -0.6110 1.4599 1.7600 -87 593 -0.5441 1.4668 1.7600 -87 594 -0.4873 1.4754 1.7600 -87 595 -0.4308 1.4814 1.7600 -87 596 -0.3794 1.4852 1.7600 -87 597 -0.3303 1.4856 1.7600 -87 598 -0.2791 1.4859 1.7600 -87 599 -0.2242 1.4826 1.7600 -87 600 -0.1659 1.4782 1.7600 -87 601 -0.1050 1.4699 1.7600 -87 602 -0.0383 1.4605 1.7600 -87 603 0.0286 1.4483 1.7600 -87 604 0.0905 1.4349 1.7600 -87 605 0.1509 1.4288 1.7600 -87 606 0.2108 1.4306 1.7600 -87 607 0.2718 1.4356 1.7600 -87 608 0.3341 1.4407 1.7600 -87 609 0.3976 1.4457 1.7600 -87 610 0.4608 1.4525 1.7600 -87 611 0.5270 1.4607 1.7600 -87 612 0.5967 1.4744 1.7600 -87 613 0.6682 1.4910 1.7600 -87 614 0.7389 1.5094 1.7600 -87 615 0.8097 1.5251 1.7600 -87 616 0.8745 1.5306 1.7600 -87 617 0.9349 1.5329 1.7600 -87 618 0.9856 1.5345 1.7600 -87 619 1.0306 1.5425 1.7600 -87 620 1.0802 1.5465 1.7600 -87 621 1.1345 1.5486 1.7600 -87 622 1.1902 1.5478 1.7600 -87 623 1.2471 1.5451 1.7600 -87 624 1.3065 1.5388 1.7600 -87 625 1.3693 1.5289 1.7600 -87 626 1.4294 1.5182 1.7600 -87 627 1.4879 1.5138 1.7600 -87 628 1.5437 1.5151 1.7600 -87 629 1.5992 1.5232 1.7600 -87 630 1.6504 1.5342 1.7600 -87 631 1.7088 1.5404 1.7600 -87 632 1.7673 1.5463 1.7600 -87 633 1.8274 1.5546 1.7600 -87 634 1.8914 1.5671 1.7600 -87 635 1.9576 1.5830 1.7600 -87 636 2.0179 1.5909 1.7600 -87 637 2.0684 1.5946 1.7600 -87 638 2.1259 1.6029 1.7600 -87 639 2.1840 1.6067 1.7600 -87 640 2.2426 1.6063 1.7600 -87 641 2.3015 1.6055 1.7600 -87 642 2.3632 1.6060 1.7600 -87 643 2.4276 1.6105 1.7600 -87 644 2.4954 1.6120 1.7600 -87 645 2.5637 1.6041 1.7600 -87 646 2.6365 1.5913 1.7600 -87 647 2.7061 1.5807 1.7600 -87 648 2.7718 1.5790 1.7600 -87 649 2.8387 1.5830 1.7600 -87 650 2.9050 1.5854 1.7600 -87 651 2.9716 1.5866 1.7600 -87 652 3.0385 1.5839 1.7600 -87 653 3.1095 1.5799 1.7600 -87 654 3.1829 1.5783 1.7600 -87 655 3.2632 1.5828 1.7600 -87 656 3.3457 1.5893 1.7600 -87 657 3.4214 1.5921 1.7600 -87 658 3.4905 1.5977 1.7600 -87 659 3.5592 1.5963 1.7600 -87 660 3.6261 1.5951 1.7600 -87 661 3.6967 1.5916 1.7600 -87 662 3.7673 1.5875 1.7600 -87 663 3.8333 1.5783 1.7600 -87 664 3.8966 1.5676 1.7600 -87 665 3.9545 1.5547 1.7600 -87 666 4.0194 1.5364 1.7600 -87 667 4.0868 1.5210 1.7600 -87 668 4.1545 1.5109 1.7600 -87 669 4.2246 1.5123 1.7600 -87 670 4.2954 1.5242 1.7600 -87 671 4.3621 1.5401 1.7600 -87 672 4.4282 1.5587 1.7600 -87 673 4.4921 1.5814 1.7600 -87 674 4.5665 1.6027 1.7600 -87 675 4.6468 1.6210 1.7600 -87 676 4.7227 1.6359 1.7600 -87 677 4.7882 1.6502 1.7600 -87 678 4.8500 1.6591 1.7600 -87 679 4.9113 1.6635 1.7600 -87 680 4.9696 1.6682 1.7600 -87 681 5.0244 1.6779 1.7600 -87 682 5.0739 1.6859 1.7600 -87 683 5.1189 1.6912 1.7600 -87 684 5.1667 1.6945 1.7600 -87 685 5.2207 1.6974 1.7600 -87 686 5.2886 1.6924 1.7600 -87 687 5.3596 1.6786 1.7600 -87 688 5.4266 1.6627 1.7600 -87 689 5.4955 1.6564 1.7600 -87 690 5.5658 1.6543 1.7600 -87 691 5.6313 1.6538 1.7600 -87 692 5.6944 1.6534 1.7600 -87 693 5.7610 1.6567 1.7600 -87 694 5.8230 1.6619 1.7600 -87 695 5.8876 1.6697 1.7600 -88 478 -7.8236 2.2924 1.7600 -88 479 -7.7686 2.2768 1.7600 -88 480 -7.7173 2.2675 1.7600 -88 481 -7.6657 2.2639 1.7600 -88 482 -7.6129 2.2653 1.7600 -88 483 -7.5572 2.2694 1.7600 -88 484 -7.4987 2.2736 1.7600 -88 485 -7.4352 2.2760 1.7600 -88 486 -7.3676 2.2778 1.7600 -88 487 -7.2978 2.2814 1.7600 -88 488 -7.2302 2.2905 1.7600 -88 489 -7.1678 2.3057 1.7600 -88 490 -7.1101 2.3215 1.7600 -88 491 -7.0547 2.3334 1.7600 -88 492 -7.0032 2.3381 1.7600 -88 493 -6.9527 2.3373 1.7600 -88 494 -6.9012 2.3333 1.7600 -88 495 -6.8478 2.3238 1.7600 -88 496 -6.7952 2.3163 1.7600 -88 497 -6.7361 2.2982 1.7600 -88 498 -6.6745 2.2789 1.7600 -88 499 -6.6111 2.2550 1.7600 -88 500 -6.5472 2.2274 1.7600 -88 501 -6.4873 2.2020 1.7600 -88 502 -6.4306 2.1767 1.7600 -88 503 -6.3783 2.1574 1.7600 -88 504 -6.3265 2.1472 1.7600 -88 505 -6.2741 2.1412 1.7600 -88 506 -6.2247 2.1354 1.7600 -88 507 -6.1691 2.1262 1.7600 -88 508 -6.1126 2.1173 1.7600 -88 509 -6.0531 2.1070 1.7600 -88 510 -5.9916 2.1023 1.7600 -88 511 -5.9296 2.1009 1.7600 -88 512 -5.8675 2.1060 1.7600 -88 513 -5.8107 2.1112 1.7600 -88 514 -5.7515 2.1092 1.7600 -88 515 -5.6982 2.1047 1.7600 -88 516 -5.6474 2.0916 1.7600 -88 517 -5.6026 2.0769 1.7600 -88 518 -5.5546 2.0621 1.7600 -88 519 -5.5059 2.0429 1.7600 -88 520 -5.4602 2.0194 1.7600 -88 521 -5.4153 1.9948 1.7600 -88 522 -5.3768 1.9674 1.7600 -88 523 -5.3386 1.9414 1.7600 -88 524 -5.3054 1.9165 1.7600 -88 525 -5.2696 1.8961 1.7600 -88 526 -5.2342 1.8792 1.7600 -88 527 -5.1966 1.8639 1.7600 -88 528 -5.1592 1.8554 1.7600 -88 529 -5.1230 1.8486 1.7600 -88 530 -5.0833 1.8420 1.7600 -88 531 -5.0434 1.8375 1.7600 -88 532 -5.0009 1.8359 1.7600 -88 533 -4.9522 1.8371 1.7600 -88 534 -4.9037 1.8413 1.7600 -88 535 -4.8554 1.8441 1.7600 -88 536 -4.8084 1.8483 1.7600 -88 537 -4.7586 1.8518 1.7600 -88 538 -4.7093 1.8541 1.7600 -88 539 -4.6629 1.8512 1.7600 -88 540 -4.6165 1.8455 1.7600 -88 541 -4.5702 1.8349 1.7600 -88 542 -4.5268 1.8199 1.7600 -88 543 -4.4834 1.8017 1.7600 -88 544 -4.4414 1.7804 1.7600 -88 545 -4.4012 1.7565 1.7600 -88 546 -4.3685 1.7275 1.7600 -88 547 -4.3404 1.6949 1.7600 -88 548 -4.3093 1.6643 1.7600 -88 549 -4.2787 1.6342 1.7600 -88 550 -4.2476 1.6098 1.7600 -88 551 -4.2148 1.5928 1.7600 -88 552 -4.1748 1.5821 1.7600 -88 553 -4.1325 1.5732 1.7600 -88 554 -4.0887 1.5639 1.7600 -88 555 -4.0413 1.5558 1.7600 -88 556 -3.9873 1.5508 1.7600 -88 557 -3.9347 1.5511 1.7600 -88 558 -3.8792 1.5558 1.7600 -88 559 -3.8242 1.5630 1.7600 -88 560 -3.7658 1.5679 1.7600 -88 561 -3.7129 1.5629 1.7600 -88 562 -3.6617 1.5475 1.7600 -88 563 -3.6063 1.5284 1.7600 -88 564 -3.5444 1.5051 1.7600 -88 565 -3.4802 1.4863 1.7600 -88 566 -3.4121 1.4684 1.7600 -88 567 -3.3477 1.4449 1.7600 -88 568 -3.2882 1.4130 1.7600 -88 569 -3.2317 1.3818 1.7600 -88 570 -3.1734 1.3577 1.7600 -88 571 -3.1213 1.3391 1.7600 -88 572 -3.0682 1.3262 1.7600 -88 573 -3.0133 1.3198 1.7600 -88 574 -2.9596 1.3181 1.7600 -88 575 -2.9035 1.3197 1.7600 -88 576 -2.8430 1.3265 1.7600 -88 577 -2.7818 1.3386 1.7600 -88 578 -2.7143 1.3577 1.7600 -88 579 -2.6442 1.3793 1.7600 -88 580 -2.5777 1.4001 1.7600 -88 581 -2.5154 1.4159 1.7600 -88 582 -2.4539 1.4273 1.7600 -88 583 -2.3938 1.4323 1.7600 -88 584 -2.3347 1.4329 1.7600 -88 585 -2.2712 1.4326 1.7600 -88 586 -2.2054 1.4320 1.7600 -88 587 -2.1411 1.4276 1.7600 -88 588 -2.0751 1.4150 1.7600 -88 589 -2.0055 1.3992 1.7600 -88 590 -1.9294 1.3824 1.7600 -88 591 -1.8607 1.3703 1.7600 -88 592 -1.7917 1.3665 1.7600 -88 593 -1.7212 1.3731 1.7600 -88 594 -1.6559 1.3820 1.7600 -88 595 -1.5989 1.3896 1.7600 -88 596 -1.5443 1.3962 1.7600 -88 597 -1.4883 1.4085 1.7600 -88 598 -1.4312 1.4221 1.7600 -88 599 -1.3703 1.4422 1.7600 -88 600 -1.3098 1.4647 1.7600 -88 601 -1.2539 1.4801 1.7600 -88 602 -1.1994 1.4871 1.7600 -88 603 -1.1434 1.4879 1.7600 -88 604 -1.0904 1.4846 1.7600 -88 605 -1.0374 1.4793 1.7600 -88 606 -0.9816 1.4726 1.7600 -88 607 -0.9277 1.4635 1.7600 -88 608 -0.8748 1.4471 1.7600 -88 609 -0.8220 1.4238 1.7600 -88 610 -0.7723 1.4004 1.7600 -88 611 -0.7273 1.3804 1.7600 -88 612 -0.6839 1.3684 1.7600 -88 613 -0.6401 1.3642 1.7600 -88 614 -0.5940 1.3635 1.7600 -88 615 -0.5492 1.3629 1.7600 -88 616 -0.5008 1.3645 1.7600 -88 617 -0.4493 1.3689 1.7600 -88 618 -0.3976 1.3740 1.7600 -88 619 -0.3432 1.3859 1.7600 -88 620 -0.2898 1.4020 1.7600 -88 621 -0.2382 1.4186 1.7600 -88 622 -0.1931 1.4355 1.7600 -88 623 -0.1403 1.4452 1.7600 -88 624 -0.0874 1.4501 1.7600 -88 625 -0.0331 1.4517 1.7600 -88 626 0.0225 1.4531 1.7600 -88 627 0.0786 1.4543 1.7600 -88 628 0.1390 1.4572 1.7600 -88 629 0.2032 1.4579 1.7600 -88 630 0.2659 1.4547 1.7600 -88 631 0.3286 1.4472 1.7600 -88 632 0.3869 1.4288 1.7600 -88 633 0.4471 1.4074 1.7600 -88 634 0.5025 1.4079 1.7600 -88 635 0.5574 1.4175 1.7600 -88 636 0.6129 1.4258 1.7600 -88 637 0.6695 1.4331 1.7600 -88 638 0.7292 1.4444 1.7600 -88 639 0.7927 1.4564 1.7600 -88 640 0.8603 1.4663 1.7600 -88 641 0.9287 1.4788 1.7600 -88 642 0.9948 1.4978 1.7600 -88 643 1.0595 1.5206 1.7600 -88 644 1.1199 1.5399 1.7600 -88 645 1.1782 1.5509 1.7600 -88 646 1.2369 1.5529 1.7600 -88 647 1.2962 1.5488 1.7600 -88 648 1.3578 1.5423 1.7600 -88 649 1.4193 1.5325 1.7600 -88 650 1.4843 1.5222 1.7600 -88 651 1.5480 1.5060 1.7600 -88 652 1.6129 1.4852 1.7600 -88 653 1.6780 1.4618 1.7600 -88 654 1.7420 1.4396 1.7600 -88 655 1.7976 1.4241 1.7600 -88 656 1.8541 1.4128 1.7600 -88 657 1.9105 1.4085 1.7600 -88 658 1.9630 1.4065 1.7600 -88 659 2.0170 1.4044 1.7600 -88 660 2.0718 1.4043 1.7600 -88 661 2.1276 1.4065 1.7600 -88 662 2.1834 1.4139 1.7600 -88 663 2.2474 1.4248 1.7600 -88 664 2.3110 1.4384 1.7600 -88 665 2.3759 1.4557 1.7600 -88 666 2.4356 1.4670 1.7600 -88 667 2.4928 1.4713 1.7600 -88 668 2.5515 1.4717 1.7600 -88 669 2.6108 1.4656 1.7600 -88 670 2.6715 1.4606 1.7600 -88 671 2.7322 1.4526 1.7600 -88 672 2.7959 1.4459 1.7600 -88 673 2.8614 1.4349 1.7600 -88 674 2.9280 1.4218 1.7600 -88 675 3.0005 1.4058 1.7600 -88 676 3.0684 1.3877 1.7600 -88 677 3.1315 1.3789 1.7600 -88 678 3.1947 1.3751 1.7600 -88 679 3.2596 1.3805 1.7600 -88 680 3.3243 1.3872 1.7600 -88 681 3.3863 1.3967 1.7600 -88 682 3.4465 1.4066 1.7600 -88 683 3.5089 1.4201 1.7600 -88 684 3.5747 1.4366 1.7600 -88 685 3.6449 1.4590 1.7600 -88 686 3.7173 1.4864 1.7600 -88 687 3.7848 1.5105 1.7600 -88 688 3.8510 1.5275 1.7600 -88 689 3.9208 1.5368 1.7600 -88 690 3.9916 1.5423 1.7600 -88 691 4.0600 1.5477 1.7600 -88 692 4.1319 1.5533 1.7600 -88 693 4.2007 1.5581 1.7600 -88 694 4.2685 1.5584 1.7600 -88 695 4.3463 1.5538 1.7600 -88 696 4.4269 1.5476 1.7600 -88 697 4.5036 1.5414 1.7600 -88 698 4.5753 1.5473 1.7600 -88 699 4.6452 1.5637 1.7600 -88 700 4.7115 1.5844 1.7600 -88 701 4.7753 1.6087 1.7600 -88 702 4.8408 1.6291 1.7600 -88 703 4.8994 1.6500 1.7600 -88 704 4.9590 1.6753 1.7600 -88 705 5.0245 1.7046 1.7600 -88 706 5.0941 1.7402 1.7600 -88 707 5.1617 1.7738 1.7600 -88 708 5.2301 1.7997 1.7600 -88 709 5.2966 1.8142 1.7600 -88 710 5.3644 1.8233 1.7600 -88 711 5.4317 1.8298 1.7600 -88 712 5.4956 1.8363 1.7600 -88 713 5.5603 1.8415 1.7600 -88 714 5.6250 1.8438 1.7600 -88 715 5.6937 1.8430 1.7600 -88 716 5.7732 1.8385 1.7600 -88 717 5.8465 1.8360 1.7600 -88 718 5.9159 1.8370 1.7600 -89 493 -7.8191 0.9967 1.7600 -89 494 -7.7655 0.9932 1.7600 -89 495 -7.7064 0.9894 1.7600 -89 496 -7.6473 0.9848 1.7600 -89 497 -7.5924 0.9802 1.7600 -89 498 -7.5464 0.9789 1.7600 -89 499 -7.5021 0.9756 1.7600 -89 500 -7.4550 0.9688 1.7600 -89 501 -7.4124 0.9534 1.7600 -89 502 -7.3663 0.9310 1.7600 -89 503 -7.3224 0.9031 1.7600 -89 504 -7.2629 0.8693 1.7600 -89 505 -7.2036 0.8369 1.7600 -89 506 -7.1407 0.8010 1.7600 -89 507 -7.0775 0.7622 1.7600 -89 508 -7.0193 0.7259 1.7600 -89 509 -6.9716 0.6899 1.7600 -89 510 -6.9265 0.6581 1.7600 -89 511 -6.8894 0.6412 1.7600 -89 512 -6.8389 0.6208 1.7600 -89 513 -6.7865 0.5998 1.7600 -89 514 -6.7314 0.5823 1.7600 -89 515 -6.6719 0.5661 1.7600 -89 516 -6.6099 0.5534 1.7600 -89 517 -6.5520 0.5425 1.7600 -89 518 -6.4923 0.5309 1.7600 -89 519 -6.4359 0.5156 1.7600 -89 520 -6.3855 0.4945 1.7600 -89 521 -6.3337 0.4685 1.7600 -89 522 -6.2755 0.4437 1.7600 -89 523 -6.2164 0.4164 1.7600 -89 524 -6.1533 0.3907 1.7600 -89 525 -6.0908 0.3592 1.7600 -89 526 -6.0325 0.3254 1.7600 -89 527 -5.9801 0.2961 1.7600 -89 528 -5.9327 0.2680 1.7600 -89 529 -5.8881 0.2493 1.7600 -89 530 -5.8414 0.2377 1.7600 -89 531 -5.7969 0.2272 1.7600 -89 532 -5.7496 0.2193 1.7600 -89 533 -5.7016 0.2164 1.7600 -89 534 -5.6558 0.2173 1.7600 -89 535 -5.6074 0.2216 1.7600 -89 536 -5.5583 0.2302 1.7600 -89 537 -5.5059 0.2409 1.7600 -89 538 -5.4580 0.2438 1.7600 -89 539 -5.4085 0.2435 1.7600 -89 540 -5.3563 0.2396 1.7600 -89 541 -5.3049 0.2324 1.7600 -89 542 -5.2502 0.2241 1.7600 -89 543 -5.1955 0.2163 1.7600 -89 544 -5.1399 0.2066 1.7600 -89 545 -5.0847 0.1918 1.7600 -89 546 -5.0301 0.1733 1.7600 -89 547 -4.9763 0.1592 1.7600 -89 548 -4.9287 0.1535 1.7600 -89 549 -4.8850 0.1485 1.7600 -89 550 -4.8395 0.1492 1.7600 -89 551 -4.8007 0.1515 1.7600 -89 552 -4.7679 0.1572 1.7600 -89 553 -4.7307 0.1676 1.7600 -89 554 -4.6916 0.1814 1.7600 -89 555 -4.6524 0.2017 1.7600 -89 556 -4.6152 0.2229 1.7600 -89 557 -4.5785 0.2425 1.7600 -89 558 -4.5388 0.2614 1.7600 -89 559 -4.4991 0.2732 1.7600 -89 560 -4.4547 0.2847 1.7600 -89 561 -4.4079 0.2909 1.7600 -89 562 -4.3626 0.2966 1.7600 -89 563 -4.3176 0.2997 1.7600 -89 564 -4.2710 0.2996 1.7600 -89 565 -4.2214 0.2941 1.7600 -89 566 -4.1707 0.2839 1.7600 -89 567 -4.1144 0.2657 1.7600 -89 568 -4.0592 0.2461 1.7600 -89 569 -4.0030 0.2356 1.7600 -89 570 -3.9493 0.2322 1.7600 -89 571 -3.8954 0.2339 1.7600 -89 572 -3.8403 0.2350 1.7600 -89 573 -3.7885 0.2381 1.7600 -89 574 -3.7371 0.2401 1.7600 -89 575 -3.6838 0.2456 1.7600 -89 576 -3.6308 0.2538 1.7600 -89 577 -3.5731 0.2634 1.7600 -89 578 -3.5166 0.2753 1.7600 -89 579 -3.4644 0.2876 1.7600 -89 580 -3.4090 0.2919 1.7600 -89 581 -3.3490 0.2872 1.7600 -89 582 -3.2875 0.2791 1.7600 -89 583 -3.2304 0.2722 1.7600 -89 584 -3.1756 0.2655 1.7600 -89 585 -3.1212 0.2550 1.7600 -89 586 -3.0664 0.2423 1.7600 -89 587 -3.0061 0.2246 1.7600 -89 588 -2.9424 0.2065 1.7600 -89 589 -2.8854 0.1941 1.7600 -89 590 -2.8275 0.1919 1.7600 -89 591 -2.7674 0.1944 1.7600 -89 592 -2.7098 0.1992 1.7600 -89 593 -2.6548 0.2053 1.7600 -89 594 -2.6003 0.2160 1.7600 -89 595 -2.5455 0.2304 1.7600 -89 596 -2.4864 0.2530 1.7600 -89 597 -2.4227 0.2741 1.7600 -89 598 -2.3602 0.2925 1.7600 -89 599 -2.3009 0.3047 1.7600 -89 600 -2.2380 0.3099 1.7600 -89 601 -2.1813 0.3126 1.7600 -89 602 -2.1277 0.3133 1.7600 -89 603 -2.0760 0.3142 1.7600 -89 604 -2.0217 0.3129 1.7600 -89 605 -1.9684 0.3079 1.7600 -89 606 -1.9088 0.2969 1.7600 -89 607 -1.8419 0.2833 1.7600 -89 608 -1.7770 0.2694 1.7600 -89 609 -1.7154 0.2586 1.7600 -89 610 -1.6565 0.2569 1.7600 -89 611 -1.6004 0.2602 1.7600 -89 612 -1.5476 0.2641 1.7600 -89 613 -1.4947 0.2701 1.7600 -89 614 -1.4398 0.2775 1.7600 -89 615 -1.3842 0.2875 1.7600 -89 616 -1.3250 0.2992 1.7600 -89 617 -1.2645 0.3126 1.7600 -89 618 -1.2035 0.3268 1.7600 -89 619 -1.1440 0.3371 1.7600 -89 620 -1.0829 0.3398 1.7600 -89 621 -1.0237 0.3373 1.7600 -89 622 -0.9650 0.3343 1.7600 -89 623 -0.9060 0.3313 1.7600 -89 624 -0.8444 0.3272 1.7600 -89 625 -0.7833 0.3198 1.7600 -89 626 -0.7200 0.3099 1.7600 -89 627 -0.6550 0.2976 1.7600 -89 628 -0.5943 0.2836 1.7600 -89 629 -0.5396 0.2738 1.7600 -89 630 -0.4857 0.2701 1.7600 -89 631 -0.4324 0.2703 1.7600 -89 632 -0.3783 0.2699 1.7600 -89 633 -0.3223 0.2755 1.7600 -89 634 -0.2640 0.2826 1.7600 -89 635 -0.2046 0.2929 1.7600 -89 636 -0.1429 0.3074 1.7600 -89 637 -0.0838 0.3258 1.7600 -89 638 -0.0255 0.3460 1.7600 -89 639 0.0300 0.3592 1.7600 -89 640 0.0870 0.3667 1.7600 -89 641 0.1473 0.3675 1.7600 -89 642 0.2083 0.3675 1.7600 -89 643 0.2693 0.3640 1.7600 -89 644 0.3280 0.3603 1.7600 -89 645 0.3880 0.3516 1.7600 -89 646 0.4458 0.3388 1.7600 -89 647 0.5037 0.3220 1.7600 -89 648 0.5614 0.3085 1.7600 -89 649 0.6166 0.3046 1.7600 -89 650 0.6708 0.3021 1.7600 -89 651 0.7276 0.2996 1.7600 -89 652 0.7864 0.2975 1.7600 -89 653 0.8448 0.2991 1.7600 -89 654 0.9064 0.3015 1.7600 -89 655 0.9695 0.3103 1.7600 -89 656 1.0341 0.3247 1.7600 -89 657 1.0971 0.3403 1.7600 -89 658 1.1594 0.3555 1.7600 -89 659 1.2207 0.3628 1.7600 -89 660 1.2832 0.3685 1.7600 -89 661 1.3448 0.3672 1.7600 -89 662 1.4061 0.3646 1.7600 -89 663 1.4668 0.3596 1.7600 -89 664 1.5289 0.3550 1.7600 -89 665 1.5895 0.3431 1.7600 -89 666 1.6508 0.3264 1.7600 -89 667 1.7130 0.3086 1.7600 -89 668 1.7724 0.2930 1.7600 -89 669 1.8259 0.2821 1.7600 -89 670 1.8780 0.2740 1.7600 -89 671 1.9332 0.2705 1.7600 -89 672 1.9908 0.2683 1.7600 -89 673 2.0499 0.2678 1.7600 -89 674 2.1102 0.2720 1.7600 -89 675 2.1719 0.2834 1.7600 -89 676 2.2388 0.2982 1.7600 -89 677 2.3060 0.3125 1.7600 -89 678 2.3717 0.3192 1.7600 -89 679 2.4402 0.3231 1.7600 -89 680 2.5037 0.3261 1.7600 -89 681 2.5652 0.3265 1.7600 -89 682 2.6277 0.3271 1.7600 -89 683 2.6927 0.3234 1.7600 -89 684 2.7547 0.3166 1.7600 -89 685 2.8199 0.3072 1.7600 -89 686 2.8877 0.2942 1.7600 -89 687 2.9567 0.2774 1.7600 -89 688 3.0193 0.2652 1.7600 -89 689 3.0771 0.2589 1.7600 -89 690 3.1343 0.2558 1.7600 -89 691 3.1935 0.2540 1.7600 -89 692 3.2522 0.2544 1.7600 -89 693 3.3110 0.2598 1.7600 -89 694 3.3718 0.2675 1.7600 -89 695 3.4395 0.2797 1.7600 -89 696 3.5074 0.2919 1.7600 -89 697 3.5782 0.3039 1.7600 -89 698 3.6479 0.3090 1.7600 -89 699 3.7228 0.3101 1.7600 -89 700 3.7919 0.3040 1.7600 -89 701 3.8589 0.2976 1.7600 -89 702 3.9246 0.2911 1.7600 -89 703 3.9910 0.2818 1.7600 -89 704 4.0560 0.2712 1.7600 -89 705 4.1246 0.2573 1.7600 -89 706 4.1954 0.2394 1.7600 -89 707 4.2689 0.2216 1.7600 -89 708 4.3334 0.2120 1.7600 -89 709 4.3948 0.2086 1.7600 -89 710 4.4545 0.2068 1.7600 -89 711 4.5135 0.2075 1.7600 -89 712 4.5732 0.2078 1.7600 -89 713 4.6323 0.2083 1.7600 -89 714 4.6921 0.2139 1.7600 -89 715 4.7580 0.2217 1.7600 -89 716 4.8278 0.2285 1.7600 -89 717 4.8971 0.2328 1.7600 -89 718 4.9629 0.2320 1.7600 -89 719 5.0257 0.2298 1.7600 -89 720 5.0835 0.2270 1.7600 -89 721 5.1458 0.2239 1.7600 -89 722 5.2018 0.2189 1.7600 -89 723 5.2597 0.2137 1.7600 -89 724 5.3240 0.2024 1.7600 -89 725 5.3906 0.1909 1.7600 -89 726 5.4621 0.1819 1.7600 -89 727 5.5322 0.1758 1.7600 -89 728 5.5981 0.1723 1.7600 -89 729 5.6572 0.1692 1.7600 -89 730 5.7128 0.1695 1.7600 -89 731 5.7672 0.1702 1.7600 -89 732 5.8251 0.1729 1.7600 -89 733 5.8877 0.1778 1.7600 -89 734 5.9547 0.1839 1.7600 -90 479 -7.7831 1.4579 1.7600 -90 480 -7.7252 1.4396 1.7600 -90 481 -7.6728 1.4248 1.7600 -90 482 -7.6239 1.4154 1.7600 -90 483 -7.5745 1.4112 1.7600 -90 484 -7.5230 1.4095 1.7600 -90 485 -7.4691 1.4099 1.7600 -90 486 -7.4160 1.4146 1.7600 -90 487 -7.3649 1.4239 1.7600 -90 488 -7.3152 1.4366 1.7600 -90 489 -7.2661 1.4503 1.7600 -90 490 -7.2162 1.4598 1.7600 -90 491 -7.1674 1.4623 1.7600 -90 492 -7.1204 1.4585 1.7600 -90 493 -7.0717 1.4509 1.7600 -90 494 -7.0182 1.4408 1.7600 -90 495 -6.9610 1.4267 1.7600 -90 496 -6.9026 1.4088 1.7600 -90 497 -6.8450 1.3871 1.7600 -90 498 -6.7903 1.3637 1.7600 -90 499 -6.7370 1.3405 1.7600 -90 500 -6.6860 1.3218 1.7600 -90 501 -6.6364 1.3074 1.7600 -90 502 -6.5858 1.2962 1.7600 -90 503 -6.5330 1.2869 1.7600 -90 504 -6.4783 1.2801 1.7600 -90 505 -6.4215 1.2756 1.7600 -90 506 -6.3637 1.2738 1.7600 -90 507 -6.3072 1.2758 1.7600 -90 508 -6.2527 1.2799 1.7600 -90 509 -6.1972 1.2835 1.7600 -90 510 -6.1446 1.2791 1.7600 -90 511 -6.0930 1.2697 1.7600 -90 512 -6.0400 1.2593 1.7600 -90 513 -5.9895 1.2491 1.7600 -90 514 -5.9358 1.2338 1.7600 -90 515 -5.8823 1.2161 1.7600 -90 516 -5.8273 1.1953 1.7600 -90 517 -5.7727 1.1687 1.7600 -90 518 -5.7189 1.1434 1.7600 -90 519 -5.6624 1.1236 1.7600 -90 520 -5.6090 1.1081 1.7600 -90 521 -5.5559 1.0985 1.7600 -90 522 -5.4999 1.0895 1.7600 -90 523 -5.4457 1.0842 1.7600 -90 524 -5.3915 1.0779 1.7600 -90 525 -5.3361 1.0769 1.7600 -90 526 -5.2792 1.0774 1.7600 -90 527 -5.2263 1.0764 1.7600 -90 528 -5.1664 1.0736 1.7600 -90 529 -5.1078 1.0625 1.7600 -90 530 -5.0518 1.0485 1.7600 -90 531 -5.0002 1.0311 1.7600 -90 532 -4.9444 1.0131 1.7600 -90 533 -4.8881 0.9929 1.7600 -90 534 -4.8312 0.9693 1.7600 -90 535 -4.7768 0.9456 1.7600 -90 536 -4.7264 0.9260 1.7600 -90 537 -4.6779 0.9154 1.7600 -90 538 -4.6326 0.9076 1.7600 -90 539 -4.5870 0.9032 1.7600 -90 540 -4.5418 0.9010 1.7600 -90 541 -4.4975 0.9030 1.7600 -90 542 -4.4523 0.9124 1.7600 -90 543 -4.4047 0.9255 1.7600 -90 544 -4.3556 0.9424 1.7600 -90 545 -4.3000 0.9573 1.7600 -90 546 -4.2477 0.9732 1.7600 -90 547 -4.1957 0.9852 1.7600 -90 548 -4.1423 0.9903 1.7600 -90 549 -4.0908 0.9923 1.7600 -90 550 -4.0390 0.9889 1.7600 -90 551 -3.9884 0.9847 1.7600 -90 552 -3.9339 0.9774 1.7600 -90 553 -3.8818 0.9678 1.7600 -90 554 -3.8307 0.9552 1.7600 -90 555 -3.7842 0.9402 1.7600 -90 556 -3.7370 0.9291 1.7600 -90 557 -3.6890 0.9228 1.7600 -90 558 -3.6380 0.9225 1.7600 -90 559 -3.5869 0.9250 1.7600 -90 560 -3.5277 0.9316 1.7600 -90 561 -3.4651 0.9410 1.7600 -90 562 -3.3982 0.9579 1.7600 -90 563 -3.3300 0.9769 1.7600 -90 564 -3.2665 0.9916 1.7600 -90 565 -3.2057 1.0033 1.7600 -90 566 -3.1426 1.0108 1.7600 -90 567 -3.0792 1.0118 1.7600 -90 568 -3.0205 1.0091 1.7600 -90 569 -2.9616 1.0038 1.7600 -90 570 -2.8997 0.9960 1.7600 -90 571 -2.8306 0.9824 1.7600 -90 572 -2.7623 0.9740 1.7600 -90 573 -2.6955 0.9660 1.7600 -90 574 -2.6264 0.9658 1.7600 -90 575 -2.5602 0.9705 1.7600 -90 576 -2.4899 0.9794 1.7600 -90 577 -2.4172 0.9907 1.7600 -90 578 -2.3490 1.0034 1.7600 -90 579 -2.2810 1.0166 1.7600 -90 580 -2.2090 1.0308 1.7600 -90 581 -2.1415 1.0436 1.7600 -90 582 -2.0801 1.0522 1.7600 -90 583 -2.0156 1.0546 1.7600 -90 584 -1.9511 1.0531 1.7600 -90 585 -1.8875 1.0500 1.7600 -90 586 -1.8230 1.0463 1.7600 -90 587 -1.7562 1.0409 1.7600 -90 588 -1.6876 1.0339 1.7600 -90 589 -1.6186 1.0256 1.7600 -90 590 -1.5554 1.0177 1.7600 -90 591 -1.4852 1.0140 1.7600 -90 592 -1.4202 1.0137 1.7600 -90 593 -1.3602 1.0197 1.7600 -90 594 -1.2959 1.0248 1.7600 -90 595 -1.2338 1.0316 1.7600 -90 596 -1.1715 1.0411 1.7600 -90 597 -1.1044 1.0526 1.7600 -90 598 -1.0378 1.0647 1.7600 -90 599 -0.9753 1.0753 1.7600 -90 600 -0.9132 1.0812 1.7600 -90 601 -0.8478 1.0794 1.7600 -90 602 -0.7844 1.0732 1.7600 -90 603 -0.7229 1.0646 1.7600 -90 604 -0.6593 1.0559 1.7600 -90 605 -0.5919 1.0465 1.7600 -90 606 -0.5246 1.0347 1.7600 -90 607 -0.4576 1.0222 1.7600 -90 608 -0.3880 1.0085 1.7600 -90 609 -0.3220 1.0004 1.7600 -90 610 -0.2573 0.9985 1.7600 -90 611 -0.1961 1.0011 1.7600 -90 612 -0.1331 1.0060 1.7600 -90 613 -0.0716 1.0138 1.7600 -90 614 -0.0102 1.0247 1.7600 -90 615 0.0537 1.0385 1.7600 -90 616 0.1130 1.0548 1.7600 -90 617 0.1727 1.0729 1.7600 -90 618 0.2272 1.0883 1.7600 -90 619 0.2785 1.1000 1.7600 -90 620 0.3287 1.1072 1.7600 -90 621 0.3787 1.1105 1.7600 -90 622 0.4285 1.1119 1.7600 -90 623 0.4817 1.1109 1.7600 -90 624 0.5368 1.1084 1.7600 -90 625 0.5918 1.1049 1.7600 -90 626 0.6461 1.0975 1.7600 -90 627 0.7013 1.0893 1.7600 -90 628 0.7569 1.0826 1.7600 -90 629 0.8111 1.0774 1.7600 -90 630 0.8662 1.0762 1.7600 -90 631 0.9212 1.0799 1.7600 -90 632 0.9742 1.0862 1.7600 -90 633 1.0307 1.0951 1.7600 -90 634 1.0887 1.1040 1.7600 -90 635 1.1484 1.1170 1.7600 -90 636 1.2100 1.1305 1.7600 -90 637 1.2691 1.1438 1.7600 -90 638 1.3225 1.1558 1.7600 -90 639 1.3764 1.1619 1.7600 -90 640 1.4325 1.1623 1.7600 -90 641 1.4893 1.1569 1.7600 -90 642 1.5448 1.1511 1.7600 -90 643 1.6042 1.1398 1.7600 -90 644 1.6629 1.1258 1.7600 -90 645 1.7230 1.1105 1.7600 -90 646 1.7793 1.0912 1.7600 -90 647 1.8356 1.0754 1.7600 -90 648 1.8889 1.0644 1.7600 -90 649 1.9395 1.0593 1.7600 -90 650 1.9898 1.0576 1.7600 -90 651 2.0446 1.0591 1.7600 -90 652 2.0956 1.0598 1.7600 -90 653 2.1496 1.0653 1.7600 -90 654 2.2054 1.0735 1.7600 -90 655 2.2609 1.0847 1.7600 -90 656 2.3211 1.0993 1.7600 -90 657 2.3767 1.1103 1.7600 -90 658 2.4349 1.1178 1.7600 -90 659 2.4893 1.1189 1.7600 -90 660 2.5441 1.1157 1.7600 -90 661 2.5980 1.1086 1.7600 -90 662 2.6555 1.1037 1.7600 -90 663 2.7128 1.0964 1.7600 -90 664 2.7739 1.0850 1.7600 -90 665 2.8379 1.0720 1.7600 -90 666 2.9007 1.0623 1.7600 -90 667 2.9571 1.0560 1.7600 -90 668 3.0146 1.0579 1.7600 -90 669 3.0718 1.0610 1.7600 -90 670 3.1286 1.0661 1.7600 -90 671 3.1851 1.0707 1.7600 -90 672 3.2431 1.0787 1.7600 -90 673 3.3027 1.0896 1.7600 -90 674 3.3617 1.1035 1.7600 -90 675 3.4243 1.1156 1.7600 -90 676 3.4858 1.1270 1.7600 -90 677 3.5467 1.1320 1.7600 -90 678 3.6052 1.1322 1.7600 -90 679 3.6604 1.1288 1.7600 -90 680 3.7227 1.1215 1.7600 -90 681 3.7828 1.1122 1.7600 -90 682 3.8434 1.1017 1.7600 -90 683 3.9003 1.0890 1.7600 -90 684 3.9604 1.0759 1.7600 -90 685 4.0179 1.0649 1.7600 -90 686 4.0799 1.0559 1.7600 -90 687 4.1371 1.0538 1.7600 -90 688 4.1921 1.0535 1.7600 -90 689 4.2461 1.0554 1.7600 -90 690 4.3036 1.0591 1.7600 -90 691 4.3640 1.0658 1.7600 -90 692 4.4274 1.0759 1.7600 -90 693 4.5026 1.0883 1.7600 -90 694 4.5696 1.0984 1.7600 -90 695 4.6395 1.1043 1.7600 -90 696 4.7060 1.1027 1.7600 -90 697 4.7715 1.0985 1.7600 -90 698 4.8299 1.0924 1.7600 -90 699 4.8907 1.0855 1.7600 -90 700 4.9537 1.0771 1.7600 -90 701 5.0174 1.0663 1.7600 -90 702 5.0903 1.0504 1.7600 -90 703 5.1659 1.0372 1.7600 -90 704 5.2386 1.0286 1.7600 -90 705 5.3107 1.0241 1.7600 -90 706 5.3759 1.0235 1.7600 -90 707 5.4378 1.0263 1.7600 -90 708 5.4997 1.0294 1.7600 -90 709 5.5634 1.0344 1.7600 -90 710 5.6334 1.0397 1.7600 -90 711 5.7099 1.0457 1.7600 -90 712 5.7850 1.0499 1.7600 -90 713 5.8589 1.0477 1.7600 -90 714 5.9272 1.0398 1.7600 -91 511 -7.7924 0.9733 1.7600 -91 512 -7.7469 0.9429 1.7600 -91 513 -7.7016 0.9190 1.7600 -91 514 -7.6518 0.9025 1.7600 -91 515 -7.5980 0.8891 1.7600 -91 516 -7.5409 0.8790 1.7600 -91 517 -7.4818 0.8732 1.7600 -91 518 -7.4155 0.8713 1.7600 -91 519 -7.3459 0.8717 1.7600 -91 520 -7.2796 0.8763 1.7600 -91 521 -7.2238 0.8783 1.7600 -91 522 -7.1774 0.8720 1.7600 -91 523 -7.1282 0.8571 1.7600 -91 524 -7.0755 0.8380 1.7600 -91 525 -7.0189 0.8221 1.7600 -91 526 -6.9580 0.8022 1.7600 -91 527 -6.8942 0.7806 1.7600 -91 528 -6.8336 0.7546 1.7600 -91 529 -6.7728 0.7252 1.7600 -91 530 -6.7169 0.6927 1.7600 -91 531 -6.6702 0.6615 1.7600 -91 532 -6.6268 0.6357 1.7600 -91 533 -6.5793 0.6185 1.7600 -91 534 -6.5356 0.6074 1.7600 -91 535 -6.4933 0.5985 1.7600 -91 536 -6.4455 0.5902 1.7600 -91 537 -6.3910 0.5862 1.7600 -91 538 -6.3354 0.5866 1.7600 -91 539 -6.2745 0.5926 1.7600 -91 540 -6.2168 0.6015 1.7600 -91 541 -6.1647 0.6074 1.7600 -91 542 -6.1174 0.6065 1.7600 -91 543 -6.0723 0.5991 1.7600 -91 544 -6.0228 0.5872 1.7600 -91 545 -5.9755 0.5756 1.7600 -91 546 -5.9249 0.5633 1.7600 -91 547 -5.8776 0.5486 1.7600 -91 548 -5.8269 0.5330 1.7600 -91 549 -5.7801 0.5113 1.7600 -91 550 -5.7314 0.4887 1.7600 -91 551 -5.6798 0.4655 1.7600 -91 552 -5.6318 0.4421 1.7600 -91 553 -5.5880 0.4231 1.7600 -91 554 -5.5392 0.4108 1.7600 -91 555 -5.4839 0.4017 1.7600 -91 556 -5.4283 0.3995 1.7600 -91 557 -5.3706 0.3974 1.7600 -91 558 -5.3110 0.3998 1.7600 -91 559 -5.2500 0.4063 1.7600 -91 560 -5.1877 0.4184 1.7600 -91 561 -5.1267 0.4293 1.7600 -91 562 -5.0745 0.4352 1.7600 -91 563 -5.0256 0.4350 1.7600 -91 564 -4.9724 0.4304 1.7600 -91 565 -4.9191 0.4251 1.7600 -91 566 -4.8642 0.4189 1.7600 -91 567 -4.8118 0.4056 1.7600 -91 568 -4.7576 0.3909 1.7600 -91 569 -4.7035 0.3704 1.7600 -91 570 -4.6520 0.3479 1.7600 -91 571 -4.6057 0.3248 1.7600 -91 572 -4.5630 0.3035 1.7600 -91 573 -4.5203 0.2926 1.7600 -91 574 -4.4731 0.2884 1.7600 -91 575 -4.4292 0.2867 1.7600 -91 576 -4.3852 0.2865 1.7600 -91 577 -4.3399 0.2875 1.7600 -91 578 -4.2906 0.2941 1.7600 -91 579 -4.2382 0.3088 1.7600 -91 580 -4.1858 0.3290 1.7600 -91 581 -4.1321 0.3503 1.7600 -91 582 -4.0822 0.3649 1.7600 -91 583 -4.0369 0.3740 1.7600 -91 584 -3.9885 0.3756 1.7600 -91 585 -3.9350 0.3769 1.7600 -91 586 -3.8880 0.3731 1.7600 -91 587 -3.8353 0.3647 1.7600 -91 588 -3.7866 0.3498 1.7600 -91 589 -3.7377 0.3308 1.7600 -91 590 -3.6867 0.3086 1.7600 -91 591 -3.6334 0.2851 1.7600 -91 592 -3.5834 0.2648 1.7600 -91 593 -3.5402 0.2507 1.7600 -91 594 -3.4982 0.2431 1.7600 -91 595 -3.4536 0.2420 1.7600 -91 596 -3.4112 0.2430 1.7600 -91 597 -3.3681 0.2465 1.7600 -91 598 -3.3244 0.2569 1.7600 -91 599 -3.2723 0.2712 1.7600 -91 600 -3.2150 0.2925 1.7600 -91 601 -3.1484 0.3100 1.7600 -91 602 -3.0872 0.3292 1.7600 -91 603 -3.0304 0.3473 1.7600 -91 604 -2.9737 0.3518 1.7600 -91 605 -2.9170 0.3501 1.7600 -91 606 -2.8620 0.3474 1.7600 -91 607 -2.8088 0.3444 1.7600 -91 608 -2.7555 0.3373 1.7600 -91 609 -2.7033 0.3233 1.7600 -91 610 -2.6477 0.3038 1.7600 -91 611 -2.5904 0.2830 1.7600 -91 612 -2.5259 0.2598 1.7600 -91 613 -2.4681 0.2410 1.7600 -91 614 -2.4165 0.2257 1.7600 -91 615 -2.3617 0.2159 1.7600 -91 616 -2.3106 0.2126 1.7600 -91 617 -2.2604 0.2114 1.7600 -91 618 -2.2073 0.2176 1.7600 -91 619 -2.1511 0.2283 1.7600 -91 620 -2.0923 0.2453 1.7600 -91 621 -2.0329 0.2644 1.7600 -91 622 -1.9729 0.2854 1.7600 -91 623 -1.9102 0.3018 1.7600 -91 624 -1.8545 0.3144 1.7600 -91 625 -1.8006 0.3219 1.7600 -91 626 -1.7470 0.3234 1.7600 -91 627 -1.6944 0.3267 1.7600 -91 628 -1.6441 0.3292 1.7600 -91 629 -1.5933 0.3293 1.7600 -91 630 -1.5401 0.3220 1.7600 -91 631 -1.4856 0.3100 1.7600 -91 632 -1.4312 0.2928 1.7600 -91 633 -1.3764 0.2748 1.7600 -91 634 -1.3223 0.2634 1.7600 -91 635 -1.2702 0.2585 1.7600 -91 636 -1.2205 0.2644 1.7600 -91 637 -1.1712 0.2747 1.7600 -91 638 -1.1213 0.2862 1.7600 -91 639 -1.0679 0.2972 1.7600 -91 640 -1.0118 0.3093 1.7600 -91 641 -0.9545 0.3276 1.7600 -91 642 -0.8950 0.3481 1.7600 -91 643 -0.8328 0.3652 1.7600 -91 644 -0.7744 0.3737 1.7600 -91 645 -0.7202 0.3766 1.7600 -91 646 -0.6624 0.3759 1.7600 -91 647 -0.6021 0.3739 1.7600 -91 648 -0.5421 0.3695 1.7600 -91 649 -0.4827 0.3616 1.7600 -91 650 -0.4214 0.3506 1.7600 -91 651 -0.3574 0.3348 1.7600 -91 652 -0.2921 0.3220 1.7600 -91 653 -0.2296 0.3047 1.7600 -91 654 -0.1754 0.2922 1.7600 -91 655 -0.1212 0.2883 1.7600 -91 656 -0.0691 0.2929 1.7600 -91 657 -0.0145 0.3019 1.7600 -91 658 0.0441 0.3136 1.7600 -91 659 0.1040 0.3264 1.7600 -91 660 0.1636 0.3400 1.7600 -91 661 0.2252 0.3592 1.7600 -91 662 0.2821 0.3784 1.7600 -91 663 0.3350 0.3887 1.7600 -91 664 0.3864 0.3904 1.7600 -91 665 0.4415 0.3925 1.7600 -91 666 0.5009 0.3919 1.7600 -91 667 0.5602 0.3875 1.7600 -91 668 0.6214 0.3812 1.7600 -91 669 0.6854 0.3719 1.7600 -91 670 0.7514 0.3561 1.7600 -91 671 0.8150 0.3342 1.7600 -91 672 0.8761 0.3148 1.7600 -91 673 0.9308 0.3014 1.7600 -91 674 0.9837 0.2935 1.7600 -91 675 1.0366 0.2967 1.7600 -91 676 1.0887 0.3016 1.7600 -91 677 1.1395 0.3065 1.7600 -91 678 1.1927 0.3122 1.7600 -91 679 1.2488 0.3219 1.7600 -91 680 1.3089 0.3370 1.7600 -91 681 1.3728 0.3562 1.7600 -91 682 1.4379 0.3727 1.7600 -91 683 1.5004 0.3858 1.7600 -91 684 1.5548 0.3903 1.7600 -91 685 1.6185 0.3895 1.7600 -91 686 1.6817 0.3870 1.7600 -91 687 1.7440 0.3826 1.7600 -91 688 1.8030 0.3754 1.7600 -91 689 1.8601 0.3670 1.7600 -91 690 1.9160 0.3562 1.7600 -91 691 1.9699 0.3370 1.7600 -91 692 2.0305 0.3178 1.7600 -91 693 2.0834 0.3035 1.7600 -91 694 2.1393 0.2944 1.7600 -91 695 2.1987 0.2912 1.7600 -91 696 2.2538 0.2945 1.7600 -91 697 2.3038 0.2983 1.7600 -91 698 2.3559 0.3031 1.7600 -91 699 2.4103 0.3123 1.7600 -91 700 2.4699 0.3233 1.7600 -91 701 2.5324 0.3414 1.7600 -91 702 2.5971 0.3571 1.7600 -91 703 2.6577 0.3693 1.7600 -91 704 2.7109 0.3710 1.7600 -91 705 2.7641 0.3659 1.7600 -91 706 2.8188 0.3604 1.7600 -91 707 2.8726 0.3542 1.7600 -91 708 2.9241 0.3481 1.7600 -91 709 2.9727 0.3427 1.7600 -91 710 3.0255 0.3312 1.7600 -91 711 3.0791 0.3194 1.7600 -91 712 3.1347 0.3069 1.7600 -91 713 3.1932 0.2939 1.7600 -91 714 3.2479 0.2864 1.7600 -91 715 3.3044 0.2857 1.7600 -91 716 3.3612 0.2937 1.7600 -91 717 3.4107 0.3002 1.7600 -91 718 3.4596 0.3103 1.7600 -91 719 3.5106 0.3218 1.7600 -91 720 3.5643 0.3409 1.7600 -91 721 3.6160 0.3561 1.7600 -91 722 3.6716 0.3783 1.7600 -91 723 3.7322 0.4024 1.7600 -91 724 3.7840 0.4158 1.7600 -91 725 3.8307 0.4262 1.7600 -91 726 3.8806 0.4299 1.7600 -91 727 3.9310 0.4305 1.7600 -91 728 3.9789 0.4334 1.7600 -91 729 4.0281 0.4356 1.7600 -91 730 4.0810 0.4312 1.7600 -91 731 4.1354 0.4207 1.7600 -91 732 4.1957 0.4069 1.7600 -91 733 4.2591 0.3857 1.7600 -91 734 4.3239 0.3593 1.7600 -91 735 4.3923 0.3319 1.7600 -91 736 4.4571 0.3116 1.7600 -91 737 4.5186 0.3045 1.7600 -91 738 4.5740 0.2989 1.7600 -91 739 4.6269 0.2965 1.7600 -91 740 4.6807 0.2969 1.7600 -91 741 4.7328 0.3084 1.7600 -91 742 4.7830 0.3238 1.7600 -91 743 4.8402 0.3463 1.7600 -91 744 4.9080 0.3663 1.7600 -91 745 4.9719 0.3718 1.7600 -91 746 5.0380 0.3640 1.7600 -91 747 5.1053 0.3493 1.7600 -91 748 5.1667 0.3301 1.7600 -91 749 5.2250 0.3068 1.7600 -91 750 5.2766 0.2853 1.7600 -91 751 5.3268 0.2623 1.7600 -91 752 5.3858 0.2386 1.7600 -91 753 5.4495 0.2159 1.7600 -91 754 5.5202 0.1915 1.7600 -91 755 5.5926 0.1696 1.7600 -91 756 5.6629 0.1548 1.7600 -91 757 5.7263 0.1479 1.7600 -91 758 5.7849 0.1448 1.7600 -91 759 5.8437 0.1424 1.7600 -91 760 5.9031 0.1414 1.7600 -91 761 5.9637 0.1427 1.7600 -92 493 -7.7807 1.8296 1.7600 -92 494 -7.7203 1.8065 1.7600 -92 495 -7.6629 1.7878 1.7600 -92 496 -7.6077 1.7770 1.7600 -92 497 -7.5546 1.7739 1.7600 -92 498 -7.4996 1.7761 1.7600 -92 499 -7.4426 1.7809 1.7600 -92 500 -7.3851 1.7873 1.7600 -92 501 -7.3259 1.7963 1.7600 -92 502 -7.2637 1.8090 1.7600 -92 503 -7.1998 1.8237 1.7600 -92 504 -7.1371 1.8400 1.7600 -92 505 -7.0784 1.8563 1.7600 -92 506 -7.0218 1.8701 1.7600 -92 507 -6.9665 1.8801 1.7600 -92 508 -6.9139 1.8835 1.7600 -92 509 -6.8616 1.8807 1.7600 -92 510 -6.8057 1.8729 1.7600 -92 511 -6.7473 1.8628 1.7600 -92 512 -6.6873 1.8478 1.7600 -92 513 -6.6265 1.8255 1.7600 -92 514 -6.5656 1.7971 1.7600 -92 515 -6.5048 1.7648 1.7600 -92 516 -6.4481 1.7321 1.7600 -92 517 -6.3932 1.7010 1.7600 -92 518 -6.3391 1.6774 1.7600 -92 519 -6.2845 1.6616 1.7600 -92 520 -6.2320 1.6482 1.7600 -92 521 -6.1763 1.6413 1.7600 -92 522 -6.1224 1.6321 1.7600 -92 523 -6.0723 1.6242 1.7600 -92 524 -6.0210 1.6187 1.7600 -92 525 -5.9666 1.6142 1.7600 -92 526 -5.9120 1.6124 1.7600 -92 527 -5.8558 1.6106 1.7600 -92 528 -5.8002 1.6093 1.7600 -92 529 -5.7443 1.6133 1.7600 -92 530 -5.6900 1.6173 1.7600 -92 531 -5.6350 1.6162 1.7600 -92 532 -5.5847 1.6075 1.7600 -92 533 -5.5424 1.5931 1.7600 -92 534 -5.5022 1.5736 1.7600 -92 535 -5.4607 1.5500 1.7600 -92 536 -5.4183 1.5218 1.7600 -92 537 -5.3751 1.4887 1.7600 -92 538 -5.3356 1.4528 1.7600 -92 539 -5.2952 1.4148 1.7600 -92 540 -5.2552 1.3733 1.7600 -92 541 -5.2173 1.3383 1.7600 -92 542 -5.1747 1.3087 1.7600 -92 543 -5.1308 1.2880 1.7600 -92 544 -5.0871 1.2734 1.7600 -92 545 -5.0381 1.2614 1.7600 -92 546 -4.9920 1.2523 1.7600 -92 547 -4.9448 1.2499 1.7600 -92 548 -4.8976 1.2496 1.7600 -92 549 -4.8511 1.2526 1.7600 -92 550 -4.8012 1.2613 1.7600 -92 551 -4.7536 1.2683 1.7600 -92 552 -4.7036 1.2804 1.7600 -92 553 -4.6524 1.2871 1.7600 -92 554 -4.6041 1.2881 1.7600 -92 555 -4.5575 1.2857 1.7600 -92 556 -4.5142 1.2779 1.7600 -92 557 -4.4747 1.2682 1.7600 -92 558 -4.4313 1.2563 1.7600 -92 559 -4.3871 1.2406 1.7600 -92 560 -4.3459 1.2207 1.7600 -92 561 -4.3025 1.1998 1.7600 -92 562 -4.2618 1.1713 1.7600 -92 563 -4.2192 1.1447 1.7600 -92 564 -4.1718 1.1190 1.7600 -92 565 -4.1287 1.0991 1.7600 -92 566 -4.0809 1.0852 1.7600 -92 567 -4.0363 1.0744 1.7600 -92 568 -3.9876 1.0697 1.7600 -92 569 -3.9392 1.0690 1.7600 -92 570 -3.8889 1.0734 1.7600 -92 571 -3.8362 1.0817 1.7600 -92 572 -3.7849 1.0921 1.7600 -92 573 -3.7309 1.1082 1.7600 -92 574 -3.6743 1.1249 1.7600 -92 575 -3.6168 1.1386 1.7600 -92 576 -3.5586 1.1476 1.7600 -92 577 -3.5012 1.1472 1.7600 -92 578 -3.4414 1.1418 1.7600 -92 579 -3.3830 1.1320 1.7600 -92 580 -3.3242 1.1206 1.7600 -92 581 -3.2662 1.1047 1.7600 -92 582 -3.2057 1.0848 1.7600 -92 583 -3.1480 1.0618 1.7600 -92 584 -3.0880 1.0404 1.7600 -92 585 -3.0254 1.0209 1.7600 -92 586 -2.9659 1.0078 1.7600 -92 587 -2.9042 1.0021 1.7600 -92 588 -2.8427 1.0023 1.7600 -92 589 -2.7813 1.0045 1.7600 -92 590 -2.7209 1.0112 1.7600 -92 591 -2.6598 1.0191 1.7600 -92 592 -2.5983 1.0339 1.7600 -92 593 -2.5353 1.0537 1.7600 -92 594 -2.4688 1.0764 1.7600 -92 595 -2.3995 1.0942 1.7600 -92 596 -2.3308 1.1047 1.7600 -92 597 -2.2660 1.1133 1.7600 -92 598 -2.2024 1.1154 1.7600 -92 599 -2.1401 1.1165 1.7600 -92 600 -2.0819 1.1166 1.7600 -92 601 -2.0204 1.1093 1.7600 -92 602 -1.9577 1.0995 1.7600 -92 603 -1.8948 1.0810 1.7600 -92 604 -1.8285 1.0599 1.7600 -92 605 -1.7586 1.0383 1.7600 -92 606 -1.6916 1.0221 1.7600 -92 607 -1.6285 1.0140 1.7600 -92 608 -1.5698 1.0124 1.7600 -92 609 -1.5149 1.0155 1.7600 -92 610 -1.4592 1.0226 1.7600 -92 611 -1.4066 1.0309 1.7600 -92 612 -1.3530 1.0432 1.7600 -92 613 -1.2945 1.0621 1.7600 -92 614 -1.2333 1.0832 1.7600 -92 615 -1.1688 1.1054 1.7600 -92 616 -1.1066 1.1202 1.7600 -92 617 -1.0464 1.1277 1.7600 -92 618 -0.9871 1.1277 1.7600 -92 619 -0.9288 1.1261 1.7600 -92 620 -0.8746 1.1215 1.7600 -92 621 -0.8210 1.1142 1.7600 -92 622 -0.7656 1.1038 1.7600 -92 623 -0.7059 1.0887 1.7600 -92 624 -0.6444 1.0694 1.7600 -92 625 -0.5804 1.0448 1.7600 -92 626 -0.5167 1.0204 1.7600 -92 627 -0.4584 1.0003 1.7600 -92 628 -0.4049 0.9864 1.7600 -92 629 -0.3497 0.9754 1.7600 -92 630 -0.2942 0.9702 1.7600 -92 631 -0.2365 0.9670 1.7600 -92 632 -0.1770 0.9664 1.7600 -92 633 -0.1152 0.9689 1.7600 -92 634 -0.0530 0.9759 1.7600 -92 635 0.0080 0.9876 1.7600 -92 636 0.0690 1.0006 1.7600 -92 637 0.1282 1.0147 1.7600 -92 638 0.1852 1.0276 1.7600 -92 639 0.2421 1.0344 1.7600 -92 640 0.2987 1.0365 1.7600 -92 641 0.3562 1.0310 1.7600 -92 642 0.4172 1.0221 1.7600 -92 643 0.4787 1.0112 1.7600 -92 644 0.5407 0.9966 1.7600 -92 645 0.6049 0.9801 1.7600 -92 646 0.6724 0.9598 1.7600 -92 647 0.7393 0.9406 1.7600 -92 648 0.8019 0.9250 1.7600 -92 649 0.8656 0.9153 1.7600 -92 650 0.9278 0.9090 1.7600 -92 651 0.9910 0.9097 1.7600 -92 652 1.0510 0.9145 1.7600 -92 653 1.1090 0.9238 1.7600 -92 654 1.1703 0.9375 1.7600 -92 655 1.2286 0.9531 1.7600 -92 656 1.2903 0.9729 1.7600 -92 657 1.3523 0.9937 1.7600 -92 658 1.4129 1.0097 1.7600 -92 659 1.4707 1.0199 1.7600 -92 660 1.5274 1.0237 1.7600 -92 661 1.5833 1.0189 1.7600 -92 662 1.6429 1.0094 1.7600 -92 663 1.7032 0.9981 1.7600 -92 664 1.7650 0.9863 1.7600 -92 665 1.8273 0.9709 1.7600 -92 666 1.8895 0.9539 1.7600 -92 667 1.9566 0.9301 1.7600 -92 668 2.0268 0.9051 1.7600 -92 669 2.0944 0.8833 1.7600 -92 670 2.1629 0.8668 1.7600 -92 671 2.2324 0.8580 1.7600 -92 672 2.2989 0.8542 1.7600 -92 673 2.3634 0.8567 1.7600 -92 674 2.4281 0.8630 1.7600 -92 675 2.4874 0.8722 1.7600 -92 676 2.5511 0.8825 1.7600 -92 677 2.6080 0.8989 1.7600 -92 678 2.6709 0.9205 1.7600 -92 679 2.7341 0.9427 1.7600 -92 680 2.7980 0.9589 1.7600 -92 681 2.8594 0.9639 1.7600 -92 682 2.9233 0.9614 1.7600 -92 683 2.9835 0.9538 1.7600 -92 684 3.0418 0.9431 1.7600 -92 685 3.1046 0.9344 1.7600 -92 686 3.1671 0.9268 1.7600 -92 687 3.2324 0.9167 1.7600 -92 688 3.3001 0.9035 1.7600 -92 689 3.3735 0.8940 1.7600 -92 690 3.4453 0.8885 1.7600 -92 691 3.5133 0.8899 1.7600 -92 692 3.5820 0.8979 1.7600 -92 693 3.6472 0.9131 1.7600 -92 694 3.7085 0.9326 1.7600 -92 695 3.7689 0.9550 1.7600 -92 696 3.8336 0.9794 1.7600 -92 697 3.9048 1.0045 1.7600 -92 698 3.9773 1.0321 1.7600 -92 699 4.0527 1.0606 1.7600 -92 700 4.1249 1.0812 1.7600 -92 701 4.1922 1.0935 1.7600 -92 702 4.2564 1.0968 1.7600 -92 703 4.3173 1.0957 1.7600 -92 704 4.3798 1.0939 1.7600 -92 705 4.4399 1.0882 1.7600 -92 706 4.4990 1.0803 1.7600 -92 707 4.5627 1.0673 1.7600 -92 708 4.6395 1.0526 1.7600 -92 709 4.7184 1.0426 1.7600 -92 710 4.7935 1.0378 1.7600 -92 711 4.8657 1.0407 1.7600 -92 712 4.9328 1.0521 1.7600 -92 713 5.0002 1.0700 1.7600 -92 714 5.0641 1.0928 1.7600 -92 715 5.1260 1.1190 1.7600 -92 716 5.1942 1.1507 1.7600 -92 717 5.2637 1.1888 1.7600 -92 718 5.3423 1.2283 1.7600 -92 719 5.4270 1.2637 1.7600 -92 720 5.5104 1.2916 1.7600 -92 721 5.5921 1.3059 1.7600 -92 722 5.6709 1.3122 1.7600 -92 723 5.7459 1.3147 1.7600 -92 724 5.8130 1.3153 1.7600 -92 725 5.8812 1.3118 1.7600 -92 726 5.9526 1.3032 1.7600 -93 518 -7.8194 1.3650 1.7600 -93 519 -7.7566 1.3540 1.7600 -93 520 -7.6901 1.3407 1.7600 -93 521 -7.6235 1.3244 1.7600 -93 522 -7.5603 1.3037 1.7600 -93 523 -7.5019 1.2794 1.7600 -93 524 -7.4452 1.2561 1.7600 -93 525 -7.3902 1.2387 1.7600 -93 526 -7.3312 1.2259 1.7600 -93 527 -7.2672 1.2174 1.7600 -93 528 -7.2009 1.2105 1.7600 -93 529 -7.1305 1.2059 1.7600 -93 530 -7.0617 1.2058 1.7600 -93 531 -6.9991 1.2086 1.7600 -93 532 -6.9392 1.2152 1.7600 -93 533 -6.8805 1.2203 1.7600 -93 534 -6.8249 1.2162 1.7600 -93 535 -6.7723 1.2060 1.7600 -93 536 -6.7162 1.1964 1.7600 -93 537 -6.6559 1.1837 1.7600 -93 538 -6.5961 1.1734 1.7600 -93 539 -6.5372 1.1539 1.7600 -93 540 -6.4816 1.1328 1.7600 -93 541 -6.4291 1.1080 1.7600 -93 542 -6.3761 1.0874 1.7600 -93 543 -6.3221 1.0758 1.7600 -93 544 -6.2678 1.0681 1.7600 -93 545 -6.2122 1.0624 1.7600 -93 546 -6.1551 1.0557 1.7600 -93 547 -6.0940 1.0551 1.7600 -93 548 -6.0317 1.0564 1.7600 -93 549 -5.9740 1.0604 1.7600 -93 550 -5.9170 1.0686 1.7600 -93 551 -5.8662 1.0724 1.7600 -93 552 -5.8159 1.0695 1.7600 -93 553 -5.7687 1.0642 1.7600 -93 554 -5.7216 1.0577 1.7600 -93 555 -5.6734 1.0472 1.7600 -93 556 -5.6248 1.0392 1.7600 -93 557 -5.5738 1.0278 1.7600 -93 558 -5.5228 1.0123 1.7600 -93 559 -5.4768 0.9936 1.7600 -93 560 -5.4317 0.9707 1.7600 -93 561 -5.3862 0.9496 1.7600 -93 562 -5.3409 0.9333 1.7600 -93 563 -5.2940 0.9227 1.7600 -93 564 -5.2467 0.9124 1.7600 -93 565 -5.1967 0.9062 1.7600 -93 566 -5.1473 0.9010 1.7600 -93 567 -5.0944 0.9004 1.7600 -93 568 -5.0375 0.9045 1.7600 -93 569 -4.9817 0.9114 1.7600 -93 570 -4.9209 0.9179 1.7600 -93 571 -4.8645 0.9231 1.7600 -93 572 -4.8069 0.9243 1.7600 -93 573 -4.7520 0.9209 1.7600 -93 574 -4.6980 0.9137 1.7600 -93 575 -4.6410 0.9049 1.7600 -93 576 -4.5878 0.8968 1.7600 -93 577 -4.5310 0.8842 1.7600 -93 578 -4.4753 0.8710 1.7600 -93 579 -4.4186 0.8522 1.7600 -93 580 -4.3638 0.8332 1.7600 -93 581 -4.3108 0.8135 1.7600 -93 582 -4.2535 0.8018 1.7600 -93 583 -4.1982 0.7945 1.7600 -93 584 -4.1424 0.7922 1.7600 -93 585 -4.0870 0.7893 1.7600 -93 586 -4.0300 0.7912 1.7600 -93 587 -3.9735 0.7987 1.7600 -93 588 -3.9155 0.8115 1.7600 -93 589 -3.8536 0.8275 1.7600 -93 590 -3.7989 0.8443 1.7600 -93 591 -3.7451 0.8565 1.7600 -93 592 -3.6928 0.8637 1.7600 -93 593 -3.6354 0.8674 1.7600 -93 594 -3.5815 0.8695 1.7600 -93 595 -3.5230 0.8696 1.7600 -93 596 -3.4644 0.8685 1.7600 -93 597 -3.4030 0.8635 1.7600 -93 598 -3.3416 0.8546 1.7600 -93 599 -3.2811 0.8478 1.7600 -93 600 -3.2205 0.8419 1.7600 -93 601 -3.1552 0.8451 1.7600 -93 602 -3.0891 0.8514 1.7600 -93 603 -3.0226 0.8597 1.7600 -93 604 -2.9544 0.8696 1.7600 -93 605 -2.8878 0.8844 1.7600 -93 606 -2.8158 0.9023 1.7600 -93 607 -2.7404 0.9251 1.7600 -93 608 -2.6604 0.9473 1.7600 -93 609 -2.5863 0.9576 1.7600 -93 610 -2.5123 0.9607 1.7600 -93 611 -2.4453 0.9607 1.7600 -93 612 -2.3812 0.9560 1.7600 -93 613 -2.3201 0.9450 1.7600 -93 614 -2.2558 0.9257 1.7600 -93 615 -2.1874 0.9015 1.7600 -93 616 -2.1249 0.8767 1.7600 -93 617 -2.0565 0.8477 1.7600 -93 618 -1.9857 0.8249 1.7600 -93 619 -1.9089 0.8114 1.7600 -93 620 -1.8349 0.8038 1.7600 -93 621 -1.7663 0.7999 1.7600 -93 622 -1.6992 0.7996 1.7600 -93 623 -1.6328 0.8032 1.7600 -93 624 -1.5610 0.8108 1.7600 -93 625 -1.4840 0.8234 1.7600 -93 626 -1.4080 0.8351 1.7600 -93 627 -1.3371 0.8362 1.7600 -93 628 -1.2680 0.8269 1.7600 -93 629 -1.2010 0.8179 1.7600 -93 630 -1.1355 0.8092 1.7600 -93 631 -1.0681 0.7993 1.7600 -93 632 -0.9974 0.7893 1.7600 -93 633 -0.9273 0.7740 1.7600 -93 634 -0.8556 0.7574 1.7600 -93 635 -0.7877 0.7413 1.7600 -93 636 -0.7167 0.7285 1.7600 -93 637 -0.6450 0.7253 1.7600 -93 638 -0.5763 0.7276 1.7600 -93 639 -0.5087 0.7304 1.7600 -93 640 -0.4405 0.7344 1.7600 -93 641 -0.3704 0.7422 1.7600 -93 642 -0.3007 0.7556 1.7600 -93 643 -0.2355 0.7742 1.7600 -93 644 -0.1715 0.7914 1.7600 -93 645 -0.1134 0.7994 1.7600 -93 646 -0.0542 0.7986 1.7600 -93 647 0.0020 0.7957 1.7600 -93 648 0.0606 0.7894 1.7600 -93 649 0.1202 0.7846 1.7600 -93 650 0.1810 0.7757 1.7600 -93 651 0.2431 0.7614 1.7600 -93 652 0.3027 0.7430 1.7600 -93 653 0.3595 0.7204 1.7600 -93 654 0.4154 0.6986 1.7600 -93 655 0.4724 0.6819 1.7600 -93 656 0.5322 0.6746 1.7600 -93 657 0.5916 0.6697 1.7600 -93 658 0.6502 0.6666 1.7600 -93 659 0.7118 0.6648 1.7600 -93 660 0.7770 0.6723 1.7600 -93 661 0.8429 0.6836 1.7600 -93 662 0.9100 0.6996 1.7600 -93 663 0.9768 0.7154 1.7600 -93 664 1.0441 0.7301 1.7600 -93 665 1.1109 0.7376 1.7600 -93 666 1.1752 0.7384 1.7600 -93 667 1.2410 0.7351 1.7600 -93 668 1.3056 0.7325 1.7600 -93 669 1.3727 0.7312 1.7600 -93 670 1.4393 0.7267 1.7600 -93 671 1.5052 0.7162 1.7600 -93 672 1.5731 0.7023 1.7600 -93 673 1.6402 0.6864 1.7600 -93 674 1.7087 0.6750 1.7600 -93 675 1.7797 0.6738 1.7600 -93 676 1.8483 0.6772 1.7600 -93 677 1.9088 0.6822 1.7600 -93 678 1.9709 0.6875 1.7600 -93 679 2.0337 0.6932 1.7600 -93 680 2.0953 0.7017 1.7600 -93 681 2.1533 0.7101 1.7600 -93 682 2.2153 0.7160 1.7600 -93 683 2.2757 0.7159 1.7600 -93 684 2.3356 0.7142 1.7600 -93 685 2.3930 0.7078 1.7600 -93 686 2.4498 0.6999 1.7600 -93 687 2.5049 0.6860 1.7600 -93 688 2.5607 0.6693 1.7600 -93 689 2.6180 0.6534 1.7600 -93 690 2.6793 0.6414 1.7600 -93 691 2.7426 0.6388 1.7600 -93 692 2.8035 0.6384 1.7600 -93 693 2.8629 0.6409 1.7600 -93 694 2.9225 0.6454 1.7600 -93 695 2.9836 0.6535 1.7600 -93 696 3.0445 0.6650 1.7600 -93 697 3.1020 0.6809 1.7600 -93 698 3.1602 0.6919 1.7600 -93 699 3.2186 0.6976 1.7600 -93 700 3.2797 0.6962 1.7600 -93 701 3.3381 0.6907 1.7600 -93 702 3.3991 0.6866 1.7600 -93 703 3.4620 0.6775 1.7600 -93 704 3.5266 0.6633 1.7600 -93 705 3.5915 0.6437 1.7600 -93 706 3.6597 0.6281 1.7600 -93 707 3.7310 0.6199 1.7600 -93 708 3.8009 0.6185 1.7600 -93 709 3.8692 0.6227 1.7600 -93 710 3.9348 0.6280 1.7600 -93 711 3.9992 0.6336 1.7600 -93 712 4.0654 0.6442 1.7600 -93 713 4.1366 0.6586 1.7600 -93 714 4.2073 0.6751 1.7600 -93 715 4.2754 0.6866 1.7600 -93 716 4.3428 0.6873 1.7600 -93 717 4.4071 0.6837 1.7600 -93 718 4.4678 0.6813 1.7600 -93 719 4.5241 0.6791 1.7600 -93 720 4.5822 0.6767 1.7600 -93 721 4.6405 0.6728 1.7600 -93 722 4.6993 0.6660 1.7600 -93 723 4.7629 0.6547 1.7600 -93 724 4.8262 0.6423 1.7600 -93 725 4.8963 0.6392 1.7600 -93 726 4.9713 0.6499 1.7600 -93 727 5.0390 0.6640 1.7600 -93 728 5.1001 0.6789 1.7600 -93 729 5.1600 0.6959 1.7600 -93 730 5.2204 0.7160 1.7600 -93 731 5.2874 0.7389 1.7600 -93 732 5.3588 0.7620 1.7600 -93 733 5.4315 0.7862 1.7600 -93 734 5.5031 0.8019 1.7600 -93 735 5.5746 0.8119 1.7600 -93 736 5.6453 0.8169 1.7600 -93 737 5.7102 0.8172 1.7600 -93 738 5.7698 0.8132 1.7600 -93 739 5.8280 0.8043 1.7600 -93 740 5.8869 0.7902 1.7600 -93 741 5.9509 0.7723 1.7600 -94 519 -7.8250 2.0845 1.7600 -94 520 -7.7641 2.0679 1.7600 -94 521 -7.7040 2.0470 1.7600 -94 522 -7.6458 2.0257 1.7600 -94 523 -7.5915 2.0089 1.7600 -94 524 -7.5393 1.9972 1.7600 -94 525 -7.4878 1.9892 1.7600 -94 526 -7.4377 1.9832 1.7600 -94 527 -7.3866 1.9798 1.7600 -94 528 -7.3331 1.9786 1.7600 -94 529 -7.2781 1.9797 1.7600 -94 530 -7.2249 1.9830 1.7600 -94 531 -7.1749 1.9883 1.7600 -94 532 -7.1279 1.9914 1.7600 -94 533 -7.0840 1.9922 1.7600 -94 534 -7.0401 1.9907 1.7600 -94 535 -6.9933 1.9873 1.7600 -94 536 -6.9442 1.9825 1.7600 -94 537 -6.8933 1.9734 1.7600 -94 538 -6.8381 1.9597 1.7600 -94 539 -6.7824 1.9439 1.7600 -94 540 -6.7272 1.9302 1.7600 -94 541 -6.6766 1.9151 1.7600 -94 542 -6.6263 1.9065 1.7600 -94 543 -6.5756 1.9017 1.7600 -94 544 -6.5252 1.9029 1.7600 -94 545 -6.4713 1.9020 1.7600 -94 546 -6.4163 1.9055 1.7600 -94 547 -6.3581 1.9129 1.7600 -94 548 -6.3000 1.9168 1.7600 -94 549 -6.2445 1.9253 1.7600 -94 550 -6.1956 1.9343 1.7600 -94 551 -6.1519 1.9366 1.7600 -94 552 -6.1093 1.9382 1.7600 -94 553 -6.0642 1.9361 1.7600 -94 554 -6.0244 1.9312 1.7600 -94 555 -5.9789 1.9229 1.7600 -94 556 -5.9387 1.9142 1.7600 -94 557 -5.8935 1.9005 1.7600 -94 558 -5.8495 1.8834 1.7600 -94 559 -5.8053 1.8653 1.7600 -94 560 -5.7630 1.8427 1.7600 -94 561 -5.7212 1.8200 1.7600 -94 562 -5.6814 1.7968 1.7600 -94 563 -5.6380 1.7762 1.7600 -94 564 -5.5992 1.7596 1.7600 -94 565 -5.5601 1.7452 1.7600 -94 566 -5.5222 1.7330 1.7600 -94 567 -5.4808 1.7212 1.7600 -94 568 -5.4408 1.7100 1.7600 -94 569 -5.3955 1.7022 1.7600 -94 570 -5.3483 1.6954 1.7600 -94 571 -5.2988 1.6896 1.7600 -94 572 -5.2481 1.6870 1.7600 -94 573 -5.1988 1.6874 1.7600 -94 574 -5.1476 1.6862 1.7600 -94 575 -5.0987 1.6852 1.7600 -94 576 -5.0474 1.6795 1.7600 -94 577 -4.9967 1.6693 1.7600 -94 578 -4.9432 1.6581 1.7600 -94 579 -4.8898 1.6462 1.7600 -94 580 -4.8357 1.6288 1.7600 -94 581 -4.7812 1.6120 1.7600 -94 582 -4.7262 1.5932 1.7600 -94 583 -4.6715 1.5728 1.7600 -94 584 -4.6140 1.5535 1.7600 -94 585 -4.5621 1.5409 1.7600 -94 586 -4.5125 1.5287 1.7600 -94 587 -4.4562 1.5210 1.7600 -94 588 -4.4017 1.5137 1.7600 -94 589 -4.3429 1.5102 1.7600 -94 590 -4.2839 1.5078 1.7600 -94 591 -4.2224 1.5116 1.7600 -94 592 -4.1615 1.5156 1.7600 -94 593 -4.0958 1.5234 1.7600 -94 594 -4.0333 1.5308 1.7600 -94 595 -3.9733 1.5375 1.7600 -94 596 -3.9139 1.5403 1.7600 -94 597 -3.8590 1.5391 1.7600 -94 598 -3.8053 1.5363 1.7600 -94 599 -3.7486 1.5319 1.7600 -94 600 -3.6891 1.5235 1.7600 -94 601 -3.6287 1.5127 1.7600 -94 602 -3.5672 1.4994 1.7600 -94 603 -3.5072 1.4869 1.7600 -94 604 -3.4439 1.4767 1.7600 -94 605 -3.3813 1.4701 1.7600 -94 606 -3.3189 1.4667 1.7600 -94 607 -3.2576 1.4663 1.7600 -94 608 -3.1973 1.4629 1.7600 -94 609 -3.1369 1.4614 1.7600 -94 610 -3.0769 1.4614 1.7600 -94 611 -3.0171 1.4657 1.7600 -94 612 -2.9578 1.4749 1.7600 -94 613 -2.8957 1.4817 1.7600 -94 614 -2.8325 1.4933 1.7600 -94 615 -2.7716 1.5007 1.7600 -94 616 -2.7123 1.5049 1.7600 -94 617 -2.6560 1.5043 1.7600 -94 618 -2.6019 1.5002 1.7600 -94 619 -2.5479 1.4965 1.7600 -94 620 -2.4922 1.4874 1.7600 -94 621 -2.4356 1.4746 1.7600 -94 622 -2.3774 1.4602 1.7600 -94 623 -2.3184 1.4445 1.7600 -94 624 -2.2570 1.4290 1.7600 -94 625 -2.2002 1.4171 1.7600 -94 626 -2.1412 1.4090 1.7600 -94 627 -2.0820 1.4044 1.7600 -94 628 -2.0252 1.4023 1.7600 -94 629 -1.9673 1.4028 1.7600 -94 630 -1.9102 1.4050 1.7600 -94 631 -1.8524 1.4140 1.7600 -94 632 -1.7953 1.4237 1.7600 -94 633 -1.7314 1.4366 1.7600 -94 634 -1.6693 1.4523 1.7600 -94 635 -1.6018 1.4606 1.7600 -94 636 -1.5335 1.4670 1.7600 -94 637 -1.4675 1.4690 1.7600 -94 638 -1.4001 1.4689 1.7600 -94 639 -1.3315 1.4667 1.7600 -94 640 -1.2635 1.4607 1.7600 -94 641 -1.1954 1.4538 1.7600 -94 642 -1.1246 1.4427 1.7600 -94 643 -1.0587 1.4317 1.7600 -94 644 -0.9907 1.4251 1.7600 -94 645 -0.9287 1.4226 1.7600 -94 646 -0.8666 1.4241 1.7600 -94 647 -0.8035 1.4288 1.7600 -94 648 -0.7398 1.4341 1.7600 -94 649 -0.6758 1.4424 1.7600 -94 650 -0.6109 1.4594 1.7600 -94 651 -0.5471 1.4723 1.7600 -94 652 -0.4838 1.4836 1.7600 -94 653 -0.4238 1.4927 1.7600 -94 654 -0.3637 1.5011 1.7600 -94 655 -0.3048 1.5022 1.7600 -94 656 -0.2447 1.4984 1.7600 -94 657 -0.1806 1.4927 1.7600 -94 658 -0.1132 1.4827 1.7600 -94 659 -0.0487 1.4644 1.7600 -94 660 0.0169 1.4426 1.7600 -94 661 0.0801 1.4241 1.7600 -94 662 0.1404 1.4089 1.7600 -94 663 0.1967 1.4002 1.7600 -94 664 0.2504 1.3972 1.7600 -94 665 0.3052 1.3968 1.7600 -94 666 0.3634 1.3980 1.7600 -94 667 0.4232 1.4023 1.7600 -94 668 0.4854 1.4083 1.7600 -94 669 0.5461 1.4210 1.7600 -94 670 0.6061 1.4400 1.7600 -94 671 0.6669 1.4618 1.7600 -94 672 0.7276 1.4815 1.7600 -94 673 0.7863 1.4962 1.7600 -94 674 0.8417 1.5056 1.7600 -94 675 0.8993 1.5074 1.7600 -94 676 0.9587 1.5026 1.7600 -94 677 1.0203 1.4957 1.7600 -94 678 1.0832 1.4834 1.7600 -94 679 1.1470 1.4693 1.7600 -94 680 1.2124 1.4540 1.7600 -94 681 1.2788 1.4365 1.7600 -94 682 1.3405 1.4201 1.7600 -94 683 1.3991 1.4086 1.7600 -94 684 1.4559 1.4047 1.7600 -94 685 1.5156 1.4054 1.7600 -94 686 1.5745 1.4084 1.7600 -94 687 1.6352 1.4152 1.7600 -94 688 1.6962 1.4245 1.7600 -94 689 1.7584 1.4375 1.7600 -94 690 1.8205 1.4499 1.7600 -94 691 1.8868 1.4654 1.7600 -94 692 1.9540 1.4787 1.7600 -94 693 2.0211 1.4870 1.7600 -94 694 2.0839 1.4930 1.7600 -94 695 2.1450 1.4934 1.7600 -94 696 2.2027 1.4920 1.7600 -94 697 2.2628 1.4850 1.7600 -94 698 2.3207 1.4726 1.7600 -94 699 2.3837 1.4592 1.7600 -94 700 2.4495 1.4462 1.7600 -94 701 2.5118 1.4336 1.7600 -94 702 2.5769 1.4216 1.7600 -94 703 2.6350 1.4141 1.7600 -94 704 2.6982 1.4096 1.7600 -94 705 2.7587 1.4079 1.7600 -94 706 2.8215 1.4098 1.7600 -94 707 2.8829 1.4146 1.7600 -94 708 2.9434 1.4243 1.7600 -94 709 3.0059 1.4409 1.7600 -94 710 3.0689 1.4579 1.7600 -94 711 3.1357 1.4732 1.7600 -94 712 3.2010 1.4837 1.7600 -94 713 3.2673 1.4906 1.7600 -94 714 3.3332 1.4906 1.7600 -94 715 3.3988 1.4898 1.7600 -94 716 3.4660 1.4838 1.7600 -94 717 3.5330 1.4739 1.7600 -94 718 3.5997 1.4652 1.7600 -94 719 3.6697 1.4562 1.7600 -94 720 3.7445 1.4465 1.7600 -94 721 3.8201 1.4418 1.7600 -94 722 3.8927 1.4440 1.7600 -94 723 3.9642 1.4516 1.7600 -94 724 4.0314 1.4587 1.7600 -94 725 4.0945 1.4693 1.7600 -94 726 4.1573 1.4827 1.7600 -94 727 4.2170 1.4992 1.7600 -94 728 4.2793 1.5203 1.7600 -94 729 4.3431 1.5429 1.7600 -94 730 4.4134 1.5651 1.7600 -94 731 4.4875 1.5845 1.7600 -94 732 4.5612 1.5989 1.7600 -94 733 4.6293 1.6091 1.7600 -94 734 4.6949 1.6134 1.7600 -94 735 4.7587 1.6176 1.7600 -94 736 4.8204 1.6172 1.7600 -94 737 4.8845 1.6160 1.7600 -94 738 4.9553 1.6119 1.7600 -94 739 5.0313 1.6080 1.7600 -94 740 5.1098 1.6108 1.7600 -94 741 5.1873 1.6199 1.7600 -94 742 5.2573 1.6355 1.7600 -94 743 5.3249 1.6505 1.7600 -94 744 5.3891 1.6664 1.7600 -94 745 5.4485 1.6815 1.7600 -94 746 5.5072 1.7002 1.7600 -94 747 5.5677 1.7225 1.7600 -94 748 5.6292 1.7453 1.7600 -94 749 5.6994 1.7675 1.7600 -94 750 5.7705 1.7881 1.7600 -94 751 5.8403 1.8050 1.7600 -94 752 5.9060 1.8153 1.7600 -95 507 -7.7825 2.0844 1.7600 -95 508 -7.7247 2.0908 1.7600 -95 509 -7.6655 2.0925 1.7600 -95 510 -7.6034 2.0899 1.7600 -95 511 -7.5405 2.0843 1.7600 -95 512 -7.4794 2.0777 1.7600 -95 513 -7.4229 2.0704 1.7600 -95 514 -7.3704 2.0627 1.7600 -95 515 -7.3172 2.0535 1.7600 -95 516 -7.2642 2.0437 1.7600 -95 517 -7.2107 2.0345 1.7600 -95 518 -7.1573 2.0268 1.7600 -95 519 -7.1035 2.0200 1.7600 -95 520 -7.0497 2.0123 1.7600 -95 521 -6.9956 2.0040 1.7600 -95 522 -6.9392 1.9965 1.7600 -95 523 -6.8825 1.9902 1.7600 -95 524 -6.8303 1.9867 1.7600 -95 525 -6.7806 1.9846 1.7600 -95 526 -6.7279 1.9834 1.7600 -95 527 -6.6732 1.9781 1.7600 -95 528 -6.6190 1.9683 1.7600 -95 529 -6.5658 1.9552 1.7600 -95 530 -6.5128 1.9395 1.7600 -95 531 -6.4595 1.9222 1.7600 -95 532 -6.4066 1.9040 1.7600 -95 533 -6.3557 1.8855 1.7600 -95 534 -6.3077 1.8677 1.7600 -95 535 -6.2627 1.8521 1.7600 -95 536 -6.2176 1.8377 1.7600 -95 537 -6.1720 1.8243 1.7600 -95 538 -6.1269 1.8135 1.7600 -95 539 -6.0791 1.8026 1.7600 -95 540 -6.0309 1.7919 1.7600 -95 541 -5.9808 1.7855 1.7600 -95 542 -5.9313 1.7798 1.7600 -95 543 -5.8809 1.7751 1.7600 -95 544 -5.8286 1.7749 1.7600 -95 545 -5.7824 1.7780 1.7600 -95 546 -5.7349 1.7819 1.7600 -95 547 -5.6831 1.7821 1.7600 -95 548 -5.6318 1.7824 1.7600 -95 549 -5.5811 1.7776 1.7600 -95 550 -5.5291 1.7685 1.7600 -95 551 -5.4804 1.7602 1.7600 -95 552 -5.4332 1.7494 1.7600 -95 553 -5.3849 1.7359 1.7600 -95 554 -5.3383 1.7216 1.7600 -95 555 -5.2940 1.7060 1.7600 -95 556 -5.2543 1.6931 1.7600 -95 557 -5.2148 1.6773 1.7600 -95 558 -5.1735 1.6621 1.7600 -95 559 -5.1288 1.6479 1.7600 -95 560 -5.0810 1.6380 1.7600 -95 561 -5.0346 1.6302 1.7600 -95 562 -4.9891 1.6235 1.7600 -95 563 -4.9425 1.6180 1.7600 -95 564 -4.8967 1.6128 1.7600 -95 565 -4.8471 1.6102 1.7600 -95 566 -4.7972 1.6080 1.7600 -95 567 -4.7450 1.6084 1.7600 -95 568 -4.6930 1.6092 1.7600 -95 569 -4.6376 1.6106 1.7600 -95 570 -4.5836 1.6094 1.7600 -95 571 -4.5253 1.6068 1.7600 -95 572 -4.4675 1.6011 1.7600 -95 573 -4.4127 1.5948 1.7600 -95 574 -4.3597 1.5866 1.7600 -95 575 -4.3059 1.5787 1.7600 -95 576 -4.2506 1.5691 1.7600 -95 577 -4.1967 1.5597 1.7600 -95 578 -4.1432 1.5486 1.7600 -95 579 -4.0866 1.5416 1.7600 -95 580 -4.0342 1.5334 1.7600 -95 581 -3.9800 1.5263 1.7600 -95 582 -3.9275 1.5201 1.7600 -95 583 -3.8717 1.5168 1.7600 -95 584 -3.8193 1.5146 1.7600 -95 585 -3.7644 1.5134 1.7600 -95 586 -3.7097 1.5133 1.7600 -95 587 -3.6574 1.5129 1.7600 -95 588 -3.6035 1.5124 1.7600 -95 589 -3.5453 1.5166 1.7600 -95 590 -3.4909 1.5218 1.7600 -95 591 -3.4331 1.5279 1.7600 -95 592 -3.3722 1.5329 1.7600 -95 593 -3.3073 1.5322 1.7600 -95 594 -3.2425 1.5296 1.7600 -95 595 -3.1805 1.5238 1.7600 -95 596 -3.1183 1.5166 1.7600 -95 597 -3.0581 1.5085 1.7600 -95 598 -2.9986 1.4988 1.7600 -95 599 -2.9381 1.4919 1.7600 -95 600 -2.8717 1.4864 1.7600 -95 601 -2.8111 1.4802 1.7600 -95 602 -2.7494 1.4761 1.7600 -95 603 -2.6856 1.4733 1.7600 -95 604 -2.6244 1.4719 1.7600 -95 605 -2.5671 1.4695 1.7600 -95 606 -2.5070 1.4704 1.7600 -95 607 -2.4473 1.4706 1.7600 -95 608 -2.3902 1.4681 1.7600 -95 609 -2.3343 1.4726 1.7600 -95 610 -2.2754 1.4774 1.7600 -95 611 -2.2124 1.4851 1.7600 -95 612 -2.1525 1.4899 1.7600 -95 613 -2.0897 1.4940 1.7600 -95 614 -2.0255 1.4973 1.7600 -95 615 -1.9626 1.4979 1.7600 -95 616 -1.9028 1.4964 1.7600 -95 617 -1.8438 1.4939 1.7600 -95 618 -1.7861 1.4904 1.7600 -95 619 -1.7276 1.4860 1.7600 -95 620 -1.6630 1.4842 1.7600 -95 621 -1.5940 1.4846 1.7600 -95 622 -1.5296 1.4858 1.7600 -95 623 -1.4613 1.4876 1.7600 -95 624 -1.3923 1.4906 1.7600 -95 625 -1.3258 1.4953 1.7600 -95 626 -1.2611 1.5001 1.7600 -95 627 -1.1957 1.5037 1.7600 -95 628 -1.1321 1.5065 1.7600 -95 629 -1.0679 1.5113 1.7600 -95 630 -1.0018 1.5192 1.7600 -95 631 -0.9386 1.5273 1.7600 -95 632 -0.8760 1.5335 1.7600 -95 633 -0.8090 1.5385 1.7600 -95 634 -0.7406 1.5402 1.7600 -95 635 -0.6758 1.5378 1.7600 -95 636 -0.6135 1.5330 1.7600 -95 637 -0.5509 1.5290 1.7600 -95 638 -0.4853 1.5222 1.7600 -95 639 -0.4198 1.5147 1.7600 -95 640 -0.3556 1.5099 1.7600 -95 641 -0.2937 1.5065 1.7600 -95 642 -0.2362 1.5054 1.7600 -95 643 -0.1729 1.5042 1.7600 -95 644 -0.1123 1.5039 1.7600 -95 645 -0.0511 1.5037 1.7600 -95 646 0.0085 1.5061 1.7600 -95 647 0.0690 1.5060 1.7600 -95 648 0.1288 1.5071 1.7600 -95 649 0.1910 1.5113 1.7600 -95 650 0.2525 1.5177 1.7600 -95 651 0.3096 1.5252 1.7600 -95 652 0.3696 1.5326 1.7600 -95 653 0.4365 1.5391 1.7600 -95 654 0.5015 1.5389 1.7600 -95 655 0.5630 1.5373 1.7600 -95 656 0.6219 1.5333 1.7600 -95 657 0.6851 1.5267 1.7600 -95 658 0.7483 1.5182 1.7600 -95 659 0.8118 1.5088 1.7600 -95 660 0.8713 1.5055 1.7600 -95 661 0.9284 1.4998 1.7600 -95 662 0.9789 1.4943 1.7600 -95 663 1.0336 1.4888 1.7600 -95 664 1.0867 1.4846 1.7600 -95 665 1.1388 1.4812 1.7600 -95 666 1.1945 1.4763 1.7600 -95 667 1.2505 1.4718 1.7600 -95 668 1.3088 1.4671 1.7600 -95 669 1.3656 1.4642 1.7600 -95 670 1.4226 1.4634 1.7600 -95 671 1.4794 1.4646 1.7600 -95 672 1.5421 1.4610 1.7600 -95 673 1.6009 1.4609 1.7600 -95 674 1.6590 1.4560 1.7600 -95 675 1.7208 1.4506 1.7600 -95 676 1.7810 1.4412 1.7600 -95 677 1.8396 1.4316 1.7600 -95 678 1.8922 1.4260 1.7600 -95 679 1.9512 1.4133 1.7600 -95 680 2.0123 1.4014 1.7600 -95 681 2.0712 1.3914 1.7600 -95 682 2.1306 1.3835 1.7600 -95 683 2.1899 1.3773 1.7600 -95 684 2.2540 1.3699 1.7600 -95 685 2.3182 1.3675 1.7600 -95 686 2.3795 1.3665 1.7600 -95 687 2.4414 1.3686 1.7600 -95 688 2.4999 1.3694 1.7600 -95 689 2.5591 1.3755 1.7600 -95 690 2.6160 1.3792 1.7600 -95 691 2.6790 1.3880 1.7600 -95 692 2.7393 1.3960 1.7600 -95 693 2.7996 1.4026 1.7600 -95 694 2.8633 1.4102 1.7600 -95 695 2.9273 1.4128 1.7600 -95 696 2.9902 1.4125 1.7600 -95 697 3.0523 1.4151 1.7600 -95 698 3.1159 1.4148 1.7600 -95 699 3.1794 1.4145 1.7600 -95 700 3.2461 1.4134 1.7600 -95 701 3.3139 1.4141 1.7600 -95 702 3.3841 1.4156 1.7600 -95 703 3.4542 1.4176 1.7600 -95 704 3.5259 1.4232 1.7600 -95 705 3.5982 1.4302 1.7600 -95 706 3.6648 1.4386 1.7600 -95 707 3.7296 1.4484 1.7600 -95 708 3.7918 1.4555 1.7600 -95 709 3.8531 1.4631 1.7600 -95 710 3.9138 1.4751 1.7600 -95 711 3.9807 1.4909 1.7600 -95 712 4.0453 1.5053 1.7600 -95 713 4.1162 1.5203 1.7600 -95 714 4.1845 1.5339 1.7600 -95 715 4.2528 1.5428 1.7600 -95 716 4.3186 1.5501 1.7600 -95 717 4.3806 1.5544 1.7600 -95 718 4.4384 1.5561 1.7600 -95 719 4.4963 1.5590 1.7600 -95 720 4.5593 1.5624 1.7600 -95 721 4.6301 1.5671 1.7600 -95 722 4.7022 1.5758 1.7600 -95 723 4.7763 1.5840 1.7600 -95 724 4.8500 1.5930 1.7600 -95 725 4.9168 1.6032 1.7600 -95 726 4.9793 1.6133 1.7600 -95 727 5.0378 1.6246 1.7600 -95 728 5.0969 1.6351 1.7600 -95 729 5.1578 1.6460 1.7600 -95 730 5.2230 1.6590 1.7600 -95 731 5.2922 1.6732 1.7600 -95 732 5.3676 1.6884 1.7600 -95 733 5.4449 1.7013 1.7600 -95 734 5.5222 1.7093 1.7600 -95 735 5.5922 1.7140 1.7600 -95 736 5.6551 1.7171 1.7600 -95 737 5.7200 1.7201 1.7600 -95 738 5.7770 1.7227 1.7600 -95 739 5.8435 1.7250 1.7600 -95 740 5.9218 1.7298 1.7600 -96 530 -7.7787 0.8192 1.7600 -96 531 -7.7092 0.8122 1.7600 -96 532 -7.6436 0.8049 1.7600 -96 533 -7.5824 0.7933 1.7600 -96 534 -7.5258 0.7726 1.7600 -96 535 -7.4702 0.7435 1.7600 -96 536 -7.4128 0.7093 1.7600 -96 537 -7.3524 0.6749 1.7600 -96 538 -7.2889 0.6420 1.7600 -96 539 -7.2258 0.6076 1.7600 -96 540 -7.1659 0.5700 1.7600 -96 541 -7.1113 0.5291 1.7600 -96 542 -7.0599 0.4900 1.7600 -96 543 -7.0097 0.4570 1.7600 -96 544 -6.9578 0.4312 1.7600 -96 545 -6.9099 0.4128 1.7600 -96 546 -6.8552 0.4010 1.7600 -96 547 -6.7985 0.3879 1.7600 -96 548 -6.7368 0.3794 1.7600 -96 549 -6.6691 0.3768 1.7600 -96 550 -6.6009 0.3838 1.7600 -96 551 -6.5317 0.3900 1.7600 -96 552 -6.4690 0.3969 1.7600 -96 553 -6.4074 0.3938 1.7600 -96 554 -6.3477 0.3815 1.7600 -96 555 -6.2903 0.3620 1.7600 -96 556 -6.2306 0.3414 1.7600 -96 557 -6.1687 0.3234 1.7600 -96 558 -6.1061 0.3062 1.7600 -96 559 -6.0408 0.2888 1.7600 -96 560 -5.9768 0.2679 1.7600 -96 561 -5.9190 0.2502 1.7600 -96 562 -5.8673 0.2390 1.7600 -96 563 -5.8286 0.2367 1.7600 -96 564 -5.7964 0.2440 1.7600 -96 565 -5.7636 0.2560 1.7600 -96 566 -5.7270 0.2678 1.7600 -96 567 -5.6897 0.2782 1.7600 -96 568 -5.6479 0.2861 1.7600 -96 569 -5.6034 0.2932 1.7600 -96 570 -5.5566 0.3023 1.7600 -96 571 -5.5109 0.3122 1.7600 -96 572 -5.4677 0.3193 1.7600 -96 573 -5.4253 0.3185 1.7600 -96 574 -5.3790 0.3156 1.7600 -96 575 -5.3289 0.3043 1.7600 -96 576 -5.2816 0.2918 1.7600 -96 577 -5.2335 0.2769 1.7600 -96 578 -5.1856 0.2569 1.7600 -96 579 -5.1366 0.2275 1.7600 -96 580 -5.0878 0.1930 1.7600 -96 581 -5.0407 0.1562 1.7600 -96 582 -4.9972 0.1289 1.7600 -96 583 -4.9550 0.1123 1.7600 -96 584 -4.9142 0.1081 1.7600 -96 585 -4.8742 0.1084 1.7600 -96 586 -4.8344 0.1168 1.7600 -96 587 -4.7943 0.1314 1.7600 -96 588 -4.7541 0.1556 1.7600 -96 589 -4.7098 0.1856 1.7600 -96 590 -4.6645 0.2199 1.7600 -96 591 -4.6184 0.2567 1.7600 -96 592 -4.5721 0.2898 1.7600 -96 593 -4.5260 0.3162 1.7600 -96 594 -4.4812 0.3399 1.7600 -96 595 -4.4301 0.3627 1.7600 -96 596 -4.3691 0.3762 1.7600 -96 597 -4.3074 0.3829 1.7600 -96 598 -4.2423 0.3821 1.7600 -96 599 -4.1732 0.3717 1.7600 -96 600 -4.1058 0.3530 1.7600 -96 601 -4.0339 0.3292 1.7600 -96 602 -3.9624 0.3029 1.7600 -96 603 -3.8973 0.2784 1.7600 -96 604 -3.8376 0.2671 1.7600 -96 605 -3.7798 0.2683 1.7600 -96 606 -3.7226 0.2766 1.7600 -96 607 -3.6685 0.2921 1.7600 -96 608 -3.6137 0.3101 1.7600 -96 609 -3.5628 0.3338 1.7600 -96 610 -3.5089 0.3621 1.7600 -96 611 -3.4525 0.3944 1.7600 -96 612 -3.3877 0.4245 1.7600 -96 613 -3.3344 0.4481 1.7600 -96 614 -3.2802 0.4558 1.7600 -96 615 -3.2274 0.4532 1.7600 -96 616 -3.1769 0.4431 1.7600 -96 617 -3.1263 0.4282 1.7600 -96 618 -3.0762 0.4130 1.7600 -96 619 -3.0267 0.3977 1.7600 -96 620 -2.9758 0.3763 1.7600 -96 621 -2.9202 0.3481 1.7600 -96 622 -2.8604 0.3217 1.7600 -96 623 -2.8113 0.3085 1.7600 -96 624 -2.7638 0.3097 1.7600 -96 625 -2.7171 0.3174 1.7600 -96 626 -2.6717 0.3320 1.7600 -96 627 -2.6267 0.3489 1.7600 -96 628 -2.5807 0.3677 1.7600 -96 629 -2.5276 0.3881 1.7600 -96 630 -2.4711 0.4140 1.7600 -96 631 -2.4041 0.4421 1.7600 -96 632 -2.3332 0.4643 1.7600 -96 633 -2.2663 0.4759 1.7600 -96 634 -2.1998 0.4771 1.7600 -96 635 -2.1347 0.4675 1.7600 -96 636 -2.0766 0.4570 1.7600 -96 637 -2.0180 0.4444 1.7600 -96 638 -1.9610 0.4277 1.7600 -96 639 -1.9053 0.4008 1.7600 -96 640 -1.8448 0.3703 1.7600 -96 641 -1.7827 0.3383 1.7600 -96 642 -1.7251 0.3129 1.7600 -96 643 -1.6700 0.2975 1.7600 -96 644 -1.6200 0.2953 1.7600 -96 645 -1.5718 0.2992 1.7600 -96 646 -1.5185 0.3104 1.7600 -96 647 -1.4617 0.3235 1.7600 -96 648 -1.4002 0.3416 1.7600 -96 649 -1.3292 0.3656 1.7600 -96 650 -1.2566 0.3906 1.7600 -96 651 -1.1869 0.4106 1.7600 -96 652 -1.1239 0.4209 1.7600 -96 653 -1.0625 0.4211 1.7600 -96 654 -1.0031 0.4119 1.7600 -96 655 -0.9493 0.3992 1.7600 -96 656 -0.8968 0.3833 1.7600 -96 657 -0.8437 0.3701 1.7600 -96 658 -0.7864 0.3550 1.7600 -96 659 -0.7253 0.3346 1.7600 -96 660 -0.6625 0.3141 1.7600 -96 661 -0.6062 0.3030 1.7600 -96 662 -0.5522 0.3026 1.7600 -96 663 -0.4955 0.3095 1.7600 -96 664 -0.4320 0.3233 1.7600 -96 665 -0.3631 0.3480 1.7600 -96 666 -0.2888 0.3775 1.7600 -96 667 -0.2122 0.4090 1.7600 -96 668 -0.1353 0.4385 1.7600 -96 669 -0.0593 0.4661 1.7600 -96 670 0.0133 0.4842 1.7600 -96 671 0.0813 0.4917 1.7600 -96 672 0.1511 0.4884 1.7600 -96 673 0.2174 0.4795 1.7600 -96 674 0.2844 0.4654 1.7600 -96 675 0.3499 0.4513 1.7600 -96 676 0.4152 0.4306 1.7600 -96 677 0.4792 0.4048 1.7600 -96 678 0.5454 0.3782 1.7600 -96 679 0.6082 0.3485 1.7600 -96 680 0.6673 0.3279 1.7600 -96 681 0.7239 0.3180 1.7600 -96 682 0.7794 0.3163 1.7600 -96 683 0.8344 0.3214 1.7600 -96 684 0.8865 0.3321 1.7600 -96 685 0.9405 0.3490 1.7600 -96 686 0.9989 0.3738 1.7600 -96 687 1.0595 0.4025 1.7600 -96 688 1.1230 0.4324 1.7600 -96 689 1.1817 0.4602 1.7600 -96 690 1.2375 0.4759 1.7600 -96 691 1.2929 0.4831 1.7600 -96 692 1.3445 0.4853 1.7600 -96 693 1.3978 0.4872 1.7600 -96 694 1.4456 0.4877 1.7600 -96 695 1.4942 0.4824 1.7600 -96 696 1.5440 0.4706 1.7600 -96 697 1.5968 0.4552 1.7600 -96 698 1.6541 0.4357 1.7600 -96 699 1.7093 0.4185 1.7600 -96 700 1.7600 0.4081 1.7600 -96 701 1.8062 0.4080 1.7600 -96 702 1.8504 0.4162 1.7600 -96 703 1.8947 0.4259 1.7600 -96 704 1.9445 0.4404 1.7600 -96 705 1.9940 0.4577 1.7600 -96 706 2.0492 0.4807 1.7600 -96 707 2.1053 0.5064 1.7600 -96 708 2.1627 0.5265 1.7600 -96 709 2.2146 0.5355 1.7600 -96 710 2.2667 0.5355 1.7600 -96 711 2.3199 0.5273 1.7600 -96 712 2.3716 0.5172 1.7600 -96 713 2.4216 0.5026 1.7600 -96 714 2.4681 0.4814 1.7600 -96 715 2.5150 0.4550 1.7600 -96 716 2.5656 0.4237 1.7600 -96 717 2.6201 0.3887 1.7600 -96 718 2.6765 0.3558 1.7600 -96 719 2.7245 0.3338 1.7600 -96 720 2.7730 0.3203 1.7600 -96 721 2.8203 0.3149 1.7600 -96 722 2.8649 0.3128 1.7600 -96 723 2.9121 0.3184 1.7600 -96 724 2.9601 0.3296 1.7600 -96 725 3.0166 0.3499 1.7600 -96 726 3.0822 0.3707 1.7600 -96 727 3.1524 0.3876 1.7600 -96 728 3.2200 0.3992 1.7600 -96 729 3.2844 0.4069 1.7600 -96 730 3.3459 0.4050 1.7600 -96 731 3.4033 0.3963 1.7600 -96 732 3.4591 0.3837 1.7600 -96 733 3.5126 0.3711 1.7600 -96 734 3.5640 0.3535 1.7600 -96 735 3.6118 0.3315 1.7600 -96 736 3.6639 0.3040 1.7600 -96 737 3.7084 0.2812 1.7600 -96 738 3.7543 0.2656 1.7600 -96 739 3.8036 0.2598 1.7600 -96 740 3.8550 0.2621 1.7600 -96 741 3.9021 0.2697 1.7600 -96 742 3.9524 0.2821 1.7600 -96 743 4.0064 0.3019 1.7600 -96 744 4.0657 0.3215 1.7600 -96 745 4.1338 0.3414 1.7600 -96 746 4.2018 0.3546 1.7600 -96 747 4.2669 0.3573 1.7600 -96 748 4.3286 0.3471 1.7600 -96 749 4.3843 0.3317 1.7600 -96 750 4.4387 0.3108 1.7600 -96 751 4.4885 0.2883 1.7600 -96 752 4.5366 0.2614 1.7600 -96 753 4.5861 0.2280 1.7600 -96 754 4.6356 0.1875 1.7600 -96 755 4.6897 0.1444 1.7600 -96 756 4.7423 0.1064 1.7600 -96 757 4.7945 0.0791 1.7600 -96 758 4.8486 0.0611 1.7600 -96 759 4.9008 0.0505 1.7600 -96 760 4.9481 0.0449 1.7600 -96 761 4.9949 0.0433 1.7600 -96 762 5.0431 0.0497 1.7600 -96 763 5.0912 0.0582 1.7600 -96 764 5.1436 0.0672 1.7600 -96 765 5.2017 0.0741 1.7600 -96 766 5.2568 0.0766 1.7600 -96 767 5.3093 0.0718 1.7600 -96 768 5.3627 0.0594 1.7600 -96 769 5.4114 0.0428 1.7600 -96 770 5.4617 0.0264 1.7600 -96 771 5.5148 0.0037 1.7600 -96 772 5.5712 -0.0268 1.7600 -96 773 5.6347 -0.0666 1.7600 -96 774 5.7041 -0.1170 1.7600 -96 775 5.7697 -0.1681 1.7600 -96 776 5.8317 -0.2079 1.7600 -96 777 5.8950 -0.2250 1.7600 -96 778 5.9592 -0.2271 1.7600 -97 542 -7.7583 0.8297 1.7600 -97 543 -7.6836 0.8363 1.7600 -97 544 -7.6093 0.8484 1.7600 -97 545 -7.5401 0.8593 1.7600 -97 546 -7.4761 0.8660 1.7600 -97 547 -7.4138 0.8644 1.7600 -97 548 -7.3491 0.8545 1.7600 -97 549 -7.2690 0.8391 1.7600 -97 550 -7.1911 0.8223 1.7600 -97 551 -7.1190 0.8022 1.7600 -97 552 -7.0399 0.7799 1.7600 -97 553 -6.9654 0.7570 1.7600 -97 554 -6.9006 0.7410 1.7600 -97 555 -6.8419 0.7322 1.7600 -97 556 -6.7805 0.7300 1.7600 -97 557 -6.7131 0.7328 1.7600 -97 558 -6.6444 0.7305 1.7600 -97 559 -6.5733 0.7290 1.7600 -97 560 -6.5021 0.7270 1.7600 -97 561 -6.4302 0.7318 1.7600 -97 562 -6.3552 0.7396 1.7600 -97 563 -6.2876 0.7478 1.7600 -97 564 -6.2243 0.7466 1.7600 -97 565 -6.1606 0.7337 1.7600 -97 566 -6.0923 0.7150 1.7600 -97 567 -6.0197 0.6943 1.7600 -97 568 -5.9434 0.6805 1.7600 -97 569 -5.8708 0.6690 1.7600 -97 570 -5.8002 0.6610 1.7600 -97 571 -5.7305 0.6479 1.7600 -97 572 -5.6697 0.6323 1.7600 -97 573 -5.6248 0.6207 1.7600 -97 574 -5.5781 0.6117 1.7600 -97 575 -5.5254 0.6110 1.7600 -97 576 -5.4717 0.6130 1.7600 -97 577 -5.4202 0.6177 1.7600 -97 578 -5.3689 0.6278 1.7600 -97 579 -5.3145 0.6366 1.7600 -97 580 -5.2590 0.6494 1.7600 -97 581 -5.2036 0.6622 1.7600 -97 582 -5.1524 0.6753 1.7600 -97 583 -5.1023 0.6837 1.7600 -97 584 -5.0502 0.6892 1.7600 -97 585 -4.9975 0.6894 1.7600 -97 586 -4.9425 0.6893 1.7600 -97 587 -4.8896 0.6894 1.7600 -97 588 -4.8345 0.6892 1.7600 -97 589 -4.7772 0.6866 1.7600 -97 590 -4.7206 0.6757 1.7600 -97 591 -4.6630 0.6595 1.7600 -97 592 -4.6121 0.6454 1.7600 -97 593 -4.5652 0.6319 1.7600 -97 594 -4.5140 0.6196 1.7600 -97 595 -4.4654 0.6131 1.7600 -97 596 -4.4143 0.6086 1.7600 -97 597 -4.3645 0.6145 1.7600 -97 598 -4.3165 0.6337 1.7600 -97 599 -4.2648 0.6641 1.7600 -97 600 -4.2120 0.6992 1.7600 -97 601 -4.1578 0.7353 1.7600 -97 602 -4.1191 0.7672 1.7600 -97 603 -4.0834 0.7897 1.7600 -97 604 -4.0376 0.8083 1.7600 -97 605 -3.9883 0.8232 1.7600 -97 606 -3.9368 0.8378 1.7600 -97 607 -3.8845 0.8522 1.7600 -97 608 -3.8302 0.8603 1.7600 -97 609 -3.7712 0.8613 1.7600 -97 610 -3.7094 0.8575 1.7600 -97 611 -3.6470 0.8525 1.7600 -97 612 -3.5920 0.8492 1.7600 -97 613 -3.5294 0.8489 1.7600 -97 614 -3.4627 0.8536 1.7600 -97 615 -3.4030 0.8624 1.7600 -97 616 -3.3514 0.8760 1.7600 -97 617 -3.3039 0.8871 1.7600 -97 618 -3.2559 0.9030 1.7600 -97 619 -3.1968 0.9229 1.7600 -97 620 -3.1261 0.9436 1.7600 -97 621 -3.0538 0.9564 1.7600 -97 622 -2.9923 0.9606 1.7600 -97 623 -2.9292 0.9598 1.7600 -97 624 -2.8636 0.9591 1.7600 -97 625 -2.8006 0.9563 1.7600 -97 626 -2.7398 0.9528 1.7600 -97 627 -2.6763 0.9455 1.7600 -97 628 -2.6153 0.9356 1.7600 -97 629 -2.5476 0.9164 1.7600 -97 630 -2.4818 0.9003 1.7600 -97 631 -2.4161 0.8880 1.7600 -97 632 -2.3469 0.8823 1.7600 -97 633 -2.2795 0.8798 1.7600 -97 634 -2.2174 0.8788 1.7600 -97 635 -2.1590 0.8793 1.7600 -97 636 -2.1032 0.8852 1.7600 -97 637 -2.0455 0.9000 1.7600 -97 638 -1.9790 0.9247 1.7600 -97 639 -1.9039 0.9502 1.7600 -97 640 -1.8310 0.9722 1.7600 -97 641 -1.7633 0.9853 1.7600 -97 642 -1.6968 0.9895 1.7600 -97 643 -1.6311 0.9875 1.7600 -97 644 -1.5683 0.9802 1.7600 -97 645 -1.5056 0.9777 1.7600 -97 646 -1.4459 0.9698 1.7600 -97 647 -1.3785 0.9571 1.7600 -97 648 -1.3096 0.9368 1.7600 -97 649 -1.2423 0.9153 1.7600 -97 650 -1.1792 0.8996 1.7600 -97 651 -1.1127 0.8926 1.7600 -97 652 -1.0513 0.8902 1.7600 -97 653 -0.9925 0.8892 1.7600 -97 654 -0.9347 0.8890 1.7600 -97 655 -0.8735 0.8929 1.7600 -97 656 -0.8152 0.9023 1.7600 -97 657 -0.7511 0.9209 1.7600 -97 658 -0.6899 0.9415 1.7600 -97 659 -0.6339 0.9562 1.7600 -97 660 -0.5772 0.9589 1.7600 -97 661 -0.5110 0.9542 1.7600 -97 662 -0.4412 0.9458 1.7600 -97 663 -0.3661 0.9361 1.7600 -97 664 -0.2890 0.9280 1.7600 -97 665 -0.2074 0.9218 1.7600 -97 666 -0.1217 0.9155 1.7600 -97 667 -0.0437 0.9059 1.7600 -97 668 0.0106 0.8972 1.7600 -97 669 0.0617 0.8938 1.7600 -97 670 0.1117 0.8965 1.7600 -97 671 0.1622 0.9047 1.7600 -97 672 0.2119 0.9122 1.7600 -97 673 0.2619 0.9180 1.7600 -97 674 0.3166 0.9257 1.7600 -97 675 0.3735 0.9363 1.7600 -97 676 0.4319 0.9542 1.7600 -97 677 0.4886 0.9747 1.7600 -97 678 0.5397 0.9898 1.7600 -97 679 0.5949 0.9989 1.7600 -97 680 0.6548 0.9974 1.7600 -97 681 0.7213 0.9879 1.7600 -97 682 0.7861 0.9764 1.7600 -97 683 0.8516 0.9653 1.7600 -97 684 0.9199 0.9571 1.7600 -97 685 0.9895 0.9513 1.7600 -97 686 1.0562 0.9426 1.7600 -97 687 1.1177 0.9321 1.7600 -97 688 1.1722 0.9259 1.7600 -97 689 1.2353 0.9230 1.7600 -97 690 1.3025 0.9265 1.7600 -97 691 1.3689 0.9327 1.7600 -97 692 1.4301 0.9375 1.7600 -97 693 1.4923 0.9434 1.7600 -97 694 1.5566 0.9556 1.7600 -97 695 1.6227 0.9703 1.7600 -97 696 1.6867 0.9810 1.7600 -97 697 1.7481 0.9867 1.7600 -97 698 1.8072 0.9884 1.7600 -97 699 1.8669 0.9842 1.7600 -97 700 1.9315 0.9725 1.7600 -97 701 1.9908 0.9587 1.7600 -97 702 2.0521 0.9460 1.7600 -97 703 2.1082 0.9368 1.7600 -97 704 2.1652 0.9244 1.7600 -97 705 2.2248 0.9072 1.7600 -97 706 2.2829 0.8861 1.7600 -97 707 2.3440 0.8687 1.7600 -97 708 2.4031 0.8582 1.7600 -97 709 2.4711 0.8529 1.7600 -97 710 2.5346 0.8488 1.7600 -97 711 2.5888 0.8477 1.7600 -97 712 2.6416 0.8486 1.7600 -97 713 2.6941 0.8559 1.7600 -97 714 2.7501 0.8695 1.7600 -97 715 2.8134 0.8873 1.7600 -97 716 2.8773 0.9029 1.7600 -97 717 2.9369 0.9155 1.7600 -97 718 2.9901 0.9214 1.7600 -97 719 3.0488 0.9213 1.7600 -97 720 3.1122 0.9125 1.7600 -97 721 3.1715 0.8967 1.7600 -97 722 3.2282 0.8806 1.7600 -97 723 3.2812 0.8686 1.7600 -97 724 3.3298 0.8616 1.7600 -97 725 3.3786 0.8559 1.7600 -97 726 3.4287 0.8465 1.7600 -97 727 3.4778 0.8328 1.7600 -97 728 3.5291 0.8265 1.7600 -97 729 3.5864 0.8254 1.7600 -97 730 3.6507 0.8297 1.7600 -97 731 3.7124 0.8322 1.7600 -97 732 3.7687 0.8314 1.7600 -97 733 3.8223 0.8315 1.7600 -97 734 3.8743 0.8316 1.7600 -97 735 3.9299 0.8315 1.7600 -97 736 3.9893 0.8328 1.7600 -97 737 4.0499 0.8369 1.7600 -97 738 4.0970 0.8449 1.7600 -97 739 4.1440 0.8478 1.7600 -97 740 4.2045 0.8416 1.7600 -97 741 4.2667 0.8232 1.7600 -97 742 4.3230 0.8009 1.7600 -97 743 4.3765 0.7816 1.7600 -97 744 4.4314 0.7638 1.7600 -97 745 4.4828 0.7412 1.7600 -97 746 4.5351 0.7125 1.7600 -97 747 4.5908 0.6809 1.7600 -97 748 4.6394 0.6581 1.7600 -97 749 4.6903 0.6378 1.7600 -97 750 4.7516 0.6212 1.7600 -97 751 4.8144 0.6068 1.7600 -97 752 4.8722 0.5943 1.7600 -97 753 4.9265 0.5850 1.7600 -97 754 4.9821 0.5846 1.7600 -97 755 5.0421 0.5914 1.7600 -97 756 5.1101 0.5968 1.7600 -97 757 5.1857 0.5965 1.7600 -97 758 5.2553 0.5959 1.7600 -97 759 5.3193 0.5903 1.7600 -97 760 5.3871 0.5768 1.7600 -97 761 5.4532 0.5565 1.7600 -97 762 5.5116 0.5386 1.7600 -97 763 5.5640 0.5275 1.7600 -97 764 5.6178 0.5189 1.7600 -97 765 5.6729 0.5066 1.7600 -97 766 5.7332 0.4855 1.7600 -97 767 5.8025 0.4585 1.7600 -97 768 5.8678 0.4400 1.7600 -97 769 5.9326 0.4313 1.7600 -98 538 -7.8345 1.5830 1.7600 -98 539 -7.7917 1.5709 1.7600 -98 540 -7.7455 1.5544 1.7600 -98 541 -7.6958 1.5344 1.7600 -98 542 -7.6413 1.5116 1.7600 -98 543 -7.5865 1.4866 1.7600 -98 544 -7.5359 1.4614 1.7600 -98 545 -7.4927 1.4368 1.7600 -98 546 -7.4493 1.4135 1.7600 -98 547 -7.4032 1.3919 1.7600 -98 548 -7.3574 1.3721 1.7600 -98 549 -7.3047 1.3510 1.7600 -98 550 -7.2544 1.3343 1.7600 -98 551 -7.2025 1.3210 1.7600 -98 552 -7.1442 1.3055 1.7600 -98 553 -7.0863 1.2901 1.7600 -98 554 -7.0283 1.2816 1.7600 -98 555 -6.9763 1.2744 1.7600 -98 556 -6.9255 1.2668 1.7600 -98 557 -6.8740 1.2585 1.7600 -98 558 -6.8221 1.2471 1.7600 -98 559 -6.7719 1.2328 1.7600 -98 560 -6.7222 1.2164 1.7600 -98 561 -6.6701 1.1993 1.7600 -98 562 -6.6166 1.1804 1.7600 -98 563 -6.5615 1.1621 1.7600 -98 564 -6.5127 1.1466 1.7600 -98 565 -6.4629 1.1298 1.7600 -98 566 -6.4147 1.1117 1.7600 -98 567 -6.3655 1.0952 1.7600 -98 568 -6.3161 1.0805 1.7600 -98 569 -6.2672 1.0678 1.7600 -98 570 -6.2178 1.0604 1.7600 -98 571 -6.1668 1.0535 1.7600 -98 572 -6.1127 1.0501 1.7600 -98 573 -6.0634 1.0494 1.7600 -98 574 -6.0152 1.0475 1.7600 -98 575 -5.9671 1.0458 1.7600 -98 576 -5.9232 1.0450 1.7600 -98 577 -5.8800 1.0409 1.7600 -98 578 -5.8351 1.0337 1.7600 -98 579 -5.7920 1.0262 1.7600 -98 580 -5.7458 1.0157 1.7600 -98 581 -5.6971 1.0059 1.7600 -98 582 -5.6535 0.9912 1.7600 -98 583 -5.6181 0.9744 1.7600 -98 584 -5.5826 0.9584 1.7600 -98 585 -5.5459 0.9436 1.7600 -98 586 -5.5080 0.9334 1.7600 -98 587 -5.4680 0.9257 1.7600 -98 588 -5.4261 0.9197 1.7600 -98 589 -5.3821 0.9173 1.7600 -98 590 -5.3372 0.9217 1.7600 -98 591 -5.2920 0.9277 1.7600 -98 592 -5.2478 0.9367 1.7600 -98 593 -5.2069 0.9457 1.7600 -98 594 -5.1653 0.9535 1.7600 -98 595 -5.1268 0.9601 1.7600 -98 596 -5.0868 0.9621 1.7600 -98 597 -5.0473 0.9631 1.7600 -98 598 -5.0071 0.9610 1.7600 -98 599 -4.9658 0.9576 1.7600 -98 600 -4.9252 0.9503 1.7600 -98 601 -4.8857 0.9390 1.7600 -98 602 -4.8437 0.9252 1.7600 -98 603 -4.8036 0.9105 1.7600 -98 604 -4.7610 0.8973 1.7600 -98 605 -4.7193 0.8857 1.7600 -98 606 -4.6740 0.8748 1.7600 -98 607 -4.6273 0.8703 1.7600 -98 608 -4.5802 0.8684 1.7600 -98 609 -4.5333 0.8696 1.7600 -98 610 -4.4853 0.8716 1.7600 -98 611 -4.4383 0.8789 1.7600 -98 612 -4.3888 0.8876 1.7600 -98 613 -4.3456 0.8965 1.7600 -98 614 -4.2990 0.9048 1.7600 -98 615 -4.2531 0.9098 1.7600 -98 616 -4.2048 0.9126 1.7600 -98 617 -4.1561 0.9145 1.7600 -98 618 -4.1144 0.9139 1.7600 -98 619 -4.0715 0.9137 1.7600 -98 620 -4.0283 0.9147 1.7600 -98 621 -3.9780 0.9123 1.7600 -98 622 -3.9272 0.9063 1.7600 -98 623 -3.8779 0.8986 1.7600 -98 624 -3.8296 0.8898 1.7600 -98 625 -3.7810 0.8816 1.7600 -98 626 -3.7316 0.8759 1.7600 -98 627 -3.6796 0.8719 1.7600 -98 628 -3.6233 0.8663 1.7600 -98 629 -3.5643 0.8582 1.7600 -98 630 -3.4954 0.8522 1.7600 -98 631 -3.4258 0.8470 1.7600 -98 632 -3.3625 0.8426 1.7600 -98 633 -3.3011 0.8338 1.7600 -98 634 -3.2411 0.8233 1.7600 -98 635 -3.1821 0.8098 1.7600 -98 636 -3.1253 0.7928 1.7600 -98 637 -3.0639 0.7785 1.7600 -98 638 -3.0026 0.7619 1.7600 -98 639 -2.9412 0.7453 1.7600 -98 640 -2.8793 0.7303 1.7600 -98 641 -2.8171 0.7201 1.7600 -98 642 -2.7582 0.7162 1.7600 -98 643 -2.6965 0.7201 1.7600 -98 644 -2.6357 0.7228 1.7600 -98 645 -2.5754 0.7291 1.7600 -98 646 -2.5124 0.7358 1.7600 -98 647 -2.4450 0.7415 1.7600 -98 648 -2.3841 0.7461 1.7600 -98 649 -2.3223 0.7498 1.7600 -98 650 -2.2626 0.7490 1.7600 -98 651 -2.2063 0.7453 1.7600 -98 652 -2.1472 0.7392 1.7600 -98 653 -2.0927 0.7330 1.7600 -98 654 -2.0346 0.7251 1.7600 -98 655 -1.9689 0.7176 1.7600 -98 656 -1.9005 0.7094 1.7600 -98 657 -1.8362 0.7034 1.7600 -98 658 -1.7714 0.7029 1.7600 -98 659 -1.7053 0.7079 1.7600 -98 660 -1.6429 0.7152 1.7600 -98 661 -1.5841 0.7242 1.7600 -98 662 -1.5201 0.7340 1.7600 -98 663 -1.4550 0.7449 1.7600 -98 664 -1.3843 0.7564 1.7600 -98 665 -1.3149 0.7656 1.7600 -98 666 -1.2472 0.7748 1.7600 -98 667 -1.1788 0.7822 1.7600 -98 668 -1.1111 0.7876 1.7600 -98 669 -1.0382 0.7939 1.7600 -98 670 -0.9705 0.7995 1.7600 -98 671 -0.9056 0.8033 1.7600 -98 672 -0.8417 0.8038 1.7600 -98 673 -0.7761 0.8028 1.7600 -98 674 -0.7101 0.8049 1.7600 -98 675 -0.6489 0.8090 1.7600 -98 676 -0.5869 0.8189 1.7600 -98 677 -0.5263 0.8285 1.7600 -98 678 -0.4669 0.8357 1.7600 -98 679 -0.4090 0.8388 1.7600 -98 680 -0.3487 0.8404 1.7600 -98 681 -0.2848 0.8419 1.7600 -98 682 -0.2207 0.8420 1.7600 -98 683 -0.1632 0.8416 1.7600 -98 684 -0.1038 0.8410 1.7600 -98 685 -0.0437 0.8360 1.7600 -98 686 0.0139 0.8280 1.7600 -98 687 0.0724 0.8184 1.7600 -98 688 0.1336 0.8078 1.7600 -98 689 0.1900 0.7978 1.7600 -98 690 0.2485 0.7881 1.7600 -98 691 0.3061 0.7784 1.7600 -98 692 0.3603 0.7715 1.7600 -98 693 0.4129 0.7648 1.7600 -98 694 0.4743 0.7570 1.7600 -98 695 0.5356 0.7554 1.7600 -98 696 0.5963 0.7549 1.7600 -98 697 0.6609 0.7564 1.7600 -98 698 0.7266 0.7584 1.7600 -98 699 0.7931 0.7617 1.7600 -98 700 0.8589 0.7651 1.7600 -98 701 0.9197 0.7666 1.7600 -98 702 0.9788 0.7650 1.7600 -98 703 1.0365 0.7622 1.7600 -98 704 1.0933 0.7576 1.7600 -98 705 1.1487 0.7516 1.7600 -98 706 1.2057 0.7437 1.7600 -98 707 1.2637 0.7362 1.7600 -98 708 1.3250 0.7276 1.7600 -98 709 1.3874 0.7198 1.7600 -98 710 1.4440 0.7097 1.7600 -98 711 1.5024 0.7032 1.7600 -98 712 1.5606 0.6984 1.7600 -98 713 1.6198 0.6968 1.7600 -98 714 1.6769 0.6980 1.7600 -98 715 1.7310 0.7025 1.7600 -98 716 1.7852 0.7057 1.7600 -98 717 1.8406 0.7125 1.7600 -98 718 1.8953 0.7201 1.7600 -98 719 1.9525 0.7311 1.7600 -98 720 2.0025 0.7384 1.7600 -98 721 2.0501 0.7462 1.7600 -98 722 2.0970 0.7494 1.7600 -98 723 2.1448 0.7509 1.7600 -98 724 2.1922 0.7483 1.7600 -98 725 2.2397 0.7422 1.7600 -98 726 2.2881 0.7362 1.7600 -98 727 2.3402 0.7286 1.7600 -98 728 2.3952 0.7170 1.7600 -98 729 2.4541 0.7043 1.7600 -98 730 2.5115 0.6944 1.7600 -98 731 2.5720 0.6889 1.7600 -98 732 2.6321 0.6898 1.7600 -98 733 2.6914 0.6959 1.7600 -98 734 2.7508 0.7047 1.7600 -98 735 2.8083 0.7150 1.7600 -98 736 2.8645 0.7289 1.7600 -98 737 2.9247 0.7407 1.7600 -98 738 2.9857 0.7518 1.7600 -98 739 3.0449 0.7604 1.7600 -98 740 3.1064 0.7684 1.7600 -98 741 3.1658 0.7718 1.7600 -98 742 3.2249 0.7719 1.7600 -98 743 3.2834 0.7702 1.7600 -98 744 3.3425 0.7652 1.7600 -98 745 3.4031 0.7590 1.7600 -98 746 3.4712 0.7511 1.7600 -98 747 3.5390 0.7432 1.7600 -98 748 3.6055 0.7367 1.7600 -98 749 3.6740 0.7356 1.7600 -98 750 3.7372 0.7359 1.7600 -98 751 3.8001 0.7396 1.7600 -98 752 3.8619 0.7438 1.7600 -98 753 3.9254 0.7523 1.7600 -98 754 3.9946 0.7620 1.7600 -98 755 4.0675 0.7751 1.7600 -98 756 4.1406 0.7832 1.7600 -98 757 4.2027 0.7903 1.7600 -98 758 4.2640 0.7954 1.7600 -98 759 4.3241 0.7974 1.7600 -98 760 4.3863 0.7977 1.7600 -98 761 4.4460 0.7965 1.7600 -98 762 4.5102 0.7926 1.7600 -98 763 4.5808 0.7879 1.7600 -98 764 4.6507 0.7829 1.7600 -98 765 4.7200 0.7811 1.7600 -98 766 4.7888 0.7781 1.7600 -98 767 4.8554 0.7839 1.7600 -98 768 4.9175 0.7940 1.7600 -98 769 4.9777 0.8056 1.7600 -98 770 5.0359 0.8188 1.7600 -98 771 5.0952 0.8320 1.7600 -98 772 5.1517 0.8448 1.7600 -98 773 5.2105 0.8527 1.7600 -98 774 5.2677 0.8611 1.7600 -98 775 5.3277 0.8713 1.7600 -98 776 5.3907 0.8800 1.7600 -98 777 5.4546 0.8848 1.7600 -98 778 5.5144 0.8871 1.7600 -98 779 5.5696 0.8868 1.7600 -98 780 5.6317 0.8848 1.7600 -98 781 5.7087 0.8815 1.7600 -98 782 5.7970 0.8784 1.7600 -98 783 5.8780 0.8785 1.7600 -98 784 5.9590 0.8810 1.7600 -99 561 -7.8119 0.8925 1.7600 -99 562 -7.7548 0.8825 1.7600 -99 563 -7.6917 0.8664 1.7600 -99 564 -7.6261 0.8457 1.7600 -99 565 -7.5580 0.8210 1.7600 -99 566 -7.4868 0.7939 1.7600 -99 567 -7.4172 0.7637 1.7600 -99 568 -7.3534 0.7310 1.7600 -99 569 -7.3059 0.6969 1.7600 -99 570 -7.2692 0.6639 1.7600 -99 571 -7.2336 0.6361 1.7600 -99 572 -7.1894 0.6163 1.7600 -99 573 -7.1470 0.6045 1.7600 -99 574 -7.1032 0.5929 1.7600 -99 575 -7.0521 0.5837 1.7600 -99 576 -7.0022 0.5758 1.7600 -99 577 -6.9483 0.5692 1.7600 -99 578 -6.8979 0.5641 1.7600 -99 579 -6.8505 0.5618 1.7600 -99 580 -6.8130 0.5601 1.7600 -99 581 -6.7698 0.5639 1.7600 -99 582 -6.7261 0.5586 1.7600 -99 583 -6.6796 0.5469 1.7600 -99 584 -6.6266 0.5346 1.7600 -99 585 -6.5705 0.5241 1.7600 -99 586 -6.5140 0.5128 1.7600 -99 587 -6.4567 0.4976 1.7600 -99 588 -6.4010 0.4764 1.7600 -99 589 -6.3447 0.4553 1.7600 -99 590 -6.2956 0.4341 1.7600 -99 591 -6.2499 0.4156 1.7600 -99 592 -6.2012 0.4010 1.7600 -99 593 -6.1511 0.3876 1.7600 -99 594 -6.1013 0.3796 1.7600 -99 595 -6.0490 0.3726 1.7600 -99 596 -5.9931 0.3682 1.7600 -99 597 -5.9403 0.3664 1.7600 -99 598 -5.8822 0.3644 1.7600 -99 599 -5.8285 0.3662 1.7600 -99 600 -5.7721 0.3699 1.7600 -99 601 -5.7191 0.3710 1.7600 -99 602 -5.6600 0.3701 1.7600 -99 603 -5.5957 0.3640 1.7600 -99 604 -5.5304 0.3563 1.7600 -99 605 -5.4662 0.3481 1.7600 -99 606 -5.4058 0.3371 1.7600 -99 607 -5.3462 0.3244 1.7600 -99 608 -5.2868 0.3064 1.7600 -99 609 -5.2306 0.2878 1.7600 -99 610 -5.1833 0.2655 1.7600 -99 611 -5.1380 0.2460 1.7600 -99 612 -5.0890 0.2327 1.7600 -99 613 -5.0352 0.2247 1.7600 -99 614 -4.9791 0.2227 1.7600 -99 615 -4.9173 0.2232 1.7600 -99 616 -4.8573 0.2295 1.7600 -99 617 -4.7971 0.2397 1.7600 -99 618 -4.7415 0.2539 1.7600 -99 619 -4.6817 0.2698 1.7600 -99 620 -4.6245 0.2830 1.7600 -99 621 -4.5708 0.2954 1.7600 -99 622 -4.5133 0.3037 1.7600 -99 623 -4.4581 0.3072 1.7600 -99 624 -4.4037 0.3071 1.7600 -99 625 -4.3469 0.3081 1.7600 -99 626 -4.2865 0.3119 1.7600 -99 627 -4.2302 0.3094 1.7600 -99 628 -4.1743 0.3056 1.7600 -99 629 -4.1173 0.2928 1.7600 -99 630 -4.0581 0.2757 1.7600 -99 631 -4.0033 0.2542 1.7600 -99 632 -3.9503 0.2413 1.7600 -99 633 -3.8980 0.2427 1.7600 -99 634 -3.8495 0.2526 1.7600 -99 635 -3.8038 0.2615 1.7600 -99 636 -3.7543 0.2707 1.7600 -99 637 -3.7019 0.2802 1.7600 -99 638 -3.6478 0.2914 1.7600 -99 639 -3.5894 0.3037 1.7600 -99 640 -3.5284 0.3152 1.7600 -99 641 -3.4670 0.3260 1.7600 -99 642 -3.4099 0.3331 1.7600 -99 643 -3.3498 0.3324 1.7600 -99 644 -3.2910 0.3323 1.7600 -99 645 -3.2311 0.3286 1.7600 -99 646 -3.1699 0.3253 1.7600 -99 647 -3.1087 0.3177 1.7600 -99 648 -3.0519 0.3056 1.7600 -99 649 -2.9962 0.2851 1.7600 -99 650 -2.9420 0.2608 1.7600 -99 651 -2.8916 0.2361 1.7600 -99 652 -2.8372 0.2171 1.7600 -99 653 -2.7808 0.2113 1.7600 -99 654 -2.7263 0.2129 1.7600 -99 655 -2.6705 0.2191 1.7600 -99 656 -2.6165 0.2266 1.7600 -99 657 -2.5604 0.2353 1.7600 -99 658 -2.5042 0.2490 1.7600 -99 659 -2.4416 0.2571 1.7600 -99 660 -2.3735 0.2702 1.7600 -99 661 -2.3128 0.2788 1.7600 -99 662 -2.2563 0.2851 1.7600 -99 663 -2.2008 0.2903 1.7600 -99 664 -2.1475 0.2941 1.7600 -99 665 -2.0933 0.2989 1.7600 -99 666 -2.0387 0.3042 1.7600 -99 667 -1.9834 0.3075 1.7600 -99 668 -1.9224 0.3064 1.7600 -99 669 -1.8588 0.3002 1.7600 -99 670 -1.7951 0.2904 1.7600 -99 671 -1.7348 0.2771 1.7600 -99 672 -1.6734 0.2673 1.7600 -99 673 -1.6175 0.2641 1.7600 -99 674 -1.5603 0.2675 1.7600 -99 675 -1.4955 0.2717 1.7600 -99 676 -1.4355 0.2778 1.7600 -99 677 -1.3737 0.2854 1.7600 -99 678 -1.3115 0.2965 1.7600 -99 679 -1.2486 0.3100 1.7600 -99 680 -1.1847 0.3246 1.7600 -99 681 -1.1253 0.3417 1.7600 -99 682 -1.0699 0.3569 1.7600 -99 683 -1.0152 0.3642 1.7600 -99 684 -0.9582 0.3679 1.7600 -99 685 -0.8966 0.3692 1.7600 -99 686 -0.8355 0.3723 1.7600 -99 687 -0.7722 0.3705 1.7600 -99 688 -0.7057 0.3651 1.7600 -99 689 -0.6322 0.3563 1.7600 -99 690 -0.5648 0.3461 1.7600 -99 691 -0.5022 0.3350 1.7600 -99 692 -0.4338 0.3274 1.7600 -99 693 -0.3664 0.3247 1.7600 -99 694 -0.3047 0.3290 1.7600 -99 695 -0.2392 0.3387 1.7600 -99 696 -0.1780 0.3479 1.7600 -99 697 -0.1146 0.3600 1.7600 -99 698 -0.0554 0.3727 1.7600 -99 699 0.0025 0.3868 1.7600 -99 700 0.0600 0.3964 1.7600 -99 701 0.1162 0.4011 1.7600 -99 702 0.1718 0.3998 1.7600 -99 703 0.2318 0.3947 1.7600 -99 704 0.2946 0.3926 1.7600 -99 705 0.3616 0.3897 1.7600 -99 706 0.4288 0.3851 1.7600 -99 707 0.4958 0.3786 1.7600 -99 708 0.5638 0.3665 1.7600 -99 709 0.6266 0.3528 1.7600 -99 710 0.6864 0.3390 1.7600 -99 711 0.7436 0.3287 1.7600 -99 712 0.7968 0.3281 1.7600 -99 713 0.8519 0.3302 1.7600 -99 714 0.9110 0.3338 1.7600 -99 715 0.9715 0.3365 1.7600 -99 716 1.0332 0.3426 1.7600 -99 717 1.0946 0.3502 1.7600 -99 718 1.1564 0.3583 1.7600 -99 719 1.2165 0.3627 1.7600 -99 720 1.2732 0.3651 1.7600 -99 721 1.3312 0.3637 1.7600 -99 722 1.3911 0.3572 1.7600 -99 723 1.4591 0.3479 1.7600 -99 724 1.5266 0.3407 1.7600 -99 725 1.5957 0.3312 1.7600 -99 726 1.6647 0.3193 1.7600 -99 727 1.7330 0.3011 1.7600 -99 728 1.7939 0.2868 1.7600 -99 729 1.8453 0.2749 1.7600 -99 730 1.9016 0.2692 1.7600 -99 731 1.9634 0.2694 1.7600 -99 732 2.0237 0.2722 1.7600 -99 733 2.0825 0.2764 1.7600 -99 734 2.1397 0.2836 1.7600 -99 735 2.1974 0.2942 1.7600 -99 736 2.2600 0.3062 1.7600 -99 737 2.3263 0.3179 1.7600 -99 738 2.3868 0.3278 1.7600 -99 739 2.4497 0.3329 1.7600 -99 740 2.5110 0.3365 1.7600 -99 741 2.5719 0.3334 1.7600 -99 742 2.6309 0.3322 1.7600 -99 743 2.6900 0.3306 1.7600 -99 744 2.7479 0.3265 1.7600 -99 745 2.8043 0.3143 1.7600 -99 746 2.8634 0.3002 1.7600 -99 747 2.9214 0.2842 1.7600 -99 748 2.9744 0.2700 1.7600 -99 749 3.0284 0.2625 1.7600 -99 750 3.0814 0.2639 1.7600 -99 751 3.1310 0.2676 1.7600 -99 752 3.1846 0.2755 1.7600 -99 753 3.2376 0.2846 1.7600 -99 754 3.2864 0.2987 1.7600 -99 755 3.3351 0.3105 1.7600 -99 756 3.3823 0.3216 1.7600 -99 757 3.4303 0.3331 1.7600 -99 758 3.4780 0.3419 1.7600 -99 759 3.5294 0.3464 1.7600 -99 760 3.5828 0.3471 1.7600 -99 761 3.6374 0.3459 1.7600 -99 762 3.6974 0.3451 1.7600 -99 763 3.7570 0.3415 1.7600 -99 764 3.8162 0.3351 1.7600 -99 765 3.8758 0.3222 1.7600 -99 766 3.9385 0.3100 1.7600 -99 767 3.9972 0.2965 1.7600 -99 768 4.0573 0.2848 1.7600 -99 769 4.1173 0.2797 1.7600 -99 770 4.1714 0.2803 1.7600 -99 771 4.2262 0.2845 1.7600 -99 772 4.2799 0.2902 1.7600 -99 773 4.3303 0.2923 1.7600 -99 774 4.3839 0.2932 1.7600 -99 775 4.4366 0.2957 1.7600 -99 776 4.4931 0.2984 1.7600 -99 777 4.5516 0.3002 1.7600 -99 778 4.6089 0.3011 1.7600 -99 779 4.6663 0.2983 1.7600 -99 780 4.7231 0.2910 1.7600 -99 781 4.7793 0.2820 1.7600 -99 782 4.8359 0.2739 1.7600 -99 783 4.8912 0.2653 1.7600 -99 784 4.9448 0.2531 1.7600 -99 785 5.0009 0.2355 1.7600 -99 786 5.0619 0.2169 1.7600 -99 787 5.1211 0.1983 1.7600 -99 788 5.1773 0.1836 1.7600 -99 789 5.2327 0.1746 1.7600 -99 790 5.2867 0.1708 1.7600 -99 791 5.3396 0.1698 1.7600 -99 792 5.3904 0.1693 1.7600 -99 793 5.4404 0.1693 1.7600 -99 794 5.4937 0.1714 1.7600 -99 795 5.5527 0.1747 1.7600 -99 796 5.6180 0.1756 1.7600 -99 797 5.6833 0.1719 1.7600 -99 798 5.7508 0.1639 1.7600 -99 799 5.8171 0.1504 1.7600 -99 800 5.8804 0.1356 1.7600 -99 801 5.9414 0.1217 1.7600 -100 547 -7.8380 2.3614 1.7600 -100 548 -7.7924 2.3687 1.7600 -100 549 -7.7476 2.3740 1.7600 -100 550 -7.7040 2.3763 1.7600 -100 551 -7.6593 2.3748 1.7600 -100 552 -7.6171 2.3737 1.7600 -100 553 -7.5760 2.3749 1.7600 -100 554 -7.5338 2.3775 1.7600 -100 555 -7.4902 2.3791 1.7600 -100 556 -7.4461 2.3786 1.7600 -100 557 -7.3992 2.3787 1.7600 -100 558 -7.3493 2.3787 1.7600 -100 559 -7.2970 2.3785 1.7600 -100 560 -7.2437 2.3787 1.7600 -100 561 -7.1915 2.3792 1.7600 -100 562 -7.1427 2.3798 1.7600 -100 563 -7.0952 2.3809 1.7600 -100 564 -7.0491 2.3801 1.7600 -100 565 -7.0030 2.3773 1.7600 -100 566 -6.9557 2.3725 1.7600 -100 567 -6.9053 2.3644 1.7600 -100 568 -6.8586 2.3543 1.7600 -100 569 -6.8136 2.3413 1.7600 -100 570 -6.7689 2.3221 1.7600 -100 571 -6.7281 2.3039 1.7600 -100 572 -6.6899 2.2800 1.7600 -100 573 -6.6551 2.2627 1.7600 -100 574 -6.6183 2.2437 1.7600 -100 575 -6.5806 2.2297 1.7600 -100 576 -6.5377 2.2130 1.7600 -100 577 -6.4910 2.2014 1.7600 -100 578 -6.4427 2.1897 1.7600 -100 579 -6.3915 2.1796 1.7600 -100 580 -6.3403 2.1718 1.7600 -100 581 -6.2903 2.1680 1.7600 -100 582 -6.2409 2.1667 1.7600 -100 583 -6.1974 2.1668 1.7600 -100 584 -6.1532 2.1614 1.7600 -100 585 -6.1103 2.1551 1.7600 -100 586 -6.0670 2.1446 1.7600 -100 587 -6.0189 2.1295 1.7600 -100 588 -5.9751 2.1152 1.7600 -100 589 -5.9334 2.0952 1.7600 -100 590 -5.8933 2.0739 1.7600 -100 591 -5.8599 2.0535 1.7600 -100 592 -5.8230 2.0312 1.7600 -100 593 -5.7870 2.0115 1.7600 -100 594 -5.7451 1.9928 1.7600 -100 595 -5.7012 1.9749 1.7600 -100 596 -5.6470 1.9583 1.7600 -100 597 -5.5948 1.9433 1.7600 -100 598 -5.5402 1.9323 1.7600 -100 599 -5.4810 1.9218 1.7600 -100 600 -5.4261 1.9169 1.7600 -100 601 -5.3716 1.9165 1.7600 -100 602 -5.3174 1.9187 1.7600 -100 603 -5.2625 1.9215 1.7600 -100 604 -5.2105 1.9175 1.7600 -100 605 -5.1581 1.9112 1.7600 -100 606 -5.1065 1.9005 1.7600 -100 607 -5.0517 1.8886 1.7600 -100 608 -4.9971 1.8750 1.7600 -100 609 -4.9437 1.8598 1.7600 -100 610 -4.8936 1.8425 1.7600 -100 611 -4.8457 1.8207 1.7600 -100 612 -4.7989 1.7964 1.7600 -100 613 -4.7549 1.7777 1.7600 -100 614 -4.7092 1.7603 1.7600 -100 615 -4.6668 1.7476 1.7600 -100 616 -4.6249 1.7387 1.7600 -100 617 -4.5816 1.7312 1.7600 -100 618 -4.5389 1.7248 1.7600 -100 619 -4.4990 1.7208 1.7600 -100 620 -4.4570 1.7209 1.7600 -100 621 -4.4148 1.7238 1.7600 -100 622 -4.3721 1.7260 1.7600 -100 623 -4.3334 1.7270 1.7600 -100 624 -4.2982 1.7250 1.7600 -100 625 -4.2627 1.7210 1.7600 -100 626 -4.2283 1.7137 1.7600 -100 627 -4.1923 1.7071 1.7600 -100 628 -4.1583 1.6965 1.7600 -100 629 -4.1242 1.6857 1.7600 -100 630 -4.0882 1.6730 1.7600 -100 631 -4.0535 1.6590 1.7600 -100 632 -4.0153 1.6435 1.7600 -100 633 -3.9748 1.6278 1.7600 -100 634 -3.9262 1.6141 1.7600 -100 635 -3.8732 1.6005 1.7600 -100 636 -3.8202 1.5928 1.7600 -100 637 -3.7617 1.5848 1.7600 -100 638 -3.7057 1.5796 1.7600 -100 639 -3.6441 1.5774 1.7600 -100 640 -3.5848 1.5785 1.7600 -100 641 -3.5274 1.5815 1.7600 -100 642 -3.4677 1.5876 1.7600 -100 643 -3.4118 1.5881 1.7600 -100 644 -3.3545 1.5884 1.7600 -100 645 -3.2996 1.5860 1.7600 -100 646 -3.2464 1.5803 1.7600 -100 647 -3.1914 1.5728 1.7600 -100 648 -3.1349 1.5626 1.7600 -100 649 -3.0785 1.5513 1.7600 -100 650 -3.0213 1.5404 1.7600 -100 651 -2.9619 1.5312 1.7600 -100 652 -2.9038 1.5289 1.7600 -100 653 -2.8451 1.5262 1.7600 -100 654 -2.7845 1.5249 1.7600 -100 655 -2.7233 1.5243 1.7600 -100 656 -2.6626 1.5211 1.7600 -100 657 -2.6005 1.5205 1.7600 -100 658 -2.5366 1.5229 1.7600 -100 659 -2.4710 1.5277 1.7600 -100 660 -2.4026 1.5338 1.7600 -100 661 -2.3349 1.5414 1.7600 -100 662 -2.2674 1.5467 1.7600 -100 663 -2.1993 1.5473 1.7600 -100 664 -2.1328 1.5458 1.7600 -100 665 -2.0687 1.5432 1.7600 -100 666 -2.0081 1.5396 1.7600 -100 667 -1.9459 1.5331 1.7600 -100 668 -1.8773 1.5279 1.7600 -100 669 -1.8143 1.5200 1.7600 -100 670 -1.7498 1.5146 1.7600 -100 671 -1.6863 1.5104 1.7600 -100 672 -1.6232 1.5086 1.7600 -100 673 -1.5602 1.5083 1.7600 -100 674 -1.4961 1.5095 1.7600 -100 675 -1.4362 1.5109 1.7600 -100 676 -1.3792 1.5129 1.7600 -100 677 -1.3217 1.5178 1.7600 -100 678 -1.2639 1.5281 1.7600 -100 679 -1.2051 1.5407 1.7600 -100 680 -1.1421 1.5516 1.7600 -100 681 -1.0780 1.5616 1.7600 -100 682 -1.0136 1.5679 1.7600 -100 683 -0.9486 1.5696 1.7600 -100 684 -0.8812 1.5703 1.7600 -100 685 -0.8122 1.5716 1.7600 -100 686 -0.7451 1.5723 1.7600 -100 687 -0.6778 1.5690 1.7600 -100 688 -0.6110 1.5610 1.7600 -100 689 -0.5451 1.5528 1.7600 -100 690 -0.4808 1.5456 1.7600 -100 691 -0.4179 1.5445 1.7600 -100 692 -0.3557 1.5452 1.7600 -100 693 -0.2924 1.5477 1.7600 -100 694 -0.2271 1.5527 1.7600 -100 695 -0.1665 1.5561 1.7600 -100 696 -0.1024 1.5582 1.7600 -100 697 -0.0411 1.5631 1.7600 -100 698 0.0211 1.5711 1.7600 -100 699 0.0813 1.5806 1.7600 -100 700 0.1419 1.5907 1.7600 -100 701 0.1968 1.5974 1.7600 -100 702 0.2498 1.5969 1.7600 -100 703 0.3038 1.5963 1.7600 -100 704 0.3614 1.5975 1.7600 -100 705 0.4198 1.5963 1.7600 -100 706 0.4801 1.5962 1.7600 -100 707 0.5411 1.5915 1.7600 -100 708 0.6006 1.5838 1.7600 -100 709 0.6567 1.5747 1.7600 -100 710 0.7114 1.5688 1.7600 -100 711 0.7657 1.5640 1.7600 -100 712 0.8181 1.5641 1.7600 -100 713 0.8721 1.5634 1.7600 -100 714 0.9262 1.5636 1.7600 -100 715 0.9826 1.5632 1.7600 -100 716 1.0401 1.5652 1.7600 -100 717 1.0957 1.5696 1.7600 -100 718 1.1533 1.5745 1.7600 -100 719 1.2085 1.5825 1.7600 -100 720 1.2630 1.5911 1.7600 -100 721 1.3135 1.5988 1.7600 -100 722 1.3624 1.6021 1.7600 -100 723 1.4123 1.6009 1.7600 -100 724 1.4619 1.6003 1.7600 -100 725 1.5112 1.6005 1.7600 -100 726 1.5639 1.5991 1.7600 -100 727 1.6149 1.5975 1.7600 -100 728 1.6667 1.5950 1.7600 -100 729 1.7151 1.5932 1.7600 -100 730 1.7654 1.5899 1.7600 -100 731 1.8162 1.5880 1.7600 -100 732 1.8667 1.5869 1.7600 -100 733 1.9207 1.5860 1.7600 -100 734 1.9742 1.5851 1.7600 -100 735 2.0305 1.5851 1.7600 -100 736 2.0885 1.5816 1.7600 -100 737 2.1492 1.5815 1.7600 -100 738 2.2126 1.5826 1.7600 -100 739 2.2766 1.5889 1.7600 -100 740 2.3450 1.5898 1.7600 -100 741 2.4090 1.5912 1.7600 -100 742 2.4728 1.5893 1.7600 -100 743 2.5368 1.5865 1.7600 -100 744 2.6007 1.5825 1.7600 -100 745 2.6678 1.5771 1.7600 -100 746 2.7319 1.5689 1.7600 -100 747 2.7973 1.5602 1.7600 -100 748 2.8647 1.5499 1.7600 -100 749 2.9315 1.5419 1.7600 -100 750 2.9949 1.5370 1.7600 -100 751 3.0570 1.5348 1.7600 -100 752 3.1191 1.5333 1.7600 -100 753 3.1783 1.5319 1.7600 -100 754 3.2356 1.5324 1.7600 -100 755 3.2917 1.5341 1.7600 -100 756 3.3538 1.5355 1.7600 -100 757 3.4036 1.5459 1.7600 -100 758 3.4630 1.5569 1.7600 -100 759 3.5231 1.5663 1.7600 -100 760 3.5839 1.5705 1.7600 -100 761 3.6458 1.5717 1.7600 -100 762 3.7077 1.5751 1.7600 -100 763 3.7698 1.5792 1.7600 -100 764 3.8405 1.5775 1.7600 -100 765 3.8955 1.5845 1.7600 -100 766 3.9636 1.5850 1.7600 -100 767 4.0312 1.5922 1.7600 -100 768 4.1018 1.5988 1.7600 -100 769 4.1721 1.6112 1.7600 -100 770 4.2400 1.6273 1.7600 -100 771 4.3083 1.6443 1.7600 -100 772 4.3728 1.6652 1.7600 -100 773 4.4346 1.6878 1.7600 -100 774 4.4953 1.7136 1.7600 -100 775 4.5575 1.7398 1.7600 -100 776 4.6210 1.7646 1.7600 -100 777 4.6895 1.7866 1.7600 -100 778 4.7595 1.8038 1.7600 -100 779 4.8295 1.8141 1.7600 -100 780 4.8970 1.8207 1.7600 -100 781 4.9629 1.8263 1.7600 -100 782 5.0248 1.8364 1.7600 -100 783 5.0866 1.8404 1.7600 -100 784 5.1493 1.8421 1.7600 -100 785 5.2159 1.8467 1.7600 -100 786 5.2861 1.8518 1.7600 -100 787 5.3561 1.8663 1.7600 -100 788 5.4224 1.8834 1.7600 -100 789 5.4844 1.8995 1.7600 -100 790 5.5436 1.9150 1.7600 -100 791 5.6023 1.9313 1.7600 -100 792 5.6602 1.9493 1.7600 -100 793 5.7229 1.9738 1.7600 -100 794 5.7877 1.9957 1.7600 -100 795 5.8569 2.0173 1.7600 -100 796 5.9297 2.0345 1.7600 -101 556 -7.8300 1.4677 1.7600 -101 557 -7.7817 1.4435 1.7600 -101 558 -7.7328 1.4287 1.7600 -101 559 -7.6801 1.4200 1.7600 -101 560 -7.6224 1.4155 1.7600 -101 561 -7.5609 1.4152 1.7600 -101 562 -7.4957 1.4182 1.7600 -101 563 -7.4266 1.4247 1.7600 -101 564 -7.3565 1.4365 1.7600 -101 565 -7.2901 1.4518 1.7600 -101 566 -7.2281 1.4665 1.7600 -101 567 -7.1688 1.4767 1.7600 -101 568 -7.1096 1.4796 1.7600 -101 569 -7.0503 1.4728 1.7600 -101 570 -6.9887 1.4609 1.7600 -101 571 -6.9253 1.4488 1.7600 -101 572 -6.8560 1.4324 1.7600 -101 573 -6.7865 1.4111 1.7600 -101 574 -6.7197 1.3841 1.7600 -101 575 -6.6498 1.3519 1.7600 -101 576 -6.5835 1.3206 1.7600 -101 577 -6.5195 1.2984 1.7600 -101 578 -6.4554 1.2866 1.7600 -101 579 -6.3884 1.2837 1.7600 -101 580 -6.3229 1.2836 1.7600 -101 581 -6.2595 1.2870 1.7600 -101 582 -6.1934 1.2888 1.7600 -101 583 -6.1253 1.2940 1.7600 -101 584 -6.0568 1.3016 1.7600 -101 585 -5.9903 1.3130 1.7600 -101 586 -5.9296 1.3237 1.7600 -101 587 -5.8718 1.3326 1.7600 -101 588 -5.8241 1.3357 1.7600 -101 589 -5.7768 1.3296 1.7600 -101 590 -5.7333 1.3175 1.7600 -101 591 -5.6891 1.3049 1.7600 -101 592 -5.6430 1.2883 1.7600 -101 593 -5.5979 1.2702 1.7600 -101 594 -5.5593 1.2489 1.7600 -101 595 -5.5242 1.2279 1.7600 -101 596 -5.4896 1.2074 1.7600 -101 597 -5.4534 1.1890 1.7600 -101 598 -5.4127 1.1724 1.7600 -101 599 -5.3645 1.1646 1.7600 -101 600 -5.3130 1.1618 1.7600 -101 601 -5.2652 1.1619 1.7600 -101 602 -5.2158 1.1636 1.7600 -101 603 -5.1653 1.1702 1.7600 -101 604 -5.1129 1.1802 1.7600 -101 605 -5.0573 1.1948 1.7600 -101 606 -4.9992 1.2133 1.7600 -101 607 -4.9416 1.2341 1.7600 -101 608 -4.8818 1.2538 1.7600 -101 609 -4.8302 1.2729 1.7600 -101 610 -4.7861 1.2849 1.7600 -101 611 -4.7414 1.2900 1.7600 -101 612 -4.6996 1.2925 1.7600 -101 613 -4.6581 1.2938 1.7600 -101 614 -4.6197 1.2891 1.7600 -101 615 -4.5859 1.2750 1.7600 -101 616 -4.5595 1.2540 1.7600 -101 617 -4.5388 1.2274 1.7600 -101 618 -4.5152 1.2041 1.7600 -101 619 -4.4930 1.1839 1.7600 -101 620 -4.4666 1.1696 1.7600 -101 621 -4.4329 1.1613 1.7600 -101 622 -4.3942 1.1537 1.7600 -101 623 -4.3521 1.1470 1.7600 -101 624 -4.2969 1.1344 1.7600 -101 625 -4.2366 1.1215 1.7600 -101 626 -4.1673 1.1185 1.7600 -101 627 -4.0992 1.1238 1.7600 -101 628 -4.0326 1.1341 1.7600 -101 629 -3.9739 1.1431 1.7600 -101 630 -3.9219 1.1504 1.7600 -101 631 -3.8687 1.1477 1.7600 -101 632 -3.8204 1.1359 1.7600 -101 633 -3.7716 1.1187 1.7600 -101 634 -3.7224 1.1014 1.7600 -101 635 -3.6731 1.0815 1.7600 -101 636 -3.6294 1.0596 1.7600 -101 637 -3.5851 1.0382 1.7600 -101 638 -3.5412 1.0208 1.7600 -101 639 -3.4940 1.0131 1.7600 -101 640 -3.4384 1.0092 1.7600 -101 641 -3.3818 1.0136 1.7600 -101 642 -3.3179 1.0170 1.7600 -101 643 -3.2537 1.0266 1.7600 -101 644 -3.1781 1.0399 1.7600 -101 645 -3.0930 1.0572 1.7600 -101 646 -3.0042 1.0708 1.7600 -101 647 -2.9211 1.0760 1.7600 -101 648 -2.8478 1.0700 1.7600 -101 649 -2.7787 1.0570 1.7600 -101 650 -2.7060 1.0453 1.7600 -101 651 -2.6280 1.0336 1.7600 -101 652 -2.5491 1.0196 1.7600 -101 653 -2.4721 1.0042 1.7600 -101 654 -2.4011 0.9911 1.7600 -101 655 -2.3294 0.9767 1.7600 -101 656 -2.2530 0.9670 1.7600 -101 657 -2.1803 0.9714 1.7600 -101 658 -2.1111 0.9812 1.7600 -101 659 -2.0408 0.9990 1.7600 -101 660 -1.9666 1.0160 1.7600 -101 661 -1.8933 1.0346 1.7600 -101 662 -1.8161 1.0587 1.7600 -101 663 -1.7400 1.0825 1.7600 -101 664 -1.6672 1.1071 1.7600 -101 665 -1.5961 1.1251 1.7600 -101 666 -1.5288 1.1296 1.7600 -101 667 -1.4680 1.1267 1.7600 -101 668 -1.4062 1.1216 1.7600 -101 669 -1.3447 1.1147 1.7600 -101 670 -1.2799 1.1063 1.7600 -101 671 -1.2179 1.0940 1.7600 -101 672 -1.1551 1.0788 1.7600 -101 673 -1.0897 1.0646 1.7600 -101 674 -1.0249 1.0529 1.7600 -101 675 -0.9641 1.0449 1.7600 -101 676 -0.9034 1.0464 1.7600 -101 677 -0.8420 1.0525 1.7600 -101 678 -0.7777 1.0602 1.7600 -101 679 -0.7096 1.0730 1.7600 -101 680 -0.6382 1.0887 1.7600 -101 681 -0.5667 1.1091 1.7600 -101 682 -0.4956 1.1350 1.7600 -101 683 -0.4238 1.1622 1.7600 -101 684 -0.3527 1.1857 1.7600 -101 685 -0.2842 1.2024 1.7600 -101 686 -0.2184 1.2075 1.7600 -101 687 -0.1570 1.2076 1.7600 -101 688 -0.0949 1.2030 1.7600 -101 689 -0.0236 1.1978 1.7600 -101 690 0.0454 1.1878 1.7600 -101 691 0.1138 1.1716 1.7600 -101 692 0.1740 1.1550 1.7600 -101 693 0.2331 1.1388 1.7600 -101 694 0.2911 1.1226 1.7600 -101 695 0.3522 1.1128 1.7600 -101 696 0.4093 1.1106 1.7600 -101 697 0.4694 1.1169 1.7600 -101 698 0.5334 1.1284 1.7600 -101 699 0.5993 1.1437 1.7600 -101 700 0.6665 1.1635 1.7600 -101 701 0.7362 1.1865 1.7600 -101 702 0.8053 1.2124 1.7600 -101 703 0.8702 1.2388 1.7600 -101 704 0.9334 1.2669 1.7600 -101 705 0.9911 1.2889 1.7600 -101 706 1.0436 1.3005 1.7600 -101 707 1.0980 1.3099 1.7600 -101 708 1.1510 1.3198 1.7600 -101 709 1.2117 1.3282 1.7600 -101 710 1.2739 1.3340 1.7600 -101 711 1.3369 1.3371 1.7600 -101 712 1.4038 1.3333 1.7600 -101 713 1.4735 1.3248 1.7600 -101 714 1.5466 1.3161 1.7600 -101 715 1.6136 1.3042 1.7600 -101 716 1.6746 1.2943 1.7600 -101 717 1.7374 1.2936 1.7600 -101 718 1.7965 1.2972 1.7600 -101 719 1.8584 1.3055 1.7600 -101 720 1.9212 1.3130 1.7600 -101 721 1.9853 1.3200 1.7600 -101 722 2.0535 1.3291 1.7600 -101 723 2.1221 1.3387 1.7600 -101 724 2.1862 1.3511 1.7600 -101 725 2.2531 1.3644 1.7600 -101 726 2.3170 1.3707 1.7600 -101 727 2.3782 1.3693 1.7600 -101 728 2.4380 1.3595 1.7600 -101 729 2.4971 1.3466 1.7600 -101 730 2.5595 1.3322 1.7600 -101 731 2.6187 1.3128 1.7600 -101 732 2.6837 1.2901 1.7600 -101 733 2.7464 1.2619 1.7600 -101 734 2.8167 1.2334 1.7600 -101 735 2.8823 1.2066 1.7600 -101 736 2.9491 1.1881 1.7600 -101 737 3.0151 1.1791 1.7600 -101 738 3.0830 1.1751 1.7600 -101 739 3.1523 1.1787 1.7600 -101 740 3.2250 1.1875 1.7600 -101 741 3.2944 1.2041 1.7600 -101 742 3.3645 1.2270 1.7600 -101 743 3.4348 1.2541 1.7600 -101 744 3.5085 1.2813 1.7600 -101 745 3.5778 1.3056 1.7600 -101 746 3.6434 1.3220 1.7600 -101 747 3.7071 1.3342 1.7600 -101 748 3.7655 1.3465 1.7600 -101 749 3.8246 1.3563 1.7600 -101 750 3.8857 1.3561 1.7600 -101 751 3.9499 1.3532 1.7600 -101 752 4.0150 1.3486 1.7600 -101 753 4.0827 1.3397 1.7600 -101 754 4.1556 1.3325 1.7600 -101 755 4.2242 1.3286 1.7600 -101 756 4.2908 1.3338 1.7600 -101 757 4.3578 1.3476 1.7600 -101 758 4.4223 1.3630 1.7600 -101 759 4.4833 1.3821 1.7600 -101 760 4.5444 1.4010 1.7600 -101 761 4.6059 1.4235 1.7600 -101 762 4.6670 1.4501 1.7600 -101 763 4.7344 1.4800 1.7600 -101 764 4.8028 1.5045 1.7600 -101 765 4.8717 1.5240 1.7600 -101 766 4.9358 1.5335 1.7600 -101 767 4.9992 1.5366 1.7600 -101 768 5.0584 1.5363 1.7600 -101 769 5.1171 1.5340 1.7600 -101 770 5.1804 1.5279 1.7600 -101 771 5.2438 1.5214 1.7600 -101 772 5.3117 1.5096 1.7600 -101 773 5.3900 1.4988 1.7600 -101 774 5.4671 1.4917 1.7600 -101 775 5.5436 1.4907 1.7600 -101 776 5.6161 1.5007 1.7600 -101 777 5.6863 1.5145 1.7600 -101 778 5.7528 1.5299 1.7600 -101 779 5.8161 1.5460 1.7600 -101 780 5.8742 1.5613 1.7600 -101 781 5.9320 1.5778 1.7600 -102 573 -7.8324 1.6288 1.7600 -102 574 -7.7820 1.6131 1.7600 -102 575 -7.7273 1.6034 1.7600 -102 576 -7.6660 1.5930 1.7600 -102 577 -7.5972 1.5808 1.7600 -102 578 -7.5211 1.5704 1.7600 -102 579 -7.4453 1.5659 1.7600 -102 580 -7.3714 1.5635 1.7600 -102 581 -7.3029 1.5676 1.7600 -102 582 -7.2417 1.5712 1.7600 -102 583 -7.1884 1.5702 1.7600 -102 584 -7.1377 1.5635 1.7600 -102 585 -7.0898 1.5476 1.7600 -102 586 -7.0391 1.5291 1.7600 -102 587 -6.9824 1.5101 1.7600 -102 588 -6.9199 1.4840 1.7600 -102 589 -6.8524 1.4564 1.7600 -102 590 -6.7872 1.4200 1.7600 -102 591 -6.7269 1.3829 1.7600 -102 592 -6.6723 1.3459 1.7600 -102 593 -6.6219 1.3110 1.7600 -102 594 -6.5701 1.2855 1.7600 -102 595 -6.5173 1.2652 1.7600 -102 596 -6.4664 1.2495 1.7600 -102 597 -6.4124 1.2360 1.7600 -102 598 -6.3547 1.2244 1.7600 -102 599 -6.2930 1.2147 1.7600 -102 600 -6.2266 1.2078 1.7600 -102 601 -6.1573 1.2084 1.7600 -102 602 -6.0869 1.2138 1.7600 -102 603 -6.0229 1.2239 1.7600 -102 604 -5.9703 1.2290 1.7600 -102 605 -5.9188 1.2288 1.7600 -102 606 -5.8724 1.2188 1.7600 -102 607 -5.8297 1.2086 1.7600 -102 608 -5.7838 1.1974 1.7600 -102 609 -5.7351 1.1855 1.7600 -102 610 -5.6851 1.1688 1.7600 -102 611 -5.6356 1.1494 1.7600 -102 612 -5.5925 1.1265 1.7600 -102 613 -5.5481 1.1014 1.7600 -102 614 -5.5052 1.0733 1.7600 -102 615 -5.4649 1.0504 1.7600 -102 616 -5.4225 1.0347 1.7600 -102 617 -5.3797 1.0262 1.7600 -102 618 -5.3358 1.0201 1.7600 -102 619 -5.2892 1.0160 1.7600 -102 620 -5.2365 1.0109 1.7600 -102 621 -5.1805 1.0068 1.7600 -102 622 -5.1220 1.0048 1.7600 -102 623 -5.0640 1.0070 1.7600 -102 624 -5.0087 1.0129 1.7600 -102 625 -4.9558 1.0219 1.7600 -102 626 -4.9093 1.0276 1.7600 -102 627 -4.8657 1.0326 1.7600 -102 628 -4.8223 1.0312 1.7600 -102 629 -4.7839 1.0252 1.7600 -102 630 -4.7417 1.0167 1.7600 -102 631 -4.6957 1.0063 1.7600 -102 632 -4.6477 0.9940 1.7600 -102 633 -4.5968 0.9803 1.7600 -102 634 -4.5475 0.9621 1.7600 -102 635 -4.4991 0.9366 1.7600 -102 636 -4.4547 0.9049 1.7600 -102 637 -4.4080 0.8754 1.7600 -102 638 -4.3640 0.8517 1.7600 -102 639 -4.3178 0.8336 1.7600 -102 640 -4.2683 0.8193 1.7600 -102 641 -4.2182 0.8067 1.7600 -102 642 -4.1648 0.7999 1.7600 -102 643 -4.1097 0.7897 1.7600 -102 644 -4.0530 0.7861 1.7600 -102 645 -3.9976 0.7878 1.7600 -102 646 -3.9423 0.7946 1.7600 -102 647 -3.8880 0.8021 1.7600 -102 648 -3.8330 0.8098 1.7600 -102 649 -3.7853 0.8163 1.7600 -102 650 -3.7396 0.8192 1.7600 -102 651 -3.6925 0.8161 1.7600 -102 652 -3.6427 0.8106 1.7600 -102 653 -3.5899 0.8019 1.7600 -102 654 -3.5296 0.7945 1.7600 -102 655 -3.4685 0.7880 1.7600 -102 656 -3.4059 0.7746 1.7600 -102 657 -3.3442 0.7609 1.7600 -102 658 -3.2920 0.7522 1.7600 -102 659 -3.2421 0.7477 1.7600 -102 660 -3.1886 0.7467 1.7600 -102 661 -3.1335 0.7460 1.7600 -102 662 -3.0758 0.7501 1.7600 -102 663 -3.0130 0.7581 1.7600 -102 664 -2.9515 0.7708 1.7600 -102 665 -2.8922 0.7843 1.7600 -102 666 -2.8351 0.8002 1.7600 -102 667 -2.7818 0.8137 1.7600 -102 668 -2.7350 0.8256 1.7600 -102 669 -2.6850 0.8304 1.7600 -102 670 -2.6320 0.8291 1.7600 -102 671 -2.5755 0.8276 1.7600 -102 672 -2.5158 0.8303 1.7600 -102 673 -2.4587 0.8313 1.7600 -102 674 -2.4013 0.8312 1.7600 -102 675 -2.3450 0.8261 1.7600 -102 676 -2.2851 0.8187 1.7600 -102 677 -2.2293 0.8110 1.7600 -102 678 -2.1751 0.8067 1.7600 -102 679 -2.1229 0.8058 1.7600 -102 680 -2.0710 0.8095 1.7600 -102 681 -2.0170 0.8139 1.7600 -102 682 -1.9649 0.8194 1.7600 -102 683 -1.9082 0.8246 1.7600 -102 684 -1.8487 0.8352 1.7600 -102 685 -1.7888 0.8533 1.7600 -102 686 -1.7266 0.8742 1.7600 -102 687 -1.6687 0.8944 1.7600 -102 688 -1.6185 0.9102 1.7600 -102 689 -1.5702 0.9194 1.7600 -102 690 -1.5238 0.9229 1.7600 -102 691 -1.4741 0.9216 1.7600 -102 692 -1.4262 0.9200 1.7600 -102 693 -1.3755 0.9183 1.7600 -102 694 -1.3224 0.9159 1.7600 -102 695 -1.2668 0.9115 1.7600 -102 696 -1.2088 0.9037 1.7600 -102 697 -1.1484 0.8932 1.7600 -102 698 -1.0869 0.8812 1.7600 -102 699 -1.0313 0.8705 1.7600 -102 700 -0.9827 0.8654 1.7600 -102 701 -0.9341 0.8641 1.7600 -102 702 -0.8881 0.8642 1.7600 -102 703 -0.8402 0.8656 1.7600 -102 704 -0.7877 0.8678 1.7600 -102 705 -0.7293 0.8712 1.7600 -102 706 -0.6656 0.8756 1.7600 -102 707 -0.6041 0.8821 1.7600 -102 708 -0.5407 0.8928 1.7600 -102 709 -0.4798 0.9050 1.7600 -102 710 -0.4257 0.9142 1.7600 -102 711 -0.3791 0.9192 1.7600 -102 712 -0.3328 0.9165 1.7600 -102 713 -0.2868 0.9140 1.7600 -102 714 -0.2370 0.9093 1.7600 -102 715 -0.1822 0.9041 1.7600 -102 716 -0.1264 0.8980 1.7600 -102 717 -0.0620 0.8879 1.7600 -102 718 -0.0012 0.8708 1.7600 -102 719 0.0559 0.8509 1.7600 -102 720 0.1054 0.8372 1.7600 -102 721 0.1579 0.8268 1.7600 -102 722 0.2139 0.8236 1.7600 -102 723 0.2712 0.8290 1.7600 -102 724 0.3292 0.8374 1.7600 -102 725 0.3927 0.8470 1.7600 -102 726 0.4584 0.8589 1.7600 -102 727 0.5257 0.8760 1.7600 -102 728 0.5934 0.8967 1.7600 -102 729 0.6573 0.9139 1.7600 -102 730 0.7162 0.9290 1.7600 -102 731 0.7718 0.9413 1.7600 -102 732 0.8280 0.9428 1.7600 -102 733 0.8824 0.9410 1.7600 -102 734 0.9381 0.9386 1.7600 -102 735 0.9983 0.9388 1.7600 -102 736 1.0616 0.9382 1.7600 -102 737 1.1296 0.9353 1.7600 -102 738 1.1957 0.9276 1.7600 -102 739 1.2637 0.9156 1.7600 -102 740 1.3242 0.8984 1.7600 -102 741 1.3766 0.8860 1.7600 -102 742 1.4287 0.8822 1.7600 -102 743 1.4807 0.8839 1.7600 -102 744 1.5336 0.8876 1.7600 -102 745 1.5892 0.8944 1.7600 -102 746 1.6514 0.9003 1.7600 -102 747 1.7153 0.9105 1.7600 -102 748 1.7823 0.9240 1.7600 -102 749 1.8529 0.9450 1.7600 -102 750 1.9189 0.9665 1.7600 -102 751 1.9798 0.9867 1.7600 -102 752 2.0388 0.9967 1.7600 -102 753 2.0940 0.9983 1.7600 -102 754 2.1524 0.9901 1.7600 -102 755 2.2125 0.9830 1.7600 -102 756 2.2749 0.9738 1.7600 -102 757 2.3422 0.9655 1.7600 -102 758 2.4050 0.9533 1.7600 -102 759 2.4668 0.9354 1.7600 -102 760 2.5286 0.9169 1.7600 -102 761 2.5847 0.8969 1.7600 -102 762 2.6390 0.8807 1.7600 -102 763 2.6932 0.8719 1.7600 -102 764 2.7492 0.8735 1.7600 -102 765 2.8110 0.8818 1.7600 -102 766 2.8708 0.8941 1.7600 -102 767 2.9347 0.9085 1.7600 -102 768 2.9952 0.9270 1.7600 -102 769 3.0570 0.9488 1.7600 -102 770 3.1190 0.9757 1.7600 -102 771 3.1759 1.0018 1.7600 -102 772 3.2325 1.0268 1.7600 -102 773 3.2895 1.0450 1.7600 -102 774 3.3453 1.0542 1.7600 -102 775 3.3986 1.0574 1.7600 -102 776 3.4551 1.0632 1.7600 -102 777 3.5135 1.0672 1.7600 -102 778 3.5747 1.0643 1.7600 -102 779 3.6365 1.0562 1.7600 -102 780 3.7071 1.0399 1.7600 -102 781 3.7767 1.0186 1.7600 -102 782 3.8401 1.0012 1.7600 -102 783 3.9005 0.9919 1.7600 -102 784 3.9601 0.9914 1.7600 -102 785 4.0211 0.9975 1.7600 -102 786 4.0812 1.0023 1.7600 -102 787 4.1450 1.0079 1.7600 -102 788 4.2130 1.0170 1.7600 -102 789 4.2841 1.0326 1.7600 -102 790 4.3560 1.0590 1.7600 -102 791 4.4323 1.0843 1.7600 -102 792 4.5069 1.1078 1.7600 -102 793 4.5773 1.1230 1.7600 -102 794 4.6464 1.1294 1.7600 -102 795 4.7120 1.1299 1.7600 -102 796 4.7776 1.1309 1.7600 -102 797 4.8396 1.1301 1.7600 -102 798 4.9032 1.1295 1.7600 -102 799 4.9685 1.1287 1.7600 -102 800 5.0355 1.1267 1.7600 -102 801 5.1081 1.1218 1.7600 -102 802 5.1897 1.1097 1.7600 -102 803 5.2689 1.1030 1.7600 -102 804 5.3425 1.1016 1.7600 -102 805 5.4151 1.1038 1.7600 -102 806 5.4870 1.1082 1.7600 -102 807 5.5573 1.1136 1.7600 -102 808 5.6275 1.1199 1.7600 -102 809 5.6959 1.1265 1.7600 -102 810 5.7647 1.1360 1.7600 -102 811 5.8372 1.1486 1.7600 -102 812 5.9137 1.1612 1.7600 -103 562 -7.7809 2.0025 1.7600 -103 563 -7.7151 2.0027 1.7600 -103 564 -7.6543 2.0078 1.7600 -103 565 -7.6011 2.0161 1.7600 -103 566 -7.5530 2.0231 1.7600 -103 567 -7.5039 2.0253 1.7600 -103 568 -7.4543 2.0232 1.7600 -103 569 -7.4048 2.0154 1.7600 -103 570 -7.3534 2.0034 1.7600 -103 571 -7.2982 1.9899 1.7600 -103 572 -7.2392 1.9766 1.7600 -103 573 -7.1796 1.9603 1.7600 -103 574 -7.1227 1.9404 1.7600 -103 575 -7.0711 1.9176 1.7600 -103 576 -7.0234 1.8963 1.7600 -103 577 -6.9733 1.8781 1.7600 -103 578 -6.9205 1.8614 1.7600 -103 579 -6.8667 1.8454 1.7600 -103 580 -6.8123 1.8300 1.7600 -103 581 -6.7568 1.8160 1.7600 -103 582 -6.6992 1.8022 1.7600 -103 583 -6.6392 1.7898 1.7600 -103 584 -6.5794 1.7806 1.7600 -103 585 -6.5220 1.7740 1.7600 -103 586 -6.4676 1.7730 1.7600 -103 587 -6.4143 1.7676 1.7600 -103 588 -6.3627 1.7630 1.7600 -103 589 -6.3124 1.7554 1.7600 -103 590 -6.2590 1.7436 1.7600 -103 591 -6.2079 1.7320 1.7600 -103 592 -6.1552 1.7217 1.7600 -103 593 -6.1051 1.7056 1.7600 -103 594 -6.0547 1.6837 1.7600 -103 595 -6.0037 1.6611 1.7600 -103 596 -5.9534 1.6376 1.7600 -103 597 -5.9065 1.6166 1.7600 -103 598 -5.8576 1.5972 1.7600 -103 599 -5.8122 1.5783 1.7600 -103 600 -5.7624 1.5665 1.7600 -103 601 -5.7133 1.5580 1.7600 -103 602 -5.6644 1.5484 1.7600 -103 603 -5.6169 1.5399 1.7600 -103 604 -5.5710 1.5328 1.7600 -103 605 -5.5244 1.5273 1.7600 -103 606 -5.4778 1.5248 1.7600 -103 607 -5.4324 1.5263 1.7600 -103 608 -5.3873 1.5255 1.7600 -103 609 -5.3437 1.5256 1.7600 -103 610 -5.3004 1.5198 1.7600 -103 611 -5.2568 1.5163 1.7600 -103 612 -5.2157 1.5107 1.7600 -103 613 -5.1765 1.5045 1.7600 -103 614 -5.1398 1.4996 1.7600 -103 615 -5.1013 1.4937 1.7600 -103 616 -5.0594 1.4879 1.7600 -103 617 -5.0178 1.4776 1.7600 -103 618 -4.9774 1.4673 1.7600 -103 619 -4.9399 1.4555 1.7600 -103 620 -4.9033 1.4413 1.7600 -103 621 -4.8669 1.4287 1.7600 -103 622 -4.8340 1.4183 1.7600 -103 623 -4.7985 1.4134 1.7600 -103 624 -4.7610 1.4102 1.7600 -103 625 -4.7239 1.4105 1.7600 -103 626 -4.6886 1.4109 1.7600 -103 627 -4.6535 1.4112 1.7600 -103 628 -4.6176 1.4115 1.7600 -103 629 -4.5798 1.4128 1.7600 -103 630 -4.5445 1.4166 1.7600 -103 631 -4.5118 1.4226 1.7600 -103 632 -4.4811 1.4292 1.7600 -103 633 -4.4519 1.4371 1.7600 -103 634 -4.4209 1.4417 1.7600 -103 635 -4.3852 1.4456 1.7600 -103 636 -4.3502 1.4447 1.7600 -103 637 -4.3159 1.4426 1.7600 -103 638 -4.2814 1.4393 1.7600 -103 639 -4.2447 1.4317 1.7600 -103 640 -4.2039 1.4241 1.7600 -103 641 -4.1652 1.4108 1.7600 -103 642 -4.1297 1.3941 1.7600 -103 643 -4.0925 1.3759 1.7600 -103 644 -4.0550 1.3566 1.7600 -103 645 -4.0142 1.3385 1.7600 -103 646 -3.9701 1.3228 1.7600 -103 647 -3.9272 1.3125 1.7600 -103 648 -3.8782 1.3051 1.7600 -103 649 -3.8306 1.3010 1.7600 -103 650 -3.7766 1.3015 1.7600 -103 651 -3.7210 1.3035 1.7600 -103 652 -3.6639 1.3087 1.7600 -103 653 -3.6069 1.3157 1.7600 -103 654 -3.5462 1.3302 1.7600 -103 655 -3.4891 1.3436 1.7600 -103 656 -3.4290 1.3551 1.7600 -103 657 -3.3739 1.3612 1.7600 -103 658 -3.3172 1.3637 1.7600 -103 659 -3.2593 1.3599 1.7600 -103 660 -3.1991 1.3549 1.7600 -103 661 -3.1409 1.3467 1.7600 -103 662 -3.0833 1.3363 1.7600 -103 663 -3.0207 1.3247 1.7600 -103 664 -2.9581 1.3115 1.7600 -103 665 -2.8899 1.2948 1.7600 -103 666 -2.8252 1.2803 1.7600 -103 667 -2.7627 1.2714 1.7600 -103 668 -2.6930 1.2671 1.7600 -103 669 -2.6278 1.2696 1.7600 -103 670 -2.5632 1.2757 1.7600 -103 671 -2.5013 1.2839 1.7600 -103 672 -2.4391 1.2914 1.7600 -103 673 -2.3774 1.3038 1.7600 -103 674 -2.3147 1.3173 1.7600 -103 675 -2.2532 1.3327 1.7600 -103 676 -2.1955 1.3431 1.7600 -103 677 -2.1371 1.3484 1.7600 -103 678 -2.0783 1.3513 1.7600 -103 679 -2.0202 1.3512 1.7600 -103 680 -1.9615 1.3482 1.7600 -103 681 -1.9022 1.3425 1.7600 -103 682 -1.8393 1.3368 1.7600 -103 683 -1.7733 1.3267 1.7600 -103 684 -1.7025 1.3120 1.7600 -103 685 -1.6331 1.2989 1.7600 -103 686 -1.5681 1.2948 1.7600 -103 687 -1.5011 1.2962 1.7600 -103 688 -1.4352 1.3006 1.7600 -103 689 -1.3712 1.3072 1.7600 -103 690 -1.3057 1.3114 1.7600 -103 691 -1.2407 1.3161 1.7600 -103 692 -1.1814 1.3223 1.7600 -103 693 -1.1211 1.3324 1.7600 -103 694 -1.0618 1.3447 1.7600 -103 695 -1.0025 1.3565 1.7600 -103 696 -0.9468 1.3624 1.7600 -103 697 -0.8904 1.3684 1.7600 -103 698 -0.8347 1.3707 1.7600 -103 699 -0.7763 1.3699 1.7600 -103 700 -0.7196 1.3640 1.7600 -103 701 -0.6609 1.3532 1.7600 -103 702 -0.5992 1.3406 1.7600 -103 703 -0.5360 1.3282 1.7600 -103 704 -0.4751 1.3116 1.7600 -103 705 -0.4143 1.2935 1.7600 -103 706 -0.3565 1.2782 1.7600 -103 707 -0.2968 1.2710 1.7600 -103 708 -0.2353 1.2705 1.7600 -103 709 -0.1704 1.2724 1.7600 -103 710 -0.1027 1.2769 1.7600 -103 711 -0.0333 1.2796 1.7600 -103 712 0.0398 1.2827 1.7600 -103 713 0.1117 1.2858 1.7600 -103 714 0.1835 1.2950 1.7600 -103 715 0.2508 1.3076 1.7600 -103 716 0.3107 1.3131 1.7600 -103 717 0.3680 1.3162 1.7600 -103 718 0.4248 1.3132 1.7600 -103 719 0.4837 1.3086 1.7600 -103 720 0.5436 1.3025 1.7600 -103 721 0.6069 1.2948 1.7600 -103 722 0.6726 1.2884 1.7600 -103 723 0.7395 1.2773 1.7600 -103 724 0.8077 1.2618 1.7600 -103 725 0.8759 1.2482 1.7600 -103 726 0.9402 1.2390 1.7600 -103 727 1.0056 1.2383 1.7600 -103 728 1.0705 1.2422 1.7600 -103 729 1.1373 1.2488 1.7600 -103 730 1.2045 1.2554 1.7600 -103 731 1.2693 1.2636 1.7600 -103 732 1.3333 1.2744 1.7600 -103 733 1.3930 1.2935 1.7600 -103 734 1.4561 1.3130 1.7600 -103 735 1.5175 1.3288 1.7600 -103 736 1.5775 1.3388 1.7600 -103 737 1.6344 1.3429 1.7600 -103 738 1.6967 1.3420 1.7600 -103 739 1.7588 1.3370 1.7600 -103 740 1.8226 1.3293 1.7600 -103 741 1.8853 1.3198 1.7600 -103 742 1.9456 1.3041 1.7600 -103 743 2.0069 1.2866 1.7600 -103 744 2.0691 1.2716 1.7600 -103 745 2.1310 1.2610 1.7600 -103 746 2.1952 1.2532 1.7600 -103 747 2.2586 1.2482 1.7600 -103 748 2.3216 1.2481 1.7600 -103 749 2.3838 1.2475 1.7600 -103 750 2.4495 1.2486 1.7600 -103 751 2.5137 1.2571 1.7600 -103 752 2.5764 1.2727 1.7600 -103 753 2.6386 1.2888 1.7600 -103 754 2.6985 1.3015 1.7600 -103 755 2.7562 1.3068 1.7600 -103 756 2.8172 1.3030 1.7600 -103 757 2.8727 1.2969 1.7600 -103 758 2.9297 1.2881 1.7600 -103 759 2.9908 1.2803 1.7600 -103 760 3.0541 1.2698 1.7600 -103 761 3.1172 1.2569 1.7600 -103 762 3.1803 1.2401 1.7600 -103 763 3.2462 1.2254 1.7600 -103 764 3.3125 1.2119 1.7600 -103 765 3.3748 1.2036 1.7600 -103 766 3.4386 1.2022 1.7600 -103 767 3.5002 1.2028 1.7600 -103 768 3.5628 1.2084 1.7600 -103 769 3.6269 1.2161 1.7600 -103 770 3.6938 1.2241 1.7600 -103 771 3.7605 1.2339 1.7600 -103 772 3.8328 1.2487 1.7600 -103 773 3.9079 1.2645 1.7600 -103 774 3.9815 1.2752 1.7600 -103 775 4.0528 1.2828 1.7600 -103 776 4.1234 1.2862 1.7600 -103 777 4.1931 1.2869 1.7600 -103 778 4.2608 1.2863 1.7600 -103 779 4.3273 1.2837 1.7600 -103 780 4.3879 1.2750 1.7600 -103 781 4.4548 1.2641 1.7600 -103 782 4.5318 1.2544 1.7600 -103 783 4.6119 1.2464 1.7600 -103 784 4.6903 1.2462 1.7600 -103 785 4.7651 1.2555 1.7600 -103 786 4.8352 1.2709 1.7600 -103 787 4.9025 1.2894 1.7600 -103 788 4.9643 1.3072 1.7600 -103 789 5.0213 1.3226 1.7600 -103 790 5.0834 1.3388 1.7600 -103 791 5.1503 1.3609 1.7600 -103 792 5.2272 1.3880 1.7600 -103 793 5.3062 1.4158 1.7600 -103 794 5.3837 1.4375 1.7600 -103 795 5.4574 1.4549 1.7600 -103 796 5.5245 1.4654 1.7600 -103 797 5.5844 1.4666 1.7600 -103 798 5.6448 1.4639 1.7600 -103 799 5.7073 1.4608 1.7600 -103 800 5.7790 1.4648 1.7600 -103 801 5.8662 1.4751 1.7600 -104 582 -7.7858 0.9469 1.7600 -104 583 -7.7322 0.9271 1.7600 -104 584 -7.6784 0.9070 1.7600 -104 585 -7.6254 0.8857 1.7600 -104 586 -7.5721 0.8625 1.7600 -104 587 -7.5217 0.8389 1.7600 -104 588 -7.4729 0.8153 1.7600 -104 589 -7.4255 0.7935 1.7600 -104 590 -7.3681 0.7773 1.7600 -104 591 -7.3058 0.7657 1.7600 -104 592 -7.2377 0.7605 1.7600 -104 593 -7.1698 0.7566 1.7600 -104 594 -7.1038 0.7537 1.7600 -104 595 -7.0410 0.7481 1.7600 -104 596 -6.9859 0.7455 1.7600 -104 597 -6.9336 0.7459 1.7600 -104 598 -6.8854 0.7453 1.7600 -104 599 -6.8424 0.7467 1.7600 -104 600 -6.7946 0.7468 1.7600 -104 601 -6.7466 0.7383 1.7600 -104 602 -6.6924 0.7204 1.7600 -104 603 -6.6369 0.6990 1.7600 -104 604 -6.5794 0.6811 1.7600 -104 605 -6.5263 0.6605 1.7600 -104 606 -6.4737 0.6403 1.7600 -104 607 -6.4238 0.6215 1.7600 -104 608 -6.3733 0.5991 1.7600 -104 609 -6.3227 0.5762 1.7600 -104 610 -6.2733 0.5535 1.7600 -104 611 -6.2262 0.5360 1.7600 -104 612 -6.1756 0.5272 1.7600 -104 613 -6.1229 0.5222 1.7600 -104 614 -6.0708 0.5196 1.7600 -104 615 -6.0165 0.5201 1.7600 -104 616 -5.9643 0.5176 1.7600 -104 617 -5.9114 0.5187 1.7600 -104 618 -5.8653 0.5253 1.7600 -104 619 -5.8128 0.5281 1.7600 -104 620 -5.7684 0.5330 1.7600 -104 621 -5.7246 0.5404 1.7600 -104 622 -5.6770 0.5448 1.7600 -104 623 -5.6330 0.5427 1.7600 -104 624 -5.5835 0.5339 1.7600 -104 625 -5.5288 0.5201 1.7600 -104 626 -5.4751 0.5068 1.7600 -104 627 -5.4199 0.4936 1.7600 -104 628 -5.3614 0.4778 1.7600 -104 629 -5.3054 0.4624 1.7600 -104 630 -5.2483 0.4426 1.7600 -104 631 -5.1877 0.4185 1.7600 -104 632 -5.1280 0.3965 1.7600 -104 633 -5.0717 0.3756 1.7600 -104 634 -5.0177 0.3622 1.7600 -104 635 -4.9599 0.3545 1.7600 -104 636 -4.8960 0.3492 1.7600 -104 637 -4.8330 0.3484 1.7600 -104 638 -4.7707 0.3485 1.7600 -104 639 -4.7098 0.3515 1.7600 -104 640 -4.6482 0.3569 1.7600 -104 641 -4.5936 0.3642 1.7600 -104 642 -4.5398 0.3752 1.7600 -104 643 -4.4841 0.3869 1.7600 -104 644 -4.4282 0.3989 1.7600 -104 645 -4.3757 0.4077 1.7600 -104 646 -4.3271 0.4096 1.7600 -104 647 -4.2721 0.4045 1.7600 -104 648 -4.2176 0.3959 1.7600 -104 649 -4.1670 0.3869 1.7600 -104 650 -4.1227 0.3816 1.7600 -104 651 -4.0732 0.3742 1.7600 -104 652 -4.0193 0.3692 1.7600 -104 653 -3.9636 0.3604 1.7600 -104 654 -3.9053 0.3490 1.7600 -104 655 -3.8454 0.3333 1.7600 -104 656 -3.7839 0.3189 1.7600 -104 657 -3.7384 0.3084 1.7600 -104 658 -3.6817 0.3068 1.7600 -104 659 -3.6164 0.3106 1.7600 -104 660 -3.5574 0.3158 1.7600 -104 661 -3.4987 0.3191 1.7600 -104 662 -3.4372 0.3230 1.7600 -104 663 -3.3796 0.3249 1.7600 -104 664 -3.3234 0.3346 1.7600 -104 665 -3.2655 0.3422 1.7600 -104 666 -3.2003 0.3499 1.7600 -104 667 -3.1424 0.3572 1.7600 -104 668 -3.0876 0.3611 1.7600 -104 669 -3.0344 0.3553 1.7600 -104 670 -2.9732 0.3440 1.7600 -104 671 -2.9144 0.3333 1.7600 -104 672 -2.8585 0.3270 1.7600 -104 673 -2.8014 0.3192 1.7600 -104 674 -2.7444 0.3132 1.7600 -104 675 -2.6829 0.3080 1.7600 -104 676 -2.6174 0.3003 1.7600 -104 677 -2.5477 0.2875 1.7600 -104 678 -2.4862 0.2784 1.7600 -104 679 -2.4226 0.2788 1.7600 -104 680 -2.3555 0.2836 1.7600 -104 681 -2.2888 0.2930 1.7600 -104 682 -2.2267 0.3019 1.7600 -104 683 -2.1706 0.3116 1.7600 -104 684 -2.1134 0.3230 1.7600 -104 685 -2.0556 0.3360 1.7600 -104 686 -1.9874 0.3483 1.7600 -104 687 -1.9141 0.3619 1.7600 -104 688 -1.8492 0.3718 1.7600 -104 689 -1.7892 0.3780 1.7600 -104 690 -1.7291 0.3788 1.7600 -104 691 -1.6679 0.3753 1.7600 -104 692 -1.6116 0.3653 1.7600 -104 693 -1.5628 0.3539 1.7600 -104 694 -1.5096 0.3428 1.7600 -104 695 -1.4529 0.3289 1.7600 -104 696 -1.3919 0.3151 1.7600 -104 697 -1.3265 0.3028 1.7600 -104 698 -1.2664 0.2937 1.7600 -104 699 -1.2072 0.2882 1.7600 -104 700 -1.1482 0.2872 1.7600 -104 701 -1.0889 0.2921 1.7600 -104 702 -1.0307 0.2988 1.7600 -104 703 -0.9713 0.3076 1.7600 -104 704 -0.9112 0.3184 1.7600 -104 705 -0.8473 0.3321 1.7600 -104 706 -0.7878 0.3464 1.7600 -104 707 -0.7219 0.3558 1.7600 -104 708 -0.6523 0.3593 1.7600 -104 709 -0.5768 0.3582 1.7600 -104 710 -0.4937 0.3506 1.7600 -104 711 -0.4149 0.3419 1.7600 -104 712 -0.3398 0.3320 1.7600 -104 713 -0.2640 0.3211 1.7600 -104 714 -0.1897 0.3110 1.7600 -104 715 -0.1184 0.2962 1.7600 -104 716 -0.0472 0.2815 1.7600 -104 717 0.0195 0.2686 1.7600 -104 718 0.0780 0.2606 1.7600 -104 719 0.1368 0.2565 1.7600 -104 720 0.1965 0.2596 1.7600 -104 721 0.2551 0.2658 1.7600 -104 722 0.3184 0.2737 1.7600 -104 723 0.3819 0.2821 1.7600 -104 724 0.4484 0.2918 1.7600 -104 725 0.5134 0.3048 1.7600 -104 726 0.5823 0.3195 1.7600 -104 727 0.6494 0.3325 1.7600 -104 728 0.7045 0.3427 1.7600 -104 729 0.7644 0.3470 1.7600 -104 730 0.8359 0.3465 1.7600 -104 731 0.9060 0.3416 1.7600 -104 732 0.9641 0.3353 1.7600 -104 733 1.0193 0.3268 1.7600 -104 734 1.0724 0.3191 1.7600 -104 735 1.1241 0.3129 1.7600 -104 736 1.1768 0.3083 1.7600 -104 737 1.2308 0.3048 1.7600 -104 738 1.2749 0.2993 1.7600 -104 739 1.3275 0.3019 1.7600 -104 740 1.3800 0.3068 1.7600 -104 741 1.4352 0.3170 1.7600 -104 742 1.4914 0.3332 1.7600 -104 743 1.5465 0.3461 1.7600 -104 744 1.6061 0.3622 1.7600 -104 745 1.6633 0.3766 1.7600 -104 746 1.7227 0.3905 1.7600 -104 747 1.7863 0.4025 1.7600 -104 748 1.8417 0.4094 1.7600 -104 749 1.8979 0.4105 1.7600 -104 750 1.9571 0.4049 1.7600 -104 751 2.0214 0.3967 1.7600 -104 752 2.0832 0.3861 1.7600 -104 753 2.1429 0.3772 1.7600 -104 754 2.2001 0.3653 1.7600 -104 755 2.2569 0.3491 1.7600 -104 756 2.3140 0.3294 1.7600 -104 757 2.3731 0.3083 1.7600 -104 758 2.4344 0.2921 1.7600 -104 759 2.4949 0.2812 1.7600 -104 760 2.5558 0.2772 1.7600 -104 761 2.6189 0.2778 1.7600 -104 762 2.6797 0.2791 1.7600 -104 763 2.7421 0.2847 1.7600 -104 764 2.8026 0.2911 1.7600 -104 765 2.8670 0.3025 1.7600 -104 766 2.9351 0.3183 1.7600 -104 767 3.0023 0.3358 1.7600 -104 768 3.0730 0.3530 1.7600 -104 769 3.1397 0.3657 1.7600 -104 770 3.2003 0.3734 1.7600 -104 771 3.2612 0.3755 1.7600 -104 772 3.3252 0.3721 1.7600 -104 773 3.3915 0.3676 1.7600 -104 774 3.4512 0.3603 1.7600 -104 775 3.5104 0.3525 1.7600 -104 776 3.5687 0.3411 1.7600 -104 777 3.6260 0.3264 1.7600 -104 778 3.6849 0.3121 1.7600 -104 779 3.7461 0.2972 1.7600 -104 780 3.8022 0.2868 1.7600 -104 781 3.8585 0.2788 1.7600 -104 782 3.9154 0.2762 1.7600 -104 783 3.9720 0.2813 1.7600 -104 784 4.0328 0.2888 1.7600 -104 785 4.0916 0.2984 1.7600 -104 786 4.1525 0.3100 1.7600 -104 787 4.2141 0.3234 1.7600 -104 788 4.2785 0.3384 1.7600 -104 789 4.3464 0.3521 1.7600 -104 790 4.4134 0.3623 1.7600 -104 791 4.4713 0.3688 1.7600 -104 792 4.5245 0.3717 1.7600 -104 793 4.5815 0.3687 1.7600 -104 794 4.6409 0.3638 1.7600 -104 795 4.6946 0.3566 1.7600 -104 796 4.7453 0.3483 1.7600 -104 797 4.7928 0.3366 1.7600 -104 798 4.8418 0.3216 1.7600 -104 799 4.8938 0.3046 1.7600 -104 800 4.9476 0.2878 1.7600 -104 801 5.0035 0.2720 1.7600 -104 802 5.0569 0.2598 1.7600 -104 803 5.1163 0.2509 1.7600 -104 804 5.1760 0.2459 1.7600 -104 805 5.2331 0.2423 1.7600 -104 806 5.2900 0.2419 1.7600 -104 807 5.3476 0.2438 1.7600 -104 808 5.4058 0.2500 1.7600 -104 809 5.4664 0.2567 1.7600 -104 810 5.5335 0.2640 1.7600 -104 811 5.6019 0.2694 1.7600 -104 812 5.6655 0.2717 1.7600 -104 813 5.7263 0.2703 1.7600 -104 814 5.7885 0.2648 1.7600 -104 815 5.8520 0.2560 1.7600 -104 816 5.9134 0.2451 1.7600 -105 564 -7.8295 1.1611 1.7600 -105 565 -7.7953 1.1710 1.7600 -105 566 -7.7380 1.1548 1.7600 -105 567 -7.6826 1.1356 1.7600 -105 568 -7.6322 1.1126 1.7600 -105 569 -7.5842 1.0900 1.7600 -105 570 -7.5352 1.0688 1.7600 -105 571 -7.4817 1.0565 1.7600 -105 572 -7.4228 1.0514 1.7600 -105 573 -7.3599 1.0449 1.7600 -105 574 -7.2932 1.0363 1.7600 -105 575 -7.2247 1.0283 1.7600 -105 576 -7.1588 1.0210 1.7600 -105 577 -7.0984 1.0154 1.7600 -105 578 -7.0392 1.0121 1.7600 -105 579 -6.9782 1.0077 1.7600 -105 580 -6.9220 0.9968 1.7600 -105 581 -6.8727 0.9813 1.7600 -105 582 -6.8194 0.9660 1.7600 -105 583 -6.7599 0.9524 1.7600 -105 584 -6.6944 0.9336 1.7600 -105 585 -6.6275 0.9126 1.7600 -105 586 -6.5652 0.8918 1.7600 -105 587 -6.5062 0.8678 1.7600 -105 588 -6.4519 0.8450 1.7600 -105 589 -6.4055 0.8312 1.7600 -105 590 -6.3554 0.8267 1.7600 -105 591 -6.3012 0.8256 1.7600 -105 592 -6.2429 0.8275 1.7600 -105 593 -6.1867 0.8317 1.7600 -105 594 -6.1301 0.8420 1.7600 -105 595 -6.0803 0.8499 1.7600 -105 596 -6.0320 0.8590 1.7600 -105 597 -5.9836 0.8682 1.7600 -105 598 -5.9348 0.8698 1.7600 -105 599 -5.8889 0.8636 1.7600 -105 600 -5.8388 0.8546 1.7600 -105 601 -5.7878 0.8424 1.7600 -105 602 -5.7339 0.8278 1.7600 -105 603 -5.6811 0.8101 1.7600 -105 604 -5.6296 0.7885 1.7600 -105 605 -5.5773 0.7631 1.7600 -105 606 -5.5283 0.7368 1.7600 -105 607 -5.4789 0.7136 1.7600 -105 608 -5.4310 0.7001 1.7600 -105 609 -5.3825 0.6987 1.7600 -105 610 -5.3316 0.7013 1.7600 -105 611 -5.2789 0.7055 1.7600 -105 612 -5.2233 0.7092 1.7600 -105 613 -5.1655 0.7155 1.7600 -105 614 -5.1097 0.7240 1.7600 -105 615 -5.0538 0.7354 1.7600 -105 616 -5.0022 0.7474 1.7600 -105 617 -4.9490 0.7533 1.7600 -105 618 -4.8941 0.7483 1.7600 -105 619 -4.8409 0.7404 1.7600 -105 620 -4.7881 0.7322 1.7600 -105 621 -4.7314 0.7213 1.7600 -105 622 -4.6745 0.7059 1.7600 -105 623 -4.6167 0.6839 1.7600 -105 624 -4.5609 0.6597 1.7600 -105 625 -4.5072 0.6362 1.7600 -105 626 -4.4576 0.6132 1.7600 -105 627 -4.4072 0.5977 1.7600 -105 628 -4.3569 0.5924 1.7600 -105 629 -4.3082 0.5904 1.7600 -105 630 -4.2564 0.5870 1.7600 -105 631 -4.2053 0.5839 1.7600 -105 632 -4.1522 0.5824 1.7600 -105 633 -4.0981 0.5860 1.7600 -105 634 -4.0383 0.5961 1.7600 -105 635 -3.9842 0.6102 1.7600 -105 636 -3.9282 0.6225 1.7600 -105 637 -3.8736 0.6250 1.7600 -105 638 -3.8185 0.6218 1.7600 -105 639 -3.7677 0.6192 1.7600 -105 640 -3.7122 0.6179 1.7600 -105 641 -3.6535 0.6157 1.7600 -105 642 -3.5953 0.6124 1.7600 -105 643 -3.5338 0.6013 1.7600 -105 644 -3.4724 0.5847 1.7600 -105 645 -3.4115 0.5684 1.7600 -105 646 -3.3547 0.5549 1.7600 -105 647 -3.2995 0.5522 1.7600 -105 648 -3.2496 0.5547 1.7600 -105 649 -3.2003 0.5578 1.7600 -105 650 -3.1484 0.5607 1.7600 -105 651 -3.0986 0.5633 1.7600 -105 652 -3.0478 0.5712 1.7600 -105 653 -2.9957 0.5807 1.7600 -105 654 -2.9427 0.5926 1.7600 -105 655 -2.8890 0.6068 1.7600 -105 656 -2.8326 0.6159 1.7600 -105 657 -2.7768 0.6148 1.7600 -105 658 -2.7197 0.6082 1.7600 -105 659 -2.6617 0.6048 1.7600 -105 660 -2.6018 0.6038 1.7600 -105 661 -2.5412 0.6014 1.7600 -105 662 -2.4787 0.5936 1.7600 -105 663 -2.4131 0.5812 1.7600 -105 664 -2.3528 0.5698 1.7600 -105 665 -2.2958 0.5687 1.7600 -105 666 -2.2397 0.5769 1.7600 -105 667 -2.1837 0.5910 1.7600 -105 668 -2.1310 0.6056 1.7600 -105 669 -2.0787 0.6184 1.7600 -105 670 -2.0274 0.6311 1.7600 -105 671 -1.9766 0.6433 1.7600 -105 672 -1.9162 0.6599 1.7600 -105 673 -1.8586 0.6772 1.7600 -105 674 -1.7983 0.6906 1.7600 -105 675 -1.7363 0.6931 1.7600 -105 676 -1.6754 0.6887 1.7600 -105 677 -1.6186 0.6864 1.7600 -105 678 -1.5602 0.6831 1.7600 -105 679 -1.5025 0.6775 1.7600 -105 680 -1.4422 0.6689 1.7600 -105 681 -1.3824 0.6613 1.7600 -105 682 -1.3243 0.6531 1.7600 -105 683 -1.2668 0.6494 1.7600 -105 684 -1.2112 0.6522 1.7600 -105 685 -1.1627 0.6571 1.7600 -105 686 -1.1100 0.6635 1.7600 -105 687 -1.0561 0.6709 1.7600 -105 688 -0.9964 0.6850 1.7600 -105 689 -0.9338 0.6985 1.7600 -105 690 -0.8695 0.7109 1.7600 -105 691 -0.8051 0.7264 1.7600 -105 692 -0.7375 0.7411 1.7600 -105 693 -0.6703 0.7418 1.7600 -105 694 -0.6064 0.7325 1.7600 -105 695 -0.5413 0.7227 1.7600 -105 696 -0.4733 0.7140 1.7600 -105 697 -0.4064 0.7061 1.7600 -105 698 -0.3363 0.6965 1.7600 -105 699 -0.2701 0.6844 1.7600 -105 700 -0.2082 0.6688 1.7600 -105 701 -0.1487 0.6568 1.7600 -105 702 -0.0909 0.6520 1.7600 -105 703 -0.0332 0.6588 1.7600 -105 704 0.0264 0.6710 1.7600 -105 705 0.0886 0.6864 1.7600 -105 706 0.1523 0.7001 1.7600 -105 707 0.2153 0.7155 1.7600 -105 708 0.2767 0.7318 1.7600 -105 709 0.3375 0.7518 1.7600 -105 710 0.3959 0.7678 1.7600 -105 711 0.4520 0.7749 1.7600 -105 712 0.5079 0.7727 1.7600 -105 713 0.5652 0.7670 1.7600 -105 714 0.6249 0.7644 1.7600 -105 715 0.6862 0.7613 1.7600 -105 716 0.7506 0.7530 1.7600 -105 717 0.8150 0.7454 1.7600 -105 718 0.8752 0.7345 1.7600 -105 719 0.9377 0.7219 1.7600 -105 720 1.0054 0.7193 1.7600 -105 721 1.0707 0.7246 1.7600 -105 722 1.1335 0.7328 1.7600 -105 723 1.1978 0.7398 1.7600 -105 724 1.2636 0.7441 1.7600 -105 725 1.3271 0.7470 1.7600 -105 726 1.3934 0.7533 1.7600 -105 727 1.4551 0.7628 1.7600 -105 728 1.5184 0.7731 1.7600 -105 729 1.5787 0.7736 1.7600 -105 730 1.6349 0.7709 1.7600 -105 731 1.6894 0.7667 1.7600 -105 732 1.7478 0.7630 1.7600 -105 733 1.8033 0.7576 1.7600 -105 734 1.8596 0.7454 1.7600 -105 735 1.9143 0.7280 1.7600 -105 736 1.9641 0.7096 1.7600 -105 737 2.0121 0.6892 1.7600 -105 738 2.0641 0.6794 1.7600 -105 739 2.1165 0.6797 1.7600 -105 740 2.1645 0.6827 1.7600 -105 741 2.2140 0.6856 1.7600 -105 742 2.2646 0.6866 1.7600 -105 743 2.3186 0.6881 1.7600 -105 744 2.3752 0.6887 1.7600 -105 745 2.4350 0.6913 1.7600 -105 746 2.4961 0.6973 1.7600 -105 747 2.5576 0.6987 1.7600 -105 748 2.6205 0.6913 1.7600 -105 749 2.6812 0.6798 1.7600 -105 750 2.7415 0.6686 1.7600 -105 751 2.8032 0.6577 1.7600 -105 752 2.8640 0.6463 1.7600 -105 753 2.9257 0.6310 1.7600 -105 754 2.9880 0.6106 1.7600 -105 755 3.0515 0.5901 1.7600 -105 756 3.1191 0.5764 1.7600 -105 757 3.1848 0.5751 1.7600 -105 758 3.2456 0.5815 1.7600 -105 759 3.3064 0.5888 1.7600 -105 760 3.3672 0.5940 1.7600 -105 761 3.4265 0.6010 1.7600 -105 762 3.4870 0.6077 1.7600 -105 763 3.5487 0.6176 1.7600 -105 764 3.6110 0.6303 1.7600 -105 765 3.6676 0.6427 1.7600 -105 766 3.7297 0.6486 1.7600 -105 767 3.7842 0.6461 1.7600 -105 768 3.8361 0.6435 1.7600 -105 769 3.8901 0.6436 1.7600 -105 770 3.9472 0.6477 1.7600 -105 771 4.0082 0.6494 1.7600 -105 772 4.0729 0.6464 1.7600 -105 773 4.1344 0.6394 1.7600 -105 774 4.1967 0.6326 1.7600 -105 775 4.2570 0.6339 1.7600 -105 776 4.3182 0.6440 1.7600 -105 777 4.3820 0.6561 1.7600 -105 778 4.4435 0.6677 1.7600 -105 779 4.5013 0.6806 1.7600 -105 780 4.5641 0.6919 1.7600 -105 781 4.6276 0.7073 1.7600 -105 782 4.6853 0.7203 1.7600 -105 783 4.7460 0.7252 1.7600 -105 784 4.8026 0.7192 1.7600 -105 785 4.8623 0.7105 1.7600 -105 786 4.9248 0.7004 1.7600 -105 787 4.9833 0.6872 1.7600 -105 788 5.0400 0.6708 1.7600 -105 789 5.1040 0.6473 1.7600 -105 790 5.1732 0.6206 1.7600 -105 791 5.2398 0.5942 1.7600 -105 792 5.3082 0.5703 1.7600 -105 793 5.3792 0.5582 1.7600 -105 794 5.4452 0.5605 1.7600 -105 795 5.5080 0.5669 1.7600 -105 796 5.5700 0.5715 1.7600 -105 797 5.6276 0.5768 1.7600 -105 798 5.6846 0.5842 1.7600 -105 799 5.7491 0.5937 1.7600 -105 800 5.8168 0.6056 1.7600 -105 801 5.8856 0.6129 1.7600 -105 802 5.9555 0.6111 1.7600 -106 576 -7.8381 2.0794 1.7600 -106 577 -7.7828 2.0720 1.7600 -106 578 -7.7251 2.0672 1.7600 -106 579 -7.6622 2.0630 1.7600 -106 580 -7.5949 2.0597 1.7600 -106 581 -7.5271 2.0574 1.7600 -106 582 -7.4621 2.0588 1.7600 -106 583 -7.4038 2.0641 1.7600 -106 584 -7.3482 2.0701 1.7600 -106 585 -7.2944 2.0730 1.7600 -106 586 -7.2420 2.0717 1.7600 -106 587 -7.1890 2.0658 1.7600 -106 588 -7.1342 2.0556 1.7600 -106 589 -7.0775 2.0425 1.7600 -106 590 -7.0193 2.0275 1.7600 -106 591 -6.9608 2.0107 1.7600 -106 592 -6.9038 1.9925 1.7600 -106 593 -6.8518 1.9732 1.7600 -106 594 -6.8002 1.9522 1.7600 -106 595 -6.7486 1.9345 1.7600 -106 596 -6.6929 1.9157 1.7600 -106 597 -6.6339 1.9039 1.7600 -106 598 -6.5762 1.8888 1.7600 -106 599 -6.5162 1.8757 1.7600 -106 600 -6.4542 1.8610 1.7600 -106 601 -6.3977 1.8514 1.7600 -106 602 -6.3445 1.8439 1.7600 -106 603 -6.2945 1.8384 1.7600 -106 604 -6.2462 1.8301 1.7600 -106 605 -6.1997 1.8168 1.7600 -106 606 -6.1558 1.8019 1.7600 -106 607 -6.1101 1.7852 1.7600 -106 608 -6.0645 1.7685 1.7600 -106 609 -6.0198 1.7490 1.7600 -106 610 -5.9757 1.7304 1.7600 -106 611 -5.9346 1.7110 1.7600 -106 612 -5.8966 1.6906 1.7600 -106 613 -5.8585 1.6699 1.7600 -106 614 -5.8207 1.6511 1.7600 -106 615 -5.7793 1.6335 1.7600 -106 616 -5.7362 1.6201 1.7600 -106 617 -5.6983 1.6104 1.7600 -106 618 -5.6623 1.6046 1.7600 -106 619 -5.6247 1.6014 1.7600 -106 620 -5.5878 1.6061 1.7600 -106 621 -5.5515 1.6075 1.7600 -106 622 -5.5161 1.6105 1.7600 -106 623 -5.4791 1.6122 1.7600 -106 624 -5.4430 1.6156 1.7600 -106 625 -5.4041 1.6137 1.7600 -106 626 -5.3666 1.6102 1.7600 -106 627 -5.3296 1.6049 1.7600 -106 628 -5.2924 1.5985 1.7600 -106 629 -5.2509 1.5881 1.7600 -106 630 -5.2111 1.5741 1.7600 -106 631 -5.1690 1.5564 1.7600 -106 632 -5.1257 1.5405 1.7600 -106 633 -5.0831 1.5248 1.7600 -106 634 -5.0410 1.5097 1.7600 -106 635 -4.9969 1.4964 1.7600 -106 636 -4.9494 1.4852 1.7600 -106 637 -4.9005 1.4769 1.7600 -106 638 -4.8565 1.4713 1.7600 -106 639 -4.8124 1.4682 1.7600 -106 640 -4.7683 1.4634 1.7600 -106 641 -4.7260 1.4630 1.7600 -106 642 -4.6836 1.4645 1.7600 -106 643 -4.6417 1.4649 1.7600 -106 644 -4.5976 1.4614 1.7600 -106 645 -4.5548 1.4551 1.7600 -106 646 -4.5126 1.4468 1.7600 -106 647 -4.4710 1.4388 1.7600 -106 648 -4.4276 1.4263 1.7600 -106 649 -4.3826 1.4166 1.7600 -106 650 -4.3410 1.4046 1.7600 -106 651 -4.2996 1.3915 1.7600 -106 652 -4.2595 1.3789 1.7600 -106 653 -4.2168 1.3701 1.7600 -106 654 -4.1757 1.3659 1.7600 -106 655 -4.1356 1.3632 1.7600 -106 656 -4.0903 1.3633 1.7600 -106 657 -4.0484 1.3633 1.7600 -106 658 -4.0019 1.3665 1.7600 -106 659 -3.9548 1.3740 1.7600 -106 660 -3.9060 1.3781 1.7600 -106 661 -3.8557 1.3827 1.7600 -106 662 -3.8039 1.3799 1.7600 -106 663 -3.7527 1.3745 1.7600 -106 664 -3.7038 1.3664 1.7600 -106 665 -3.6506 1.3551 1.7600 -106 666 -3.5978 1.3435 1.7600 -106 667 -3.5392 1.3309 1.7600 -106 668 -3.4853 1.3155 1.7600 -106 669 -3.4308 1.3018 1.7600 -106 670 -3.3787 1.2950 1.7600 -106 671 -3.3202 1.2906 1.7600 -106 672 -3.2671 1.2917 1.7600 -106 673 -3.2123 1.2932 1.7600 -106 674 -3.1557 1.3003 1.7600 -106 675 -3.0991 1.3109 1.7600 -106 676 -3.0382 1.3207 1.7600 -106 677 -2.9802 1.3293 1.7600 -106 678 -2.9211 1.3347 1.7600 -106 679 -2.8598 1.3353 1.7600 -106 680 -2.7983 1.3322 1.7600 -106 681 -2.7384 1.3273 1.7600 -106 682 -2.6768 1.3205 1.7600 -106 683 -2.6104 1.3124 1.7600 -106 684 -2.5404 1.3032 1.7600 -106 685 -2.4706 1.2948 1.7600 -106 686 -2.4018 1.2893 1.7600 -106 687 -2.3332 1.2882 1.7600 -106 688 -2.2685 1.2907 1.7600 -106 689 -2.2058 1.2930 1.7600 -106 690 -2.1430 1.2985 1.7600 -106 691 -2.0763 1.3052 1.7600 -106 692 -2.0067 1.3102 1.7600 -106 693 -1.9467 1.3192 1.7600 -106 694 -1.8796 1.3260 1.7600 -106 695 -1.8106 1.3285 1.7600 -106 696 -1.7481 1.3268 1.7600 -106 697 -1.6841 1.3218 1.7600 -106 698 -1.6222 1.3167 1.7600 -106 699 -1.5562 1.3113 1.7600 -106 700 -1.4879 1.3064 1.7600 -106 701 -1.4224 1.2999 1.7600 -106 702 -1.3585 1.2939 1.7600 -106 703 -1.2925 1.2919 1.7600 -106 704 -1.2268 1.2939 1.7600 -106 705 -1.1630 1.2974 1.7600 -106 706 -1.0985 1.3016 1.7600 -106 707 -1.0371 1.3077 1.7600 -106 708 -0.9738 1.3164 1.7600 -106 709 -0.9145 1.3260 1.7600 -106 710 -0.8529 1.3345 1.7600 -106 711 -0.7912 1.3409 1.7600 -106 712 -0.7294 1.3453 1.7600 -106 713 -0.6674 1.3455 1.7600 -106 714 -0.6104 1.3433 1.7600 -106 715 -0.5523 1.3419 1.7600 -106 716 -0.4921 1.3394 1.7600 -106 717 -0.4309 1.3369 1.7600 -106 718 -0.3705 1.3326 1.7600 -106 719 -0.3151 1.3272 1.7600 -106 720 -0.2562 1.3250 1.7600 -106 721 -0.1918 1.3271 1.7600 -106 722 -0.1306 1.3327 1.7600 -106 723 -0.0719 1.3385 1.7600 -106 724 -0.0121 1.3426 1.7600 -106 725 0.0476 1.3503 1.7600 -106 726 0.1074 1.3627 1.7600 -106 727 0.1669 1.3734 1.7600 -106 728 0.2230 1.3867 1.7600 -106 729 0.2830 1.3959 1.7600 -106 730 0.3424 1.4012 1.7600 -106 731 0.4029 1.4017 1.7600 -106 732 0.4659 1.3980 1.7600 -106 733 0.5286 1.3993 1.7600 -106 734 0.5937 1.3979 1.7600 -106 735 0.6587 1.3970 1.7600 -106 736 0.7241 1.3941 1.7600 -106 737 0.7901 1.3947 1.7600 -106 738 0.8563 1.3958 1.7600 -106 739 0.9218 1.4018 1.7600 -106 740 0.9879 1.4093 1.7600 -106 741 1.0539 1.4141 1.7600 -106 742 1.1222 1.4222 1.7600 -106 743 1.1885 1.4309 1.7600 -106 744 1.2576 1.4406 1.7600 -106 745 1.3217 1.4484 1.7600 -106 746 1.3882 1.4509 1.7600 -106 747 1.4541 1.4523 1.7600 -106 748 1.5194 1.4509 1.7600 -106 749 1.5843 1.4468 1.7600 -106 750 1.6467 1.4422 1.7600 -106 751 1.7145 1.4367 1.7600 -106 752 1.7793 1.4297 1.7600 -106 753 1.8440 1.4238 1.7600 -106 754 1.9086 1.4190 1.7600 -106 755 1.9744 1.4218 1.7600 -106 756 2.0414 1.4278 1.7600 -106 757 2.1063 1.4336 1.7600 -106 758 2.1756 1.4384 1.7600 -106 759 2.2460 1.4455 1.7600 -106 760 2.3160 1.4559 1.7600 -106 761 2.3914 1.4654 1.7600 -106 762 2.4646 1.4710 1.7600 -106 763 2.5394 1.4720 1.7600 -106 764 2.6151 1.4716 1.7600 -106 765 2.6855 1.4696 1.7600 -106 766 2.7514 1.4669 1.7600 -106 767 2.8187 1.4637 1.7600 -106 768 2.8880 1.4599 1.7600 -106 769 2.9611 1.4568 1.7600 -106 770 3.0286 1.4538 1.7600 -106 771 3.0968 1.4540 1.7600 -106 772 3.1675 1.4591 1.7600 -106 773 3.2369 1.4644 1.7600 -106 774 3.3027 1.4697 1.7600 -106 775 3.3647 1.4752 1.7600 -106 776 3.4235 1.4808 1.7600 -106 777 3.4891 1.4901 1.7600 -106 778 3.5528 1.5018 1.7600 -106 779 3.6155 1.5117 1.7600 -106 780 3.6809 1.5196 1.7600 -106 781 3.7468 1.5244 1.7600 -106 782 3.8137 1.5257 1.7600 -106 783 3.8793 1.5257 1.7600 -106 784 3.9412 1.5265 1.7600 -106 785 4.0042 1.5270 1.7600 -106 786 4.0702 1.5295 1.7600 -106 787 4.1451 1.5322 1.7600 -106 788 4.2203 1.5349 1.7600 -106 789 4.2975 1.5417 1.7600 -106 790 4.3738 1.5555 1.7600 -106 791 4.4477 1.5701 1.7600 -106 792 4.5173 1.5858 1.7600 -106 793 4.5855 1.5994 1.7600 -106 794 4.6575 1.6164 1.7600 -106 795 4.7345 1.6372 1.7600 -106 796 4.8117 1.6592 1.7600 -106 797 4.8916 1.6779 1.7600 -106 798 4.9765 1.6944 1.7600 -106 799 5.0577 1.7069 1.7600 -106 800 5.1275 1.7187 1.7600 -106 801 5.1901 1.7298 1.7600 -106 802 5.2480 1.7377 1.7600 -106 803 5.3145 1.7501 1.7600 -106 804 5.3887 1.7643 1.7600 -106 805 5.4586 1.7740 1.7600 -106 806 5.5329 1.7861 1.7600 -106 807 5.6064 1.8015 1.7600 -106 808 5.6744 1.8181 1.7600 -106 809 5.7339 1.8348 1.7600 -106 810 5.7893 1.8505 1.7600 -106 811 5.8483 1.8659 1.7600 -106 812 5.9144 1.8835 1.7600 -107 597 -7.7938 0.9295 1.7600 -107 598 -7.7364 0.9231 1.7600 -107 599 -7.6753 0.9189 1.7600 -107 600 -7.6143 0.9195 1.7600 -107 601 -7.5590 0.9212 1.7600 -107 602 -7.5070 0.9209 1.7600 -107 603 -7.4553 0.9174 1.7600 -107 604 -7.4009 0.9082 1.7600 -107 605 -7.3423 0.8967 1.7600 -107 606 -7.2830 0.8825 1.7600 -107 607 -7.2215 0.8639 1.7600 -107 608 -7.1618 0.8444 1.7600 -107 609 -7.1052 0.8184 1.7600 -107 610 -7.0522 0.7913 1.7600 -107 611 -7.0005 0.7677 1.7600 -107 612 -6.9548 0.7476 1.7600 -107 613 -6.9031 0.7329 1.7600 -107 614 -6.8484 0.7189 1.7600 -107 615 -6.7910 0.7060 1.7600 -107 616 -6.7321 0.6979 1.7600 -107 617 -6.6721 0.6927 1.7600 -107 618 -6.6134 0.6885 1.7600 -107 619 -6.5559 0.6887 1.7600 -107 620 -6.4977 0.6895 1.7600 -107 621 -6.4420 0.6858 1.7600 -107 622 -6.3910 0.6766 1.7600 -107 623 -6.3397 0.6678 1.7600 -107 624 -6.2909 0.6596 1.7600 -107 625 -6.2400 0.6479 1.7600 -107 626 -6.1900 0.6351 1.7600 -107 627 -6.1431 0.6162 1.7600 -107 628 -6.0983 0.5945 1.7600 -107 629 -6.0571 0.5679 1.7600 -107 630 -6.0168 0.5401 1.7600 -107 631 -5.9772 0.5116 1.7600 -107 632 -5.9346 0.4870 1.7600 -107 633 -5.8917 0.4663 1.7600 -107 634 -5.8487 0.4481 1.7600 -107 635 -5.8006 0.4347 1.7600 -107 636 -5.7572 0.4227 1.7600 -107 637 -5.7131 0.4108 1.7600 -107 638 -5.6676 0.4036 1.7600 -107 639 -5.6207 0.4023 1.7600 -107 640 -5.5758 0.4050 1.7600 -107 641 -5.5276 0.4109 1.7600 -107 642 -5.4794 0.4194 1.7600 -107 643 -5.4295 0.4291 1.7600 -107 644 -5.3817 0.4352 1.7600 -107 645 -5.3327 0.4380 1.7600 -107 646 -5.2831 0.4379 1.7600 -107 647 -5.2341 0.4348 1.7600 -107 648 -5.1847 0.4326 1.7600 -107 649 -5.1343 0.4264 1.7600 -107 650 -5.0874 0.4162 1.7600 -107 651 -5.0424 0.4001 1.7600 -107 652 -4.9963 0.3877 1.7600 -107 653 -4.9471 0.3719 1.7600 -107 654 -4.8974 0.3585 1.7600 -107 655 -4.8505 0.3504 1.7600 -107 656 -4.8001 0.3443 1.7600 -107 657 -4.7516 0.3389 1.7600 -107 658 -4.7022 0.3380 1.7600 -107 659 -4.6533 0.3407 1.7600 -107 660 -4.6020 0.3448 1.7600 -107 661 -4.5489 0.3552 1.7600 -107 662 -4.4948 0.3685 1.7600 -107 663 -4.4402 0.3879 1.7600 -107 664 -4.3835 0.4069 1.7600 -107 665 -4.3309 0.4217 1.7600 -107 666 -4.2773 0.4332 1.7600 -107 667 -4.2257 0.4380 1.7600 -107 668 -4.1720 0.4428 1.7600 -107 669 -4.1202 0.4443 1.7600 -107 670 -4.0667 0.4451 1.7600 -107 671 -4.0067 0.4425 1.7600 -107 672 -3.9415 0.4331 1.7600 -107 673 -3.8785 0.4192 1.7600 -107 674 -3.8115 0.4020 1.7600 -107 675 -3.7474 0.3859 1.7600 -107 676 -3.6836 0.3791 1.7600 -107 677 -3.6205 0.3751 1.7600 -107 678 -3.5620 0.3725 1.7600 -107 679 -3.5020 0.3708 1.7600 -107 680 -3.4458 0.3702 1.7600 -107 681 -3.3855 0.3755 1.7600 -107 682 -3.3236 0.3861 1.7600 -107 683 -3.2617 0.4018 1.7600 -107 684 -3.1986 0.4172 1.7600 -107 685 -3.1314 0.4271 1.7600 -107 686 -3.0665 0.4308 1.7600 -107 687 -3.0017 0.4314 1.7600 -107 688 -2.9384 0.4319 1.7600 -107 689 -2.8747 0.4315 1.7600 -107 690 -2.8105 0.4272 1.7600 -107 691 -2.7491 0.4200 1.7600 -107 692 -2.6866 0.4064 1.7600 -107 693 -2.6258 0.3895 1.7600 -107 694 -2.5628 0.3734 1.7600 -107 695 -2.5026 0.3630 1.7600 -107 696 -2.4453 0.3576 1.7600 -107 697 -2.3852 0.3517 1.7600 -107 698 -2.3330 0.3507 1.7600 -107 699 -2.2785 0.3529 1.7600 -107 700 -2.2262 0.3551 1.7600 -107 701 -2.1682 0.3622 1.7600 -107 702 -2.1085 0.3696 1.7600 -107 703 -2.0441 0.3780 1.7600 -107 704 -1.9784 0.3875 1.7600 -107 705 -1.9121 0.3939 1.7600 -107 706 -1.8449 0.3938 1.7600 -107 707 -1.7822 0.3915 1.7600 -107 708 -1.7207 0.3901 1.7600 -107 709 -1.6612 0.3882 1.7600 -107 710 -1.5986 0.3855 1.7600 -107 711 -1.5348 0.3776 1.7600 -107 712 -1.4644 0.3668 1.7600 -107 713 -1.3928 0.3543 1.7600 -107 714 -1.3214 0.3454 1.7600 -107 715 -1.2524 0.3391 1.7600 -107 716 -1.1843 0.3376 1.7600 -107 717 -1.1159 0.3372 1.7600 -107 718 -1.0490 0.3393 1.7600 -107 719 -0.9809 0.3421 1.7600 -107 720 -0.9103 0.3483 1.7600 -107 721 -0.8379 0.3575 1.7600 -107 722 -0.7663 0.3678 1.7600 -107 723 -0.6976 0.3790 1.7600 -107 724 -0.6328 0.3850 1.7600 -107 725 -0.5705 0.3843 1.7600 -107 726 -0.5129 0.3818 1.7600 -107 727 -0.4552 0.3762 1.7600 -107 728 -0.3950 0.3704 1.7600 -107 729 -0.3302 0.3641 1.7600 -107 730 -0.2659 0.3553 1.7600 -107 731 -0.2061 0.3418 1.7600 -107 732 -0.1446 0.3301 1.7600 -107 733 -0.0846 0.3200 1.7600 -107 734 -0.0249 0.3141 1.7600 -107 735 0.0351 0.3116 1.7600 -107 736 0.0983 0.3100 1.7600 -107 737 0.1616 0.3114 1.7600 -107 738 0.2299 0.3151 1.7600 -107 739 0.2967 0.3223 1.7600 -107 740 0.3628 0.3324 1.7600 -107 741 0.4272 0.3411 1.7600 -107 742 0.4907 0.3494 1.7600 -107 743 0.5538 0.3557 1.7600 -107 744 0.6181 0.3561 1.7600 -107 745 0.6833 0.3558 1.7600 -107 746 0.7500 0.3560 1.7600 -107 747 0.8169 0.3532 1.7600 -107 748 0.8843 0.3475 1.7600 -107 749 0.9508 0.3392 1.7600 -107 750 1.0179 0.3295 1.7600 -107 751 1.0843 0.3175 1.7600 -107 752 1.1480 0.3084 1.7600 -107 753 1.2135 0.3027 1.7600 -107 754 1.2807 0.3008 1.7600 -107 755 1.3473 0.3000 1.7600 -107 756 1.4124 0.2997 1.7600 -107 757 1.4790 0.3009 1.7600 -107 758 1.5453 0.3081 1.7600 -107 759 1.6098 0.3205 1.7600 -107 760 1.6757 0.3319 1.7600 -107 761 1.7433 0.3405 1.7600 -107 762 1.8133 0.3408 1.7600 -107 763 1.8798 0.3396 1.7600 -107 764 1.9470 0.3379 1.7600 -107 765 2.0098 0.3373 1.7600 -107 766 2.0708 0.3322 1.7600 -107 767 2.1335 0.3252 1.7600 -107 768 2.1948 0.3127 1.7600 -107 769 2.2583 0.3029 1.7600 -107 770 2.3240 0.2904 1.7600 -107 771 2.3899 0.2832 1.7600 -107 772 2.4556 0.2841 1.7600 -107 773 2.5190 0.2872 1.7600 -107 774 2.5785 0.2881 1.7600 -107 775 2.6356 0.2938 1.7600 -107 776 2.6961 0.3029 1.7600 -107 777 2.7526 0.3185 1.7600 -107 778 2.8101 0.3286 1.7600 -107 779 2.8632 0.3400 1.7600 -107 780 2.9158 0.3501 1.7600 -107 781 2.9685 0.3530 1.7600 -107 782 3.0229 0.3573 1.7600 -107 783 3.0771 0.3602 1.7600 -107 784 3.1317 0.3574 1.7600 -107 785 3.1865 0.3586 1.7600 -107 786 3.2382 0.3519 1.7600 -107 787 3.2928 0.3416 1.7600 -107 788 3.3533 0.3308 1.7600 -107 789 3.4155 0.3255 1.7600 -107 790 3.4758 0.3247 1.7600 -107 791 3.5320 0.3271 1.7600 -107 792 3.5881 0.3319 1.7600 -107 793 3.6445 0.3374 1.7600 -107 794 3.7044 0.3486 1.7600 -107 795 3.7675 0.3582 1.7600 -107 796 3.8345 0.3661 1.7600 -107 797 3.8991 0.3729 1.7600 -107 798 3.9649 0.3751 1.7600 -107 799 4.0278 0.3732 1.7600 -107 800 4.0871 0.3718 1.7600 -107 801 4.1427 0.3685 1.7600 -107 802 4.1957 0.3627 1.7600 -107 803 4.2482 0.3504 1.7600 -107 804 4.3053 0.3312 1.7600 -107 805 4.3695 0.3093 1.7600 -107 806 4.4408 0.2880 1.7600 -107 807 4.5112 0.2697 1.7600 -107 808 4.5789 0.2551 1.7600 -107 809 4.6417 0.2426 1.7600 -107 810 4.7002 0.2327 1.7600 -107 811 4.7564 0.2223 1.7600 -107 812 4.8177 0.2135 1.7600 -107 813 4.8855 0.2069 1.7600 -107 814 4.9533 0.2063 1.7600 -107 815 5.0168 0.2059 1.7600 -107 816 5.0846 0.2039 1.7600 -107 817 5.1541 0.1906 1.7600 -107 818 5.2139 0.1746 1.7600 -107 819 5.2710 0.1565 1.7600 -107 820 5.3231 0.1374 1.7600 -107 821 5.3792 0.1156 1.7600 -107 822 5.4324 0.0865 1.7600 -107 823 5.4957 0.0558 1.7600 -107 824 5.5639 0.0263 1.7600 -107 825 5.6347 -0.0023 1.7600 -107 826 5.7056 -0.0233 1.7600 -107 827 5.7733 -0.0375 1.7600 -107 828 5.8352 -0.0462 1.7600 -107 829 5.8923 -0.0505 1.7600 -107 830 5.9475 -0.0519 1.7600 -108 592 -7.7853 2.0656 1.7600 -108 593 -7.7276 2.0544 1.7600 -108 594 -7.6732 2.0409 1.7600 -108 595 -7.6157 2.0258 1.7600 -108 596 -7.5584 2.0140 1.7600 -108 597 -7.5018 2.0057 1.7600 -108 598 -7.4450 1.9996 1.7600 -108 599 -7.3872 1.9948 1.7600 -108 600 -7.3282 1.9909 1.7600 -108 601 -7.2693 1.9892 1.7600 -108 602 -7.2102 1.9902 1.7600 -108 603 -7.1510 1.9935 1.7600 -108 604 -7.0912 1.9974 1.7600 -108 605 -7.0315 2.0003 1.7600 -108 606 -6.9740 1.9975 1.7600 -108 607 -6.9165 1.9864 1.7600 -108 608 -6.8591 1.9671 1.7600 -108 609 -6.8029 1.9459 1.7600 -108 610 -6.7508 1.9326 1.7600 -108 611 -6.6967 1.9148 1.7600 -108 612 -6.6424 1.8975 1.7600 -108 613 -6.5898 1.8759 1.7600 -108 614 -6.5358 1.8567 1.7600 -108 615 -6.4778 1.8367 1.7600 -108 616 -6.4179 1.8250 1.7600 -108 617 -6.3592 1.8174 1.7600 -108 618 -6.3022 1.8166 1.7600 -108 619 -6.2446 1.8210 1.7600 -108 620 -6.1904 1.8272 1.7600 -108 621 -6.1366 1.8394 1.7600 -108 622 -6.0839 1.8565 1.7600 -108 623 -6.0304 1.8741 1.7600 -108 624 -5.9790 1.8890 1.7600 -108 625 -5.9299 1.8982 1.7600 -108 626 -5.8830 1.9037 1.7600 -108 627 -5.8359 1.9049 1.7600 -108 628 -5.7913 1.9029 1.7600 -108 629 -5.7514 1.8999 1.7600 -108 630 -5.7096 1.8926 1.7600 -108 631 -5.6712 1.8827 1.7600 -108 632 -5.6380 1.8696 1.7600 -108 633 -5.6064 1.8567 1.7600 -108 634 -5.5732 1.8427 1.7600 -108 635 -5.5405 1.8318 1.7600 -108 636 -5.5051 1.8201 1.7600 -108 637 -5.4659 1.8120 1.7600 -108 638 -5.4277 1.8050 1.7600 -108 639 -5.3857 1.8042 1.7600 -108 640 -5.3411 1.8024 1.7600 -108 641 -5.2947 1.8033 1.7600 -108 642 -5.2461 1.8074 1.7600 -108 643 -5.1962 1.8165 1.7600 -108 644 -5.1483 1.8268 1.7600 -108 645 -5.1043 1.8364 1.7600 -108 646 -5.0629 1.8428 1.7600 -108 647 -5.0203 1.8378 1.7600 -108 648 -4.9727 1.8306 1.7600 -108 649 -4.9313 1.8213 1.7600 -108 650 -4.8911 1.8105 1.7600 -108 651 -4.8485 1.7993 1.7600 -108 652 -4.8057 1.7860 1.7600 -108 653 -4.7632 1.7676 1.7600 -108 654 -4.7218 1.7465 1.7600 -108 655 -4.6827 1.7232 1.7600 -108 656 -4.6400 1.7007 1.7600 -108 657 -4.5986 1.6810 1.7600 -108 658 -4.5594 1.6669 1.7600 -108 659 -4.5164 1.6549 1.7600 -108 660 -4.4731 1.6460 1.7600 -108 661 -4.4318 1.6393 1.7600 -108 662 -4.3893 1.6327 1.7600 -108 663 -4.3440 1.6290 1.7600 -108 664 -4.2980 1.6273 1.7600 -108 665 -4.2527 1.6288 1.7600 -108 666 -4.2102 1.6312 1.7600 -108 667 -4.1708 1.6339 1.7600 -108 668 -4.1283 1.6309 1.7600 -108 669 -4.0859 1.6238 1.7600 -108 670 -4.0426 1.6121 1.7600 -108 671 -3.9994 1.5985 1.7600 -108 672 -3.9566 1.5823 1.7600 -108 673 -3.9139 1.5665 1.7600 -108 674 -3.8714 1.5477 1.7600 -108 675 -3.8295 1.5263 1.7600 -108 676 -3.7836 1.5039 1.7600 -108 677 -3.7381 1.4840 1.7600 -108 678 -3.6881 1.4701 1.7600 -108 679 -3.6391 1.4604 1.7600 -108 680 -3.5873 1.4571 1.7600 -108 681 -3.5302 1.4582 1.7600 -108 682 -3.4723 1.4611 1.7600 -108 683 -3.4114 1.4691 1.7600 -108 684 -3.3486 1.4863 1.7600 -108 685 -3.2822 1.5068 1.7600 -108 686 -3.2152 1.5212 1.7600 -108 687 -3.1502 1.5245 1.7600 -108 688 -3.0844 1.5207 1.7600 -108 689 -3.0208 1.5156 1.7600 -108 690 -2.9613 1.5118 1.7600 -108 691 -2.9004 1.5084 1.7600 -108 692 -2.8374 1.5007 1.7600 -108 693 -2.7687 1.4907 1.7600 -108 694 -2.6971 1.4773 1.7600 -108 695 -2.6268 1.4647 1.7600 -108 696 -2.5641 1.4593 1.7600 -108 697 -2.5030 1.4584 1.7600 -108 698 -2.4418 1.4599 1.7600 -108 699 -2.3839 1.4622 1.7600 -108 700 -2.3221 1.4624 1.7600 -108 701 -2.2603 1.4692 1.7600 -108 702 -2.1942 1.4768 1.7600 -108 703 -2.1221 1.4866 1.7600 -108 704 -2.0510 1.4998 1.7600 -108 705 -1.9854 1.5110 1.7600 -108 706 -1.9216 1.5152 1.7600 -108 707 -1.8597 1.5109 1.7600 -108 708 -1.8019 1.5027 1.7600 -108 709 -1.7437 1.4964 1.7600 -108 710 -1.6829 1.4916 1.7600 -108 711 -1.6198 1.4850 1.7600 -108 712 -1.5552 1.4741 1.7600 -108 713 -1.4878 1.4629 1.7600 -108 714 -1.4274 1.4509 1.7600 -108 715 -1.3665 1.4468 1.7600 -108 716 -1.3060 1.4396 1.7600 -108 717 -1.2425 1.4368 1.7600 -108 718 -1.1787 1.4362 1.7600 -108 719 -1.1187 1.4363 1.7600 -108 720 -1.0599 1.4377 1.7600 -108 721 -0.9916 1.4439 1.7600 -108 722 -0.9207 1.4536 1.7600 -108 723 -0.8534 1.4640 1.7600 -108 724 -0.7962 1.4746 1.7600 -108 725 -0.7409 1.4782 1.7600 -108 726 -0.6833 1.4773 1.7600 -108 727 -0.6278 1.4710 1.7600 -108 728 -0.5735 1.4640 1.7600 -108 729 -0.5188 1.4584 1.7600 -108 730 -0.4616 1.4542 1.7600 -108 731 -0.4016 1.4462 1.7600 -108 732 -0.3341 1.4359 1.7600 -108 733 -0.2718 1.4178 1.7600 -108 734 -0.2204 1.4080 1.7600 -108 735 -0.1659 1.4010 1.7600 -108 736 -0.1083 1.3987 1.7600 -108 737 -0.0473 1.3986 1.7600 -108 738 0.0129 1.3989 1.7600 -108 739 0.0733 1.4069 1.7600 -108 740 0.1330 1.4171 1.7600 -108 741 0.1910 1.4313 1.7600 -108 742 0.2551 1.4461 1.7600 -108 743 0.3180 1.4652 1.7600 -108 744 0.3817 1.4827 1.7600 -108 745 0.4430 1.4963 1.7600 -108 746 0.5048 1.5007 1.7600 -108 747 0.5631 1.4990 1.7600 -108 748 0.6201 1.4952 1.7600 -108 749 0.6798 1.4926 1.7600 -108 750 0.7416 1.4914 1.7600 -108 751 0.8025 1.4898 1.7600 -108 752 0.8652 1.4835 1.7600 -108 753 0.9255 1.4745 1.7600 -108 754 0.9794 1.4660 1.7600 -108 755 1.0361 1.4588 1.7600 -108 756 1.0921 1.4533 1.7600 -108 757 1.1463 1.4564 1.7600 -108 758 1.1969 1.4580 1.7600 -108 759 1.2481 1.4620 1.7600 -108 760 1.3019 1.4687 1.7600 -108 761 1.3597 1.4757 1.7600 -108 762 1.4237 1.4866 1.7600 -108 763 1.4831 1.4987 1.7600 -108 764 1.5335 1.5128 1.7600 -108 765 1.5871 1.5203 1.7600 -108 766 1.6424 1.5258 1.7600 -108 767 1.6996 1.5238 1.7600 -108 768 1.7562 1.5204 1.7600 -108 769 1.8172 1.5180 1.7600 -108 770 1.8780 1.5135 1.7600 -108 771 1.9416 1.5060 1.7600 -108 772 2.0090 1.4929 1.7600 -108 773 2.0773 1.4766 1.7600 -108 774 2.1462 1.4617 1.7600 -108 775 2.2143 1.4522 1.7600 -108 776 2.2848 1.4473 1.7600 -108 777 2.3556 1.4492 1.7600 -108 778 2.4249 1.4506 1.7600 -108 779 2.4924 1.4550 1.7600 -108 780 2.5633 1.4615 1.7600 -108 781 2.6366 1.4698 1.7600 -108 782 2.7139 1.4804 1.7600 -108 783 2.7899 1.4907 1.7600 -108 784 2.8625 1.4990 1.7600 -108 785 2.9325 1.4981 1.7600 -108 786 3.0034 1.4927 1.7600 -108 787 3.0714 1.4835 1.7600 -108 788 3.1379 1.4737 1.7600 -108 789 3.2063 1.4647 1.7600 -108 790 3.2787 1.4554 1.7600 -108 791 3.3561 1.4466 1.7600 -108 792 3.4365 1.4330 1.7600 -108 793 3.5156 1.4260 1.7600 -108 794 3.5876 1.4264 1.7600 -108 795 3.6577 1.4325 1.7600 -108 796 3.7271 1.4430 1.7600 -108 797 3.7985 1.4476 1.7600 -108 798 3.8662 1.4671 1.7600 -108 799 3.9371 1.4864 1.7600 -108 800 4.0063 1.5094 1.7600 -108 801 4.0905 1.5356 1.7600 -108 802 4.1717 1.5560 1.7600 -108 803 4.2523 1.5659 1.7600 -108 804 4.3304 1.5736 1.7600 -108 805 4.4070 1.5749 1.7600 -108 806 4.4795 1.5822 1.7600 -108 807 4.5561 1.5908 1.7600 -108 808 4.6386 1.5968 1.7600 -108 809 4.7282 1.6016 1.7600 -108 810 4.8187 1.6090 1.7600 -108 811 4.9032 1.6276 1.7600 -108 812 4.9797 1.6520 1.7600 -108 813 5.0484 1.6775 1.7600 -108 814 5.1150 1.7039 1.7600 -108 815 5.1814 1.7374 1.7600 -108 816 5.2552 1.7787 1.7600 -108 817 5.3343 1.8246 1.7600 -108 818 5.4196 1.8753 1.7600 -108 819 5.5111 1.9256 1.7600 -108 820 5.6032 1.9665 1.7600 -108 821 5.6906 1.9935 1.7600 -108 822 5.7721 2.0181 1.7600 -108 823 5.8494 2.0454 1.7600 -108 824 5.9288 2.0739 1.7600 -109 583 -7.7907 1.4241 1.7600 -109 584 -7.7369 1.4150 1.7600 -109 585 -7.6855 1.4045 1.7600 -109 586 -7.6358 1.3931 1.7600 -109 587 -7.5864 1.3823 1.7600 -109 588 -7.5382 1.3736 1.7600 -109 589 -7.4913 1.3671 1.7600 -109 590 -7.4445 1.3647 1.7600 -109 591 -7.3959 1.3651 1.7600 -109 592 -7.3450 1.3671 1.7600 -109 593 -7.2929 1.3698 1.7600 -109 594 -7.2399 1.3727 1.7600 -109 595 -7.1889 1.3756 1.7600 -109 596 -7.1403 1.3773 1.7600 -109 597 -7.0948 1.3767 1.7600 -109 598 -7.0502 1.3746 1.7600 -109 599 -7.0053 1.3712 1.7600 -109 600 -6.9606 1.3661 1.7600 -109 601 -6.9161 1.3596 1.7600 -109 602 -6.8706 1.3513 1.7600 -109 603 -6.8233 1.3390 1.7600 -109 604 -6.7746 1.3226 1.7600 -109 605 -6.7253 1.3037 1.7600 -109 606 -6.6771 1.2839 1.7600 -109 607 -6.6282 1.2661 1.7600 -109 608 -6.5789 1.2513 1.7600 -109 609 -6.5287 1.2394 1.7600 -109 610 -6.4774 1.2296 1.7600 -109 611 -6.4235 1.2218 1.7600 -109 612 -6.3689 1.2155 1.7600 -109 613 -6.3157 1.2100 1.7600 -109 614 -6.2648 1.2032 1.7600 -109 615 -6.2166 1.1935 1.7600 -109 616 -6.1723 1.1870 1.7600 -109 617 -6.1270 1.1726 1.7600 -109 618 -6.0888 1.1566 1.7600 -109 619 -6.0510 1.1427 1.7600 -109 620 -6.0129 1.1255 1.7600 -109 621 -5.9770 1.1075 1.7600 -109 622 -5.9413 1.0906 1.7600 -109 623 -5.9043 1.0753 1.7600 -109 624 -5.8687 1.0616 1.7600 -109 625 -5.8340 1.0523 1.7600 -109 626 -5.7987 1.0446 1.7600 -109 627 -5.7647 1.0387 1.7600 -109 628 -5.7266 1.0350 1.7600 -109 629 -5.6882 1.0327 1.7600 -109 630 -5.6484 1.0324 1.7600 -109 631 -5.6083 1.0319 1.7600 -109 632 -5.5676 1.0336 1.7600 -109 633 -5.5242 1.0309 1.7600 -109 634 -5.4824 1.0249 1.7600 -109 635 -5.4392 1.0191 1.7600 -109 636 -5.3966 1.0079 1.7600 -109 637 -5.3539 0.9964 1.7600 -109 638 -5.3107 0.9835 1.7600 -109 639 -5.2683 0.9671 1.7600 -109 640 -5.2259 0.9495 1.7600 -109 641 -5.1829 0.9354 1.7600 -109 642 -5.1396 0.9252 1.7600 -109 643 -5.0950 0.9192 1.7600 -109 644 -5.0475 0.9177 1.7600 -109 645 -5.0007 0.9183 1.7600 -109 646 -4.9520 0.9242 1.7600 -109 647 -4.9032 0.9335 1.7600 -109 648 -4.8540 0.9463 1.7600 -109 649 -4.8050 0.9590 1.7600 -109 650 -4.7570 0.9693 1.7600 -109 651 -4.7135 0.9757 1.7600 -109 652 -4.6655 0.9779 1.7600 -109 653 -4.6198 0.9783 1.7600 -109 654 -4.5742 0.9738 1.7600 -109 655 -4.5257 0.9664 1.7600 -109 656 -4.4774 0.9561 1.7600 -109 657 -4.4304 0.9429 1.7600 -109 658 -4.3807 0.9263 1.7600 -109 659 -4.3336 0.9107 1.7600 -109 660 -4.2801 0.8965 1.7600 -109 661 -4.2277 0.8892 1.7600 -109 662 -4.1750 0.8852 1.7600 -109 663 -4.1228 0.8822 1.7600 -109 664 -4.0700 0.8830 1.7600 -109 665 -4.0145 0.8835 1.7600 -109 666 -3.9557 0.8852 1.7600 -109 667 -3.8984 0.8862 1.7600 -109 668 -3.8376 0.8817 1.7600 -109 669 -3.7790 0.8780 1.7600 -109 670 -3.7196 0.8719 1.7600 -109 671 -3.6604 0.8639 1.7600 -109 672 -3.6013 0.8553 1.7600 -109 673 -3.5387 0.8421 1.7600 -109 674 -3.4780 0.8295 1.7600 -109 675 -3.4161 0.8177 1.7600 -109 676 -3.3545 0.8094 1.7600 -109 677 -3.2917 0.8046 1.7600 -109 678 -3.2277 0.8021 1.7600 -109 679 -3.1671 0.8029 1.7600 -109 680 -3.1069 0.8056 1.7600 -109 681 -3.0467 0.8107 1.7600 -109 682 -2.9845 0.8154 1.7600 -109 683 -2.9206 0.8165 1.7600 -109 684 -2.8568 0.8120 1.7600 -109 685 -2.7949 0.8064 1.7600 -109 686 -2.7346 0.7970 1.7600 -109 687 -2.6736 0.7840 1.7600 -109 688 -2.6119 0.7707 1.7600 -109 689 -2.5472 0.7587 1.7600 -109 690 -2.4814 0.7457 1.7600 -109 691 -2.4134 0.7390 1.7600 -109 692 -2.3463 0.7366 1.7600 -109 693 -2.2815 0.7367 1.7600 -109 694 -2.2183 0.7403 1.7600 -109 695 -2.1552 0.7476 1.7600 -109 696 -2.0876 0.7542 1.7600 -109 697 -2.0248 0.7672 1.7600 -109 698 -1.9556 0.7788 1.7600 -109 699 -1.8865 0.7884 1.7600 -109 700 -1.8203 0.7958 1.7600 -109 701 -1.7574 0.8011 1.7600 -109 702 -1.6969 0.8049 1.7600 -109 703 -1.6373 0.8080 1.7600 -109 704 -1.5763 0.8110 1.7600 -109 705 -1.5157 0.8145 1.7600 -109 706 -1.4559 0.8213 1.7600 -109 707 -1.3965 0.8333 1.7600 -109 708 -1.3370 0.8469 1.7600 -109 709 -1.2804 0.8594 1.7600 -109 710 -1.2206 0.8736 1.7600 -109 711 -1.1600 0.8882 1.7600 -109 712 -1.1001 0.8997 1.7600 -109 713 -1.0386 0.9065 1.7600 -109 714 -0.9748 0.9082 1.7600 -109 715 -0.9099 0.9033 1.7600 -109 716 -0.8472 0.8911 1.7600 -109 717 -0.7858 0.8734 1.7600 -109 718 -0.7223 0.8539 1.7600 -109 719 -0.6572 0.8343 1.7600 -109 720 -0.5954 0.8188 1.7600 -109 721 -0.5375 0.8101 1.7600 -109 722 -0.4824 0.8040 1.7600 -109 723 -0.4287 0.8023 1.7600 -109 724 -0.3758 0.8042 1.7600 -109 725 -0.3253 0.8137 1.7600 -109 726 -0.2774 0.8262 1.7600 -109 727 -0.2305 0.8403 1.7600 -109 728 -0.1781 0.8516 1.7600 -109 729 -0.1246 0.8571 1.7600 -109 730 -0.0690 0.8559 1.7600 -109 731 -0.0115 0.8502 1.7600 -109 732 0.0465 0.8413 1.7600 -109 733 0.1079 0.8291 1.7600 -109 734 0.1735 0.8118 1.7600 -109 735 0.2291 0.7937 1.7600 -109 736 0.2839 0.7819 1.7600 -109 737 0.3358 0.7748 1.7600 -109 738 0.3872 0.7703 1.7600 -109 739 0.4412 0.7680 1.7600 -109 740 0.4978 0.7689 1.7600 -109 741 0.5557 0.7730 1.7600 -109 742 0.6131 0.7802 1.7600 -109 743 0.6693 0.7895 1.7600 -109 744 0.7250 0.7985 1.7600 -109 745 0.7775 0.8059 1.7600 -109 746 0.8399 0.8066 1.7600 -109 747 0.8950 0.8009 1.7600 -109 748 0.9492 0.7950 1.7600 -109 749 1.0073 0.7841 1.7600 -109 750 1.0646 0.7710 1.7600 -109 751 1.1214 0.7576 1.7600 -109 752 1.1777 0.7467 1.7600 -109 753 1.2326 0.7408 1.7600 -109 754 1.2865 0.7400 1.7600 -109 755 1.3411 0.7418 1.7600 -109 756 1.3979 0.7466 1.7600 -109 757 1.4552 0.7547 1.7600 -109 758 1.5120 0.7652 1.7600 -109 759 1.5689 0.7781 1.7600 -109 760 1.6267 0.7904 1.7600 -109 761 1.6845 0.7980 1.7600 -109 762 1.7414 0.8007 1.7600 -109 763 1.7973 0.8004 1.7600 -109 764 1.8537 0.7959 1.7600 -109 765 1.9100 0.7877 1.7600 -109 766 1.9654 0.7767 1.7600 -109 767 2.0215 0.7661 1.7600 -109 768 2.0782 0.7592 1.7600 -109 769 2.1344 0.7574 1.7600 -109 770 2.1899 0.7608 1.7600 -109 771 2.2459 0.7687 1.7600 -109 772 2.3022 0.7808 1.7600 -109 773 2.3575 0.7958 1.7600 -109 774 2.4111 0.8132 1.7600 -109 775 2.4657 0.8329 1.7600 -109 776 2.5287 0.8489 1.7600 -109 777 2.5892 0.8609 1.7600 -109 778 2.6452 0.8685 1.7600 -109 779 2.7019 0.8766 1.7600 -109 780 2.7582 0.8865 1.7600 -109 781 2.8139 0.8970 1.7600 -109 782 2.8678 0.9066 1.7600 -109 783 2.9235 0.9163 1.7600 -109 784 2.9824 0.9250 1.7600 -109 785 3.0414 0.9343 1.7600 -109 786 3.0968 0.9446 1.7600 -109 787 3.1511 0.9558 1.7600 -109 788 3.2073 0.9672 1.7600 -109 789 3.2649 0.9791 1.7600 -109 790 3.3210 0.9905 1.7600 -109 791 3.3768 0.9988 1.7600 -109 792 3.4348 1.0017 1.7600 -109 793 3.4924 1.0009 1.7600 -109 794 3.5470 0.9974 1.7600 -109 795 3.6001 0.9898 1.7600 -109 796 3.6541 0.9774 1.7600 -109 797 3.7111 0.9596 1.7600 -109 798 3.7666 0.9482 1.7600 -109 799 3.8208 0.9358 1.7600 -109 800 3.8818 0.9273 1.7600 -109 801 3.9468 0.9222 1.7600 -109 802 4.0106 0.9221 1.7600 -109 803 4.0741 0.9256 1.7600 -109 804 4.1443 0.9309 1.7600 -109 805 4.2171 0.9362 1.7600 -109 806 4.2920 0.9389 1.7600 -109 807 4.3646 0.9373 1.7600 -109 808 4.4334 0.9326 1.7600 -109 809 4.5006 0.9255 1.7600 -109 810 4.5658 0.9147 1.7600 -109 811 4.6309 0.9007 1.7600 -109 812 4.7020 0.8850 1.7600 -109 813 4.7766 0.8710 1.7600 -109 814 4.8512 0.8607 1.7600 -109 815 4.9245 0.8545 1.7600 -109 816 4.9977 0.8499 1.7600 -109 817 5.0679 0.8479 1.7600 -109 818 5.1429 0.8484 1.7600 -109 819 5.2180 0.8483 1.7600 -109 820 5.2998 0.8478 1.7600 -109 821 5.3840 0.8430 1.7600 -109 822 5.4657 0.8341 1.7600 -109 823 5.5423 0.8246 1.7600 -109 824 5.6121 0.8138 1.7600 -109 825 5.6796 0.7952 1.7600 -109 826 5.7458 0.7801 1.7600 -109 827 5.8180 0.7653 1.7600 -109 828 5.8992 0.7531 1.7600 -110 609 -7.8000 1.1682 1.7600 -110 610 -7.7472 1.1698 1.7600 -110 611 -7.6951 1.1778 1.7600 -110 612 -7.6440 1.1884 1.7600 -110 613 -7.5916 1.1976 1.7600 -110 614 -7.5389 1.2037 1.7600 -110 615 -7.4867 1.2042 1.7600 -110 616 -7.4347 1.1978 1.7600 -110 617 -7.3817 1.1842 1.7600 -110 618 -7.3256 1.1660 1.7600 -110 619 -7.2653 1.1442 1.7600 -110 620 -7.2035 1.1189 1.7600 -110 621 -7.1430 1.0898 1.7600 -110 622 -7.0855 1.0605 1.7600 -110 623 -7.0285 1.0339 1.7600 -110 624 -6.9734 1.0111 1.7600 -110 625 -6.9129 0.9991 1.7600 -110 626 -6.8582 0.9945 1.7600 -110 627 -6.8014 1.0003 1.7600 -110 628 -6.7433 1.0054 1.7600 -110 629 -6.6873 1.0094 1.7600 -110 630 -6.6297 1.0111 1.7600 -110 631 -6.5781 1.0146 1.7600 -110 632 -6.5268 1.0170 1.7600 -110 633 -6.4739 1.0194 1.7600 -110 634 -6.4232 1.0207 1.7600 -110 635 -6.3735 1.0154 1.7600 -110 636 -6.3259 1.0024 1.7600 -110 637 -6.2764 0.9833 1.7600 -110 638 -6.2289 0.9601 1.7600 -110 639 -6.1797 0.9372 1.7600 -110 640 -6.1292 0.9108 1.7600 -110 641 -6.0818 0.8808 1.7600 -110 642 -6.0327 0.8492 1.7600 -110 643 -5.9872 0.8160 1.7600 -110 644 -5.9371 0.7835 1.7600 -110 645 -5.8873 0.7592 1.7600 -110 646 -5.8359 0.7463 1.7600 -110 647 -5.7828 0.7397 1.7600 -110 648 -5.7271 0.7388 1.7600 -110 649 -5.6768 0.7462 1.7600 -110 650 -5.6257 0.7588 1.7600 -110 651 -5.5737 0.7778 1.7600 -110 652 -5.5158 0.7997 1.7600 -110 653 -5.4604 0.8182 1.7600 -110 654 -5.4018 0.8367 1.7600 -110 655 -5.3458 0.8499 1.7600 -110 656 -5.2896 0.8553 1.7600 -110 657 -5.2339 0.8500 1.7600 -110 658 -5.1821 0.8415 1.7600 -110 659 -5.1326 0.8296 1.7600 -110 660 -5.0830 0.8127 1.7600 -110 661 -5.0339 0.7971 1.7600 -110 662 -4.9824 0.7767 1.7600 -110 663 -4.9289 0.7489 1.7600 -110 664 -4.8755 0.7180 1.7600 -110 665 -4.8221 0.6837 1.7600 -110 666 -4.7732 0.6436 1.7600 -110 667 -4.7302 0.6053 1.7600 -110 668 -4.6911 0.5714 1.7600 -110 669 -4.6552 0.5398 1.7600 -110 670 -4.6235 0.5160 1.7600 -110 671 -4.5936 0.5015 1.7600 -110 672 -4.5638 0.4990 1.7600 -110 673 -4.5278 0.5107 1.7600 -110 674 -4.4838 0.5306 1.7600 -110 675 -4.4346 0.5558 1.7600 -110 676 -4.3777 0.5854 1.7600 -110 677 -4.3227 0.6184 1.7600 -110 678 -4.2638 0.6527 1.7600 -110 679 -4.2050 0.6864 1.7600 -110 680 -4.1449 0.7130 1.7600 -110 681 -4.0907 0.7311 1.7600 -110 682 -4.0374 0.7386 1.7600 -110 683 -3.9871 0.7362 1.7600 -110 684 -3.9321 0.7242 1.7600 -110 685 -3.8787 0.7053 1.7600 -110 686 -3.8205 0.6805 1.7600 -110 687 -3.7625 0.6534 1.7600 -110 688 -3.7069 0.6212 1.7600 -110 689 -3.6484 0.5937 1.7600 -110 690 -3.5927 0.5757 1.7600 -110 691 -3.5367 0.5674 1.7600 -110 692 -3.4877 0.5691 1.7600 -110 693 -3.4389 0.5797 1.7600 -110 694 -3.3911 0.5947 1.7600 -110 695 -3.3406 0.6136 1.7600 -110 696 -3.2845 0.6364 1.7600 -110 697 -3.2252 0.6602 1.7600 -110 698 -3.1640 0.6805 1.7600 -110 699 -3.1033 0.6999 1.7600 -110 700 -3.0402 0.7098 1.7600 -110 701 -2.9777 0.7101 1.7600 -110 702 -2.9186 0.7020 1.7600 -110 703 -2.8614 0.6901 1.7600 -110 704 -2.8055 0.6750 1.7600 -110 705 -2.7494 0.6559 1.7600 -110 706 -2.6910 0.6292 1.7600 -110 707 -2.6273 0.5989 1.7600 -110 708 -2.5614 0.5680 1.7600 -110 709 -2.4982 0.5445 1.7600 -110 710 -2.4377 0.5306 1.7600 -110 711 -2.3794 0.5240 1.7600 -110 712 -2.3228 0.5269 1.7600 -110 713 -2.2709 0.5365 1.7600 -110 714 -2.2199 0.5563 1.7600 -110 715 -2.1688 0.5792 1.7600 -110 716 -2.1093 0.6023 1.7600 -110 717 -2.0477 0.6298 1.7600 -110 718 -1.9809 0.6618 1.7600 -110 719 -1.9127 0.6875 1.7600 -110 720 -1.8375 0.6912 1.7600 -110 721 -1.7630 0.6741 1.7600 -110 722 -1.6913 0.6482 1.7600 -110 723 -1.6227 0.6219 1.7600 -110 724 -1.5595 0.5962 1.7600 -110 725 -1.4978 0.5747 1.7600 -110 726 -1.4332 0.5530 1.7600 -110 727 -1.3635 0.5282 1.7600 -110 728 -1.2915 0.5003 1.7600 -110 729 -1.2136 0.4767 1.7600 -110 730 -1.1377 0.4613 1.7600 -110 731 -1.0648 0.4579 1.7600 -110 732 -0.9957 0.4636 1.7600 -110 733 -0.9280 0.4790 1.7600 -110 734 -0.8625 0.4991 1.7600 -110 735 -0.7956 0.5272 1.7600 -110 736 -0.7296 0.5644 1.7600 -110 737 -0.6634 0.6043 1.7600 -110 738 -0.5996 0.6296 1.7600 -110 739 -0.5376 0.6354 1.7600 -110 740 -0.4767 0.6266 1.7600 -110 741 -0.4110 0.6030 1.7600 -110 742 -0.3520 0.5855 1.7600 -110 743 -0.2870 0.5584 1.7600 -110 744 -0.2228 0.5297 1.7600 -110 745 -0.1597 0.4963 1.7600 -110 746 -0.0921 0.4616 1.7600 -110 747 -0.0239 0.4269 1.7600 -110 748 0.0457 0.4028 1.7600 -110 749 0.1166 0.3936 1.7600 -110 750 0.1866 0.3951 1.7600 -110 751 0.2556 0.4049 1.7600 -110 752 0.3237 0.4205 1.7600 -110 753 0.3925 0.4462 1.7600 -110 754 0.4569 0.4811 1.7600 -110 755 0.5205 0.5163 1.7600 -110 756 0.5877 0.5419 1.7600 -110 757 0.6531 0.5537 1.7600 -110 758 0.7158 0.5468 1.7600 -110 759 0.7756 0.5313 1.7600 -110 760 0.8374 0.5075 1.7600 -110 761 0.8998 0.4839 1.7600 -110 762 0.9602 0.4624 1.7600 -110 763 1.0218 0.4400 1.7600 -110 764 1.0831 0.4153 1.7600 -110 765 1.1486 0.3881 1.7600 -110 766 1.2150 0.3616 1.7600 -110 767 1.2758 0.3465 1.7600 -110 768 1.3346 0.3473 1.7600 -110 769 1.3910 0.3568 1.7600 -110 770 1.4474 0.3710 1.7600 -110 771 1.5055 0.3897 1.7600 -110 772 1.5655 0.4100 1.7600 -110 773 1.6291 0.4364 1.7600 -110 774 1.6927 0.4620 1.7600 -110 775 1.7558 0.4808 1.7600 -110 776 1.8190 0.4923 1.7600 -110 777 1.8791 0.4919 1.7600 -110 778 1.9381 0.4855 1.7600 -110 779 1.9985 0.4772 1.7600 -110 780 2.0579 0.4709 1.7600 -110 781 2.1160 0.4644 1.7600 -110 782 2.1719 0.4521 1.7600 -110 783 2.2269 0.4305 1.7600 -110 784 2.2825 0.4045 1.7600 -110 785 2.3402 0.3806 1.7600 -110 786 2.4006 0.3642 1.7600 -110 787 2.4616 0.3577 1.7600 -110 788 2.5216 0.3615 1.7600 -110 789 2.5792 0.3722 1.7600 -110 790 2.6345 0.3852 1.7600 -110 791 2.6929 0.4013 1.7600 -110 792 2.7512 0.4220 1.7600 -110 793 2.8131 0.4464 1.7600 -110 794 2.8760 0.4709 1.7600 -110 795 2.9385 0.4886 1.7600 -110 796 3.0007 0.4976 1.7600 -110 797 3.0576 0.4953 1.7600 -110 798 3.1118 0.4880 1.7600 -110 799 3.1626 0.4762 1.7600 -110 800 3.2151 0.4624 1.7600 -110 801 3.2701 0.4460 1.7600 -110 802 3.3300 0.4288 1.7600 -110 803 3.3977 0.4134 1.7600 -110 804 3.4683 0.3972 1.7600 -110 805 3.5374 0.3806 1.7600 -110 806 3.5997 0.3676 1.7600 -110 807 3.6576 0.3611 1.7600 -110 808 3.7168 0.3604 1.7600 -110 809 3.7744 0.3666 1.7600 -110 810 3.8330 0.3751 1.7600 -110 811 3.8911 0.3864 1.7600 -110 812 3.9548 0.3999 1.7600 -110 813 4.0237 0.4155 1.7600 -110 814 4.0941 0.4274 1.7600 -110 815 4.1650 0.4359 1.7600 -110 816 4.2323 0.4390 1.7600 -110 817 4.2975 0.4338 1.7600 -110 818 4.3551 0.4271 1.7600 -110 819 4.4112 0.4192 1.7600 -110 820 4.4671 0.4130 1.7600 -110 821 4.5263 0.4058 1.7600 -110 822 4.5937 0.3966 1.7600 -110 823 4.6611 0.3890 1.7600 -110 824 4.7237 0.3894 1.7600 -110 825 4.7842 0.4008 1.7600 -110 826 4.8413 0.4173 1.7600 -110 827 4.8930 0.4388 1.7600 -110 828 4.9439 0.4617 1.7600 -110 829 4.9940 0.4847 1.7600 -110 830 5.0481 0.5068 1.7600 -110 831 5.1131 0.5285 1.7600 -110 832 5.1851 0.5535 1.7600 -110 833 5.2626 0.5692 1.7600 -110 834 5.3333 0.5720 1.7600 -110 835 5.3996 0.5644 1.7600 -110 836 5.4590 0.5525 1.7600 -110 837 5.5203 0.5372 1.7600 -110 838 5.5807 0.5209 1.7600 -110 839 5.6415 0.5036 1.7600 -110 840 5.7084 0.4853 1.7600 -110 841 5.7857 0.4666 1.7600 -110 842 5.8678 0.4501 1.7600 -110 843 5.9502 0.4408 1.7600 -111 621 -7.8068 1.7649 1.7600 -111 622 -7.7481 1.7419 1.7600 -111 623 -7.6967 1.7278 1.7600 -111 624 -7.6515 1.7266 1.7600 -111 625 -7.6078 1.7327 1.7600 -111 626 -7.5636 1.7415 1.7600 -111 627 -7.5178 1.7523 1.7600 -111 628 -7.4697 1.7655 1.7600 -111 629 -7.4222 1.7807 1.7600 -111 630 -7.3865 1.7972 1.7600 -111 631 -7.3547 1.8114 1.7600 -111 632 -7.3231 1.8183 1.7600 -111 633 -7.2847 1.8180 1.7600 -111 634 -7.2398 1.8100 1.7600 -111 635 -7.1881 1.7904 1.7600 -111 636 -7.1358 1.7662 1.7600 -111 637 -7.0834 1.7334 1.7600 -111 638 -7.0366 1.6905 1.7600 -111 639 -6.9884 1.6466 1.7600 -111 640 -6.9451 1.6058 1.7600 -111 641 -6.9033 1.5777 1.7600 -111 642 -6.8588 1.5485 1.7600 -111 643 -6.8113 1.5260 1.7600 -111 644 -6.7609 1.5066 1.7600 -111 645 -6.7122 1.4898 1.7600 -111 646 -6.6642 1.4794 1.7600 -111 647 -6.6134 1.4762 1.7600 -111 648 -6.5574 1.4772 1.7600 -111 649 -6.4935 1.4813 1.7600 -111 650 -6.4324 1.4886 1.7600 -111 651 -6.3791 1.4925 1.7600 -111 652 -6.3283 1.4923 1.7600 -111 653 -6.2782 1.4860 1.7600 -111 654 -6.2304 1.4751 1.7600 -111 655 -6.1876 1.4580 1.7600 -111 656 -6.1417 1.4417 1.7600 -111 657 -6.0949 1.4202 1.7600 -111 658 -6.0536 1.3961 1.7600 -111 659 -6.0272 1.3690 1.7600 -111 660 -6.0054 1.3435 1.7600 -111 661 -5.9868 1.3241 1.7600 -111 662 -5.9666 1.3110 1.7600 -111 663 -5.9350 1.3043 1.7600 -111 664 -5.8923 1.3024 1.7600 -111 665 -5.8553 1.3045 1.7600 -111 666 -5.8183 1.3061 1.7600 -111 667 -5.7774 1.3118 1.7600 -111 668 -5.7398 1.3237 1.7600 -111 669 -5.7029 1.3393 1.7600 -111 670 -5.6666 1.3578 1.7600 -111 671 -5.6328 1.3733 1.7600 -111 672 -5.6018 1.3883 1.7600 -111 673 -5.5637 1.4001 1.7600 -111 674 -5.5220 1.4021 1.7600 -111 675 -5.4747 1.3986 1.7600 -111 676 -5.4185 1.3921 1.7600 -111 677 -5.3603 1.3848 1.7600 -111 678 -5.2993 1.3697 1.7600 -111 679 -5.2392 1.3487 1.7600 -111 680 -5.1836 1.3153 1.7600 -111 681 -5.1232 1.2814 1.7600 -111 682 -5.0649 1.2541 1.7600 -111 683 -5.0095 1.2334 1.7600 -111 684 -4.9535 1.2217 1.7600 -111 685 -4.9003 1.2136 1.7600 -111 686 -4.8494 1.2035 1.7600 -111 687 -4.7995 1.1928 1.7600 -111 688 -4.7508 1.1862 1.7600 -111 689 -4.7034 1.1853 1.7600 -111 690 -4.6619 1.1919 1.7600 -111 691 -4.6165 1.2016 1.7600 -111 692 -4.5740 1.2112 1.7600 -111 693 -4.5328 1.2232 1.7600 -111 694 -4.4877 1.2285 1.7600 -111 695 -4.4396 1.2264 1.7600 -111 696 -4.3930 1.2196 1.7600 -111 697 -4.3479 1.2059 1.7600 -111 698 -4.3006 1.1867 1.7600 -111 699 -4.2491 1.1648 1.7600 -111 700 -4.1881 1.1428 1.7600 -111 701 -4.1311 1.1218 1.7600 -111 702 -4.0719 1.1088 1.7600 -111 703 -4.0173 1.1062 1.7600 -111 704 -3.9602 1.1112 1.7600 -111 705 -3.9042 1.1183 1.7600 -111 706 -3.8484 1.1257 1.7600 -111 707 -3.7940 1.1375 1.7600 -111 708 -3.7451 1.1512 1.7600 -111 709 -3.7040 1.1678 1.7600 -111 710 -3.6598 1.1866 1.7600 -111 711 -3.6190 1.2064 1.7600 -111 712 -3.5699 1.2224 1.7600 -111 713 -3.5152 1.2328 1.7600 -111 714 -3.4526 1.2402 1.7600 -111 715 -3.3856 1.2462 1.7600 -111 716 -3.3176 1.2483 1.7600 -111 717 -3.2459 1.2477 1.7600 -111 718 -3.1668 1.2446 1.7600 -111 719 -3.0868 1.2424 1.7600 -111 720 -3.0158 1.2425 1.7600 -111 721 -2.9587 1.2433 1.7600 -111 722 -2.9042 1.2494 1.7600 -111 723 -2.8469 1.2597 1.7600 -111 724 -2.7898 1.2700 1.7600 -111 725 -2.7344 1.2800 1.7600 -111 726 -2.6766 1.2948 1.7600 -111 727 -2.6157 1.3140 1.7600 -111 728 -2.5523 1.3398 1.7600 -111 729 -2.4855 1.3691 1.7600 -111 730 -2.4285 1.3852 1.7600 -111 731 -2.3696 1.3903 1.7600 -111 732 -2.3096 1.3891 1.7600 -111 733 -2.2496 1.3855 1.7600 -111 734 -2.1895 1.3794 1.7600 -111 735 -2.1307 1.3738 1.7600 -111 736 -2.0748 1.3637 1.7600 -111 737 -2.0118 1.3485 1.7600 -111 738 -1.9476 1.3327 1.7600 -111 739 -1.8899 1.3194 1.7600 -111 740 -1.8349 1.3135 1.7600 -111 741 -1.7803 1.3143 1.7600 -111 742 -1.7292 1.3227 1.7600 -111 743 -1.6812 1.3337 1.7600 -111 744 -1.6337 1.3463 1.7600 -111 745 -1.5799 1.3640 1.7600 -111 746 -1.5170 1.3895 1.7600 -111 747 -1.4473 1.4090 1.7600 -111 748 -1.3883 1.4345 1.7600 -111 749 -1.3313 1.4453 1.7600 -111 750 -1.2749 1.4484 1.7600 -111 751 -1.2147 1.4426 1.7600 -111 752 -1.1512 1.4341 1.7600 -111 753 -1.0862 1.4232 1.7600 -111 754 -1.0207 1.4078 1.7600 -111 755 -0.9563 1.3920 1.7600 -111 756 -0.8878 1.3682 1.7600 -111 757 -0.8197 1.3478 1.7600 -111 758 -0.7585 1.3362 1.7600 -111 759 -0.7029 1.3334 1.7600 -111 760 -0.6445 1.3387 1.7600 -111 761 -0.5840 1.3490 1.7600 -111 762 -0.5215 1.3623 1.7600 -111 763 -0.4569 1.3782 1.7600 -111 764 -0.3836 1.4029 1.7600 -111 765 -0.3097 1.4355 1.7600 -111 766 -0.2426 1.4600 1.7600 -111 767 -0.1855 1.4742 1.7600 -111 768 -0.1315 1.4826 1.7600 -111 769 -0.0739 1.4850 1.7600 -111 770 -0.0090 1.4835 1.7600 -111 771 0.0593 1.4788 1.7600 -111 772 0.1294 1.4698 1.7600 -111 773 0.2000 1.4569 1.7600 -111 774 0.2717 1.4430 1.7600 -111 775 0.3430 1.4257 1.7600 -111 776 0.4102 1.4117 1.7600 -111 777 0.4729 1.4068 1.7600 -111 778 0.5359 1.4084 1.7600 -111 779 0.6019 1.4143 1.7600 -111 780 0.6703 1.4244 1.7600 -111 781 0.7388 1.4384 1.7600 -111 782 0.8112 1.4548 1.7600 -111 783 0.8829 1.4727 1.7600 -111 784 0.9549 1.4969 1.7600 -111 785 1.0188 1.5159 1.7600 -111 786 1.0737 1.5222 1.7600 -111 787 1.1281 1.5191 1.7600 -111 788 1.1838 1.5091 1.7600 -111 789 1.2451 1.4943 1.7600 -111 790 1.3110 1.4798 1.7600 -111 791 1.3796 1.4624 1.7600 -111 792 1.4484 1.4429 1.7600 -111 793 1.5138 1.4215 1.7600 -111 794 1.5744 1.3999 1.7600 -111 795 1.6322 1.3919 1.7600 -111 796 1.6873 1.3917 1.7600 -111 797 1.7475 1.3971 1.7600 -111 798 1.8104 1.4054 1.7600 -111 799 1.8724 1.4154 1.7600 -111 800 1.9398 1.4268 1.7600 -111 801 2.0104 1.4434 1.7600 -111 802 2.0853 1.4615 1.7600 -111 803 2.1549 1.4823 1.7600 -111 804 2.2129 1.4981 1.7600 -111 805 2.2709 1.5086 1.7600 -111 806 2.3290 1.5142 1.7600 -111 807 2.3908 1.5134 1.7600 -111 808 2.4590 1.5125 1.7600 -111 809 2.5296 1.5058 1.7600 -111 810 2.5983 1.4961 1.7600 -111 811 2.6687 1.4790 1.7600 -111 812 2.7469 1.4605 1.7600 -111 813 2.8174 1.4449 1.7600 -111 814 2.8817 1.4427 1.7600 -111 815 2.9436 1.4503 1.7600 -111 816 3.0057 1.4585 1.7600 -111 817 3.0651 1.4703 1.7600 -111 818 3.1252 1.4801 1.7600 -111 819 3.1896 1.4942 1.7600 -111 820 3.2601 1.5068 1.7600 -111 821 3.3290 1.5218 1.7600 -111 822 3.3875 1.5313 1.7600 -111 823 3.4460 1.5374 1.7600 -111 824 3.5120 1.5413 1.7600 -111 825 3.5865 1.5373 1.7600 -111 826 3.6600 1.5345 1.7600 -111 827 3.7349 1.5298 1.7600 -111 828 3.8039 1.5189 1.7600 -111 829 3.8794 1.5071 1.7600 -111 830 3.9530 1.4993 1.7600 -111 831 4.0268 1.5020 1.7600 -111 832 4.0970 1.5168 1.7600 -111 833 4.1629 1.5354 1.7600 -111 834 4.2235 1.5592 1.7600 -111 835 4.2851 1.5881 1.7600 -111 836 4.3496 1.6235 1.7600 -111 837 4.4166 1.6570 1.7600 -111 838 4.4877 1.6895 1.7600 -111 839 4.5567 1.7187 1.7600 -111 840 4.6257 1.7308 1.7600 -111 841 4.6979 1.7338 1.7600 -111 842 4.7723 1.7285 1.7600 -111 843 4.8399 1.7199 1.7600 -111 844 4.9035 1.7082 1.7600 -111 845 4.9704 1.6928 1.7600 -111 846 5.0461 1.6702 1.7600 -111 847 5.1319 1.6455 1.7600 -111 848 5.2117 1.6260 1.7600 -111 849 5.2905 1.6128 1.7600 -111 850 5.3678 1.6039 1.7600 -111 851 5.4410 1.5964 1.7600 -111 852 5.5060 1.5874 1.7600 -111 853 5.5697 1.5764 1.7600 -111 854 5.6401 1.5678 1.7600 -111 855 5.7203 1.5646 1.7600 -111 856 5.8023 1.5725 1.7600 -111 857 5.8845 1.5854 1.7600 -112 611 -7.8230 1.9555 1.7600 -112 612 -7.7661 1.9409 1.7600 -112 613 -7.7074 1.9262 1.7600 -112 614 -7.6522 1.9104 1.7600 -112 615 -7.6039 1.8932 1.7600 -112 616 -7.5560 1.8761 1.7600 -112 617 -7.5076 1.8628 1.7600 -112 618 -7.4610 1.8536 1.7600 -112 619 -7.4141 1.8457 1.7600 -112 620 -7.3649 1.8386 1.7600 -112 621 -7.3137 1.8329 1.7600 -112 622 -7.2602 1.8284 1.7600 -112 623 -7.2043 1.8246 1.7600 -112 624 -7.1474 1.8224 1.7600 -112 625 -7.0947 1.8243 1.7600 -112 626 -7.0444 1.8273 1.7600 -112 627 -6.9928 1.8313 1.7600 -112 628 -6.9415 1.8327 1.7600 -112 629 -6.8914 1.8318 1.7600 -112 630 -6.8394 1.8287 1.7600 -112 631 -6.7877 1.8222 1.7600 -112 632 -6.7349 1.8165 1.7600 -112 633 -6.6843 1.8078 1.7600 -112 634 -6.6286 1.7960 1.7600 -112 635 -6.5791 1.7841 1.7600 -112 636 -6.5309 1.7721 1.7600 -112 637 -6.4874 1.7589 1.7600 -112 638 -6.4427 1.7468 1.7600 -112 639 -6.3977 1.7360 1.7600 -112 640 -6.3531 1.7263 1.7600 -112 641 -6.3084 1.7222 1.7600 -112 642 -6.2643 1.7182 1.7600 -112 643 -6.2176 1.7139 1.7600 -112 644 -6.1716 1.7119 1.7600 -112 645 -6.1292 1.7158 1.7600 -112 646 -6.0861 1.7189 1.7600 -112 647 -6.0461 1.7182 1.7600 -112 648 -6.0024 1.7177 1.7600 -112 649 -5.9620 1.7130 1.7600 -112 650 -5.9190 1.7063 1.7600 -112 651 -5.8775 1.6979 1.7600 -112 652 -5.8321 1.6843 1.7600 -112 653 -5.7891 1.6706 1.7600 -112 654 -5.7437 1.6537 1.7600 -112 655 -5.6990 1.6360 1.7600 -112 656 -5.6612 1.6136 1.7600 -112 657 -5.6224 1.5928 1.7600 -112 658 -5.5837 1.5698 1.7600 -112 659 -5.5488 1.5524 1.7600 -112 660 -5.5124 1.5364 1.7600 -112 661 -5.4720 1.5247 1.7600 -112 662 -5.4310 1.5179 1.7600 -112 663 -5.3902 1.5126 1.7600 -112 664 -5.3452 1.5073 1.7600 -112 665 -5.2994 1.5060 1.7600 -112 666 -5.2520 1.5056 1.7600 -112 667 -5.2054 1.5071 1.7600 -112 668 -5.1575 1.5126 1.7600 -112 669 -5.1086 1.5188 1.7600 -112 670 -5.0606 1.5196 1.7600 -112 671 -5.0147 1.5169 1.7600 -112 672 -4.9687 1.5103 1.7600 -112 673 -4.9223 1.4997 1.7600 -112 674 -4.8789 1.4876 1.7600 -112 675 -4.8345 1.4750 1.7600 -112 676 -4.7893 1.4594 1.7600 -112 677 -4.7427 1.4394 1.7600 -112 678 -4.6974 1.4170 1.7600 -112 679 -4.6542 1.3930 1.7600 -112 680 -4.6103 1.3723 1.7600 -112 681 -4.5629 1.3564 1.7600 -112 682 -4.5164 1.3432 1.7600 -112 683 -4.4661 1.3363 1.7600 -112 684 -4.4178 1.3340 1.7600 -112 685 -4.3712 1.3334 1.7600 -112 686 -4.3225 1.3344 1.7600 -112 687 -4.2718 1.3408 1.7600 -112 688 -4.2176 1.3501 1.7600 -112 689 -4.1639 1.3653 1.7600 -112 690 -4.1098 1.3839 1.7600 -112 691 -4.0573 1.3961 1.7600 -112 692 -4.0038 1.4065 1.7600 -112 693 -3.9520 1.4071 1.7600 -112 694 -3.9010 1.4054 1.7600 -112 695 -3.8496 1.4013 1.7600 -112 696 -3.7948 1.3955 1.7600 -112 697 -3.7392 1.3860 1.7600 -112 698 -3.6800 1.3734 1.7600 -112 699 -3.6178 1.3585 1.7600 -112 700 -3.5539 1.3443 1.7600 -112 701 -3.4981 1.3403 1.7600 -112 702 -3.4411 1.3389 1.7600 -112 703 -3.3864 1.3420 1.7600 -112 704 -3.3270 1.3437 1.7600 -112 705 -3.2692 1.3485 1.7600 -112 706 -3.2087 1.3528 1.7600 -112 707 -3.1501 1.3573 1.7600 -112 708 -3.0883 1.3662 1.7600 -112 709 -3.0254 1.3778 1.7600 -112 710 -2.9612 1.3890 1.7600 -112 711 -2.9007 1.3942 1.7600 -112 712 -2.8415 1.3961 1.7600 -112 713 -2.7824 1.3957 1.7600 -112 714 -2.7237 1.3910 1.7600 -112 715 -2.6653 1.3854 1.7600 -112 716 -2.6072 1.3748 1.7600 -112 717 -2.5477 1.3645 1.7600 -112 718 -2.4818 1.3500 1.7600 -112 719 -2.4226 1.3385 1.7600 -112 720 -2.3635 1.3275 1.7600 -112 721 -2.3055 1.3236 1.7600 -112 722 -2.2499 1.3210 1.7600 -112 723 -2.1953 1.3226 1.7600 -112 724 -2.1387 1.3284 1.7600 -112 725 -2.0843 1.3296 1.7600 -112 726 -2.0308 1.3322 1.7600 -112 727 -1.9726 1.3374 1.7600 -112 728 -1.8985 1.3424 1.7600 -112 729 -1.8282 1.3553 1.7600 -112 730 -1.7647 1.3681 1.7600 -112 731 -1.7010 1.3732 1.7600 -112 732 -1.6386 1.3739 1.7600 -112 733 -1.5744 1.3730 1.7600 -112 734 -1.5099 1.3713 1.7600 -112 735 -1.4468 1.3678 1.7600 -112 736 -1.3831 1.3608 1.7600 -112 737 -1.3165 1.3513 1.7600 -112 738 -1.2481 1.3412 1.7600 -112 739 -1.1820 1.3316 1.7600 -112 740 -1.1208 1.3273 1.7600 -112 741 -1.0613 1.3277 1.7600 -112 742 -0.9996 1.3288 1.7600 -112 743 -0.9400 1.3324 1.7600 -112 744 -0.8764 1.3333 1.7600 -112 745 -0.8125 1.3333 1.7600 -112 746 -0.7462 1.3344 1.7600 -112 747 -0.6802 1.3394 1.7600 -112 748 -0.6129 1.3467 1.7600 -112 749 -0.5428 1.3516 1.7600 -112 750 -0.4737 1.3519 1.7600 -112 751 -0.4043 1.3462 1.7600 -112 752 -0.3345 1.3391 1.7600 -112 753 -0.2626 1.3309 1.7600 -112 754 -0.1898 1.3208 1.7600 -112 755 -0.1181 1.3113 1.7600 -112 756 -0.0494 1.3011 1.7600 -112 757 0.0198 1.2911 1.7600 -112 758 0.0846 1.2848 1.7600 -112 759 0.1465 1.2840 1.7600 -112 760 0.2056 1.2853 1.7600 -112 761 0.2676 1.2876 1.7600 -112 762 0.3319 1.2894 1.7600 -112 763 0.3972 1.2933 1.7600 -112 764 0.4622 1.3013 1.7600 -112 765 0.5262 1.3148 1.7600 -112 766 0.5926 1.3318 1.7600 -112 767 0.6551 1.3409 1.7600 -112 768 0.7167 1.3415 1.7600 -112 769 0.7785 1.3394 1.7600 -112 770 0.8431 1.3378 1.7600 -112 771 0.9079 1.3373 1.7600 -112 772 0.9690 1.3342 1.7600 -112 773 1.0307 1.3297 1.7600 -112 774 1.0917 1.3225 1.7600 -112 775 1.1561 1.3184 1.7600 -112 776 1.2178 1.3184 1.7600 -112 777 1.2786 1.3210 1.7600 -112 778 1.3367 1.3254 1.7600 -112 779 1.3993 1.3317 1.7600 -112 780 1.4579 1.3369 1.7600 -112 781 1.5186 1.3437 1.7600 -112 782 1.5820 1.3520 1.7600 -112 783 1.6448 1.3637 1.7600 -112 784 1.7107 1.3762 1.7600 -112 785 1.7764 1.3879 1.7600 -112 786 1.8392 1.3955 1.7600 -112 787 1.9021 1.3987 1.7600 -112 788 1.9641 1.3952 1.7600 -112 789 2.0271 1.3944 1.7600 -112 790 2.0942 1.3898 1.7600 -112 791 2.1615 1.3849 1.7600 -112 792 2.2294 1.3795 1.7600 -112 793 2.2939 1.3802 1.7600 -112 794 2.3581 1.3845 1.7600 -112 795 2.4211 1.3920 1.7600 -112 796 2.4818 1.3993 1.7600 -112 797 2.5407 1.4059 1.7600 -112 798 2.5992 1.4151 1.7600 -112 799 2.6564 1.4242 1.7600 -112 800 2.7170 1.4365 1.7600 -112 801 2.7817 1.4532 1.7600 -112 802 2.8483 1.4701 1.7600 -112 803 2.9133 1.4786 1.7600 -112 804 2.9734 1.4842 1.7600 -112 805 3.0295 1.4871 1.7600 -112 806 3.0857 1.4838 1.7600 -112 807 3.1438 1.4832 1.7600 -112 808 3.2051 1.4782 1.7600 -112 809 3.2696 1.4737 1.7600 -112 810 3.3352 1.4682 1.7600 -112 811 3.3996 1.4618 1.7600 -112 812 3.4622 1.4618 1.7600 -112 813 3.5206 1.4715 1.7600 -112 814 3.5796 1.4841 1.7600 -112 815 3.6377 1.4971 1.7600 -112 816 3.6969 1.5111 1.7600 -112 817 3.7579 1.5292 1.7600 -112 818 3.8223 1.5542 1.7600 -112 819 3.8939 1.5798 1.7600 -112 820 3.9626 1.6029 1.7600 -112 821 4.0266 1.6174 1.7600 -112 822 4.0933 1.6271 1.7600 -112 823 4.1588 1.6325 1.7600 -112 824 4.2257 1.6355 1.7600 -112 825 4.2920 1.6373 1.7600 -112 826 4.3613 1.6369 1.7600 -112 827 4.4346 1.6363 1.7600 -112 828 4.5134 1.6351 1.7600 -112 829 4.5895 1.6324 1.7600 -112 830 4.6580 1.6363 1.7600 -112 831 4.7219 1.6461 1.7600 -112 832 4.7819 1.6562 1.7600 -112 833 4.8466 1.6679 1.7600 -112 834 4.9070 1.6815 1.7600 -112 835 4.9713 1.6960 1.7600 -112 836 5.0431 1.7117 1.7600 -112 837 5.1141 1.7341 1.7600 -112 838 5.1817 1.7574 1.7600 -112 839 5.2501 1.7741 1.7600 -112 840 5.3164 1.7847 1.7600 -112 841 5.3816 1.7918 1.7600 -112 842 5.4457 1.7951 1.7600 -112 843 5.5117 1.7965 1.7600 -112 844 5.5816 1.7956 1.7600 -112 845 5.6589 1.7953 1.7600 -112 846 5.7358 1.7956 1.7600 -112 847 5.8090 1.7996 1.7600 -112 848 5.8804 1.8093 1.7600 -112 849 5.9466 1.8235 1.7600 -113 624 -7.7940 1.1955 1.7600 -113 625 -7.7346 1.1576 1.7600 -113 626 -7.6784 1.1169 1.7600 -113 627 -7.6294 1.0790 1.7600 -113 628 -7.5839 1.0511 1.7600 -113 629 -7.5407 1.0361 1.7600 -113 630 -7.4987 1.0289 1.7600 -113 631 -7.4544 1.0255 1.7600 -113 632 -7.4059 1.0237 1.7600 -113 633 -7.3553 1.0222 1.7600 -113 634 -7.3027 1.0225 1.7600 -113 635 -7.2487 1.0267 1.7600 -113 636 -7.1970 1.0370 1.7600 -113 637 -7.1528 1.0511 1.7600 -113 638 -7.1137 1.0642 1.7600 -113 639 -7.0738 1.0702 1.7600 -113 640 -7.0344 1.0716 1.7600 -113 641 -6.9903 1.0666 1.7600 -113 642 -6.9440 1.0564 1.7600 -113 643 -6.8944 1.0445 1.7600 -113 644 -6.8408 1.0256 1.7600 -113 645 -6.7851 1.0035 1.7600 -113 646 -6.7294 0.9755 1.7600 -113 647 -6.6741 0.9467 1.7600 -113 648 -6.6254 0.9194 1.7600 -113 649 -6.5799 0.9000 1.7600 -113 650 -6.5318 0.8822 1.7600 -113 651 -6.4834 0.8741 1.7600 -113 652 -6.4334 0.8711 1.7600 -113 653 -6.3812 0.8687 1.7600 -113 654 -6.3256 0.8704 1.7600 -113 655 -6.2724 0.8783 1.7600 -113 656 -6.2215 0.8915 1.7600 -113 657 -6.1749 0.9063 1.7600 -113 658 -6.1310 0.9203 1.7600 -113 659 -6.0930 0.9285 1.7600 -113 660 -6.0491 0.9293 1.7600 -113 661 -6.0051 0.9249 1.7600 -113 662 -5.9564 0.9181 1.7600 -113 663 -5.9085 0.9114 1.7600 -113 664 -5.8580 0.9000 1.7600 -113 665 -5.8139 0.8849 1.7600 -113 666 -5.7666 0.8634 1.7600 -113 667 -5.7135 0.8364 1.7600 -113 668 -5.6611 0.8076 1.7600 -113 669 -5.6115 0.7833 1.7600 -113 670 -5.5636 0.7648 1.7600 -113 671 -5.5148 0.7571 1.7600 -113 672 -5.4617 0.7526 1.7600 -113 673 -5.4028 0.7526 1.7600 -113 674 -5.3411 0.7559 1.7600 -113 675 -5.2806 0.7612 1.7600 -113 676 -5.2216 0.7671 1.7600 -113 677 -5.1675 0.7765 1.7600 -113 678 -5.1179 0.7853 1.7600 -113 679 -5.0705 0.7900 1.7600 -113 680 -5.0208 0.7921 1.7600 -113 681 -4.9692 0.7878 1.7600 -113 682 -4.9184 0.7797 1.7600 -113 683 -4.8653 0.7702 1.7600 -113 684 -4.8081 0.7574 1.7600 -113 685 -4.7538 0.7420 1.7600 -113 686 -4.7043 0.7222 1.7600 -113 687 -4.6495 0.6982 1.7600 -113 688 -4.5971 0.6737 1.7600 -113 689 -4.5475 0.6556 1.7600 -113 690 -4.4965 0.6496 1.7600 -113 691 -4.4477 0.6506 1.7600 -113 692 -4.3957 0.6608 1.7600 -113 693 -4.3377 0.6760 1.7600 -113 694 -4.2789 0.6953 1.7600 -113 695 -4.2222 0.7175 1.7600 -113 696 -4.1640 0.7423 1.7600 -113 697 -4.1086 0.7644 1.7600 -113 698 -4.0522 0.7827 1.7600 -113 699 -3.9975 0.7890 1.7600 -113 700 -3.9388 0.7902 1.7600 -113 701 -3.8799 0.7863 1.7600 -113 702 -3.8169 0.7793 1.7600 -113 703 -3.7511 0.7730 1.7600 -113 704 -3.6887 0.7582 1.7600 -113 705 -3.6260 0.7398 1.7600 -113 706 -3.5658 0.7207 1.7600 -113 707 -3.5068 0.7089 1.7600 -113 708 -3.4487 0.7041 1.7600 -113 709 -3.3910 0.7062 1.7600 -113 710 -3.3290 0.7108 1.7600 -113 711 -3.2707 0.7196 1.7600 -113 712 -3.2102 0.7305 1.7600 -113 713 -3.1459 0.7443 1.7600 -113 714 -3.0812 0.7568 1.7600 -113 715 -3.0158 0.7690 1.7600 -113 716 -2.9552 0.7746 1.7600 -113 717 -2.8952 0.7753 1.7600 -113 718 -2.8359 0.7734 1.7600 -113 719 -2.7744 0.7708 1.7600 -113 720 -2.7129 0.7673 1.7600 -113 721 -2.6505 0.7621 1.7600 -113 722 -2.5923 0.7498 1.7600 -113 723 -2.5350 0.7349 1.7600 -113 724 -2.4750 0.7164 1.7600 -113 725 -2.4104 0.6997 1.7600 -113 726 -2.3506 0.6921 1.7600 -113 727 -2.2917 0.6917 1.7600 -113 728 -2.2311 0.6962 1.7600 -113 729 -2.1728 0.7048 1.7600 -113 730 -2.1136 0.7172 1.7600 -113 731 -2.0567 0.7345 1.7600 -113 732 -2.0025 0.7570 1.7600 -113 733 -1.9452 0.7842 1.7600 -113 734 -1.8817 0.8105 1.7600 -113 735 -1.8162 0.8296 1.7600 -113 736 -1.7551 0.8412 1.7600 -113 737 -1.6924 0.8466 1.7600 -113 738 -1.6301 0.8471 1.7600 -113 739 -1.5666 0.8436 1.7600 -113 740 -1.5038 0.8411 1.7600 -113 741 -1.4387 0.8319 1.7600 -113 742 -1.3712 0.8197 1.7600 -113 743 -1.3026 0.8067 1.7600 -113 744 -1.2388 0.7965 1.7600 -113 745 -1.1775 0.7939 1.7600 -113 746 -1.1206 0.8010 1.7600 -113 747 -1.0649 0.8106 1.7600 -113 748 -1.0056 0.8215 1.7600 -113 749 -0.9425 0.8343 1.7600 -113 750 -0.8770 0.8488 1.7600 -113 751 -0.8117 0.8665 1.7600 -113 752 -0.7438 0.8820 1.7600 -113 753 -0.6790 0.8933 1.7600 -113 754 -0.6150 0.8962 1.7600 -113 755 -0.5509 0.8949 1.7600 -113 756 -0.4865 0.8894 1.7600 -113 757 -0.4196 0.8837 1.7600 -113 758 -0.3487 0.8780 1.7600 -113 759 -0.2789 0.8698 1.7600 -113 760 -0.2092 0.8590 1.7600 -113 761 -0.1393 0.8480 1.7600 -113 762 -0.0705 0.8412 1.7600 -113 763 -0.0089 0.8374 1.7600 -113 764 0.0527 0.8367 1.7600 -113 765 0.1122 0.8395 1.7600 -113 766 0.1723 0.8451 1.7600 -113 767 0.2370 0.8520 1.7600 -113 768 0.3031 0.8600 1.7600 -113 769 0.3710 0.8730 1.7600 -113 770 0.4326 0.8850 1.7600 -113 771 0.4870 0.8917 1.7600 -113 772 0.5425 0.8927 1.7600 -113 773 0.6017 0.8940 1.7600 -113 774 0.6652 0.8988 1.7600 -113 775 0.7372 0.8977 1.7600 -113 776 0.8092 0.8942 1.7600 -113 777 0.8814 0.8879 1.7600 -113 778 0.9517 0.8734 1.7600 -113 779 1.0160 0.8590 1.7600 -113 780 1.0767 0.8473 1.7600 -113 781 1.1350 0.8434 1.7600 -113 782 1.2003 0.8446 1.7600 -113 783 1.2659 0.8450 1.7600 -113 784 1.3316 0.8486 1.7600 -113 785 1.3965 0.8549 1.7600 -113 786 1.4595 0.8631 1.7600 -113 787 1.5249 0.8757 1.7600 -113 788 1.5921 0.8888 1.7600 -113 789 1.6584 0.8986 1.7600 -113 790 1.7218 0.8992 1.7600 -113 791 1.7859 0.8950 1.7600 -113 792 1.8553 0.8866 1.7600 -113 793 1.9243 0.8734 1.7600 -113 794 1.9912 0.8587 1.7600 -113 795 2.0572 0.8392 1.7600 -113 796 2.1224 0.8215 1.7600 -113 797 2.1906 0.7999 1.7600 -113 798 2.2600 0.7789 1.7600 -113 799 2.3257 0.7704 1.7600 -113 800 2.3901 0.7717 1.7600 -113 801 2.4536 0.7767 1.7600 -113 802 2.5183 0.7842 1.7600 -113 803 2.5838 0.7938 1.7600 -113 804 2.6460 0.8034 1.7600 -113 805 2.7037 0.8151 1.7600 -113 806 2.7590 0.8280 1.7600 -113 807 2.8167 0.8421 1.7600 -113 808 2.8711 0.8542 1.7600 -113 809 2.9267 0.8619 1.7600 -113 810 2.9854 0.8649 1.7600 -113 811 3.0485 0.8632 1.7600 -113 812 3.1124 0.8591 1.7600 -113 813 3.1766 0.8530 1.7600 -113 814 3.2393 0.8431 1.7600 -113 815 3.3032 0.8332 1.7600 -113 816 3.3724 0.8240 1.7600 -113 817 3.4363 0.8206 1.7600 -113 818 3.4989 0.8234 1.7600 -113 819 3.5622 0.8283 1.7600 -113 820 3.6265 0.8372 1.7600 -113 821 3.6908 0.8468 1.7600 -113 822 3.7560 0.8608 1.7600 -113 823 3.8203 0.8793 1.7600 -113 824 3.8871 0.8984 1.7600 -113 825 3.9557 0.9130 1.7600 -113 826 4.0251 0.9208 1.7600 -113 827 4.0944 0.9199 1.7600 -113 828 4.1638 0.9129 1.7600 -113 829 4.2326 0.9057 1.7600 -113 830 4.3002 0.8949 1.7600 -113 831 4.3643 0.8859 1.7600 -113 832 4.4248 0.8722 1.7600 -113 833 4.4859 0.8538 1.7600 -113 834 4.5554 0.8360 1.7600 -113 835 4.6277 0.8205 1.7600 -113 836 4.6960 0.8129 1.7600 -113 837 4.7631 0.8129 1.7600 -113 838 4.8269 0.8207 1.7600 -113 839 4.8885 0.8316 1.7600 -113 840 4.9466 0.8458 1.7600 -113 841 5.0028 0.8611 1.7600 -113 842 5.0614 0.8776 1.7600 -113 843 5.1317 0.8966 1.7600 -113 844 5.2017 0.9129 1.7600 -113 845 5.2679 0.9212 1.7600 -113 846 5.3360 0.9216 1.7600 -113 847 5.3974 0.9182 1.7600 -113 848 5.4606 0.9140 1.7600 -113 849 5.5205 0.9091 1.7600 -113 850 5.5837 0.9047 1.7600 -113 851 5.6471 0.8990 1.7600 -113 852 5.7212 0.8891 1.7600 -113 853 5.8011 0.8799 1.7600 -113 854 5.8834 0.8727 1.7600 -114 598 -7.8238 1.6130 1.7600 -114 599 -7.7671 1.6175 1.7600 -114 600 -7.7131 1.6191 1.7600 -114 601 -7.6625 1.6154 1.7600 -114 602 -7.6156 1.6067 1.7600 -114 603 -7.5701 1.5927 1.7600 -114 604 -7.5214 1.5778 1.7600 -114 605 -7.4700 1.5621 1.7600 -114 606 -7.4163 1.5457 1.7600 -114 607 -7.3617 1.5279 1.7600 -114 608 -7.3096 1.5064 1.7600 -114 609 -7.2629 1.4819 1.7600 -114 610 -7.2178 1.4573 1.7600 -114 611 -7.1726 1.4364 1.7600 -114 612 -7.1279 1.4252 1.7600 -114 613 -7.0843 1.4217 1.7600 -114 614 -7.0390 1.4198 1.7600 -114 615 -6.9877 1.4175 1.7600 -114 616 -6.9319 1.4166 1.7600 -114 617 -6.8745 1.4177 1.7600 -114 618 -6.8187 1.4221 1.7600 -114 619 -6.7659 1.4296 1.7600 -114 620 -6.7149 1.4342 1.7600 -114 621 -6.6646 1.4353 1.7600 -114 622 -6.6170 1.4314 1.7600 -114 623 -6.5729 1.4222 1.7600 -114 624 -6.5287 1.4110 1.7600 -114 625 -6.4814 1.3989 1.7600 -114 626 -6.4319 1.3851 1.7600 -114 627 -6.3819 1.3675 1.7600 -114 628 -6.3329 1.3455 1.7600 -114 629 -6.2870 1.3219 1.7600 -114 630 -6.2427 1.3001 1.7600 -114 631 -6.1984 1.2827 1.7600 -114 632 -6.1542 1.2746 1.7600 -114 633 -6.1105 1.2742 1.7600 -114 634 -6.0665 1.2762 1.7600 -114 635 -6.0204 1.2792 1.7600 -114 636 -5.9715 1.2853 1.7600 -114 637 -5.9243 1.2979 1.7600 -114 638 -5.8790 1.3145 1.7600 -114 639 -5.8319 1.3327 1.7600 -114 640 -5.7880 1.3482 1.7600 -114 641 -5.7426 1.3580 1.7600 -114 642 -5.6992 1.3588 1.7600 -114 643 -5.6555 1.3538 1.7600 -114 644 -5.6100 1.3457 1.7600 -114 645 -5.5652 1.3348 1.7600 -114 646 -5.5193 1.3189 1.7600 -114 647 -5.4696 1.3046 1.7600 -114 648 -5.4218 1.2841 1.7600 -114 649 -5.3762 1.2583 1.7600 -114 650 -5.3301 1.2318 1.7600 -114 651 -5.2880 1.2072 1.7600 -114 652 -5.2483 1.1852 1.7600 -114 653 -5.2060 1.1712 1.7600 -114 654 -5.1624 1.1606 1.7600 -114 655 -5.1244 1.1556 1.7600 -114 656 -5.0854 1.1536 1.7600 -114 657 -5.0421 1.1539 1.7600 -114 658 -4.9940 1.1557 1.7600 -114 659 -4.9441 1.1616 1.7600 -114 660 -4.8939 1.1686 1.7600 -114 661 -4.8404 1.1780 1.7600 -114 662 -4.7851 1.1848 1.7600 -114 663 -4.7332 1.1905 1.7600 -114 664 -4.6791 1.1896 1.7600 -114 665 -4.6264 1.1804 1.7600 -114 666 -4.5738 1.1682 1.7600 -114 667 -4.5245 1.1538 1.7600 -114 668 -4.4760 1.1384 1.7600 -114 669 -4.4280 1.1198 1.7600 -114 670 -4.3796 1.0997 1.7600 -114 671 -4.3313 1.0783 1.7600 -114 672 -4.2880 1.0602 1.7600 -114 673 -4.2462 1.0494 1.7600 -114 674 -4.1963 1.0411 1.7600 -114 675 -4.1487 1.0373 1.7600 -114 676 -4.0974 1.0358 1.7600 -114 677 -4.0427 1.0357 1.7600 -114 678 -3.9858 1.0403 1.7600 -114 679 -3.9246 1.0500 1.7600 -114 680 -3.8600 1.0625 1.7600 -114 681 -3.8008 1.0697 1.7600 -114 682 -3.7390 1.0683 1.7600 -114 683 -3.6771 1.0622 1.7600 -114 684 -3.6177 1.0520 1.7600 -114 685 -3.5574 1.0418 1.7600 -114 686 -3.5006 1.0337 1.7600 -114 687 -3.4407 1.0240 1.7600 -114 688 -3.3826 1.0138 1.7600 -114 689 -3.3219 1.0023 1.7600 -114 690 -3.2659 0.9879 1.7600 -114 691 -3.2109 0.9785 1.7600 -114 692 -3.1577 0.9734 1.7600 -114 693 -3.1048 0.9747 1.7600 -114 694 -3.0504 0.9799 1.7600 -114 695 -2.9949 0.9867 1.7600 -114 696 -2.9344 0.9951 1.7600 -114 697 -2.8735 1.0051 1.7600 -114 698 -2.8092 1.0145 1.7600 -114 699 -2.7448 1.0257 1.7600 -114 700 -2.6837 1.0280 1.7600 -114 701 -2.6228 1.0256 1.7600 -114 702 -2.5614 1.0180 1.7600 -114 703 -2.5049 1.0072 1.7600 -114 704 -2.4491 0.9974 1.7600 -114 705 -2.3929 0.9859 1.7600 -114 706 -2.3364 0.9744 1.7600 -114 707 -2.2756 0.9619 1.7600 -114 708 -2.2143 0.9500 1.7600 -114 709 -2.1596 0.9445 1.7600 -114 710 -2.1039 0.9429 1.7600 -114 711 -2.0473 0.9476 1.7600 -114 712 -1.9927 0.9552 1.7600 -114 713 -1.9370 0.9629 1.7600 -114 714 -1.8808 0.9738 1.7600 -114 715 -1.8250 0.9855 1.7600 -114 716 -1.7646 1.0022 1.7600 -114 717 -1.7003 1.0198 1.7600 -114 718 -1.6429 1.0307 1.7600 -114 719 -1.5884 1.0338 1.7600 -114 720 -1.5330 1.0340 1.7600 -114 721 -1.4814 1.0259 1.7600 -114 722 -1.4304 1.0197 1.7600 -114 723 -1.3758 1.0123 1.7600 -114 724 -1.3187 1.0035 1.7600 -114 725 -1.2597 0.9908 1.7600 -114 726 -1.1971 0.9766 1.7600 -114 727 -1.1346 0.9624 1.7600 -114 728 -1.0762 0.9532 1.7600 -114 729 -1.0173 0.9522 1.7600 -114 730 -0.9623 0.9578 1.7600 -114 731 -0.9110 0.9671 1.7600 -114 732 -0.8542 0.9757 1.7600 -114 733 -0.7934 0.9862 1.7600 -114 734 -0.7300 0.9999 1.7600 -114 735 -0.6640 1.0168 1.7600 -114 736 -0.5962 1.0345 1.7600 -114 737 -0.5297 1.0474 1.7600 -114 738 -0.4659 1.0531 1.7600 -114 739 -0.4046 1.0539 1.7600 -114 740 -0.3445 1.0461 1.7600 -114 741 -0.2836 1.0370 1.7600 -114 742 -0.2222 1.0258 1.7600 -114 743 -0.1596 1.0125 1.7600 -114 744 -0.0961 0.9947 1.7600 -114 745 -0.0359 0.9760 1.7600 -114 746 0.0201 0.9606 1.7600 -114 747 0.0739 0.9533 1.7600 -114 748 0.1307 0.9500 1.7600 -114 749 0.1903 0.9547 1.7600 -114 750 0.2498 0.9610 1.7600 -114 751 0.3131 0.9698 1.7600 -114 752 0.3757 0.9800 1.7600 -114 753 0.4419 0.9912 1.7600 -114 754 0.5075 1.0049 1.7600 -114 755 0.5679 1.0132 1.7600 -114 756 0.6254 1.0205 1.7600 -114 757 0.6815 1.0209 1.7600 -114 758 0.7403 1.0150 1.7600 -114 759 0.8012 1.0090 1.7600 -114 760 0.8621 1.0039 1.7600 -114 761 0.9255 1.0001 1.7600 -114 762 0.9913 0.9922 1.7600 -114 763 1.0511 0.9820 1.7600 -114 764 1.1117 0.9742 1.7600 -114 765 1.1681 0.9677 1.7600 -114 766 1.2293 0.9677 1.7600 -114 767 1.2878 0.9745 1.7600 -114 768 1.3508 0.9831 1.7600 -114 769 1.4178 0.9936 1.7600 -114 770 1.4853 1.0016 1.7600 -114 771 1.5550 1.0137 1.7600 -114 772 1.6271 1.0266 1.7600 -114 773 1.6937 1.0365 1.7600 -114 774 1.7562 1.0411 1.7600 -114 775 1.8173 1.0417 1.7600 -114 776 1.8737 1.0370 1.7600 -114 777 1.9288 1.0313 1.7600 -114 778 1.9845 1.0266 1.7600 -114 779 2.0395 1.0207 1.7600 -114 780 2.0947 1.0134 1.7600 -114 781 2.1493 1.0022 1.7600 -114 782 2.2016 0.9891 1.7600 -114 783 2.2525 0.9787 1.7600 -114 784 2.3070 0.9791 1.7600 -114 785 2.3605 0.9888 1.7600 -114 786 2.4170 1.0030 1.7600 -114 787 2.4741 1.0198 1.7600 -114 788 2.5332 1.0377 1.7600 -114 789 2.5927 1.0559 1.7600 -114 790 2.6552 1.0765 1.7600 -114 791 2.7137 1.0991 1.7600 -114 792 2.7702 1.1148 1.7600 -114 793 2.8286 1.1196 1.7600 -114 794 2.8870 1.1203 1.7600 -114 795 2.9438 1.1203 1.7600 -114 796 2.9996 1.1182 1.7600 -114 797 3.0575 1.1163 1.7600 -114 798 3.1175 1.1128 1.7600 -114 799 3.1786 1.1046 1.7600 -114 800 3.2433 1.0932 1.7600 -114 801 3.3095 1.0845 1.7600 -114 802 3.3746 1.0822 1.7600 -114 803 3.4360 1.0874 1.7600 -114 804 3.4963 1.0967 1.7600 -114 805 3.5561 1.1080 1.7600 -114 806 3.6162 1.1184 1.7600 -114 807 3.6760 1.1295 1.7600 -114 808 3.7379 1.1473 1.7600 -114 809 3.8074 1.1752 1.7600 -114 810 3.8903 1.2086 1.7600 -114 811 3.9727 1.2336 1.7600 -114 812 4.0455 1.2467 1.7600 -114 813 4.1168 1.2459 1.7600 -114 814 4.1890 1.2398 1.7600 -114 815 4.2587 1.2330 1.7600 -114 816 4.3323 1.2290 1.7600 -114 817 4.4067 1.2241 1.7600 -114 818 4.4828 1.2191 1.7600 -114 819 4.5614 1.2159 1.7600 -114 820 4.6338 1.2169 1.7600 -114 821 4.7000 1.2269 1.7600 -114 822 4.7680 1.2418 1.7600 -114 823 4.8290 1.2568 1.7600 -114 824 4.8840 1.2723 1.7600 -114 825 4.9381 1.2871 1.7600 -114 826 4.9952 1.2999 1.7600 -114 827 5.0624 1.3104 1.7600 -114 828 5.1421 1.3210 1.7600 -114 829 5.2229 1.3326 1.7600 -114 830 5.3046 1.3390 1.7600 -114 831 5.3852 1.3359 1.7600 -114 832 5.4599 1.3285 1.7600 -114 833 5.5279 1.3214 1.7600 -114 834 5.5911 1.3154 1.7600 -114 835 5.6551 1.3075 1.7600 -114 836 5.7280 1.2946 1.7600 -114 837 5.8078 1.2799 1.7600 -114 838 5.8872 1.2736 1.7600 -115 634 -7.8133 1.5390 1.7600 -115 635 -7.7472 1.5143 1.7600 -115 636 -7.6777 1.4867 1.7600 -115 637 -7.6138 1.4555 1.7600 -115 638 -7.5570 1.4236 1.7600 -115 639 -7.5023 1.3969 1.7600 -115 640 -7.4513 1.3819 1.7600 -115 641 -7.3969 1.3710 1.7600 -115 642 -7.3456 1.3606 1.7600 -115 643 -7.2919 1.3550 1.7600 -115 644 -7.2374 1.3502 1.7600 -115 645 -7.1805 1.3472 1.7600 -115 646 -7.1292 1.3473 1.7600 -115 647 -7.0830 1.3516 1.7600 -115 648 -7.0398 1.3551 1.7600 -115 649 -6.9999 1.3542 1.7600 -115 650 -6.9631 1.3496 1.7600 -115 651 -6.9258 1.3376 1.7600 -115 652 -6.8863 1.3231 1.7600 -115 653 -6.8456 1.3069 1.7600 -115 654 -6.7998 1.2885 1.7600 -115 655 -6.7492 1.2640 1.7600 -115 656 -6.6964 1.2365 1.7600 -115 657 -6.6396 1.2086 1.7600 -115 658 -6.5891 1.1830 1.7600 -115 659 -6.5410 1.1610 1.7600 -115 660 -6.4908 1.1429 1.7600 -115 661 -6.4406 1.1294 1.7600 -115 662 -6.3924 1.1200 1.7600 -115 663 -6.3428 1.1145 1.7600 -115 664 -6.2913 1.1119 1.7600 -115 665 -6.2405 1.1132 1.7600 -115 666 -6.1933 1.1175 1.7600 -115 667 -6.1522 1.1245 1.7600 -115 668 -6.1132 1.1270 1.7600 -115 669 -6.0786 1.1239 1.7600 -115 670 -6.0409 1.1164 1.7600 -115 671 -6.0018 1.1051 1.7600 -115 672 -5.9577 1.0928 1.7600 -115 673 -5.9114 1.0766 1.7600 -115 674 -5.8634 1.0591 1.7600 -115 675 -5.8137 1.0386 1.7600 -115 676 -5.7668 1.0186 1.7600 -115 677 -5.7193 1.0042 1.7600 -115 678 -5.6742 0.9939 1.7600 -115 679 -5.6287 0.9896 1.7600 -115 680 -5.5841 0.9886 1.7600 -115 681 -5.5337 0.9904 1.7600 -115 682 -5.4765 0.9958 1.7600 -115 683 -5.4163 1.0024 1.7600 -115 684 -5.3515 1.0122 1.7600 -115 685 -5.2861 1.0250 1.7600 -115 686 -5.2249 1.0365 1.7600 -115 687 -5.1731 1.0392 1.7600 -115 688 -5.1230 1.0393 1.7600 -115 689 -5.0727 1.0363 1.7600 -115 690 -5.0263 1.0295 1.7600 -115 691 -4.9792 1.0217 1.7600 -115 692 -4.9278 1.0096 1.7600 -115 693 -4.8722 0.9936 1.7600 -115 694 -4.8167 0.9798 1.7600 -115 695 -4.7583 0.9601 1.7600 -115 696 -4.7007 0.9410 1.7600 -115 697 -4.6473 0.9265 1.7600 -115 698 -4.5971 0.9204 1.7600 -115 699 -4.5453 0.9191 1.7600 -115 700 -4.4977 0.9208 1.7600 -115 701 -4.4511 0.9269 1.7600 -115 702 -4.4011 0.9308 1.7600 -115 703 -4.3541 0.9387 1.7600 -115 704 -4.3092 0.9465 1.7600 -115 705 -4.2692 0.9528 1.7600 -115 706 -4.2290 0.9534 1.7600 -115 707 -4.1842 0.9536 1.7600 -115 708 -4.1371 0.9486 1.7600 -115 709 -4.0869 0.9423 1.7600 -115 710 -4.0343 0.9350 1.7600 -115 711 -3.9773 0.9244 1.7600 -115 712 -3.9189 0.9104 1.7600 -115 713 -3.8548 0.8944 1.7600 -115 714 -3.7968 0.8779 1.7600 -115 715 -3.7428 0.8704 1.7600 -115 716 -3.6935 0.8667 1.7600 -115 717 -3.6385 0.8684 1.7600 -115 718 -3.5869 0.8735 1.7600 -115 719 -3.5305 0.8806 1.7600 -115 720 -3.4710 0.8900 1.7600 -115 721 -3.4085 0.9026 1.7600 -115 722 -3.3393 0.9183 1.7600 -115 723 -3.2652 0.9377 1.7600 -115 724 -3.1932 0.9529 1.7600 -115 725 -3.1335 0.9596 1.7600 -115 726 -3.0712 0.9638 1.7600 -115 727 -3.0120 0.9624 1.7600 -115 728 -2.9517 0.9608 1.7600 -115 729 -2.8902 0.9579 1.7600 -115 730 -2.8290 0.9517 1.7600 -115 731 -2.7653 0.9445 1.7600 -115 732 -2.6989 0.9342 1.7600 -115 733 -2.6325 0.9251 1.7600 -115 734 -2.5692 0.9205 1.7600 -115 735 -2.5073 0.9212 1.7600 -115 736 -2.4441 0.9283 1.7600 -115 737 -2.3832 0.9413 1.7600 -115 738 -2.3232 0.9567 1.7600 -115 739 -2.2574 0.9771 1.7600 -115 740 -2.1876 1.0017 1.7600 -115 741 -2.1138 1.0264 1.7600 -115 742 -2.0356 1.0523 1.7600 -115 743 -1.9686 1.0715 1.7600 -115 744 -1.9032 1.0847 1.7600 -115 745 -1.8403 1.0925 1.7600 -115 746 -1.7827 1.0956 1.7600 -115 747 -1.7262 1.0958 1.7600 -115 748 -1.6770 1.0940 1.7600 -115 749 -1.6218 1.0893 1.7600 -115 750 -1.5684 1.0800 1.7600 -115 751 -1.5080 1.0655 1.7600 -115 752 -1.4422 1.0456 1.7600 -115 753 -1.3755 1.0251 1.7600 -115 754 -1.3155 1.0171 1.7600 -115 755 -1.2541 1.0188 1.7600 -115 756 -1.1938 1.0263 1.7600 -115 757 -1.1358 1.0339 1.7600 -115 758 -1.0728 1.0436 1.7600 -115 759 -1.0074 1.0564 1.7600 -115 760 -0.9387 1.0728 1.7600 -115 761 -0.8683 1.0904 1.7600 -115 762 -0.8002 1.1065 1.7600 -115 763 -0.7414 1.1145 1.7600 -115 764 -0.6866 1.1150 1.7600 -115 765 -0.6349 1.1090 1.7600 -115 766 -0.5811 1.0985 1.7600 -115 767 -0.5273 1.0882 1.7600 -115 768 -0.4657 1.0754 1.7600 -115 769 -0.4038 1.0590 1.7600 -115 770 -0.3388 1.0423 1.7600 -115 771 -0.2728 1.0261 1.7600 -115 772 -0.2119 1.0165 1.7600 -115 773 -0.1557 1.0149 1.7600 -115 774 -0.0921 1.0165 1.7600 -115 775 -0.0270 1.0210 1.7600 -115 776 0.0387 1.0261 1.7600 -115 777 0.1122 1.0331 1.7600 -115 778 0.1872 1.0438 1.7600 -115 779 0.2628 1.0601 1.7600 -115 780 0.3411 1.0778 1.7600 -115 781 0.4216 1.0964 1.7600 -115 782 0.4958 1.1059 1.7600 -115 783 0.5681 1.1098 1.7600 -115 784 0.6396 1.1079 1.7600 -115 785 0.7092 1.1017 1.7600 -115 786 0.7759 1.0964 1.7600 -115 787 0.8413 1.0907 1.7600 -115 788 0.9037 1.0790 1.7600 -115 789 0.9687 1.0672 1.7600 -115 790 1.0296 1.0550 1.7600 -115 791 1.0897 1.0495 1.7600 -115 792 1.1521 1.0494 1.7600 -115 793 1.2163 1.0519 1.7600 -115 794 1.2854 1.0607 1.7600 -115 795 1.3530 1.0700 1.7600 -115 796 1.4259 1.0825 1.7600 -115 797 1.4961 1.0969 1.7600 -115 798 1.5698 1.1127 1.7600 -115 799 1.6407 1.1261 1.7600 -115 800 1.7071 1.1305 1.7600 -115 801 1.7723 1.1310 1.7600 -115 802 1.8395 1.1282 1.7600 -115 803 1.9053 1.1203 1.7600 -115 804 1.9706 1.1107 1.7600 -115 805 2.0418 1.0995 1.7600 -115 806 2.1112 1.0883 1.7600 -115 807 2.1790 1.0701 1.7600 -115 808 2.2543 1.0531 1.7600 -115 809 2.3207 1.0412 1.7600 -115 810 2.3815 1.0352 1.7600 -115 811 2.4408 1.0323 1.7600 -115 812 2.4975 1.0327 1.7600 -115 813 2.5563 1.0356 1.7600 -115 814 2.6163 1.0432 1.7600 -115 815 2.6812 1.0559 1.7600 -115 816 2.7480 1.0750 1.7600 -115 817 2.8207 1.0993 1.7600 -115 818 2.8939 1.1285 1.7600 -115 819 2.9661 1.1524 1.7600 -115 820 3.0316 1.1701 1.7600 -115 821 3.0989 1.1826 1.7600 -115 822 3.1640 1.1853 1.7600 -115 823 3.2261 1.1841 1.7600 -115 824 3.2894 1.1835 1.7600 -115 825 3.3529 1.1786 1.7600 -115 826 3.4150 1.1729 1.7600 -115 827 3.4783 1.1609 1.7600 -115 828 3.5460 1.1437 1.7600 -115 829 3.6206 1.1293 1.7600 -115 830 3.6883 1.1189 1.7600 -115 831 3.7559 1.1143 1.7600 -115 832 3.8253 1.1134 1.7600 -115 833 3.8950 1.1183 1.7600 -115 834 3.9663 1.1244 1.7600 -115 835 4.0377 1.1364 1.7600 -115 836 4.1092 1.1483 1.7600 -115 837 4.1867 1.1654 1.7600 -115 838 4.2738 1.1885 1.7600 -115 839 4.3583 1.2078 1.7600 -115 840 4.4395 1.2209 1.7600 -115 841 4.5179 1.2257 1.7600 -115 842 4.5914 1.2240 1.7600 -115 843 4.6609 1.2163 1.7600 -115 844 4.7296 1.2113 1.7600 -115 845 4.7979 1.2041 1.7600 -115 846 4.8627 1.1957 1.7600 -115 847 4.9337 1.1841 1.7600 -115 848 5.0123 1.1728 1.7600 -115 849 5.0838 1.1653 1.7600 -115 850 5.1503 1.1661 1.7600 -115 851 5.2114 1.1774 1.7600 -115 852 5.2766 1.1889 1.7600 -115 853 5.3430 1.2036 1.7600 -115 854 5.4104 1.2175 1.7600 -115 855 5.4819 1.2361 1.7600 -115 856 5.5571 1.2619 1.7600 -115 857 5.6456 1.2886 1.7600 -115 858 5.7270 1.3078 1.7600 -115 859 5.8033 1.3180 1.7600 -115 860 5.8759 1.3220 1.7600 -115 861 5.9452 1.3218 1.7600 -116 614 -7.8241 0.6415 1.7600 -116 615 -7.7729 0.6248 1.7600 -116 616 -7.7229 0.6054 1.7600 -116 617 -7.6700 0.5859 1.7600 -116 618 -7.6128 0.5669 1.7600 -116 619 -7.5557 0.5458 1.7600 -116 620 -7.5013 0.5247 1.7600 -116 621 -7.4515 0.5040 1.7600 -116 622 -7.4056 0.4841 1.7600 -116 623 -7.3624 0.4656 1.7600 -116 624 -7.3193 0.4493 1.7600 -116 625 -7.2762 0.4348 1.7600 -116 626 -7.2317 0.4216 1.7600 -116 627 -7.1828 0.4098 1.7600 -116 628 -7.1291 0.4007 1.7600 -116 629 -7.0716 0.3970 1.7600 -116 630 -7.0137 0.3989 1.7600 -116 631 -6.9562 0.4051 1.7600 -116 632 -6.9032 0.4123 1.7600 -116 633 -6.8528 0.4193 1.7600 -116 634 -6.8036 0.4215 1.7600 -116 635 -6.7533 0.4176 1.7600 -116 636 -6.7003 0.4110 1.7600 -116 637 -6.6446 0.4038 1.7600 -116 638 -6.5870 0.3954 1.7600 -116 639 -6.5277 0.3835 1.7600 -116 640 -6.4686 0.3688 1.7600 -116 641 -6.4119 0.3489 1.7600 -116 642 -6.3609 0.3287 1.7600 -116 643 -6.3107 0.3091 1.7600 -116 644 -6.2619 0.2937 1.7600 -116 645 -6.2147 0.2829 1.7600 -116 646 -6.1663 0.2763 1.7600 -116 647 -6.1149 0.2754 1.7600 -116 648 -6.0637 0.2790 1.7600 -116 649 -6.0174 0.2854 1.7600 -116 650 -5.9740 0.2987 1.7600 -116 651 -5.9387 0.3162 1.7600 -116 652 -5.9064 0.3359 1.7600 -116 653 -5.8740 0.3538 1.7600 -116 654 -5.8405 0.3633 1.7600 -116 655 -5.7998 0.3699 1.7600 -116 656 -5.7585 0.3747 1.7600 -116 657 -5.7145 0.3737 1.7600 -116 658 -5.6650 0.3687 1.7600 -116 659 -5.6132 0.3561 1.7600 -116 660 -5.5613 0.3387 1.7600 -116 661 -5.5079 0.3199 1.7600 -116 662 -5.4580 0.2948 1.7600 -116 663 -5.4049 0.2722 1.7600 -116 664 -5.3512 0.2516 1.7600 -116 665 -5.2990 0.2367 1.7600 -116 666 -5.2467 0.2254 1.7600 -116 667 -5.1924 0.2193 1.7600 -116 668 -5.1371 0.2176 1.7600 -116 669 -5.0821 0.2171 1.7600 -116 670 -5.0266 0.2222 1.7600 -116 671 -4.9743 0.2336 1.7600 -116 672 -4.9288 0.2515 1.7600 -116 673 -4.8850 0.2729 1.7600 -116 674 -4.8421 0.2918 1.7600 -116 675 -4.7976 0.3045 1.7600 -116 676 -4.7514 0.3111 1.7600 -116 677 -4.7020 0.3115 1.7600 -116 678 -4.6542 0.3061 1.7600 -116 679 -4.6023 0.3009 1.7600 -116 680 -4.5471 0.2950 1.7600 -116 681 -4.4887 0.2870 1.7600 -116 682 -4.4278 0.2769 1.7600 -116 683 -4.3710 0.2665 1.7600 -116 684 -4.3169 0.2535 1.7600 -116 685 -4.2639 0.2398 1.7600 -116 686 -4.2139 0.2276 1.7600 -116 687 -4.1603 0.2200 1.7600 -116 688 -4.1044 0.2140 1.7600 -116 689 -4.0459 0.2122 1.7600 -116 690 -3.9878 0.2097 1.7600 -116 691 -3.9297 0.2099 1.7600 -116 692 -3.8743 0.2167 1.7600 -116 693 -3.8152 0.2293 1.7600 -116 694 -3.7561 0.2465 1.7600 -116 695 -3.6938 0.2595 1.7600 -116 696 -3.6323 0.2666 1.7600 -116 697 -3.5721 0.2679 1.7600 -116 698 -3.5143 0.2632 1.7600 -116 699 -3.4587 0.2606 1.7600 -116 700 -3.4032 0.2586 1.7600 -116 701 -3.3476 0.2585 1.7600 -116 702 -3.2904 0.2562 1.7600 -116 703 -3.2372 0.2509 1.7600 -116 704 -3.1853 0.2411 1.7600 -116 705 -3.1387 0.2258 1.7600 -116 706 -3.1008 0.2174 1.7600 -116 707 -3.0599 0.2152 1.7600 -116 708 -3.0133 0.2195 1.7600 -116 709 -2.9604 0.2259 1.7600 -116 710 -2.9013 0.2319 1.7600 -116 711 -2.8399 0.2414 1.7600 -116 712 -2.7791 0.2526 1.7600 -116 713 -2.7266 0.2720 1.7600 -116 714 -2.6738 0.2896 1.7600 -116 715 -2.6213 0.3079 1.7600 -116 716 -2.5700 0.3200 1.7600 -116 717 -2.5167 0.3237 1.7600 -116 718 -2.4667 0.3253 1.7600 -116 719 -2.4159 0.3260 1.7600 -116 720 -2.3643 0.3261 1.7600 -116 721 -2.3088 0.3266 1.7600 -116 722 -2.2505 0.3240 1.7600 -116 723 -2.1915 0.3163 1.7600 -116 724 -2.1343 0.3021 1.7600 -116 725 -2.0698 0.2853 1.7600 -116 726 -2.0061 0.2775 1.7600 -116 727 -1.9431 0.2785 1.7600 -116 728 -1.8830 0.2810 1.7600 -116 729 -1.8195 0.2935 1.7600 -116 730 -1.7590 0.3048 1.7600 -116 731 -1.7063 0.3120 1.7600 -116 732 -1.6520 0.3186 1.7600 -116 733 -1.5989 0.3237 1.7600 -116 734 -1.5498 0.3314 1.7600 -116 735 -1.4960 0.3431 1.7600 -116 736 -1.4438 0.3542 1.7600 -116 737 -1.3892 0.3609 1.7600 -116 738 -1.3328 0.3611 1.7600 -116 739 -1.2780 0.3532 1.7600 -116 740 -1.2245 0.3446 1.7600 -116 741 -1.1718 0.3372 1.7600 -116 742 -1.1206 0.3302 1.7600 -116 743 -1.0674 0.3218 1.7600 -116 744 -1.0086 0.3115 1.7600 -116 745 -0.9490 0.2999 1.7600 -116 746 -0.8888 0.2833 1.7600 -116 747 -0.8310 0.2648 1.7600 -116 748 -0.7660 0.2487 1.7600 -116 749 -0.7053 0.2403 1.7600 -116 750 -0.6501 0.2379 1.7600 -116 751 -0.5981 0.2349 1.7600 -116 752 -0.5451 0.2287 1.7600 -116 753 -0.4931 0.2250 1.7600 -116 754 -0.4445 0.2237 1.7600 -116 755 -0.4005 0.2292 1.7600 -116 756 -0.3586 0.2382 1.7600 -116 757 -0.3151 0.2509 1.7600 -116 758 -0.2719 0.2581 1.7600 -116 759 -0.2281 0.2592 1.7600 -116 760 -0.1822 0.2572 1.7600 -116 761 -0.1376 0.2549 1.7600 -116 762 -0.0825 0.2531 1.7600 -116 763 -0.0182 0.2490 1.7600 -116 764 0.0504 0.2433 1.7600 -116 765 0.1167 0.2302 1.7600 -116 766 0.1819 0.2126 1.7600 -116 767 0.2442 0.1892 1.7600 -116 768 0.3029 0.1664 1.7600 -116 769 0.3551 0.1576 1.7600 -116 770 0.4041 0.1590 1.7600 -116 771 0.4592 0.1661 1.7600 -116 772 0.5187 0.1718 1.7600 -116 773 0.5843 0.1811 1.7600 -116 774 0.6495 0.1926 1.7600 -116 775 0.7137 0.2111 1.7600 -116 776 0.7762 0.2315 1.7600 -116 777 0.8372 0.2496 1.7600 -116 778 0.8972 0.2700 1.7600 -116 779 0.9604 0.2872 1.7600 -116 780 1.0258 0.2974 1.7600 -116 781 1.0916 0.2996 1.7600 -116 782 1.1562 0.2964 1.7600 -116 783 1.2245 0.2901 1.7600 -116 784 1.2930 0.2817 1.7600 -116 785 1.3599 0.2708 1.7600 -116 786 1.4248 0.2560 1.7600 -116 787 1.4902 0.2353 1.7600 -116 788 1.5515 0.2210 1.7600 -116 789 1.6102 0.2180 1.7600 -116 790 1.6718 0.2215 1.7600 -116 791 1.7347 0.2287 1.7600 -116 792 1.7978 0.2377 1.7600 -116 793 1.8653 0.2472 1.7600 -116 794 1.9317 0.2597 1.7600 -116 795 1.9940 0.2770 1.7600 -116 796 2.0551 0.2965 1.7600 -116 797 2.1147 0.3198 1.7600 -116 798 2.1767 0.3370 1.7600 -116 799 2.2432 0.3456 1.7600 -116 800 2.3069 0.3463 1.7600 -116 801 2.3707 0.3444 1.7600 -116 802 2.4290 0.3405 1.7600 -116 803 2.4916 0.3366 1.7600 -116 804 2.5510 0.3289 1.7600 -116 805 2.6111 0.3132 1.7600 -116 806 2.6690 0.2922 1.7600 -116 807 2.7309 0.2742 1.7600 -116 808 2.7898 0.2601 1.7600 -116 809 2.8492 0.2547 1.7600 -116 810 2.9066 0.2563 1.7600 -116 811 2.9658 0.2607 1.7600 -116 812 3.0261 0.2649 1.7600 -116 813 3.0857 0.2709 1.7600 -116 814 3.1444 0.2811 1.7600 -116 815 3.2032 0.2921 1.7600 -116 816 3.2601 0.3079 1.7600 -116 817 3.3171 0.3290 1.7600 -116 818 3.3763 0.3479 1.7600 -116 819 3.4403 0.3663 1.7600 -116 820 3.5060 0.3747 1.7600 -116 821 3.5723 0.3708 1.7600 -116 822 3.6367 0.3639 1.7600 -116 823 3.6975 0.3565 1.7600 -116 824 3.7598 0.3457 1.7600 -116 825 3.8229 0.3335 1.7600 -116 826 3.8908 0.3146 1.7600 -116 827 3.9555 0.2939 1.7600 -116 828 4.0223 0.2708 1.7600 -116 829 4.0849 0.2467 1.7600 -116 830 4.1443 0.2305 1.7600 -116 831 4.2083 0.2241 1.7600 -116 832 4.2727 0.2221 1.7600 -116 833 4.3346 0.2240 1.7600 -116 834 4.3947 0.2252 1.7600 -116 835 4.4548 0.2268 1.7600 -116 836 4.5160 0.2277 1.7600 -116 837 4.5817 0.2304 1.7600 -116 838 4.6496 0.2360 1.7600 -116 839 4.7187 0.2435 1.7600 -116 840 4.7883 0.2465 1.7600 -116 841 4.8574 0.2458 1.7600 -116 842 4.9233 0.2360 1.7600 -116 843 4.9822 0.2235 1.7600 -116 844 5.0378 0.2111 1.7600 -116 845 5.0908 0.1986 1.7600 -116 846 5.1465 0.1818 1.7600 -116 847 5.2044 0.1623 1.7600 -116 848 5.2663 0.1383 1.7600 -116 849 5.3338 0.1069 1.7600 -116 850 5.4057 0.0798 1.7600 -116 851 5.4753 0.0579 1.7600 -116 852 5.5464 0.0408 1.7600 -116 853 5.6161 0.0277 1.7600 -116 854 5.6836 0.0191 1.7600 -116 855 5.7482 0.0142 1.7600 -116 856 5.8125 0.0170 1.7600 -116 857 5.8772 0.0228 1.7600 -116 858 5.9464 0.0320 1.7600 -117 635 -7.7966 0.6102 1.7600 -117 636 -7.7520 0.5905 1.7600 -117 637 -7.7034 0.5743 1.7600 -117 638 -7.6485 0.5603 1.7600 -117 639 -7.5880 0.5487 1.7600 -117 640 -7.5239 0.5407 1.7600 -117 641 -7.4609 0.5374 1.7600 -117 642 -7.4003 0.5393 1.7600 -117 643 -7.3469 0.5420 1.7600 -117 644 -7.2946 0.5452 1.7600 -117 645 -7.2404 0.5457 1.7600 -117 646 -7.1874 0.5408 1.7600 -117 647 -7.1367 0.5337 1.7600 -117 648 -7.0844 0.5223 1.7600 -117 649 -7.0306 0.5111 1.7600 -117 650 -6.9726 0.4994 1.7600 -117 651 -6.9127 0.4832 1.7600 -117 652 -6.8565 0.4631 1.7600 -117 653 -6.8033 0.4428 1.7600 -117 654 -6.7530 0.4183 1.7600 -117 655 -6.7056 0.3972 1.7600 -117 656 -6.6589 0.3786 1.7600 -117 657 -6.6109 0.3675 1.7600 -117 658 -6.5634 0.3626 1.7600 -117 659 -6.5139 0.3570 1.7600 -117 660 -6.4615 0.3543 1.7600 -117 661 -6.4088 0.3566 1.7600 -117 662 -6.3570 0.3648 1.7600 -117 663 -6.3051 0.3778 1.7600 -117 664 -6.2566 0.3929 1.7600 -117 665 -6.2113 0.4126 1.7600 -117 666 -6.1649 0.4315 1.7600 -117 667 -6.1227 0.4463 1.7600 -117 668 -6.0765 0.4542 1.7600 -117 669 -6.0296 0.4543 1.7600 -117 670 -5.9841 0.4508 1.7600 -117 671 -5.9363 0.4465 1.7600 -117 672 -5.8865 0.4393 1.7600 -117 673 -5.8354 0.4290 1.7600 -117 674 -5.7804 0.4116 1.7600 -117 675 -5.7301 0.3898 1.7600 -117 676 -5.6803 0.3639 1.7600 -117 677 -5.6338 0.3364 1.7600 -117 678 -5.5866 0.3085 1.7600 -117 679 -5.5438 0.2885 1.7600 -117 680 -5.4972 0.2694 1.7600 -117 681 -5.4526 0.2579 1.7600 -117 682 -5.4054 0.2499 1.7600 -117 683 -5.3529 0.2441 1.7600 -117 684 -5.2981 0.2415 1.7600 -117 685 -5.2412 0.2397 1.7600 -117 686 -5.1813 0.2446 1.7600 -117 687 -5.1214 0.2536 1.7600 -117 688 -5.0632 0.2636 1.7600 -117 689 -5.0027 0.2753 1.7600 -117 690 -4.9426 0.2878 1.7600 -117 691 -4.8820 0.2985 1.7600 -117 692 -4.8215 0.3019 1.7600 -117 693 -4.7640 0.3027 1.7600 -117 694 -4.7036 0.2995 1.7600 -117 695 -4.6415 0.2997 1.7600 -117 696 -4.5813 0.2985 1.7600 -117 697 -4.5210 0.2964 1.7600 -117 698 -4.4690 0.2865 1.7600 -117 699 -4.4158 0.2737 1.7600 -117 700 -4.3643 0.2545 1.7600 -117 701 -4.3136 0.2367 1.7600 -117 702 -4.2604 0.2235 1.7600 -117 703 -4.2113 0.2198 1.7600 -117 704 -4.1587 0.2192 1.7600 -117 705 -4.1053 0.2210 1.7600 -117 706 -4.0435 0.2247 1.7600 -117 707 -3.9803 0.2290 1.7600 -117 708 -3.9218 0.2391 1.7600 -117 709 -3.8653 0.2577 1.7600 -117 710 -3.8093 0.2750 1.7600 -117 711 -3.7526 0.2969 1.7600 -117 712 -3.6967 0.3162 1.7600 -117 713 -3.6420 0.3284 1.7600 -117 714 -3.5842 0.3331 1.7600 -117 715 -3.5283 0.3338 1.7600 -117 716 -3.4740 0.3333 1.7600 -117 717 -3.4155 0.3310 1.7600 -117 718 -3.3559 0.3245 1.7600 -117 719 -3.2986 0.3171 1.7600 -117 720 -3.2455 0.3061 1.7600 -117 721 -3.1942 0.2915 1.7600 -117 722 -3.1463 0.2791 1.7600 -117 723 -3.0952 0.2700 1.7600 -117 724 -3.0435 0.2638 1.7600 -117 725 -2.9937 0.2647 1.7600 -117 726 -2.9437 0.2693 1.7600 -117 727 -2.8917 0.2766 1.7600 -117 728 -2.8385 0.2839 1.7600 -117 729 -2.7822 0.2952 1.7600 -117 730 -2.7254 0.3127 1.7600 -117 731 -2.6657 0.3343 1.7600 -117 732 -2.6037 0.3567 1.7600 -117 733 -2.5418 0.3794 1.7600 -117 734 -2.4820 0.3998 1.7600 -117 735 -2.4196 0.4154 1.7600 -117 736 -2.3608 0.4262 1.7600 -117 737 -2.3017 0.4309 1.7600 -117 738 -2.2471 0.4303 1.7600 -117 739 -2.1861 0.4200 1.7600 -117 740 -2.1242 0.4062 1.7600 -117 741 -2.0605 0.3895 1.7600 -117 742 -1.9995 0.3665 1.7600 -117 743 -1.9395 0.3400 1.7600 -117 744 -1.8783 0.3133 1.7600 -117 745 -1.8187 0.2904 1.7600 -117 746 -1.7593 0.2728 1.7600 -117 747 -1.6977 0.2628 1.7600 -117 748 -1.6427 0.2590 1.7600 -117 749 -1.5920 0.2550 1.7600 -117 750 -1.5408 0.2567 1.7600 -117 751 -1.4870 0.2623 1.7600 -117 752 -1.4337 0.2725 1.7600 -117 753 -1.3746 0.2870 1.7600 -117 754 -1.3161 0.3026 1.7600 -117 755 -1.2604 0.3184 1.7600 -117 756 -1.2035 0.3306 1.7600 -117 757 -1.1384 0.3352 1.7600 -117 758 -1.0814 0.3281 1.7600 -117 759 -1.0246 0.3204 1.7600 -117 760 -0.9641 0.3124 1.7600 -117 761 -0.9033 0.3018 1.7600 -117 762 -0.8415 0.2876 1.7600 -117 763 -0.7840 0.2680 1.7600 -117 764 -0.7301 0.2404 1.7600 -117 765 -0.6777 0.2154 1.7600 -117 766 -0.6325 0.1950 1.7600 -117 767 -0.5883 0.1834 1.7600 -117 768 -0.5464 0.1782 1.7600 -117 769 -0.5047 0.1786 1.7600 -117 770 -0.4570 0.1824 1.7600 -117 771 -0.4041 0.1908 1.7600 -117 772 -0.3514 0.2022 1.7600 -117 773 -0.3023 0.2191 1.7600 -117 774 -0.2558 0.2406 1.7600 -117 775 -0.2161 0.2671 1.7600 -117 776 -0.1679 0.2923 1.7600 -117 777 -0.1087 0.3101 1.7600 -117 778 -0.0463 0.3162 1.7600 -117 779 0.0098 0.3148 1.7600 -117 780 0.0708 0.3128 1.7600 -117 781 0.1319 0.3085 1.7600 -117 782 0.1997 0.3010 1.7600 -117 783 0.2680 0.2886 1.7600 -117 784 0.3350 0.2699 1.7600 -117 785 0.3971 0.2480 1.7600 -117 786 0.4571 0.2273 1.7600 -117 787 0.5103 0.2093 1.7600 -117 788 0.5610 0.2007 1.7600 -117 789 0.6082 0.2001 1.7600 -117 790 0.6592 0.2033 1.7600 -117 791 0.7112 0.2083 1.7600 -117 792 0.7693 0.2173 1.7600 -117 793 0.8301 0.2298 1.7600 -117 794 0.8920 0.2481 1.7600 -117 795 0.9519 0.2690 1.7600 -117 796 1.0120 0.2916 1.7600 -117 797 1.0690 0.3193 1.7600 -117 798 1.1239 0.3445 1.7600 -117 799 1.1832 0.3602 1.7600 -117 800 1.2425 0.3676 1.7600 -117 801 1.2998 0.3698 1.7600 -117 802 1.3579 0.3690 1.7600 -117 803 1.4205 0.3705 1.7600 -117 804 1.4853 0.3687 1.7600 -117 805 1.5505 0.3628 1.7600 -117 806 1.6173 0.3537 1.7600 -117 807 1.6816 0.3357 1.7600 -117 808 1.7450 0.3213 1.7600 -117 809 1.8038 0.3101 1.7600 -117 810 1.8629 0.3075 1.7600 -117 811 1.9215 0.3109 1.7600 -117 812 1.9758 0.3162 1.7600 -117 813 2.0335 0.3249 1.7600 -117 814 2.0934 0.3388 1.7600 -117 815 2.1536 0.3570 1.7600 -117 816 2.2121 0.3807 1.7600 -117 817 2.2727 0.4041 1.7600 -117 818 2.3309 0.4331 1.7600 -117 819 2.3867 0.4604 1.7600 -117 820 2.4450 0.4846 1.7600 -117 821 2.5051 0.4950 1.7600 -117 822 2.5680 0.4954 1.7600 -117 823 2.6278 0.4954 1.7600 -117 824 2.6900 0.4958 1.7600 -117 825 2.7527 0.4931 1.7600 -117 826 2.8154 0.4880 1.7600 -117 827 2.8745 0.4773 1.7600 -117 828 2.9343 0.4626 1.7600 -117 829 2.9980 0.4433 1.7600 -117 830 3.0554 0.4252 1.7600 -117 831 3.1102 0.4101 1.7600 -117 832 3.1655 0.3991 1.7600 -117 833 3.2246 0.3938 1.7600 -117 834 3.2821 0.3934 1.7600 -117 835 3.3408 0.3978 1.7600 -117 836 3.3997 0.4039 1.7600 -117 837 3.4588 0.4146 1.7600 -117 838 3.5184 0.4296 1.7600 -117 839 3.5805 0.4505 1.7600 -117 840 3.6430 0.4720 1.7600 -117 841 3.7057 0.4911 1.7600 -117 842 3.7689 0.5065 1.7600 -117 843 3.8355 0.5131 1.7600 -117 844 3.8953 0.5174 1.7600 -117 845 3.9577 0.5215 1.7600 -117 846 4.0164 0.5260 1.7600 -117 847 4.0783 0.5280 1.7600 -117 848 4.1401 0.5257 1.7600 -117 849 4.2028 0.5184 1.7600 -117 850 4.2700 0.5087 1.7600 -117 851 4.3395 0.4965 1.7600 -117 852 4.4065 0.4892 1.7600 -117 853 4.4704 0.4840 1.7600 -117 854 4.5343 0.4822 1.7600 -117 855 4.5950 0.4835 1.7600 -117 856 4.6570 0.4896 1.7600 -117 857 4.7191 0.4937 1.7600 -117 858 4.7839 0.5026 1.7600 -117 859 4.8491 0.5138 1.7600 -117 860 4.9134 0.5308 1.7600 -117 861 4.9847 0.5500 1.7600 -117 862 5.0579 0.5710 1.7600 -117 863 5.1286 0.5887 1.7600 -117 864 5.2036 0.5996 1.7600 -117 865 5.2754 0.6024 1.7600 -117 866 5.3440 0.5995 1.7600 -117 867 5.4117 0.5958 1.7600 -117 868 5.4790 0.5922 1.7600 -117 869 5.5480 0.5862 1.7600 -117 870 5.6160 0.5772 1.7600 -117 871 5.6884 0.5642 1.7600 -117 872 5.7633 0.5487 1.7600 -117 873 5.8331 0.5349 1.7600 -117 874 5.9046 0.5202 1.7600 -118 642 -7.8301 1.0837 1.7600 -118 643 -7.7805 1.0735 1.7600 -118 644 -7.7322 1.0578 1.7600 -118 645 -7.6826 1.0355 1.7600 -118 646 -7.6304 1.0108 1.7600 -118 647 -7.5728 0.9857 1.7600 -118 648 -7.5102 0.9602 1.7600 -118 649 -7.4468 0.9335 1.7600 -118 650 -7.3866 0.9067 1.7600 -118 651 -7.3317 0.8817 1.7600 -118 652 -7.2781 0.8593 1.7600 -118 653 -7.2230 0.8403 1.7600 -118 654 -7.1727 0.8297 1.7600 -118 655 -7.1205 0.8238 1.7600 -118 656 -7.0689 0.8179 1.7600 -118 657 -7.0170 0.8117 1.7600 -118 658 -6.9625 0.8063 1.7600 -118 659 -6.9123 0.8035 1.7600 -118 660 -6.8620 0.7985 1.7600 -118 661 -6.8156 0.7925 1.7600 -118 662 -6.7731 0.7867 1.7600 -118 663 -6.7296 0.7778 1.7600 -118 664 -6.6866 0.7629 1.7600 -118 665 -6.6351 0.7462 1.7600 -118 666 -6.5829 0.7264 1.7600 -118 667 -6.5270 0.7066 1.7600 -118 668 -6.4643 0.6882 1.7600 -118 669 -6.4024 0.6709 1.7600 -118 670 -6.3451 0.6499 1.7600 -118 671 -6.2939 0.6290 1.7600 -118 672 -6.2476 0.6108 1.7600 -118 673 -6.2036 0.5967 1.7600 -118 674 -6.1619 0.5908 1.7600 -118 675 -6.1216 0.5894 1.7600 -118 676 -6.0830 0.5869 1.7600 -118 677 -6.0396 0.5870 1.7600 -118 678 -6.0012 0.5885 1.7600 -118 679 -5.9579 0.5953 1.7600 -118 680 -5.9199 0.6011 1.7600 -118 681 -5.8847 0.6069 1.7600 -118 682 -5.8522 0.6118 1.7600 -118 683 -5.8192 0.6106 1.7600 -118 684 -5.7883 0.6064 1.7600 -118 685 -5.7606 0.5999 1.7600 -118 686 -5.7264 0.5912 1.7600 -118 687 -5.6886 0.5789 1.7600 -118 688 -5.6459 0.5657 1.7600 -118 689 -5.6047 0.5479 1.7600 -118 690 -5.5667 0.5325 1.7600 -118 691 -5.5292 0.5193 1.7600 -118 692 -5.4897 0.5089 1.7600 -118 693 -5.4469 0.5060 1.7600 -118 694 -5.4028 0.5061 1.7600 -118 695 -5.3554 0.5096 1.7600 -118 696 -5.3097 0.5138 1.7600 -118 697 -5.2604 0.5228 1.7600 -118 698 -5.2103 0.5325 1.7600 -118 699 -5.1624 0.5455 1.7600 -118 700 -5.1120 0.5595 1.7600 -118 701 -5.0624 0.5708 1.7600 -118 702 -5.0080 0.5762 1.7600 -118 703 -4.9531 0.5761 1.7600 -118 704 -4.8986 0.5726 1.7600 -118 705 -4.8401 0.5697 1.7600 -118 706 -4.7814 0.5628 1.7600 -118 707 -4.7233 0.5526 1.7600 -118 708 -4.6678 0.5395 1.7600 -118 709 -4.6162 0.5266 1.7600 -118 710 -4.5676 0.5182 1.7600 -118 711 -4.5171 0.5141 1.7600 -118 712 -4.4716 0.5148 1.7600 -118 713 -4.4228 0.5202 1.7600 -118 714 -4.3711 0.5220 1.7600 -118 715 -4.3152 0.5242 1.7600 -118 716 -4.2540 0.5268 1.7600 -118 717 -4.1908 0.5304 1.7600 -118 718 -4.1265 0.5344 1.7600 -118 719 -4.0703 0.5386 1.7600 -118 720 -4.0188 0.5381 1.7600 -118 721 -3.9667 0.5318 1.7600 -118 722 -3.9189 0.5198 1.7600 -118 723 -3.8739 0.5076 1.7600 -118 724 -3.8256 0.4945 1.7600 -118 725 -3.7739 0.4795 1.7600 -118 726 -3.7171 0.4646 1.7600 -118 727 -3.6577 0.4485 1.7600 -118 728 -3.5945 0.4304 1.7600 -118 729 -3.5379 0.4139 1.7600 -118 730 -3.4838 0.4019 1.7600 -118 731 -3.4264 0.3977 1.7600 -118 732 -3.3687 0.4004 1.7600 -118 733 -3.3138 0.4056 1.7600 -118 734 -3.2575 0.4121 1.7600 -118 735 -3.1976 0.4196 1.7600 -118 736 -3.1313 0.4298 1.7600 -118 737 -3.0636 0.4395 1.7600 -118 738 -2.9981 0.4527 1.7600 -118 739 -2.9349 0.4637 1.7600 -118 740 -2.8749 0.4708 1.7600 -118 741 -2.8185 0.4713 1.7600 -118 742 -2.7674 0.4704 1.7600 -118 743 -2.7176 0.4677 1.7600 -118 744 -2.6693 0.4657 1.7600 -118 745 -2.6208 0.4557 1.7600 -118 746 -2.5717 0.4458 1.7600 -118 747 -2.5213 0.4336 1.7600 -118 748 -2.4746 0.4240 1.7600 -118 749 -2.4310 0.4215 1.7600 -118 750 -2.3847 0.4255 1.7600 -118 751 -2.3343 0.4331 1.7600 -118 752 -2.2804 0.4404 1.7600 -118 753 -2.2249 0.4429 1.7600 -118 754 -2.1697 0.4448 1.7600 -118 755 -2.1095 0.4454 1.7600 -118 756 -2.0448 0.4472 1.7600 -118 757 -1.9873 0.4457 1.7600 -118 758 -1.9304 0.4438 1.7600 -118 759 -1.8735 0.4368 1.7600 -118 760 -1.8160 0.4274 1.7600 -118 761 -1.7608 0.4170 1.7600 -118 762 -1.7019 0.4067 1.7600 -118 763 -1.6435 0.3955 1.7600 -118 764 -1.5791 0.3837 1.7600 -118 765 -1.5146 0.3697 1.7600 -118 766 -1.4512 0.3571 1.7600 -118 767 -1.3892 0.3482 1.7600 -118 768 -1.3256 0.3450 1.7600 -118 769 -1.2647 0.3480 1.7600 -118 770 -1.2036 0.3539 1.7600 -118 771 -1.1404 0.3620 1.7600 -118 772 -1.0766 0.3709 1.7600 -118 773 -1.0084 0.3827 1.7600 -118 774 -0.9392 0.3960 1.7600 -118 775 -0.8747 0.4076 1.7600 -118 776 -0.8076 0.4203 1.7600 -118 777 -0.7381 0.4280 1.7600 -118 778 -0.6762 0.4306 1.7600 -118 779 -0.6135 0.4339 1.7600 -118 780 -0.5500 0.4375 1.7600 -118 781 -0.4849 0.4393 1.7600 -118 782 -0.4249 0.4372 1.7600 -118 783 -0.3644 0.4304 1.7600 -118 784 -0.2999 0.4252 1.7600 -118 785 -0.2387 0.4276 1.7600 -118 786 -0.1762 0.4377 1.7600 -118 787 -0.1117 0.4493 1.7600 -118 788 -0.0411 0.4651 1.7600 -118 789 0.0367 0.4831 1.7600 -118 790 0.1111 0.4980 1.7600 -118 791 0.1745 0.5092 1.7600 -118 792 0.2330 0.5204 1.7600 -118 793 0.2961 0.5300 1.7600 -118 794 0.3578 0.5372 1.7600 -118 795 0.4205 0.5408 1.7600 -118 796 0.4867 0.5442 1.7600 -118 797 0.5551 0.5494 1.7600 -118 798 0.6272 0.5564 1.7600 -118 799 0.6997 0.5624 1.7600 -118 800 0.7673 0.5661 1.7600 -118 801 0.8316 0.5704 1.7600 -118 802 0.8988 0.5784 1.7600 -118 803 0.9633 0.5943 1.7600 -118 804 1.0210 0.6117 1.7600 -118 805 1.0844 0.6278 1.7600 -118 806 1.1483 0.6452 1.7600 -118 807 1.2155 0.6593 1.7600 -118 808 1.2785 0.6730 1.7600 -118 809 1.3404 0.6898 1.7600 -118 810 1.3982 0.7044 1.7600 -118 811 1.4573 0.7194 1.7600 -118 812 1.5238 0.7312 1.7600 -118 813 1.5888 0.7363 1.7600 -118 814 1.6509 0.7373 1.7600 -118 815 1.7147 0.7370 1.7600 -118 816 1.7778 0.7351 1.7600 -118 817 1.8424 0.7318 1.7600 -118 818 1.9077 0.7258 1.7600 -118 819 1.9671 0.7195 1.7600 -118 820 2.0223 0.7116 1.7600 -118 821 2.0805 0.7097 1.7600 -118 822 2.1337 0.7148 1.7600 -118 823 2.1865 0.7239 1.7600 -118 824 2.2404 0.7277 1.7600 -118 825 2.2954 0.7288 1.7600 -118 826 2.3497 0.7325 1.7600 -118 827 2.4069 0.7393 1.7600 -118 828 2.4647 0.7463 1.7600 -118 829 2.5184 0.7561 1.7600 -118 830 2.5703 0.7669 1.7600 -118 831 2.6268 0.7768 1.7600 -118 832 2.6869 0.7787 1.7600 -118 833 2.7449 0.7770 1.7600 -118 834 2.8065 0.7749 1.7600 -118 835 2.8685 0.7725 1.7600 -118 836 2.9294 0.7691 1.7600 -118 837 2.9926 0.7633 1.7600 -118 838 3.0580 0.7566 1.7600 -118 839 3.1217 0.7492 1.7600 -118 840 3.1820 0.7430 1.7600 -118 841 3.2435 0.7387 1.7600 -118 842 3.3010 0.7404 1.7600 -118 843 3.3567 0.7476 1.7600 -118 844 3.4118 0.7548 1.7600 -118 845 3.4670 0.7626 1.7600 -118 846 3.5220 0.7724 1.7600 -118 847 3.5834 0.7858 1.7600 -118 848 3.6475 0.8027 1.7600 -118 849 3.7094 0.8208 1.7600 -118 850 3.7697 0.8388 1.7600 -118 851 3.8338 0.8533 1.7600 -118 852 3.8991 0.8622 1.7600 -118 853 3.9622 0.8683 1.7600 -118 854 4.0294 0.8722 1.7600 -118 855 4.0952 0.8738 1.7600 -118 856 4.1645 0.8744 1.7600 -118 857 4.2335 0.8729 1.7600 -118 858 4.3069 0.8719 1.7600 -118 859 4.3806 0.8706 1.7600 -118 860 4.4484 0.8714 1.7600 -118 861 4.5130 0.8775 1.7600 -118 862 4.5744 0.8874 1.7600 -118 863 4.6318 0.9001 1.7600 -118 864 4.6910 0.9139 1.7600 -118 865 4.7478 0.9257 1.7600 -118 866 4.8063 0.9400 1.7600 -118 867 4.8759 0.9563 1.7600 -118 868 4.9505 0.9735 1.7600 -118 869 5.0239 0.9913 1.7600 -118 870 5.0984 1.0058 1.7600 -118 871 5.1750 1.0144 1.7600 -118 872 5.2448 1.0181 1.7600 -118 873 5.3130 1.0200 1.7600 -118 874 5.3770 1.0244 1.7600 -118 875 5.4408 1.0279 1.7600 -118 876 5.5101 1.0324 1.7600 -118 877 5.5872 1.0354 1.7600 -118 878 5.6688 1.0391 1.7600 -118 879 5.7520 1.0432 1.7600 -118 880 5.8335 1.0527 1.7600 -118 881 5.9074 1.0653 1.7600 -119 656 -7.7774 0.9072 1.7600 -119 657 -7.7186 0.8719 1.7600 -119 658 -7.6671 0.8378 1.7600 -119 659 -7.6217 0.8085 1.7600 -119 660 -7.5788 0.7830 1.7600 -119 661 -7.5350 0.7611 1.7600 -119 662 -7.4881 0.7433 1.7600 -119 663 -7.4359 0.7288 1.7600 -119 664 -7.3844 0.7185 1.7600 -119 665 -7.3331 0.7134 1.7600 -119 666 -7.2867 0.7089 1.7600 -119 667 -7.2440 0.7036 1.7600 -119 668 -7.2013 0.6942 1.7600 -119 669 -7.1606 0.6784 1.7600 -119 670 -7.1184 0.6572 1.7600 -119 671 -7.0720 0.6334 1.7600 -119 672 -7.0198 0.6085 1.7600 -119 673 -6.9661 0.5801 1.7600 -119 674 -6.9146 0.5446 1.7600 -119 675 -6.8734 0.5111 1.7600 -119 676 -6.8332 0.4787 1.7600 -119 677 -6.7908 0.4462 1.7600 -119 678 -6.7502 0.4209 1.7600 -119 679 -6.7057 0.3981 1.7600 -119 680 -6.6582 0.3774 1.7600 -119 681 -6.6106 0.3632 1.7600 -119 682 -6.5605 0.3559 1.7600 -119 683 -6.5086 0.3513 1.7600 -119 684 -6.4570 0.3484 1.7600 -119 685 -6.4063 0.3446 1.7600 -119 686 -6.3546 0.3412 1.7600 -119 687 -6.3132 0.3314 1.7600 -119 688 -6.2705 0.3184 1.7600 -119 689 -6.2262 0.3023 1.7600 -119 690 -6.1777 0.2881 1.7600 -119 691 -6.1213 0.2732 1.7600 -119 692 -6.0662 0.2556 1.7600 -119 693 -6.0136 0.2338 1.7600 -119 694 -5.9632 0.2138 1.7600 -119 695 -5.9167 0.1985 1.7600 -119 696 -5.8696 0.1875 1.7600 -119 697 -5.8214 0.1815 1.7600 -119 698 -5.7722 0.1787 1.7600 -119 699 -5.7228 0.1784 1.7600 -119 700 -5.6719 0.1831 1.7600 -119 701 -5.6191 0.1901 1.7600 -119 702 -5.5674 0.1990 1.7600 -119 703 -5.5147 0.2090 1.7600 -119 704 -5.4693 0.2164 1.7600 -119 705 -5.4239 0.2211 1.7600 -119 706 -5.3790 0.2207 1.7600 -119 707 -5.3298 0.2214 1.7600 -119 708 -5.2786 0.2215 1.7600 -119 709 -5.2238 0.2201 1.7600 -119 710 -5.1668 0.2174 1.7600 -119 711 -5.1043 0.2092 1.7600 -119 712 -5.0431 0.1964 1.7600 -119 713 -4.9849 0.1856 1.7600 -119 714 -4.9355 0.1798 1.7600 -119 715 -4.8848 0.1812 1.7600 -119 716 -4.8352 0.1853 1.7600 -119 717 -4.7860 0.1925 1.7600 -119 718 -4.7348 0.2029 1.7600 -119 719 -4.6866 0.2144 1.7600 -119 720 -4.6378 0.2296 1.7600 -119 721 -4.5932 0.2473 1.7600 -119 722 -4.5479 0.2611 1.7600 -119 723 -4.5033 0.2724 1.7600 -119 724 -4.4608 0.2783 1.7600 -119 725 -4.4169 0.2808 1.7600 -119 726 -4.3714 0.2835 1.7600 -119 727 -4.3258 0.2863 1.7600 -119 728 -4.2764 0.2882 1.7600 -119 729 -4.2246 0.2845 1.7600 -119 730 -4.1729 0.2737 1.7600 -119 731 -4.1227 0.2614 1.7600 -119 732 -4.0685 0.2522 1.7600 -119 733 -4.0191 0.2496 1.7600 -119 734 -3.9760 0.2481 1.7600 -119 735 -3.9302 0.2536 1.7600 -119 736 -3.8883 0.2584 1.7600 -119 737 -3.8464 0.2614 1.7600 -119 738 -3.8072 0.2666 1.7600 -119 739 -3.7757 0.2730 1.7600 -119 740 -3.7391 0.2813 1.7600 -119 741 -3.6983 0.2863 1.7600 -119 742 -3.6514 0.2820 1.7600 -119 743 -3.6046 0.2753 1.7600 -119 744 -3.5542 0.2691 1.7600 -119 745 -3.4980 0.2641 1.7600 -119 746 -3.4375 0.2546 1.7600 -119 747 -3.3733 0.2387 1.7600 -119 748 -3.3114 0.2235 1.7600 -119 749 -3.2522 0.2079 1.7600 -119 750 -3.1951 0.1990 1.7600 -119 751 -3.1392 0.1960 1.7600 -119 752 -3.0862 0.1959 1.7600 -119 753 -3.0377 0.2027 1.7600 -119 754 -2.9882 0.2130 1.7600 -119 755 -2.9395 0.2228 1.7600 -119 756 -2.8891 0.2284 1.7600 -119 757 -2.8376 0.2273 1.7600 -119 758 -2.7831 0.2244 1.7600 -119 759 -2.7266 0.2207 1.7600 -119 760 -2.6700 0.2168 1.7600 -119 761 -2.6078 0.2098 1.7600 -119 762 -2.5402 0.1984 1.7600 -119 763 -2.4773 0.1925 1.7600 -119 764 -2.4168 0.1925 1.7600 -119 765 -2.3575 0.1963 1.7600 -119 766 -2.2987 0.2021 1.7600 -119 767 -2.2388 0.2081 1.7600 -119 768 -2.1825 0.2201 1.7600 -119 769 -2.1252 0.2334 1.7600 -119 770 -2.0647 0.2495 1.7600 -119 771 -2.0032 0.2635 1.7600 -119 772 -1.9392 0.2670 1.7600 -119 773 -1.8777 0.2664 1.7600 -119 774 -1.8127 0.2599 1.7600 -119 775 -1.7530 0.2506 1.7600 -119 776 -1.6910 0.2366 1.7600 -119 777 -1.6299 0.2203 1.7600 -119 778 -1.5666 0.2115 1.7600 -119 779 -1.5023 0.2080 1.7600 -119 780 -1.4368 0.2095 1.7600 -119 781 -1.3680 0.2151 1.7600 -119 782 -1.2973 0.2242 1.7600 -119 783 -1.2234 0.2367 1.7600 -119 784 -1.1487 0.2511 1.7600 -119 785 -1.0763 0.2633 1.7600 -119 786 -1.0059 0.2694 1.7600 -119 787 -0.9329 0.2694 1.7600 -119 788 -0.8610 0.2672 1.7600 -119 789 -0.7918 0.2606 1.7600 -119 790 -0.7247 0.2501 1.7600 -119 791 -0.6523 0.2364 1.7600 -119 792 -0.5814 0.2256 1.7600 -119 793 -0.5131 0.2209 1.7600 -119 794 -0.4514 0.2193 1.7600 -119 795 -0.3893 0.2217 1.7600 -119 796 -0.3277 0.2265 1.7600 -119 797 -0.2607 0.2348 1.7600 -119 798 -0.1932 0.2485 1.7600 -119 799 -0.1265 0.2620 1.7600 -119 800 -0.0640 0.2748 1.7600 -119 801 -0.0034 0.2821 1.7600 -119 802 0.0581 0.2842 1.7600 -119 803 0.1250 0.2830 1.7600 -119 804 0.1904 0.2811 1.7600 -119 805 0.2571 0.2736 1.7600 -119 806 0.3263 0.2602 1.7600 -119 807 0.3974 0.2407 1.7600 -119 808 0.4625 0.2283 1.7600 -119 809 0.5214 0.2244 1.7600 -119 810 0.5779 0.2260 1.7600 -119 811 0.6369 0.2308 1.7600 -119 812 0.6983 0.2399 1.7600 -119 813 0.7628 0.2515 1.7600 -119 814 0.8320 0.2692 1.7600 -119 815 0.9026 0.2870 1.7600 -119 816 0.9701 0.3010 1.7600 -119 817 1.0365 0.3090 1.7600 -119 818 1.0999 0.3106 1.7600 -119 819 1.1653 0.3073 1.7600 -119 820 1.2308 0.3048 1.7600 -119 821 1.2962 0.3003 1.7600 -119 822 1.3647 0.2947 1.7600 -119 823 1.4356 0.2842 1.7600 -119 824 1.5086 0.2719 1.7600 -119 825 1.5819 0.2623 1.7600 -119 826 1.6514 0.2594 1.7600 -119 827 1.7143 0.2591 1.7600 -119 828 1.7786 0.2649 1.7600 -119 829 1.8458 0.2747 1.7600 -119 830 1.9129 0.2880 1.7600 -119 831 1.9810 0.3024 1.7600 -119 832 2.0532 0.3184 1.7600 -119 833 2.1225 0.3305 1.7600 -119 834 2.1889 0.3352 1.7600 -119 835 2.2528 0.3348 1.7600 -119 836 2.3139 0.3305 1.7600 -119 837 2.3778 0.3242 1.7600 -119 838 2.4367 0.3136 1.7600 -119 839 2.4903 0.2992 1.7600 -119 840 2.5472 0.2802 1.7600 -119 841 2.6118 0.2654 1.7600 -119 842 2.6756 0.2562 1.7600 -119 843 2.7367 0.2504 1.7600 -119 844 2.7940 0.2487 1.7600 -119 845 2.8523 0.2527 1.7600 -119 846 2.9092 0.2580 1.7600 -119 847 2.9654 0.2700 1.7600 -119 848 3.0215 0.2848 1.7600 -119 849 3.0864 0.3001 1.7600 -119 850 3.1517 0.3139 1.7600 -119 851 3.2143 0.3248 1.7600 -119 852 3.2730 0.3283 1.7600 -119 853 3.3313 0.3252 1.7600 -119 854 3.3899 0.3196 1.7600 -119 855 3.4542 0.3132 1.7600 -119 856 3.5198 0.3003 1.7600 -119 857 3.5888 0.2773 1.7600 -119 858 3.6629 0.2586 1.7600 -119 859 3.7322 0.2528 1.7600 -119 860 3.7977 0.2538 1.7600 -119 861 3.8606 0.2577 1.7600 -119 862 3.9218 0.2649 1.7600 -119 863 3.9797 0.2711 1.7600 -119 864 4.0370 0.2804 1.7600 -119 865 4.0992 0.2950 1.7600 -119 866 4.1668 0.3078 1.7600 -119 867 4.2352 0.3192 1.7600 -119 868 4.3029 0.3257 1.7600 -119 869 4.3637 0.3250 1.7600 -119 870 4.4267 0.3229 1.7600 -119 871 4.4838 0.3176 1.7600 -119 872 4.5383 0.3107 1.7600 -119 873 4.5957 0.2962 1.7600 -119 874 4.6632 0.2749 1.7600 -119 875 4.7388 0.2552 1.7600 -119 876 4.8105 0.2430 1.7600 -119 877 4.8805 0.2391 1.7600 -119 878 4.9473 0.2428 1.7600 -119 879 5.0113 0.2496 1.7600 -119 880 5.0704 0.2602 1.7600 -119 881 5.1258 0.2741 1.7600 -119 882 5.1858 0.2939 1.7600 -119 883 5.2553 0.3109 1.7600 -119 884 5.3282 0.3259 1.7600 -119 885 5.4007 0.3309 1.7600 -119 886 5.4727 0.3308 1.7600 -119 887 5.5422 0.3275 1.7600 -119 888 5.6079 0.3234 1.7600 -119 889 5.6712 0.3140 1.7600 -119 890 5.7376 0.2996 1.7600 -119 891 5.8173 0.2819 1.7600 -119 892 5.9027 0.2636 1.7600 -120 635 -7.8252 2.1588 1.7600 -120 636 -7.7845 2.1580 1.7600 -120 637 -7.7462 2.1540 1.7600 -120 638 -7.7079 2.1488 1.7600 -120 639 -7.6665 2.1424 1.7600 -120 640 -7.6230 2.1338 1.7600 -120 641 -7.5804 2.1216 1.7600 -120 642 -7.5395 2.1065 1.7600 -120 643 -7.5015 2.0904 1.7600 -120 644 -7.4632 2.0745 1.7600 -120 645 -7.4232 2.0593 1.7600 -120 646 -7.3818 2.0453 1.7600 -120 647 -7.3387 2.0341 1.7600 -120 648 -7.2941 2.0257 1.7600 -120 649 -7.2478 2.0190 1.7600 -120 650 -7.1980 2.0125 1.7600 -120 651 -7.1462 2.0084 1.7600 -120 652 -7.0923 2.0065 1.7600 -120 653 -7.0417 2.0075 1.7600 -120 654 -6.9968 2.0105 1.7600 -120 655 -6.9510 2.0134 1.7600 -120 656 -6.9030 2.0145 1.7600 -120 657 -6.8561 2.0115 1.7600 -120 658 -6.8099 2.0061 1.7600 -120 659 -6.7626 1.9991 1.7600 -120 660 -6.7125 1.9899 1.7600 -120 661 -6.6591 1.9776 1.7600 -120 662 -6.6049 1.9625 1.7600 -120 663 -6.5517 1.9451 1.7600 -120 664 -6.5017 1.9251 1.7600 -120 665 -6.4558 1.9054 1.7600 -120 666 -6.4117 1.8890 1.7600 -120 667 -6.3688 1.8779 1.7600 -120 668 -6.3283 1.8688 1.7600 -120 669 -6.2889 1.8622 1.7600 -120 670 -6.2465 1.8533 1.7600 -120 671 -6.2056 1.8438 1.7600 -120 672 -6.1632 1.8370 1.7600 -120 673 -6.1167 1.8324 1.7600 -120 674 -6.0732 1.8304 1.7600 -120 675 -6.0266 1.8297 1.7600 -120 676 -5.9878 1.8286 1.7600 -120 677 -5.9441 1.8279 1.7600 -120 678 -5.9015 1.8209 1.7600 -120 679 -5.8567 1.8140 1.7600 -120 680 -5.8197 1.8062 1.7600 -120 681 -5.7784 1.7997 1.7600 -120 682 -5.7397 1.7924 1.7600 -120 683 -5.6974 1.7856 1.7600 -120 684 -5.6534 1.7760 1.7600 -120 685 -5.6105 1.7649 1.7600 -120 686 -5.5689 1.7518 1.7600 -120 687 -5.5326 1.7339 1.7600 -120 688 -5.4925 1.7154 1.7600 -120 689 -5.4493 1.6951 1.7600 -120 690 -5.4047 1.6834 1.7600 -120 691 -5.3556 1.6784 1.7600 -120 692 -5.3108 1.6746 1.7600 -120 693 -5.2626 1.6722 1.7600 -120 694 -5.2118 1.6681 1.7600 -120 695 -5.1578 1.6655 1.7600 -120 696 -5.0983 1.6662 1.7600 -120 697 -5.0398 1.6719 1.7600 -120 698 -4.9836 1.6745 1.7600 -120 699 -4.9296 1.6733 1.7600 -120 700 -4.8737 1.6664 1.7600 -120 701 -4.8147 1.6583 1.7600 -120 702 -4.7599 1.6441 1.7600 -120 703 -4.7079 1.6290 1.7600 -120 704 -4.6539 1.6083 1.7600 -120 705 -4.5986 1.5878 1.7600 -120 706 -4.5431 1.5634 1.7600 -120 707 -4.4891 1.5392 1.7600 -120 708 -4.4385 1.5235 1.7600 -120 709 -4.3882 1.5115 1.7600 -120 710 -4.3329 1.5044 1.7600 -120 711 -4.2845 1.5008 1.7600 -120 712 -4.2337 1.4982 1.7600 -120 713 -4.1803 1.4956 1.7600 -120 714 -4.1247 1.4993 1.7600 -120 715 -4.0655 1.5054 1.7600 -120 716 -4.0038 1.5137 1.7600 -120 717 -3.9480 1.5223 1.7600 -120 718 -3.8912 1.5259 1.7600 -120 719 -3.8411 1.5250 1.7600 -120 720 -3.7939 1.5227 1.7600 -120 721 -3.7470 1.5200 1.7600 -120 722 -3.7001 1.5169 1.7600 -120 723 -3.6496 1.5102 1.7600 -120 724 -3.6000 1.5003 1.7600 -120 725 -3.5508 1.4913 1.7600 -120 726 -3.5010 1.4888 1.7600 -120 727 -3.4494 1.4896 1.7600 -120 728 -3.3945 1.4956 1.7600 -120 729 -3.3403 1.5055 1.7600 -120 730 -3.2821 1.5156 1.7600 -120 731 -3.2189 1.5269 1.7600 -120 732 -3.1540 1.5399 1.7600 -120 733 -3.0872 1.5497 1.7600 -120 734 -3.0259 1.5583 1.7600 -120 735 -2.9683 1.5586 1.7600 -120 736 -2.9140 1.5580 1.7600 -120 737 -2.8598 1.5537 1.7600 -120 738 -2.8061 1.5489 1.7600 -120 739 -2.7540 1.5410 1.7600 -120 740 -2.7024 1.5317 1.7600 -120 741 -2.6528 1.5207 1.7600 -120 742 -2.6022 1.5100 1.7600 -120 743 -2.5448 1.5052 1.7600 -120 744 -2.4893 1.5057 1.7600 -120 745 -2.4368 1.5102 1.7600 -120 746 -2.3821 1.5180 1.7600 -120 747 -2.3277 1.5253 1.7600 -120 748 -2.2681 1.5370 1.7600 -120 749 -2.2046 1.5516 1.7600 -120 750 -2.1441 1.5663 1.7600 -120 751 -2.0846 1.5759 1.7600 -120 752 -2.0245 1.5801 1.7600 -120 753 -1.9685 1.5795 1.7600 -120 754 -1.9139 1.5775 1.7600 -120 755 -1.8609 1.5740 1.7600 -120 756 -1.8096 1.5674 1.7600 -120 757 -1.7588 1.5579 1.7600 -120 758 -1.7081 1.5466 1.7600 -120 759 -1.6572 1.5348 1.7600 -120 760 -1.6031 1.5254 1.7600 -120 761 -1.5487 1.5204 1.7600 -120 762 -1.4947 1.5191 1.7600 -120 763 -1.4379 1.5219 1.7600 -120 764 -1.3773 1.5293 1.7600 -120 765 -1.3145 1.5397 1.7600 -120 766 -1.2517 1.5540 1.7600 -120 767 -1.1922 1.5699 1.7600 -120 768 -1.1346 1.5770 1.7600 -120 769 -1.0795 1.5746 1.7600 -120 770 -1.0270 1.5684 1.7600 -120 771 -0.9749 1.5611 1.7600 -120 772 -0.9212 1.5512 1.7600 -120 773 -0.8679 1.5358 1.7600 -120 774 -0.8178 1.5168 1.7600 -120 775 -0.7686 1.4941 1.7600 -120 776 -0.7172 1.4752 1.7600 -120 777 -0.6724 1.4640 1.7600 -120 778 -0.6225 1.4587 1.7600 -120 779 -0.5722 1.4553 1.7600 -120 780 -0.5192 1.4509 1.7600 -120 781 -0.4620 1.4476 1.7600 -120 782 -0.4012 1.4492 1.7600 -120 783 -0.3393 1.4568 1.7600 -120 784 -0.2767 1.4669 1.7600 -120 785 -0.2116 1.4775 1.7600 -120 786 -0.1524 1.4808 1.7600 -120 787 -0.0970 1.4751 1.7600 -120 788 -0.0396 1.4717 1.7600 -120 789 0.0226 1.4655 1.7600 -120 790 0.0864 1.4582 1.7600 -120 791 0.1481 1.4464 1.7600 -120 792 0.2098 1.4413 1.7600 -120 793 0.2718 1.4295 1.7600 -120 794 0.3296 1.4216 1.7600 -120 795 0.3912 1.4216 1.7600 -120 796 0.4544 1.4266 1.7600 -120 797 0.5249 1.4319 1.7600 -120 798 0.5858 1.4449 1.7600 -120 799 0.6537 1.4579 1.7600 -120 800 0.7216 1.4771 1.7600 -120 801 0.7892 1.5027 1.7600 -120 802 0.8556 1.5203 1.7600 -120 803 0.9182 1.5312 1.7600 -120 804 0.9795 1.5348 1.7600 -120 805 1.0421 1.5332 1.7600 -120 806 1.1044 1.5279 1.7600 -120 807 1.1664 1.5191 1.7600 -120 808 1.2291 1.5060 1.7600 -120 809 1.2917 1.4894 1.7600 -120 810 1.3528 1.4754 1.7600 -120 811 1.4108 1.4649 1.7600 -120 812 1.4733 1.4622 1.7600 -120 813 1.5326 1.4644 1.7600 -120 814 1.5935 1.4660 1.7600 -120 815 1.6525 1.4700 1.7600 -120 816 1.7172 1.4784 1.7600 -120 817 1.7815 1.4922 1.7600 -120 818 1.8486 1.5112 1.7600 -120 819 1.9164 1.5243 1.7600 -120 820 1.9804 1.5305 1.7600 -120 821 2.0423 1.5264 1.7600 -120 822 2.1068 1.5183 1.7600 -120 823 2.1691 1.5081 1.7600 -120 824 2.2334 1.4965 1.7600 -120 825 2.2982 1.4829 1.7600 -120 826 2.3624 1.4661 1.7600 -120 827 2.4266 1.4537 1.7600 -120 828 2.4901 1.4433 1.7600 -120 829 2.5515 1.4424 1.7600 -120 830 2.6085 1.4446 1.7600 -120 831 2.6666 1.4479 1.7600 -120 832 2.7247 1.4525 1.7600 -120 833 2.7881 1.4605 1.7600 -120 834 2.8517 1.4765 1.7600 -120 835 2.9156 1.4968 1.7600 -120 836 2.9768 1.5135 1.7600 -120 837 3.0408 1.5227 1.7600 -120 838 3.1032 1.5229 1.7600 -120 839 3.1622 1.5220 1.7600 -120 840 3.2265 1.5196 1.7600 -120 841 3.2908 1.5165 1.7600 -120 842 3.3575 1.5123 1.7600 -120 843 3.4224 1.5073 1.7600 -120 844 3.4898 1.4966 1.7600 -120 845 3.5614 1.4920 1.7600 -120 846 3.6314 1.4984 1.7600 -120 847 3.6957 1.5089 1.7600 -120 848 3.7548 1.5181 1.7600 -120 849 3.8116 1.5276 1.7600 -120 850 3.8737 1.5381 1.7600 -120 851 3.9412 1.5536 1.7600 -120 852 4.0083 1.5739 1.7600 -120 853 4.0789 1.5912 1.7600 -120 854 4.1451 1.6024 1.7600 -120 855 4.2073 1.6076 1.7600 -120 856 4.2678 1.6101 1.7600 -120 857 4.3351 1.6130 1.7600 -120 858 4.4012 1.6159 1.7600 -120 859 4.4667 1.6172 1.7600 -120 860 4.5332 1.6173 1.7600 -120 861 4.6001 1.6162 1.7600 -120 862 4.6753 1.6171 1.7600 -120 863 4.7495 1.6242 1.7600 -120 864 4.8138 1.6341 1.7600 -120 865 4.8718 1.6416 1.7600 -120 866 4.9292 1.6485 1.7600 -120 867 4.9899 1.6549 1.7600 -120 868 5.0557 1.6654 1.7600 -120 869 5.1296 1.6791 1.7600 -120 870 5.2039 1.6914 1.7600 -120 871 5.2792 1.6986 1.7600 -120 872 5.3494 1.6986 1.7600 -120 873 5.4186 1.6934 1.7600 -120 874 5.4837 1.6879 1.7600 -120 875 5.5489 1.6796 1.7600 -120 876 5.6159 1.6688 1.7600 -120 877 5.6884 1.6582 1.7600 -120 878 5.7642 1.6449 1.7600 -120 879 5.8438 1.6379 1.7600 -120 880 5.9216 1.6400 1.7600 -121 669 -7.8118 1.1851 1.7600 -121 670 -7.7617 1.1792 1.7600 -121 671 -7.7122 1.1728 1.7600 -121 672 -7.6599 1.1629 1.7600 -121 673 -7.6072 1.1488 1.7600 -121 674 -7.5568 1.1316 1.7600 -121 675 -7.5076 1.1118 1.7600 -121 676 -7.4572 1.0900 1.7600 -121 677 -7.4050 1.0672 1.7600 -121 678 -7.3500 1.0425 1.7600 -121 679 -7.2968 1.0152 1.7600 -121 680 -7.2480 0.9849 1.7600 -121 681 -7.1995 0.9554 1.7600 -121 682 -7.1507 0.9274 1.7600 -121 683 -7.0991 0.8992 1.7600 -121 684 -7.0464 0.8750 1.7600 -121 685 -6.9919 0.8578 1.7600 -121 686 -6.9442 0.8456 1.7600 -121 687 -6.8950 0.8342 1.7600 -121 688 -6.8472 0.8239 1.7600 -121 689 -6.7936 0.8151 1.7600 -121 690 -6.7381 0.8061 1.7600 -121 691 -6.6820 0.7991 1.7600 -121 692 -6.6227 0.7922 1.7600 -121 693 -6.5647 0.7874 1.7600 -121 694 -6.5038 0.7823 1.7600 -121 695 -6.4391 0.7685 1.7600 -121 696 -6.3790 0.7524 1.7600 -121 697 -6.3240 0.7342 1.7600 -121 698 -6.2716 0.7174 1.7600 -121 699 -6.2153 0.7028 1.7600 -121 700 -6.1580 0.6844 1.7600 -121 701 -6.1001 0.6662 1.7600 -121 702 -6.0419 0.6456 1.7600 -121 703 -5.9907 0.6245 1.7600 -121 704 -5.9412 0.6064 1.7600 -121 705 -5.8949 0.5945 1.7600 -121 706 -5.8395 0.5881 1.7600 -121 707 -5.7912 0.5846 1.7600 -121 708 -5.7464 0.5865 1.7600 -121 709 -5.6980 0.5886 1.7600 -121 710 -5.6477 0.5904 1.7600 -121 711 -5.5951 0.5926 1.7600 -121 712 -5.5381 0.5965 1.7600 -121 713 -5.4781 0.6006 1.7600 -121 714 -5.4208 0.6048 1.7600 -121 715 -5.3653 0.6061 1.7600 -121 716 -5.3053 0.6058 1.7600 -121 717 -5.2430 0.6018 1.7600 -121 718 -5.1892 0.5959 1.7600 -121 719 -5.1336 0.5902 1.7600 -121 720 -5.0726 0.5862 1.7600 -121 721 -5.0140 0.5815 1.7600 -121 722 -4.9544 0.5780 1.7600 -121 723 -4.8912 0.5723 1.7600 -121 724 -4.8278 0.5642 1.7600 -121 725 -4.7722 0.5552 1.7600 -121 726 -4.7121 0.5535 1.7600 -121 727 -4.6503 0.5561 1.7600 -121 728 -4.5948 0.5626 1.7600 -121 729 -4.5400 0.5687 1.7600 -121 730 -4.4826 0.5742 1.7600 -121 731 -4.4264 0.5812 1.7600 -121 732 -4.3682 0.5908 1.7600 -121 733 -4.3118 0.6026 1.7600 -121 734 -4.2564 0.6155 1.7600 -121 735 -4.2065 0.6283 1.7600 -121 736 -4.1467 0.6352 1.7600 -121 737 -4.0912 0.6346 1.7600 -121 738 -4.0397 0.6318 1.7600 -121 739 -3.9952 0.6282 1.7600 -121 740 -3.9441 0.6237 1.7600 -121 741 -3.8916 0.6192 1.7600 -121 742 -3.8397 0.6104 1.7600 -121 743 -3.7885 0.6046 1.7600 -121 744 -3.7244 0.5932 1.7600 -121 745 -3.6723 0.5832 1.7600 -121 746 -3.6216 0.5813 1.7600 -121 747 -3.5659 0.5812 1.7600 -121 748 -3.5112 0.5833 1.7600 -121 749 -3.4591 0.5920 1.7600 -121 750 -3.4037 0.6003 1.7600 -121 751 -3.3508 0.6064 1.7600 -121 752 -3.2920 0.6165 1.7600 -121 753 -3.2328 0.6289 1.7600 -121 754 -3.1680 0.6403 1.7600 -121 755 -3.1131 0.6497 1.7600 -121 756 -3.0557 0.6572 1.7600 -121 757 -2.9935 0.6599 1.7600 -121 758 -2.9371 0.6592 1.7600 -121 759 -2.8865 0.6570 1.7600 -121 760 -2.8331 0.6555 1.7600 -121 761 -2.7779 0.6522 1.7600 -121 762 -2.7235 0.6477 1.7600 -121 763 -2.6647 0.6406 1.7600 -121 764 -2.6004 0.6330 1.7600 -121 765 -2.5394 0.6229 1.7600 -121 766 -2.4808 0.6163 1.7600 -121 767 -2.4221 0.6115 1.7600 -121 768 -2.3609 0.6116 1.7600 -121 769 -2.3018 0.6145 1.7600 -121 770 -2.2495 0.6183 1.7600 -121 771 -2.1906 0.6244 1.7600 -121 772 -2.1270 0.6314 1.7600 -121 773 -2.0626 0.6350 1.7600 -121 774 -1.9962 0.6463 1.7600 -121 775 -1.9201 0.6582 1.7600 -121 776 -1.8541 0.6693 1.7600 -121 777 -1.7858 0.6735 1.7600 -121 778 -1.7204 0.6735 1.7600 -121 779 -1.6587 0.6700 1.7600 -121 780 -1.5996 0.6661 1.7600 -121 781 -1.5421 0.6612 1.7600 -121 782 -1.4824 0.6552 1.7600 -121 783 -1.4223 0.6511 1.7600 -121 784 -1.3594 0.6458 1.7600 -121 785 -1.2951 0.6383 1.7600 -121 786 -1.2333 0.6316 1.7600 -121 787 -1.1747 0.6275 1.7600 -121 788 -1.1101 0.6333 1.7600 -121 789 -1.0500 0.6456 1.7600 -121 790 -0.9968 0.6619 1.7600 -121 791 -0.9487 0.6763 1.7600 -121 792 -0.9002 0.6895 1.7600 -121 793 -0.8482 0.6989 1.7600 -121 794 -0.7882 0.7100 1.7600 -121 795 -0.7291 0.7219 1.7600 -121 796 -0.6756 0.7344 1.7600 -121 797 -0.6180 0.7425 1.7600 -121 798 -0.5551 0.7451 1.7600 -121 799 -0.4926 0.7413 1.7600 -121 800 -0.4300 0.7365 1.7600 -121 801 -0.3666 0.7308 1.7600 -121 802 -0.3040 0.7247 1.7600 -121 803 -0.2393 0.7194 1.7600 -121 804 -0.1722 0.7118 1.7600 -121 805 -0.1008 0.7015 1.7600 -121 806 -0.0366 0.6923 1.7600 -121 807 0.0296 0.6881 1.7600 -121 808 0.0967 0.6903 1.7600 -121 809 0.1661 0.6959 1.7600 -121 810 0.2264 0.7024 1.7600 -121 811 0.2895 0.7101 1.7600 -121 812 0.3527 0.7165 1.7600 -121 813 0.4175 0.7245 1.7600 -121 814 0.4847 0.7342 1.7600 -121 815 0.5432 0.7419 1.7600 -121 816 0.5977 0.7501 1.7600 -121 817 0.6580 0.7523 1.7600 -121 818 0.7207 0.7443 1.7600 -121 819 0.7797 0.7337 1.7600 -121 820 0.8365 0.7208 1.7600 -121 821 0.8940 0.7096 1.7600 -121 822 0.9539 0.6983 1.7600 -121 823 1.0181 0.6869 1.7600 -121 824 1.0844 0.6733 1.7600 -121 825 1.1525 0.6593 1.7600 -121 826 1.2164 0.6478 1.7600 -121 827 1.2818 0.6442 1.7600 -121 828 1.3478 0.6484 1.7600 -121 829 1.4145 0.6579 1.7600 -121 830 1.4761 0.6647 1.7600 -121 831 1.5353 0.6700 1.7600 -121 832 1.5973 0.6761 1.7600 -121 833 1.6608 0.6807 1.7600 -121 834 1.7298 0.6854 1.7600 -121 835 1.7930 0.6929 1.7600 -121 836 1.8558 0.6941 1.7600 -121 837 1.9224 0.6907 1.7600 -121 838 1.9906 0.6814 1.7600 -121 839 2.0522 0.6707 1.7600 -121 840 2.1112 0.6599 1.7600 -121 841 2.1691 0.6496 1.7600 -121 842 2.2298 0.6428 1.7600 -121 843 2.2905 0.6345 1.7600 -121 844 2.3518 0.6289 1.7600 -121 845 2.4146 0.6177 1.7600 -121 846 2.4753 0.6023 1.7600 -121 847 2.5365 0.5957 1.7600 -121 848 2.5983 0.5992 1.7600 -121 849 2.6561 0.6054 1.7600 -121 850 2.7124 0.6151 1.7600 -121 851 2.7732 0.6250 1.7600 -121 852 2.8345 0.6359 1.7600 -121 853 2.8950 0.6498 1.7600 -121 854 2.9589 0.6665 1.7600 -121 855 3.0241 0.6820 1.7600 -121 856 3.0885 0.6938 1.7600 -121 857 3.1535 0.6989 1.7600 -121 858 3.2200 0.6982 1.7600 -121 859 3.2818 0.6946 1.7600 -121 860 3.3378 0.6892 1.7600 -121 861 3.3949 0.6846 1.7600 -121 862 3.4540 0.6806 1.7600 -121 863 3.5176 0.6738 1.7600 -121 864 3.5871 0.6643 1.7600 -121 865 3.6557 0.6526 1.7600 -121 866 3.7152 0.6479 1.7600 -121 867 3.7777 0.6488 1.7600 -121 868 3.8456 0.6603 1.7600 -121 869 3.9145 0.6739 1.7600 -121 870 3.9747 0.6904 1.7600 -121 871 4.0299 0.7021 1.7600 -121 872 4.0868 0.7154 1.7600 -121 873 4.1486 0.7287 1.7600 -121 874 4.2199 0.7436 1.7600 -121 875 4.2902 0.7581 1.7600 -121 876 4.3567 0.7663 1.7600 -121 877 4.4272 0.7690 1.7600 -121 878 4.4992 0.7630 1.7600 -121 879 4.5659 0.7553 1.7600 -121 880 4.6254 0.7448 1.7600 -121 881 4.6854 0.7344 1.7600 -121 882 4.7445 0.7248 1.7600 -121 883 4.8120 0.7112 1.7600 -121 884 4.8834 0.6947 1.7600 -121 885 4.9550 0.6751 1.7600 -121 886 5.0223 0.6621 1.7600 -121 887 5.0924 0.6583 1.7600 -121 888 5.1630 0.6615 1.7600 -121 889 5.2288 0.6679 1.7600 -121 890 5.2915 0.6734 1.7600 -121 891 5.3514 0.6792 1.7600 -121 892 5.4090 0.6867 1.7600 -121 893 5.4747 0.6964 1.7600 -121 894 5.5562 0.7077 1.7600 -121 895 5.6317 0.7176 1.7600 -121 896 5.7045 0.7221 1.7600 -121 897 5.7755 0.7176 1.7600 -121 898 5.8419 0.7035 1.7600 -121 899 5.9022 0.6854 1.7600 -121 900 5.9585 0.6695 1.7600 -122 673 -7.8145 0.6947 1.7600 -122 674 -7.7701 0.6676 1.7600 -122 675 -7.7236 0.6439 1.7600 -122 676 -7.6754 0.6221 1.7600 -122 677 -7.6256 0.6014 1.7600 -122 678 -7.5735 0.5827 1.7600 -122 679 -7.5197 0.5668 1.7600 -122 680 -7.4668 0.5550 1.7600 -122 681 -7.4173 0.5453 1.7600 -122 682 -7.3690 0.5357 1.7600 -122 683 -7.3204 0.5233 1.7600 -122 684 -7.2731 0.5069 1.7600 -122 685 -7.2271 0.4888 1.7600 -122 686 -7.1804 0.4697 1.7600 -122 687 -7.1314 0.4485 1.7600 -122 688 -7.0808 0.4255 1.7600 -122 689 -7.0322 0.3991 1.7600 -122 690 -6.9881 0.3682 1.7600 -122 691 -6.9472 0.3344 1.7600 -122 692 -6.9038 0.3019 1.7600 -122 693 -6.8571 0.2753 1.7600 -122 694 -6.8077 0.2549 1.7600 -122 695 -6.7574 0.2384 1.7600 -122 696 -6.7053 0.2250 1.7600 -122 697 -6.6521 0.2154 1.7600 -122 698 -6.5980 0.2111 1.7600 -122 699 -6.5438 0.2100 1.7600 -122 700 -6.4900 0.2165 1.7600 -122 701 -6.4401 0.2186 1.7600 -122 702 -6.3887 0.2162 1.7600 -122 703 -6.3356 0.2106 1.7600 -122 704 -6.2857 0.2043 1.7600 -122 705 -6.2329 0.1971 1.7600 -122 706 -6.1776 0.1913 1.7600 -122 707 -6.1212 0.1818 1.7600 -122 708 -6.0671 0.1705 1.7600 -122 709 -6.0122 0.1561 1.7600 -122 710 -5.9660 0.1360 1.7600 -122 711 -5.9141 0.1197 1.7600 -122 712 -5.8602 0.1047 1.7600 -122 713 -5.8046 0.0956 1.7600 -122 714 -5.7526 0.0887 1.7600 -122 715 -5.7028 0.0859 1.7600 -122 716 -5.6477 0.0856 1.7600 -122 717 -5.5920 0.0892 1.7600 -122 718 -5.5338 0.0974 1.7600 -122 719 -5.4783 0.1071 1.7600 -122 720 -5.4209 0.1161 1.7600 -122 721 -5.3654 0.1267 1.7600 -122 722 -5.3079 0.1330 1.7600 -122 723 -5.2476 0.1376 1.7600 -122 724 -5.1929 0.1436 1.7600 -122 725 -5.1414 0.1479 1.7600 -122 726 -5.0868 0.1552 1.7600 -122 727 -5.0341 0.1604 1.7600 -122 728 -4.9810 0.1661 1.7600 -122 729 -4.9273 0.1675 1.7600 -122 730 -4.8744 0.1643 1.7600 -122 731 -4.8218 0.1617 1.7600 -122 732 -4.7708 0.1655 1.7600 -122 733 -4.7166 0.1687 1.7600 -122 734 -4.6671 0.1731 1.7600 -122 735 -4.6236 0.1776 1.7600 -122 736 -4.5783 0.1839 1.7600 -122 737 -4.5338 0.1931 1.7600 -122 738 -4.4900 0.2053 1.7600 -122 739 -4.4480 0.2211 1.7600 -122 740 -4.4049 0.2369 1.7600 -122 741 -4.3649 0.2527 1.7600 -122 742 -4.3201 0.2702 1.7600 -122 743 -4.2708 0.2830 1.7600 -122 744 -4.2232 0.2910 1.7600 -122 745 -4.1770 0.2976 1.7600 -122 746 -4.1313 0.3033 1.7600 -122 747 -4.0866 0.3060 1.7600 -122 748 -4.0386 0.3075 1.7600 -122 749 -3.9943 0.3062 1.7600 -122 750 -3.9454 0.3013 1.7600 -122 751 -3.9008 0.2907 1.7600 -122 752 -3.8526 0.2774 1.7600 -122 753 -3.8000 0.2654 1.7600 -122 754 -3.7416 0.2560 1.7600 -122 755 -3.6868 0.2531 1.7600 -122 756 -3.6331 0.2529 1.7600 -122 757 -3.5795 0.2534 1.7600 -122 758 -3.5268 0.2563 1.7600 -122 759 -3.4721 0.2636 1.7600 -122 760 -3.4169 0.2749 1.7600 -122 761 -3.3630 0.2877 1.7600 -122 762 -3.3077 0.2965 1.7600 -122 763 -3.2474 0.2993 1.7600 -122 764 -3.1886 0.2987 1.7600 -122 765 -3.1351 0.3011 1.7600 -122 766 -3.0826 0.3016 1.7600 -122 767 -3.0284 0.3031 1.7600 -122 768 -2.9758 0.2988 1.7600 -122 769 -2.9224 0.2904 1.7600 -122 770 -2.8693 0.2781 1.7600 -122 771 -2.8138 0.2644 1.7600 -122 772 -2.7535 0.2544 1.7600 -122 773 -2.6900 0.2488 1.7600 -122 774 -2.6273 0.2472 1.7600 -122 775 -2.5647 0.2468 1.7600 -122 776 -2.5046 0.2452 1.7600 -122 777 -2.4396 0.2500 1.7600 -122 778 -2.3748 0.2553 1.7600 -122 779 -2.3118 0.2653 1.7600 -122 780 -2.2458 0.2723 1.7600 -122 781 -2.1787 0.2744 1.7600 -122 782 -2.1172 0.2761 1.7600 -122 783 -2.0600 0.2783 1.7600 -122 784 -2.0031 0.2810 1.7600 -122 785 -1.9423 0.2809 1.7600 -122 786 -1.8823 0.2734 1.7600 -122 787 -1.8235 0.2635 1.7600 -122 788 -1.7582 0.2541 1.7600 -122 789 -1.6913 0.2534 1.7600 -122 790 -1.6206 0.2589 1.7600 -122 791 -1.5516 0.2669 1.7600 -122 792 -1.4836 0.2783 1.7600 -122 793 -1.4111 0.2922 1.7600 -122 794 -1.3374 0.3086 1.7600 -122 795 -1.2665 0.3266 1.7600 -122 796 -1.1925 0.3414 1.7600 -122 797 -1.1144 0.3499 1.7600 -122 798 -1.0405 0.3556 1.7600 -122 799 -0.9708 0.3637 1.7600 -122 800 -0.9018 0.3724 1.7600 -122 801 -0.8294 0.3777 1.7600 -122 802 -0.7600 0.3781 1.7600 -122 803 -0.6963 0.3777 1.7600 -122 804 -0.6279 0.3788 1.7600 -122 805 -0.5581 0.3835 1.7600 -122 806 -0.4938 0.3884 1.7600 -122 807 -0.4314 0.3912 1.7600 -122 808 -0.3681 0.3938 1.7600 -122 809 -0.3072 0.3970 1.7600 -122 810 -0.2478 0.4032 1.7600 -122 811 -0.1901 0.4131 1.7600 -122 812 -0.1351 0.4263 1.7600 -122 813 -0.0793 0.4356 1.7600 -122 814 -0.0178 0.4421 1.7600 -122 815 0.0509 0.4436 1.7600 -122 816 0.1191 0.4465 1.7600 -122 817 0.1896 0.4497 1.7600 -122 818 0.2636 0.4504 1.7600 -122 819 0.3401 0.4498 1.7600 -122 820 0.4134 0.4437 1.7600 -122 821 0.4823 0.4327 1.7600 -122 822 0.5500 0.4215 1.7600 -122 823 0.6201 0.4126 1.7600 -122 824 0.6911 0.4067 1.7600 -122 825 0.7558 0.4013 1.7600 -122 826 0.8222 0.3962 1.7600 -122 827 0.8898 0.3915 1.7600 -122 828 0.9563 0.3897 1.7600 -122 829 1.0239 0.3913 1.7600 -122 830 1.0900 0.3968 1.7600 -122 831 1.1583 0.3954 1.7600 -122 832 1.2297 0.3864 1.7600 -122 833 1.2968 0.3779 1.7600 -122 834 1.3612 0.3759 1.7600 -122 835 1.4281 0.3724 1.7600 -122 836 1.4925 0.3696 1.7600 -122 837 1.5594 0.3610 1.7600 -122 838 1.6278 0.3482 1.7600 -122 839 1.6920 0.3340 1.7600 -122 840 1.7566 0.3213 1.7600 -122 841 1.8243 0.3108 1.7600 -122 842 1.8921 0.3049 1.7600 -122 843 1.9546 0.2985 1.7600 -122 844 2.0153 0.2956 1.7600 -122 845 2.0774 0.2970 1.7600 -122 846 2.1415 0.3022 1.7600 -122 847 2.2054 0.3093 1.7600 -122 848 2.2693 0.3208 1.7600 -122 849 2.3319 0.3287 1.7600 -122 850 2.3939 0.3320 1.7600 -122 851 2.4555 0.3344 1.7600 -122 852 2.5146 0.3361 1.7600 -122 853 2.5721 0.3368 1.7600 -122 854 2.6283 0.3370 1.7600 -122 855 2.6842 0.3333 1.7600 -122 856 2.7426 0.3279 1.7600 -122 857 2.8014 0.3164 1.7600 -122 858 2.8572 0.3029 1.7600 -122 859 2.9165 0.2917 1.7600 -122 860 2.9789 0.2848 1.7600 -122 861 3.0400 0.2803 1.7600 -122 862 3.0963 0.2739 1.7600 -122 863 3.1541 0.2695 1.7600 -122 864 3.2142 0.2684 1.7600 -122 865 3.2755 0.2696 1.7600 -122 866 3.3431 0.2753 1.7600 -122 867 3.4120 0.2851 1.7600 -122 868 3.4784 0.2936 1.7600 -122 869 3.5499 0.2984 1.7600 -122 870 3.6240 0.2979 1.7600 -122 871 3.6937 0.2955 1.7600 -122 872 3.7594 0.2930 1.7600 -122 873 3.8236 0.2918 1.7600 -122 874 3.8857 0.2854 1.7600 -122 875 3.9511 0.2754 1.7600 -122 876 4.0208 0.2585 1.7600 -122 877 4.0885 0.2401 1.7600 -122 878 4.1608 0.2209 1.7600 -122 879 4.2419 0.2102 1.7600 -122 880 4.3170 0.2016 1.7600 -122 881 4.3840 0.1921 1.7600 -122 882 4.4519 0.1849 1.7600 -122 883 4.5177 0.1783 1.7600 -122 884 4.5862 0.1760 1.7600 -122 885 4.6557 0.1750 1.7600 -122 886 4.7280 0.1774 1.7600 -122 887 4.7986 0.1734 1.7600 -122 888 4.8707 0.1654 1.7600 -122 889 4.9344 0.1579 1.7600 -122 890 4.9948 0.1531 1.7600 -122 891 5.0515 0.1495 1.7600 -122 892 5.1063 0.1445 1.7600 -122 893 5.1645 0.1385 1.7600 -122 894 5.2357 0.1288 1.7600 -122 895 5.3065 0.1140 1.7600 -122 896 5.3793 0.1037 1.7600 -122 897 5.4549 0.0954 1.7600 -122 898 5.5313 0.0875 1.7600 -122 899 5.6018 0.0820 1.7600 -122 900 5.6644 0.0747 1.7600 -122 901 5.7248 0.0722 1.7600 -122 902 5.7919 0.0688 1.7600 -122 903 5.8664 0.0717 1.7600 -122 904 5.9465 0.0760 1.7600 -123 688 -7.8118 0.9843 1.7600 -123 689 -7.7686 0.9540 1.7600 -123 690 -7.7297 0.9288 1.7600 -123 691 -7.6883 0.9113 1.7600 -123 692 -7.6449 0.8969 1.7600 -123 693 -7.5998 0.8837 1.7600 -123 694 -7.5528 0.8720 1.7600 -123 695 -7.5014 0.8609 1.7600 -123 696 -7.4456 0.8528 1.7600 -123 697 -7.3890 0.8487 1.7600 -123 698 -7.3346 0.8479 1.7600 -123 699 -7.2845 0.8486 1.7600 -123 700 -7.2398 0.8495 1.7600 -123 701 -7.1928 0.8473 1.7600 -123 702 -7.1482 0.8405 1.7600 -123 703 -7.1004 0.8310 1.7600 -123 704 -7.0534 0.8185 1.7600 -123 705 -6.9985 0.8078 1.7600 -123 706 -6.9456 0.7944 1.7600 -123 707 -6.8854 0.7787 1.7600 -123 708 -6.8279 0.7584 1.7600 -123 709 -6.7705 0.7358 1.7600 -123 710 -6.7178 0.7131 1.7600 -123 711 -6.6667 0.6938 1.7600 -123 712 -6.6124 0.6811 1.7600 -123 713 -6.5600 0.6697 1.7600 -123 714 -6.5051 0.6601 1.7600 -123 715 -6.4490 0.6536 1.7600 -123 716 -6.3885 0.6484 1.7600 -123 717 -6.3300 0.6445 1.7600 -123 718 -6.2716 0.6443 1.7600 -123 719 -6.2169 0.6459 1.7600 -123 720 -6.1669 0.6459 1.7600 -123 721 -6.1190 0.6419 1.7600 -123 722 -6.0733 0.6373 1.7600 -123 723 -6.0263 0.6304 1.7600 -123 724 -5.9805 0.6195 1.7600 -123 725 -5.9282 0.6088 1.7600 -123 726 -5.8763 0.5937 1.7600 -123 727 -5.8192 0.5775 1.7600 -123 728 -5.7663 0.5585 1.7600 -123 729 -5.7165 0.5386 1.7600 -123 730 -5.6692 0.5167 1.7600 -123 731 -5.6221 0.5008 1.7600 -123 732 -5.5742 0.4892 1.7600 -123 733 -5.5265 0.4818 1.7600 -123 734 -5.4761 0.4800 1.7600 -123 735 -5.4260 0.4816 1.7600 -123 736 -5.3750 0.4865 1.7600 -123 737 -5.3211 0.4895 1.7600 -123 738 -5.2659 0.4964 1.7600 -123 739 -5.2104 0.5054 1.7600 -123 740 -5.1593 0.5147 1.7600 -123 741 -5.1114 0.5222 1.7600 -123 742 -5.0669 0.5276 1.7600 -123 743 -5.0246 0.5265 1.7600 -123 744 -4.9834 0.5249 1.7600 -123 745 -4.9385 0.5210 1.7600 -123 746 -4.8912 0.5154 1.7600 -123 747 -4.8408 0.5077 1.7600 -123 748 -4.7949 0.4970 1.7600 -123 749 -4.7509 0.4825 1.7600 -123 750 -4.7108 0.4689 1.7600 -123 751 -4.6704 0.4590 1.7600 -123 752 -4.6308 0.4485 1.7600 -123 753 -4.5881 0.4426 1.7600 -123 754 -4.5476 0.4389 1.7600 -123 755 -4.5055 0.4368 1.7600 -123 756 -4.4622 0.4371 1.7600 -123 757 -4.4155 0.4430 1.7600 -123 758 -4.3673 0.4496 1.7600 -123 759 -4.3207 0.4552 1.7600 -123 760 -4.2762 0.4597 1.7600 -123 761 -4.2358 0.4695 1.7600 -123 762 -4.1970 0.4782 1.7600 -123 763 -4.1570 0.4861 1.7600 -123 764 -4.1146 0.4900 1.7600 -123 765 -4.0711 0.4874 1.7600 -123 766 -4.0250 0.4845 1.7600 -123 767 -3.9772 0.4804 1.7600 -123 768 -3.9277 0.4721 1.7600 -123 769 -3.8771 0.4630 1.7600 -123 770 -3.8240 0.4512 1.7600 -123 771 -3.7699 0.4386 1.7600 -123 772 -3.7118 0.4235 1.7600 -123 773 -3.6578 0.4119 1.7600 -123 774 -3.6052 0.4056 1.7600 -123 775 -3.5561 0.4026 1.7600 -123 776 -3.5005 0.4020 1.7600 -123 777 -3.4462 0.4043 1.7600 -123 778 -3.3879 0.4104 1.7600 -123 779 -3.3304 0.4192 1.7600 -123 780 -3.2650 0.4313 1.7600 -123 781 -3.1988 0.4441 1.7600 -123 782 -3.1294 0.4558 1.7600 -123 783 -3.0643 0.4660 1.7600 -123 784 -2.9963 0.4713 1.7600 -123 785 -2.9279 0.4704 1.7600 -123 786 -2.8586 0.4704 1.7600 -123 787 -2.7884 0.4678 1.7600 -123 788 -2.7185 0.4624 1.7600 -123 789 -2.6494 0.4538 1.7600 -123 790 -2.5777 0.4429 1.7600 -123 791 -2.5045 0.4302 1.7600 -123 792 -2.4331 0.4224 1.7600 -123 793 -2.3635 0.4219 1.7600 -123 794 -2.2943 0.4222 1.7600 -123 795 -2.2289 0.4257 1.7600 -123 796 -2.1669 0.4301 1.7600 -123 797 -2.1064 0.4372 1.7600 -123 798 -2.0438 0.4446 1.7600 -123 799 -1.9798 0.4565 1.7600 -123 800 -1.9121 0.4656 1.7600 -123 801 -1.8451 0.4749 1.7600 -123 802 -1.7840 0.4808 1.7600 -123 803 -1.7181 0.4788 1.7600 -123 804 -1.6546 0.4750 1.7600 -123 805 -1.5927 0.4694 1.7600 -123 806 -1.5325 0.4629 1.7600 -123 807 -1.4700 0.4522 1.7600 -123 808 -1.4032 0.4382 1.7600 -123 809 -1.3332 0.4197 1.7600 -123 810 -1.2586 0.4006 1.7600 -123 811 -1.1894 0.3849 1.7600 -123 812 -1.1184 0.3747 1.7600 -123 813 -1.0472 0.3693 1.7600 -123 814 -0.9771 0.3676 1.7600 -123 815 -0.9079 0.3665 1.7600 -123 816 -0.8404 0.3701 1.7600 -123 817 -0.7713 0.3761 1.7600 -123 818 -0.7000 0.3835 1.7600 -123 819 -0.6327 0.3898 1.7600 -123 820 -0.5688 0.3941 1.7600 -123 821 -0.5063 0.3939 1.7600 -123 822 -0.4438 0.3923 1.7600 -123 823 -0.3798 0.3891 1.7600 -123 824 -0.3105 0.3860 1.7600 -123 825 -0.2401 0.3830 1.7600 -123 826 -0.1684 0.3763 1.7600 -123 827 -0.0984 0.3644 1.7600 -123 828 -0.0291 0.3494 1.7600 -123 829 0.0383 0.3360 1.7600 -123 830 0.1030 0.3327 1.7600 -123 831 0.1684 0.3333 1.7600 -123 832 0.2374 0.3376 1.7600 -123 833 0.3062 0.3441 1.7600 -123 834 0.3763 0.3528 1.7600 -123 835 0.4482 0.3636 1.7600 -123 836 0.5186 0.3771 1.7600 -123 837 0.5839 0.3915 1.7600 -123 838 0.6457 0.4009 1.7600 -123 839 0.7082 0.4015 1.7600 -123 840 0.7716 0.3969 1.7600 -123 841 0.8383 0.3900 1.7600 -123 842 0.9066 0.3823 1.7600 -123 843 0.9716 0.3743 1.7600 -123 844 1.0352 0.3645 1.7600 -123 845 1.0956 0.3483 1.7600 -123 846 1.1519 0.3321 1.7600 -123 847 1.2040 0.3157 1.7600 -123 848 1.2579 0.3068 1.7600 -123 849 1.3137 0.3010 1.7600 -123 850 1.3746 0.2986 1.7600 -123 851 1.4371 0.2989 1.7600 -123 852 1.5014 0.3000 1.7600 -123 853 1.5642 0.3034 1.7600 -123 854 1.6264 0.3130 1.7600 -123 855 1.6873 0.3177 1.7600 -123 856 1.7420 0.3222 1.7600 -123 857 1.7994 0.3266 1.7600 -123 858 1.8557 0.3303 1.7600 -123 859 1.9111 0.3318 1.7600 -123 860 1.9696 0.3329 1.7600 -123 861 2.0292 0.3324 1.7600 -123 862 2.0877 0.3293 1.7600 -123 863 2.1457 0.3276 1.7600 -123 864 2.2032 0.3201 1.7600 -123 865 2.2645 0.3105 1.7600 -123 866 2.3258 0.2998 1.7600 -123 867 2.3862 0.2951 1.7600 -123 868 2.4466 0.2916 1.7600 -123 869 2.5061 0.2896 1.7600 -123 870 2.5671 0.2903 1.7600 -123 871 2.6262 0.2935 1.7600 -123 872 2.6903 0.3005 1.7600 -123 873 2.7536 0.3095 1.7600 -123 874 2.8144 0.3210 1.7600 -123 875 2.8745 0.3318 1.7600 -123 876 2.9289 0.3338 1.7600 -123 877 2.9864 0.3325 1.7600 -123 878 3.0394 0.3331 1.7600 -123 879 3.0940 0.3297 1.7600 -123 880 3.1495 0.3302 1.7600 -123 881 3.2081 0.3279 1.7600 -123 882 3.2699 0.3205 1.7600 -123 883 3.3343 0.3093 1.7600 -123 884 3.3989 0.2976 1.7600 -123 885 3.4591 0.2851 1.7600 -123 886 3.5231 0.2755 1.7600 -123 887 3.5900 0.2698 1.7600 -123 888 3.6611 0.2664 1.7600 -123 889 3.7346 0.2607 1.7600 -123 890 3.8059 0.2583 1.7600 -123 891 3.8765 0.2563 1.7600 -123 892 3.9473 0.2564 1.7600 -123 893 4.0260 0.2577 1.7600 -123 894 4.0997 0.2567 1.7600 -123 895 4.1678 0.2555 1.7600 -123 896 4.2342 0.2478 1.7600 -123 897 4.3037 0.2378 1.7600 -123 898 4.3706 0.2249 1.7600 -123 899 4.4367 0.2158 1.7600 -123 900 4.4987 0.2083 1.7600 -123 901 4.5605 0.1943 1.7600 -123 902 4.6328 0.1727 1.7600 -123 903 4.7117 0.1475 1.7600 -123 904 4.7863 0.1291 1.7600 -123 905 4.8613 0.1175 1.7600 -123 906 4.9340 0.1115 1.7600 -123 907 5.0038 0.1101 1.7600 -123 908 5.0709 0.1084 1.7600 -123 909 5.1281 0.1120 1.7600 -123 910 5.1927 0.1160 1.7600 -123 911 5.2617 0.1245 1.7600 -123 912 5.3381 0.1297 1.7600 -123 913 5.4135 0.1303 1.7600 -123 914 5.4876 0.1279 1.7600 -123 915 5.5665 0.1215 1.7600 -123 916 5.6391 0.1122 1.7600 -123 917 5.7077 0.1037 1.7600 -123 918 5.7736 0.0871 1.7600 -123 919 5.8335 0.0761 1.7600 -123 920 5.8956 0.0630 1.7600 -123 921 5.9639 0.0455 1.7600 -124 663 -7.8159 1.5951 1.7600 -124 664 -7.7666 1.5690 1.7600 -124 665 -7.7180 1.5471 1.7600 -124 666 -7.6716 1.5272 1.7600 -124 667 -7.6250 1.5111 1.7600 -124 668 -7.5745 1.4975 1.7600 -124 669 -7.5201 1.4851 1.7600 -124 670 -7.4643 1.4740 1.7600 -124 671 -7.4085 1.4677 1.7600 -124 672 -7.3545 1.4672 1.7600 -124 673 -7.3059 1.4691 1.7600 -124 674 -7.2637 1.4713 1.7600 -124 675 -7.2239 1.4727 1.7600 -124 676 -7.1868 1.4689 1.7600 -124 677 -7.1536 1.4538 1.7600 -124 678 -7.1192 1.4324 1.7600 -124 679 -7.0763 1.4238 1.7600 -124 680 -7.0301 1.4165 1.7600 -124 681 -6.9879 1.3975 1.7600 -124 682 -6.9425 1.3792 1.7600 -124 683 -6.8974 1.3621 1.7600 -124 684 -6.8598 1.3362 1.7600 -124 685 -6.8071 1.2987 1.7600 -124 686 -6.7662 1.2753 1.7600 -124 687 -6.7101 1.2448 1.7600 -124 688 -6.6551 1.2215 1.7600 -124 689 -6.6066 1.2056 1.7600 -124 690 -6.5554 1.1981 1.7600 -124 691 -6.5007 1.1950 1.7600 -124 692 -6.4424 1.1913 1.7600 -124 693 -6.3828 1.1904 1.7600 -124 694 -6.3282 1.1934 1.7600 -124 695 -6.2752 1.2007 1.7600 -124 696 -6.2284 1.2065 1.7600 -124 697 -6.1862 1.1946 1.7600 -124 698 -6.1379 1.1821 1.7600 -124 699 -6.0787 1.1714 1.7600 -124 700 -6.0152 1.1564 1.7600 -124 701 -5.9505 1.1378 1.7600 -124 702 -5.8864 1.1172 1.7600 -124 703 -5.8236 1.0950 1.7600 -124 704 -5.7629 1.0724 1.7600 -124 705 -5.7026 1.0559 1.7600 -124 706 -5.6431 1.0472 1.7600 -124 707 -5.5830 1.0440 1.7600 -124 708 -5.5214 1.0438 1.7600 -124 709 -5.4586 1.0468 1.7600 -124 710 -5.3955 1.0551 1.7600 -124 711 -5.3361 1.0675 1.7600 -124 712 -5.2816 1.0807 1.7600 -124 713 -5.2301 1.0925 1.7600 -124 714 -5.1808 1.1000 1.7600 -124 715 -5.1318 1.1006 1.7600 -124 716 -5.0810 1.1006 1.7600 -124 717 -5.0306 1.1017 1.7600 -124 718 -4.9845 1.0972 1.7600 -124 719 -4.9392 1.0850 1.7600 -124 720 -4.8921 1.0668 1.7600 -124 721 -4.8443 1.0390 1.7600 -124 722 -4.7954 1.0151 1.7600 -124 723 -4.7457 0.9984 1.7600 -124 724 -4.6993 0.9908 1.7600 -124 725 -4.6559 0.9883 1.7600 -124 726 -4.6155 0.9873 1.7600 -124 727 -4.5762 0.9897 1.7600 -124 728 -4.5354 0.9999 1.7600 -124 729 -4.4899 1.0166 1.7600 -124 730 -4.4433 1.0301 1.7600 -124 731 -4.4002 1.0489 1.7600 -124 732 -4.3558 1.0636 1.7600 -124 733 -4.3068 1.0617 1.7600 -124 734 -4.2631 1.0612 1.7600 -124 735 -4.2218 1.0673 1.7600 -124 736 -4.1800 1.0646 1.7600 -124 737 -4.1343 1.0548 1.7600 -124 738 -4.0852 1.0477 1.7600 -124 739 -4.0335 1.0376 1.7600 -124 740 -3.9800 1.0229 1.7600 -124 741 -3.9303 1.0122 1.7600 -124 742 -3.8865 1.0029 1.7600 -124 743 -3.8375 0.9915 1.7600 -124 744 -3.7879 0.9928 1.7600 -124 745 -3.7386 0.9932 1.7600 -124 746 -3.6833 0.9956 1.7600 -124 747 -3.6241 1.0028 1.7600 -124 748 -3.5618 1.0150 1.7600 -124 749 -3.4991 1.0301 1.7600 -124 750 -3.4380 1.0450 1.7600 -124 751 -3.3795 1.0554 1.7600 -124 752 -3.3243 1.0594 1.7600 -124 753 -3.2693 1.0571 1.7600 -124 754 -3.2136 1.0506 1.7600 -124 755 -3.1563 1.0394 1.7600 -124 756 -3.0899 1.0236 1.7600 -124 757 -3.0282 1.0056 1.7600 -124 758 -2.9632 0.9845 1.7600 -124 759 -2.8962 0.9619 1.7600 -124 760 -2.8304 0.9455 1.7600 -124 761 -2.7558 0.9335 1.7600 -124 762 -2.6894 0.9307 1.7600 -124 763 -2.6289 0.9316 1.7600 -124 764 -2.5707 0.9352 1.7600 -124 765 -2.5089 0.9419 1.7600 -124 766 -2.4476 0.9525 1.7600 -124 767 -2.3864 0.9662 1.7600 -124 768 -2.3239 0.9798 1.7600 -124 769 -2.2634 0.9870 1.7600 -124 770 -2.2033 0.9901 1.7600 -124 771 -2.1433 0.9914 1.7600 -124 772 -2.0800 0.9908 1.7600 -124 773 -2.0156 0.9895 1.7600 -124 774 -1.9393 0.9844 1.7600 -124 775 -1.8607 0.9764 1.7600 -124 776 -1.7817 0.9661 1.7600 -124 777 -1.7033 0.9519 1.7600 -124 778 -1.6263 0.9388 1.7600 -124 779 -1.5520 0.9360 1.7600 -124 780 -1.4816 0.9388 1.7600 -124 781 -1.4115 0.9448 1.7600 -124 782 -1.3426 0.9520 1.7600 -124 783 -1.2715 0.9629 1.7600 -124 784 -1.2007 0.9769 1.7600 -124 785 -1.1309 0.9946 1.7600 -124 786 -1.0671 1.0157 1.7600 -124 787 -1.0044 1.0332 1.7600 -124 788 -0.9517 1.0438 1.7600 -124 789 -0.8981 1.0486 1.7600 -124 790 -0.8437 1.0490 1.7600 -124 791 -0.7864 1.0443 1.7600 -124 792 -0.7223 1.0367 1.7600 -124 793 -0.6547 1.0256 1.7600 -124 794 -0.5850 1.0096 1.7600 -124 795 -0.5156 0.9960 1.7600 -124 796 -0.4477 0.9920 1.7600 -124 797 -0.3807 0.9987 1.7600 -124 798 -0.3140 1.0119 1.7600 -124 799 -0.2504 1.0250 1.7600 -124 800 -0.1827 1.0396 1.7600 -124 801 -0.1102 1.0574 1.7600 -124 802 -0.0379 1.0755 1.7600 -124 803 0.0305 1.1023 1.7600 -124 804 0.0973 1.1243 1.7600 -124 805 0.1633 1.1434 1.7600 -124 806 0.2236 1.1574 1.7600 -124 807 0.2814 1.1607 1.7600 -124 808 0.3450 1.1561 1.7600 -124 809 0.4108 1.1475 1.7600 -124 810 0.4817 1.1366 1.7600 -124 811 0.5536 1.1240 1.7600 -124 812 0.6244 1.1071 1.7600 -124 813 0.6939 1.0889 1.7600 -124 814 0.7565 1.0768 1.7600 -124 815 0.8168 1.0726 1.7600 -124 816 0.8758 1.0732 1.7600 -124 817 0.9418 1.0764 1.7600 -124 818 1.0123 1.0826 1.7600 -124 819 1.0847 1.0899 1.7600 -124 820 1.1553 1.0986 1.7600 -124 821 1.2236 1.1097 1.7600 -124 822 1.2924 1.1217 1.7600 -124 823 1.3541 1.1289 1.7600 -124 824 1.4130 1.1307 1.7600 -124 825 1.4693 1.1293 1.7600 -124 826 1.5311 1.1250 1.7600 -124 827 1.5961 1.1184 1.7600 -124 828 1.6621 1.1096 1.7600 -124 829 1.7335 1.1010 1.7600 -124 830 1.8037 1.0930 1.7600 -124 831 1.8715 1.0848 1.7600 -124 832 1.9379 1.0827 1.7600 -124 833 1.9988 1.0853 1.7600 -124 834 2.0597 1.0911 1.7600 -124 835 2.1197 1.0994 1.7600 -124 836 2.1804 1.1069 1.7600 -124 837 2.2471 1.1164 1.7600 -124 838 2.3066 1.1232 1.7600 -124 839 2.3635 1.1325 1.7600 -124 840 2.4244 1.1400 1.7600 -124 841 2.4809 1.1458 1.7600 -124 842 2.5345 1.1464 1.7600 -124 843 2.5870 1.1433 1.7600 -124 844 2.6459 1.1399 1.7600 -124 845 2.7102 1.1350 1.7600 -124 846 2.7766 1.1299 1.7600 -124 847 2.8411 1.1222 1.7600 -124 848 2.9085 1.1140 1.7600 -124 849 2.9757 1.1035 1.7600 -124 850 3.0387 1.0999 1.7600 -124 851 3.0962 1.1006 1.7600 -124 852 3.1530 1.1050 1.7600 -124 853 3.2100 1.1102 1.7600 -124 854 3.2689 1.1178 1.7600 -124 855 3.3264 1.1246 1.7600 -124 856 3.3842 1.1339 1.7600 -124 857 3.4416 1.1478 1.7600 -124 858 3.4989 1.1608 1.7600 -124 859 3.5541 1.1726 1.7600 -124 860 3.6087 1.1837 1.7600 -124 861 3.6648 1.1905 1.7600 -124 862 3.7217 1.1967 1.7600 -124 863 3.7794 1.1992 1.7600 -124 864 3.8380 1.1999 1.7600 -124 865 3.9007 1.1968 1.7600 -124 866 3.9644 1.1950 1.7600 -124 867 4.0261 1.1943 1.7600 -124 868 4.0846 1.1981 1.7600 -124 869 4.1423 1.2061 1.7600 -124 870 4.1954 1.2174 1.7600 -124 871 4.2478 1.2305 1.7600 -124 872 4.3005 1.2439 1.7600 -124 873 4.3519 1.2594 1.7600 -124 874 4.4042 1.2770 1.7600 -124 875 4.4627 1.2948 1.7600 -124 876 4.5235 1.3111 1.7600 -124 877 4.5858 1.3235 1.7600 -124 878 4.6457 1.3312 1.7600 -124 879 4.7031 1.3323 1.7600 -124 880 4.7590 1.3291 1.7600 -124 881 4.8147 1.3265 1.7600 -124 882 4.8680 1.3176 1.7600 -124 883 4.9251 1.3045 1.7600 -124 884 4.9849 1.2896 1.7600 -124 885 5.0521 1.2743 1.7600 -124 886 5.1248 1.2584 1.7600 -124 887 5.1955 1.2503 1.7600 -124 888 5.2688 1.2495 1.7600 -124 889 5.3358 1.2589 1.7600 -124 890 5.4017 1.2673 1.7600 -124 891 5.4686 1.2719 1.7600 -124 892 5.5336 1.2764 1.7600 -124 893 5.5996 1.2862 1.7600 -124 894 5.6727 1.2974 1.7600 -124 895 5.7453 1.3062 1.7600 -124 896 5.8109 1.3105 1.7600 -124 897 5.8741 1.3101 1.7600 -124 898 5.9365 1.3073 1.7600 -125 681 -7.8250 1.8371 1.7600 -125 682 -7.7681 1.8126 1.7600 -125 683 -7.7112 1.7856 1.7600 -125 684 -7.6605 1.7602 1.7600 -125 685 -7.6172 1.7381 1.7600 -125 686 -7.5792 1.7212 1.7600 -125 687 -7.5440 1.7107 1.7600 -125 688 -7.5079 1.7020 1.7600 -125 689 -7.4691 1.6914 1.7600 -125 690 -7.4254 1.6804 1.7600 -125 691 -7.3769 1.6706 1.7600 -125 692 -7.3232 1.6637 1.7600 -125 693 -7.2654 1.6604 1.7600 -125 694 -7.2096 1.6594 1.7600 -125 695 -7.1600 1.6593 1.7600 -125 696 -7.1148 1.6578 1.7600 -125 697 -7.0678 1.6508 1.7600 -125 698 -7.0204 1.6392 1.7600 -125 699 -6.9717 1.6241 1.7600 -125 700 -6.9191 1.6074 1.7600 -125 701 -6.8609 1.5872 1.7600 -125 702 -6.7977 1.5624 1.7600 -125 703 -6.7297 1.5310 1.7600 -125 704 -6.6610 1.4929 1.7600 -125 705 -6.5994 1.4569 1.7600 -125 706 -6.5464 1.4269 1.7600 -125 707 -6.4982 1.4037 1.7600 -125 708 -6.4537 1.3859 1.7600 -125 709 -6.4063 1.3695 1.7600 -125 710 -6.3558 1.3521 1.7600 -125 711 -6.3005 1.3342 1.7600 -125 712 -6.2414 1.3242 1.7600 -125 713 -6.1850 1.3206 1.7600 -125 714 -6.1258 1.3205 1.7600 -125 715 -6.0710 1.3182 1.7600 -125 716 -6.0201 1.3153 1.7600 -125 717 -5.9686 1.3059 1.7600 -125 718 -5.9178 1.2873 1.7600 -125 719 -5.8647 1.2686 1.7600 -125 720 -5.8068 1.2493 1.7600 -125 721 -5.7494 1.2249 1.7600 -125 722 -5.6908 1.1945 1.7600 -125 723 -5.6368 1.1599 1.7600 -125 724 -5.5885 1.1282 1.7600 -125 725 -5.5443 1.1008 1.7600 -125 726 -5.4991 1.0765 1.7600 -125 727 -5.4527 1.0587 1.7600 -125 728 -5.4038 1.0457 1.7600 -125 729 -5.3522 1.0346 1.7600 -125 730 -5.2972 1.0284 1.7600 -125 731 -5.2393 1.0294 1.7600 -125 732 -5.1808 1.0358 1.7600 -125 733 -5.1238 1.0474 1.7600 -125 734 -5.0717 1.0588 1.7600 -125 735 -5.0235 1.0621 1.7600 -125 736 -4.9750 1.0616 1.7600 -125 737 -4.9227 1.0606 1.7600 -125 738 -4.8741 1.0593 1.7600 -125 739 -4.8209 1.0546 1.7600 -125 740 -4.7670 1.0458 1.7600 -125 741 -4.7132 1.0309 1.7600 -125 742 -4.6535 1.0073 1.7600 -125 743 -4.6009 0.9840 1.7600 -125 744 -4.5484 0.9629 1.7600 -125 745 -4.5012 0.9457 1.7600 -125 746 -4.4567 0.9337 1.7600 -125 747 -4.4083 0.9262 1.7600 -125 748 -4.3598 0.9259 1.7600 -125 749 -4.3083 0.9322 1.7600 -125 750 -4.2530 0.9422 1.7600 -125 751 -4.1974 0.9604 1.7600 -125 752 -4.1484 0.9797 1.7600 -125 753 -4.1043 0.9975 1.7600 -125 754 -4.0597 1.0105 1.7600 -125 755 -4.0178 1.0167 1.7600 -125 756 -3.9696 1.0194 1.7600 -125 757 -3.9219 1.0247 1.7600 -125 758 -3.8730 1.0262 1.7600 -125 759 -3.8216 1.0216 1.7600 -125 760 -3.7671 1.0075 1.7600 -125 761 -3.7099 0.9865 1.7600 -125 762 -3.6515 0.9631 1.7600 -125 763 -3.6021 0.9387 1.7600 -125 764 -3.5548 0.9183 1.7600 -125 765 -3.5115 0.9050 1.7600 -125 766 -3.4637 0.8960 1.7600 -125 767 -3.4144 0.8893 1.7600 -125 768 -3.3661 0.8873 1.7600 -125 769 -3.3136 0.8884 1.7600 -125 770 -3.2601 0.8984 1.7600 -125 771 -3.2036 0.9159 1.7600 -125 772 -3.1476 0.9365 1.7600 -125 773 -3.0930 0.9570 1.7600 -125 774 -3.0336 0.9728 1.7600 -125 775 -2.9772 0.9838 1.7600 -125 776 -2.9217 0.9941 1.7600 -125 777 -2.8601 0.9999 1.7600 -125 778 -2.8028 1.0039 1.7600 -125 779 -2.7473 1.0046 1.7600 -125 780 -2.6888 0.9991 1.7600 -125 781 -2.6276 0.9864 1.7600 -125 782 -2.5648 0.9682 1.7600 -125 783 -2.5038 0.9496 1.7600 -125 784 -2.4441 0.9333 1.7600 -125 785 -2.3865 0.9242 1.7600 -125 786 -2.3273 0.9207 1.7600 -125 787 -2.2667 0.9201 1.7600 -125 788 -2.2038 0.9218 1.7600 -125 789 -2.1394 0.9256 1.7600 -125 790 -2.0719 0.9366 1.7600 -125 791 -2.0079 0.9567 1.7600 -125 792 -1.9406 0.9801 1.7600 -125 793 -1.8703 0.9957 1.7600 -125 794 -1.8002 1.0030 1.7600 -125 795 -1.7316 1.0026 1.7600 -125 796 -1.6647 1.0002 1.7600 -125 797 -1.6005 0.9972 1.7600 -125 798 -1.5359 0.9893 1.7600 -125 799 -1.4705 0.9747 1.7600 -125 800 -1.4048 0.9536 1.7600 -125 801 -1.3380 0.9338 1.7600 -125 802 -1.2768 0.9220 1.7600 -125 803 -1.2170 0.9169 1.7600 -125 804 -1.1552 0.9178 1.7600 -125 805 -1.0950 0.9214 1.7600 -125 806 -1.0313 0.9280 1.7600 -125 807 -0.9644 0.9377 1.7600 -125 808 -0.8962 0.9522 1.7600 -125 809 -0.8269 0.9743 1.7600 -125 810 -0.7609 0.9933 1.7600 -125 811 -0.6962 1.0018 1.7600 -125 812 -0.6389 1.0025 1.7600 -125 813 -0.5826 1.0027 1.7600 -125 814 -0.5226 1.0015 1.7600 -125 815 -0.4568 0.9966 1.7600 -125 816 -0.3885 0.9854 1.7600 -125 817 -0.3187 0.9646 1.7600 -125 818 -0.2545 0.9417 1.7600 -125 819 -0.1975 0.9216 1.7600 -125 820 -0.1462 0.9051 1.7600 -125 821 -0.0963 0.8957 1.7600 -125 822 -0.0397 0.8943 1.7600 -125 823 0.0260 0.8996 1.7600 -125 824 0.0995 0.9043 1.7600 -125 825 0.1733 0.9129 1.7600 -125 826 0.2450 0.9278 1.7600 -125 827 0.3086 0.9448 1.7600 -125 828 0.3660 0.9586 1.7600 -125 829 0.4204 0.9642 1.7600 -125 830 0.4740 0.9629 1.7600 -125 831 0.5316 0.9584 1.7600 -125 832 0.5898 0.9517 1.7600 -125 833 0.6503 0.9414 1.7600 -125 834 0.7106 0.9241 1.7600 -125 835 0.7661 0.8961 1.7600 -125 836 0.8244 0.8608 1.7600 -125 837 0.8804 0.8299 1.7600 -125 838 0.9353 0.8060 1.7600 -125 839 0.9852 0.7903 1.7600 -125 840 1.0384 0.7790 1.7600 -125 841 1.0908 0.7713 1.7600 -125 842 1.1451 0.7633 1.7600 -125 843 1.2034 0.7561 1.7600 -125 844 1.2708 0.7515 1.7600 -125 845 1.3382 0.7561 1.7600 -125 846 1.4026 0.7698 1.7600 -125 847 1.4635 0.7811 1.7600 -125 848 1.5201 0.7888 1.7600 -125 849 1.5713 0.7901 1.7600 -125 850 1.6304 0.7851 1.7600 -125 851 1.6929 0.7806 1.7600 -125 852 1.7558 0.7735 1.7600 -125 853 1.8229 0.7673 1.7600 -125 854 1.8885 0.7566 1.7600 -125 855 1.9551 0.7391 1.7600 -125 856 2.0180 0.7170 1.7600 -125 857 2.0814 0.6996 1.7600 -125 858 2.1408 0.6870 1.7600 -125 859 2.1996 0.6814 1.7600 -125 860 2.2577 0.6814 1.7600 -125 861 2.3186 0.6855 1.7600 -125 862 2.3806 0.6901 1.7600 -125 863 2.4476 0.6995 1.7600 -125 864 2.5144 0.7136 1.7600 -125 865 2.5810 0.7342 1.7600 -125 866 2.6465 0.7549 1.7600 -125 867 2.7084 0.7701 1.7600 -125 868 2.7686 0.7773 1.7600 -125 869 2.8309 0.7780 1.7600 -125 870 2.8923 0.7768 1.7600 -125 871 2.9568 0.7752 1.7600 -125 872 3.0232 0.7748 1.7600 -125 873 3.0902 0.7683 1.7600 -125 874 3.1586 0.7568 1.7600 -125 875 3.2256 0.7438 1.7600 -125 876 3.2887 0.7334 1.7600 -125 877 3.3493 0.7296 1.7600 -125 878 3.4083 0.7312 1.7600 -125 879 3.4659 0.7392 1.7600 -125 880 3.5236 0.7487 1.7600 -125 881 3.5851 0.7569 1.7600 -125 882 3.6520 0.7717 1.7600 -125 883 3.7197 0.7894 1.7600 -125 884 3.7890 0.8107 1.7600 -125 885 3.8613 0.8279 1.7600 -125 886 3.9263 0.8375 1.7600 -125 887 3.9879 0.8431 1.7600 -125 888 4.0482 0.8463 1.7600 -125 889 4.1101 0.8460 1.7600 -125 890 4.1720 0.8437 1.7600 -125 891 4.2395 0.8327 1.7600 -125 892 4.3048 0.8165 1.7600 -125 893 4.3706 0.7964 1.7600 -125 894 4.4436 0.7794 1.7600 -125 895 4.5092 0.7677 1.7600 -125 896 4.5741 0.7629 1.7600 -125 897 4.6374 0.7614 1.7600 -125 898 4.7010 0.7645 1.7600 -125 899 4.7597 0.7686 1.7600 -125 900 4.8204 0.7772 1.7600 -125 901 4.8856 0.7902 1.7600 -125 902 4.9551 0.8062 1.7600 -125 903 5.0324 0.8216 1.7600 -125 904 5.1089 0.8326 1.7600 -125 905 5.1797 0.8330 1.7600 -125 906 5.2522 0.8276 1.7600 -125 907 5.3234 0.8211 1.7600 -125 908 5.3912 0.8165 1.7600 -125 909 5.4585 0.8069 1.7600 -125 910 5.5274 0.7924 1.7600 -125 911 5.6004 0.7712 1.7600 -125 912 5.6770 0.7519 1.7600 -125 913 5.7483 0.7425 1.7600 -125 914 5.8209 0.7434 1.7600 -125 915 5.8926 0.7511 1.7600 -125 916 5.9584 0.7633 1.7600 -126 671 -7.7944 2.0683 1.7600 -126 672 -7.7425 2.0710 1.7600 -126 673 -7.6958 2.0789 1.7600 -126 674 -7.6514 2.0879 1.7600 -126 675 -7.6078 2.0936 1.7600 -126 676 -7.5614 2.0941 1.7600 -126 677 -7.5131 2.0897 1.7600 -126 678 -7.4634 2.0816 1.7600 -126 679 -7.4121 2.0702 1.7600 -126 680 -7.3600 2.0555 1.7600 -126 681 -7.3097 2.0380 1.7600 -126 682 -7.2657 2.0176 1.7600 -126 683 -7.2253 1.9964 1.7600 -126 684 -7.1849 1.9763 1.7600 -126 685 -7.1444 1.9587 1.7600 -126 686 -7.1042 1.9457 1.7600 -126 687 -7.0605 1.9350 1.7600 -126 688 -7.0117 1.9242 1.7600 -126 689 -6.9583 1.9127 1.7600 -126 690 -6.9026 1.9027 1.7600 -126 691 -6.8471 1.8973 1.7600 -126 692 -6.7951 1.8965 1.7600 -126 693 -6.7441 1.8974 1.7600 -126 694 -6.6941 1.8957 1.7600 -126 695 -6.6447 1.8859 1.7600 -126 696 -6.5930 1.8672 1.7600 -126 697 -6.5376 1.8424 1.7600 -126 698 -6.4804 1.8163 1.7600 -126 699 -6.4221 1.7898 1.7600 -126 700 -6.3637 1.7606 1.7600 -126 701 -6.3097 1.7334 1.7600 -126 702 -6.2596 1.7032 1.7600 -126 703 -6.2133 1.6785 1.7600 -126 704 -6.1686 1.6607 1.7600 -126 705 -6.1228 1.6450 1.7600 -126 706 -6.0736 1.6303 1.7600 -126 707 -6.0216 1.6161 1.7600 -126 708 -5.9691 1.6054 1.7600 -126 709 -5.9162 1.6009 1.7600 -126 710 -5.8638 1.6033 1.7600 -126 711 -5.8212 1.6074 1.7600 -126 712 -5.7757 1.6035 1.7600 -126 713 -5.7306 1.5971 1.7600 -126 714 -5.6822 1.5848 1.7600 -126 715 -5.6305 1.5750 1.7600 -126 716 -5.5830 1.5630 1.7600 -126 717 -5.5345 1.5478 1.7600 -126 718 -5.4863 1.5320 1.7600 -126 719 -5.4436 1.5118 1.7600 -126 720 -5.4048 1.4900 1.7600 -126 721 -5.3707 1.4707 1.7600 -126 722 -5.3312 1.4576 1.7600 -126 723 -5.2911 1.4457 1.7600 -126 724 -5.2442 1.4400 1.7600 -126 725 -5.1989 1.4335 1.7600 -126 726 -5.1480 1.4294 1.7600 -126 727 -5.0966 1.4277 1.7600 -126 728 -5.0457 1.4289 1.7600 -126 729 -4.9946 1.4298 1.7600 -126 730 -4.9471 1.4340 1.7600 -126 731 -4.9016 1.4342 1.7600 -126 732 -4.8512 1.4294 1.7600 -126 733 -4.7984 1.4194 1.7600 -126 734 -4.7424 1.4073 1.7600 -126 735 -4.6876 1.3936 1.7600 -126 736 -4.6334 1.3830 1.7600 -126 737 -4.5764 1.3711 1.7600 -126 738 -4.5287 1.3577 1.7600 -126 739 -4.4856 1.3464 1.7600 -126 740 -4.4392 1.3389 1.7600 -126 741 -4.3927 1.3360 1.7600 -126 742 -4.3465 1.3336 1.7600 -126 743 -4.2971 1.3321 1.7600 -126 744 -4.2471 1.3322 1.7600 -126 745 -4.1987 1.3393 1.7600 -126 746 -4.1597 1.3479 1.7600 -126 747 -4.1204 1.3523 1.7600 -126 748 -4.0759 1.3446 1.7600 -126 749 -4.0307 1.3309 1.7600 -126 750 -3.9771 1.3152 1.7600 -126 751 -3.9225 1.3021 1.7600 -126 752 -3.8639 1.2871 1.7600 -126 753 -3.8104 1.2739 1.7600 -126 754 -3.7609 1.2638 1.7600 -126 755 -3.7191 1.2604 1.7600 -126 756 -3.6742 1.2598 1.7600 -126 757 -3.6312 1.2596 1.7600 -126 758 -3.5863 1.2605 1.7600 -126 759 -3.5386 1.2634 1.7600 -126 760 -3.4923 1.2720 1.7600 -126 761 -3.4410 1.2901 1.7600 -126 762 -3.3915 1.3085 1.7600 -126 763 -3.3452 1.3262 1.7600 -126 764 -3.2974 1.3393 1.7600 -126 765 -3.2465 1.3428 1.7600 -126 766 -3.1861 1.3446 1.7600 -126 767 -3.1258 1.3418 1.7600 -126 768 -3.0662 1.3392 1.7600 -126 769 -3.0101 1.3351 1.7600 -126 770 -2.9515 1.3269 1.7600 -126 771 -2.8889 1.3181 1.7600 -126 772 -2.8278 1.3058 1.7600 -126 773 -2.7731 1.2942 1.7600 -126 774 -2.7187 1.2877 1.7600 -126 775 -2.6663 1.2852 1.7600 -126 776 -2.6142 1.2822 1.7600 -126 777 -2.5571 1.2819 1.7600 -126 778 -2.4983 1.2832 1.7600 -126 779 -2.4343 1.2912 1.7600 -126 780 -2.3651 1.3065 1.7600 -126 781 -2.3014 1.3212 1.7600 -126 782 -2.2383 1.3303 1.7600 -126 783 -2.1741 1.3287 1.7600 -126 784 -2.1118 1.3235 1.7600 -126 785 -2.0461 1.3135 1.7600 -126 786 -1.9808 1.3032 1.7600 -126 787 -1.9149 1.2945 1.7600 -126 788 -1.8451 1.2846 1.7600 -126 789 -1.7727 1.2696 1.7600 -126 790 -1.7089 1.2584 1.7600 -126 791 -1.6495 1.2524 1.7600 -126 792 -1.5933 1.2522 1.7600 -126 793 -1.5353 1.2554 1.7600 -126 794 -1.4766 1.2580 1.7600 -126 795 -1.4142 1.2652 1.7600 -126 796 -1.3420 1.2781 1.7600 -126 797 -1.2705 1.2955 1.7600 -126 798 -1.2087 1.3134 1.7600 -126 799 -1.1504 1.3268 1.7600 -126 800 -1.0888 1.3374 1.7600 -126 801 -1.0264 1.3414 1.7600 -126 802 -0.9673 1.3443 1.7600 -126 803 -0.9038 1.3452 1.7600 -126 804 -0.8451 1.3449 1.7600 -126 805 -0.7839 1.3393 1.7600 -126 806 -0.7230 1.3260 1.7600 -126 807 -0.6655 1.3129 1.7600 -126 808 -0.6087 1.3026 1.7600 -126 809 -0.5512 1.2964 1.7600 -126 810 -0.4952 1.2940 1.7600 -126 811 -0.4374 1.2927 1.7600 -126 812 -0.3796 1.2915 1.7600 -126 813 -0.3154 1.2951 1.7600 -126 814 -0.2540 1.3006 1.7600 -126 815 -0.1949 1.3084 1.7600 -126 816 -0.1384 1.3143 1.7600 -126 817 -0.0819 1.3149 1.7600 -126 818 -0.0242 1.3102 1.7600 -126 819 0.0366 1.3031 1.7600 -126 820 0.1002 1.2943 1.7600 -126 821 0.1608 1.2785 1.7600 -126 822 0.2219 1.2619 1.7600 -126 823 0.2783 1.2440 1.7600 -126 824 0.3312 1.2259 1.7600 -126 825 0.3826 1.2133 1.7600 -126 826 0.4325 1.2063 1.7600 -126 827 0.4850 1.2034 1.7600 -126 828 0.5433 1.1998 1.7600 -126 829 0.6039 1.1985 1.7600 -126 830 0.6672 1.2009 1.7600 -126 831 0.7295 1.2087 1.7600 -126 832 0.7911 1.2211 1.7600 -126 833 0.8490 1.2348 1.7600 -126 834 0.9059 1.2451 1.7600 -126 835 0.9674 1.2490 1.7600 -126 836 1.0297 1.2481 1.7600 -126 837 1.0988 1.2469 1.7600 -126 838 1.1718 1.2434 1.7600 -126 839 1.2458 1.2379 1.7600 -126 840 1.3199 1.2303 1.7600 -126 841 1.3946 1.2205 1.7600 -126 842 1.4646 1.2124 1.7600 -126 843 1.5333 1.2096 1.7600 -126 844 1.5987 1.2104 1.7600 -126 845 1.6651 1.2130 1.7600 -126 846 1.7323 1.2165 1.7600 -126 847 1.8016 1.2187 1.7600 -126 848 1.8673 1.2217 1.7600 -126 849 1.9389 1.2296 1.7600 -126 850 2.0072 1.2386 1.7600 -126 851 2.0729 1.2461 1.7600 -126 852 2.1421 1.2508 1.7600 -126 853 2.2104 1.2516 1.7600 -126 854 2.2799 1.2492 1.7600 -126 855 2.3503 1.2483 1.7600 -126 856 2.4201 1.2439 1.7600 -126 857 2.4899 1.2394 1.7600 -126 858 2.5637 1.2275 1.7600 -126 859 2.6312 1.2143 1.7600 -126 860 2.6978 1.2024 1.7600 -126 861 2.7642 1.1965 1.7600 -126 862 2.8285 1.1943 1.7600 -126 863 2.8955 1.1937 1.7600 -126 864 2.9640 1.1936 1.7600 -126 865 3.0289 1.1955 1.7600 -126 866 3.0967 1.1984 1.7600 -126 867 3.1677 1.2076 1.7600 -126 868 3.2369 1.2168 1.7600 -126 869 3.3052 1.2222 1.7600 -126 870 3.3741 1.2220 1.7600 -126 871 3.4410 1.2139 1.7600 -126 872 3.5048 1.2035 1.7600 -126 873 3.5726 1.1917 1.7600 -126 874 3.6421 1.1775 1.7600 -126 875 3.7100 1.1620 1.7600 -126 876 3.7823 1.1438 1.7600 -126 877 3.8478 1.1248 1.7600 -126 878 3.9094 1.1089 1.7600 -126 879 3.9659 1.1028 1.7600 -126 880 4.0209 1.1031 1.7600 -126 881 4.0730 1.1061 1.7600 -126 882 4.1289 1.1112 1.7600 -126 883 4.1837 1.1173 1.7600 -126 884 4.2386 1.1278 1.7600 -126 885 4.2991 1.1385 1.7600 -126 886 4.3585 1.1473 1.7600 -126 887 4.4176 1.1538 1.7600 -126 888 4.4806 1.1562 1.7600 -126 889 4.5388 1.1530 1.7600 -126 890 4.6053 1.1471 1.7600 -126 891 4.6701 1.1434 1.7600 -126 892 4.7367 1.1413 1.7600 -126 893 4.8174 1.1384 1.7600 -126 894 4.8930 1.1355 1.7600 -126 895 4.9563 1.1362 1.7600 -126 896 5.0128 1.1444 1.7600 -126 897 5.0665 1.1583 1.7600 -126 898 5.1184 1.1746 1.7600 -126 899 5.1721 1.1941 1.7600 -126 900 5.2243 1.2204 1.7600 -126 901 5.2755 1.2524 1.7600 -126 902 5.3345 1.2874 1.7600 -126 903 5.3998 1.3273 1.7600 -126 904 5.4643 1.3596 1.7600 -126 905 5.5322 1.3859 1.7600 -126 906 5.6046 1.4072 1.7600 -126 907 5.6713 1.4226 1.7600 -126 908 5.7394 1.4405 1.7600 -126 909 5.8064 1.4549 1.7600 -126 910 5.8738 1.4697 1.7600 -126 911 5.9459 1.4808 1.7600 -127 707 -7.8177 1.5948 1.7600 -127 708 -7.7660 1.5907 1.7600 -127 709 -7.7184 1.5906 1.7600 -127 710 -7.6783 1.5925 1.7600 -127 711 -7.6372 1.5920 1.7600 -127 712 -7.5906 1.5911 1.7600 -127 713 -7.5338 1.5915 1.7600 -127 714 -7.4713 1.5965 1.7600 -127 715 -7.4100 1.6044 1.7600 -127 716 -7.3543 1.6116 1.7600 -127 717 -7.3073 1.6101 1.7600 -127 718 -7.2633 1.5986 1.7600 -127 719 -7.2208 1.5720 1.7600 -127 720 -7.1809 1.5455 1.7600 -127 721 -7.1426 1.5253 1.7600 -127 722 -7.1017 1.5112 1.7600 -127 723 -7.0581 1.5027 1.7600 -127 724 -7.0140 1.4938 1.7600 -127 725 -6.9670 1.4828 1.7600 -127 726 -6.9144 1.4662 1.7600 -127 727 -6.8621 1.4469 1.7600 -127 728 -6.8086 1.4234 1.7600 -127 729 -6.7563 1.3982 1.7600 -127 730 -6.7131 1.3816 1.7600 -127 731 -6.6680 1.3697 1.7600 -127 732 -6.6248 1.3610 1.7600 -127 733 -6.5862 1.3547 1.7600 -127 734 -6.5465 1.3486 1.7600 -127 735 -6.5051 1.3401 1.7600 -127 736 -6.4577 1.3333 1.7600 -127 737 -6.4083 1.3287 1.7600 -127 738 -6.3555 1.3252 1.7600 -127 739 -6.2985 1.3258 1.7600 -127 740 -6.2434 1.3276 1.7600 -127 741 -6.1899 1.3298 1.7600 -127 742 -6.1427 1.3337 1.7600 -127 743 -6.1014 1.3330 1.7600 -127 744 -6.0592 1.3282 1.7600 -127 745 -6.0176 1.3244 1.7600 -127 746 -5.9736 1.3194 1.7600 -127 747 -5.9272 1.3136 1.7600 -127 748 -5.8766 1.3078 1.7600 -127 749 -5.8258 1.2968 1.7600 -127 750 -5.7703 1.2834 1.7600 -127 751 -5.7192 1.2664 1.7600 -127 752 -5.6650 1.2472 1.7600 -127 753 -5.6220 1.2345 1.7600 -127 754 -5.5776 1.2269 1.7600 -127 755 -5.5380 1.2244 1.7600 -127 756 -5.4973 1.2247 1.7600 -127 757 -5.4541 1.2251 1.7600 -127 758 -5.4047 1.2255 1.7600 -127 759 -5.3484 1.2283 1.7600 -127 760 -5.2916 1.2360 1.7600 -127 761 -5.2314 1.2430 1.7600 -127 762 -5.1728 1.2566 1.7600 -127 763 -5.1267 1.2664 1.7600 -127 764 -5.0843 1.2717 1.7600 -127 765 -5.0422 1.2684 1.7600 -127 766 -5.0036 1.2630 1.7600 -127 767 -4.9650 1.2568 1.7600 -127 768 -4.9229 1.2473 1.7600 -127 769 -4.8787 1.2352 1.7600 -127 770 -4.8331 1.2205 1.7600 -127 771 -4.7867 1.2028 1.7600 -127 772 -4.7375 1.1792 1.7600 -127 773 -4.6868 1.1543 1.7600 -127 774 -4.6336 1.1286 1.7600 -127 775 -4.5818 1.1035 1.7600 -127 776 -4.5353 1.0832 1.7600 -127 777 -4.4887 1.0713 1.7600 -127 778 -4.4437 1.0648 1.7600 -127 779 -4.4028 1.0614 1.7600 -127 780 -4.3612 1.0575 1.7600 -127 781 -4.3162 1.0529 1.7600 -127 782 -4.2649 1.0488 1.7600 -127 783 -4.2153 1.0499 1.7600 -127 784 -4.1619 1.0516 1.7600 -127 785 -4.1049 1.0547 1.7600 -127 786 -4.0450 1.0621 1.7600 -127 787 -3.9932 1.0674 1.7600 -127 788 -3.9493 1.0636 1.7600 -127 789 -3.9061 1.0560 1.7600 -127 790 -3.8609 1.0442 1.7600 -127 791 -3.8172 1.0294 1.7600 -127 792 -3.7699 1.0140 1.7600 -127 793 -3.7190 0.9961 1.7600 -127 794 -3.6639 0.9780 1.7600 -127 795 -3.6092 0.9568 1.7600 -127 796 -3.5526 0.9265 1.7600 -127 797 -3.4910 0.9028 1.7600 -127 798 -3.4322 0.8814 1.7600 -127 799 -3.3806 0.8691 1.7600 -127 800 -3.3330 0.8644 1.7600 -127 801 -3.2889 0.8654 1.7600 -127 802 -3.2428 0.8677 1.7600 -127 803 -3.2047 0.8738 1.7600 -127 804 -3.1645 0.8807 1.7600 -127 805 -3.1279 0.8855 1.7600 -127 806 -3.0812 0.8958 1.7600 -127 807 -3.0214 0.9178 1.7600 -127 808 -2.9569 0.9428 1.7600 -127 809 -2.9097 0.9578 1.7600 -127 810 -2.8682 0.9638 1.7600 -127 811 -2.8265 0.9667 1.7600 -127 812 -2.7739 0.9746 1.7600 -127 813 -2.7233 0.9794 1.7600 -127 814 -2.6765 0.9760 1.7600 -127 815 -2.6333 0.9656 1.7600 -127 816 -2.5795 0.9544 1.7600 -127 817 -2.5230 0.9421 1.7600 -127 818 -2.4652 0.9252 1.7600 -127 819 -2.4011 0.9051 1.7600 -127 820 -2.3445 0.8886 1.7600 -127 821 -2.2996 0.8831 1.7600 -127 822 -2.2556 0.8941 1.7600 -127 823 -2.2096 0.9069 1.7600 -127 824 -2.1639 0.9148 1.7600 -127 825 -2.1201 0.9136 1.7600 -127 826 -2.0701 0.9102 1.7600 -127 827 -2.0175 0.9077 1.7600 -127 828 -1.9615 0.9098 1.7600 -127 829 -1.9009 0.9141 1.7600 -127 830 -1.8435 0.9259 1.7600 -127 831 -1.7837 0.9353 1.7600 -127 832 -1.7250 0.9338 1.7600 -127 833 -1.6610 0.9215 1.7600 -127 834 -1.5915 0.9045 1.7600 -127 835 -1.5176 0.8889 1.7600 -127 836 -1.4427 0.8738 1.7600 -127 837 -1.3666 0.8619 1.7600 -127 838 -1.2935 0.8509 1.7600 -127 839 -1.2186 0.8443 1.7600 -127 840 -1.1366 0.8369 1.7600 -127 841 -1.0506 0.8323 1.7600 -127 842 -0.9778 0.8377 1.7600 -127 843 -0.9107 0.8543 1.7600 -127 844 -0.8514 0.8774 1.7600 -127 845 -0.7955 0.8987 1.7600 -127 846 -0.7412 0.9172 1.7600 -127 847 -0.6820 0.9350 1.7600 -127 848 -0.6170 0.9537 1.7600 -127 849 -0.5421 0.9732 1.7600 -127 850 -0.4585 0.9949 1.7600 -127 851 -0.3829 1.0128 1.7600 -127 852 -0.3215 1.0206 1.7600 -127 853 -0.2650 1.0180 1.7600 -127 854 -0.2045 1.0115 1.7600 -127 855 -0.1392 1.0016 1.7600 -127 856 -0.0662 0.9909 1.7600 -127 857 0.0077 0.9803 1.7600 -127 858 0.0840 0.9676 1.7600 -127 859 0.1621 0.9510 1.7600 -127 860 0.2408 0.9330 1.7600 -127 861 0.3038 0.9225 1.7600 -127 862 0.3604 0.9225 1.7600 -127 863 0.4150 0.9294 1.7600 -127 864 0.4681 0.9381 1.7600 -127 865 0.5217 0.9467 1.7600 -127 866 0.5785 0.9579 1.7600 -127 867 0.6395 0.9699 1.7600 -127 868 0.7074 0.9846 1.7600 -127 869 0.7796 1.0050 1.7600 -127 870 0.8528 1.0336 1.7600 -127 871 0.9139 1.0560 1.7600 -127 872 0.9686 1.0704 1.7600 -127 873 1.0216 1.0742 1.7600 -127 874 1.0777 1.0755 1.7600 -127 875 1.1346 1.0777 1.7600 -127 876 1.1925 1.0799 1.7600 -127 877 1.2548 1.0810 1.7600 -127 878 1.3195 1.0779 1.7600 -127 879 1.3877 1.0723 1.7600 -127 880 1.4540 1.0617 1.7600 -127 881 1.5193 1.0497 1.7600 -127 882 1.5751 1.0419 1.7600 -127 883 1.6284 1.0436 1.7600 -127 884 1.6771 1.0501 1.7600 -127 885 1.7236 1.0594 1.7600 -127 886 1.7699 1.0684 1.7600 -127 887 1.8220 1.0785 1.7600 -127 888 1.8802 1.0879 1.7600 -127 889 1.9443 1.0997 1.7600 -127 890 2.0122 1.1142 1.7600 -127 891 2.0876 1.1335 1.7600 -127 892 2.1577 1.1476 1.7600 -127 893 2.2152 1.1546 1.7600 -127 894 2.2683 1.1549 1.7600 -127 895 2.3187 1.1486 1.7600 -127 896 2.3672 1.1421 1.7600 -127 897 2.4183 1.1350 1.7600 -127 898 2.4737 1.1279 1.7600 -127 899 2.5306 1.1194 1.7600 -127 900 2.5910 1.1094 1.7600 -127 901 2.6531 1.0976 1.7600 -127 902 2.7244 1.0851 1.7600 -127 903 2.7911 1.0778 1.7600 -127 904 2.8466 1.0771 1.7600 -127 905 2.8970 1.0829 1.7600 -127 906 2.9434 1.0886 1.7600 -127 907 2.9908 1.0933 1.7600 -127 908 3.0367 1.1007 1.7600 -127 909 3.0895 1.1065 1.7600 -127 910 3.1454 1.1169 1.7600 -127 911 3.2050 1.1289 1.7600 -127 912 3.2721 1.1420 1.7600 -127 913 3.3407 1.1563 1.7600 -127 914 3.3988 1.1661 1.7600 -127 915 3.4508 1.1643 1.7600 -127 916 3.5018 1.1585 1.7600 -127 917 3.5565 1.1524 1.7600 -127 918 3.6121 1.1437 1.7600 -127 919 3.6732 1.1373 1.7600 -127 920 3.7361 1.1327 1.7600 -127 921 3.8019 1.1272 1.7600 -127 922 3.8673 1.1206 1.7600 -127 923 3.9435 1.1100 1.7600 -127 924 4.0169 1.1045 1.7600 -127 925 4.0803 1.1063 1.7600 -127 926 4.1365 1.1145 1.7600 -127 927 4.1917 1.1219 1.7600 -127 928 4.2477 1.1284 1.7600 -127 929 4.3050 1.1348 1.7600 -127 930 4.3644 1.1427 1.7600 -127 931 4.4293 1.1534 1.7600 -127 932 4.5014 1.1674 1.7600 -127 933 4.5771 1.1812 1.7600 -127 934 4.6463 1.1900 1.7600 -127 935 4.7120 1.1883 1.7600 -127 936 4.7766 1.1804 1.7600 -127 937 4.8382 1.1716 1.7600 -127 938 4.8988 1.1638 1.7600 -127 939 4.9602 1.1556 1.7600 -127 940 5.0245 1.1449 1.7600 -127 941 5.0910 1.1308 1.7600 -127 942 5.1627 1.1139 1.7600 -127 943 5.2359 1.0985 1.7600 -127 944 5.3022 1.0925 1.7600 -127 945 5.3663 1.0960 1.7600 -127 946 5.4283 1.1009 1.7600 -127 947 5.4881 1.1029 1.7600 -127 948 5.5480 1.1018 1.7600 -127 949 5.6083 1.1006 1.7600 -127 950 5.6709 1.1030 1.7600 -127 951 5.7403 1.1110 1.7600 -127 952 5.8216 1.1227 1.7600 -127 953 5.9002 1.1314 1.7600 -128 699 -7.8147 0.7271 1.7600 -128 700 -7.7673 0.6876 1.7600 -128 701 -7.7133 0.6411 1.7600 -128 702 -7.6624 0.5936 1.7600 -128 703 -7.6189 0.5537 1.7600 -128 704 -7.5822 0.5248 1.7600 -128 705 -7.5449 0.5028 1.7600 -128 706 -7.5013 0.4842 1.7600 -128 707 -7.4495 0.4694 1.7600 -128 708 -7.3901 0.4586 1.7600 -128 709 -7.3271 0.4526 1.7600 -128 710 -7.2653 0.4515 1.7600 -128 711 -7.2060 0.4528 1.7600 -128 712 -7.1509 0.4530 1.7600 -128 713 -7.1004 0.4488 1.7600 -128 714 -7.0496 0.4389 1.7600 -128 715 -6.9981 0.4283 1.7600 -128 716 -6.9409 0.4152 1.7600 -128 717 -6.8831 0.3996 1.7600 -128 718 -6.8176 0.3778 1.7600 -128 719 -6.7567 0.3514 1.7600 -128 720 -6.6998 0.3233 1.7600 -128 721 -6.6474 0.2975 1.7600 -128 722 -6.5948 0.2808 1.7600 -128 723 -6.5420 0.2709 1.7600 -128 724 -6.4865 0.2657 1.7600 -128 725 -6.4275 0.2611 1.7600 -128 726 -6.3658 0.2600 1.7600 -128 727 -6.3039 0.2640 1.7600 -128 728 -6.2393 0.2703 1.7600 -128 729 -6.1730 0.2767 1.7600 -128 730 -6.1095 0.2811 1.7600 -128 731 -6.0502 0.2817 1.7600 -128 732 -5.9984 0.2768 1.7600 -128 733 -5.9452 0.2675 1.7600 -128 734 -5.8914 0.2604 1.7600 -128 735 -5.8354 0.2518 1.7600 -128 736 -5.7810 0.2418 1.7600 -128 737 -5.7222 0.2310 1.7600 -128 738 -5.6655 0.2174 1.7600 -128 739 -5.6125 0.2017 1.7600 -128 740 -5.5618 0.1875 1.7600 -128 741 -5.5129 0.1793 1.7600 -128 742 -5.4649 0.1783 1.7600 -128 743 -5.4197 0.1809 1.7600 -128 744 -5.3709 0.1884 1.7600 -128 745 -5.3220 0.1965 1.7600 -128 746 -5.2723 0.2078 1.7600 -128 747 -5.2201 0.2202 1.7600 -128 748 -5.1675 0.2350 1.7600 -128 749 -5.1183 0.2478 1.7600 -128 750 -5.0751 0.2606 1.7600 -128 751 -5.0345 0.2648 1.7600 -128 752 -4.9964 0.2688 1.7600 -128 753 -4.9585 0.2681 1.7600 -128 754 -4.9181 0.2681 1.7600 -128 755 -4.8768 0.2664 1.7600 -128 756 -4.8335 0.2634 1.7600 -128 757 -4.7910 0.2552 1.7600 -128 758 -4.7484 0.2474 1.7600 -128 759 -4.7067 0.2350 1.7600 -128 760 -4.6666 0.2234 1.7600 -128 761 -4.6307 0.2125 1.7600 -128 762 -4.5943 0.2070 1.7600 -128 763 -4.5564 0.2024 1.7600 -128 764 -4.5197 0.2015 1.7600 -128 765 -4.4818 0.2023 1.7600 -128 766 -4.4430 0.2040 1.7600 -128 767 -4.4009 0.2082 1.7600 -128 768 -4.3591 0.2150 1.7600 -128 769 -4.3153 0.2254 1.7600 -128 770 -4.2682 0.2359 1.7600 -128 771 -4.2214 0.2481 1.7600 -128 772 -4.1705 0.2588 1.7600 -128 773 -4.1211 0.2657 1.7600 -128 774 -4.0702 0.2657 1.7600 -128 775 -4.0192 0.2619 1.7600 -128 776 -3.9651 0.2589 1.7600 -128 777 -3.9116 0.2522 1.7600 -128 778 -3.8564 0.2438 1.7600 -128 779 -3.7997 0.2330 1.7600 -128 780 -3.7378 0.2199 1.7600 -128 781 -3.6744 0.2007 1.7600 -128 782 -3.6147 0.1844 1.7600 -128 783 -3.5623 0.1724 1.7600 -128 784 -3.5104 0.1645 1.7600 -128 785 -3.4586 0.1640 1.7600 -128 786 -3.4027 0.1658 1.7600 -128 787 -3.3428 0.1715 1.7600 -128 788 -3.2808 0.1804 1.7600 -128 789 -3.2196 0.1941 1.7600 -128 790 -3.1576 0.2084 1.7600 -128 791 -3.0935 0.2227 1.7600 -128 792 -3.0318 0.2330 1.7600 -128 793 -2.9718 0.2397 1.7600 -128 794 -2.9074 0.2388 1.7600 -128 795 -2.8441 0.2393 1.7600 -128 796 -2.7814 0.2378 1.7600 -128 797 -2.7181 0.2322 1.7600 -128 798 -2.6525 0.2214 1.7600 -128 799 -2.5818 0.2103 1.7600 -128 800 -2.5066 0.2001 1.7600 -128 801 -2.4340 0.1992 1.7600 -128 802 -2.3629 0.2071 1.7600 -128 803 -2.2935 0.2145 1.7600 -128 804 -2.2270 0.2206 1.7600 -128 805 -2.1636 0.2296 1.7600 -128 806 -2.0960 0.2379 1.7600 -128 807 -2.0300 0.2478 1.7600 -128 808 -1.9592 0.2588 1.7600 -128 809 -1.8894 0.2645 1.7600 -128 810 -1.8192 0.2654 1.7600 -128 811 -1.7516 0.2617 1.7600 -128 812 -1.6918 0.2569 1.7600 -128 813 -1.6300 0.2487 1.7600 -128 814 -1.5693 0.2419 1.7600 -128 815 -1.5075 0.2308 1.7600 -128 816 -1.4432 0.2163 1.7600 -128 817 -1.3772 0.1979 1.7600 -128 818 -1.3141 0.1797 1.7600 -128 819 -1.2516 0.1699 1.7600 -128 820 -1.1900 0.1650 1.7600 -128 821 -1.1300 0.1641 1.7600 -128 822 -1.0680 0.1685 1.7600 -128 823 -1.0037 0.1765 1.7600 -128 824 -0.9360 0.1883 1.7600 -128 825 -0.8638 0.2037 1.7600 -128 826 -0.7907 0.2192 1.7600 -128 827 -0.7229 0.2329 1.7600 -128 828 -0.6597 0.2415 1.7600 -128 829 -0.6003 0.2431 1.7600 -128 830 -0.5422 0.2424 1.7600 -128 831 -0.4846 0.2409 1.7600 -128 832 -0.4246 0.2407 1.7600 -128 833 -0.3608 0.2411 1.7600 -128 834 -0.2954 0.2355 1.7600 -128 835 -0.2305 0.2238 1.7600 -128 836 -0.1659 0.2096 1.7600 -128 837 -0.1055 0.1963 1.7600 -128 838 -0.0485 0.1891 1.7600 -128 839 0.0128 0.1849 1.7600 -128 840 0.0709 0.1832 1.7600 -128 841 0.1342 0.1803 1.7600 -128 842 0.1988 0.1824 1.7600 -128 843 0.2670 0.1900 1.7600 -128 844 0.3394 0.2009 1.7600 -128 845 0.4103 0.2133 1.7600 -128 846 0.4761 0.2286 1.7600 -128 847 0.5396 0.2422 1.7600 -128 848 0.5971 0.2454 1.7600 -128 849 0.6542 0.2464 1.7600 -128 850 0.7114 0.2495 1.7600 -128 851 0.7709 0.2517 1.7600 -128 852 0.8329 0.2514 1.7600 -128 853 0.8962 0.2486 1.7600 -128 854 0.9610 0.2422 1.7600 -128 855 1.0257 0.2318 1.7600 -128 856 1.0907 0.2206 1.7600 -128 857 1.1539 0.2159 1.7600 -128 858 1.2208 0.2174 1.7600 -128 859 1.2892 0.2238 1.7600 -128 860 1.3621 0.2303 1.7600 -128 861 1.4366 0.2385 1.7600 -128 862 1.5109 0.2447 1.7600 -128 863 1.5825 0.2514 1.7600 -128 864 1.6409 0.2521 1.7600 -128 865 1.6985 0.2475 1.7600 -128 866 1.7526 0.2429 1.7600 -128 867 1.8080 0.2376 1.7600 -128 868 1.8635 0.2321 1.7600 -128 869 1.9199 0.2254 1.7600 -128 870 1.9770 0.2198 1.7600 -128 871 2.0357 0.2116 1.7600 -128 872 2.0892 0.2007 1.7600 -128 873 2.1421 0.1946 1.7600 -128 874 2.1948 0.1941 1.7600 -128 875 2.2488 0.1996 1.7600 -128 876 2.3060 0.2062 1.7600 -128 877 2.3670 0.2169 1.7600 -128 878 2.4248 0.2305 1.7600 -128 879 2.4836 0.2483 1.7600 -128 880 2.5368 0.2624 1.7600 -128 881 2.5942 0.2741 1.7600 -128 882 2.6471 0.2761 1.7600 -128 883 2.7048 0.2769 1.7600 -128 884 2.7650 0.2764 1.7600 -128 885 2.8282 0.2743 1.7600 -128 886 2.8889 0.2714 1.7600 -128 887 2.9503 0.2591 1.7600 -128 888 3.0085 0.2444 1.7600 -128 889 3.0691 0.2304 1.7600 -128 890 3.1320 0.2268 1.7600 -128 891 3.1925 0.2282 1.7600 -128 892 3.2539 0.2347 1.7600 -128 893 3.3195 0.2448 1.7600 -128 894 3.3858 0.2583 1.7600 -128 895 3.4540 0.2752 1.7600 -128 896 3.5211 0.2933 1.7600 -128 897 3.5851 0.3085 1.7600 -128 898 3.6508 0.3201 1.7600 -128 899 3.7152 0.3247 1.7600 -128 900 3.7762 0.3275 1.7600 -128 901 3.8395 0.3321 1.7600 -128 902 3.9035 0.3358 1.7600 -128 903 3.9686 0.3402 1.7600 -128 904 4.0363 0.3334 1.7600 -128 905 4.1019 0.3210 1.7600 -128 906 4.1668 0.3130 1.7600 -128 907 4.2343 0.3079 1.7600 -128 908 4.3011 0.3097 1.7600 -128 909 4.3640 0.3113 1.7600 -128 910 4.4268 0.3168 1.7600 -128 911 4.4923 0.3266 1.7600 -128 912 4.5648 0.3408 1.7600 -128 913 4.6402 0.3535 1.7600 -128 914 4.7192 0.3608 1.7600 -128 915 4.8003 0.3584 1.7600 -128 916 4.8812 0.3543 1.7600 -128 917 4.9540 0.3507 1.7600 -128 918 5.0233 0.3479 1.7600 -128 919 5.0849 0.3456 1.7600 -128 920 5.1522 0.3422 1.7600 -128 921 5.2186 0.3354 1.7600 -128 922 5.2909 0.3294 1.7600 -128 923 5.3667 0.3247 1.7600 -128 924 5.4468 0.3293 1.7600 -128 925 5.5240 0.3375 1.7600 -128 926 5.5970 0.3471 1.7600 -128 927 5.6635 0.3579 1.7600 -128 928 5.7262 0.3683 1.7600 -128 929 5.7901 0.3779 1.7600 -128 930 5.8644 0.3882 1.7600 -128 931 5.9459 0.3959 1.7600 -129 692 -7.8181 1.5667 1.7600 -129 693 -7.7623 1.5534 1.7600 -129 694 -7.7039 1.5405 1.7600 -129 695 -7.6477 1.5259 1.7600 -129 696 -7.5964 1.5089 1.7600 -129 697 -7.5508 1.4899 1.7600 -129 698 -7.5141 1.4700 1.7600 -129 699 -7.4804 1.4575 1.7600 -129 700 -7.4407 1.4493 1.7600 -129 701 -7.3998 1.4431 1.7600 -129 702 -7.3574 1.4377 1.7600 -129 703 -7.3114 1.4319 1.7600 -129 704 -7.2643 1.4263 1.7600 -129 705 -7.2174 1.4226 1.7600 -129 706 -7.1725 1.4237 1.7600 -129 707 -7.1315 1.4284 1.7600 -129 708 -7.0920 1.4366 1.7600 -129 709 -7.0557 1.4422 1.7600 -129 710 -7.0176 1.4423 1.7600 -129 711 -6.9744 1.4386 1.7600 -129 712 -6.9286 1.4315 1.7600 -129 713 -6.8763 1.4234 1.7600 -129 714 -6.8174 1.4123 1.7600 -129 715 -6.7631 1.4009 1.7600 -129 716 -6.7091 1.3871 1.7600 -129 717 -6.6571 1.3679 1.7600 -129 718 -6.6089 1.3457 1.7600 -129 719 -6.5630 1.3231 1.7600 -129 720 -6.5160 1.3093 1.7600 -129 721 -6.4666 1.3036 1.7600 -129 722 -6.4182 1.2976 1.7600 -129 723 -6.3667 1.2932 1.7600 -129 724 -6.3131 1.2873 1.7600 -129 725 -6.2615 1.2860 1.7600 -129 726 -6.2137 1.2845 1.7600 -129 727 -6.1721 1.2891 1.7600 -129 728 -6.1320 1.2928 1.7600 -129 729 -6.0914 1.2935 1.7600 -129 730 -6.0485 1.2897 1.7600 -129 731 -5.9995 1.2847 1.7600 -129 732 -5.9539 1.2798 1.7600 -129 733 -5.9019 1.2713 1.7600 -129 734 -5.8496 1.2649 1.7600 -129 735 -5.7947 1.2537 1.7600 -129 736 -5.7434 1.2393 1.7600 -129 737 -5.6929 1.2188 1.7600 -129 738 -5.6385 1.1951 1.7600 -129 739 -5.5809 1.1757 1.7600 -129 740 -5.5226 1.1666 1.7600 -129 741 -5.4711 1.1623 1.7600 -129 742 -5.4185 1.1608 1.7600 -129 743 -5.3609 1.1611 1.7600 -129 744 -5.3039 1.1650 1.7600 -129 745 -5.2521 1.1722 1.7600 -129 746 -5.2055 1.1840 1.7600 -129 747 -5.1574 1.1981 1.7600 -129 748 -5.1129 1.2126 1.7600 -129 749 -5.0680 1.2176 1.7600 -129 750 -5.0163 1.2173 1.7600 -129 751 -4.9648 1.2170 1.7600 -129 752 -4.9105 1.2144 1.7600 -129 753 -4.8508 1.2071 1.7600 -129 754 -4.7993 1.1999 1.7600 -129 755 -4.7511 1.1880 1.7600 -129 756 -4.7064 1.1748 1.7600 -129 757 -4.6630 1.1566 1.7600 -129 758 -4.6227 1.1351 1.7600 -129 759 -4.5776 1.1278 1.7600 -129 760 -4.5277 1.1275 1.7600 -129 761 -4.4854 1.1261 1.7600 -129 762 -4.4351 1.1232 1.7600 -129 763 -4.3820 1.1230 1.7600 -129 764 -4.3301 1.1242 1.7600 -129 765 -4.2798 1.1286 1.7600 -129 766 -4.2355 1.1369 1.7600 -129 767 -4.1839 1.1528 1.7600 -129 768 -4.1390 1.1682 1.7600 -129 769 -4.0972 1.1765 1.7600 -129 770 -4.0485 1.1750 1.7600 -129 771 -3.9975 1.1704 1.7600 -129 772 -3.9449 1.1665 1.7600 -129 773 -3.8885 1.1621 1.7600 -129 774 -3.8302 1.1553 1.7600 -129 775 -3.7758 1.1444 1.7600 -129 776 -3.7259 1.1311 1.7600 -129 777 -3.6812 1.1148 1.7600 -129 778 -3.6312 1.0928 1.7600 -129 779 -3.5895 1.0753 1.7600 -129 780 -3.5445 1.0658 1.7600 -129 781 -3.4945 1.0628 1.7600 -129 782 -3.4480 1.0634 1.7600 -129 783 -3.4019 1.0664 1.7600 -129 784 -3.3500 1.0690 1.7600 -129 785 -3.2980 1.0718 1.7600 -129 786 -3.2487 1.0768 1.7600 -129 787 -3.1980 1.0873 1.7600 -129 788 -3.1444 1.1001 1.7600 -129 789 -3.0880 1.1161 1.7600 -129 790 -3.0356 1.1339 1.7600 -129 791 -2.9809 1.1411 1.7600 -129 792 -2.9211 1.1393 1.7600 -129 793 -2.8591 1.1355 1.7600 -129 794 -2.7967 1.1330 1.7600 -129 795 -2.7312 1.1315 1.7600 -129 796 -2.6693 1.1279 1.7600 -129 797 -2.6104 1.1212 1.7600 -129 798 -2.5487 1.1106 1.7600 -129 799 -2.4832 1.0990 1.7600 -129 800 -2.4157 1.0851 1.7600 -129 801 -2.3550 1.0754 1.7600 -129 802 -2.2931 1.0813 1.7600 -129 803 -2.2333 1.0935 1.7600 -129 804 -2.1778 1.1032 1.7600 -129 805 -2.1191 1.1096 1.7600 -129 806 -2.0606 1.1166 1.7600 -129 807 -2.0051 1.1233 1.7600 -129 808 -1.9481 1.1331 1.7600 -129 809 -1.8846 1.1432 1.7600 -129 810 -1.8161 1.1546 1.7600 -129 811 -1.7492 1.1610 1.7600 -129 812 -1.6794 1.1571 1.7600 -129 813 -1.6075 1.1476 1.7600 -129 814 -1.5401 1.1388 1.7600 -129 815 -1.4710 1.1328 1.7600 -129 816 -1.4028 1.1275 1.7600 -129 817 -1.3389 1.1198 1.7600 -129 818 -1.2787 1.1066 1.7600 -129 819 -1.2170 1.0902 1.7600 -129 820 -1.1552 1.0697 1.7600 -129 821 -1.0979 1.0540 1.7600 -129 822 -1.0387 1.0566 1.7600 -129 823 -0.9820 1.0666 1.7600 -129 824 -0.9299 1.0740 1.7600 -129 825 -0.8747 1.0793 1.7600 -129 826 -0.8134 1.0833 1.7600 -129 827 -0.7498 1.0863 1.7600 -129 828 -0.6866 1.0910 1.7600 -129 829 -0.6227 1.0973 1.7600 -129 830 -0.5617 1.1069 1.7600 -129 831 -0.5047 1.1140 1.7600 -129 832 -0.4389 1.1116 1.7600 -129 833 -0.3681 1.1006 1.7600 -129 834 -0.2998 1.0900 1.7600 -129 835 -0.2246 1.0828 1.7600 -129 836 -0.1510 1.0730 1.7600 -129 837 -0.0836 1.0591 1.7600 -129 838 -0.0159 1.0396 1.7600 -129 839 0.0527 1.0201 1.7600 -129 840 0.1134 1.0004 1.7600 -129 841 0.1623 0.9942 1.7600 -129 842 0.2205 0.9965 1.7600 -129 843 0.2763 1.0033 1.7600 -129 844 0.3308 1.0072 1.7600 -129 845 0.3951 1.0107 1.7600 -129 846 0.4585 1.0135 1.7600 -129 847 0.5213 1.0180 1.7600 -129 848 0.5830 1.0252 1.7600 -129 849 0.6379 1.0364 1.7600 -129 850 0.6926 1.0476 1.7600 -129 851 0.7480 1.0569 1.7600 -129 852 0.8109 1.0518 1.7600 -129 853 0.8760 1.0414 1.7600 -129 854 0.9419 1.0325 1.7600 -129 855 1.0137 1.0258 1.7600 -129 856 1.0841 1.0167 1.7600 -129 857 1.1498 1.0074 1.7600 -129 858 1.2086 0.9960 1.7600 -129 859 1.2701 0.9817 1.7600 -129 860 1.3301 0.9650 1.7600 -129 861 1.3825 0.9535 1.7600 -129 862 1.4363 0.9579 1.7600 -129 863 1.4876 0.9679 1.7600 -129 864 1.5358 0.9791 1.7600 -129 865 1.5911 0.9920 1.7600 -129 866 1.6487 1.0024 1.7600 -129 867 1.7035 1.0127 1.7600 -129 868 1.7517 1.0237 1.7600 -129 869 1.8027 1.0393 1.7600 -129 870 1.8523 1.0569 1.7600 -129 871 1.9002 1.0739 1.7600 -129 872 1.9532 1.0794 1.7600 -129 873 2.0148 1.0800 1.7600 -129 874 2.0768 1.0789 1.7600 -129 875 2.1433 1.0804 1.7600 -129 876 2.2059 1.0801 1.7600 -129 877 2.2669 1.0791 1.7600 -129 878 2.3272 1.0747 1.7600 -129 879 2.3865 1.0665 1.7600 -129 880 2.4479 1.0558 1.7600 -129 881 2.5024 1.0509 1.7600 -129 882 2.5574 1.0547 1.7600 -129 883 2.6145 1.0637 1.7600 -129 884 2.6729 1.0741 1.7600 -129 885 2.7358 1.0859 1.7600 -129 886 2.7994 1.0974 1.7600 -129 887 2.8595 1.1143 1.7600 -129 888 2.9202 1.1319 1.7600 -129 889 2.9897 1.1516 1.7600 -129 890 3.0559 1.1711 1.7600 -129 891 3.1193 1.1792 1.7600 -129 892 3.1892 1.1818 1.7600 -129 893 3.2601 1.1831 1.7600 -129 894 3.3307 1.1830 1.7600 -129 895 3.4038 1.1827 1.7600 -129 896 3.4739 1.1807 1.7600 -129 897 3.5403 1.1756 1.7600 -129 898 3.6097 1.1704 1.7600 -129 899 3.6845 1.1643 1.7600 -129 900 3.7558 1.1616 1.7600 -129 901 3.8267 1.1724 1.7600 -129 902 3.8936 1.1867 1.7600 -129 903 3.9621 1.1981 1.7600 -129 904 4.0328 1.2100 1.7600 -129 905 4.1021 1.2219 1.7600 -129 906 4.1699 1.2334 1.7600 -129 907 4.2473 1.2476 1.7600 -129 908 4.3283 1.2594 1.7600 -129 909 4.4070 1.2653 1.7600 -129 910 4.4847 1.2619 1.7600 -129 911 4.5625 1.2575 1.7600 -129 912 4.6389 1.2545 1.7600 -129 913 4.7146 1.2514 1.7600 -129 914 4.7875 1.2476 1.7600 -129 915 4.8566 1.2389 1.7600 -129 916 4.9261 1.2257 1.7600 -129 917 5.0027 1.2106 1.7600 -129 918 5.0784 1.1998 1.7600 -129 919 5.1549 1.2004 1.7600 -129 920 5.2284 1.2020 1.7600 -129 921 5.2974 1.2013 1.7600 -129 922 5.3655 1.2003 1.7600 -129 923 5.4317 1.1969 1.7600 -129 924 5.4975 1.1939 1.7600 -129 925 5.5639 1.1937 1.7600 -129 926 5.6369 1.1939 1.7600 -129 927 5.7105 1.1975 1.7600 -129 928 5.7821 1.1956 1.7600 -129 929 5.8528 1.1884 1.7600 -129 930 5.9185 1.1799 1.7600 -130 701 -7.7957 2.1257 1.7600 -130 702 -7.7465 2.1182 1.7600 -130 703 -7.6994 2.1085 1.7600 -130 704 -7.6477 2.0948 1.7600 -130 705 -7.6017 2.0781 1.7600 -130 706 -7.5597 2.0609 1.7600 -130 707 -7.5183 2.0471 1.7600 -130 708 -7.4762 2.0367 1.7600 -130 709 -7.4345 2.0277 1.7600 -130 710 -7.3918 2.0196 1.7600 -130 711 -7.3473 2.0134 1.7600 -130 712 -7.2989 2.0084 1.7600 -130 713 -7.2473 2.0062 1.7600 -130 714 -7.1944 2.0065 1.7600 -130 715 -7.1416 2.0097 1.7600 -130 716 -7.0918 2.0141 1.7600 -130 717 -7.0428 2.0184 1.7600 -130 718 -6.9931 2.0197 1.7600 -130 719 -6.9427 2.0189 1.7600 -130 720 -6.8891 2.0160 1.7600 -130 721 -6.8342 2.0112 1.7600 -130 722 -6.7791 2.0051 1.7600 -130 723 -6.7244 1.9973 1.7600 -130 724 -6.6686 1.9926 1.7600 -130 725 -6.6153 1.9940 1.7600 -130 726 -6.5646 1.9878 1.7600 -130 727 -6.5169 1.9805 1.7600 -130 728 -6.4707 1.9756 1.7600 -130 729 -6.4247 1.9711 1.7600 -130 730 -6.3771 1.9663 1.7600 -130 731 -6.3266 1.9628 1.7600 -130 732 -6.2729 1.9603 1.7600 -130 733 -6.2174 1.9593 1.7600 -130 734 -6.1660 1.9573 1.7600 -130 735 -6.1139 1.9563 1.7600 -130 736 -6.0637 1.9532 1.7600 -130 737 -6.0183 1.9436 1.7600 -130 738 -5.9674 1.9311 1.7600 -130 739 -5.9172 1.9179 1.7600 -130 740 -5.8691 1.9025 1.7600 -130 741 -5.8211 1.8857 1.7600 -130 742 -5.7755 1.8688 1.7600 -130 743 -5.7296 1.8493 1.7600 -130 744 -5.6873 1.8288 1.7600 -130 745 -5.6499 1.8076 1.7600 -130 746 -5.6095 1.7945 1.7600 -130 747 -5.5726 1.7852 1.7600 -130 748 -5.5364 1.7785 1.7600 -130 749 -5.4986 1.7737 1.7600 -130 750 -5.4594 1.7709 1.7600 -130 751 -5.4187 1.7688 1.7600 -130 752 -5.3766 1.7717 1.7600 -130 753 -5.3381 1.7764 1.7600 -130 754 -5.2953 1.7841 1.7600 -130 755 -5.2536 1.7888 1.7600 -130 756 -5.2146 1.7912 1.7600 -130 757 -5.1725 1.7902 1.7600 -130 758 -5.1341 1.7876 1.7600 -130 759 -5.0972 1.7813 1.7600 -130 760 -5.0593 1.7751 1.7600 -130 761 -5.0232 1.7649 1.7600 -130 762 -4.9884 1.7593 1.7600 -130 763 -4.9546 1.7517 1.7600 -130 764 -4.9237 1.7339 1.7600 -130 765 -4.8955 1.7094 1.7600 -130 766 -4.8671 1.6841 1.7600 -130 767 -4.8361 1.6587 1.7600 -130 768 -4.8054 1.6360 1.7600 -130 769 -4.7703 1.6188 1.7600 -130 770 -4.7321 1.6022 1.7600 -130 771 -4.6922 1.5895 1.7600 -130 772 -4.6509 1.5818 1.7600 -130 773 -4.6089 1.5820 1.7600 -130 774 -4.5635 1.5904 1.7600 -130 775 -4.5156 1.6020 1.7600 -130 776 -4.4630 1.6115 1.7600 -130 777 -4.4148 1.6149 1.7600 -130 778 -4.3639 1.6157 1.7600 -130 779 -4.3158 1.6125 1.7600 -130 780 -4.2713 1.6054 1.7600 -130 781 -4.2253 1.5940 1.7600 -130 782 -4.1836 1.5827 1.7600 -130 783 -4.1435 1.5690 1.7600 -130 784 -4.1019 1.5557 1.7600 -130 785 -4.0630 1.5396 1.7600 -130 786 -4.0271 1.5215 1.7600 -130 787 -3.9886 1.5003 1.7600 -130 788 -3.9486 1.4768 1.7600 -130 789 -3.9069 1.4582 1.7600 -130 790 -3.8635 1.4451 1.7600 -130 791 -3.8247 1.4374 1.7600 -130 792 -3.7855 1.4305 1.7600 -130 793 -3.7459 1.4263 1.7600 -130 794 -3.7058 1.4262 1.7600 -130 795 -3.6604 1.4291 1.7600 -130 796 -3.6193 1.4351 1.7600 -130 797 -3.5719 1.4499 1.7600 -130 798 -3.5254 1.4636 1.7600 -130 799 -3.4729 1.4719 1.7600 -130 800 -3.4231 1.4781 1.7600 -130 801 -3.3714 1.4845 1.7600 -130 802 -3.3214 1.4874 1.7600 -130 803 -3.2706 1.4905 1.7600 -130 804 -3.2084 1.4852 1.7600 -130 805 -3.1668 1.4920 1.7600 -130 806 -3.1107 1.4850 1.7600 -130 807 -3.0571 1.4838 1.7600 -130 808 -2.9951 1.4819 1.7600 -130 809 -2.9497 1.4974 1.7600 -130 810 -2.8959 1.5125 1.7600 -130 811 -2.8417 1.5223 1.7600 -130 812 -2.7859 1.5309 1.7600 -130 813 -2.7300 1.5376 1.7600 -130 814 -2.6750 1.5478 1.7600 -130 815 -2.6247 1.5626 1.7600 -130 816 -2.5660 1.5701 1.7600 -130 817 -2.5020 1.5801 1.7600 -130 818 -2.4450 1.5940 1.7600 -130 819 -2.3849 1.5977 1.7600 -130 820 -2.3249 1.5932 1.7600 -130 821 -2.2654 1.5932 1.7600 -130 822 -2.2135 1.5935 1.7600 -130 823 -2.1637 1.5883 1.7600 -130 824 -2.1093 1.5742 1.7600 -130 825 -2.0478 1.5602 1.7600 -130 826 -1.9808 1.5451 1.7600 -130 827 -1.9110 1.5312 1.7600 -130 828 -1.8401 1.5230 1.7600 -130 829 -1.7723 1.5186 1.7600 -130 830 -1.7074 1.5166 1.7600 -130 831 -1.6433 1.5160 1.7600 -130 832 -1.5800 1.5153 1.7600 -130 833 -1.5169 1.5165 1.7600 -130 834 -1.4507 1.5195 1.7600 -130 835 -1.3826 1.5242 1.7600 -130 836 -1.3121 1.5293 1.7600 -130 837 -1.2473 1.5326 1.7600 -130 838 -1.1768 1.5309 1.7600 -130 839 -1.1066 1.5269 1.7600 -130 840 -1.0410 1.5215 1.7600 -130 841 -0.9757 1.5147 1.7600 -130 842 -0.9096 1.5067 1.7600 -130 843 -0.8435 1.5001 1.7600 -130 844 -0.7743 1.4956 1.7600 -130 845 -0.7065 1.4893 1.7600 -130 846 -0.6385 1.4834 1.7600 -130 847 -0.5718 1.4804 1.7600 -130 848 -0.5053 1.4818 1.7600 -130 849 -0.4364 1.4844 1.7600 -130 850 -0.3653 1.4850 1.7600 -130 851 -0.2934 1.4803 1.7600 -130 852 -0.2102 1.4805 1.7600 -130 853 -0.1334 1.4813 1.7600 -130 854 -0.0561 1.4815 1.7600 -130 855 0.0201 1.4806 1.7600 -130 856 0.0877 1.4814 1.7600 -130 857 0.1608 1.4784 1.7600 -130 858 0.2384 1.4703 1.7600 -130 859 0.2942 1.4666 1.7600 -130 860 0.3488 1.4565 1.7600 -130 861 0.3986 1.4491 1.7600 -130 862 0.4527 1.4422 1.7600 -130 863 0.5119 1.4353 1.7600 -130 864 0.5726 1.4372 1.7600 -130 865 0.6269 1.4455 1.7600 -130 866 0.6808 1.4549 1.7600 -130 867 0.7321 1.4662 1.7600 -130 868 0.7865 1.4839 1.7600 -130 869 0.8385 1.5033 1.7600 -130 870 0.8967 1.5233 1.7600 -130 871 0.9512 1.5390 1.7600 -130 872 1.0070 1.5503 1.7600 -130 873 1.0636 1.5545 1.7600 -130 874 1.1211 1.5527 1.7600 -130 875 1.1791 1.5485 1.7600 -130 876 1.2316 1.5414 1.7600 -130 877 1.2882 1.5321 1.7600 -130 878 1.3444 1.5187 1.7600 -130 879 1.4005 1.4992 1.7600 -130 880 1.4568 1.4780 1.7600 -130 881 1.5166 1.4595 1.7600 -130 882 1.5756 1.4495 1.7600 -130 883 1.6341 1.4463 1.7600 -130 884 1.6916 1.4455 1.7600 -130 885 1.7470 1.4492 1.7600 -130 886 1.8000 1.4533 1.7600 -130 887 1.8505 1.4626 1.7600 -130 888 1.8999 1.4733 1.7600 -130 889 1.9511 1.4867 1.7600 -130 890 2.0045 1.4990 1.7600 -130 891 2.0595 1.5072 1.7600 -130 892 2.1154 1.5125 1.7600 -130 893 2.1716 1.5170 1.7600 -130 894 2.2236 1.5201 1.7600 -130 895 2.2756 1.5206 1.7600 -130 896 2.3274 1.5174 1.7600 -130 897 2.3793 1.5117 1.7600 -130 898 2.4340 1.5030 1.7600 -130 899 2.4932 1.4921 1.7600 -130 900 2.5530 1.4850 1.7600 -130 901 2.6117 1.4835 1.7600 -130 902 2.6713 1.4852 1.7600 -130 903 2.7275 1.4888 1.7600 -130 904 2.7810 1.4935 1.7600 -130 905 2.8358 1.5002 1.7600 -130 906 2.8893 1.5083 1.7600 -130 907 2.9440 1.5186 1.7600 -130 908 3.0061 1.5280 1.7600 -130 909 3.0677 1.5393 1.7600 -130 910 3.1299 1.5432 1.7600 -130 911 3.1945 1.5435 1.7600 -130 912 3.2575 1.5426 1.7600 -130 913 3.3171 1.5407 1.7600 -130 914 3.3736 1.5381 1.7600 -130 915 3.4287 1.5348 1.7600 -130 916 3.4847 1.5277 1.7600 -130 917 3.5471 1.5205 1.7600 -130 918 3.6122 1.5181 1.7600 -130 919 3.6794 1.5180 1.7600 -130 920 3.7443 1.5192 1.7600 -130 921 3.8051 1.5240 1.7600 -130 922 3.8616 1.5307 1.7600 -130 923 3.9142 1.5401 1.7600 -130 924 3.9683 1.5501 1.7600 -130 925 4.0273 1.5648 1.7600 -130 926 4.0928 1.5740 1.7600 -130 927 4.1571 1.5834 1.7600 -130 928 4.2245 1.5882 1.7600 -130 929 4.2965 1.5950 1.7600 -130 930 4.3538 1.5959 1.7600 -130 931 4.4119 1.5955 1.7600 -130 932 4.4675 1.5928 1.7600 -130 933 4.5289 1.5888 1.7600 -130 934 4.6048 1.5794 1.7600 -130 935 4.6780 1.5751 1.7600 -130 936 4.7500 1.5768 1.7600 -130 937 4.8196 1.5803 1.7600 -130 938 4.8846 1.5841 1.7600 -130 939 4.9448 1.5884 1.7600 -130 940 5.0024 1.5938 1.7600 -130 941 5.0590 1.6049 1.7600 -130 942 5.1161 1.6280 1.7600 -130 943 5.1811 1.6475 1.7600 -130 944 5.2573 1.6605 1.7600 -130 945 5.3438 1.6612 1.7600 -130 946 5.4174 1.6619 1.7600 -130 947 5.4816 1.6577 1.7600 -130 948 5.5390 1.6526 1.7600 -130 949 5.5994 1.6434 1.7600 -130 950 5.6685 1.6308 1.7600 -130 951 5.7410 1.6186 1.7600 -130 952 5.8165 1.6111 1.7600 -130 953 5.8900 1.6064 1.7600 -131 721 -7.8341 2.1501 1.7600 -131 722 -7.7818 2.1405 1.7600 -131 723 -7.7269 2.1263 1.7600 -131 724 -7.6700 2.1076 1.7600 -131 725 -7.6167 2.0838 1.7600 -131 726 -7.5716 2.0558 1.7600 -131 727 -7.5356 2.0264 1.7600 -131 728 -7.4991 1.9966 1.7600 -131 729 -7.4550 1.9688 1.7600 -131 730 -7.4070 1.9459 1.7600 -131 731 -7.3607 1.9331 1.7600 -131 732 -7.3143 1.9291 1.7600 -131 733 -7.2631 1.9311 1.7600 -131 734 -7.2063 1.9361 1.7600 -131 735 -7.1462 1.9431 1.7600 -131 736 -7.0866 1.9543 1.7600 -131 737 -7.0293 1.9721 1.7600 -131 738 -6.9765 1.9949 1.7600 -131 739 -6.9301 2.0175 1.7600 -131 740 -6.8821 2.0380 1.7600 -131 741 -6.8309 2.0534 1.7600 -131 742 -6.7789 2.0616 1.7600 -131 743 -6.7288 2.0630 1.7600 -131 744 -6.6779 2.0574 1.7600 -131 745 -6.6280 2.0473 1.7600 -131 746 -6.5759 2.0315 1.7600 -131 747 -6.5238 2.0112 1.7600 -131 748 -6.4732 1.9867 1.7600 -131 749 -6.4325 1.9592 1.7600 -131 750 -6.3875 1.9293 1.7600 -131 751 -6.3374 1.9034 1.7600 -131 752 -6.2840 1.8828 1.7600 -131 753 -6.2294 1.8658 1.7600 -131 754 -6.1746 1.8561 1.7600 -131 755 -6.1180 1.8516 1.7600 -131 756 -6.0630 1.8497 1.7600 -131 757 -6.0021 1.8480 1.7600 -131 758 -5.9393 1.8503 1.7600 -131 759 -5.8805 1.8585 1.7600 -131 760 -5.8206 1.8720 1.7600 -131 761 -5.7644 1.8865 1.7600 -131 762 -5.7053 1.8947 1.7600 -131 763 -5.6518 1.8918 1.7600 -131 764 -5.5979 1.8854 1.7600 -131 765 -5.5457 1.8722 1.7600 -131 766 -5.4961 1.8552 1.7600 -131 767 -5.4477 1.8357 1.7600 -131 768 -5.3984 1.8098 1.7600 -131 769 -5.3523 1.7846 1.7600 -131 770 -5.3110 1.7538 1.7600 -131 771 -5.2720 1.7207 1.7600 -131 772 -5.2327 1.6871 1.7600 -131 773 -5.1907 1.6587 1.7600 -131 774 -5.1479 1.6412 1.7600 -131 775 -5.1008 1.6352 1.7600 -131 776 -5.0563 1.6374 1.7600 -131 777 -5.0115 1.6473 1.7600 -131 778 -4.9652 1.6558 1.7600 -131 779 -4.9173 1.6699 1.7600 -131 780 -4.8681 1.6917 1.7600 -131 781 -4.8221 1.7170 1.7600 -131 782 -4.7762 1.7436 1.7600 -131 783 -4.7332 1.7686 1.7600 -131 784 -4.6933 1.7906 1.7600 -131 785 -4.6489 1.8065 1.7600 -131 786 -4.6025 1.8179 1.7600 -131 787 -4.5545 1.8134 1.7600 -131 788 -4.5129 1.8018 1.7600 -131 789 -4.4771 1.7832 1.7600 -131 790 -4.4411 1.7638 1.7600 -131 791 -4.4088 1.7389 1.7600 -131 792 -4.3823 1.7086 1.7600 -131 793 -4.3548 1.6757 1.7600 -131 794 -4.3297 1.6384 1.7600 -131 795 -4.3026 1.5995 1.7600 -131 796 -4.2694 1.5627 1.7600 -131 797 -4.2371 1.5290 1.7600 -131 798 -4.2013 1.5000 1.7600 -131 799 -4.1592 1.4726 1.7600 -131 800 -4.1040 1.4552 1.7600 -131 801 -4.0475 1.4448 1.7600 -131 802 -3.9815 1.4387 1.7600 -131 803 -3.9177 1.4387 1.7600 -131 804 -3.8544 1.4442 1.7600 -131 805 -3.7964 1.4564 1.7600 -131 806 -3.7432 1.4764 1.7600 -131 807 -3.6872 1.5026 1.7600 -131 808 -3.6338 1.5204 1.7600 -131 809 -3.5829 1.5307 1.7600 -131 810 -3.5332 1.5367 1.7600 -131 811 -3.4768 1.5358 1.7600 -131 812 -3.4201 1.5236 1.7600 -131 813 -3.3657 1.5119 1.7600 -131 814 -3.3120 1.4908 1.7600 -131 815 -3.2608 1.4635 1.7600 -131 816 -3.2090 1.4295 1.7600 -131 817 -3.1566 1.3951 1.7600 -131 818 -3.1033 1.3621 1.7600 -131 819 -3.0515 1.3318 1.7600 -131 820 -3.0056 1.3109 1.7600 -131 821 -2.9550 1.2965 1.7600 -131 822 -2.9042 1.2906 1.7600 -131 823 -2.8500 1.2895 1.7600 -131 824 -2.7994 1.2921 1.7600 -131 825 -2.7430 1.3017 1.7600 -131 826 -2.6875 1.3170 1.7600 -131 827 -2.6327 1.3420 1.7600 -131 828 -2.5812 1.3757 1.7600 -131 829 -2.5243 1.4081 1.7600 -131 830 -2.4716 1.4379 1.7600 -131 831 -2.4215 1.4552 1.7600 -131 832 -2.3656 1.4680 1.7600 -131 833 -2.3103 1.4814 1.7600 -131 834 -2.2551 1.4793 1.7600 -131 835 -2.1982 1.4754 1.7600 -131 836 -2.1413 1.4682 1.7600 -131 837 -2.0862 1.4553 1.7600 -131 838 -2.0317 1.4278 1.7600 -131 839 -1.9758 1.4101 1.7600 -131 840 -1.9183 1.3869 1.7600 -131 841 -1.8650 1.3682 1.7600 -131 842 -1.8157 1.3569 1.7600 -131 843 -1.7632 1.3506 1.7600 -131 844 -1.7093 1.3508 1.7600 -131 845 -1.6517 1.3512 1.7600 -131 846 -1.5951 1.3561 1.7600 -131 847 -1.5321 1.3648 1.7600 -131 848 -1.4731 1.3776 1.7600 -131 849 -1.4132 1.3984 1.7600 -131 850 -1.3526 1.4243 1.7600 -131 851 -1.2918 1.4488 1.7600 -131 852 -1.2394 1.4652 1.7600 -131 853 -1.1865 1.4710 1.7600 -131 854 -1.1300 1.4690 1.7600 -131 855 -1.0668 1.4626 1.7600 -131 856 -1.0047 1.4561 1.7600 -131 857 -0.9398 1.4478 1.7600 -131 858 -0.8757 1.4389 1.7600 -131 859 -0.8097 1.4265 1.7600 -131 860 -0.7439 1.4085 1.7600 -131 861 -0.6778 1.3918 1.7600 -131 862 -0.6171 1.3809 1.7600 -131 863 -0.5637 1.3792 1.7600 -131 864 -0.5130 1.3843 1.7600 -131 865 -0.4612 1.3957 1.7600 -131 866 -0.4074 1.4100 1.7600 -131 867 -0.3493 1.4241 1.7600 -131 868 -0.2855 1.4404 1.7600 -131 869 -0.2193 1.4627 1.7600 -131 870 -0.1609 1.4807 1.7600 -131 871 -0.0977 1.5097 1.7600 -131 872 -0.0397 1.5285 1.7600 -131 873 0.0146 1.5430 1.7600 -131 874 0.0770 1.5488 1.7600 -131 875 0.1448 1.5464 1.7600 -131 876 0.2176 1.5381 1.7600 -131 877 0.2875 1.5263 1.7600 -131 878 0.3566 1.5141 1.7600 -131 879 0.4231 1.4960 1.7600 -131 880 0.4861 1.4743 1.7600 -131 881 0.5463 1.4425 1.7600 -131 882 0.5981 1.4150 1.7600 -131 883 0.6378 1.3921 1.7600 -131 884 0.6736 1.3768 1.7600 -131 885 0.7141 1.3652 1.7600 -131 886 0.7590 1.3590 1.7600 -131 887 0.8042 1.3561 1.7600 -131 888 0.8509 1.3545 1.7600 -131 889 0.9009 1.3583 1.7600 -131 890 0.9490 1.3663 1.7600 -131 891 0.9926 1.3761 1.7600 -131 892 1.0380 1.3923 1.7600 -131 893 1.0866 1.4080 1.7600 -131 894 1.1384 1.4244 1.7600 -131 895 1.1918 1.4380 1.7600 -131 896 1.2496 1.4440 1.7600 -131 897 1.3077 1.4433 1.7600 -131 898 1.3713 1.4378 1.7600 -131 899 1.4305 1.4276 1.7600 -131 900 1.4904 1.4167 1.7600 -131 901 1.5448 1.4009 1.7600 -131 902 1.6010 1.3873 1.7600 -131 903 1.6584 1.3705 1.7600 -131 904 1.7104 1.3538 1.7600 -131 905 1.7636 1.3421 1.7600 -131 906 1.8143 1.3361 1.7600 -131 907 1.8645 1.3357 1.7600 -131 908 1.9197 1.3410 1.7600 -131 909 1.9766 1.3498 1.7600 -131 910 2.0380 1.3604 1.7600 -131 911 2.0975 1.3745 1.7600 -131 912 2.1585 1.3921 1.7600 -131 913 2.2194 1.4137 1.7600 -131 914 2.2772 1.4380 1.7600 -131 915 2.3391 1.4637 1.7600 -131 916 2.4011 1.4879 1.7600 -131 917 2.4629 1.5095 1.7600 -131 918 2.5214 1.5213 1.7600 -131 919 2.5824 1.5251 1.7600 -131 920 2.6462 1.5247 1.7600 -131 921 2.7080 1.5196 1.7600 -131 922 2.7654 1.5163 1.7600 -131 923 2.8237 1.5023 1.7600 -131 924 2.8814 1.4883 1.7600 -131 925 2.9417 1.4653 1.7600 -131 926 3.0056 1.4418 1.7600 -131 927 3.0707 1.4130 1.7600 -131 928 3.1347 1.3857 1.7600 -131 929 3.1977 1.3665 1.7600 -131 930 3.2607 1.3568 1.7600 -131 931 3.3257 1.3523 1.7600 -131 932 3.3917 1.3536 1.7600 -131 933 3.4516 1.3615 1.7600 -131 934 3.5134 1.3731 1.7600 -131 935 3.5785 1.3897 1.7600 -131 936 3.6519 1.4079 1.7600 -131 937 3.7283 1.4295 1.7600 -131 938 3.8016 1.4449 1.7600 -131 939 3.8752 1.4555 1.7600 -131 940 3.9482 1.4576 1.7600 -131 941 4.0215 1.4571 1.7600 -131 942 4.0980 1.4536 1.7600 -131 943 4.1714 1.4502 1.7600 -131 944 4.2430 1.4451 1.7600 -131 945 4.3167 1.4424 1.7600 -131 946 4.3965 1.4407 1.7600 -131 947 4.4835 1.4464 1.7600 -131 948 4.5709 1.4628 1.7600 -131 949 4.6550 1.4910 1.7600 -131 950 4.7349 1.5227 1.7600 -131 951 4.8115 1.5539 1.7600 -131 952 4.8832 1.5839 1.7600 -131 953 4.9544 1.6148 1.7600 -131 954 5.0280 1.6506 1.7600 -131 955 5.1098 1.6893 1.7600 -131 956 5.2086 1.7279 1.7600 -131 957 5.3094 1.7627 1.7600 -131 958 5.4142 1.7897 1.7600 -131 959 5.5166 1.8094 1.7600 -131 960 5.6093 1.8251 1.7600 -131 961 5.6975 1.8420 1.7600 -131 962 5.7832 1.8538 1.7600 -131 963 5.8750 1.8660 1.7600 -132 720 -7.8187 0.7978 1.7600 -132 721 -7.7685 0.7959 1.7600 -132 722 -7.7214 0.7964 1.7600 -132 723 -7.6720 0.7963 1.7600 -132 724 -7.6209 0.7924 1.7600 -132 725 -7.5723 0.7837 1.7600 -132 726 -7.5268 0.7712 1.7600 -132 727 -7.4808 0.7562 1.7600 -132 728 -7.4322 0.7408 1.7600 -132 729 -7.3822 0.7247 1.7600 -132 730 -7.3339 0.7067 1.7600 -132 731 -7.2885 0.6858 1.7600 -132 732 -7.2449 0.6617 1.7600 -132 733 -7.2059 0.6352 1.7600 -132 734 -7.1690 0.6074 1.7600 -132 735 -7.1315 0.5806 1.7600 -132 736 -7.0906 0.5595 1.7600 -132 737 -7.0469 0.5447 1.7600 -132 738 -7.0004 0.5332 1.7600 -132 739 -6.9512 0.5229 1.7600 -132 740 -6.8989 0.5131 1.7600 -132 741 -6.8432 0.5041 1.7600 -132 742 -6.7864 0.4961 1.7600 -132 743 -6.7294 0.4898 1.7600 -132 744 -6.6734 0.4858 1.7600 -132 745 -6.6203 0.4831 1.7600 -132 746 -6.5653 0.4805 1.7600 -132 747 -6.5128 0.4717 1.7600 -132 748 -6.4620 0.4590 1.7600 -132 749 -6.4106 0.4437 1.7600 -132 750 -6.3561 0.4276 1.7600 -132 751 -6.3004 0.4149 1.7600 -132 752 -6.2447 0.4030 1.7600 -132 753 -6.1878 0.3927 1.7600 -132 754 -6.1339 0.3791 1.7600 -132 755 -6.0829 0.3598 1.7600 -132 756 -6.0305 0.3363 1.7600 -132 757 -5.9733 0.3181 1.7600 -132 758 -5.9156 0.3099 1.7600 -132 759 -5.8652 0.3142 1.7600 -132 760 -5.8299 0.3198 1.7600 -132 761 -5.7935 0.3264 1.7600 -132 762 -5.7604 0.3336 1.7600 -132 763 -5.7335 0.3375 1.7600 -132 764 -5.7116 0.3431 1.7600 -132 765 -5.6955 0.3475 1.7600 -132 766 -5.6860 0.3524 1.7600 -132 767 -5.6752 0.3571 1.7600 -132 768 -5.6605 0.3574 1.7600 -132 769 -5.6441 0.3496 1.7600 -132 770 -5.6272 0.3392 1.7600 -132 771 -5.6108 0.3291 1.7600 -132 772 -5.5922 0.3170 1.7600 -132 773 -5.5721 0.3015 1.7600 -132 774 -5.5503 0.2892 1.7600 -132 775 -5.5208 0.2741 1.7600 -132 776 -5.4938 0.2614 1.7600 -132 777 -5.4632 0.2473 1.7600 -132 778 -5.4325 0.2336 1.7600 -132 779 -5.3992 0.2151 1.7600 -132 780 -5.3689 0.1967 1.7600 -132 781 -5.3392 0.1770 1.7600 -132 782 -5.3137 0.1583 1.7600 -132 783 -5.2890 0.1464 1.7600 -132 784 -5.2655 0.1368 1.7600 -132 785 -5.2415 0.1273 1.7600 -132 786 -5.2166 0.1228 1.7600 -132 787 -5.1917 0.1225 1.7600 -132 788 -5.1661 0.1299 1.7600 -132 789 -5.1400 0.1432 1.7600 -132 790 -5.1139 0.1582 1.7600 -132 791 -5.0837 0.1768 1.7600 -132 792 -5.0542 0.1956 1.7600 -132 793 -5.0197 0.2156 1.7600 -132 794 -4.9847 0.2356 1.7600 -132 795 -4.9482 0.2528 1.7600 -132 796 -4.9097 0.2652 1.7600 -132 797 -4.8680 0.2721 1.7600 -132 798 -4.8252 0.2734 1.7600 -132 799 -4.7766 0.2734 1.7600 -132 800 -4.7266 0.2684 1.7600 -132 801 -4.6755 0.2626 1.7600 -132 802 -4.6224 0.2536 1.7600 -132 803 -4.5696 0.2438 1.7600 -132 804 -4.5161 0.2391 1.7600 -132 805 -4.4659 0.2386 1.7600 -132 806 -4.4127 0.2446 1.7600 -132 807 -4.3606 0.2547 1.7600 -132 808 -4.3070 0.2711 1.7600 -132 809 -4.2527 0.2904 1.7600 -132 810 -4.1973 0.3129 1.7600 -132 811 -4.1440 0.3369 1.7600 -132 812 -4.0939 0.3629 1.7600 -132 813 -4.0444 0.3827 1.7600 -132 814 -3.9972 0.4007 1.7600 -132 815 -3.9478 0.4100 1.7600 -132 816 -3.9007 0.4150 1.7600 -132 817 -3.8490 0.4184 1.7600 -132 818 -3.7966 0.4158 1.7600 -132 819 -3.7426 0.4094 1.7600 -132 820 -3.6904 0.3940 1.7600 -132 821 -3.6448 0.3692 1.7600 -132 822 -3.6007 0.3420 1.7600 -132 823 -3.5631 0.3146 1.7600 -132 824 -3.5246 0.2985 1.7600 -132 825 -3.4806 0.2882 1.7600 -132 826 -3.4378 0.2842 1.7600 -132 827 -3.3938 0.2847 1.7600 -132 828 -3.3497 0.2886 1.7600 -132 829 -3.3052 0.2945 1.7600 -132 830 -3.2608 0.3032 1.7600 -132 831 -3.2116 0.3218 1.7600 -132 832 -3.1633 0.3382 1.7600 -132 833 -3.1178 0.3565 1.7600 -132 834 -3.0781 0.3744 1.7600 -132 835 -3.0404 0.3826 1.7600 -132 836 -2.9978 0.3815 1.7600 -132 837 -2.9561 0.3743 1.7600 -132 838 -2.9134 0.3635 1.7600 -132 839 -2.8723 0.3548 1.7600 -132 840 -2.8285 0.3460 1.7600 -132 841 -2.7797 0.3389 1.7600 -132 842 -2.7337 0.3307 1.7600 -132 843 -2.6855 0.3153 1.7600 -132 844 -2.6385 0.3007 1.7600 -132 845 -2.5933 0.2883 1.7600 -132 846 -2.5533 0.2776 1.7600 -132 847 -2.5204 0.2760 1.7600 -132 848 -2.4945 0.2729 1.7600 -132 849 -2.4752 0.2740 1.7600 -132 850 -2.4566 0.2773 1.7600 -132 851 -2.4373 0.2861 1.7600 -132 852 -2.4178 0.3001 1.7600 -132 853 -2.3996 0.3183 1.7600 -132 854 -2.3814 0.3430 1.7600 -132 855 -2.3671 0.3690 1.7600 -132 856 -2.3526 0.3939 1.7600 -132 857 -2.3328 0.4130 1.7600 -132 858 -2.3070 0.4277 1.7600 -132 859 -2.2801 0.4412 1.7600 -132 860 -2.2478 0.4526 1.7600 -132 861 -2.2091 0.4592 1.7600 -132 862 -2.1695 0.4614 1.7600 -132 863 -2.1266 0.4630 1.7600 -132 864 -2.0809 0.4618 1.7600 -132 865 -2.0358 0.4567 1.7600 -132 866 -1.9893 0.4430 1.7600 -132 867 -1.9399 0.4230 1.7600 -132 868 -1.8927 0.4022 1.7600 -132 869 -1.8439 0.3817 1.7600 -132 870 -1.7951 0.3617 1.7600 -132 871 -1.7466 0.3453 1.7600 -132 872 -1.6972 0.3348 1.7600 -132 873 -1.6474 0.3309 1.7600 -132 874 -1.5969 0.3340 1.7600 -132 875 -1.5455 0.3382 1.7600 -132 876 -1.4901 0.3436 1.7600 -132 877 -1.4316 0.3494 1.7600 -132 878 -1.3689 0.3598 1.7600 -132 879 -1.3037 0.3733 1.7600 -132 880 -1.2367 0.3902 1.7600 -132 881 -1.1691 0.4050 1.7600 -132 882 -1.1018 0.4151 1.7600 -132 883 -1.0344 0.4217 1.7600 -132 884 -0.9678 0.4217 1.7600 -132 885 -0.9015 0.4185 1.7600 -132 886 -0.8319 0.4137 1.7600 -132 887 -0.7614 0.4085 1.7600 -132 888 -0.6933 0.4000 1.7600 -132 889 -0.6308 0.3850 1.7600 -132 890 -0.5719 0.3679 1.7600 -132 891 -0.5156 0.3538 1.7600 -132 892 -0.4583 0.3483 1.7600 -132 893 -0.4020 0.3497 1.7600 -132 894 -0.3422 0.3548 1.7600 -132 895 -0.2798 0.3622 1.7600 -132 896 -0.2126 0.3753 1.7600 -132 897 -0.1478 0.3883 1.7600 -132 898 -0.0820 0.4051 1.7600 -132 899 -0.0167 0.4244 1.7600 -132 900 0.0488 0.4435 1.7600 -132 901 0.1088 0.4584 1.7600 -132 902 0.1673 0.4670 1.7600 -132 903 0.2263 0.4643 1.7600 -132 904 0.2892 0.4568 1.7600 -132 905 0.3539 0.4460 1.7600 -132 906 0.4183 0.4337 1.7600 -132 907 0.4838 0.4195 1.7600 -132 908 0.5467 0.4025 1.7600 -132 909 0.6026 0.3807 1.7600 -132 910 0.6576 0.3578 1.7600 -132 911 0.7125 0.3377 1.7600 -132 912 0.7639 0.3256 1.7600 -132 913 0.8183 0.3225 1.7600 -132 914 0.8718 0.3270 1.7600 -132 915 0.9287 0.3350 1.7600 -132 916 0.9892 0.3473 1.7600 -132 917 1.0519 0.3597 1.7600 -132 918 1.1144 0.3768 1.7600 -132 919 1.1772 0.3951 1.7600 -132 920 1.2418 0.4135 1.7600 -132 921 1.3033 0.4301 1.7600 -132 922 1.3653 0.4399 1.7600 -132 923 1.4315 0.4452 1.7600 -132 924 1.4968 0.4416 1.7600 -132 925 1.5633 0.4388 1.7600 -132 926 1.6288 0.4329 1.7600 -132 927 1.6912 0.4269 1.7600 -132 928 1.7522 0.4175 1.7600 -132 929 1.8111 0.4011 1.7600 -132 930 1.8674 0.3819 1.7600 -132 931 1.9221 0.3605 1.7600 -132 932 1.9753 0.3451 1.7600 -132 933 2.0309 0.3364 1.7600 -132 934 2.0851 0.3372 1.7600 -132 935 2.1398 0.3409 1.7600 -132 936 2.1964 0.3471 1.7600 -132 937 2.2530 0.3557 1.7600 -132 938 2.3106 0.3668 1.7600 -132 939 2.3667 0.3806 1.7600 -132 940 2.4237 0.3946 1.7600 -132 941 2.4853 0.4070 1.7600 -132 942 2.5474 0.4194 1.7600 -132 943 2.6095 0.4282 1.7600 -132 944 2.6736 0.4337 1.7600 -132 945 2.7379 0.4307 1.7600 -132 946 2.8019 0.4253 1.7600 -132 947 2.8652 0.4182 1.7600 -132 948 2.9259 0.4076 1.7600 -132 949 2.9881 0.3928 1.7600 -132 950 3.0520 0.3742 1.7600 -132 951 3.1171 0.3502 1.7600 -132 952 3.1801 0.3245 1.7600 -132 953 3.2426 0.3006 1.7600 -132 954 3.3056 0.2859 1.7600 -132 955 3.3689 0.2773 1.7600 -132 956 3.4309 0.2734 1.7600 -132 957 3.4948 0.2701 1.7600 -132 958 3.5583 0.2720 1.7600 -132 959 3.6211 0.2726 1.7600 -132 960 3.6833 0.2765 1.7600 -132 961 3.7452 0.2818 1.7600 -132 962 3.8099 0.2863 1.7600 -132 963 3.8762 0.2929 1.7600 -132 964 3.9430 0.2963 1.7600 -132 965 4.0124 0.2936 1.7600 -132 966 4.0790 0.2870 1.7600 -132 967 4.1433 0.2780 1.7600 -132 968 4.2028 0.2673 1.7600 -132 969 4.2633 0.2528 1.7600 -132 970 4.3232 0.2352 1.7600 -132 971 4.3892 0.2135 1.7600 -132 972 4.4540 0.1885 1.7600 -132 973 4.5182 0.1623 1.7600 -132 974 4.5808 0.1407 1.7600 -132 975 4.6441 0.1265 1.7600 -132 976 4.7101 0.1175 1.7600 -132 977 4.7723 0.1124 1.7600 -132 978 4.8342 0.1091 1.7600 -132 979 4.8945 0.1090 1.7600 -132 980 4.9549 0.1108 1.7600 -132 981 5.0174 0.1180 1.7600 -132 982 5.0880 0.1250 1.7600 -132 983 5.1625 0.1321 1.7600 -132 984 5.2357 0.1376 1.7600 -132 985 5.3083 0.1406 1.7600 -132 986 5.3835 0.1382 1.7600 -132 987 5.4603 0.1308 1.7600 -132 988 5.5320 0.1211 1.7600 -132 989 5.5984 0.1139 1.7600 -132 990 5.6646 0.1056 1.7600 -132 991 5.7326 0.0942 1.7600 -132 992 5.8053 0.0791 1.7600 -132 993 5.8807 0.0620 1.7600 -132 994 5.9571 0.0466 1.7600 -133 724 -7.7976 1.2014 1.7600 -133 725 -7.7556 1.1957 1.7600 -133 726 -7.7110 1.1910 1.7600 -133 727 -7.6662 1.1883 1.7600 -133 728 -7.6202 1.1906 1.7600 -133 729 -7.5721 1.1975 1.7600 -133 730 -7.5269 1.2062 1.7600 -133 731 -7.4850 1.2135 1.7600 -133 732 -7.4450 1.2169 1.7600 -133 733 -7.4041 1.2172 1.7600 -133 734 -7.3642 1.2143 1.7600 -133 735 -7.3242 1.2103 1.7600 -133 736 -7.2817 1.2024 1.7600 -133 737 -7.2383 1.1876 1.7600 -133 738 -7.1954 1.1660 1.7600 -133 739 -7.1539 1.1397 1.7600 -133 740 -7.1125 1.1092 1.7600 -133 741 -7.0730 1.0767 1.7600 -133 742 -7.0372 1.0456 1.7600 -133 743 -7.0022 1.0187 1.7600 -133 744 -6.9647 0.9950 1.7600 -133 745 -6.9269 0.9731 1.7600 -133 746 -6.8888 0.9550 1.7600 -133 747 -6.8505 0.9391 1.7600 -133 748 -6.8116 0.9248 1.7600 -133 749 -6.7704 0.9147 1.7600 -133 750 -6.7296 0.9083 1.7600 -133 751 -6.6836 0.9085 1.7600 -133 752 -6.6332 0.9094 1.7600 -133 753 -6.5827 0.9113 1.7600 -133 754 -6.5370 0.9130 1.7600 -133 755 -6.4966 0.9163 1.7600 -133 756 -6.4542 0.9163 1.7600 -133 757 -6.4132 0.9153 1.7600 -133 758 -6.3726 0.9120 1.7600 -133 759 -6.3321 0.9052 1.7600 -133 760 -6.2926 0.8938 1.7600 -133 761 -6.2497 0.8860 1.7600 -133 762 -6.2071 0.8731 1.7600 -133 763 -6.1628 0.8571 1.7600 -133 764 -6.1183 0.8382 1.7600 -133 765 -6.0732 0.8182 1.7600 -133 766 -6.0288 0.7989 1.7600 -133 767 -5.9844 0.7822 1.7600 -133 768 -5.9365 0.7681 1.7600 -133 769 -5.8870 0.7582 1.7600 -133 770 -5.8305 0.7490 1.7600 -133 771 -5.7728 0.7452 1.7600 -133 772 -5.7139 0.7491 1.7600 -133 773 -5.6527 0.7581 1.7600 -133 774 -5.5939 0.7731 1.7600 -133 775 -5.5384 0.7907 1.7600 -133 776 -5.4844 0.8068 1.7600 -133 777 -5.4284 0.8134 1.7600 -133 778 -5.3744 0.8192 1.7600 -133 779 -5.3209 0.8218 1.7600 -133 780 -5.2644 0.8220 1.7600 -133 781 -5.2073 0.8173 1.7600 -133 782 -5.1461 0.8050 1.7600 -133 783 -5.0860 0.7879 1.7600 -133 784 -5.0247 0.7603 1.7600 -133 785 -4.9650 0.7310 1.7600 -133 786 -4.9033 0.7005 1.7600 -133 787 -4.8416 0.6740 1.7600 -133 788 -4.7796 0.6521 1.7600 -133 789 -4.7175 0.6370 1.7600 -133 790 -4.6559 0.6247 1.7600 -133 791 -4.5954 0.6162 1.7600 -133 792 -4.5327 0.6132 1.7600 -133 793 -4.4731 0.6192 1.7600 -133 794 -4.4141 0.6283 1.7600 -133 795 -4.3528 0.6376 1.7600 -133 796 -4.2898 0.6393 1.7600 -133 797 -4.2276 0.6365 1.7600 -133 798 -4.1717 0.6296 1.7600 -133 799 -4.1180 0.6172 1.7600 -133 800 -4.0630 0.6035 1.7600 -133 801 -4.0056 0.5845 1.7600 -133 802 -3.9480 0.5580 1.7600 -133 803 -3.8923 0.5260 1.7600 -133 804 -3.8364 0.4895 1.7600 -133 805 -3.7783 0.4555 1.7600 -133 806 -3.7156 0.4280 1.7600 -133 807 -3.6603 0.4085 1.7600 -133 808 -3.6041 0.3958 1.7600 -133 809 -3.5483 0.3890 1.7600 -133 810 -3.4904 0.3842 1.7600 -133 811 -3.4305 0.3813 1.7600 -133 812 -3.3691 0.3873 1.7600 -133 813 -3.3079 0.4000 1.7600 -133 814 -3.2461 0.4131 1.7600 -133 815 -3.1802 0.4244 1.7600 -133 816 -3.1136 0.4281 1.7600 -133 817 -3.0516 0.4287 1.7600 -133 818 -2.9917 0.4259 1.7600 -133 819 -2.9326 0.4215 1.7600 -133 820 -2.8715 0.4157 1.7600 -133 821 -2.8076 0.4074 1.7600 -133 822 -2.7455 0.3928 1.7600 -133 823 -2.6852 0.3712 1.7600 -133 824 -2.6172 0.3455 1.7600 -133 825 -2.5454 0.3242 1.7600 -133 826 -2.4748 0.3110 1.7600 -133 827 -2.4114 0.3045 1.7600 -133 828 -2.3502 0.3022 1.7600 -133 829 -2.2904 0.3048 1.7600 -133 830 -2.2322 0.3130 1.7600 -133 831 -2.1757 0.3250 1.7600 -133 832 -2.1235 0.3470 1.7600 -133 833 -2.0691 0.3723 1.7600 -133 834 -2.0083 0.3941 1.7600 -133 835 -1.9494 0.4107 1.7600 -133 836 -1.8909 0.4199 1.7600 -133 837 -1.8344 0.4224 1.7600 -133 838 -1.7790 0.4232 1.7600 -133 839 -1.7214 0.4214 1.7600 -133 840 -1.6610 0.4141 1.7600 -133 841 -1.6020 0.4020 1.7600 -133 842 -1.5418 0.3838 1.7600 -133 843 -1.4782 0.3609 1.7600 -133 844 -1.4093 0.3405 1.7600 -133 845 -1.3392 0.3263 1.7600 -133 846 -1.2731 0.3173 1.7600 -133 847 -1.2050 0.3130 1.7600 -133 848 -1.1398 0.3144 1.7600 -133 849 -1.0759 0.3171 1.7600 -133 850 -1.0086 0.3208 1.7600 -133 851 -0.9457 0.3318 1.7600 -133 852 -0.8837 0.3489 1.7600 -133 853 -0.8228 0.3698 1.7600 -133 854 -0.7610 0.3852 1.7600 -133 855 -0.7024 0.3962 1.7600 -133 856 -0.6452 0.3994 1.7600 -133 857 -0.5848 0.4011 1.7600 -133 858 -0.5203 0.4041 1.7600 -133 859 -0.4509 0.4009 1.7600 -133 860 -0.3835 0.3955 1.7600 -133 861 -0.3198 0.3839 1.7600 -133 862 -0.2566 0.3682 1.7600 -133 863 -0.1880 0.3470 1.7600 -133 864 -0.1216 0.3346 1.7600 -133 865 -0.0562 0.3323 1.7600 -133 866 0.0113 0.3378 1.7600 -133 867 0.0779 0.3487 1.7600 -133 868 0.1441 0.3618 1.7600 -133 869 0.2120 0.3736 1.7600 -133 870 0.2784 0.3898 1.7600 -133 871 0.3406 0.4128 1.7600 -133 872 0.4045 0.4391 1.7600 -133 873 0.4661 0.4612 1.7600 -133 874 0.5216 0.4756 1.7600 -133 875 0.5786 0.4801 1.7600 -133 876 0.6390 0.4817 1.7600 -133 877 0.7010 0.4812 1.7600 -133 878 0.7664 0.4771 1.7600 -133 879 0.8307 0.4672 1.7600 -133 880 0.8936 0.4509 1.7600 -133 881 0.9545 0.4331 1.7600 -133 882 1.0155 0.4186 1.7600 -133 883 1.0792 0.4001 1.7600 -133 884 1.1382 0.3872 1.7600 -133 885 1.1992 0.3870 1.7600 -133 886 1.2566 0.3957 1.7600 -133 887 1.3204 0.4067 1.7600 -133 888 1.3849 0.4222 1.7600 -133 889 1.4468 0.4397 1.7600 -133 890 1.5068 0.4614 1.7600 -133 891 1.5676 0.4814 1.7600 -133 892 1.6316 0.4953 1.7600 -133 893 1.6942 0.4992 1.7600 -133 894 1.7569 0.4948 1.7600 -133 895 1.8190 0.4894 1.7600 -133 896 1.8838 0.4834 1.7600 -133 897 1.9508 0.4738 1.7600 -133 898 2.0205 0.4542 1.7600 -133 899 2.0883 0.4277 1.7600 -133 900 2.1564 0.4015 1.7600 -133 901 2.2333 0.3780 1.7600 -133 902 2.3068 0.3628 1.7600 -133 903 2.3785 0.3561 1.7600 -133 904 2.4439 0.3523 1.7600 -133 905 2.5129 0.3519 1.7600 -133 906 2.5805 0.3520 1.7600 -133 907 2.6471 0.3554 1.7600 -133 908 2.7106 0.3670 1.7600 -133 909 2.7759 0.3818 1.7600 -133 910 2.8490 0.3928 1.7600 -133 911 2.9236 0.3981 1.7600 -133 912 2.9913 0.3973 1.7600 -133 913 3.0572 0.3934 1.7600 -133 914 3.1221 0.3840 1.7600 -133 915 3.1883 0.3747 1.7600 -133 916 3.2537 0.3631 1.7600 -133 917 3.3133 0.3425 1.7600 -133 918 3.3721 0.3096 1.7600 -133 919 3.4380 0.2750 1.7600 -133 920 3.5072 0.2548 1.7600 -133 921 3.5753 0.2463 1.7600 -133 922 3.6410 0.2451 1.7600 -133 923 3.7056 0.2452 1.7600 -133 924 3.7705 0.2461 1.7600 -133 925 3.8392 0.2534 1.7600 -133 926 3.9038 0.2672 1.7600 -133 927 3.9717 0.2830 1.7600 -133 928 4.0440 0.2966 1.7600 -133 929 4.1169 0.3062 1.7600 -133 930 4.1879 0.3044 1.7600 -133 931 4.2575 0.2937 1.7600 -133 932 4.3191 0.2810 1.7600 -133 933 4.3792 0.2649 1.7600 -133 934 4.4384 0.2448 1.7600 -133 935 4.4951 0.2167 1.7600 -133 936 4.5565 0.1804 1.7600 -133 937 4.6243 0.1416 1.7600 -133 938 4.6945 0.1114 1.7600 -133 939 4.7598 0.0931 1.7600 -133 940 4.8256 0.0821 1.7600 -133 941 4.8840 0.0723 1.7600 -133 942 4.9469 0.0669 1.7600 -133 943 5.0055 0.0748 1.7600 -133 944 5.0667 0.0867 1.7600 -133 945 5.1295 0.0963 1.7600 -133 946 5.2021 0.0990 1.7600 -133 947 5.2808 0.0963 1.7600 -133 948 5.3503 0.0945 1.7600 -133 949 5.4213 0.0894 1.7600 -133 950 5.4885 0.0825 1.7600 -133 951 5.5524 0.0735 1.7600 -133 952 5.6154 0.0609 1.7600 -133 953 5.6767 0.0437 1.7600 -133 954 5.7370 0.0204 1.7600 -133 955 5.8051 -0.0108 1.7600 -133 956 5.8800 -0.0418 1.7600 -133 957 5.9545 -0.0616 1.7600 -134 739 -7.8328 1.5281 1.7600 -134 740 -7.7902 1.5204 1.7600 -134 741 -7.7480 1.5122 1.7600 -134 742 -7.7053 1.5034 1.7600 -134 743 -7.6636 1.4932 1.7600 -134 744 -7.6218 1.4808 1.7600 -134 745 -7.5802 1.4663 1.7600 -134 746 -7.5416 1.4517 1.7600 -134 747 -7.5066 1.4372 1.7600 -134 748 -7.4710 1.4219 1.7600 -134 749 -7.4313 1.4080 1.7600 -134 750 -7.3889 1.3954 1.7600 -134 751 -7.3452 1.3850 1.7600 -134 752 -7.3001 1.3750 1.7600 -134 753 -7.2561 1.3681 1.7600 -134 754 -7.2099 1.3628 1.7600 -134 755 -7.1635 1.3576 1.7600 -134 756 -7.1189 1.3520 1.7600 -134 757 -7.0754 1.3492 1.7600 -134 758 -7.0372 1.3463 1.7600 -134 759 -6.9989 1.3430 1.7600 -134 760 -6.9584 1.3395 1.7600 -134 761 -6.9156 1.3293 1.7600 -134 762 -6.8687 1.3200 1.7600 -134 763 -6.8226 1.3083 1.7600 -134 764 -6.7750 1.2968 1.7600 -134 765 -6.7221 1.2835 1.7600 -134 766 -6.6713 1.2695 1.7600 -134 767 -6.6242 1.2549 1.7600 -134 768 -6.5792 1.2418 1.7600 -134 769 -6.5379 1.2284 1.7600 -134 770 -6.4944 1.2164 1.7600 -134 771 -6.4537 1.2048 1.7600 -134 772 -6.4093 1.1966 1.7600 -134 773 -6.3641 1.1933 1.7600 -134 774 -6.3211 1.1896 1.7600 -134 775 -6.2766 1.1856 1.7600 -134 776 -6.2313 1.1851 1.7600 -134 777 -6.1859 1.1861 1.7600 -134 778 -6.1416 1.1872 1.7600 -134 779 -6.0991 1.1917 1.7600 -134 780 -6.0613 1.1926 1.7600 -134 781 -6.0212 1.1913 1.7600 -134 782 -5.9843 1.1888 1.7600 -134 783 -5.9428 1.1847 1.7600 -134 784 -5.9028 1.1796 1.7600 -134 785 -5.8651 1.1734 1.7600 -134 786 -5.8218 1.1650 1.7600 -134 787 -5.7816 1.1547 1.7600 -134 788 -5.7413 1.1436 1.7600 -134 789 -5.7000 1.1301 1.7600 -134 790 -5.6569 1.1153 1.7600 -134 791 -5.6150 1.1005 1.7600 -134 792 -5.5716 1.0882 1.7600 -134 793 -5.5257 1.0763 1.7600 -134 794 -5.4735 1.0690 1.7600 -134 795 -5.4218 1.0636 1.7600 -134 796 -5.3711 1.0591 1.7600 -134 797 -5.3203 1.0569 1.7600 -134 798 -5.2719 1.0553 1.7600 -134 799 -5.2218 1.0558 1.7600 -134 800 -5.1737 1.0596 1.7600 -134 801 -5.1284 1.0612 1.7600 -134 802 -5.0826 1.0624 1.7600 -134 803 -5.0403 1.0620 1.7600 -134 804 -4.9953 1.0584 1.7600 -134 805 -4.9471 1.0543 1.7600 -134 806 -4.9008 1.0499 1.7600 -134 807 -4.8551 1.0437 1.7600 -134 808 -4.8108 1.0341 1.7600 -134 809 -4.7672 1.0251 1.7600 -134 810 -4.7241 1.0142 1.7600 -134 811 -4.6777 1.0003 1.7600 -134 812 -4.6338 0.9897 1.7600 -134 813 -4.5876 0.9795 1.7600 -134 814 -4.5464 0.9698 1.7600 -134 815 -4.4991 0.9627 1.7600 -134 816 -4.4551 0.9570 1.7600 -134 817 -4.4096 0.9521 1.7600 -134 818 -4.3637 0.9481 1.7600 -134 819 -4.3185 0.9448 1.7600 -134 820 -4.2700 0.9443 1.7600 -134 821 -4.2240 0.9444 1.7600 -134 822 -4.1747 0.9460 1.7600 -134 823 -4.1301 0.9464 1.7600 -134 824 -4.0820 0.9463 1.7600 -134 825 -4.0360 0.9430 1.7600 -134 826 -3.9895 0.9380 1.7600 -134 827 -3.9428 0.9319 1.7600 -134 828 -3.8967 0.9263 1.7600 -134 829 -3.8470 0.9195 1.7600 -134 830 -3.7980 0.9109 1.7600 -134 831 -3.7455 0.9013 1.7600 -134 832 -3.6954 0.8895 1.7600 -134 833 -3.6451 0.8829 1.7600 -134 834 -3.5949 0.8765 1.7600 -134 835 -3.5366 0.8785 1.7600 -134 836 -3.4837 0.8728 1.7600 -134 837 -3.4311 0.8716 1.7600 -134 838 -3.3770 0.8770 1.7600 -134 839 -3.3267 0.8780 1.7600 -134 840 -3.2695 0.8871 1.7600 -134 841 -3.2157 0.8879 1.7600 -134 842 -3.1578 0.8948 1.7600 -134 843 -3.1098 0.8932 1.7600 -134 844 -3.0559 0.8919 1.7600 -134 845 -2.9991 0.8921 1.7600 -134 846 -2.9460 0.8862 1.7600 -134 847 -2.8927 0.8814 1.7600 -134 848 -2.8379 0.8764 1.7600 -134 849 -2.7818 0.8708 1.7600 -134 850 -2.7210 0.8683 1.7600 -134 851 -2.6657 0.8580 1.7600 -134 852 -2.6063 0.8499 1.7600 -134 853 -2.5471 0.8466 1.7600 -134 854 -2.4888 0.8456 1.7600 -134 855 -2.4279 0.8476 1.7600 -134 856 -2.3681 0.8501 1.7600 -134 857 -2.3085 0.8544 1.7600 -134 858 -2.2519 0.8557 1.7600 -134 859 -2.1937 0.8609 1.7600 -134 860 -2.1283 0.8691 1.7600 -134 861 -2.0562 0.8796 1.7600 -134 862 -1.9846 0.8888 1.7600 -134 863 -1.9103 0.8936 1.7600 -134 864 -1.8430 0.8966 1.7600 -134 865 -1.7756 0.8955 1.7600 -134 866 -1.7121 0.8946 1.7600 -134 867 -1.6501 0.8907 1.7600 -134 868 -1.5889 0.8827 1.7600 -134 869 -1.5244 0.8758 1.7600 -134 870 -1.4539 0.8715 1.7600 -134 871 -1.3862 0.8663 1.7600 -134 872 -1.3188 0.8625 1.7600 -134 873 -1.2496 0.8614 1.7600 -134 874 -1.1820 0.8630 1.7600 -134 875 -1.1167 0.8657 1.7600 -134 876 -1.0514 0.8663 1.7600 -134 877 -0.9856 0.8666 1.7600 -134 878 -0.9169 0.8698 1.7600 -134 879 -0.8475 0.8735 1.7600 -134 880 -0.7795 0.8766 1.7600 -134 881 -0.7133 0.8782 1.7600 -134 882 -0.6464 0.8763 1.7600 -134 883 -0.5796 0.8719 1.7600 -134 884 -0.5142 0.8674 1.7600 -134 885 -0.4481 0.8624 1.7600 -134 886 -0.3832 0.8577 1.7600 -134 887 -0.3160 0.8525 1.7600 -134 888 -0.2512 0.8460 1.7600 -134 889 -0.1877 0.8414 1.7600 -134 890 -0.1233 0.8365 1.7600 -134 891 -0.0580 0.8356 1.7600 -134 892 0.0069 0.8355 1.7600 -134 893 0.0738 0.8379 1.7600 -134 894 0.1390 0.8411 1.7600 -134 895 0.2062 0.8424 1.7600 -134 896 0.2699 0.8454 1.7600 -134 897 0.3365 0.8511 1.7600 -134 898 0.3934 0.8501 1.7600 -134 899 0.4537 0.8540 1.7600 -134 900 0.5139 0.8517 1.7600 -134 901 0.5746 0.8475 1.7600 -134 902 0.6387 0.8417 1.7600 -134 903 0.7013 0.8356 1.7600 -134 904 0.7666 0.8296 1.7600 -134 905 0.8310 0.8244 1.7600 -134 906 0.8941 0.8186 1.7600 -134 907 0.9561 0.8108 1.7600 -134 908 1.0176 0.8014 1.7600 -134 909 1.0782 0.7947 1.7600 -134 910 1.1396 0.7906 1.7600 -134 911 1.2012 0.7882 1.7600 -134 912 1.2589 0.7861 1.7600 -134 913 1.3153 0.7854 1.7600 -134 914 1.3735 0.7857 1.7600 -134 915 1.4307 0.7879 1.7600 -134 916 1.4876 0.7926 1.7600 -134 917 1.5450 0.7947 1.7600 -134 918 1.5997 0.7965 1.7600 -134 919 1.6537 0.7967 1.7600 -134 920 1.7101 0.7931 1.7600 -134 921 1.7641 0.7874 1.7600 -134 922 1.8190 0.7828 1.7600 -134 923 1.8707 0.7757 1.7600 -134 924 1.9228 0.7683 1.7600 -134 925 1.9776 0.7593 1.7600 -134 926 2.0362 0.7515 1.7600 -134 927 2.0929 0.7444 1.7600 -134 928 2.1515 0.7371 1.7600 -134 929 2.2104 0.7353 1.7600 -134 930 2.2706 0.7354 1.7600 -134 931 2.3278 0.7352 1.7600 -134 932 2.3822 0.7376 1.7600 -134 933 2.4377 0.7437 1.7600 -134 934 2.4976 0.7505 1.7600 -134 935 2.5623 0.7570 1.7600 -134 936 2.6273 0.7656 1.7600 -134 937 2.6902 0.7710 1.7600 -134 938 2.7513 0.7740 1.7600 -134 939 2.8178 0.7732 1.7600 -134 940 2.8822 0.7692 1.7600 -134 941 2.9438 0.7639 1.7600 -134 942 3.0035 0.7587 1.7600 -134 943 3.0627 0.7515 1.7600 -134 944 3.1218 0.7440 1.7600 -134 945 3.1840 0.7363 1.7600 -134 946 3.2468 0.7295 1.7600 -134 947 3.3111 0.7217 1.7600 -134 948 3.3786 0.7161 1.7600 -134 949 3.4462 0.7172 1.7600 -134 950 3.5112 0.7179 1.7600 -134 951 3.5705 0.7190 1.7600 -134 952 3.6309 0.7203 1.7600 -134 953 3.6926 0.7224 1.7600 -134 954 3.7582 0.7229 1.7600 -134 955 3.8295 0.7256 1.7600 -134 956 3.8943 0.7264 1.7600 -134 957 3.9576 0.7225 1.7600 -134 958 4.0233 0.7172 1.7600 -134 959 4.0883 0.7102 1.7600 -134 960 4.1484 0.7023 1.7600 -134 961 4.2089 0.6955 1.7600 -134 962 4.2698 0.6876 1.7600 -134 963 4.3398 0.6787 1.7600 -134 964 4.4136 0.6685 1.7600 -134 965 4.4842 0.6582 1.7600 -134 966 4.5551 0.6502 1.7600 -134 967 4.6278 0.6470 1.7600 -134 968 4.6940 0.6474 1.7600 -134 969 4.7606 0.6464 1.7600 -134 970 4.8233 0.6465 1.7600 -134 971 4.8885 0.6485 1.7600 -134 972 4.9628 0.6492 1.7600 -134 973 5.0445 0.6497 1.7600 -134 974 5.1231 0.6509 1.7600 -134 975 5.2045 0.6496 1.7600 -134 976 5.2822 0.6441 1.7600 -134 977 5.3525 0.6376 1.7600 -134 978 5.4173 0.6319 1.7600 -134 979 5.4826 0.6260 1.7600 -134 980 5.5531 0.6189 1.7600 -134 981 5.6323 0.6103 1.7600 -134 982 5.7133 0.6005 1.7600 -134 983 5.7923 0.5903 1.7600 -134 984 5.8688 0.5834 1.7600 -134 985 5.9406 0.5799 1.7600 -135 752 -7.8191 1.2139 1.7600 -135 753 -7.7716 1.1896 1.7600 -135 754 -7.7263 1.1638 1.7600 -135 755 -7.6846 1.1356 1.7600 -135 756 -7.6429 1.1054 1.7600 -135 757 -7.5987 1.0781 1.7600 -135 758 -7.5498 1.0531 1.7600 -135 759 -7.5027 1.0374 1.7600 -135 760 -7.4482 1.0262 1.7600 -135 761 -7.3959 1.0198 1.7600 -135 762 -7.3454 1.0192 1.7600 -135 763 -7.2994 1.0206 1.7600 -135 764 -7.2554 1.0244 1.7600 -135 765 -7.2123 1.0258 1.7600 -135 766 -7.1697 1.0225 1.7600 -135 767 -7.1265 1.0167 1.7600 -135 768 -7.0836 1.0059 1.7600 -135 769 -7.0336 0.9924 1.7600 -135 770 -6.9857 0.9771 1.7600 -135 771 -6.9329 0.9599 1.7600 -135 772 -6.8852 0.9375 1.7600 -135 773 -6.8351 0.9165 1.7600 -135 774 -6.7810 0.8917 1.7600 -135 775 -6.7253 0.8703 1.7600 -135 776 -6.6652 0.8539 1.7600 -135 777 -6.6110 0.8440 1.7600 -135 778 -6.5568 0.8383 1.7600 -135 779 -6.5048 0.8380 1.7600 -135 780 -6.4550 0.8407 1.7600 -135 781 -6.4028 0.8441 1.7600 -135 782 -6.3510 0.8481 1.7600 -135 783 -6.3004 0.8546 1.7600 -135 784 -6.2519 0.8589 1.7600 -135 785 -6.2019 0.8586 1.7600 -135 786 -6.1602 0.8542 1.7600 -135 787 -6.1135 0.8470 1.7600 -135 788 -6.0651 0.8354 1.7600 -135 789 -6.0196 0.8229 1.7600 -135 790 -5.9733 0.8100 1.7600 -135 791 -5.9320 0.7979 1.7600 -135 792 -5.8939 0.7850 1.7600 -135 793 -5.8533 0.7723 1.7600 -135 794 -5.8138 0.7664 1.7600 -135 795 -5.7719 0.7628 1.7600 -135 796 -5.7279 0.7626 1.7600 -135 797 -5.6889 0.7661 1.7600 -135 798 -5.6512 0.7716 1.7600 -135 799 -5.6157 0.7784 1.7600 -135 800 -5.5782 0.7870 1.7600 -135 801 -5.5382 0.7952 1.7600 -135 802 -5.4998 0.8017 1.7600 -135 803 -5.4584 0.8041 1.7600 -135 804 -5.4203 0.8016 1.7600 -135 805 -5.3793 0.7973 1.7600 -135 806 -5.3360 0.7916 1.7600 -135 807 -5.2901 0.7841 1.7600 -135 808 -5.2406 0.7722 1.7600 -135 809 -5.1907 0.7598 1.7600 -135 810 -5.1417 0.7453 1.7600 -135 811 -5.0922 0.7350 1.7600 -135 812 -5.0416 0.7305 1.7600 -135 813 -4.9980 0.7281 1.7600 -135 814 -4.9535 0.7302 1.7600 -135 815 -4.9139 0.7327 1.7600 -135 816 -4.8810 0.7381 1.7600 -135 817 -4.8493 0.7425 1.7600 -135 818 -4.8186 0.7507 1.7600 -135 819 -4.7845 0.7585 1.7600 -135 820 -4.7501 0.7647 1.7600 -135 821 -4.7141 0.7665 1.7600 -135 822 -4.6775 0.7645 1.7600 -135 823 -4.6380 0.7598 1.7600 -135 824 -4.5993 0.7536 1.7600 -135 825 -4.5579 0.7425 1.7600 -135 826 -4.5110 0.7313 1.7600 -135 827 -4.4625 0.7159 1.7600 -135 828 -4.4167 0.7017 1.7600 -135 829 -4.3676 0.6931 1.7600 -135 830 -4.3224 0.6885 1.7600 -135 831 -4.2775 0.6888 1.7600 -135 832 -4.2378 0.6954 1.7600 -135 833 -4.2007 0.7023 1.7600 -135 834 -4.1656 0.7137 1.7600 -135 835 -4.1312 0.7248 1.7600 -135 836 -4.0942 0.7371 1.7600 -135 837 -4.0546 0.7485 1.7600 -135 838 -4.0155 0.7559 1.7600 -135 839 -3.9726 0.7571 1.7600 -135 840 -3.9263 0.7543 1.7600 -135 841 -3.8795 0.7482 1.7600 -135 842 -3.8320 0.7414 1.7600 -135 843 -3.7848 0.7319 1.7600 -135 844 -3.7340 0.7214 1.7600 -135 845 -3.6763 0.7089 1.7600 -135 846 -3.6160 0.6983 1.7600 -135 847 -3.5551 0.6921 1.7600 -135 848 -3.4980 0.6910 1.7600 -135 849 -3.4470 0.6944 1.7600 -135 850 -3.3953 0.7001 1.7600 -135 851 -3.3472 0.7119 1.7600 -135 852 -3.2993 0.7234 1.7600 -135 853 -3.2571 0.7392 1.7600 -135 854 -3.2094 0.7548 1.7600 -135 855 -3.1568 0.7712 1.7600 -135 856 -3.1046 0.7848 1.7600 -135 857 -3.0507 0.7935 1.7600 -135 858 -2.9996 0.7958 1.7600 -135 859 -2.9486 0.7920 1.7600 -135 860 -2.8976 0.7861 1.7600 -135 861 -2.8486 0.7809 1.7600 -135 862 -2.7961 0.7745 1.7600 -135 863 -2.7391 0.7688 1.7600 -135 864 -2.6766 0.7622 1.7600 -135 865 -2.6134 0.7621 1.7600 -135 866 -2.5495 0.7637 1.7600 -135 867 -2.4891 0.7753 1.7600 -135 868 -2.4319 0.7857 1.7600 -135 869 -2.3766 0.8012 1.7600 -135 870 -2.3257 0.8198 1.7600 -135 871 -2.2714 0.8429 1.7600 -135 872 -2.2175 0.8693 1.7600 -135 873 -2.1657 0.8924 1.7600 -135 874 -2.1112 0.9063 1.7600 -135 875 -2.0581 0.9135 1.7600 -135 876 -2.0015 0.9140 1.7600 -135 877 -1.9437 0.9099 1.7600 -135 878 -1.8840 0.9010 1.7600 -135 879 -1.8193 0.8906 1.7600 -135 880 -1.7519 0.8772 1.7600 -135 881 -1.6849 0.8725 1.7600 -135 882 -1.6160 0.8754 1.7600 -135 883 -1.5491 0.8761 1.7600 -135 884 -1.4833 0.8888 1.7600 -135 885 -1.4234 0.9016 1.7600 -135 886 -1.3624 0.9160 1.7600 -135 887 -1.3047 0.9289 1.7600 -135 888 -1.2425 0.9478 1.7600 -135 889 -1.1849 0.9621 1.7600 -135 890 -1.1349 0.9718 1.7600 -135 891 -1.0845 0.9735 1.7600 -135 892 -1.0407 0.9733 1.7600 -135 893 -0.9901 0.9646 1.7600 -135 894 -0.9377 0.9515 1.7600 -135 895 -0.8871 0.9377 1.7600 -135 896 -0.8353 0.9207 1.7600 -135 897 -0.7866 0.9017 1.7600 -135 898 -0.7379 0.8891 1.7600 -135 899 -0.6845 0.8836 1.7600 -135 900 -0.6326 0.8871 1.7600 -135 901 -0.5820 0.8931 1.7600 -135 902 -0.5311 0.9031 1.7600 -135 903 -0.4806 0.9145 1.7600 -135 904 -0.4347 0.9279 1.7600 -135 905 -0.3864 0.9420 1.7600 -135 906 -0.3365 0.9551 1.7600 -135 907 -0.2875 0.9701 1.7600 -135 908 -0.2335 0.9759 1.7600 -135 909 -0.1816 0.9750 1.7600 -135 910 -0.1258 0.9677 1.7600 -135 911 -0.0645 0.9595 1.7600 -135 912 -0.0030 0.9496 1.7600 -135 913 0.0628 0.9375 1.7600 -135 914 0.1323 0.9192 1.7600 -135 915 0.2038 0.9007 1.7600 -135 916 0.2759 0.8867 1.7600 -135 917 0.3539 0.8781 1.7600 -135 918 0.4253 0.8755 1.7600 -135 919 0.4893 0.8815 1.7600 -135 920 0.5531 0.8878 1.7600 -135 921 0.6108 0.8993 1.7600 -135 922 0.6650 0.9118 1.7600 -135 923 0.7227 0.9259 1.7600 -135 924 0.7778 0.9386 1.7600 -135 925 0.8279 0.9481 1.7600 -135 926 0.8791 0.9517 1.7600 -135 927 0.9308 0.9519 1.7600 -135 928 0.9835 0.9441 1.7600 -135 929 1.0370 0.9343 1.7600 -135 930 1.0911 0.9276 1.7600 -135 931 1.1503 0.9139 1.7600 -135 932 1.2146 0.9028 1.7600 -135 933 1.2825 0.8942 1.7600 -135 934 1.3472 0.8919 1.7600 -135 935 1.4097 0.9014 1.7600 -135 936 1.4744 0.9162 1.7600 -135 937 1.5388 0.9315 1.7600 -135 938 1.5981 0.9495 1.7600 -135 939 1.6599 0.9683 1.7600 -135 940 1.7186 0.9828 1.7600 -135 941 1.7759 0.9907 1.7600 -135 942 1.8339 0.9883 1.7600 -135 943 1.8921 0.9760 1.7600 -135 944 1.9546 0.9592 1.7600 -135 945 2.0155 0.9394 1.7600 -135 946 2.0824 0.9228 1.7600 -135 947 2.1450 0.9057 1.7600 -135 948 2.2046 0.9012 1.7600 -135 949 2.2585 0.9030 1.7600 -135 950 2.3120 0.9081 1.7600 -135 951 2.3657 0.9160 1.7600 -135 952 2.4185 0.9265 1.7600 -135 953 2.4692 0.9375 1.7600 -135 954 2.5209 0.9509 1.7600 -135 955 2.5698 0.9686 1.7600 -135 956 2.6185 0.9833 1.7600 -135 957 2.6674 0.9903 1.7600 -135 958 2.7152 0.9939 1.7600 -135 959 2.7743 0.9901 1.7600 -135 960 2.8321 0.9851 1.7600 -135 961 2.8908 0.9758 1.7600 -135 962 2.9611 0.9648 1.7600 -135 963 3.0371 0.9515 1.7600 -135 964 3.1157 0.9359 1.7600 -135 965 3.1910 0.9282 1.7600 -135 966 3.2562 0.9263 1.7600 -135 967 3.3242 0.9259 1.7600 -135 968 3.3928 0.9322 1.7600 -135 969 3.4637 0.9412 1.7600 -135 970 3.5359 0.9530 1.7600 -135 971 3.6186 0.9652 1.7600 -135 972 3.6989 0.9796 1.7600 -135 973 3.7693 0.9881 1.7600 -135 974 3.8330 0.9871 1.7600 -135 975 3.8939 0.9805 1.7600 -135 976 3.9592 0.9705 1.7600 -135 977 4.0303 0.9570 1.7600 -135 978 4.1051 0.9399 1.7600 -135 979 4.1869 0.9198 1.7600 -135 980 4.2758 0.8979 1.7600 -135 981 4.3612 0.8818 1.7600 -135 982 4.4441 0.8765 1.7600 -135 983 4.5209 0.8786 1.7600 -135 984 4.5941 0.8835 1.7600 -135 985 4.6695 0.8959 1.7600 -135 986 4.7420 0.9098 1.7600 -135 987 4.8240 0.9253 1.7600 -135 988 4.9094 0.9408 1.7600 -135 989 4.9858 0.9489 1.7600 -135 990 5.0571 0.9503 1.7600 -135 991 5.1230 0.9436 1.7600 -135 992 5.1898 0.9370 1.7600 -135 993 5.2581 0.9275 1.7600 -135 994 5.3290 0.9177 1.7600 -135 995 5.4077 0.9072 1.7600 -135 996 5.4943 0.8951 1.7600 -135 997 5.5801 0.8841 1.7600 -135 998 5.6636 0.8800 1.7600 -135 999 5.7398 0.8832 1.7600 -135 1000 5.8115 0.8893 1.7600 -135 1001 5.8814 0.8980 1.7600 -135 1002 5.9502 0.9090 1.7600 -136 748 -7.8088 0.7223 1.7600 -136 749 -7.7602 0.7001 1.7600 -136 750 -7.7116 0.6779 1.7600 -136 751 -7.6627 0.6564 1.7600 -136 752 -7.6131 0.6320 1.7600 -136 753 -7.5645 0.6039 1.7600 -136 754 -7.5214 0.5737 1.7600 -136 755 -7.4825 0.5446 1.7600 -136 756 -7.4413 0.5194 1.7600 -136 757 -7.3982 0.4983 1.7600 -136 758 -7.3542 0.4814 1.7600 -136 759 -7.3094 0.4671 1.7600 -136 760 -7.2627 0.4556 1.7600 -136 761 -7.2126 0.4462 1.7600 -136 762 -7.1615 0.4389 1.7600 -136 763 -7.1102 0.4350 1.7600 -136 764 -7.0580 0.4348 1.7600 -136 765 -7.0073 0.4370 1.7600 -136 766 -6.9615 0.4397 1.7600 -136 767 -6.9163 0.4415 1.7600 -136 768 -6.8696 0.4393 1.7600 -136 769 -6.8210 0.4334 1.7600 -136 770 -6.7710 0.4265 1.7600 -136 771 -6.7209 0.4195 1.7600 -136 772 -6.6696 0.4117 1.7600 -136 773 -6.6165 0.4023 1.7600 -136 774 -6.5645 0.3887 1.7600 -136 775 -6.5141 0.3760 1.7600 -136 776 -6.4648 0.3610 1.7600 -136 777 -6.4180 0.3502 1.7600 -136 778 -6.3721 0.3407 1.7600 -136 779 -6.3263 0.3344 1.7600 -136 780 -6.2777 0.3322 1.7600 -136 781 -6.2305 0.3322 1.7600 -136 782 -6.1835 0.3333 1.7600 -136 783 -6.1332 0.3376 1.7600 -136 784 -6.0824 0.3433 1.7600 -136 785 -6.0347 0.3540 1.7600 -136 786 -5.9855 0.3666 1.7600 -136 787 -5.9418 0.3806 1.7600 -136 788 -5.8989 0.3890 1.7600 -136 789 -5.8578 0.3958 1.7600 -136 790 -5.8143 0.3988 1.7600 -136 791 -5.7691 0.4053 1.7600 -136 792 -5.7265 0.4076 1.7600 -136 793 -5.6836 0.4079 1.7600 -136 794 -5.6353 0.4084 1.7600 -136 795 -5.5890 0.4057 1.7600 -136 796 -5.5439 0.3999 1.7600 -136 797 -5.5023 0.3920 1.7600 -136 798 -5.4618 0.3845 1.7600 -136 799 -5.4189 0.3794 1.7600 -136 800 -5.3778 0.3759 1.7600 -136 801 -5.3338 0.3739 1.7600 -136 802 -5.2865 0.3778 1.7600 -136 803 -5.2396 0.3843 1.7600 -136 804 -5.1933 0.3912 1.7600 -136 805 -5.1443 0.3972 1.7600 -136 806 -5.0948 0.4060 1.7600 -136 807 -5.0425 0.4154 1.7600 -136 808 -4.9901 0.4268 1.7600 -136 809 -4.9388 0.4371 1.7600 -136 810 -4.8935 0.4478 1.7600 -136 811 -4.8473 0.4499 1.7600 -136 812 -4.8035 0.4498 1.7600 -136 813 -4.7605 0.4469 1.7600 -136 814 -4.7216 0.4410 1.7600 -136 815 -4.6803 0.4342 1.7600 -136 816 -4.6429 0.4235 1.7600 -136 817 -4.6076 0.4119 1.7600 -136 818 -4.5778 0.3962 1.7600 -136 819 -4.5460 0.3786 1.7600 -136 820 -4.5167 0.3590 1.7600 -136 821 -4.4858 0.3426 1.7600 -136 822 -4.4490 0.3323 1.7600 -136 823 -4.4060 0.3293 1.7600 -136 824 -4.3634 0.3276 1.7600 -136 825 -4.3242 0.3303 1.7600 -136 826 -4.2800 0.3315 1.7600 -136 827 -4.2368 0.3356 1.7600 -136 828 -4.1911 0.3435 1.7600 -136 829 -4.1417 0.3566 1.7600 -136 830 -4.0924 0.3755 1.7600 -136 831 -4.0419 0.3914 1.7600 -136 832 -3.9984 0.3996 1.7600 -136 833 -3.9540 0.4026 1.7600 -136 834 -3.9101 0.4026 1.7600 -136 835 -3.8674 0.4022 1.7600 -136 836 -3.8213 0.3964 1.7600 -136 837 -3.7760 0.3876 1.7600 -136 838 -3.7273 0.3731 1.7600 -136 839 -3.6808 0.3557 1.7600 -136 840 -3.6267 0.3337 1.7600 -136 841 -3.5770 0.3163 1.7600 -136 842 -3.5255 0.3064 1.7600 -136 843 -3.4765 0.2964 1.7600 -136 844 -3.4267 0.2931 1.7600 -136 845 -3.3775 0.2953 1.7600 -136 846 -3.3333 0.3000 1.7600 -136 847 -3.2893 0.3092 1.7600 -136 848 -3.2423 0.3236 1.7600 -136 849 -3.1976 0.3394 1.7600 -136 850 -3.1503 0.3561 1.7600 -136 851 -3.0999 0.3764 1.7600 -136 852 -3.0488 0.3888 1.7600 -136 853 -2.9983 0.3982 1.7600 -136 854 -2.9467 0.4048 1.7600 -136 855 -2.8951 0.4107 1.7600 -136 856 -2.8472 0.4142 1.7600 -136 857 -2.8026 0.4139 1.7600 -136 858 -2.7571 0.4114 1.7600 -136 859 -2.7115 0.4098 1.7600 -136 860 -2.6647 0.4047 1.7600 -136 861 -2.6199 0.4069 1.7600 -136 862 -2.5758 0.4088 1.7600 -136 863 -2.5273 0.4107 1.7600 -136 864 -2.4818 0.4198 1.7600 -136 865 -2.4399 0.4282 1.7600 -136 866 -2.3966 0.4410 1.7600 -136 867 -2.3513 0.4596 1.7600 -136 868 -2.3067 0.4824 1.7600 -136 869 -2.2560 0.5080 1.7600 -136 870 -2.2054 0.5334 1.7600 -136 871 -2.1558 0.5535 1.7600 -136 872 -2.1089 0.5659 1.7600 -136 873 -2.0598 0.5754 1.7600 -136 874 -2.0102 0.5723 1.7600 -136 875 -1.9654 0.5662 1.7600 -136 876 -1.9177 0.5590 1.7600 -136 877 -1.8715 0.5508 1.7600 -136 878 -1.8256 0.5352 1.7600 -136 879 -1.7822 0.5203 1.7600 -136 880 -1.7408 0.5068 1.7600 -136 881 -1.6996 0.4964 1.7600 -136 882 -1.6543 0.4866 1.7600 -136 883 -1.6067 0.4826 1.7600 -136 884 -1.5602 0.4817 1.7600 -136 885 -1.5114 0.4826 1.7600 -136 886 -1.4589 0.4877 1.7600 -136 887 -1.4029 0.4991 1.7600 -136 888 -1.3446 0.5176 1.7600 -136 889 -1.2848 0.5342 1.7600 -136 890 -1.2321 0.5418 1.7600 -136 891 -1.1806 0.5424 1.7600 -136 892 -1.1303 0.5393 1.7600 -136 893 -1.0799 0.5333 1.7600 -136 894 -1.0295 0.5260 1.7600 -136 895 -0.9758 0.5154 1.7600 -136 896 -0.9167 0.5031 1.7600 -136 897 -0.8615 0.4879 1.7600 -136 898 -0.8030 0.4698 1.7600 -136 899 -0.7520 0.4523 1.7600 -136 900 -0.7017 0.4436 1.7600 -136 901 -0.6445 0.4404 1.7600 -136 902 -0.5789 0.4420 1.7600 -136 903 -0.5069 0.4442 1.7600 -136 904 -0.4345 0.4505 1.7600 -136 905 -0.3609 0.4583 1.7600 -136 906 -0.2842 0.4706 1.7600 -136 907 -0.2052 0.4854 1.7600 -136 908 -0.1295 0.4953 1.7600 -136 909 -0.0604 0.4972 1.7600 -136 910 0.0083 0.4959 1.7600 -136 911 0.0783 0.4946 1.7600 -136 912 0.1483 0.4934 1.7600 -136 913 0.2139 0.4900 1.7600 -136 914 0.2804 0.4830 1.7600 -136 915 0.3423 0.4714 1.7600 -136 916 0.4054 0.4550 1.7600 -136 917 0.4755 0.4383 1.7600 -136 918 0.5406 0.4253 1.7600 -136 919 0.6037 0.4192 1.7600 -136 920 0.6645 0.4168 1.7600 -136 921 0.7238 0.4159 1.7600 -136 922 0.7836 0.4167 1.7600 -136 923 0.8429 0.4202 1.7600 -136 924 0.9002 0.4270 1.7600 -136 925 0.9633 0.4342 1.7600 -136 926 1.0252 0.4417 1.7600 -136 927 1.0865 0.4400 1.7600 -136 928 1.1422 0.4273 1.7600 -136 929 1.1951 0.4063 1.7600 -136 930 1.2508 0.3837 1.7600 -136 931 1.3079 0.3594 1.7600 -136 932 1.3644 0.3360 1.7600 -136 933 1.4279 0.3088 1.7600 -136 934 1.4888 0.2821 1.7600 -136 935 1.5435 0.2638 1.7600 -136 936 1.5944 0.2594 1.7600 -136 937 1.6483 0.2614 1.7600 -136 938 1.7014 0.2668 1.7600 -136 939 1.7510 0.2747 1.7600 -136 940 1.8006 0.2855 1.7600 -136 941 1.8521 0.2985 1.7600 -136 942 1.9062 0.3140 1.7600 -136 943 1.9697 0.3311 1.7600 -136 944 2.0235 0.3475 1.7600 -136 945 2.0729 0.3501 1.7600 -136 946 2.1206 0.3450 1.7600 -136 947 2.1689 0.3351 1.7600 -136 948 2.2205 0.3293 1.7600 -136 949 2.2739 0.3207 1.7600 -136 950 2.3293 0.3121 1.7600 -136 951 2.3887 0.3008 1.7600 -136 952 2.4545 0.2840 1.7600 -136 953 2.5146 0.2690 1.7600 -136 954 2.5736 0.2586 1.7600 -136 955 2.6297 0.2603 1.7600 -136 956 2.6876 0.2687 1.7600 -136 957 2.7448 0.2816 1.7600 -136 958 2.8017 0.2961 1.7600 -136 959 2.8539 0.3085 1.7600 -136 960 2.9088 0.3225 1.7600 -136 961 2.9708 0.3388 1.7600 -136 962 3.0256 0.3519 1.7600 -136 963 3.0762 0.3585 1.7600 -136 964 3.1260 0.3570 1.7600 -136 965 3.1766 0.3493 1.7600 -136 966 3.2259 0.3408 1.7600 -136 967 3.2774 0.3287 1.7600 -136 968 3.3229 0.3216 1.7600 -136 969 3.3748 0.3116 1.7600 -136 970 3.4251 0.2986 1.7600 -136 971 3.4751 0.2912 1.7600 -136 972 3.5270 0.2858 1.7600 -136 973 3.5812 0.2851 1.7600 -136 974 3.6324 0.2910 1.7600 -136 975 3.6861 0.2958 1.7600 -136 976 3.7395 0.3026 1.7600 -136 977 3.7979 0.3150 1.7600 -136 978 3.8625 0.3294 1.7600 -136 979 3.9343 0.3456 1.7600 -136 980 3.9954 0.3556 1.7600 -136 981 4.0515 0.3569 1.7600 -136 982 4.1080 0.3558 1.7600 -136 983 4.1644 0.3484 1.7600 -136 984 4.2177 0.3432 1.7600 -136 985 4.2731 0.3322 1.7600 -136 986 4.3242 0.3196 1.7600 -136 987 4.3817 0.3042 1.7600 -136 988 4.4411 0.2848 1.7600 -136 989 4.5014 0.2634 1.7600 -136 990 4.5637 0.2450 1.7600 -136 991 4.6229 0.2367 1.7600 -136 992 4.6837 0.2336 1.7600 -136 993 4.7416 0.2348 1.7600 -136 994 4.8005 0.2348 1.7600 -136 995 4.8548 0.2351 1.7600 -136 996 4.9117 0.2370 1.7600 -136 997 4.9734 0.2368 1.7600 -136 998 5.0442 0.2369 1.7600 -136 999 5.1122 0.2384 1.7600 -136 1000 5.1828 0.2358 1.7600 -136 1001 5.2499 0.2275 1.7600 -136 1002 5.3107 0.2137 1.7600 -136 1003 5.3666 0.1980 1.7600 -136 1004 5.4244 0.1808 1.7600 -136 1005 5.4831 0.1605 1.7600 -136 1006 5.5450 0.1379 1.7600 -136 1007 5.6099 0.1119 1.7600 -136 1008 5.6773 0.0865 1.7600 -136 1009 5.7447 0.0660 1.7600 -136 1010 5.8109 0.0550 1.7600 -136 1011 5.8751 0.0500 1.7600 -136 1012 5.9368 0.0467 1.7600 -137 760 -7.7676 1.7913 1.7600 -137 761 -7.6852 1.7890 1.7600 -137 762 -7.6018 1.7891 1.7600 -137 763 -7.5226 1.7936 1.7600 -137 764 -7.4496 1.8019 1.7600 -137 765 -7.3830 1.8105 1.7600 -137 766 -7.3184 1.8112 1.7600 -137 767 -7.2555 1.8062 1.7600 -137 768 -7.1934 1.7978 1.7600 -137 769 -7.1298 1.7846 1.7600 -137 770 -7.0636 1.7668 1.7600 -137 771 -6.9956 1.7449 1.7600 -137 772 -6.9268 1.7203 1.7600 -137 773 -6.8585 1.6955 1.7600 -137 774 -6.7917 1.6722 1.7600 -137 775 -6.7260 1.6494 1.7600 -137 776 -6.6589 1.6296 1.7600 -137 777 -6.5984 1.6181 1.7600 -137 778 -6.5394 1.6097 1.7600 -137 779 -6.4822 1.6030 1.7600 -137 780 -6.4279 1.5990 1.7600 -137 781 -6.3726 1.5999 1.7600 -137 782 -6.3192 1.6027 1.7600 -137 783 -6.2659 1.6107 1.7600 -137 784 -6.2157 1.6202 1.7600 -137 785 -6.1665 1.6285 1.7600 -137 786 -6.1177 1.6327 1.7600 -137 787 -6.0742 1.6365 1.7600 -137 788 -6.0318 1.6366 1.7600 -137 789 -5.9932 1.6328 1.7600 -137 790 -5.9537 1.6273 1.7600 -137 791 -5.9167 1.6171 1.7600 -137 792 -5.8742 1.6043 1.7600 -137 793 -5.8361 1.5870 1.7600 -137 794 -5.7944 1.5671 1.7600 -137 795 -5.7564 1.5480 1.7600 -137 796 -5.7130 1.5272 1.7600 -137 797 -5.6672 1.5049 1.7600 -137 798 -5.6224 1.4888 1.7600 -137 799 -5.5772 1.4754 1.7600 -137 800 -5.5334 1.4652 1.7600 -137 801 -5.4883 1.4577 1.7600 -137 802 -5.4435 1.4523 1.7600 -137 803 -5.4005 1.4528 1.7600 -137 804 -5.3573 1.4532 1.7600 -137 805 -5.3141 1.4579 1.7600 -137 806 -5.2709 1.4645 1.7600 -137 807 -5.2253 1.4749 1.7600 -137 808 -5.1818 1.4842 1.7600 -137 809 -5.1384 1.4903 1.7600 -137 810 -5.0945 1.4931 1.7600 -137 811 -5.0537 1.4924 1.7600 -137 812 -5.0159 1.4883 1.7600 -137 813 -4.9809 1.4803 1.7600 -137 814 -4.9436 1.4691 1.7600 -137 815 -4.9058 1.4532 1.7600 -137 816 -4.8661 1.4340 1.7600 -137 817 -4.8264 1.4056 1.7600 -137 818 -4.7853 1.3730 1.7600 -137 819 -4.7400 1.3410 1.7600 -137 820 -4.6926 1.3114 1.7600 -137 821 -4.6465 1.2873 1.7600 -137 822 -4.5992 1.2696 1.7600 -137 823 -4.5497 1.2577 1.7600 -137 824 -4.5047 1.2522 1.7600 -137 825 -4.4596 1.2516 1.7600 -137 826 -4.4107 1.2558 1.7600 -137 827 -4.3614 1.2643 1.7600 -137 828 -4.3090 1.2765 1.7600 -137 829 -4.2543 1.2888 1.7600 -137 830 -4.1988 1.3016 1.7600 -137 831 -4.1483 1.3124 1.7600 -137 832 -4.0957 1.3161 1.7600 -137 833 -4.0452 1.3163 1.7600 -137 834 -3.9936 1.3145 1.7600 -137 835 -3.9424 1.3099 1.7600 -137 836 -3.8893 1.3036 1.7600 -137 837 -3.8368 1.2965 1.7600 -137 838 -3.7803 1.2868 1.7600 -137 839 -3.7218 1.2736 1.7600 -137 840 -3.6624 1.2617 1.7600 -137 841 -3.6079 1.2553 1.7600 -137 842 -3.5491 1.2514 1.7600 -137 843 -3.4967 1.2514 1.7600 -137 844 -3.4433 1.2550 1.7600 -137 845 -3.3955 1.2591 1.7600 -137 846 -3.3481 1.2643 1.7600 -137 847 -3.3014 1.2696 1.7600 -137 848 -3.2592 1.2771 1.7600 -137 849 -3.2191 1.2847 1.7600 -137 850 -3.1808 1.2937 1.7600 -137 851 -3.1421 1.3009 1.7600 -137 852 -3.0989 1.3043 1.7600 -137 853 -3.0489 1.3061 1.7600 -137 854 -2.9995 1.3073 1.7600 -137 855 -2.9485 1.3034 1.7600 -137 856 -2.8940 1.2978 1.7600 -137 857 -2.8347 1.2908 1.7600 -137 858 -2.7705 1.2789 1.7600 -137 859 -2.7026 1.2669 1.7600 -137 860 -2.6401 1.2595 1.7600 -137 861 -2.5791 1.2555 1.7600 -137 862 -2.5198 1.2550 1.7600 -137 863 -2.4642 1.2587 1.7600 -137 864 -2.4130 1.2623 1.7600 -137 865 -2.3619 1.2701 1.7600 -137 866 -2.3094 1.2801 1.7600 -137 867 -2.2549 1.2919 1.7600 -137 868 -2.1940 1.3060 1.7600 -137 869 -2.1289 1.3206 1.7600 -137 870 -2.0684 1.3324 1.7600 -137 871 -2.0093 1.3403 1.7600 -137 872 -1.9513 1.3444 1.7600 -137 873 -1.8922 1.3448 1.7600 -137 874 -1.8339 1.3441 1.7600 -137 875 -1.7785 1.3430 1.7600 -137 876 -1.7198 1.3389 1.7600 -137 877 -1.6578 1.3347 1.7600 -137 878 -1.5896 1.3289 1.7600 -137 879 -1.5212 1.3234 1.7600 -137 880 -1.4531 1.3216 1.7600 -137 881 -1.3857 1.3226 1.7600 -137 882 -1.3195 1.3253 1.7600 -137 883 -1.2598 1.3281 1.7600 -137 884 -1.2024 1.3297 1.7600 -137 885 -1.1443 1.3302 1.7600 -137 886 -1.0853 1.3334 1.7600 -137 887 -1.0211 1.3354 1.7600 -137 888 -0.9549 1.3419 1.7600 -137 889 -0.8912 1.3470 1.7600 -137 890 -0.8284 1.3474 1.7600 -137 891 -0.7669 1.3443 1.7600 -137 892 -0.7065 1.3379 1.7600 -137 893 -0.6466 1.3308 1.7600 -137 894 -0.5848 1.3240 1.7600 -137 895 -0.5217 1.3160 1.7600 -137 896 -0.4570 1.3060 1.7600 -137 897 -0.3904 1.2938 1.7600 -137 898 -0.3267 1.2831 1.7600 -137 899 -0.2630 1.2763 1.7600 -137 900 -0.1992 1.2727 1.7600 -137 901 -0.1347 1.2729 1.7600 -137 902 -0.0744 1.2744 1.7600 -137 903 -0.0113 1.2768 1.7600 -137 904 0.0515 1.2790 1.7600 -137 905 0.1179 1.2828 1.7600 -137 906 0.1839 1.2882 1.7600 -137 907 0.2516 1.2919 1.7600 -137 908 0.3137 1.2934 1.7600 -137 909 0.3707 1.2902 1.7600 -137 910 0.4275 1.2847 1.7600 -137 911 0.4831 1.2759 1.7600 -137 912 0.5409 1.2653 1.7600 -137 913 0.6005 1.2557 1.7600 -137 914 0.6615 1.2452 1.7600 -137 915 0.7248 1.2346 1.7600 -137 916 0.7896 1.2215 1.7600 -137 917 0.8565 1.2096 1.7600 -137 918 0.9219 1.2003 1.7600 -137 919 0.9880 1.1944 1.7600 -137 920 1.0528 1.1944 1.7600 -137 921 1.1135 1.1935 1.7600 -137 922 1.1714 1.1952 1.7600 -137 923 1.2328 1.1962 1.7600 -137 924 1.2932 1.2006 1.7600 -137 925 1.3582 1.2076 1.7600 -137 926 1.4271 1.2148 1.7600 -137 927 1.4971 1.2241 1.7600 -137 928 1.5602 1.2309 1.7600 -137 929 1.6224 1.2329 1.7600 -137 930 1.6811 1.2297 1.7600 -137 931 1.7398 1.2238 1.7600 -137 932 1.7970 1.2172 1.7600 -137 933 1.8566 1.2122 1.7600 -137 934 1.9174 1.2030 1.7600 -137 935 1.9791 1.1915 1.7600 -137 936 2.0468 1.1782 1.7600 -137 937 2.1121 1.1654 1.7600 -137 938 2.1759 1.1561 1.7600 -137 939 2.2422 1.1503 1.7600 -137 940 2.3029 1.1475 1.7600 -137 941 2.3627 1.1455 1.7600 -137 942 2.4211 1.1453 1.7600 -137 943 2.4796 1.1443 1.7600 -137 944 2.5425 1.1466 1.7600 -137 945 2.6097 1.1506 1.7600 -137 946 2.6824 1.1555 1.7600 -137 947 2.7551 1.1605 1.7600 -137 948 2.8260 1.1625 1.7600 -137 949 2.8947 1.1599 1.7600 -137 950 2.9629 1.1564 1.7600 -137 951 3.0299 1.1521 1.7600 -137 952 3.0962 1.1471 1.7600 -137 953 3.1632 1.1436 1.7600 -137 954 3.2316 1.1381 1.7600 -137 955 3.3088 1.1302 1.7600 -137 956 3.3896 1.1257 1.7600 -137 957 3.4703 1.1210 1.7600 -137 958 3.5495 1.1193 1.7600 -137 959 3.6312 1.1214 1.7600 -137 960 3.7111 1.1251 1.7600 -137 961 3.7854 1.1298 1.7600 -137 962 3.8599 1.1342 1.7600 -137 963 3.9366 1.1400 1.7600 -137 964 4.0179 1.1482 1.7600 -137 965 4.1092 1.1564 1.7600 -137 966 4.1951 1.1633 1.7600 -137 967 4.2823 1.1661 1.7600 -137 968 4.3669 1.1644 1.7600 -137 969 4.4468 1.1579 1.7600 -137 970 4.5210 1.1495 1.7600 -137 971 4.5970 1.1417 1.7600 -137 972 4.6792 1.1342 1.7600 -137 973 4.7731 1.1267 1.7600 -137 974 4.8729 1.1211 1.7600 -137 975 4.9697 1.1204 1.7600 -137 976 5.0626 1.1279 1.7600 -137 977 5.1492 1.1401 1.7600 -137 978 5.2292 1.1515 1.7600 -137 979 5.3029 1.1634 1.7600 -137 980 5.3790 1.1754 1.7600 -137 981 5.4658 1.1878 1.7600 -137 982 5.5636 1.2006 1.7600 -137 983 5.6579 1.2085 1.7600 -137 984 5.7497 1.2095 1.7600 -137 985 5.8339 1.2056 1.7600 -137 986 5.9082 1.2012 1.7600 -138 753 -7.8123 2.2299 1.7600 -138 754 -7.7666 2.2167 1.7600 -138 755 -7.7222 2.2079 1.7600 -138 756 -7.6757 2.2036 1.7600 -138 757 -7.6263 2.2036 1.7600 -138 758 -7.5718 2.2053 1.7600 -138 759 -7.5131 2.2083 1.7600 -138 760 -7.4504 2.2134 1.7600 -138 761 -7.3859 2.2207 1.7600 -138 762 -7.3249 2.2323 1.7600 -138 763 -7.2681 2.2458 1.7600 -138 764 -7.2123 2.2545 1.7600 -138 765 -7.1556 2.2570 1.7600 -138 766 -7.0961 2.2532 1.7600 -138 767 -7.0336 2.2430 1.7600 -138 768 -6.9675 2.2268 1.7600 -138 769 -6.9009 2.2050 1.7600 -138 770 -6.8358 2.1780 1.7600 -138 771 -6.7758 2.1498 1.7600 -138 772 -6.7149 2.1227 1.7600 -138 773 -6.6546 2.1003 1.7600 -138 774 -6.5938 2.0842 1.7600 -138 775 -6.5316 2.0715 1.7600 -138 776 -6.4657 2.0608 1.7600 -138 777 -6.3966 2.0538 1.7600 -138 778 -6.3250 2.0520 1.7600 -138 779 -6.2600 2.0562 1.7600 -138 780 -6.2025 2.0661 1.7600 -138 781 -6.1516 2.0712 1.7600 -138 782 -6.1062 2.0659 1.7600 -138 783 -6.0612 2.0589 1.7600 -138 784 -6.0098 2.0481 1.7600 -138 785 -5.9543 2.0347 1.7600 -138 786 -5.8980 2.0171 1.7600 -138 787 -5.8440 1.9952 1.7600 -138 788 -5.7943 1.9709 1.7600 -138 789 -5.7430 1.9497 1.7600 -138 790 -5.6847 1.9395 1.7600 -138 791 -5.6366 1.9369 1.7600 -138 792 -5.5740 1.9350 1.7600 -138 793 -5.5260 1.9294 1.7600 -138 794 -5.4664 1.9272 1.7600 -138 795 -5.4080 1.9322 1.7600 -138 796 -5.3496 1.9412 1.7600 -138 797 -5.2980 1.9507 1.7600 -138 798 -5.2467 1.9600 1.7600 -138 799 -5.1950 1.9666 1.7600 -138 800 -5.1471 1.9675 1.7600 -138 801 -5.1031 1.9642 1.7600 -138 802 -5.0575 1.9575 1.7600 -138 803 -5.0096 1.9484 1.7600 -138 804 -4.9631 1.9334 1.7600 -138 805 -4.9163 1.9119 1.7600 -138 806 -4.8782 1.8815 1.7600 -138 807 -4.8438 1.8448 1.7600 -138 808 -4.8038 1.8121 1.7600 -138 809 -4.7630 1.7838 1.7600 -138 810 -4.7183 1.7601 1.7600 -138 811 -4.6717 1.7410 1.7600 -138 812 -4.6228 1.7243 1.7600 -138 813 -4.5739 1.7098 1.7600 -138 814 -4.5228 1.6991 1.7600 -138 815 -4.4729 1.6923 1.7600 -138 816 -4.4238 1.6892 1.7600 -138 817 -4.3729 1.6882 1.7600 -138 818 -4.3253 1.6818 1.7600 -138 819 -4.2794 1.6699 1.7600 -138 820 -4.2314 1.6535 1.7600 -138 821 -4.1825 1.6376 1.7600 -138 822 -4.1329 1.6164 1.7600 -138 823 -4.0825 1.5929 1.7600 -138 824 -4.0297 1.5671 1.7600 -138 825 -3.9763 1.5386 1.7600 -138 826 -3.9220 1.5133 1.7600 -138 827 -3.8688 1.4905 1.7600 -138 828 -3.8185 1.4725 1.7600 -138 829 -3.7657 1.4602 1.7600 -138 830 -3.7170 1.4525 1.7600 -138 831 -3.6642 1.4513 1.7600 -138 832 -3.6164 1.4491 1.7600 -138 833 -3.5669 1.4549 1.7600 -138 834 -3.5202 1.4674 1.7600 -138 835 -3.4729 1.4849 1.7600 -138 836 -3.4231 1.4993 1.7600 -138 837 -3.3756 1.5094 1.7600 -138 838 -3.3269 1.5108 1.7600 -138 839 -3.2779 1.5077 1.7600 -138 840 -3.2245 1.5022 1.7600 -138 841 -3.1697 1.4951 1.7600 -138 842 -3.1150 1.4821 1.7600 -138 843 -3.0559 1.4631 1.7600 -138 844 -2.9839 1.4461 1.7600 -138 845 -2.9005 1.4343 1.7600 -138 846 -2.8111 1.4220 1.7600 -138 847 -2.7321 1.4147 1.7600 -138 848 -2.6614 1.4131 1.7600 -138 849 -2.5908 1.4145 1.7600 -138 850 -2.5247 1.4179 1.7600 -138 851 -2.4579 1.4243 1.7600 -138 852 -2.3868 1.4447 1.7600 -138 853 -2.3153 1.4632 1.7600 -138 854 -2.2497 1.4796 1.7600 -138 855 -2.1872 1.4876 1.7600 -138 856 -2.1273 1.4908 1.7600 -138 857 -2.0707 1.4908 1.7600 -138 858 -2.0151 1.4893 1.7600 -138 859 -1.9583 1.4870 1.7600 -138 860 -1.8978 1.4820 1.7600 -138 861 -1.8357 1.4704 1.7600 -138 862 -1.7697 1.4556 1.7600 -138 863 -1.7047 1.4434 1.7600 -138 864 -1.6343 1.4374 1.7600 -138 865 -1.5713 1.4406 1.7600 -138 866 -1.5093 1.4454 1.7600 -138 867 -1.4438 1.4514 1.7600 -138 868 -1.3768 1.4608 1.7600 -138 869 -1.3109 1.4730 1.7600 -138 870 -1.2445 1.4883 1.7600 -138 871 -1.1806 1.5057 1.7600 -138 872 -1.1218 1.5193 1.7600 -138 873 -1.0660 1.5258 1.7600 -138 874 -1.0129 1.5257 1.7600 -138 875 -0.9597 1.5211 1.7600 -138 876 -0.9040 1.5134 1.7600 -138 877 -0.8468 1.5004 1.7600 -138 878 -0.7887 1.4817 1.7600 -138 879 -0.7267 1.4609 1.7600 -138 880 -0.6657 1.4439 1.7600 -138 881 -0.6034 1.4319 1.7600 -138 882 -0.5416 1.4254 1.7600 -138 883 -0.4769 1.4232 1.7600 -138 884 -0.4072 1.4224 1.7600 -138 885 -0.3367 1.4232 1.7600 -138 886 -0.2659 1.4238 1.7600 -138 887 -0.1971 1.4412 1.7600 -138 888 -0.1272 1.4546 1.7600 -138 889 -0.0651 1.4706 1.7600 -138 890 -0.0049 1.4714 1.7600 -138 891 0.0576 1.4677 1.7600 -138 892 0.1212 1.4596 1.7600 -138 893 0.1816 1.4504 1.7600 -138 894 0.2395 1.4420 1.7600 -138 895 0.2964 1.4276 1.7600 -138 896 0.3537 1.4140 1.7600 -138 897 0.4085 1.4056 1.7600 -138 898 0.4617 1.3974 1.7600 -138 899 0.5154 1.3940 1.7600 -138 900 0.5696 1.3998 1.7600 -138 901 0.6261 1.4061 1.7600 -138 902 0.6885 1.4104 1.7600 -138 903 0.7504 1.4197 1.7600 -138 904 0.8127 1.4339 1.7600 -138 905 0.8737 1.4516 1.7600 -138 906 0.9240 1.4698 1.7600 -138 907 0.9798 1.4782 1.7600 -138 908 1.0344 1.4829 1.7600 -138 909 1.0890 1.4818 1.7600 -138 910 1.1470 1.4721 1.7600 -138 911 1.2046 1.4617 1.7600 -138 912 1.2643 1.4483 1.7600 -138 913 1.3252 1.4321 1.7600 -138 914 1.3862 1.4134 1.7600 -138 915 1.4385 1.3970 1.7600 -138 916 1.4873 1.3873 1.7600 -138 917 1.5371 1.3861 1.7600 -138 918 1.5936 1.3877 1.7600 -138 919 1.6541 1.3899 1.7600 -138 920 1.7130 1.3970 1.7600 -138 921 1.7695 1.4058 1.7600 -138 922 1.8229 1.4204 1.7600 -138 923 1.8758 1.4334 1.7600 -138 924 1.9285 1.4449 1.7600 -138 925 1.9807 1.4513 1.7600 -138 926 2.0314 1.4515 1.7600 -138 927 2.0783 1.4507 1.7600 -138 928 2.1275 1.4468 1.7600 -138 929 2.1717 1.4441 1.7600 -138 930 2.2201 1.4358 1.7600 -138 931 2.2727 1.4240 1.7600 -138 932 2.3245 1.4100 1.7600 -138 933 2.3724 1.3980 1.7600 -138 934 2.4255 1.3960 1.7600 -138 935 2.4795 1.3981 1.7600 -138 936 2.5394 1.4025 1.7600 -138 937 2.6019 1.4129 1.7600 -138 938 2.6659 1.4239 1.7600 -138 939 2.7296 1.4388 1.7600 -138 940 2.7939 1.4595 1.7600 -138 941 2.8570 1.4788 1.7600 -138 942 2.9208 1.4933 1.7600 -138 943 2.9840 1.5009 1.7600 -138 944 3.0457 1.5022 1.7600 -138 945 3.1096 1.4999 1.7600 -138 946 3.1745 1.4949 1.7600 -138 947 3.2449 1.4857 1.7600 -138 948 3.3250 1.4710 1.7600 -138 949 3.4030 1.4564 1.7600 -138 950 3.4769 1.4466 1.7600 -138 951 3.5443 1.4423 1.7600 -138 952 3.6103 1.4442 1.7600 -138 953 3.6801 1.4489 1.7600 -138 954 3.7475 1.4577 1.7600 -138 955 3.8073 1.4709 1.7600 -138 956 3.8584 1.4867 1.7600 -138 957 3.9107 1.5065 1.7600 -138 958 3.9644 1.5287 1.7600 -138 959 4.0280 1.5420 1.7600 -138 960 4.0908 1.5489 1.7600 -138 961 4.1566 1.5509 1.7600 -138 962 4.2220 1.5516 1.7600 -138 963 4.2879 1.5501 1.7600 -138 964 4.3602 1.5474 1.7600 -138 965 4.4349 1.5463 1.7600 -138 966 4.5093 1.5431 1.7600 -138 967 4.5810 1.5508 1.7600 -138 968 4.6537 1.5643 1.7600 -138 969 4.7188 1.5792 1.7600 -138 970 4.7849 1.5945 1.7600 -138 971 4.8491 1.6113 1.7600 -138 972 4.9116 1.6329 1.7600 -138 973 4.9738 1.6574 1.7600 -138 974 5.0418 1.6849 1.7600 -138 975 5.1120 1.7081 1.7600 -138 976 5.1851 1.7219 1.7600 -138 977 5.2558 1.7292 1.7600 -138 978 5.3238 1.7314 1.7600 -138 979 5.3903 1.7361 1.7600 -138 980 5.4623 1.7356 1.7600 -138 981 5.5395 1.7323 1.7600 -138 982 5.6203 1.7298 1.7600 -138 983 5.7004 1.7336 1.7600 -138 984 5.7759 1.7488 1.7600 -138 985 5.8455 1.7679 1.7600 -138 986 5.9127 1.7861 1.7600 -139 736 -7.8028 2.0115 1.7600 -139 737 -7.7624 2.0132 1.7600 -139 738 -7.7194 2.0135 1.7600 -139 739 -7.6766 2.0116 1.7600 -139 740 -7.6349 2.0058 1.7600 -139 741 -7.5897 1.9959 1.7600 -139 742 -7.5408 1.9820 1.7600 -139 743 -7.4890 1.9653 1.7600 -139 744 -7.4337 1.9460 1.7600 -139 745 -7.3782 1.9236 1.7600 -139 746 -7.3253 1.8980 1.7600 -139 747 -7.2755 1.8733 1.7600 -139 748 -7.2255 1.8516 1.7600 -139 749 -7.1749 1.8320 1.7600 -139 750 -7.1238 1.8126 1.7600 -139 751 -7.0710 1.7957 1.7600 -139 752 -7.0136 1.7798 1.7600 -139 753 -6.9514 1.7649 1.7600 -139 754 -6.8871 1.7518 1.7600 -139 755 -6.8244 1.7413 1.7600 -139 756 -6.7650 1.7326 1.7600 -139 757 -6.7090 1.7244 1.7600 -139 758 -6.6535 1.7147 1.7600 -139 759 -6.5976 1.7018 1.7600 -139 760 -6.5417 1.6856 1.7600 -139 761 -6.4840 1.6663 1.7600 -139 762 -6.4261 1.6458 1.7600 -139 763 -6.3655 1.6254 1.7600 -139 764 -6.3040 1.6039 1.7600 -139 765 -6.2449 1.5797 1.7600 -139 766 -6.1911 1.5554 1.7600 -139 767 -6.1407 1.5323 1.7600 -139 768 -6.0900 1.5129 1.7600 -139 769 -6.0385 1.4957 1.7600 -139 770 -5.9879 1.4803 1.7600 -139 771 -5.9392 1.4654 1.7600 -139 772 -5.8902 1.4541 1.7600 -139 773 -5.8403 1.4470 1.7600 -139 774 -5.7907 1.4411 1.7600 -139 775 -5.7420 1.4368 1.7600 -139 776 -5.6940 1.4351 1.7600 -139 777 -5.6449 1.4343 1.7600 -139 778 -5.5949 1.4322 1.7600 -139 779 -5.5431 1.4285 1.7600 -139 780 -5.4934 1.4229 1.7600 -139 781 -5.4460 1.4187 1.7600 -139 782 -5.3980 1.4160 1.7600 -139 783 -5.3525 1.4110 1.7600 -139 784 -5.3035 1.4032 1.7600 -139 785 -5.2591 1.3924 1.7600 -139 786 -5.2115 1.3754 1.7600 -139 787 -5.1615 1.3565 1.7600 -139 788 -5.1116 1.3324 1.7600 -139 789 -5.0571 1.3095 1.7600 -139 790 -5.0080 1.2907 1.7600 -139 791 -4.9593 1.2742 1.7600 -139 792 -4.9053 1.2613 1.7600 -139 793 -4.8563 1.2499 1.7600 -139 794 -4.8063 1.2426 1.7600 -139 795 -4.7570 1.2340 1.7600 -139 796 -4.7072 1.2252 1.7600 -139 797 -4.6583 1.2198 1.7600 -139 798 -4.6117 1.2146 1.7600 -139 799 -4.5701 1.2120 1.7600 -139 800 -4.5252 1.2092 1.7600 -139 801 -4.4805 1.2041 1.7600 -139 802 -4.4341 1.1978 1.7600 -139 803 -4.3883 1.1881 1.7600 -139 804 -4.3416 1.1746 1.7600 -139 805 -4.2919 1.1576 1.7600 -139 806 -4.2432 1.1395 1.7600 -139 807 -4.1918 1.1152 1.7600 -139 808 -4.1408 1.0897 1.7600 -139 809 -4.0910 1.0658 1.7600 -139 810 -4.0383 1.0429 1.7600 -139 811 -3.9863 1.0224 1.7600 -139 812 -3.9326 1.0042 1.7600 -139 813 -3.8779 0.9901 1.7600 -139 814 -3.8256 0.9772 1.7600 -139 815 -3.7711 0.9627 1.7600 -139 816 -3.7180 0.9472 1.7600 -139 817 -3.6630 0.9354 1.7600 -139 818 -3.6074 0.9270 1.7600 -139 819 -3.5499 0.9221 1.7600 -139 820 -3.4929 0.9190 1.7600 -139 821 -3.4347 0.9114 1.7600 -139 822 -3.3716 0.9028 1.7600 -139 823 -3.3052 0.8919 1.7600 -139 824 -3.2426 0.8839 1.7600 -139 825 -3.1826 0.8786 1.7600 -139 826 -3.1265 0.8735 1.7600 -139 827 -3.0673 0.8665 1.7600 -139 828 -3.0118 0.8556 1.7600 -139 829 -2.9544 0.8433 1.7600 -139 830 -2.8942 0.8251 1.7600 -139 831 -2.8333 0.8189 1.7600 -139 832 -2.7703 0.8117 1.7600 -139 833 -2.7039 0.8112 1.7600 -139 834 -2.6429 0.8120 1.7600 -139 835 -2.5848 0.8119 1.7600 -139 836 -2.5277 0.8102 1.7600 -139 837 -2.4701 0.8196 1.7600 -139 838 -2.4128 0.8270 1.7600 -139 839 -2.3443 0.8520 1.7600 -139 840 -2.2909 0.8555 1.7600 -139 841 -2.2338 0.8551 1.7600 -139 842 -2.1689 0.8591 1.7600 -139 843 -2.1063 0.8535 1.7600 -139 844 -2.0457 0.8509 1.7600 -139 845 -1.9806 0.8495 1.7600 -139 846 -1.9148 0.8399 1.7600 -139 847 -1.8403 0.8328 1.7600 -139 848 -1.7681 0.8170 1.7600 -139 849 -1.6928 0.8057 1.7600 -139 850 -1.6221 0.7957 1.7600 -139 851 -1.5489 0.7883 1.7600 -139 852 -1.4734 0.7848 1.7600 -139 853 -1.4040 0.7765 1.7600 -139 854 -1.3291 0.7724 1.7600 -139 855 -1.2552 0.7703 1.7600 -139 856 -1.1849 0.7732 1.7600 -139 857 -1.1151 0.7774 1.7600 -139 858 -1.0489 0.7868 1.7600 -139 859 -0.9859 0.7925 1.7600 -139 860 -0.9223 0.7973 1.7600 -139 861 -0.8583 0.7984 1.7600 -139 862 -0.7985 0.7970 1.7600 -139 863 -0.7389 0.7949 1.7600 -139 864 -0.6799 0.7905 1.7600 -139 865 -0.6228 0.7891 1.7600 -139 866 -0.5644 0.7856 1.7600 -139 867 -0.5064 0.7774 1.7600 -139 868 -0.4498 0.7723 1.7600 -139 869 -0.3877 0.7690 1.7600 -139 870 -0.3232 0.7679 1.7600 -139 871 -0.2581 0.7702 1.7600 -139 872 -0.1985 0.7755 1.7600 -139 873 -0.1419 0.7823 1.7600 -139 874 -0.0882 0.7908 1.7600 -139 875 -0.0341 0.8003 1.7600 -139 876 0.0197 0.8144 1.7600 -139 877 0.0747 0.8213 1.7600 -139 878 0.1279 0.8317 1.7600 -139 879 0.1838 0.8397 1.7600 -139 880 0.2417 0.8456 1.7600 -139 881 0.3026 0.8529 1.7600 -139 882 0.3602 0.8542 1.7600 -139 883 0.4170 0.8571 1.7600 -139 884 0.4759 0.8543 1.7600 -139 885 0.5350 0.8506 1.7600 -139 886 0.5949 0.8447 1.7600 -139 887 0.6565 0.8387 1.7600 -139 888 0.7141 0.8263 1.7600 -139 889 0.7733 0.8217 1.7600 -139 890 0.8332 0.8186 1.7600 -139 891 0.8940 0.8167 1.7600 -139 892 0.9529 0.8121 1.7600 -139 893 1.0118 0.8084 1.7600 -139 894 1.0716 0.8060 1.7600 -139 895 1.1268 0.8057 1.7600 -139 896 1.1866 0.8100 1.7600 -139 897 1.2440 0.8163 1.7600 -139 898 1.3035 0.8205 1.7600 -139 899 1.3623 0.8327 1.7600 -139 900 1.4238 0.8497 1.7600 -139 901 1.4858 0.8630 1.7600 -139 902 1.5503 0.8710 1.7600 -139 903 1.6112 0.8721 1.7600 -139 904 1.6689 0.8678 1.7600 -139 905 1.7271 0.8612 1.7600 -139 906 1.7856 0.8526 1.7600 -139 907 1.8462 0.8366 1.7600 -139 908 1.9045 0.8220 1.7600 -139 909 1.9624 0.8075 1.7600 -139 910 2.0238 0.7990 1.7600 -139 911 2.0845 0.7903 1.7600 -139 912 2.1424 0.7845 1.7600 -139 913 2.1979 0.7786 1.7600 -139 914 2.2544 0.7734 1.7600 -139 915 2.3129 0.7702 1.7600 -139 916 2.3712 0.7679 1.7600 -139 917 2.4315 0.7699 1.7600 -139 918 2.4852 0.7729 1.7600 -139 919 2.5392 0.7721 1.7600 -139 920 2.5970 0.7703 1.7600 -139 921 2.6603 0.7661 1.7600 -139 922 2.7206 0.7620 1.7600 -139 923 2.7765 0.7573 1.7600 -139 924 2.8310 0.7496 1.7600 -139 925 2.8858 0.7403 1.7600 -139 926 2.9449 0.7289 1.7600 -139 927 3.0048 0.7166 1.7600 -139 928 3.0623 0.7069 1.7600 -139 929 3.1219 0.7012 1.7600 -139 930 3.1874 0.6992 1.7600 -139 931 3.2525 0.7004 1.7600 -139 932 3.3130 0.7014 1.7600 -139 933 3.3703 0.7050 1.7600 -139 934 3.4275 0.7076 1.7600 -139 935 3.4878 0.7131 1.7600 -139 936 3.5511 0.7239 1.7600 -139 937 3.6127 0.7368 1.7600 -139 938 3.6717 0.7514 1.7600 -139 939 3.7316 0.7637 1.7600 -139 940 3.7970 0.7743 1.7600 -139 941 3.8621 0.7818 1.7600 -139 942 3.9217 0.7854 1.7600 -139 943 3.9784 0.7903 1.7600 -139 944 4.0378 0.7888 1.7600 -139 945 4.1027 0.7859 1.7600 -139 946 4.1723 0.7751 1.7600 -139 947 4.2443 0.7658 1.7600 -139 948 4.3152 0.7586 1.7600 -139 949 4.3856 0.7558 1.7600 -139 950 4.4617 0.7558 1.7600 -139 951 4.5360 0.7580 1.7600 -139 952 4.6037 0.7581 1.7600 -139 953 4.6657 0.7617 1.7600 -139 954 4.7329 0.7648 1.7600 -139 955 4.8033 0.7709 1.7600 -139 956 4.8752 0.7761 1.7600 -139 957 4.9466 0.7805 1.7600 -139 958 5.0162 0.7810 1.7600 -139 959 5.0879 0.7800 1.7600 -139 960 5.1599 0.7798 1.7600 -139 961 5.2291 0.7783 1.7600 -139 962 5.2930 0.7763 1.7600 -139 963 5.3579 0.7751 1.7600 -139 964 5.4285 0.7721 1.7600 -139 965 5.5091 0.7676 1.7600 -139 966 5.5898 0.7634 1.7600 -139 967 5.6684 0.7612 1.7600 -139 968 5.7452 0.7594 1.7600 -139 969 5.8189 0.7585 1.7600 -139 970 5.8881 0.7590 1.7600 -139 971 5.9546 0.7611 1.7600 -140 778 -7.7809 1.0580 1.7600 -140 779 -7.7197 1.0495 1.7600 -140 780 -7.6562 1.0431 1.7600 -140 781 -7.5911 1.0390 1.7600 -140 782 -7.5244 1.0384 1.7600 -140 783 -7.4615 1.0396 1.7600 -140 784 -7.4047 1.0413 1.7600 -140 785 -7.3599 1.0379 1.7600 -140 786 -7.3166 1.0321 1.7600 -140 787 -7.2736 1.0253 1.7600 -140 788 -7.2313 1.0158 1.7600 -140 789 -7.1835 1.0040 1.7600 -140 790 -7.1369 0.9920 1.7600 -140 791 -7.0839 0.9792 1.7600 -140 792 -7.0311 0.9612 1.7600 -140 793 -6.9814 0.9430 1.7600 -140 794 -6.9374 0.9228 1.7600 -140 795 -6.8914 0.9023 1.7600 -140 796 -6.8448 0.8827 1.7600 -140 797 -6.7974 0.8635 1.7600 -140 798 -6.7510 0.8462 1.7600 -140 799 -6.7038 0.8297 1.7600 -140 800 -6.6564 0.8134 1.7600 -140 801 -6.6094 0.8009 1.7600 -140 802 -6.5627 0.7942 1.7600 -140 803 -6.5155 0.7888 1.7600 -140 804 -6.4689 0.7870 1.7600 -140 805 -6.4204 0.7875 1.7600 -140 806 -6.3700 0.7894 1.7600 -140 807 -6.3188 0.7889 1.7600 -140 808 -6.2674 0.7862 1.7600 -140 809 -6.2244 0.7805 1.7600 -140 810 -6.1846 0.7758 1.7600 -140 811 -6.1442 0.7707 1.7600 -140 812 -6.1031 0.7652 1.7600 -140 813 -6.0582 0.7601 1.7600 -140 814 -6.0150 0.7548 1.7600 -140 815 -5.9694 0.7474 1.7600 -140 816 -5.9301 0.7378 1.7600 -140 817 -5.8926 0.7258 1.7600 -140 818 -5.8557 0.7145 1.7600 -140 819 -5.8209 0.7032 1.7600 -140 820 -5.7877 0.6942 1.7600 -140 821 -5.7491 0.6883 1.7600 -140 822 -5.7056 0.6856 1.7600 -140 823 -5.6644 0.6879 1.7600 -140 824 -5.6225 0.6936 1.7600 -140 825 -5.5798 0.7022 1.7600 -140 826 -5.5352 0.7133 1.7600 -140 827 -5.4873 0.7271 1.7600 -140 828 -5.4414 0.7426 1.7600 -140 829 -5.3941 0.7596 1.7600 -140 830 -5.3463 0.7733 1.7600 -140 831 -5.2998 0.7843 1.7600 -140 832 -5.2527 0.7929 1.7600 -140 833 -5.2057 0.7951 1.7600 -140 834 -5.1610 0.7954 1.7600 -140 835 -5.1168 0.7933 1.7600 -140 836 -5.0708 0.7917 1.7600 -140 837 -5.0239 0.7869 1.7600 -140 838 -4.9764 0.7781 1.7600 -140 839 -4.9282 0.7650 1.7600 -140 840 -4.8826 0.7488 1.7600 -140 841 -4.8384 0.7340 1.7600 -140 842 -4.7954 0.7174 1.7600 -140 843 -4.7579 0.7046 1.7600 -140 844 -4.7206 0.6925 1.7600 -140 845 -4.6797 0.6814 1.7600 -140 846 -4.6375 0.6741 1.7600 -140 847 -4.5986 0.6710 1.7600 -140 848 -4.5587 0.6709 1.7600 -140 849 -4.5146 0.6723 1.7600 -140 850 -4.4700 0.6787 1.7600 -140 851 -4.4237 0.6881 1.7600 -140 852 -4.3738 0.7034 1.7600 -140 853 -4.3230 0.7201 1.7600 -140 854 -4.2710 0.7372 1.7600 -140 855 -4.2241 0.7520 1.7600 -140 856 -4.1773 0.7650 1.7600 -140 857 -4.1317 0.7757 1.7600 -140 858 -4.0851 0.7791 1.7600 -140 859 -4.0379 0.7823 1.7600 -140 860 -3.9935 0.7828 1.7600 -140 861 -3.9464 0.7813 1.7600 -140 862 -3.8987 0.7782 1.7600 -140 863 -3.8453 0.7721 1.7600 -140 864 -3.7935 0.7614 1.7600 -140 865 -3.7372 0.7488 1.7600 -140 866 -3.6837 0.7327 1.7600 -140 867 -3.6295 0.7191 1.7600 -140 868 -3.5785 0.7073 1.7600 -140 869 -3.5204 0.7003 1.7600 -140 870 -3.4681 0.6977 1.7600 -140 871 -3.4154 0.6987 1.7600 -140 872 -3.3648 0.7027 1.7600 -140 873 -3.3104 0.7091 1.7600 -140 874 -3.2558 0.7219 1.7600 -140 875 -3.1999 0.7394 1.7600 -140 876 -3.1431 0.7573 1.7600 -140 877 -3.0860 0.7785 1.7600 -140 878 -3.0292 0.7962 1.7600 -140 879 -2.9754 0.8101 1.7600 -140 880 -2.9205 0.8166 1.7600 -140 881 -2.8657 0.8189 1.7600 -140 882 -2.8106 0.8175 1.7600 -140 883 -2.7521 0.8150 1.7600 -140 884 -2.6969 0.8063 1.7600 -140 885 -2.6381 0.7937 1.7600 -140 886 -2.5757 0.7781 1.7600 -140 887 -2.5096 0.7625 1.7600 -140 888 -2.4493 0.7472 1.7600 -140 889 -2.3891 0.7361 1.7600 -140 890 -2.3301 0.7285 1.7600 -140 891 -2.2731 0.7280 1.7600 -140 892 -2.2170 0.7346 1.7600 -140 893 -2.1612 0.7402 1.7600 -140 894 -2.1037 0.7488 1.7600 -140 895 -2.0440 0.7636 1.7600 -140 896 -1.9793 0.7814 1.7600 -140 897 -1.9135 0.7996 1.7600 -140 898 -1.8514 0.8160 1.7600 -140 899 -1.7923 0.8257 1.7600 -140 900 -1.7382 0.8306 1.7600 -140 901 -1.6857 0.8311 1.7600 -140 902 -1.6340 0.8308 1.7600 -140 903 -1.5820 0.8280 1.7600 -140 904 -1.5297 0.8258 1.7600 -140 905 -1.4770 0.8201 1.7600 -140 906 -1.4209 0.8104 1.7600 -140 907 -1.3600 0.7995 1.7600 -140 908 -1.2962 0.7891 1.7600 -140 909 -1.2325 0.7815 1.7600 -140 910 -1.1705 0.7801 1.7600 -140 911 -1.1118 0.7847 1.7600 -140 912 -1.0559 0.7945 1.7600 -140 913 -1.0026 0.8062 1.7600 -140 914 -0.9470 0.8185 1.7600 -140 915 -0.8899 0.8343 1.7600 -140 916 -0.8295 0.8535 1.7600 -140 917 -0.7654 0.8748 1.7600 -140 918 -0.7011 0.8957 1.7600 -140 919 -0.6407 0.9144 1.7600 -140 920 -0.5839 0.9284 1.7600 -140 921 -0.5286 0.9364 1.7600 -140 922 -0.4765 0.9409 1.7600 -140 923 -0.4210 0.9425 1.7600 -140 924 -0.3659 0.9415 1.7600 -140 925 -0.3082 0.9389 1.7600 -140 926 -0.2484 0.9319 1.7600 -140 927 -0.1883 0.9218 1.7600 -140 928 -0.1272 0.9102 1.7600 -140 929 -0.0677 0.8990 1.7600 -140 930 -0.0053 0.8940 1.7600 -140 931 0.0603 0.8938 1.7600 -140 932 0.1210 0.9001 1.7600 -140 933 0.1857 0.9069 1.7600 -140 934 0.2526 0.9174 1.7600 -140 935 0.3202 0.9304 1.7600 -140 936 0.3879 0.9496 1.7600 -140 937 0.4540 0.9705 1.7600 -140 938 0.5200 0.9910 1.7600 -140 939 0.5811 1.0141 1.7600 -140 940 0.6388 1.0272 1.7600 -140 941 0.6922 1.0341 1.7600 -140 942 0.7455 1.0356 1.7600 -140 943 0.8022 1.0337 1.7600 -140 944 0.8622 1.0295 1.7600 -140 945 0.9244 1.0209 1.7600 -140 946 0.9877 1.0070 1.7600 -140 947 1.0503 0.9874 1.7600 -140 948 1.1152 0.9659 1.7600 -140 949 1.1795 0.9463 1.7600 -140 950 1.2457 0.9329 1.7600 -140 951 1.3154 0.9257 1.7600 -140 952 1.3835 0.9238 1.7600 -140 953 1.4561 0.9293 1.7600 -140 954 1.5307 0.9379 1.7600 -140 955 1.6075 0.9501 1.7600 -140 956 1.6869 0.9669 1.7600 -140 957 1.7695 0.9851 1.7600 -140 958 1.8479 1.0012 1.7600 -140 959 1.9156 1.0117 1.7600 -140 960 1.9794 1.0131 1.7600 -140 961 2.0386 1.0091 1.7600 -140 962 2.0933 1.0026 1.7600 -140 963 2.1518 0.9921 1.7600 -140 964 2.2110 0.9780 1.7600 -140 965 2.2707 0.9606 1.7600 -140 966 2.3352 0.9381 1.7600 -140 967 2.3982 0.9152 1.7600 -140 968 2.4639 0.8896 1.7600 -140 969 2.5304 0.8714 1.7600 -140 970 2.5979 0.8636 1.7600 -140 971 2.6687 0.8632 1.7600 -140 972 2.7354 0.8710 1.7600 -140 973 2.8053 0.8832 1.7600 -140 974 2.8767 0.9019 1.7600 -140 975 2.9514 0.9226 1.7600 -140 976 3.0259 0.9504 1.7600 -140 977 3.1104 0.9831 1.7600 -140 978 3.1870 1.0146 1.7600 -140 979 3.2601 1.0407 1.7600 -140 980 3.3298 1.0617 1.7600 -140 981 3.4008 1.0791 1.7600 -140 982 3.4697 1.0912 1.7600 -140 983 3.5398 1.1033 1.7600 -140 984 3.6139 1.1113 1.7600 -140 985 3.6896 1.1176 1.7600 -140 986 3.7687 1.1199 1.7600 -140 987 3.8474 1.1232 1.7600 -140 988 3.9266 1.1259 1.7600 -140 989 4.0074 1.1353 1.7600 -140 990 4.0906 1.1479 1.7600 -140 991 4.1688 1.1643 1.7600 -140 992 4.2428 1.1807 1.7600 -140 993 4.3161 1.2006 1.7600 -140 994 4.3910 1.2184 1.7600 -140 995 4.4657 1.2416 1.7600 -140 996 4.5451 1.2665 1.7600 -140 997 4.6225 1.2921 1.7600 -140 998 4.7049 1.3145 1.7600 -140 999 4.7846 1.3271 1.7600 -140 1000 4.8583 1.3343 1.7600 -140 1001 4.9294 1.3398 1.7600 -140 1002 4.9997 1.3449 1.7600 -140 1003 5.0699 1.3457 1.7600 -140 1004 5.1490 1.3471 1.7600 -140 1005 5.2359 1.3472 1.7600 -140 1006 5.3177 1.3472 1.7600 -140 1007 5.4038 1.3507 1.7600 -140 1008 5.4921 1.3576 1.7600 -140 1009 5.5773 1.3672 1.7600 -140 1010 5.6534 1.3794 1.7600 -140 1011 5.7272 1.3903 1.7600 -140 1012 5.7972 1.4017 1.7600 -140 1013 5.8726 1.4158 1.7600 -141 767 -7.7948 0.7595 1.7600 -141 768 -7.7517 0.7473 1.7600 -141 769 -7.7089 0.7319 1.7600 -141 770 -7.6686 0.7128 1.7600 -141 771 -7.6300 0.6910 1.7600 -141 772 -7.5911 0.6672 1.7600 -141 773 -7.5493 0.6424 1.7600 -141 774 -7.5060 0.6156 1.7600 -141 775 -7.4634 0.5864 1.7600 -141 776 -7.4238 0.5554 1.7600 -141 777 -7.3857 0.5251 1.7600 -141 778 -7.3460 0.4997 1.7600 -141 779 -7.3048 0.4792 1.7600 -141 780 -7.2614 0.4654 1.7600 -141 781 -7.2149 0.4584 1.7600 -141 782 -7.1653 0.4568 1.7600 -141 783 -7.1086 0.4590 1.7600 -141 784 -7.0507 0.4662 1.7600 -141 785 -6.9946 0.4756 1.7600 -141 786 -6.9344 0.4854 1.7600 -141 787 -6.8790 0.4967 1.7600 -141 788 -6.8265 0.5034 1.7600 -141 789 -6.7742 0.5088 1.7600 -141 790 -6.7233 0.5068 1.7600 -141 791 -6.6694 0.5001 1.7600 -141 792 -6.6163 0.4904 1.7600 -141 793 -6.5613 0.4802 1.7600 -141 794 -6.5051 0.4674 1.7600 -141 795 -6.4541 0.4550 1.7600 -141 796 -6.4003 0.4400 1.7600 -141 797 -6.3537 0.4231 1.7600 -141 798 -6.3128 0.4099 1.7600 -141 799 -6.2730 0.3997 1.7600 -141 800 -6.2263 0.3939 1.7600 -141 801 -6.1848 0.3920 1.7600 -141 802 -6.1411 0.3921 1.7600 -141 803 -6.0943 0.3954 1.7600 -141 804 -6.0482 0.4035 1.7600 -141 805 -5.9977 0.4138 1.7600 -141 806 -5.9521 0.4272 1.7600 -141 807 -5.9030 0.4350 1.7600 -141 808 -5.8596 0.4404 1.7600 -141 809 -5.8139 0.4421 1.7600 -141 810 -5.7708 0.4372 1.7600 -141 811 -5.7295 0.4306 1.7600 -141 812 -5.6872 0.4195 1.7600 -141 813 -5.6384 0.4083 1.7600 -141 814 -5.5920 0.3965 1.7600 -141 815 -5.5455 0.3844 1.7600 -141 816 -5.4981 0.3685 1.7600 -141 817 -5.4518 0.3507 1.7600 -141 818 -5.4076 0.3317 1.7600 -141 819 -5.3659 0.3181 1.7600 -141 820 -5.3259 0.3067 1.7600 -141 821 -5.2843 0.2988 1.7600 -141 822 -5.2468 0.3005 1.7600 -141 823 -5.2126 0.3052 1.7600 -141 824 -5.1806 0.3135 1.7600 -141 825 -5.1510 0.3239 1.7600 -141 826 -5.1205 0.3391 1.7600 -141 827 -5.0917 0.3579 1.7600 -141 828 -5.0583 0.3794 1.7600 -141 829 -5.0242 0.3993 1.7600 -141 830 -4.9896 0.4166 1.7600 -141 831 -4.9542 0.4291 1.7600 -141 832 -4.9161 0.4363 1.7600 -141 833 -4.8752 0.4359 1.7600 -141 834 -4.8327 0.4322 1.7600 -141 835 -4.7902 0.4232 1.7600 -141 836 -4.7456 0.4115 1.7600 -141 837 -4.7027 0.3980 1.7600 -141 838 -4.6575 0.3810 1.7600 -141 839 -4.6143 0.3620 1.7600 -141 840 -4.5792 0.3443 1.7600 -141 841 -4.5447 0.3314 1.7600 -141 842 -4.5089 0.3197 1.7600 -141 843 -4.4711 0.3143 1.7600 -141 844 -4.4343 0.3101 1.7600 -141 845 -4.3942 0.3111 1.7600 -141 846 -4.3538 0.3153 1.7600 -141 847 -4.3121 0.3251 1.7600 -141 848 -4.2650 0.3370 1.7600 -141 849 -4.2230 0.3520 1.7600 -141 850 -4.1805 0.3637 1.7600 -141 851 -4.1386 0.3744 1.7600 -141 852 -4.1005 0.3816 1.7600 -141 853 -4.0567 0.3862 1.7600 -141 854 -4.0103 0.3864 1.7600 -141 855 -3.9652 0.3822 1.7600 -141 856 -3.9221 0.3716 1.7600 -141 857 -3.8787 0.3629 1.7600 -141 858 -3.8315 0.3502 1.7600 -141 859 -3.7836 0.3350 1.7600 -141 860 -3.7340 0.3189 1.7600 -141 861 -3.6881 0.3031 1.7600 -141 862 -3.6428 0.2929 1.7600 -141 863 -3.5949 0.2874 1.7600 -141 864 -3.5468 0.2889 1.7600 -141 865 -3.4975 0.2937 1.7600 -141 866 -3.4518 0.3010 1.7600 -141 867 -3.4087 0.3128 1.7600 -141 868 -3.3645 0.3288 1.7600 -141 869 -3.3185 0.3500 1.7600 -141 870 -3.2697 0.3737 1.7600 -141 871 -3.2214 0.3927 1.7600 -141 872 -3.1746 0.4108 1.7600 -141 873 -3.1254 0.4220 1.7600 -141 874 -3.0742 0.4279 1.7600 -141 875 -3.0217 0.4311 1.7600 -141 876 -2.9654 0.4298 1.7600 -141 877 -2.9169 0.4248 1.7600 -141 878 -2.8649 0.4205 1.7600 -141 879 -2.8092 0.4150 1.7600 -141 880 -2.7496 0.4067 1.7600 -141 881 -2.6925 0.4017 1.7600 -141 882 -2.6381 0.4019 1.7600 -141 883 -2.5837 0.4031 1.7600 -141 884 -2.5283 0.4130 1.7600 -141 885 -2.4744 0.4245 1.7600 -141 886 -2.4175 0.4349 1.7600 -141 887 -2.3658 0.4483 1.7600 -141 888 -2.3086 0.4607 1.7600 -141 889 -2.2493 0.4730 1.7600 -141 890 -2.1874 0.4876 1.7600 -141 891 -2.1281 0.4938 1.7600 -141 892 -2.0759 0.4959 1.7600 -141 893 -2.0204 0.4936 1.7600 -141 894 -1.9674 0.4915 1.7600 -141 895 -1.9138 0.4872 1.7600 -141 896 -1.8585 0.4808 1.7600 -141 897 -1.8023 0.4756 1.7600 -141 898 -1.7419 0.4676 1.7600 -141 899 -1.6752 0.4587 1.7600 -141 900 -1.6110 0.4502 1.7600 -141 901 -1.5554 0.4471 1.7600 -141 902 -1.4992 0.4470 1.7600 -141 903 -1.4411 0.4514 1.7600 -141 904 -1.3852 0.4566 1.7600 -141 905 -1.3269 0.4641 1.7600 -141 906 -1.2685 0.4729 1.7600 -141 907 -1.2080 0.4855 1.7600 -141 908 -1.1434 0.5024 1.7600 -141 909 -1.0751 0.5212 1.7600 -141 910 -1.0113 0.5329 1.7600 -141 911 -0.9523 0.5387 1.7600 -141 912 -0.8912 0.5396 1.7600 -141 913 -0.8259 0.5327 1.7600 -141 914 -0.7628 0.5202 1.7600 -141 915 -0.7020 0.5031 1.7600 -141 916 -0.6454 0.4843 1.7600 -141 917 -0.5826 0.4653 1.7600 -141 918 -0.5201 0.4417 1.7600 -141 919 -0.4587 0.4204 1.7600 -141 920 -0.3995 0.4067 1.7600 -141 921 -0.3420 0.3976 1.7600 -141 922 -0.2828 0.3958 1.7600 -141 923 -0.2208 0.3982 1.7600 -141 924 -0.1533 0.4027 1.7600 -141 925 -0.0879 0.4130 1.7600 -141 926 -0.0206 0.4283 1.7600 -141 927 0.0484 0.4472 1.7600 -141 928 0.1163 0.4664 1.7600 -141 929 0.1748 0.4801 1.7600 -141 930 0.2288 0.4846 1.7600 -141 931 0.2865 0.4853 1.7600 -141 932 0.3460 0.4815 1.7600 -141 933 0.4046 0.4744 1.7600 -141 934 0.4637 0.4638 1.7600 -141 935 0.5225 0.4532 1.7600 -141 936 0.5843 0.4415 1.7600 -141 937 0.6478 0.4255 1.7600 -141 938 0.7023 0.4190 1.7600 -141 939 0.7545 0.4171 1.7600 -141 940 0.8065 0.4211 1.7600 -141 941 0.8607 0.4266 1.7600 -141 942 0.9196 0.4353 1.7600 -141 943 0.9783 0.4466 1.7600 -141 944 1.0396 0.4625 1.7600 -141 945 1.1052 0.4785 1.7600 -141 946 1.1726 0.4954 1.7600 -141 947 1.2351 0.5018 1.7600 -141 948 1.2939 0.5009 1.7600 -141 949 1.3503 0.4963 1.7600 -141 950 1.4060 0.4851 1.7600 -141 951 1.4622 0.4721 1.7600 -141 952 1.5196 0.4569 1.7600 -141 953 1.5766 0.4388 1.7600 -141 954 1.6342 0.4192 1.7600 -141 955 1.6846 0.4031 1.7600 -141 956 1.7352 0.3886 1.7600 -141 957 1.7859 0.3768 1.7600 -141 958 1.8401 0.3694 1.7600 -141 959 1.8938 0.3679 1.7600 -141 960 1.9485 0.3708 1.7600 -141 961 2.0023 0.3819 1.7600 -141 962 2.0605 0.3965 1.7600 -141 963 2.1236 0.4155 1.7600 -141 964 2.1874 0.4370 1.7600 -141 965 2.2469 0.4502 1.7600 -141 966 2.2998 0.4579 1.7600 -141 967 2.3576 0.4577 1.7600 -141 968 2.4159 0.4482 1.7600 -141 969 2.4741 0.4337 1.7600 -141 970 2.5287 0.4117 1.7600 -141 971 2.5869 0.3887 1.7600 -141 972 2.6470 0.3623 1.7600 -141 973 2.7070 0.3374 1.7600 -141 974 2.7596 0.3192 1.7600 -141 975 2.8079 0.3128 1.7600 -141 976 2.8581 0.3094 1.7600 -141 977 2.9088 0.3116 1.7600 -141 978 2.9605 0.3168 1.7600 -141 979 3.0132 0.3281 1.7600 -141 980 3.0654 0.3459 1.7600 -141 981 3.1161 0.3699 1.7600 -141 982 3.1751 0.3921 1.7600 -141 983 3.2339 0.4079 1.7600 -141 984 3.2954 0.4154 1.7600 -141 985 3.3527 0.4154 1.7600 -141 986 3.4102 0.4116 1.7600 -141 987 3.4695 0.4060 1.7600 -141 988 3.5271 0.3984 1.7600 -141 989 3.5845 0.3900 1.7600 -141 990 3.6484 0.3779 1.7600 -141 991 3.7150 0.3665 1.7600 -141 992 3.7772 0.3603 1.7600 -141 993 3.8342 0.3588 1.7600 -141 994 3.8882 0.3612 1.7600 -141 995 3.9469 0.3654 1.7600 -141 996 3.9977 0.3723 1.7600 -141 997 4.0491 0.3860 1.7600 -141 998 4.0990 0.3997 1.7600 -141 999 4.1552 0.4153 1.7600 -141 1000 4.2210 0.4311 1.7600 -141 1001 4.2874 0.4441 1.7600 -141 1002 4.3551 0.4521 1.7600 -141 1003 4.4188 0.4532 1.7600 -141 1004 4.4846 0.4481 1.7600 -141 1005 4.5484 0.4409 1.7600 -141 1006 4.6098 0.4304 1.7600 -141 1007 4.6709 0.4185 1.7600 -141 1008 4.7286 0.4031 1.7600 -141 1009 4.7882 0.3860 1.7600 -141 1010 4.8564 0.3711 1.7600 -141 1011 4.9268 0.3600 1.7600 -141 1012 4.9971 0.3563 1.7600 -141 1013 5.0639 0.3568 1.7600 -141 1014 5.1305 0.3600 1.7600 -141 1015 5.1945 0.3655 1.7600 -141 1016 5.2619 0.3702 1.7600 -141 1017 5.3348 0.3764 1.7600 -141 1018 5.4147 0.3864 1.7600 -141 1019 5.5051 0.3927 1.7600 -141 1020 5.5849 0.3935 1.7600 -141 1021 5.6627 0.3865 1.7600 -141 1022 5.7386 0.3747 1.7600 -141 1023 5.8102 0.3622 1.7600 -141 1024 5.8798 0.3507 1.7600 -141 1025 5.9499 0.3381 1.7600 -142 768 -7.8268 1.3255 1.7600 -142 769 -7.7790 1.3177 1.7600 -142 770 -7.7290 1.3105 1.7600 -142 771 -7.6753 1.3045 1.7600 -142 772 -7.6125 1.3057 1.7600 -142 773 -7.5561 1.3061 1.7600 -142 774 -7.4923 1.3161 1.7600 -142 775 -7.4342 1.3308 1.7600 -142 776 -7.3779 1.3420 1.7600 -142 777 -7.3247 1.3454 1.7600 -142 778 -7.2746 1.3412 1.7600 -142 779 -7.2250 1.3328 1.7600 -142 780 -7.1718 1.3240 1.7600 -142 781 -7.1138 1.3147 1.7600 -142 782 -7.0526 1.3039 1.7600 -142 783 -6.9924 1.2885 1.7600 -142 784 -6.9365 1.2657 1.7600 -142 785 -6.8854 1.2380 1.7600 -142 786 -6.8338 1.2101 1.7600 -142 787 -6.7844 1.1893 1.7600 -142 788 -6.7329 1.1790 1.7600 -142 789 -6.6819 1.1717 1.7600 -142 790 -6.6290 1.1695 1.7600 -142 791 -6.5745 1.1734 1.7600 -142 792 -6.5130 1.1790 1.7600 -142 793 -6.4489 1.1897 1.7600 -142 794 -6.3894 1.1995 1.7600 -142 795 -6.3295 1.2116 1.7600 -142 796 -6.2762 1.2191 1.7600 -142 797 -6.2246 1.2246 1.7600 -142 798 -6.1795 1.2268 1.7600 -142 799 -6.1361 1.2251 1.7600 -142 800 -6.0901 1.2247 1.7600 -142 801 -6.0476 1.2253 1.7600 -142 802 -5.9977 1.2218 1.7600 -142 803 -5.9496 1.2163 1.7600 -142 804 -5.9016 1.2057 1.7600 -142 805 -5.8614 1.1907 1.7600 -142 806 -5.8180 1.1756 1.7600 -142 807 -5.7761 1.1664 1.7600 -142 808 -5.7363 1.1671 1.7600 -142 809 -5.6961 1.1703 1.7600 -142 810 -5.6550 1.1716 1.7600 -142 811 -5.6119 1.1781 1.7600 -142 812 -5.5673 1.1894 1.7600 -142 813 -5.5184 1.2037 1.7600 -142 814 -5.4748 1.2179 1.7600 -142 815 -5.4342 1.2311 1.7600 -142 816 -5.3940 1.2362 1.7600 -142 817 -5.3547 1.2373 1.7600 -142 818 -5.3145 1.2351 1.7600 -142 819 -5.2720 1.2329 1.7600 -142 820 -5.2272 1.2284 1.7600 -142 821 -5.1792 1.2213 1.7600 -142 822 -5.1328 1.2063 1.7600 -142 823 -5.0901 1.1858 1.7600 -142 824 -5.0507 1.1610 1.7600 -142 825 -5.0118 1.1382 1.7600 -142 826 -4.9753 1.1172 1.7600 -142 827 -4.9349 1.1024 1.7600 -142 828 -4.9000 1.0892 1.7600 -142 829 -4.8622 1.0785 1.7600 -142 830 -4.8240 1.0711 1.7600 -142 831 -4.7836 1.0656 1.7600 -142 832 -4.7407 1.0652 1.7600 -142 833 -4.6948 1.0683 1.7600 -142 834 -4.6474 1.0802 1.7600 -142 835 -4.6001 1.0925 1.7600 -142 836 -4.5551 1.1058 1.7600 -142 837 -4.5139 1.1191 1.7600 -142 838 -4.4744 1.1275 1.7600 -142 839 -4.4365 1.1299 1.7600 -142 840 -4.3988 1.1271 1.7600 -142 841 -4.3613 1.1250 1.7600 -142 842 -4.3200 1.1221 1.7600 -142 843 -4.2736 1.1150 1.7600 -142 844 -4.2272 1.1061 1.7600 -142 845 -4.1728 1.0889 1.7600 -142 846 -4.1231 1.0700 1.7600 -142 847 -4.0755 1.0550 1.7600 -142 848 -4.0301 1.0475 1.7600 -142 849 -3.9843 1.0456 1.7600 -142 850 -3.9392 1.0453 1.7600 -142 851 -3.8902 1.0457 1.7600 -142 852 -3.8386 1.0505 1.7600 -142 853 -3.7841 1.0595 1.7600 -142 854 -3.7274 1.0759 1.7600 -142 855 -3.6689 1.0980 1.7600 -142 856 -3.6157 1.1177 1.7600 -142 857 -3.5690 1.1327 1.7600 -142 858 -3.5267 1.1416 1.7600 -142 859 -3.4885 1.1450 1.7600 -142 860 -3.4479 1.1465 1.7600 -142 861 -3.4110 1.1456 1.7600 -142 862 -3.3709 1.1439 1.7600 -142 863 -3.3280 1.1393 1.7600 -142 864 -3.2832 1.1312 1.7600 -142 865 -3.2364 1.1213 1.7600 -142 866 -3.1877 1.1111 1.7600 -142 867 -3.1412 1.1072 1.7600 -142 868 -3.0942 1.1130 1.7600 -142 869 -3.0479 1.1226 1.7600 -142 870 -3.0016 1.1333 1.7600 -142 871 -2.9530 1.1421 1.7600 -142 872 -2.9000 1.1548 1.7600 -142 873 -2.8453 1.1730 1.7600 -142 874 -2.7915 1.1933 1.7600 -142 875 -2.7344 1.2149 1.7600 -142 876 -2.6832 1.2315 1.7600 -142 877 -2.6342 1.2439 1.7600 -142 878 -2.5851 1.2508 1.7600 -142 879 -2.5352 1.2550 1.7600 -142 880 -2.4823 1.2603 1.7600 -142 881 -2.4287 1.2645 1.7600 -142 882 -2.3694 1.2634 1.7600 -142 883 -2.3080 1.2572 1.7600 -142 884 -2.2440 1.2465 1.7600 -142 885 -2.1792 1.2351 1.7600 -142 886 -2.1142 1.2292 1.7600 -142 887 -2.0515 1.2303 1.7600 -142 888 -1.9928 1.2341 1.7600 -142 889 -1.9367 1.2375 1.7600 -142 890 -1.8786 1.2401 1.7600 -142 891 -1.8196 1.2475 1.7600 -142 892 -1.7568 1.2580 1.7600 -142 893 -1.6918 1.2756 1.7600 -142 894 -1.6268 1.2924 1.7600 -142 895 -1.5618 1.3083 1.7600 -142 896 -1.4993 1.3230 1.7600 -142 897 -1.4383 1.3316 1.7600 -142 898 -1.3798 1.3388 1.7600 -142 899 -1.3206 1.3466 1.7600 -142 900 -1.2593 1.3533 1.7600 -142 901 -1.1961 1.3574 1.7600 -142 902 -1.1285 1.3578 1.7600 -142 903 -1.0563 1.3510 1.7600 -142 904 -0.9848 1.3415 1.7600 -142 905 -0.9115 1.3368 1.7600 -142 906 -0.8431 1.3413 1.7600 -142 907 -0.7769 1.3513 1.7600 -142 908 -0.7131 1.3626 1.7600 -142 909 -0.6469 1.3776 1.7600 -142 910 -0.5769 1.3965 1.7600 -142 911 -0.5057 1.4171 1.7600 -142 912 -0.4373 1.4421 1.7600 -142 913 -0.3675 1.4724 1.7600 -142 914 -0.3033 1.4915 1.7600 -142 915 -0.2416 1.5031 1.7600 -142 916 -0.1810 1.5109 1.7600 -142 917 -0.1178 1.5165 1.7600 -142 918 -0.0486 1.5197 1.7600 -142 919 0.0264 1.5180 1.7600 -142 920 0.1033 1.5109 1.7600 -142 921 0.1787 1.4964 1.7600 -142 922 0.2485 1.4797 1.7600 -142 923 0.3223 1.4699 1.7600 -142 924 0.3894 1.4696 1.7600 -142 925 0.4560 1.4696 1.7600 -142 926 0.5181 1.4689 1.7600 -142 927 0.5847 1.4688 1.7600 -142 928 0.6534 1.4726 1.7600 -142 929 0.7231 1.4824 1.7600 -142 930 0.7922 1.4964 1.7600 -142 931 0.8561 1.5139 1.7600 -142 932 0.9140 1.5285 1.7600 -142 933 0.9666 1.5325 1.7600 -142 934 1.0207 1.5335 1.7600 -142 935 1.0742 1.5313 1.7600 -142 936 1.1331 1.5265 1.7600 -142 937 1.1977 1.5172 1.7600 -142 938 1.2611 1.5036 1.7600 -142 939 1.3246 1.4825 1.7600 -142 940 1.3935 1.4535 1.7600 -142 941 1.4571 1.4388 1.7600 -142 942 1.5198 1.4337 1.7600 -142 943 1.5789 1.4399 1.7600 -142 944 1.6361 1.4481 1.7600 -142 945 1.6946 1.4584 1.7600 -142 946 1.7570 1.4693 1.7600 -142 947 1.8208 1.4825 1.7600 -142 948 1.8851 1.4971 1.7600 -142 949 1.9538 1.5146 1.7600 -142 950 2.0242 1.5317 1.7600 -142 951 2.0902 1.5454 1.7600 -142 952 2.1546 1.5522 1.7600 -142 953 2.2190 1.5568 1.7600 -142 954 2.2839 1.5575 1.7600 -142 955 2.3534 1.5579 1.7600 -142 956 2.4243 1.5542 1.7600 -142 957 2.4945 1.5436 1.7600 -142 958 2.5639 1.5283 1.7600 -142 959 2.6368 1.5125 1.7600 -142 960 2.7080 1.5073 1.7600 -142 961 2.7761 1.5062 1.7600 -142 962 2.8427 1.5094 1.7600 -142 963 2.9088 1.5124 1.7600 -142 964 2.9761 1.5158 1.7600 -142 965 3.0467 1.5206 1.7600 -142 966 3.1189 1.5279 1.7600 -142 967 3.1949 1.5385 1.7600 -142 968 3.2714 1.5508 1.7600 -142 969 3.3447 1.5575 1.7600 -142 970 3.4116 1.5643 1.7600 -142 971 3.4748 1.5653 1.7600 -142 972 3.5344 1.5621 1.7600 -142 973 3.5932 1.5572 1.7600 -142 974 3.6531 1.5532 1.7600 -142 975 3.7204 1.5454 1.7600 -142 976 3.7888 1.5301 1.7600 -142 977 3.8569 1.5091 1.7600 -142 978 3.9359 1.4954 1.7600 -142 979 4.0173 1.4941 1.7600 -142 980 4.0960 1.5000 1.7600 -142 981 4.1722 1.5069 1.7600 -142 982 4.2473 1.5148 1.7600 -142 983 4.3255 1.5268 1.7600 -142 984 4.3996 1.5418 1.7600 -142 985 4.4779 1.5624 1.7600 -142 986 4.5653 1.5862 1.7600 -142 987 4.6561 1.6042 1.7600 -142 988 4.7401 1.6132 1.7600 -142 989 4.8171 1.6157 1.7600 -142 990 4.8862 1.6155 1.7600 -142 991 4.9563 1.6157 1.7600 -142 992 5.0259 1.6156 1.7600 -142 993 5.0994 1.6135 1.7600 -142 994 5.1779 1.6051 1.7600 -142 995 5.2655 1.5960 1.7600 -142 996 5.3630 1.5945 1.7600 -142 997 5.4508 1.6042 1.7600 -142 998 5.5314 1.6161 1.7600 -142 999 5.6091 1.6274 1.7600 -142 1000 5.6811 1.6366 1.7600 -142 1001 5.7516 1.6468 1.7600 -142 1002 5.8244 1.6594 1.7600 -142 1003 5.9044 1.6738 1.7600 -143 779 -7.8023 1.8869 1.7600 -143 780 -7.7307 1.8830 1.7600 -143 781 -7.6545 1.8829 1.7600 -143 782 -7.5762 1.8898 1.7600 -143 783 -7.5009 1.9042 1.7600 -143 784 -7.4307 1.9217 1.7600 -143 785 -7.3640 1.9343 1.7600 -143 786 -7.3024 1.9386 1.7600 -143 787 -7.2455 1.9373 1.7600 -143 788 -7.1904 1.9307 1.7600 -143 789 -7.1331 1.9202 1.7600 -143 790 -7.0749 1.9057 1.7600 -143 791 -7.0108 1.8898 1.7600 -143 792 -6.9489 1.8675 1.7600 -143 793 -6.8879 1.8382 1.7600 -143 794 -6.8317 1.8095 1.7600 -143 795 -6.7818 1.7780 1.7600 -143 796 -6.7332 1.7547 1.7600 -143 797 -6.6884 1.7401 1.7600 -143 798 -6.6422 1.7324 1.7600 -143 799 -6.5944 1.7273 1.7600 -143 800 -6.5463 1.7233 1.7600 -143 801 -6.4947 1.7225 1.7600 -143 802 -6.4402 1.7246 1.7600 -143 803 -6.3810 1.7334 1.7600 -143 804 -6.3242 1.7511 1.7600 -143 805 -6.2654 1.7700 1.7600 -143 806 -6.2136 1.7800 1.7600 -143 807 -6.1637 1.7947 1.7600 -143 808 -6.1128 1.8121 1.7600 -143 809 -6.0626 1.8238 1.7600 -143 810 -6.0118 1.8265 1.7600 -143 811 -5.9580 1.8274 1.7600 -143 812 -5.9048 1.8230 1.7600 -143 813 -5.8472 1.8156 1.7600 -143 814 -5.7907 1.8027 1.7600 -143 815 -5.7365 1.7824 1.7600 -143 816 -5.6926 1.7548 1.7600 -143 817 -5.6491 1.7293 1.7600 -143 818 -5.6079 1.7044 1.7600 -143 819 -5.5657 1.6832 1.7600 -143 820 -5.5211 1.6660 1.7600 -143 821 -5.4772 1.6533 1.7600 -143 822 -5.4330 1.6436 1.7600 -143 823 -5.3923 1.6384 1.7600 -143 824 -5.3533 1.6366 1.7600 -143 825 -5.3142 1.6370 1.7600 -143 826 -5.2708 1.6391 1.7600 -143 827 -5.2266 1.6458 1.7600 -143 828 -5.1806 1.6578 1.7600 -143 829 -5.1324 1.6676 1.7600 -143 830 -5.0802 1.6767 1.7600 -143 831 -5.0295 1.6850 1.7600 -143 832 -4.9862 1.6906 1.7600 -143 833 -4.9426 1.6958 1.7600 -143 834 -4.8993 1.6962 1.7600 -143 835 -4.8577 1.6904 1.7600 -143 836 -4.8174 1.6829 1.7600 -143 837 -4.7775 1.6714 1.7600 -143 838 -4.7369 1.6602 1.7600 -143 839 -4.6981 1.6400 1.7600 -143 840 -4.6586 1.6113 1.7600 -143 841 -4.6225 1.5754 1.7600 -143 842 -4.5892 1.5407 1.7600 -143 843 -4.5534 1.5124 1.7600 -143 844 -4.5177 1.4896 1.7600 -143 845 -4.4805 1.4713 1.7600 -143 846 -4.4416 1.4553 1.7600 -143 847 -4.4006 1.4468 1.7600 -143 848 -4.3583 1.4418 1.7600 -143 849 -4.3122 1.4393 1.7600 -143 850 -4.2675 1.4376 1.7600 -143 851 -4.2182 1.4413 1.7600 -143 852 -4.1702 1.4528 1.7600 -143 853 -4.1193 1.4714 1.7600 -143 854 -4.0707 1.4919 1.7600 -143 855 -4.0185 1.5096 1.7600 -143 856 -3.9633 1.5246 1.7600 -143 857 -3.9153 1.5336 1.7600 -143 858 -3.8679 1.5415 1.7600 -143 859 -3.8250 1.5419 1.7600 -143 860 -3.7802 1.5423 1.7600 -143 861 -3.7357 1.5434 1.7600 -143 862 -3.6931 1.5394 1.7600 -143 863 -3.6483 1.5282 1.7600 -143 864 -3.6038 1.5128 1.7600 -143 865 -3.5567 1.4920 1.7600 -143 866 -3.5110 1.4705 1.7600 -143 867 -3.4608 1.4488 1.7600 -143 868 -3.4060 1.4328 1.7600 -143 869 -3.3562 1.4207 1.7600 -143 870 -3.3063 1.4123 1.7600 -143 871 -3.2572 1.4079 1.7600 -143 872 -3.2101 1.4074 1.7600 -143 873 -3.1643 1.4117 1.7600 -143 874 -3.1197 1.4194 1.7600 -143 875 -3.0758 1.4271 1.7600 -143 876 -3.0295 1.4401 1.7600 -143 877 -2.9844 1.4599 1.7600 -143 878 -2.9402 1.4911 1.7600 -143 879 -2.8946 1.5143 1.7600 -143 880 -2.8442 1.5365 1.7600 -143 881 -2.7930 1.5571 1.7600 -143 882 -2.7452 1.5738 1.7600 -143 883 -2.7024 1.5857 1.7600 -143 884 -2.6630 1.5895 1.7600 -143 885 -2.6248 1.5937 1.7600 -143 886 -2.5873 1.5965 1.7600 -143 887 -2.5456 1.5963 1.7600 -143 888 -2.5024 1.5905 1.7600 -143 889 -2.4591 1.5830 1.7600 -143 890 -2.4158 1.5638 1.7600 -143 891 -2.3704 1.5404 1.7600 -143 892 -2.3243 1.5166 1.7600 -143 893 -2.2765 1.4921 1.7600 -143 894 -2.2288 1.4656 1.7600 -143 895 -2.1869 1.4443 1.7600 -143 896 -2.1463 1.4295 1.7600 -143 897 -2.1021 1.4191 1.7600 -143 898 -2.0546 1.4107 1.7600 -143 899 -2.0064 1.4053 1.7600 -143 900 -1.9573 1.4038 1.7600 -143 901 -1.9098 1.4084 1.7600 -143 902 -1.8580 1.4189 1.7600 -143 903 -1.8045 1.4350 1.7600 -143 904 -1.7424 1.4607 1.7600 -143 905 -1.6774 1.4807 1.7600 -143 906 -1.6159 1.4965 1.7600 -143 907 -1.5613 1.5083 1.7600 -143 908 -1.5108 1.5112 1.7600 -143 909 -1.4647 1.5054 1.7600 -143 910 -1.4194 1.5050 1.7600 -143 911 -1.3738 1.4977 1.7600 -143 912 -1.3229 1.4875 1.7600 -143 913 -1.2734 1.4674 1.7600 -143 914 -1.2222 1.4477 1.7600 -143 915 -1.1710 1.4206 1.7600 -143 916 -1.1188 1.3921 1.7600 -143 917 -1.0627 1.3643 1.7600 -143 918 -1.0065 1.3410 1.7600 -143 919 -0.9537 1.3237 1.7600 -143 920 -0.9039 1.3150 1.7600 -143 921 -0.8540 1.3133 1.7600 -143 922 -0.8025 1.3144 1.7600 -143 923 -0.7495 1.3183 1.7600 -143 924 -0.6953 1.3272 1.7600 -143 925 -0.6373 1.3415 1.7600 -143 926 -0.5801 1.3651 1.7600 -143 927 -0.5204 1.3956 1.7600 -143 928 -0.4591 1.4295 1.7600 -143 929 -0.3959 1.4612 1.7600 -143 930 -0.3393 1.4818 1.7600 -143 931 -0.2875 1.4947 1.7600 -143 932 -0.2387 1.5023 1.7600 -143 933 -0.1941 1.5129 1.7600 -143 934 -0.1464 1.5165 1.7600 -143 935 -0.0927 1.5101 1.7600 -143 936 -0.0372 1.5016 1.7600 -143 937 0.0200 1.4854 1.7600 -143 938 0.0770 1.4668 1.7600 -143 939 0.1359 1.4425 1.7600 -143 940 0.1915 1.4239 1.7600 -143 941 0.2442 1.4105 1.7600 -143 942 0.2959 1.4043 1.7600 -143 943 0.3462 1.3993 1.7600 -143 944 0.4017 1.3968 1.7600 -143 945 0.4567 1.3988 1.7600 -143 946 0.5107 1.4047 1.7600 -143 947 0.5658 1.4148 1.7600 -143 948 0.6250 1.4324 1.7600 -143 949 0.6851 1.4610 1.7600 -143 950 0.7430 1.4916 1.7600 -143 951 0.8010 1.5214 1.7600 -143 952 0.8590 1.5473 1.7600 -143 953 0.9118 1.5630 1.7600 -143 954 0.9689 1.5667 1.7600 -143 955 1.0283 1.5659 1.7600 -143 956 1.0907 1.5627 1.7600 -143 957 1.1546 1.5518 1.7600 -143 958 1.2179 1.5326 1.7600 -143 959 1.2787 1.5068 1.7600 -143 960 1.3403 1.4749 1.7600 -143 961 1.4029 1.4364 1.7600 -143 962 1.4635 1.4017 1.7600 -143 963 1.5241 1.3715 1.7600 -143 964 1.5808 1.3518 1.7600 -143 965 1.6409 1.3389 1.7600 -143 966 1.6983 1.3321 1.7600 -143 967 1.7556 1.3319 1.7600 -143 968 1.8146 1.3354 1.7600 -143 969 1.8732 1.3424 1.7600 -143 970 1.9367 1.3622 1.7600 -143 971 1.9979 1.3884 1.7600 -143 972 2.0617 1.4179 1.7600 -143 973 2.1262 1.4447 1.7600 -143 974 2.1926 1.4705 1.7600 -143 975 2.2591 1.4894 1.7600 -143 976 2.3212 1.5018 1.7600 -143 977 2.3803 1.5093 1.7600 -143 978 2.4419 1.5107 1.7600 -143 979 2.5061 1.5037 1.7600 -143 980 2.5681 1.4914 1.7600 -143 981 2.6313 1.4669 1.7600 -143 982 2.6894 1.4358 1.7600 -143 983 2.7505 1.4013 1.7600 -143 984 2.8154 1.3712 1.7600 -143 985 2.8793 1.3510 1.7600 -143 986 2.9417 1.3399 1.7600 -143 987 3.0022 1.3356 1.7600 -143 988 3.0621 1.3369 1.7600 -143 989 3.1213 1.3404 1.7600 -143 990 3.1803 1.3498 1.7600 -143 991 3.2406 1.3638 1.7600 -143 992 3.3004 1.3845 1.7600 -143 993 3.3637 1.4109 1.7600 -143 994 3.4292 1.4404 1.7600 -143 995 3.5004 1.4706 1.7600 -143 996 3.5734 1.4953 1.7600 -143 997 3.6436 1.5124 1.7600 -143 998 3.7081 1.5235 1.7600 -143 999 3.7723 1.5301 1.7600 -143 1000 3.8283 1.5365 1.7600 -143 1001 3.8875 1.5456 1.7600 -143 1002 3.9490 1.5548 1.7600 -143 1003 4.0089 1.5569 1.7600 -143 1004 4.0735 1.5504 1.7600 -143 1005 4.1432 1.5389 1.7600 -143 1006 4.2216 1.5293 1.7600 -143 1007 4.3035 1.5240 1.7600 -143 1008 4.3771 1.5278 1.7600 -143 1009 4.4453 1.5385 1.7600 -143 1010 4.5096 1.5494 1.7600 -143 1011 4.5713 1.5607 1.7600 -143 1012 4.6309 1.5750 1.7600 -143 1013 4.6887 1.5919 1.7600 -143 1014 4.7498 1.6140 1.7600 -143 1015 4.8158 1.6434 1.7600 -143 1016 4.8889 1.6802 1.7600 -143 1017 4.9714 1.7194 1.7600 -143 1018 5.0594 1.7492 1.7600 -143 1019 5.1381 1.7682 1.7600 -143 1020 5.2116 1.7807 1.7600 -143 1021 5.2784 1.7910 1.7600 -143 1022 5.3446 1.7954 1.7600 -143 1023 5.4130 1.7922 1.7600 -143 1024 5.4838 1.7844 1.7600 -143 1025 5.5609 1.7724 1.7600 -143 1026 5.6489 1.7573 1.7600 -143 1027 5.7435 1.7437 1.7600 -143 1028 5.8398 1.7321 1.7600 -143 1029 5.9276 1.7339 1.7600 -144 790 -7.8297 1.6119 1.7600 -144 791 -7.7814 1.6173 1.7600 -144 792 -7.7358 1.6226 1.7600 -144 793 -7.6923 1.6264 1.7600 -144 794 -7.6510 1.6258 1.7600 -144 795 -7.6125 1.6219 1.7600 -144 796 -7.5727 1.6159 1.7600 -144 797 -7.5283 1.6066 1.7600 -144 798 -7.4794 1.5939 1.7600 -144 799 -7.4284 1.5774 1.7600 -144 800 -7.3778 1.5549 1.7600 -144 801 -7.3311 1.5261 1.7600 -144 802 -7.2911 1.4953 1.7600 -144 803 -7.2544 1.4685 1.7600 -144 804 -7.2188 1.4484 1.7600 -144 805 -7.1824 1.4342 1.7600 -144 806 -7.1427 1.4244 1.7600 -144 807 -7.0988 1.4155 1.7600 -144 808 -7.0503 1.4071 1.7600 -144 809 -6.9978 1.4013 1.7600 -144 810 -6.9439 1.4004 1.7600 -144 811 -6.8891 1.4028 1.7600 -144 812 -6.8341 1.4075 1.7600 -144 813 -6.7843 1.4152 1.7600 -144 814 -6.7384 1.4262 1.7600 -144 815 -6.6878 1.4302 1.7600 -144 816 -6.6376 1.4282 1.7600 -144 817 -6.5859 1.4264 1.7600 -144 818 -6.5339 1.4248 1.7600 -144 819 -6.4785 1.4161 1.7600 -144 820 -6.4263 1.4039 1.7600 -144 821 -6.3725 1.3838 1.7600 -144 822 -6.3181 1.3648 1.7600 -144 823 -6.2689 1.3444 1.7600 -144 824 -6.2189 1.3226 1.7600 -144 825 -6.1719 1.3050 1.7600 -144 826 -6.1253 1.2912 1.7600 -144 827 -6.0792 1.2831 1.7600 -144 828 -6.0381 1.2756 1.7600 -144 829 -5.9931 1.2695 1.7600 -144 830 -5.9470 1.2644 1.7600 -144 831 -5.8963 1.2638 1.7600 -144 832 -5.8499 1.2644 1.7600 -144 833 -5.8003 1.2674 1.7600 -144 834 -5.7568 1.2728 1.7600 -144 835 -5.7117 1.2775 1.7600 -144 836 -5.6707 1.2803 1.7600 -144 837 -5.6282 1.2783 1.7600 -144 838 -5.5873 1.2733 1.7600 -144 839 -5.5476 1.2670 1.7600 -144 840 -5.5069 1.2617 1.7600 -144 841 -5.4632 1.2551 1.7600 -144 842 -5.4199 1.2447 1.7600 -144 843 -5.3756 1.2317 1.7600 -144 844 -5.3313 1.2130 1.7600 -144 845 -5.2884 1.1944 1.7600 -144 846 -5.2467 1.1724 1.7600 -144 847 -5.2064 1.1549 1.7600 -144 848 -5.1639 1.1420 1.7600 -144 849 -5.1234 1.1327 1.7600 -144 850 -5.0790 1.1256 1.7600 -144 851 -5.0332 1.1207 1.7600 -144 852 -4.9859 1.1156 1.7600 -144 853 -4.9377 1.1151 1.7600 -144 854 -4.8886 1.1162 1.7600 -144 855 -4.8377 1.1231 1.7600 -144 856 -4.7863 1.1309 1.7600 -144 857 -4.7350 1.1387 1.7600 -144 858 -4.6860 1.1438 1.7600 -144 859 -4.6396 1.1461 1.7600 -144 860 -4.5981 1.1461 1.7600 -144 861 -4.5546 1.1431 1.7600 -144 862 -4.5139 1.1399 1.7600 -144 863 -4.4762 1.1345 1.7600 -144 864 -4.4426 1.1331 1.7600 -144 865 -4.4061 1.1248 1.7600 -144 866 -4.3714 1.1121 1.7600 -144 867 -4.3347 1.0925 1.7600 -144 868 -4.2989 1.0694 1.7600 -144 869 -4.2609 1.0456 1.7600 -144 870 -4.2254 1.0222 1.7600 -144 871 -4.1831 1.0015 1.7600 -144 872 -4.1384 0.9847 1.7600 -144 873 -4.0950 0.9708 1.7600 -144 874 -4.0477 0.9573 1.7600 -144 875 -4.0002 0.9461 1.7600 -144 876 -3.9470 0.9391 1.7600 -144 877 -3.9011 0.9384 1.7600 -144 878 -3.8540 0.9439 1.7600 -144 879 -3.8080 0.9526 1.7600 -144 880 -3.7603 0.9619 1.7600 -144 881 -3.7162 0.9695 1.7600 -144 882 -3.6720 0.9738 1.7600 -144 883 -3.6287 0.9740 1.7600 -144 884 -3.5845 0.9716 1.7600 -144 885 -3.5388 0.9665 1.7600 -144 886 -3.4965 0.9618 1.7600 -144 887 -3.4535 0.9528 1.7600 -144 888 -3.4082 0.9410 1.7600 -144 889 -3.3649 0.9240 1.7600 -144 890 -3.3217 0.9064 1.7600 -144 891 -3.2805 0.8921 1.7600 -144 892 -3.2364 0.8806 1.7600 -144 893 -3.1965 0.8756 1.7600 -144 894 -3.1502 0.8765 1.7600 -144 895 -3.1056 0.8794 1.7600 -144 896 -3.0586 0.8857 1.7600 -144 897 -3.0096 0.8962 1.7600 -144 898 -2.9602 0.9120 1.7600 -144 899 -2.9096 0.9269 1.7600 -144 900 -2.8537 0.9431 1.7600 -144 901 -2.7995 0.9596 1.7600 -144 902 -2.7440 0.9709 1.7600 -144 903 -2.6890 0.9750 1.7600 -144 904 -2.6333 0.9755 1.7600 -144 905 -2.5821 0.9716 1.7600 -144 906 -2.5213 0.9603 1.7600 -144 907 -2.4756 0.9511 1.7600 -144 908 -2.4206 0.9313 1.7600 -144 909 -2.3659 0.9084 1.7600 -144 910 -2.3101 0.8839 1.7600 -144 911 -2.2534 0.8630 1.7600 -144 912 -2.1965 0.8469 1.7600 -144 913 -2.1398 0.8358 1.7600 -144 914 -2.0851 0.8284 1.7600 -144 915 -2.0283 0.8220 1.7600 -144 916 -1.9683 0.8238 1.7600 -144 917 -1.9077 0.8291 1.7600 -144 918 -1.8468 0.8437 1.7600 -144 919 -1.7851 0.8535 1.7600 -144 920 -1.7284 0.8597 1.7600 -144 921 -1.6717 0.8611 1.7600 -144 922 -1.6115 0.8598 1.7600 -144 923 -1.5523 0.8538 1.7600 -144 924 -1.4957 0.8437 1.7600 -144 925 -1.4388 0.8283 1.7600 -144 926 -1.3792 0.8080 1.7600 -144 927 -1.3134 0.7815 1.7600 -144 928 -1.2481 0.7619 1.7600 -144 929 -1.1821 0.7469 1.7600 -144 930 -1.1159 0.7426 1.7600 -144 931 -1.0471 0.7404 1.7600 -144 932 -0.9781 0.7389 1.7600 -144 933 -0.9115 0.7414 1.7600 -144 934 -0.8447 0.7466 1.7600 -144 935 -0.7785 0.7589 1.7600 -144 936 -0.7118 0.7732 1.7600 -144 937 -0.6484 0.7910 1.7600 -144 938 -0.5867 0.8086 1.7600 -144 939 -0.5263 0.8172 1.7600 -144 940 -0.4671 0.8162 1.7600 -144 941 -0.4061 0.8160 1.7600 -144 942 -0.3424 0.8127 1.7600 -144 943 -0.2743 0.8052 1.7600 -144 944 -0.2063 0.7968 1.7600 -144 945 -0.1359 0.7822 1.7600 -144 946 -0.0691 0.7638 1.7600 -144 947 -0.0023 0.7479 1.7600 -144 948 0.0638 0.7391 1.7600 -144 949 0.1294 0.7373 1.7600 -144 950 0.1921 0.7404 1.7600 -144 951 0.2582 0.7471 1.7600 -144 952 0.3279 0.7557 1.7600 -144 953 0.3984 0.7655 1.7600 -144 954 0.4690 0.7787 1.7600 -144 955 0.5381 0.7953 1.7600 -144 956 0.6029 0.8136 1.7600 -144 957 0.6647 0.8273 1.7600 -144 958 0.7211 0.8369 1.7600 -144 959 0.7806 0.8392 1.7600 -144 960 0.8408 0.8349 1.7600 -144 961 0.9029 0.8274 1.7600 -144 962 0.9648 0.8179 1.7600 -144 963 1.0253 0.7994 1.7600 -144 964 1.0869 0.7772 1.7600 -144 965 1.1468 0.7510 1.7600 -144 966 1.2105 0.7319 1.7600 -144 967 1.2782 0.7212 1.7600 -144 968 1.3459 0.7140 1.7600 -144 969 1.4196 0.7147 1.7600 -144 970 1.4925 0.7155 1.7600 -144 971 1.5654 0.7186 1.7600 -144 972 1.6360 0.7257 1.7600 -144 973 1.7030 0.7362 1.7600 -144 974 1.7675 0.7505 1.7600 -144 975 1.8289 0.7650 1.7600 -144 976 1.8898 0.7753 1.7600 -144 977 1.9477 0.7772 1.7600 -144 978 2.0040 0.7717 1.7600 -144 979 2.0620 0.7652 1.7600 -144 980 2.1235 0.7578 1.7600 -144 981 2.1869 0.7481 1.7600 -144 982 2.2523 0.7376 1.7600 -144 983 2.3187 0.7207 1.7600 -144 984 2.3882 0.7065 1.7600 -144 985 2.4598 0.6938 1.7600 -144 986 2.5327 0.6880 1.7600 -144 987 2.6083 0.6862 1.7600 -144 988 2.6831 0.6904 1.7600 -144 989 2.7526 0.6952 1.7600 -144 990 2.8246 0.7039 1.7600 -144 991 2.8936 0.7154 1.7600 -144 992 2.9652 0.7326 1.7600 -144 993 3.0350 0.7523 1.7600 -144 994 3.1038 0.7719 1.7600 -144 995 3.1713 0.7810 1.7600 -144 996 3.2406 0.7849 1.7600 -144 997 3.3070 0.7848 1.7600 -144 998 3.3739 0.7832 1.7600 -144 999 3.4420 0.7810 1.7600 -144 1000 3.5134 0.7741 1.7600 -144 1001 3.5880 0.7627 1.7600 -144 1002 3.6664 0.7502 1.7600 -144 1003 3.7476 0.7430 1.7600 -144 1004 3.8298 0.7445 1.7600 -144 1005 3.9095 0.7518 1.7600 -144 1006 3.9878 0.7618 1.7600 -144 1007 4.0644 0.7724 1.7600 -144 1008 4.1401 0.7866 1.7600 -144 1009 4.2127 0.8078 1.7600 -144 1010 4.2888 0.8333 1.7600 -144 1011 4.3695 0.8600 1.7600 -144 1012 4.4506 0.8774 1.7600 -144 1013 4.5291 0.8846 1.7600 -144 1014 4.6070 0.8875 1.7600 -144 1015 4.6786 0.8881 1.7600 -144 1016 4.7464 0.8888 1.7600 -144 1017 4.8163 0.8864 1.7600 -144 1018 4.8894 0.8796 1.7600 -144 1019 4.9664 0.8692 1.7600 -144 1020 5.0483 0.8584 1.7600 -144 1021 5.1341 0.8567 1.7600 -144 1022 5.2205 0.8621 1.7600 -144 1023 5.3014 0.8732 1.7600 -144 1024 5.3751 0.8839 1.7600 -144 1025 5.4453 0.8954 1.7600 -144 1026 5.5167 0.9102 1.7600 -144 1027 5.5910 0.9297 1.7600 -144 1028 5.6710 0.9536 1.7600 -144 1029 5.7557 0.9744 1.7600 -144 1030 5.8419 0.9838 1.7600 -144 1031 5.9284 0.9844 1.7600 -145 812 -7.7815 0.9623 1.7600 -145 813 -7.7299 0.9660 1.7600 -145 814 -7.6777 0.9698 1.7600 -145 815 -7.6306 0.9691 1.7600 -145 816 -7.5877 0.9635 1.7600 -145 817 -7.5451 0.9490 1.7600 -145 818 -7.5051 0.9332 1.7600 -145 819 -7.4653 0.9177 1.7600 -145 820 -7.4222 0.8973 1.7600 -145 821 -7.3790 0.8704 1.7600 -145 822 -7.3351 0.8401 1.7600 -145 823 -7.2938 0.8076 1.7600 -145 824 -7.2531 0.7725 1.7600 -145 825 -7.2103 0.7419 1.7600 -145 826 -7.1640 0.7166 1.7600 -145 827 -7.1155 0.6965 1.7600 -145 828 -7.0637 0.6822 1.7600 -145 829 -7.0161 0.6716 1.7600 -145 830 -6.9629 0.6617 1.7600 -145 831 -6.9114 0.6545 1.7600 -145 832 -6.8502 0.6510 1.7600 -145 833 -6.7870 0.6506 1.7600 -145 834 -6.7218 0.6534 1.7600 -145 835 -6.6599 0.6546 1.7600 -145 836 -6.6078 0.6525 1.7600 -145 837 -6.5598 0.6470 1.7600 -145 838 -6.5151 0.6369 1.7600 -145 839 -6.4739 0.6237 1.7600 -145 840 -6.4345 0.6106 1.7600 -145 841 -6.3962 0.5949 1.7600 -145 842 -6.3563 0.5768 1.7600 -145 843 -6.3181 0.5576 1.7600 -145 844 -6.2801 0.5343 1.7600 -145 845 -6.2436 0.5101 1.7600 -145 846 -6.2119 0.4924 1.7600 -145 847 -6.1763 0.4800 1.7600 -145 848 -6.1392 0.4750 1.7600 -145 849 -6.0968 0.4762 1.7600 -145 850 -6.0546 0.4803 1.7600 -145 851 -6.0057 0.4860 1.7600 -145 852 -5.9569 0.4965 1.7600 -145 853 -5.9033 0.5088 1.7600 -145 854 -5.8466 0.5271 1.7600 -145 855 -5.7944 0.5407 1.7600 -145 856 -5.7485 0.5497 1.7600 -145 857 -5.6991 0.5498 1.7600 -145 858 -5.6550 0.5425 1.7600 -145 859 -5.6133 0.5352 1.7600 -145 860 -5.5738 0.5253 1.7600 -145 861 -5.5264 0.5088 1.7600 -145 862 -5.4728 0.4855 1.7600 -145 863 -5.4211 0.4569 1.7600 -145 864 -5.3702 0.4269 1.7600 -145 865 -5.3222 0.4003 1.7600 -145 866 -5.2817 0.3793 1.7600 -145 867 -5.2406 0.3690 1.7600 -145 868 -5.1973 0.3649 1.7600 -145 869 -5.1532 0.3654 1.7600 -145 870 -5.1118 0.3679 1.7600 -145 871 -5.0705 0.3754 1.7600 -145 872 -5.0257 0.3866 1.7600 -145 873 -4.9797 0.4009 1.7600 -145 874 -4.9311 0.4209 1.7600 -145 875 -4.8786 0.4433 1.7600 -145 876 -4.8292 0.4668 1.7600 -145 877 -4.7843 0.4843 1.7600 -145 878 -4.7375 0.4920 1.7600 -145 879 -4.6888 0.4929 1.7600 -145 880 -4.6393 0.4937 1.7600 -145 881 -4.5914 0.4905 1.7600 -145 882 -4.5398 0.4859 1.7600 -145 883 -4.4873 0.4751 1.7600 -145 884 -4.4351 0.4613 1.7600 -145 885 -4.3763 0.4423 1.7600 -145 886 -4.3201 0.4229 1.7600 -145 887 -4.2651 0.4071 1.7600 -145 888 -4.2154 0.4001 1.7600 -145 889 -4.1625 0.3983 1.7600 -145 890 -4.1084 0.4026 1.7600 -145 891 -4.0519 0.4124 1.7600 -145 892 -3.9957 0.4229 1.7600 -145 893 -3.9347 0.4351 1.7600 -145 894 -3.8776 0.4524 1.7600 -145 895 -3.8128 0.4737 1.7600 -145 896 -3.7473 0.4963 1.7600 -145 897 -3.6910 0.5149 1.7600 -145 898 -3.6365 0.5236 1.7600 -145 899 -3.5813 0.5275 1.7600 -145 900 -3.5273 0.5268 1.7600 -145 901 -3.4799 0.5256 1.7600 -145 902 -3.4271 0.5224 1.7600 -145 903 -3.3771 0.5127 1.7600 -145 904 -3.3254 0.5015 1.7600 -145 905 -3.2695 0.4891 1.7600 -145 906 -3.2200 0.4772 1.7600 -145 907 -3.1730 0.4717 1.7600 -145 908 -3.1236 0.4746 1.7600 -145 909 -3.0780 0.4846 1.7600 -145 910 -3.0301 0.4990 1.7600 -145 911 -2.9875 0.5158 1.7600 -145 912 -2.9396 0.5361 1.7600 -145 913 -2.8872 0.5584 1.7600 -145 914 -2.8238 0.5814 1.7600 -145 915 -2.7685 0.5998 1.7600 -145 916 -2.7165 0.6146 1.7600 -145 917 -2.6651 0.6218 1.7600 -145 918 -2.6160 0.6228 1.7600 -145 919 -2.5694 0.6231 1.7600 -145 920 -2.5217 0.6238 1.7600 -145 921 -2.4738 0.6239 1.7600 -145 922 -2.4258 0.6217 1.7600 -145 923 -2.3788 0.6159 1.7600 -145 924 -2.3277 0.6057 1.7600 -145 925 -2.2707 0.5904 1.7600 -145 926 -2.2220 0.5809 1.7600 -145 927 -2.1738 0.5774 1.7600 -145 928 -2.1253 0.5784 1.7600 -145 929 -2.0759 0.5820 1.7600 -145 930 -2.0275 0.5883 1.7600 -145 931 -1.9796 0.5956 1.7600 -145 932 -1.9302 0.6059 1.7600 -145 933 -1.8796 0.6198 1.7600 -145 934 -1.8276 0.6362 1.7600 -145 935 -1.7715 0.6538 1.7600 -145 936 -1.7157 0.6682 1.7600 -145 937 -1.6666 0.6784 1.7600 -145 938 -1.6160 0.6801 1.7600 -145 939 -1.5625 0.6767 1.7600 -145 940 -1.5147 0.6713 1.7600 -145 941 -1.4666 0.6654 1.7600 -145 942 -1.4181 0.6572 1.7600 -145 943 -1.3709 0.6460 1.7600 -145 944 -1.3237 0.6314 1.7600 -145 945 -1.2690 0.6128 1.7600 -145 946 -1.2149 0.5948 1.7600 -145 947 -1.1629 0.5814 1.7600 -145 948 -1.1100 0.5713 1.7600 -145 949 -1.0561 0.5685 1.7600 -145 950 -0.9984 0.5691 1.7600 -145 951 -0.9415 0.5715 1.7600 -145 952 -0.8824 0.5774 1.7600 -145 953 -0.8185 0.5854 1.7600 -145 954 -0.7513 0.5983 1.7600 -145 955 -0.6802 0.6146 1.7600 -145 956 -0.6080 0.6305 1.7600 -145 957 -0.5444 0.6425 1.7600 -145 958 -0.4864 0.6441 1.7600 -145 959 -0.4307 0.6362 1.7600 -145 960 -0.3775 0.6261 1.7600 -145 961 -0.3262 0.6172 1.7600 -145 962 -0.2749 0.6052 1.7600 -145 963 -0.2234 0.5892 1.7600 -145 964 -0.1751 0.5714 1.7600 -145 965 -0.1254 0.5518 1.7600 -145 966 -0.0799 0.5339 1.7600 -145 967 -0.0352 0.5238 1.7600 -145 968 0.0121 0.5213 1.7600 -145 969 0.0661 0.5229 1.7600 -145 970 0.1235 0.5282 1.7600 -145 971 0.1816 0.5366 1.7600 -145 972 0.2419 0.5489 1.7600 -145 973 0.3047 0.5643 1.7600 -145 974 0.3727 0.5820 1.7600 -145 975 0.4384 0.5981 1.7600 -145 976 0.5004 0.6045 1.7600 -145 977 0.5597 0.6051 1.7600 -145 978 0.6176 0.5989 1.7600 -145 979 0.6748 0.5936 1.7600 -145 980 0.7292 0.5885 1.7600 -145 981 0.7836 0.5796 1.7600 -145 982 0.8379 0.5691 1.7600 -145 983 0.8907 0.5562 1.7600 -145 984 0.9382 0.5422 1.7600 -145 985 0.9898 0.5342 1.7600 -145 986 1.0453 0.5348 1.7600 -145 987 1.1061 0.5426 1.7600 -145 988 1.1691 0.5572 1.7600 -145 989 1.2272 0.5731 1.7600 -145 990 1.2876 0.5929 1.7600 -145 991 1.3475 0.6171 1.7600 -145 992 1.4106 0.6423 1.7600 -145 993 1.4663 0.6634 1.7600 -145 994 1.5207 0.6715 1.7600 -145 995 1.5737 0.6692 1.7600 -145 996 1.6260 0.6646 1.7600 -145 997 1.6779 0.6604 1.7600 -145 998 1.7320 0.6523 1.7600 -145 999 1.7858 0.6387 1.7600 -145 1000 1.8402 0.6195 1.7600 -145 1001 1.8932 0.5985 1.7600 -145 1002 1.9486 0.5758 1.7600 -145 1003 2.0009 0.5571 1.7600 -145 1004 2.0524 0.5437 1.7600 -145 1005 2.1045 0.5367 1.7600 -145 1006 2.1591 0.5360 1.7600 -145 1007 2.2107 0.5401 1.7600 -145 1008 2.2627 0.5457 1.7600 -145 1009 2.3161 0.5585 1.7600 -145 1010 2.3727 0.5751 1.7600 -145 1011 2.4339 0.5946 1.7600 -145 1012 2.4997 0.6162 1.7600 -145 1013 2.5629 0.6354 1.7600 -145 1014 2.6176 0.6505 1.7600 -145 1015 2.6730 0.6558 1.7600 -145 1016 2.7257 0.6582 1.7600 -145 1017 2.7769 0.6597 1.7600 -145 1018 2.8298 0.6580 1.7600 -145 1019 2.8788 0.6548 1.7600 -145 1020 2.9315 0.6452 1.7600 -145 1021 2.9816 0.6327 1.7600 -145 1022 3.0335 0.6175 1.7600 -145 1023 3.0897 0.6027 1.7600 -145 1024 3.1429 0.5932 1.7600 -145 1025 3.1975 0.5902 1.7600 -145 1026 3.2576 0.5943 1.7600 -145 1027 3.3250 0.6044 1.7600 -145 1028 3.3902 0.6165 1.7600 -145 1029 3.4512 0.6299 1.7600 -145 1030 3.5136 0.6496 1.7600 -145 1031 3.5793 0.6708 1.7600 -145 1032 3.6553 0.6926 1.7600 -145 1033 3.7286 0.7134 1.7600 -145 1034 3.7912 0.7219 1.7600 -145 1035 3.8538 0.7204 1.7600 -145 1036 3.9145 0.7175 1.7600 -145 1037 3.9704 0.7153 1.7600 -145 1038 4.0242 0.7127 1.7600 -145 1039 4.0773 0.7077 1.7600 -145 1040 4.1307 0.6991 1.7600 -145 1041 4.1879 0.6845 1.7600 -145 1042 4.2474 0.6680 1.7600 -145 1043 4.3135 0.6495 1.7600 -145 1044 4.3817 0.6340 1.7600 -145 1045 4.4411 0.6287 1.7600 -145 1046 4.5017 0.6283 1.7600 -145 1047 4.5643 0.6332 1.7600 -145 1048 4.6261 0.6377 1.7600 -145 1049 4.6848 0.6442 1.7600 -145 1050 4.7406 0.6534 1.7600 -145 1051 4.7989 0.6658 1.7600 -145 1052 4.8667 0.6806 1.7600 -145 1053 4.9380 0.6959 1.7600 -145 1054 5.0071 0.6995 1.7600 -145 1055 5.0702 0.6950 1.7600 -145 1056 5.1323 0.6865 1.7600 -145 1057 5.1906 0.6766 1.7600 -145 1058 5.2478 0.6657 1.7600 -145 1059 5.3030 0.6490 1.7600 -145 1060 5.3568 0.6296 1.7600 -145 1061 5.4043 0.6088 1.7600 -145 1062 5.4616 0.5819 1.7600 -145 1063 5.5159 0.5576 1.7600 -145 1064 5.5707 0.5378 1.7600 -145 1065 5.6283 0.5263 1.7600 -145 1066 5.6874 0.5213 1.7600 -145 1067 5.7483 0.5209 1.7600 -145 1068 5.8023 0.5225 1.7600 -145 1069 5.8564 0.5281 1.7600 -145 1070 5.9128 0.5393 1.7600 -146 794 -7.7893 2.2141 1.7600 -146 795 -7.7135 2.2398 1.7600 -146 796 -7.6402 2.2701 1.7600 -146 797 -7.5808 2.2962 1.7600 -146 798 -7.5255 2.3090 1.7600 -146 799 -7.4711 2.3096 1.7600 -146 800 -7.4183 2.3045 1.7600 -146 801 -7.3635 2.2955 1.7600 -146 802 -7.3074 2.2833 1.7600 -146 803 -7.2505 2.2681 1.7600 -146 804 -7.1931 2.2473 1.7600 -146 805 -7.1394 2.2228 1.7600 -146 806 -7.0972 2.2053 1.7600 -146 807 -7.0534 2.1828 1.7600 -146 808 -7.0097 2.1672 1.7600 -146 809 -6.9629 2.1593 1.7600 -146 810 -6.9138 2.1540 1.7600 -146 811 -6.8612 2.1485 1.7600 -146 812 -6.8044 2.1441 1.7600 -146 813 -6.7434 2.1414 1.7600 -146 814 -6.6771 2.1426 1.7600 -146 815 -6.6072 2.1500 1.7600 -146 816 -6.5375 2.1641 1.7600 -146 817 -6.4734 2.1807 1.7600 -146 818 -6.4121 2.1921 1.7600 -146 819 -6.3479 2.1939 1.7600 -146 820 -6.2795 2.1934 1.7600 -146 821 -6.2159 2.1880 1.7600 -146 822 -6.1531 2.1790 1.7600 -146 823 -6.0911 2.1681 1.7600 -146 824 -6.0303 2.1493 1.7600 -146 825 -5.9745 2.1300 1.7600 -146 826 -5.9225 2.1033 1.7600 -146 827 -5.8707 2.0789 1.7600 -146 828 -5.8202 2.0548 1.7600 -146 829 -5.7754 2.0332 1.7600 -146 830 -5.7230 2.0206 1.7600 -146 831 -5.6693 2.0121 1.7600 -146 832 -5.6137 2.0060 1.7600 -146 833 -5.5611 1.9992 1.7600 -146 834 -5.5085 1.9929 1.7600 -146 835 -5.4546 1.9892 1.7600 -146 836 -5.3995 1.9898 1.7600 -146 837 -5.3440 1.9973 1.7600 -146 838 -5.2880 2.0096 1.7600 -146 839 -5.2328 2.0215 1.7600 -146 840 -5.1868 2.0332 1.7600 -146 841 -5.1416 2.0373 1.7600 -146 842 -5.0943 2.0317 1.7600 -146 843 -5.0459 2.0238 1.7600 -146 844 -5.0014 2.0160 1.7600 -146 845 -4.9581 2.0043 1.7600 -146 846 -4.9151 1.9884 1.7600 -146 847 -4.8762 1.9674 1.7600 -146 848 -4.8455 1.9389 1.7600 -146 849 -4.8203 1.9073 1.7600 -146 850 -4.7944 1.8751 1.7600 -146 851 -4.7684 1.8385 1.7600 -146 852 -4.7394 1.8073 1.7600 -146 853 -4.7020 1.7774 1.7600 -146 854 -4.6614 1.7488 1.7600 -146 855 -4.6203 1.7254 1.7600 -146 856 -4.5799 1.7024 1.7600 -146 857 -4.5349 1.6839 1.7600 -146 858 -4.4895 1.6682 1.7600 -146 859 -4.4451 1.6600 1.7600 -146 860 -4.4013 1.6579 1.7600 -146 861 -4.3527 1.6573 1.7600 -146 862 -4.3073 1.6551 1.7600 -146 863 -4.2592 1.6501 1.7600 -146 864 -4.2045 1.6391 1.7600 -146 865 -4.1534 1.6217 1.7600 -146 866 -4.1009 1.5985 1.7600 -146 867 -4.0578 1.5741 1.7600 -146 868 -4.0208 1.5533 1.7600 -146 869 -3.9956 1.5356 1.7600 -146 870 -3.9745 1.5177 1.7600 -146 871 -3.9549 1.4952 1.7600 -146 872 -3.9286 1.4769 1.7600 -146 873 -3.8928 1.4635 1.7600 -146 874 -3.8512 1.4529 1.7600 -146 875 -3.8075 1.4442 1.7600 -146 876 -3.7592 1.4406 1.7600 -146 877 -3.7147 1.4385 1.7600 -146 878 -3.6655 1.4446 1.7600 -146 879 -3.6193 1.4558 1.7600 -146 880 -3.5731 1.4709 1.7600 -146 881 -3.5269 1.4810 1.7600 -146 882 -3.4802 1.4848 1.7600 -146 883 -3.4264 1.4818 1.7600 -146 884 -3.3713 1.4734 1.7600 -146 885 -3.3140 1.4608 1.7600 -146 886 -3.2622 1.4449 1.7600 -146 887 -3.2163 1.4228 1.7600 -146 888 -3.1629 1.3980 1.7600 -146 889 -3.1101 1.3759 1.7600 -146 890 -3.0547 1.3609 1.7600 -146 891 -2.9996 1.3537 1.7600 -146 892 -2.9449 1.3504 1.7600 -146 893 -2.8926 1.3520 1.7600 -146 894 -2.8407 1.3583 1.7600 -146 895 -2.7923 1.3661 1.7600 -146 896 -2.7468 1.3791 1.7600 -146 897 -2.7037 1.3980 1.7600 -146 898 -2.6593 1.4228 1.7600 -146 899 -2.6134 1.4501 1.7600 -146 900 -2.5686 1.4811 1.7600 -146 901 -2.5268 1.5045 1.7600 -146 902 -2.4809 1.5212 1.7600 -146 903 -2.4364 1.5293 1.7600 -146 904 -2.3934 1.5321 1.7600 -146 905 -2.3492 1.5287 1.7600 -146 906 -2.3067 1.5199 1.7600 -146 907 -2.2687 1.5063 1.7600 -146 908 -2.2346 1.4864 1.7600 -146 909 -2.1972 1.4587 1.7600 -146 910 -2.1558 1.4355 1.7600 -146 911 -2.1111 1.4196 1.7600 -146 912 -2.0648 1.4108 1.7600 -146 913 -2.0172 1.4023 1.7600 -146 914 -1.9671 1.3977 1.7600 -146 915 -1.9140 1.3980 1.7600 -146 916 -1.8623 1.4010 1.7600 -146 917 -1.8070 1.4103 1.7600 -146 918 -1.7550 1.4221 1.7600 -146 919 -1.6960 1.4417 1.7600 -146 920 -1.6391 1.4621 1.7600 -146 921 -1.5843 1.4838 1.7600 -146 922 -1.5283 1.4937 1.7600 -146 923 -1.4754 1.4973 1.7600 -146 924 -1.4221 1.4984 1.7600 -146 925 -1.3681 1.4960 1.7600 -146 926 -1.3129 1.4891 1.7600 -146 927 -1.2584 1.4791 1.7600 -146 928 -1.2047 1.4608 1.7600 -146 929 -1.1568 1.4428 1.7600 -146 930 -1.1071 1.4253 1.7600 -146 931 -1.0627 1.4167 1.7600 -146 932 -1.0193 1.4154 1.7600 -146 933 -0.9801 1.4179 1.7600 -146 934 -0.9407 1.4231 1.7600 -146 935 -0.9002 1.4281 1.7600 -146 936 -0.8543 1.4355 1.7600 -146 937 -0.8065 1.4464 1.7600 -146 938 -0.7547 1.4639 1.7600 -146 939 -0.7010 1.4813 1.7600 -146 940 -0.6515 1.5065 1.7600 -146 941 -0.5992 1.5218 1.7600 -146 942 -0.5447 1.5290 1.7600 -146 943 -0.4885 1.5302 1.7600 -146 944 -0.4331 1.5300 1.7600 -146 945 -0.3786 1.5286 1.7600 -146 946 -0.3243 1.5235 1.7600 -146 947 -0.2725 1.5141 1.7600 -146 948 -0.2195 1.5042 1.7600 -146 949 -0.1735 1.4893 1.7600 -146 950 -0.1253 1.4698 1.7600 -146 951 -0.0766 1.4597 1.7600 -146 952 -0.0156 1.4581 1.7600 -146 953 0.0552 1.4591 1.7600 -146 954 0.1213 1.4593 1.7600 -146 955 0.1878 1.4627 1.7600 -146 956 0.2520 1.4701 1.7600 -146 957 0.3162 1.4880 1.7600 -146 958 0.3789 1.5075 1.7600 -146 959 0.4406 1.5293 1.7600 -146 960 0.5009 1.5480 1.7600 -146 961 0.5597 1.5612 1.7600 -146 962 0.6242 1.5645 1.7600 -146 963 0.6874 1.5624 1.7600 -146 964 0.7523 1.5575 1.7600 -146 965 0.8171 1.5500 1.7600 -146 966 0.8845 1.5390 1.7600 -146 967 0.9482 1.5249 1.7600 -146 968 1.0104 1.5086 1.7600 -146 969 1.0703 1.4943 1.7600 -146 970 1.1253 1.4794 1.7600 -146 971 1.1768 1.4721 1.7600 -146 972 1.2314 1.4683 1.7600 -146 973 1.2865 1.4664 1.7600 -146 974 1.3418 1.4646 1.7600 -146 975 1.4014 1.4627 1.7600 -146 976 1.4654 1.4642 1.7600 -146 977 1.5299 1.4740 1.7600 -146 978 1.5947 1.4909 1.7600 -146 979 1.6595 1.5074 1.7600 -146 980 1.7196 1.5232 1.7600 -146 981 1.7802 1.5315 1.7600 -146 982 1.8433 1.5317 1.7600 -146 983 1.9052 1.5245 1.7600 -146 984 1.9619 1.5179 1.7600 -146 985 2.0219 1.5086 1.7600 -146 986 2.0769 1.4967 1.7600 -146 987 2.1298 1.4857 1.7600 -146 988 2.1785 1.4723 1.7600 -146 989 2.2266 1.4599 1.7600 -146 990 2.2755 1.4503 1.7600 -146 991 2.3304 1.4457 1.7600 -146 992 2.3875 1.4460 1.7600 -146 993 2.4474 1.4492 1.7600 -146 994 2.5067 1.4520 1.7600 -146 995 2.5702 1.4576 1.7600 -146 996 2.6335 1.4640 1.7600 -146 997 2.6981 1.4769 1.7600 -146 998 2.7595 1.4960 1.7600 -146 999 2.8266 1.5180 1.7600 -146 1000 2.8934 1.5321 1.7600 -146 1001 2.9589 1.5391 1.7600 -146 1002 3.0298 1.5373 1.7600 -146 1003 3.0961 1.5337 1.7600 -146 1004 3.1598 1.5287 1.7600 -146 1005 3.2230 1.5229 1.7600 -146 1006 3.2871 1.5144 1.7600 -146 1007 3.3454 1.5021 1.7600 -146 1008 3.4021 1.4855 1.7600 -146 1009 3.4616 1.4646 1.7600 -146 1010 3.5224 1.4471 1.7600 -146 1011 3.5822 1.4371 1.7600 -146 1012 3.6429 1.4342 1.7600 -146 1013 3.7065 1.4365 1.7600 -146 1014 3.7664 1.4431 1.7600 -146 1015 3.8260 1.4517 1.7600 -146 1016 3.8891 1.4710 1.7600 -146 1017 3.9444 1.4906 1.7600 -146 1018 3.9996 1.5204 1.7600 -146 1019 4.0662 1.5559 1.7600 -146 1020 4.1275 1.5922 1.7600 -146 1021 4.1787 1.6206 1.7600 -146 1022 4.2256 1.6410 1.7600 -146 1023 4.2759 1.6540 1.7600 -146 1024 4.3280 1.6628 1.7600 -146 1025 4.3817 1.6704 1.7600 -146 1026 4.4396 1.6735 1.7600 -146 1027 4.5012 1.6717 1.7600 -146 1028 4.5658 1.6633 1.7600 -146 1029 4.6401 1.6536 1.7600 -146 1030 4.7137 1.6435 1.7600 -146 1031 4.7846 1.6396 1.7600 -146 1032 4.8531 1.6443 1.7600 -146 1033 4.9236 1.6549 1.7600 -146 1034 4.9882 1.6678 1.7600 -146 1035 5.0540 1.6813 1.7600 -146 1036 5.1245 1.6990 1.7600 -146 1037 5.1945 1.7206 1.7600 -146 1038 5.2651 1.7481 1.7600 -146 1039 5.3409 1.7800 1.7600 -146 1040 5.4170 1.8099 1.7600 -146 1041 5.4943 1.8339 1.7600 -146 1042 5.5711 1.8487 1.7600 -146 1043 5.6443 1.8585 1.7600 -146 1044 5.7140 1.8656 1.7600 -146 1045 5.7811 1.8684 1.7600 -146 1046 5.8502 1.8687 1.7600 -146 1047 5.9195 1.8658 1.7600 -147 810 -7.8201 1.5488 1.7600 -147 811 -7.7739 1.5457 1.7600 -147 812 -7.7234 1.5432 1.7600 -147 813 -7.6667 1.5436 1.7600 -147 814 -7.6062 1.5473 1.7600 -147 815 -7.5458 1.5559 1.7600 -147 816 -7.4899 1.5680 1.7600 -147 817 -7.4408 1.5789 1.7600 -147 818 -7.3972 1.5838 1.7600 -147 819 -7.3585 1.5848 1.7600 -147 820 -7.3227 1.5833 1.7600 -147 821 -7.2855 1.5790 1.7600 -147 822 -7.2422 1.5699 1.7600 -147 823 -7.1944 1.5541 1.7600 -147 824 -7.1412 1.5326 1.7600 -147 825 -7.0857 1.5079 1.7600 -147 826 -7.0372 1.4875 1.7600 -147 827 -6.9971 1.4651 1.7600 -147 828 -6.9548 1.4414 1.7600 -147 829 -6.9092 1.4251 1.7600 -147 830 -6.8640 1.4133 1.7600 -147 831 -6.8148 1.4038 1.7600 -147 832 -6.7625 1.3972 1.7600 -147 833 -6.7052 1.3940 1.7600 -147 834 -6.6450 1.3927 1.7600 -147 835 -6.5816 1.3953 1.7600 -147 836 -6.5228 1.4030 1.7600 -147 837 -6.4699 1.4117 1.7600 -147 838 -6.4199 1.4129 1.7600 -147 839 -6.3751 1.4078 1.7600 -147 840 -6.3313 1.4027 1.7600 -147 841 -6.2826 1.3960 1.7600 -147 842 -6.2330 1.3859 1.7600 -147 843 -6.1797 1.3718 1.7600 -147 844 -6.1262 1.3522 1.7600 -147 845 -6.0744 1.3279 1.7600 -147 846 -6.0293 1.3018 1.7600 -147 847 -5.9815 1.2812 1.7600 -147 848 -5.9392 1.2619 1.7600 -147 849 -5.8892 1.2523 1.7600 -147 850 -5.8402 1.2433 1.7600 -147 851 -5.7891 1.2376 1.7600 -147 852 -5.7382 1.2350 1.7600 -147 853 -5.6846 1.2359 1.7600 -147 854 -5.6274 1.2392 1.7600 -147 855 -5.5709 1.2480 1.7600 -147 856 -5.5141 1.2585 1.7600 -147 857 -5.4654 1.2686 1.7600 -147 858 -5.4198 1.2757 1.7600 -147 859 -5.3781 1.2758 1.7600 -147 860 -5.3365 1.2718 1.7600 -147 861 -5.2922 1.2616 1.7600 -147 862 -5.2474 1.2472 1.7600 -147 863 -5.2025 1.2306 1.7600 -147 864 -5.1553 1.2145 1.7600 -147 865 -5.1095 1.1955 1.7600 -147 866 -5.0685 1.1803 1.7600 -147 867 -5.0261 1.1729 1.7600 -147 868 -4.9794 1.1737 1.7600 -147 869 -4.9318 1.1741 1.7600 -147 870 -4.8782 1.1792 1.7600 -147 871 -4.8251 1.1873 1.7600 -147 872 -4.7698 1.2002 1.7600 -147 873 -4.7161 1.2192 1.7600 -147 874 -4.6648 1.2393 1.7600 -147 875 -4.6207 1.2620 1.7600 -147 876 -4.5752 1.2766 1.7600 -147 877 -4.5375 1.2825 1.7600 -147 878 -4.5005 1.2847 1.7600 -147 879 -4.4581 1.2868 1.7600 -147 880 -4.4124 1.2839 1.7600 -147 881 -4.3646 1.2778 1.7600 -147 882 -4.3151 1.2659 1.7600 -147 883 -4.2686 1.2490 1.7600 -147 884 -4.2222 1.2358 1.7600 -147 885 -4.1740 1.2254 1.7600 -147 886 -4.1279 1.2228 1.7600 -147 887 -4.0784 1.2251 1.7600 -147 888 -4.0279 1.2274 1.7600 -147 889 -3.9703 1.2333 1.7600 -147 890 -3.9118 1.2447 1.7600 -147 891 -3.8447 1.2598 1.7600 -147 892 -3.7749 1.2799 1.7600 -147 893 -3.7071 1.2976 1.7600 -147 894 -3.6495 1.3097 1.7600 -147 895 -3.6014 1.3154 1.7600 -147 896 -3.5532 1.3149 1.7600 -147 897 -3.5064 1.3115 1.7600 -147 898 -3.4571 1.3030 1.7600 -147 899 -3.4069 1.2916 1.7600 -147 900 -3.3520 1.2770 1.7600 -147 901 -3.2930 1.2592 1.7600 -147 902 -3.2339 1.2429 1.7600 -147 903 -3.1815 1.2263 1.7600 -147 904 -3.1346 1.2168 1.7600 -147 905 -3.0892 1.2147 1.7600 -147 906 -3.0451 1.2176 1.7600 -147 907 -2.9975 1.2200 1.7600 -147 908 -2.9464 1.2262 1.7600 -147 909 -2.8921 1.2357 1.7600 -147 910 -2.8390 1.2479 1.7600 -147 911 -2.7864 1.2658 1.7600 -147 912 -2.7328 1.2828 1.7600 -147 913 -2.6851 1.2974 1.7600 -147 914 -2.6412 1.3007 1.7600 -147 915 -2.6000 1.2977 1.7600 -147 916 -2.5604 1.2877 1.7600 -147 917 -2.5154 1.2799 1.7600 -147 918 -2.4687 1.2666 1.7600 -147 919 -2.4170 1.2495 1.7600 -147 920 -2.3641 1.2277 1.7600 -147 921 -2.3079 1.2016 1.7600 -147 922 -2.2466 1.1743 1.7600 -147 923 -2.1953 1.1540 1.7600 -147 924 -2.1445 1.1380 1.7600 -147 925 -2.0930 1.1263 1.7600 -147 926 -2.0454 1.1207 1.7600 -147 927 -1.9998 1.1189 1.7600 -147 928 -1.9548 1.1198 1.7600 -147 929 -1.9085 1.1213 1.7600 -147 930 -1.8575 1.1317 1.7600 -147 931 -1.8011 1.1464 1.7600 -147 932 -1.7412 1.1612 1.7600 -147 933 -1.6851 1.1729 1.7600 -147 934 -1.6286 1.1736 1.7600 -147 935 -1.5750 1.1654 1.7600 -147 936 -1.5251 1.1495 1.7600 -147 937 -1.4720 1.1353 1.7600 -147 938 -1.4132 1.1216 1.7600 -147 939 -1.3487 1.1052 1.7600 -147 940 -1.2830 1.0854 1.7600 -147 941 -1.2107 1.0646 1.7600 -147 942 -1.1368 1.0486 1.7600 -147 943 -1.0697 1.0437 1.7600 -147 944 -1.0083 1.0413 1.7600 -147 945 -0.9484 1.0432 1.7600 -147 946 -0.8872 1.0491 1.7600 -147 947 -0.8237 1.0585 1.7600 -147 948 -0.7605 1.0714 1.7600 -147 949 -0.6961 1.0883 1.7600 -147 950 -0.6284 1.1074 1.7600 -147 951 -0.5674 1.1226 1.7600 -147 952 -0.5104 1.1253 1.7600 -147 953 -0.4586 1.1209 1.7600 -147 954 -0.4043 1.1154 1.7600 -147 955 -0.3429 1.1068 1.7600 -147 956 -0.2776 1.0938 1.7600 -147 957 -0.2080 1.0784 1.7600 -147 958 -0.1374 1.0605 1.7600 -147 959 -0.0641 1.0411 1.7600 -147 960 0.0054 1.0283 1.7600 -147 961 0.0775 1.0248 1.7600 -147 962 0.1457 1.0279 1.7600 -147 963 0.2166 1.0319 1.7600 -147 964 0.2859 1.0379 1.7600 -147 965 0.3572 1.0460 1.7600 -147 966 0.4288 1.0597 1.7600 -147 967 0.4999 1.0786 1.7600 -147 968 0.5652 1.0996 1.7600 -147 969 0.6292 1.1119 1.7600 -147 970 0.6876 1.1104 1.7600 -147 971 0.7470 1.1014 1.7600 -147 972 0.8111 1.0904 1.7600 -147 973 0.8798 1.0750 1.7600 -147 974 0.9543 1.0614 1.7600 -147 975 1.0340 1.0442 1.7600 -147 976 1.1178 1.0239 1.7600 -147 977 1.1905 1.0050 1.7600 -147 978 1.2576 0.9953 1.7600 -147 979 1.3170 0.9967 1.7600 -147 980 1.3762 1.0038 1.7600 -147 981 1.4408 1.0100 1.7600 -147 982 1.5098 1.0163 1.7600 -147 983 1.5832 1.0238 1.7600 -147 984 1.6592 1.0380 1.7600 -147 985 1.7309 1.0531 1.7600 -147 986 1.7932 1.0687 1.7600 -147 987 1.8523 1.0720 1.7600 -147 988 1.9086 1.0632 1.7600 -147 989 1.9701 1.0547 1.7600 -147 990 2.0343 1.0434 1.7600 -147 991 2.0998 1.0292 1.7600 -147 992 2.1661 1.0114 1.7600 -147 993 2.2362 0.9930 1.7600 -147 994 2.3061 0.9711 1.7600 -147 995 2.3694 0.9566 1.7600 -147 996 2.4318 0.9495 1.7600 -147 997 2.4873 0.9500 1.7600 -147 998 2.5467 0.9528 1.7600 -147 999 2.6074 0.9544 1.7600 -147 1000 2.6748 0.9613 1.7600 -147 1001 2.7394 0.9738 1.7600 -147 1002 2.8096 0.9931 1.7600 -147 1003 2.8808 1.0125 1.7600 -147 1004 2.9439 1.0215 1.7600 -147 1005 3.0039 1.0217 1.7600 -147 1006 3.0599 1.0208 1.7600 -147 1007 3.1194 1.0177 1.7600 -147 1008 3.1786 1.0109 1.7600 -147 1009 3.2420 0.9980 1.7600 -147 1010 3.3086 0.9836 1.7600 -147 1011 3.3832 0.9615 1.7600 -147 1012 3.4584 0.9435 1.7600 -147 1013 3.5323 0.9286 1.7600 -147 1014 3.6011 0.9271 1.7600 -147 1015 3.6687 0.9287 1.7600 -147 1016 3.7336 0.9321 1.7600 -147 1017 3.8007 0.9360 1.7600 -147 1018 3.8698 0.9436 1.7600 -147 1019 3.9438 0.9553 1.7600 -147 1020 4.0247 0.9657 1.7600 -147 1021 4.1018 0.9683 1.7600 -147 1022 4.1726 0.9600 1.7600 -147 1023 4.2396 0.9466 1.7600 -147 1024 4.3080 0.9271 1.7600 -147 1025 4.3754 0.9051 1.7600 -147 1026 4.4475 0.8812 1.7600 -147 1027 4.5238 0.8545 1.7600 -147 1028 4.6077 0.8280 1.7600 -147 1029 4.6953 0.8029 1.7600 -147 1030 4.7784 0.7867 1.7600 -147 1031 4.8565 0.7754 1.7600 -147 1032 4.9343 0.7670 1.7600 -147 1033 5.0069 0.7596 1.7600 -147 1034 5.0806 0.7524 1.7600 -147 1035 5.1628 0.7480 1.7600 -147 1036 5.2533 0.7447 1.7600 -147 1037 5.3498 0.7381 1.7600 -147 1038 5.4433 0.7206 1.7600 -147 1039 5.5317 0.6945 1.7600 -147 1040 5.6086 0.6658 1.7600 -147 1041 5.6827 0.6387 1.7600 -147 1042 5.7519 0.6072 1.7600 -147 1043 5.8234 0.5720 1.7600 -147 1044 5.9058 0.5311 1.7600 -148 796 -7.8240 1.1055 1.7600 -148 797 -7.7888 1.0961 1.7600 -148 798 -7.7556 1.0795 1.7600 -148 799 -7.7185 1.0568 1.7600 -148 800 -7.6738 1.0315 1.7600 -148 801 -7.6118 1.0084 1.7600 -148 802 -7.5573 0.9869 1.7600 -148 803 -7.5087 0.9710 1.7600 -148 804 -7.4727 0.9593 1.7600 -148 805 -7.4444 0.9516 1.7600 -148 806 -7.4299 0.9347 1.7600 -148 807 -7.3877 0.9277 1.7600 -148 808 -7.3350 0.9302 1.7600 -148 809 -7.2887 0.9312 1.7600 -148 810 -7.2331 0.9377 1.7600 -148 811 -7.1713 0.9320 1.7600 -148 812 -7.1402 0.9137 1.7600 -148 813 -7.0963 0.8886 1.7600 -148 814 -7.0281 0.8655 1.7600 -148 815 -6.9633 0.8421 1.7600 -148 816 -6.9133 0.8218 1.7600 -148 817 -6.8644 0.7989 1.7600 -148 818 -6.8228 0.7730 1.7600 -148 819 -6.7822 0.7482 1.7600 -148 820 -6.7422 0.7252 1.7600 -148 821 -6.7015 0.7074 1.7600 -148 822 -6.6605 0.6941 1.7600 -148 823 -6.6195 0.6835 1.7600 -148 824 -6.5697 0.6782 1.7600 -148 825 -6.5207 0.6722 1.7600 -148 826 -6.4621 0.6790 1.7600 -148 827 -6.3952 0.6788 1.7600 -148 828 -6.3299 0.6703 1.7600 -148 829 -6.2730 0.6619 1.7600 -148 830 -6.2205 0.6571 1.7600 -148 831 -6.1715 0.6447 1.7600 -148 832 -6.1257 0.6270 1.7600 -148 833 -6.0832 0.6047 1.7600 -148 834 -6.0366 0.5812 1.7600 -148 835 -5.9941 0.5559 1.7600 -148 836 -5.9500 0.5269 1.7600 -148 837 -5.9126 0.4979 1.7600 -148 838 -5.8813 0.4644 1.7600 -148 839 -5.8494 0.4339 1.7600 -148 840 -5.8113 0.4109 1.7600 -148 841 -5.7732 0.4021 1.7600 -148 842 -5.7322 0.3998 1.7600 -148 843 -5.6904 0.3994 1.7600 -148 844 -5.6476 0.4038 1.7600 -148 845 -5.6045 0.4117 1.7600 -148 846 -5.5613 0.4245 1.7600 -148 847 -5.5167 0.4441 1.7600 -148 848 -5.4673 0.4629 1.7600 -148 849 -5.4136 0.4813 1.7600 -148 850 -5.3589 0.4949 1.7600 -148 851 -5.3068 0.5019 1.7600 -148 852 -5.2548 0.5039 1.7600 -148 853 -5.2063 0.4984 1.7600 -148 854 -5.1597 0.4904 1.7600 -148 855 -5.1148 0.4743 1.7600 -148 856 -5.0694 0.4565 1.7600 -148 857 -5.0228 0.4365 1.7600 -148 858 -4.9753 0.4118 1.7600 -148 859 -4.9276 0.3841 1.7600 -148 860 -4.8795 0.3583 1.7600 -148 861 -4.8362 0.3412 1.7600 -148 862 -4.7937 0.3283 1.7600 -148 863 -4.7514 0.3173 1.7600 -148 864 -4.7082 0.3115 1.7600 -148 865 -4.6674 0.3068 1.7600 -148 866 -4.6280 0.3098 1.7600 -148 867 -4.5884 0.3186 1.7600 -148 868 -4.5422 0.3321 1.7600 -148 869 -4.4897 0.3497 1.7600 -148 870 -4.4238 0.3672 1.7600 -148 871 -4.3542 0.3835 1.7600 -148 872 -4.2890 0.3954 1.7600 -148 873 -4.2304 0.4021 1.7600 -148 874 -4.1686 0.4088 1.7600 -148 875 -4.1105 0.4085 1.7600 -148 876 -4.0513 0.4068 1.7600 -148 877 -3.9957 0.3980 1.7600 -148 878 -3.9461 0.3816 1.7600 -148 879 -3.9002 0.3600 1.7600 -148 880 -3.8521 0.3322 1.7600 -148 881 -3.7979 0.3049 1.7600 -148 882 -3.7530 0.2804 1.7600 -148 883 -3.7136 0.2634 1.7600 -148 884 -3.6770 0.2544 1.7600 -148 885 -3.6404 0.2498 1.7600 -148 886 -3.6060 0.2470 1.7600 -148 887 -3.5704 0.2465 1.7600 -148 888 -3.5375 0.2481 1.7600 -148 889 -3.4990 0.2523 1.7600 -148 890 -3.4594 0.2628 1.7600 -148 891 -3.4173 0.2780 1.7600 -148 892 -3.3711 0.2984 1.7600 -148 893 -3.3249 0.3220 1.7600 -148 894 -3.2752 0.3425 1.7600 -148 895 -3.2259 0.3552 1.7600 -148 896 -3.1736 0.3605 1.7600 -148 897 -3.1212 0.3587 1.7600 -148 898 -3.0720 0.3518 1.7600 -148 899 -3.0251 0.3423 1.7600 -148 900 -2.9797 0.3271 1.7600 -148 901 -2.9364 0.3089 1.7600 -148 902 -2.8928 0.2833 1.7600 -148 903 -2.8461 0.2543 1.7600 -148 904 -2.8039 0.2254 1.7600 -148 905 -2.7627 0.2011 1.7600 -148 906 -2.7254 0.1768 1.7600 -148 907 -2.6882 0.1586 1.7600 -148 908 -2.6498 0.1486 1.7600 -148 909 -2.6074 0.1490 1.7600 -148 910 -2.5610 0.1601 1.7600 -148 911 -2.5119 0.1798 1.7600 -148 912 -2.4597 0.1998 1.7600 -148 913 -2.4038 0.2211 1.7600 -148 914 -2.3464 0.2424 1.7600 -148 915 -2.2909 0.2627 1.7600 -148 916 -2.2379 0.2784 1.7600 -148 917 -2.1867 0.2900 1.7600 -148 918 -2.1366 0.2981 1.7600 -148 919 -2.0885 0.3028 1.7600 -148 920 -2.0422 0.3049 1.7600 -148 921 -1.9948 0.3046 1.7600 -148 922 -1.9457 0.3011 1.7600 -148 923 -1.8932 0.2926 1.7600 -148 924 -1.8389 0.2791 1.7600 -148 925 -1.7802 0.2611 1.7600 -148 926 -1.7196 0.2420 1.7600 -148 927 -1.6627 0.2260 1.7600 -148 928 -1.6102 0.2162 1.7600 -148 929 -1.5580 0.2130 1.7600 -148 930 -1.5062 0.2141 1.7600 -148 931 -1.4554 0.2186 1.7600 -148 932 -1.4050 0.2262 1.7600 -148 933 -1.3517 0.2381 1.7600 -148 934 -1.2957 0.2558 1.7600 -148 935 -1.2375 0.2761 1.7600 -148 936 -1.1803 0.2975 1.7600 -148 937 -1.1234 0.3223 1.7600 -148 938 -1.0666 0.3483 1.7600 -148 939 -1.0122 0.3682 1.7600 -148 940 -0.9597 0.3787 1.7600 -148 941 -0.9064 0.3832 1.7600 -148 942 -0.8512 0.3847 1.7600 -148 943 -0.7943 0.3824 1.7600 -148 944 -0.7359 0.3757 1.7600 -148 945 -0.6760 0.3649 1.7600 -148 946 -0.6145 0.3507 1.7600 -148 947 -0.5536 0.3321 1.7600 -148 948 -0.4954 0.3119 1.7600 -148 949 -0.4380 0.2956 1.7600 -148 950 -0.3812 0.2875 1.7600 -148 951 -0.3260 0.2854 1.7600 -148 952 -0.2727 0.2860 1.7600 -148 953 -0.2191 0.2886 1.7600 -148 954 -0.1631 0.2942 1.7600 -148 955 -0.1048 0.3024 1.7600 -148 956 -0.0448 0.3145 1.7600 -148 957 0.0173 0.3295 1.7600 -148 958 0.0799 0.3455 1.7600 -148 959 0.1421 0.3599 1.7600 -148 960 0.2024 0.3706 1.7600 -148 961 0.2629 0.3749 1.7600 -148 962 0.3242 0.3731 1.7600 -148 963 0.3865 0.3674 1.7600 -148 964 0.4488 0.3586 1.7600 -148 965 0.5116 0.3461 1.7600 -148 966 0.5748 0.3296 1.7600 -148 967 0.6357 0.3084 1.7600 -148 968 0.6904 0.2834 1.7600 -148 969 0.7435 0.2610 1.7600 -148 970 0.7954 0.2475 1.7600 -148 971 0.8463 0.2414 1.7600 -148 972 0.8959 0.2396 1.7600 -148 973 0.9461 0.2418 1.7600 -148 974 0.9984 0.2485 1.7600 -148 975 1.0524 0.2597 1.7600 -148 976 1.1074 0.2758 1.7600 -148 977 1.1631 0.2952 1.7600 -148 978 1.2204 0.3134 1.7600 -148 979 1.2779 0.3299 1.7600 -148 980 1.3343 0.3417 1.7600 -148 981 1.3913 0.3459 1.7600 -148 982 1.4488 0.3440 1.7600 -148 983 1.5037 0.3384 1.7600 -148 984 1.5686 0.3327 1.7600 -148 985 1.6261 0.3186 1.7600 -148 986 1.6837 0.3008 1.7600 -148 987 1.7402 0.2801 1.7600 -148 988 1.7938 0.2587 1.7600 -148 989 1.8454 0.2407 1.7600 -148 990 1.8949 0.2301 1.7600 -148 991 1.9440 0.2247 1.7600 -148 992 1.9926 0.2218 1.7600 -148 993 2.0423 0.2211 1.7600 -148 994 2.0861 0.2336 1.7600 -148 995 2.1394 0.2433 1.7600 -148 996 2.1928 0.2592 1.7600 -148 997 2.2479 0.2784 1.7600 -148 998 2.3059 0.2984 1.7600 -148 999 2.3650 0.3177 1.7600 -148 1000 2.4219 0.3340 1.7600 -148 1001 2.4763 0.3455 1.7600 -148 1002 2.5306 0.3509 1.7600 -148 1003 2.5856 0.3516 1.7600 -148 1004 2.6389 0.3494 1.7600 -148 1005 2.6911 0.3449 1.7600 -148 1006 2.7453 0.3391 1.7600 -148 1007 2.8010 0.3323 1.7600 -148 1008 2.8578 0.3231 1.7600 -148 1009 2.9176 0.3119 1.7600 -148 1010 2.9799 0.3017 1.7600 -148 1011 3.0429 0.2992 1.7600 -148 1012 3.1017 0.2996 1.7600 -148 1013 3.1617 0.3056 1.7600 -148 1014 3.2147 0.3127 1.7600 -148 1015 3.2722 0.3218 1.7600 -148 1016 3.3244 0.3324 1.7600 -148 1017 3.3803 0.3458 1.7600 -148 1018 3.4365 0.3646 1.7600 -148 1019 3.4935 0.3860 1.7600 -148 1020 3.5577 0.4052 1.7600 -148 1021 3.6220 0.4214 1.7600 -148 1022 3.6870 0.4333 1.7600 -148 1023 3.7481 0.4397 1.7600 -148 1024 3.8081 0.4389 1.7600 -148 1025 3.8688 0.4347 1.7600 -148 1026 3.9261 0.4252 1.7600 -148 1027 3.9880 0.4077 1.7600 -148 1028 4.0467 0.3924 1.7600 -148 1029 4.1051 0.3742 1.7600 -148 1030 4.1608 0.3593 1.7600 -148 1031 4.2224 0.3448 1.7600 -148 1032 4.2788 0.3341 1.7600 -148 1033 4.3297 0.3269 1.7600 -148 1034 4.3800 0.3216 1.7600 -148 1035 4.4291 0.3200 1.7600 -148 1036 4.4811 0.3213 1.7600 -148 1037 4.5300 0.3240 1.7600 -148 1038 4.5817 0.3318 1.7600 -148 1039 4.6364 0.3457 1.7600 -148 1040 4.6977 0.3623 1.7600 -148 1041 4.7623 0.3785 1.7600 -148 1042 4.8263 0.3935 1.7600 -148 1043 4.8890 0.4030 1.7600 -148 1044 4.9493 0.4060 1.7600 -148 1045 5.0086 0.4042 1.7600 -148 1046 5.0675 0.3985 1.7600 -148 1047 5.1254 0.3892 1.7600 -148 1048 5.1826 0.3783 1.7600 -148 1049 5.2389 0.3664 1.7600 -148 1050 5.2973 0.3538 1.7600 -148 1051 5.3629 0.3409 1.7600 -148 1052 5.4279 0.3304 1.7600 -148 1053 5.4864 0.3251 1.7600 -148 1054 5.5417 0.3235 1.7600 -148 1055 5.5983 0.3236 1.7600 -148 1056 5.6548 0.3254 1.7600 -148 1057 5.7083 0.3291 1.7600 -148 1058 5.7594 0.3358 1.7600 -148 1059 5.8119 0.3464 1.7600 -148 1060 5.8701 0.3615 1.7600 -148 1061 5.9359 0.3782 1.7600 -149 829 -7.7991 1.7705 1.7600 -149 830 -7.7481 1.7588 1.7600 -149 831 -7.6990 1.7500 1.7600 -149 832 -7.6494 1.7439 1.7600 -149 833 -7.5958 1.7408 1.7600 -149 834 -7.5391 1.7404 1.7600 -149 835 -7.4833 1.7442 1.7600 -149 836 -7.4310 1.7514 1.7600 -149 837 -7.3820 1.7564 1.7600 -149 838 -7.3333 1.7593 1.7600 -149 839 -7.2825 1.7562 1.7600 -149 840 -7.2322 1.7461 1.7600 -149 841 -7.1808 1.7331 1.7600 -149 842 -7.1294 1.7144 1.7600 -149 843 -7.0774 1.6909 1.7600 -149 844 -7.0256 1.6599 1.7600 -149 845 -6.9739 1.6269 1.7600 -149 846 -6.9238 1.5960 1.7600 -149 847 -6.8764 1.5668 1.7600 -149 848 -6.8299 1.5403 1.7600 -149 849 -6.7840 1.5223 1.7600 -149 850 -6.7336 1.5097 1.7600 -149 851 -6.6769 1.5043 1.7600 -149 852 -6.6134 1.5031 1.7600 -149 853 -6.5418 1.5054 1.7600 -149 854 -6.4662 1.5126 1.7600 -149 855 -6.3868 1.5248 1.7600 -149 856 -6.3126 1.5317 1.7600 -149 857 -6.2491 1.5313 1.7600 -149 858 -6.1897 1.5251 1.7600 -149 859 -6.1354 1.5112 1.7600 -149 860 -6.0810 1.4923 1.7600 -149 861 -6.0260 1.4720 1.7600 -149 862 -5.9724 1.4464 1.7600 -149 863 -5.9150 1.4165 1.7600 -149 864 -5.8578 1.3826 1.7600 -149 865 -5.8037 1.3481 1.7600 -149 866 -5.7508 1.3129 1.7600 -149 867 -5.7046 1.2822 1.7600 -149 868 -5.6563 1.2611 1.7600 -149 869 -5.6127 1.2422 1.7600 -149 870 -5.5703 1.2279 1.7600 -149 871 -5.5306 1.2176 1.7600 -149 872 -5.4862 1.2116 1.7600 -149 873 -5.4388 1.2096 1.7600 -149 874 -5.3896 1.2138 1.7600 -149 875 -5.3371 1.2215 1.7600 -149 876 -5.2861 1.2296 1.7600 -149 877 -5.2343 1.2326 1.7600 -149 878 -5.1815 1.2332 1.7600 -149 879 -5.1322 1.2256 1.7600 -149 880 -5.0872 1.2135 1.7600 -149 881 -5.0404 1.2001 1.7600 -149 882 -4.9919 1.1851 1.7600 -149 883 -4.9431 1.1657 1.7600 -149 884 -4.8953 1.1410 1.7600 -149 885 -4.8464 1.1146 1.7600 -149 886 -4.7976 1.0882 1.7600 -149 887 -4.7502 1.0618 1.7600 -149 888 -4.7033 1.0421 1.7600 -149 889 -4.6517 1.0297 1.7600 -149 890 -4.6067 1.0241 1.7600 -149 891 -4.5631 1.0247 1.7600 -149 892 -4.5160 1.0270 1.7600 -149 893 -4.4680 1.0352 1.7600 -149 894 -4.4145 1.0480 1.7600 -149 895 -4.3604 1.0640 1.7600 -149 896 -4.3045 1.0798 1.7600 -149 897 -4.2527 1.0910 1.7600 -149 898 -4.2005 1.0978 1.7600 -149 899 -4.1477 1.0985 1.7600 -149 900 -4.0951 1.0945 1.7600 -149 901 -4.0449 1.0892 1.7600 -149 902 -3.9952 1.0820 1.7600 -149 903 -3.9439 1.0724 1.7600 -149 904 -3.8942 1.0562 1.7600 -149 905 -3.8421 1.0368 1.7600 -149 906 -3.7919 1.0134 1.7600 -149 907 -3.7428 0.9959 1.7600 -149 908 -3.6913 0.9853 1.7600 -149 909 -3.6379 0.9847 1.7600 -149 910 -3.5903 0.9854 1.7600 -149 911 -3.5419 0.9915 1.7600 -149 912 -3.4899 1.0008 1.7600 -149 913 -3.4376 1.0150 1.7600 -149 914 -3.3824 1.0332 1.7600 -149 915 -3.3233 1.0573 1.7600 -149 916 -3.2682 1.0757 1.7600 -149 917 -3.2218 1.0858 1.7600 -149 918 -3.1729 1.0899 1.7600 -149 919 -3.1269 1.0894 1.7600 -149 920 -3.0822 1.0859 1.7600 -149 921 -3.0382 1.0795 1.7600 -149 922 -2.9949 1.0705 1.7600 -149 923 -2.9445 1.0611 1.7600 -149 924 -2.8898 1.0470 1.7600 -149 925 -2.8315 1.0343 1.7600 -149 926 -2.7774 1.0197 1.7600 -149 927 -2.7246 1.0090 1.7600 -149 928 -2.6689 1.0073 1.7600 -149 929 -2.6192 1.0063 1.7600 -149 930 -2.5723 1.0083 1.7600 -149 931 -2.5318 1.0113 1.7600 -149 932 -2.4907 1.0178 1.7600 -149 933 -2.4475 1.0300 1.7600 -149 934 -2.3989 1.0486 1.7600 -149 935 -2.3491 1.0615 1.7600 -149 936 -2.2994 1.0678 1.7600 -149 937 -2.2464 1.0666 1.7600 -149 938 -2.1925 1.0580 1.7600 -149 939 -2.1416 1.0481 1.7600 -149 940 -2.0949 1.0284 1.7600 -149 941 -2.0453 1.0087 1.7600 -149 942 -1.9888 0.9879 1.7600 -149 943 -1.9387 0.9639 1.7600 -149 944 -1.8898 0.9457 1.7600 -149 945 -1.8438 0.9317 1.7600 -149 946 -1.8017 0.9224 1.7600 -149 947 -1.7572 0.9174 1.7600 -149 948 -1.7163 0.9156 1.7600 -149 949 -1.6712 0.9176 1.7600 -149 950 -1.6281 0.9236 1.7600 -149 951 -1.5814 0.9343 1.7600 -149 952 -1.5313 0.9480 1.7600 -149 953 -1.4793 0.9606 1.7600 -149 954 -1.4290 0.9676 1.7600 -149 955 -1.3801 0.9711 1.7600 -149 956 -1.3319 0.9699 1.7600 -149 957 -1.2850 0.9663 1.7600 -149 958 -1.2386 0.9628 1.7600 -149 959 -1.1887 0.9564 1.7600 -149 960 -1.1385 0.9481 1.7600 -149 961 -1.0864 0.9361 1.7600 -149 962 -1.0332 0.9245 1.7600 -149 963 -0.9788 0.9113 1.7600 -149 964 -0.9242 0.9039 1.7600 -149 965 -0.8696 0.9017 1.7600 -149 966 -0.8143 0.9065 1.7600 -149 967 -0.7577 0.9161 1.7600 -149 968 -0.7020 0.9297 1.7600 -149 969 -0.6478 0.9503 1.7600 -149 970 -0.5927 0.9771 1.7600 -149 971 -0.5400 1.0057 1.7600 -149 972 -0.4890 1.0278 1.7600 -149 973 -0.4370 1.0438 1.7600 -149 974 -0.3803 1.0559 1.7600 -149 975 -0.3231 1.0621 1.7600 -149 976 -0.2646 1.0637 1.7600 -149 977 -0.2054 1.0592 1.7600 -149 978 -0.1419 1.0525 1.7600 -149 979 -0.0776 1.0427 1.7600 -149 980 -0.0121 1.0300 1.7600 -149 981 0.0564 1.0168 1.7600 -149 982 0.1235 1.0079 1.7600 -149 983 0.1937 1.0071 1.7600 -149 984 0.2615 1.0077 1.7600 -149 985 0.3255 1.0137 1.7600 -149 986 0.3922 1.0246 1.7600 -149 987 0.4612 1.0458 1.7600 -149 988 0.5284 1.0682 1.7600 -149 989 0.5957 1.0973 1.7600 -149 990 0.6629 1.1224 1.7600 -149 991 0.7236 1.1370 1.7600 -149 992 0.7845 1.1426 1.7600 -149 993 0.8493 1.1410 1.7600 -149 994 0.9204 1.1361 1.7600 -149 995 0.9893 1.1264 1.7600 -149 996 1.0591 1.1159 1.7600 -149 997 1.1295 1.1038 1.7600 -149 998 1.1997 1.0862 1.7600 -149 999 1.2722 1.0597 1.7600 -149 1000 1.3446 1.0318 1.7600 -149 1001 1.4154 1.0134 1.7600 -149 1002 1.4766 1.0042 1.7600 -149 1003 1.5340 0.9979 1.7600 -149 1004 1.5882 0.9964 1.7600 -149 1005 1.6462 1.0044 1.7600 -149 1006 1.7054 1.0220 1.7600 -149 1007 1.7724 1.0459 1.7600 -149 1008 1.8390 1.0703 1.7600 -149 1009 1.8983 1.0894 1.7600 -149 1010 1.9580 1.0992 1.7600 -149 1011 2.0154 1.0992 1.7600 -149 1012 2.0733 1.0935 1.7600 -149 1013 2.1345 1.0809 1.7600 -149 1014 2.1937 1.0615 1.7600 -149 1015 2.2557 1.0370 1.7600 -149 1016 2.3225 1.0138 1.7600 -149 1017 2.3889 0.9898 1.7600 -149 1018 2.4522 0.9699 1.7600 -149 1019 2.5084 0.9586 1.7600 -149 1020 2.5647 0.9538 1.7600 -149 1021 2.6214 0.9552 1.7600 -149 1022 2.6797 0.9614 1.7600 -149 1023 2.7383 0.9707 1.7600 -149 1024 2.8020 0.9858 1.7600 -149 1025 2.8641 1.0070 1.7600 -149 1026 2.9327 1.0311 1.7600 -149 1027 2.9975 1.0531 1.7600 -149 1028 3.0617 1.0679 1.7600 -149 1029 3.1234 1.0739 1.7600 -149 1030 3.1814 1.0726 1.7600 -149 1031 3.2365 1.0673 1.7600 -149 1032 3.2936 1.0582 1.7600 -149 1033 3.3522 1.0430 1.7600 -149 1034 3.4159 1.0220 1.7600 -149 1035 3.4817 0.9966 1.7600 -149 1036 3.5486 0.9698 1.7600 -149 1037 3.6098 0.9457 1.7600 -149 1038 3.6728 0.9285 1.7600 -149 1039 3.7339 0.9226 1.7600 -149 1040 3.7947 0.9232 1.7600 -149 1041 3.8562 0.9312 1.7600 -149 1042 3.9197 0.9434 1.7600 -149 1043 3.9848 0.9610 1.7600 -149 1044 4.0580 0.9833 1.7600 -149 1045 4.1387 1.0115 1.7600 -149 1046 4.2155 1.0379 1.7600 -149 1047 4.2844 1.0571 1.7600 -149 1048 4.3538 1.0662 1.7600 -149 1049 4.4168 1.0679 1.7600 -149 1050 4.4791 1.0647 1.7600 -149 1051 4.5415 1.0578 1.7600 -149 1052 4.6051 1.0493 1.7600 -149 1053 4.6770 1.0377 1.7600 -149 1054 4.7567 1.0263 1.7600 -149 1055 4.8376 1.0166 1.7600 -149 1056 4.9148 1.0145 1.7600 -149 1057 4.9921 1.0246 1.7600 -149 1058 5.0615 1.0418 1.7600 -149 1059 5.1263 1.0644 1.7600 -149 1060 5.1828 1.0884 1.7600 -149 1061 5.2380 1.1179 1.7600 -149 1062 5.3012 1.1540 1.7600 -149 1063 5.3764 1.1926 1.7600 -149 1064 5.4484 1.2295 1.7600 -149 1065 5.5251 1.2571 1.7600 -149 1066 5.5998 1.2717 1.7600 -149 1067 5.6721 1.2774 1.7600 -149 1068 5.7446 1.2774 1.7600 -149 1069 5.8116 1.2698 1.7600 -149 1070 5.8805 1.2590 1.7600 -149 1071 5.9550 1.2448 1.7600 -150 836 -7.8147 1.1685 1.7600 -150 837 -7.7759 1.1579 1.7600 -150 838 -7.7323 1.1439 1.7600 -150 839 -7.6855 1.1263 1.7600 -150 840 -7.6370 1.1050 1.7600 -150 841 -7.5921 1.0787 1.7600 -150 842 -7.5528 1.0468 1.7600 -150 843 -7.5140 1.0154 1.7600 -150 844 -7.4742 0.9903 1.7600 -150 845 -7.4331 0.9708 1.7600 -150 846 -7.3908 0.9550 1.7600 -150 847 -7.3473 0.9432 1.7600 -150 848 -7.2965 0.9347 1.7600 -150 849 -7.2417 0.9296 1.7600 -150 850 -7.1829 0.9295 1.7600 -150 851 -7.1236 0.9315 1.7600 -150 852 -7.0634 0.9363 1.7600 -150 853 -7.0046 0.9426 1.7600 -150 854 -6.9496 0.9501 1.7600 -150 855 -6.8926 0.9541 1.7600 -150 856 -6.8377 0.9520 1.7600 -150 857 -6.7859 0.9464 1.7600 -150 858 -6.7330 0.9422 1.7600 -150 859 -6.6742 0.9334 1.7600 -150 860 -6.6145 0.9225 1.7600 -150 861 -6.5583 0.9063 1.7600 -150 862 -6.5065 0.8828 1.7600 -150 863 -6.4547 0.8631 1.7600 -150 864 -6.4026 0.8534 1.7600 -150 865 -6.3496 0.8512 1.7600 -150 866 -6.2991 0.8476 1.7600 -150 867 -6.2474 0.8432 1.7600 -150 868 -6.1908 0.8411 1.7600 -150 869 -6.1322 0.8391 1.7600 -150 870 -6.0761 0.8426 1.7600 -150 871 -6.0220 0.8489 1.7600 -150 872 -5.9705 0.8554 1.7600 -150 873 -5.9264 0.8628 1.7600 -150 874 -5.8779 0.8664 1.7600 -150 875 -5.8327 0.8659 1.7600 -150 876 -5.7896 0.8631 1.7600 -150 877 -5.7499 0.8587 1.7600 -150 878 -5.7070 0.8535 1.7600 -150 879 -5.6661 0.8443 1.7600 -150 880 -5.6214 0.8312 1.7600 -150 881 -5.5726 0.8134 1.7600 -150 882 -5.5204 0.7928 1.7600 -150 883 -5.4682 0.7664 1.7600 -150 884 -5.4159 0.7430 1.7600 -150 885 -5.3694 0.7256 1.7600 -150 886 -5.3255 0.7140 1.7600 -150 887 -5.2805 0.7052 1.7600 -150 888 -5.2343 0.7013 1.7600 -150 889 -5.1916 0.6990 1.7600 -150 890 -5.1465 0.6915 1.7600 -150 891 -5.0952 0.6853 1.7600 -150 892 -5.0480 0.6870 1.7600 -150 893 -5.0063 0.6903 1.7600 -150 894 -4.9638 0.6949 1.7600 -150 895 -4.9215 0.6968 1.7600 -150 896 -4.8813 0.6945 1.7600 -150 897 -4.8386 0.6907 1.7600 -150 898 -4.7942 0.6843 1.7600 -150 899 -4.7463 0.6749 1.7600 -150 900 -4.6950 0.6640 1.7600 -150 901 -4.6355 0.6498 1.7600 -150 902 -4.5670 0.6358 1.7600 -150 903 -4.4916 0.6176 1.7600 -150 904 -4.4173 0.5936 1.7600 -150 905 -4.3562 0.5778 1.7600 -150 906 -4.3067 0.5721 1.7600 -150 907 -4.2651 0.5771 1.7600 -150 908 -4.2235 0.5879 1.7600 -150 909 -4.1865 0.6039 1.7600 -150 910 -4.1460 0.6231 1.7600 -150 911 -4.1044 0.6419 1.7600 -150 912 -4.0649 0.6619 1.7600 -150 913 -4.0293 0.6803 1.7600 -150 914 -3.9952 0.6994 1.7600 -150 915 -3.9567 0.7209 1.7600 -150 916 -3.9245 0.7351 1.7600 -150 917 -3.9001 0.7425 1.7600 -150 918 -3.8711 0.7465 1.7600 -150 919 -3.8378 0.7483 1.7600 -150 920 -3.8057 0.7458 1.7600 -150 921 -3.7671 0.7396 1.7600 -150 922 -3.7235 0.7322 1.7600 -150 923 -3.6734 0.7197 1.7600 -150 924 -3.6240 0.7075 1.7600 -150 925 -3.5737 0.6946 1.7600 -150 926 -3.5214 0.6790 1.7600 -150 927 -3.4792 0.6618 1.7600 -150 928 -3.4381 0.6507 1.7600 -150 929 -3.3970 0.6502 1.7600 -150 930 -3.3606 0.6531 1.7600 -150 931 -3.3283 0.6555 1.7600 -150 932 -3.3080 0.6579 1.7600 -150 933 -3.2901 0.6687 1.7600 -150 934 -3.2656 0.6768 1.7600 -150 935 -3.2336 0.6844 1.7600 -150 936 -3.1963 0.6899 1.7600 -150 937 -3.1583 0.6970 1.7600 -150 938 -3.1190 0.7053 1.7600 -150 939 -3.0807 0.7137 1.7600 -150 940 -3.0389 0.7206 1.7600 -150 941 -2.9955 0.7277 1.7600 -150 942 -2.9533 0.7330 1.7600 -150 943 -2.9106 0.7335 1.7600 -150 944 -2.8623 0.7321 1.7600 -150 945 -2.8129 0.7261 1.7600 -150 946 -2.7614 0.7144 1.7600 -150 947 -2.7057 0.6955 1.7600 -150 948 -2.6444 0.6721 1.7600 -150 949 -2.5835 0.6442 1.7600 -150 950 -2.5299 0.6170 1.7600 -150 951 -2.4762 0.5974 1.7600 -150 952 -2.4206 0.5862 1.7600 -150 953 -2.3716 0.5834 1.7600 -150 954 -2.3262 0.5800 1.7600 -150 955 -2.2843 0.5804 1.7600 -150 956 -2.2447 0.5811 1.7600 -150 957 -2.2044 0.5860 1.7600 -150 958 -2.1633 0.5961 1.7600 -150 959 -2.1182 0.6175 1.7600 -150 960 -2.0676 0.6401 1.7600 -150 961 -2.0169 0.6645 1.7600 -150 962 -1.9630 0.6840 1.7600 -150 963 -1.9059 0.7054 1.7600 -150 964 -1.8482 0.7231 1.7600 -150 965 -1.7947 0.7399 1.7600 -150 966 -1.7448 0.7509 1.7600 -150 967 -1.6935 0.7594 1.7600 -150 968 -1.6415 0.7584 1.7600 -150 969 -1.5869 0.7525 1.7600 -150 970 -1.5318 0.7438 1.7600 -150 971 -1.4699 0.7323 1.7600 -150 972 -1.4116 0.7189 1.7600 -150 973 -1.3581 0.7086 1.7600 -150 974 -1.3058 0.7041 1.7600 -150 975 -1.2542 0.7032 1.7600 -150 976 -1.2079 0.7049 1.7600 -150 977 -1.1613 0.7093 1.7600 -150 978 -1.1112 0.7165 1.7600 -150 979 -1.0621 0.7251 1.7600 -150 980 -1.0117 0.7360 1.7600 -150 981 -0.9626 0.7512 1.7600 -150 982 -0.9130 0.7641 1.7600 -150 983 -0.8630 0.7727 1.7600 -150 984 -0.8168 0.7785 1.7600 -150 985 -0.7691 0.7826 1.7600 -150 986 -0.7217 0.7825 1.7600 -150 987 -0.6743 0.7793 1.7600 -150 988 -0.6246 0.7728 1.7600 -150 989 -0.5669 0.7615 1.7600 -150 990 -0.5004 0.7462 1.7600 -150 991 -0.4237 0.7277 1.7600 -150 992 -0.3359 0.7109 1.7600 -150 993 -0.2451 0.7011 1.7600 -150 994 -0.1606 0.6925 1.7600 -150 995 -0.0903 0.6892 1.7600 -150 996 -0.0309 0.6933 1.7600 -150 997 0.0189 0.6986 1.7600 -150 998 0.0675 0.7042 1.7600 -150 999 0.1129 0.7094 1.7600 -150 1000 0.1582 0.7157 1.7600 -150 1001 0.2079 0.7208 1.7600 -150 1002 0.2540 0.7325 1.7600 -150 1003 0.2980 0.7469 1.7600 -150 1004 0.3419 0.7586 1.7600 -150 1005 0.3878 0.7674 1.7600 -150 1006 0.4396 0.7721 1.7600 -150 1007 0.4946 0.7710 1.7600 -150 1008 0.5494 0.7671 1.7600 -150 1009 0.6064 0.7611 1.7600 -150 1010 0.6664 0.7490 1.7600 -150 1011 0.7281 0.7336 1.7600 -150 1012 0.7911 0.7134 1.7600 -150 1013 0.8492 0.6953 1.7600 -150 1014 0.9009 0.6750 1.7600 -150 1015 0.9511 0.6587 1.7600 -150 1016 0.9999 0.6474 1.7600 -150 1017 1.0492 0.6421 1.7600 -150 1018 1.0989 0.6357 1.7600 -150 1019 1.1490 0.6299 1.7600 -150 1020 1.2011 0.6244 1.7600 -150 1021 1.2585 0.6200 1.7600 -150 1022 1.3133 0.6170 1.7600 -150 1023 1.3747 0.6213 1.7600 -150 1024 1.4425 0.6279 1.7600 -150 1025 1.5079 0.6359 1.7600 -150 1026 1.5679 0.6395 1.7600 -150 1027 1.6256 0.6410 1.7600 -150 1028 1.6767 0.6374 1.7600 -150 1029 1.7265 0.6334 1.7600 -150 1030 1.7738 0.6263 1.7600 -150 1031 1.8233 0.6194 1.7600 -150 1032 1.8726 0.6066 1.7600 -150 1033 1.9243 0.5918 1.7600 -150 1034 1.9742 0.5819 1.7600 -150 1035 2.0226 0.5752 1.7600 -150 1036 2.0677 0.5696 1.7600 -150 1037 2.1163 0.5748 1.7600 -150 1038 2.1684 0.5850 1.7600 -150 1039 2.2239 0.5968 1.7600 -150 1040 2.2822 0.6107 1.7600 -150 1041 2.3421 0.6242 1.7600 -150 1042 2.4046 0.6399 1.7600 -150 1043 2.4697 0.6588 1.7600 -150 1044 2.5363 0.6793 1.7600 -150 1045 2.5985 0.6937 1.7600 -150 1046 2.6614 0.7054 1.7600 -150 1047 2.7220 0.7111 1.7600 -150 1048 2.7793 0.7130 1.7600 -150 1049 2.8336 0.7125 1.7600 -150 1050 2.8875 0.7102 1.7600 -150 1051 2.9430 0.7020 1.7600 -150 1052 2.9995 0.6957 1.7600 -150 1053 3.0603 0.6878 1.7600 -150 1054 3.1228 0.6760 1.7600 -150 1055 3.1793 0.6644 1.7600 -150 1056 3.2332 0.6557 1.7600 -150 1057 3.2837 0.6504 1.7600 -150 1058 3.3329 0.6533 1.7600 -150 1059 3.3830 0.6597 1.7600 -150 1060 3.4320 0.6732 1.7600 -150 1061 3.4833 0.6874 1.7600 -150 1062 3.5380 0.7075 1.7600 -150 1063 3.5985 0.7281 1.7600 -150 1064 3.6606 0.7456 1.7600 -150 1065 3.7258 0.7592 1.7600 -150 1066 3.7891 0.7722 1.7600 -150 1067 3.8569 0.7789 1.7600 -150 1068 3.9226 0.7775 1.7600 -150 1069 3.9864 0.7738 1.7600 -150 1070 4.0543 0.7683 1.7600 -150 1071 4.1192 0.7579 1.7600 -150 1072 4.1818 0.7484 1.7600 -150 1073 4.2487 0.7383 1.7600 -150 1074 4.3196 0.7303 1.7600 -150 1075 4.3887 0.7191 1.7600 -150 1076 4.4565 0.7148 1.7600 -150 1077 4.5217 0.7196 1.7600 -150 1078 4.5834 0.7273 1.7600 -150 1079 4.6421 0.7391 1.7600 -150 1080 4.6990 0.7518 1.7600 -150 1081 4.7602 0.7652 1.7600 -150 1082 4.8281 0.7827 1.7600 -150 1083 4.8991 0.8016 1.7600 -150 1084 4.9756 0.8180 1.7600 -150 1085 5.0503 0.8289 1.7600 -150 1086 5.1199 0.8338 1.7600 -150 1087 5.1798 0.8334 1.7600 -150 1088 5.2360 0.8317 1.7600 -150 1089 5.2916 0.8264 1.7600 -150 1090 5.3482 0.8153 1.7600 -150 1091 5.4129 0.8037 1.7600 -150 1092 5.4884 0.7888 1.7600 -150 1093 5.5660 0.7789 1.7600 -150 1094 5.6423 0.7719 1.7600 -150 1095 5.7141 0.7694 1.7600 -150 1096 5.7768 0.7704 1.7600 -150 1097 5.8343 0.7734 1.7600 -150 1098 5.8900 0.7776 1.7600 -150 1099 5.9433 0.7842 1.7600 -151 829 -7.8084 2.1235 1.7600 -151 830 -7.7489 2.1204 1.7600 -151 831 -7.6883 2.1199 1.7600 -151 832 -7.6286 2.1230 1.7600 -151 833 -7.5730 2.1299 1.7600 -151 834 -7.5201 2.1369 1.7600 -151 835 -7.4668 2.1422 1.7600 -151 836 -7.4126 2.1455 1.7600 -151 837 -7.3583 2.1466 1.7600 -151 838 -7.3052 2.1440 1.7600 -151 839 -7.2515 2.1368 1.7600 -151 840 -7.1955 2.1258 1.7600 -151 841 -7.1375 2.1117 1.7600 -151 842 -7.0792 2.0942 1.7600 -151 843 -7.0235 2.0724 1.7600 -151 844 -6.9730 2.0487 1.7600 -151 845 -6.9273 2.0273 1.7600 -151 846 -6.8820 2.0074 1.7600 -151 847 -6.8329 1.9889 1.7600 -151 848 -6.7817 1.9714 1.7600 -151 849 -6.7296 1.9546 1.7600 -151 850 -6.6766 1.9398 1.7600 -151 851 -6.6227 1.9296 1.7600 -151 852 -6.5682 1.9187 1.7600 -151 853 -6.5116 1.9125 1.7600 -151 854 -6.4501 1.9051 1.7600 -151 855 -6.3884 1.9038 1.7600 -151 856 -6.3283 1.9026 1.7600 -151 857 -6.2700 1.9015 1.7600 -151 858 -6.2125 1.8974 1.7600 -151 859 -6.1570 1.8913 1.7600 -151 860 -6.1032 1.8817 1.7600 -151 861 -6.0526 1.8713 1.7600 -151 862 -5.9999 1.8586 1.7600 -151 863 -5.9479 1.8470 1.7600 -151 864 -5.8966 1.8326 1.7600 -151 865 -5.8416 1.8152 1.7600 -151 866 -5.7890 1.7940 1.7600 -151 867 -5.7412 1.7708 1.7600 -151 868 -5.6953 1.7459 1.7600 -151 869 -5.6472 1.7263 1.7600 -151 870 -5.6022 1.7109 1.7600 -151 871 -5.5539 1.6966 1.7600 -151 872 -5.5011 1.6845 1.7600 -151 873 -5.4503 1.6724 1.7600 -151 874 -5.3986 1.6614 1.7600 -151 875 -5.3466 1.6521 1.7600 -151 876 -5.2967 1.6454 1.7600 -151 877 -5.2455 1.6443 1.7600 -151 878 -5.1930 1.6476 1.7600 -151 879 -5.1421 1.6536 1.7600 -151 880 -5.0935 1.6618 1.7600 -151 881 -5.0483 1.6712 1.7600 -151 882 -5.0024 1.6740 1.7600 -151 883 -4.9550 1.6696 1.7600 -151 884 -4.9110 1.6628 1.7600 -151 885 -4.8684 1.6546 1.7600 -151 886 -4.8264 1.6474 1.7600 -151 887 -4.7790 1.6366 1.7600 -151 888 -4.7310 1.6218 1.7600 -151 889 -4.6855 1.6023 1.7600 -151 890 -4.6375 1.5747 1.7600 -151 891 -4.5923 1.5476 1.7600 -151 892 -4.5468 1.5192 1.7600 -151 893 -4.5019 1.4972 1.7600 -151 894 -4.4484 1.4809 1.7600 -151 895 -4.3879 1.4691 1.7600 -151 896 -4.3261 1.4634 1.7600 -151 897 -4.2767 1.4622 1.7600 -151 898 -4.2270 1.4615 1.7600 -151 899 -4.1831 1.4655 1.7600 -151 900 -4.1395 1.4743 1.7600 -151 901 -4.0930 1.4871 1.7600 -151 902 -4.0496 1.5005 1.7600 -151 903 -4.0094 1.5161 1.7600 -151 904 -3.9739 1.5263 1.7600 -151 905 -3.9364 1.5337 1.7600 -151 906 -3.8936 1.5397 1.7600 -151 907 -3.8475 1.5429 1.7600 -151 908 -3.8033 1.5456 1.7600 -151 909 -3.7587 1.5487 1.7600 -151 910 -3.7174 1.5476 1.7600 -151 911 -3.6730 1.5429 1.7600 -151 912 -3.6306 1.5309 1.7600 -151 913 -3.5890 1.5099 1.7600 -151 914 -3.5426 1.4883 1.7600 -151 915 -3.4985 1.4702 1.7600 -151 916 -3.4555 1.4582 1.7600 -151 917 -3.4127 1.4523 1.7600 -151 918 -3.3688 1.4486 1.7600 -151 919 -3.3187 1.4482 1.7600 -151 920 -3.2697 1.4536 1.7600 -151 921 -3.2233 1.4552 1.7600 -151 922 -3.1749 1.4603 1.7600 -151 923 -3.1247 1.4686 1.7600 -151 924 -3.0739 1.4845 1.7600 -151 925 -3.0214 1.5000 1.7600 -151 926 -2.9684 1.5176 1.7600 -151 927 -2.9161 1.5305 1.7600 -151 928 -2.8648 1.5390 1.7600 -151 929 -2.8097 1.5445 1.7600 -151 930 -2.7560 1.5420 1.7600 -151 931 -2.7042 1.5390 1.7600 -151 932 -2.6504 1.5347 1.7600 -151 933 -2.6002 1.5268 1.7600 -151 934 -2.5502 1.5120 1.7600 -151 935 -2.4921 1.4945 1.7600 -151 936 -2.4331 1.4752 1.7600 -151 937 -2.3765 1.4558 1.7600 -151 938 -2.3210 1.4418 1.7600 -151 939 -2.2663 1.4351 1.7600 -151 940 -2.2114 1.4371 1.7600 -151 941 -2.1573 1.4417 1.7600 -151 942 -2.1066 1.4471 1.7600 -151 943 -2.0566 1.4523 1.7600 -151 944 -2.0046 1.4597 1.7600 -151 945 -1.9498 1.4685 1.7600 -151 946 -1.8900 1.4798 1.7600 -151 947 -1.8290 1.4914 1.7600 -151 948 -1.7718 1.5027 1.7600 -151 949 -1.7173 1.5143 1.7600 -151 950 -1.6624 1.5193 1.7600 -151 951 -1.6051 1.5178 1.7600 -151 952 -1.5534 1.5134 1.7600 -151 953 -1.5037 1.5078 1.7600 -151 954 -1.4509 1.5001 1.7600 -151 955 -1.3938 1.4904 1.7600 -151 956 -1.3352 1.4763 1.7600 -151 957 -1.2736 1.4581 1.7600 -151 958 -1.2095 1.4532 1.7600 -151 959 -1.1489 1.4482 1.7600 -151 960 -1.0901 1.4495 1.7600 -151 961 -1.0298 1.4551 1.7600 -151 962 -0.9667 1.4623 1.7600 -151 963 -0.9076 1.4674 1.7600 -151 964 -0.8479 1.4729 1.7600 -151 965 -0.7880 1.4770 1.7600 -151 966 -0.7269 1.4826 1.7600 -151 967 -0.6651 1.4955 1.7600 -151 968 -0.6056 1.5053 1.7600 -151 969 -0.5489 1.5132 1.7600 -151 970 -0.4947 1.5148 1.7600 -151 971 -0.4395 1.5123 1.7600 -151 972 -0.3824 1.5064 1.7600 -151 973 -0.3262 1.5008 1.7600 -151 974 -0.2695 1.4926 1.7600 -151 975 -0.2112 1.4861 1.7600 -151 976 -0.1526 1.4768 1.7600 -151 977 -0.0938 1.4602 1.7600 -151 978 -0.0375 1.4430 1.7600 -151 979 0.0151 1.4258 1.7600 -151 980 0.0682 1.4149 1.7600 -151 981 0.1245 1.4107 1.7600 -151 982 0.1857 1.4130 1.7600 -151 983 0.2473 1.4184 1.7600 -151 984 0.3097 1.4253 1.7600 -151 985 0.3704 1.4367 1.7600 -151 986 0.4351 1.4479 1.7600 -151 987 0.5006 1.4640 1.7600 -151 988 0.5627 1.4783 1.7600 -151 989 0.6247 1.4957 1.7600 -151 990 0.6848 1.5084 1.7600 -151 991 0.7445 1.5179 1.7600 -151 992 0.8053 1.5253 1.7600 -151 993 0.8689 1.5297 1.7600 -151 994 0.9323 1.5326 1.7600 -151 995 0.9964 1.5331 1.7600 -151 996 1.0625 1.5326 1.7600 -151 997 1.1263 1.5282 1.7600 -151 998 1.1927 1.5191 1.7600 -151 999 1.2599 1.5129 1.7600 -151 1000 1.3240 1.5043 1.7600 -151 1001 1.3845 1.5016 1.7600 -151 1002 1.4457 1.5017 1.7600 -151 1003 1.5055 1.5018 1.7600 -151 1004 1.5664 1.5030 1.7600 -151 1005 1.6236 1.5040 1.7600 -151 1006 1.6839 1.5051 1.7600 -151 1007 1.7474 1.5101 1.7600 -151 1008 1.8155 1.5175 1.7600 -151 1009 1.8852 1.5274 1.7600 -151 1010 1.9518 1.5360 1.7600 -151 1011 2.0191 1.5415 1.7600 -151 1012 2.0844 1.5417 1.7600 -151 1013 2.1495 1.5413 1.7600 -151 1014 2.2154 1.5354 1.7600 -151 1015 2.2789 1.5289 1.7600 -151 1016 2.3430 1.5188 1.7600 -151 1017 2.4048 1.5062 1.7600 -151 1018 2.4710 1.4924 1.7600 -151 1019 2.5368 1.4775 1.7600 -151 1020 2.5998 1.4635 1.7600 -151 1021 2.6594 1.4549 1.7600 -151 1022 2.7200 1.4517 1.7600 -151 1023 2.7804 1.4507 1.7600 -151 1024 2.8408 1.4521 1.7600 -151 1025 2.8983 1.4532 1.7600 -151 1026 2.9543 1.4550 1.7600 -151 1027 3.0123 1.4603 1.7600 -151 1028 3.0768 1.4679 1.7600 -151 1029 3.1410 1.4788 1.7600 -151 1030 3.2054 1.4870 1.7600 -151 1031 3.2708 1.4923 1.7600 -151 1032 3.3338 1.4912 1.7600 -151 1033 3.3969 1.4884 1.7600 -151 1034 3.4613 1.4795 1.7600 -151 1035 3.5241 1.4729 1.7600 -151 1036 3.5908 1.4615 1.7600 -151 1037 3.6600 1.4493 1.7600 -151 1038 3.7351 1.4363 1.7600 -151 1039 3.8117 1.4207 1.7600 -151 1040 3.8840 1.4121 1.7600 -151 1041 3.9506 1.4131 1.7600 -151 1042 4.0227 1.4199 1.7600 -151 1043 4.0915 1.4277 1.7600 -151 1044 4.1549 1.4405 1.7600 -151 1045 4.2127 1.4540 1.7600 -151 1046 4.2699 1.4681 1.7600 -151 1047 4.3344 1.4873 1.7600 -151 1048 4.4107 1.5137 1.7600 -151 1049 4.4857 1.5388 1.7600 -151 1050 4.5610 1.5639 1.7600 -151 1051 4.6350 1.5807 1.7600 -151 1052 4.7100 1.5953 1.7600 -151 1053 4.7779 1.6022 1.7600 -151 1054 4.8429 1.6110 1.7600 -151 1055 4.9071 1.6155 1.7600 -151 1056 4.9751 1.6133 1.7600 -151 1057 5.0532 1.6115 1.7600 -151 1058 5.1311 1.6101 1.7600 -151 1059 5.2092 1.6106 1.7600 -151 1060 5.2871 1.6225 1.7600 -151 1061 5.3616 1.6388 1.7600 -151 1062 5.4318 1.6557 1.7600 -151 1063 5.4920 1.6715 1.7600 -151 1064 5.5500 1.6862 1.7600 -151 1065 5.6105 1.7001 1.7600 -151 1066 5.6822 1.7210 1.7600 -151 1067 5.7604 1.7412 1.7600 -151 1068 5.8349 1.7598 1.7600 -151 1069 5.9083 1.7758 1.7600 -152 831 -7.7667 0.6058 1.7600 -152 832 -7.7048 0.5754 1.7600 -152 833 -7.6371 0.5561 1.7600 -152 834 -7.5901 0.5363 1.7600 -152 835 -7.5432 0.5215 1.7600 -152 836 -7.4932 0.5104 1.7600 -152 837 -7.4377 0.5019 1.7600 -152 838 -7.3793 0.5003 1.7600 -152 839 -7.3257 0.5048 1.7600 -152 840 -7.2768 0.5111 1.7600 -152 841 -7.2268 0.5133 1.7600 -152 842 -7.1774 0.5085 1.7600 -152 843 -7.1287 0.4966 1.7600 -152 844 -7.0814 0.4787 1.7600 -152 845 -7.0334 0.4591 1.7600 -152 846 -6.9823 0.4387 1.7600 -152 847 -6.9295 0.4144 1.7600 -152 848 -6.8769 0.3854 1.7600 -152 849 -6.8265 0.3538 1.7600 -152 850 -6.7792 0.3232 1.7600 -152 851 -6.7340 0.2984 1.7600 -152 852 -6.6911 0.2784 1.7600 -152 853 -6.6464 0.2633 1.7600 -152 854 -6.5994 0.2539 1.7600 -152 855 -6.5499 0.2439 1.7600 -152 856 -6.4978 0.2427 1.7600 -152 857 -6.4463 0.2471 1.7600 -152 858 -6.3963 0.2574 1.7600 -152 859 -6.3473 0.2694 1.7600 -152 860 -6.2971 0.2791 1.7600 -152 861 -6.2448 0.2876 1.7600 -152 862 -6.1971 0.2887 1.7600 -152 863 -6.1529 0.2821 1.7600 -152 864 -6.1121 0.2735 1.7600 -152 865 -6.0725 0.2625 1.7600 -152 866 -6.0304 0.2515 1.7600 -152 867 -5.9889 0.2402 1.7600 -152 868 -5.9391 0.2242 1.7600 -152 869 -5.8884 0.2091 1.7600 -152 870 -5.8365 0.1911 1.7600 -152 871 -5.7917 0.1749 1.7600 -152 872 -5.7417 0.1574 1.7600 -152 873 -5.6884 0.1437 1.7600 -152 874 -5.6453 0.1349 1.7600 -152 875 -5.6085 0.1262 1.7600 -152 876 -5.5727 0.1250 1.7600 -152 877 -5.5344 0.1290 1.7600 -152 878 -5.4954 0.1374 1.7600 -152 879 -5.4539 0.1475 1.7600 -152 880 -5.4148 0.1593 1.7600 -152 881 -5.3763 0.1750 1.7600 -152 882 -5.3370 0.1917 1.7600 -152 883 -5.2951 0.2112 1.7600 -152 884 -5.2570 0.2264 1.7600 -152 885 -5.2178 0.2380 1.7600 -152 886 -5.1760 0.2447 1.7600 -152 887 -5.1314 0.2464 1.7600 -152 888 -5.0835 0.2441 1.7600 -152 889 -5.0343 0.2375 1.7600 -152 890 -4.9841 0.2319 1.7600 -152 891 -4.9303 0.2224 1.7600 -152 892 -4.8735 0.2152 1.7600 -152 893 -4.8122 0.2056 1.7600 -152 894 -4.7453 0.1959 1.7600 -152 895 -4.6731 0.1895 1.7600 -152 896 -4.5984 0.1941 1.7600 -152 897 -4.5258 0.2026 1.7600 -152 898 -4.4692 0.2115 1.7600 -152 899 -4.4178 0.2218 1.7600 -152 900 -4.3724 0.2354 1.7600 -152 901 -4.3314 0.2513 1.7600 -152 902 -4.2900 0.2679 1.7600 -152 903 -4.2479 0.2846 1.7600 -152 904 -4.2089 0.3048 1.7600 -152 905 -4.1663 0.3238 1.7600 -152 906 -4.1248 0.3395 1.7600 -152 907 -4.0811 0.3515 1.7600 -152 908 -4.0344 0.3554 1.7600 -152 909 -3.9868 0.3523 1.7600 -152 910 -3.9352 0.3444 1.7600 -152 911 -3.8860 0.3362 1.7600 -152 912 -3.8338 0.3262 1.7600 -152 913 -3.7793 0.3058 1.7600 -152 914 -3.7204 0.2864 1.7600 -152 915 -3.6672 0.2665 1.7600 -152 916 -3.6208 0.2569 1.7600 -152 917 -3.5784 0.2516 1.7600 -152 918 -3.5343 0.2507 1.7600 -152 919 -3.4883 0.2551 1.7600 -152 920 -3.4401 0.2639 1.7600 -152 921 -3.3871 0.2714 1.7600 -152 922 -3.3338 0.2861 1.7600 -152 923 -3.2749 0.3032 1.7600 -152 924 -3.2115 0.3223 1.7600 -152 925 -3.1494 0.3384 1.7600 -152 926 -3.0889 0.3476 1.7600 -152 927 -3.0315 0.3506 1.7600 -152 928 -2.9755 0.3475 1.7600 -152 929 -2.9212 0.3420 1.7600 -152 930 -2.8712 0.3353 1.7600 -152 931 -2.8204 0.3267 1.7600 -152 932 -2.7668 0.3184 1.7600 -152 933 -2.7109 0.3065 1.7600 -152 934 -2.6495 0.2929 1.7600 -152 935 -2.5871 0.2776 1.7600 -152 936 -2.5250 0.2661 1.7600 -152 937 -2.4660 0.2635 1.7600 -152 938 -2.4073 0.2643 1.7600 -152 939 -2.3519 0.2672 1.7600 -152 940 -2.2971 0.2730 1.7600 -152 941 -2.2443 0.2796 1.7600 -152 942 -2.1915 0.2871 1.7600 -152 943 -2.1398 0.2987 1.7600 -152 944 -2.0872 0.3136 1.7600 -152 945 -2.0291 0.3308 1.7600 -152 946 -1.9684 0.3429 1.7600 -152 947 -1.9076 0.3560 1.7600 -152 948 -1.8501 0.3580 1.7600 -152 949 -1.7980 0.3532 1.7600 -152 950 -1.7441 0.3466 1.7600 -152 951 -1.6917 0.3375 1.7600 -152 952 -1.6379 0.3283 1.7600 -152 953 -1.5839 0.3181 1.7600 -152 954 -1.5291 0.3056 1.7600 -152 955 -1.4703 0.2902 1.7600 -152 956 -1.4085 0.2726 1.7600 -152 957 -1.3460 0.2585 1.7600 -152 958 -1.2858 0.2485 1.7600 -152 959 -1.2298 0.2414 1.7600 -152 960 -1.1766 0.2361 1.7600 -152 961 -1.1264 0.2341 1.7600 -152 962 -1.0781 0.2363 1.7600 -152 963 -1.0303 0.2409 1.7600 -152 964 -0.9818 0.2479 1.7600 -152 965 -0.9316 0.2592 1.7600 -152 966 -0.8778 0.2743 1.7600 -152 967 -0.8196 0.2908 1.7600 -152 968 -0.7633 0.3061 1.7600 -152 969 -0.7095 0.3171 1.7600 -152 970 -0.6562 0.3215 1.7600 -152 971 -0.6042 0.3216 1.7600 -152 972 -0.5541 0.3194 1.7600 -152 973 -0.5056 0.3150 1.7600 -152 974 -0.4555 0.3082 1.7600 -152 975 -0.4042 0.3034 1.7600 -152 976 -0.3465 0.2950 1.7600 -152 977 -0.2877 0.2877 1.7600 -152 978 -0.2255 0.2807 1.7600 -152 979 -0.1641 0.2770 1.7600 -152 980 -0.1069 0.2744 1.7600 -152 981 -0.0508 0.2745 1.7600 -152 982 0.0058 0.2773 1.7600 -152 983 0.0619 0.2822 1.7600 -152 984 0.1156 0.2886 1.7600 -152 985 0.1674 0.2990 1.7600 -152 986 0.2176 0.3174 1.7600 -152 987 0.2694 0.3345 1.7600 -152 988 0.3199 0.3566 1.7600 -152 989 0.3676 0.3729 1.7600 -152 990 0.4101 0.3818 1.7600 -152 991 0.4554 0.3855 1.7600 -152 992 0.5035 0.3788 1.7600 -152 993 0.5533 0.3727 1.7600 -152 994 0.6067 0.3680 1.7600 -152 995 0.6622 0.3606 1.7600 -152 996 0.7216 0.3534 1.7600 -152 997 0.7821 0.3455 1.7600 -152 998 0.8451 0.3359 1.7600 -152 999 0.9039 0.3287 1.7600 -152 1000 0.9577 0.3201 1.7600 -152 1001 1.0107 0.3159 1.7600 -152 1002 1.0573 0.3154 1.7600 -152 1003 1.0993 0.3166 1.7600 -152 1004 1.1429 0.3141 1.7600 -152 1005 1.1882 0.3234 1.7600 -152 1006 1.2361 0.3338 1.7600 -152 1007 1.2834 0.3490 1.7600 -152 1008 1.3320 0.3716 1.7600 -152 1009 1.3811 0.3980 1.7600 -152 1010 1.4262 0.4217 1.7600 -152 1011 1.4757 0.4376 1.7600 -152 1012 1.5224 0.4504 1.7600 -152 1013 1.5714 0.4592 1.7600 -152 1014 1.6207 0.4624 1.7600 -152 1015 1.6709 0.4632 1.7600 -152 1016 1.7217 0.4611 1.7600 -152 1017 1.7741 0.4555 1.7600 -152 1018 1.8293 0.4402 1.7600 -152 1019 1.8840 0.4252 1.7600 -152 1020 1.9409 0.4092 1.7600 -152 1021 1.9920 0.3967 1.7600 -152 1022 2.0430 0.3888 1.7600 -152 1023 2.0939 0.3845 1.7600 -152 1024 2.1409 0.3846 1.7600 -152 1025 2.1845 0.3835 1.7600 -152 1026 2.2284 0.3847 1.7600 -152 1027 2.2723 0.3914 1.7600 -152 1028 2.3173 0.3977 1.7600 -152 1029 2.3590 0.4055 1.7600 -152 1030 2.4008 0.4211 1.7600 -152 1031 2.4464 0.4360 1.7600 -152 1032 2.4952 0.4485 1.7600 -152 1033 2.5424 0.4610 1.7600 -152 1034 2.5887 0.4676 1.7600 -152 1035 2.6342 0.4691 1.7600 -152 1036 2.6815 0.4653 1.7600 -152 1037 2.7304 0.4607 1.7600 -152 1038 2.7805 0.4547 1.7600 -152 1039 2.8363 0.4450 1.7600 -152 1040 2.8989 0.4350 1.7600 -152 1041 2.9695 0.4279 1.7600 -152 1042 3.0377 0.4238 1.7600 -152 1043 3.0995 0.4214 1.7600 -152 1044 3.1562 0.4209 1.7600 -152 1045 3.2092 0.4224 1.7600 -152 1046 3.2600 0.4239 1.7600 -152 1047 3.3083 0.4260 1.7600 -152 1048 3.3559 0.4320 1.7600 -152 1049 3.4028 0.4373 1.7600 -152 1050 3.4537 0.4501 1.7600 -152 1051 3.5113 0.4683 1.7600 -152 1052 3.5698 0.4940 1.7600 -152 1053 3.6295 0.5137 1.7600 -152 1054 3.6862 0.5288 1.7600 -152 1055 3.7424 0.5372 1.7600 -152 1056 3.7978 0.5349 1.7600 -152 1057 3.8460 0.5286 1.7600 -152 1058 3.8967 0.5218 1.7600 -152 1059 3.9476 0.5094 1.7600 -152 1060 4.0004 0.4976 1.7600 -152 1061 4.0613 0.4841 1.7600 -152 1062 4.1262 0.4669 1.7600 -152 1063 4.1911 0.4500 1.7600 -152 1064 4.2508 0.4343 1.7600 -152 1065 4.3094 0.4274 1.7600 -152 1066 4.3662 0.4206 1.7600 -152 1067 4.4192 0.4198 1.7600 -152 1068 4.4659 0.4207 1.7600 -152 1069 4.5120 0.4225 1.7600 -152 1070 4.5629 0.4292 1.7600 -152 1071 4.6204 0.4389 1.7600 -152 1072 4.6813 0.4506 1.7600 -152 1073 4.7455 0.4701 1.7600 -152 1074 4.8099 0.4882 1.7600 -152 1075 4.8674 0.5023 1.7600 -152 1076 4.9271 0.5065 1.7600 -152 1077 4.9825 0.5020 1.7600 -152 1078 5.0248 0.4915 1.7600 -152 1079 5.0640 0.4749 1.7600 -152 1080 5.1089 0.4617 1.7600 -152 1081 5.1594 0.4494 1.7600 -152 1082 5.2201 0.4384 1.7600 -152 1083 5.2868 0.4259 1.7600 -152 1084 5.3611 0.4167 1.7600 -152 1085 5.4340 0.4068 1.7600 -152 1086 5.5000 0.4015 1.7600 -152 1087 5.5624 0.4023 1.7600 -152 1088 5.6207 0.4058 1.7600 -152 1089 5.6738 0.4104 1.7600 -152 1090 5.7255 0.4165 1.7600 -152 1091 5.7767 0.4264 1.7600 -152 1092 5.8277 0.4406 1.7600 -152 1093 5.8833 0.4584 1.7600 -152 1094 5.9445 0.4799 1.7600 -153 845 -7.8305 1.6897 1.7600 -153 846 -7.7842 1.6958 1.7600 -153 847 -7.7408 1.6988 1.7600 -153 848 -7.6970 1.6991 1.7600 -153 849 -7.6528 1.6931 1.7600 -153 850 -7.6079 1.6832 1.7600 -153 851 -7.5607 1.6704 1.7600 -153 852 -7.5085 1.6553 1.7600 -153 853 -7.4525 1.6375 1.7600 -153 854 -7.3974 1.6168 1.7600 -153 855 -7.3480 1.5956 1.7600 -153 856 -7.3031 1.5777 1.7600 -153 857 -7.2589 1.5633 1.7600 -153 858 -7.2123 1.5525 1.7600 -153 859 -7.1640 1.5483 1.7600 -153 860 -7.1180 1.5440 1.7600 -153 861 -7.0668 1.5390 1.7600 -153 862 -7.0148 1.5390 1.7600 -153 863 -6.9593 1.5393 1.7600 -153 864 -6.8988 1.5412 1.7600 -153 865 -6.8419 1.5463 1.7600 -153 866 -6.7870 1.5527 1.7600 -153 867 -6.7380 1.5576 1.7600 -153 868 -6.6883 1.5555 1.7600 -153 869 -6.6350 1.5513 1.7600 -153 870 -6.5824 1.5439 1.7600 -153 871 -6.5327 1.5328 1.7600 -153 872 -6.4818 1.5205 1.7600 -153 873 -6.4291 1.5057 1.7600 -153 874 -6.3747 1.4886 1.7600 -153 875 -6.3234 1.4685 1.7600 -153 876 -6.2747 1.4495 1.7600 -153 877 -6.2304 1.4340 1.7600 -153 878 -6.1841 1.4209 1.7600 -153 879 -6.1350 1.4123 1.7600 -153 880 -6.0869 1.4052 1.7600 -153 881 -6.0392 1.4011 1.7600 -153 882 -5.9914 1.3964 1.7600 -153 883 -5.9387 1.3969 1.7600 -153 884 -5.8880 1.3973 1.7600 -153 885 -5.8345 1.4018 1.7600 -153 886 -5.7873 1.4059 1.7600 -153 887 -5.7389 1.4085 1.7600 -153 888 -5.6895 1.4079 1.7600 -153 889 -5.6421 1.4025 1.7600 -153 890 -5.5962 1.3901 1.7600 -153 891 -5.5503 1.3761 1.7600 -153 892 -5.5067 1.3595 1.7600 -153 893 -5.4634 1.3413 1.7600 -153 894 -5.4180 1.3191 1.7600 -153 895 -5.3738 1.2912 1.7600 -153 896 -5.3278 1.2663 1.7600 -153 897 -5.2844 1.2451 1.7600 -153 898 -5.2415 1.2296 1.7600 -153 899 -5.1947 1.2181 1.7600 -153 900 -5.1475 1.2131 1.7600 -153 901 -5.1012 1.2122 1.7600 -153 902 -5.0526 1.2163 1.7600 -153 903 -5.0038 1.2254 1.7600 -153 904 -4.9516 1.2333 1.7600 -153 905 -4.8995 1.2435 1.7600 -153 906 -4.8440 1.2540 1.7600 -153 907 -4.7867 1.2611 1.7600 -153 908 -4.7365 1.2667 1.7600 -153 909 -4.6856 1.2689 1.7600 -153 910 -4.6352 1.2680 1.7600 -153 911 -4.5859 1.2644 1.7600 -153 912 -4.5357 1.2582 1.7600 -153 913 -4.4903 1.2489 1.7600 -153 914 -4.4436 1.2348 1.7600 -153 915 -4.3949 1.2177 1.7600 -153 916 -4.3439 1.1997 1.7600 -153 917 -4.2868 1.1831 1.7600 -153 918 -4.2340 1.1709 1.7600 -153 919 -4.1862 1.1617 1.7600 -153 920 -4.1381 1.1532 1.7600 -153 921 -4.0839 1.1506 1.7600 -153 922 -4.0264 1.1536 1.7600 -153 923 -3.9714 1.1608 1.7600 -153 924 -3.9215 1.1714 1.7600 -153 925 -3.8674 1.1811 1.7600 -153 926 -3.8120 1.1929 1.7600 -153 927 -3.7526 1.2091 1.7600 -153 928 -3.6934 1.2255 1.7600 -153 929 -3.6362 1.2392 1.7600 -153 930 -3.5838 1.2490 1.7600 -153 931 -3.5307 1.2511 1.7600 -153 932 -3.4837 1.2499 1.7600 -153 933 -3.4352 1.2474 1.7600 -153 934 -3.3903 1.2444 1.7600 -153 935 -3.3408 1.2374 1.7600 -153 936 -3.2920 1.2272 1.7600 -153 937 -3.2453 1.2151 1.7600 -153 938 -3.1927 1.1980 1.7600 -153 939 -3.1406 1.1814 1.7600 -153 940 -3.0908 1.1703 1.7600 -153 941 -3.0399 1.1650 1.7600 -153 942 -2.9896 1.1663 1.7600 -153 943 -2.9384 1.1717 1.7600 -153 944 -2.8909 1.1795 1.7600 -153 945 -2.8478 1.1923 1.7600 -153 946 -2.8020 1.2067 1.7600 -153 947 -2.7543 1.2212 1.7600 -153 948 -2.6994 1.2397 1.7600 -153 949 -2.6467 1.2578 1.7600 -153 950 -2.5997 1.2744 1.7600 -153 951 -2.5519 1.2888 1.7600 -153 952 -2.5064 1.2972 1.7600 -153 953 -2.4566 1.3037 1.7600 -153 954 -2.4033 1.3099 1.7600 -153 955 -2.3510 1.3087 1.7600 -153 956 -2.2990 1.3034 1.7600 -153 957 -2.2518 1.2906 1.7600 -153 958 -2.2032 1.2732 1.7600 -153 959 -2.1492 1.2561 1.7600 -153 960 -2.0847 1.2383 1.7600 -153 961 -2.0196 1.2250 1.7600 -153 962 -1.9619 1.2173 1.7600 -153 963 -1.9096 1.2147 1.7600 -153 964 -1.8608 1.2156 1.7600 -153 965 -1.8212 1.2181 1.7600 -153 966 -1.7761 1.2245 1.7600 -153 967 -1.7309 1.2329 1.7600 -153 968 -1.6773 1.2473 1.7600 -153 969 -1.6266 1.2631 1.7600 -153 970 -1.5685 1.2802 1.7600 -153 971 -1.5121 1.2941 1.7600 -153 972 -1.4564 1.3034 1.7600 -153 973 -1.3962 1.3039 1.7600 -153 974 -1.3401 1.3002 1.7600 -153 975 -1.2898 1.2928 1.7600 -153 976 -1.2427 1.2840 1.7600 -153 977 -1.1963 1.2730 1.7600 -153 978 -1.1452 1.2596 1.7600 -153 979 -1.0915 1.2425 1.7600 -153 980 -1.0368 1.2242 1.7600 -153 981 -0.9872 1.2162 1.7600 -153 982 -0.9360 1.2130 1.7600 -153 983 -0.8850 1.2157 1.7600 -153 984 -0.8321 1.2241 1.7600 -153 985 -0.7796 1.2337 1.7600 -153 986 -0.7285 1.2468 1.7600 -153 987 -0.6728 1.2614 1.7600 -153 988 -0.6160 1.2803 1.7600 -153 989 -0.5559 1.2988 1.7600 -153 990 -0.4971 1.3138 1.7600 -153 991 -0.4421 1.3248 1.7600 -153 992 -0.3879 1.3265 1.7600 -153 993 -0.3338 1.3220 1.7600 -153 994 -0.2805 1.3147 1.7600 -153 995 -0.2296 1.3063 1.7600 -153 996 -0.1768 1.2966 1.7600 -153 997 -0.1216 1.2845 1.7600 -153 998 -0.0649 1.2704 1.7600 -153 999 -0.0023 1.2515 1.7600 -153 1000 0.0582 1.2367 1.7600 -153 1001 0.1168 1.2242 1.7600 -153 1002 0.1738 1.2160 1.7600 -153 1003 0.2328 1.2107 1.7600 -153 1004 0.2923 1.2122 1.7600 -153 1005 0.3507 1.2134 1.7600 -153 1006 0.4112 1.2183 1.7600 -153 1007 0.4732 1.2290 1.7600 -153 1008 0.5437 1.2422 1.7600 -153 1009 0.6142 1.2563 1.7600 -153 1010 0.6763 1.2696 1.7600 -153 1011 0.7311 1.2830 1.7600 -153 1012 0.7878 1.2936 1.7600 -153 1013 0.8475 1.2988 1.7600 -153 1014 0.9092 1.2995 1.7600 -153 1015 0.9720 1.2969 1.7600 -153 1016 1.0347 1.2924 1.7600 -153 1017 1.0996 1.2854 1.7600 -153 1018 1.1648 1.2751 1.7600 -153 1019 1.2288 1.2626 1.7600 -153 1020 1.2966 1.2435 1.7600 -153 1021 1.3582 1.2342 1.7600 -153 1022 1.4217 1.2304 1.7600 -153 1023 1.4864 1.2320 1.7600 -153 1024 1.5497 1.2379 1.7600 -153 1025 1.6098 1.2411 1.7600 -153 1026 1.6676 1.2483 1.7600 -153 1027 1.7291 1.2595 1.7600 -153 1028 1.7929 1.2761 1.7600 -153 1029 1.8644 1.2957 1.7600 -153 1030 1.9339 1.3152 1.7600 -153 1031 1.9949 1.3278 1.7600 -153 1032 2.0535 1.3325 1.7600 -153 1033 2.1124 1.3310 1.7600 -153 1034 2.1715 1.3243 1.7600 -153 1035 2.2306 1.3153 1.7600 -153 1036 2.2856 1.3053 1.7600 -153 1037 2.3445 1.2893 1.7600 -153 1038 2.4059 1.2720 1.7600 -153 1039 2.4699 1.2514 1.7600 -153 1040 2.5305 1.2356 1.7600 -153 1041 2.5892 1.2241 1.7600 -153 1042 2.6447 1.2197 1.7600 -153 1043 2.7003 1.2174 1.7600 -153 1044 2.7550 1.2196 1.7600 -153 1045 2.8119 1.2234 1.7600 -153 1046 2.8716 1.2311 1.7600 -153 1047 2.9378 1.2427 1.7600 -153 1048 3.0104 1.2582 1.7600 -153 1049 3.0900 1.2701 1.7600 -153 1050 3.1640 1.2755 1.7600 -153 1051 3.2298 1.2792 1.7600 -153 1052 3.2883 1.2776 1.7600 -153 1053 3.3431 1.2725 1.7600 -153 1054 3.3965 1.2641 1.7600 -153 1055 3.4499 1.2539 1.7600 -153 1056 3.5031 1.2419 1.7600 -153 1057 3.5626 1.2277 1.7600 -153 1058 3.6280 1.2093 1.7600 -153 1059 3.6942 1.1886 1.7600 -153 1060 3.7616 1.1770 1.7600 -153 1061 3.8254 1.1754 1.7600 -153 1062 3.8864 1.1799 1.7600 -153 1063 3.9479 1.1865 1.7600 -153 1064 4.0099 1.1963 1.7600 -153 1065 4.0671 1.2066 1.7600 -153 1066 4.1285 1.2226 1.7600 -153 1067 4.1933 1.2372 1.7600 -153 1068 4.2693 1.2514 1.7600 -153 1069 4.3412 1.2658 1.7600 -153 1070 4.4054 1.2742 1.7600 -153 1071 4.4692 1.2777 1.7600 -153 1072 4.5277 1.2758 1.7600 -153 1073 4.5855 1.2719 1.7600 -153 1074 4.6376 1.2672 1.7600 -153 1075 4.6920 1.2605 1.7600 -153 1076 4.7507 1.2519 1.7600 -153 1077 4.8204 1.2421 1.7600 -153 1078 4.8974 1.2335 1.7600 -153 1079 4.9639 1.2284 1.7600 -153 1080 5.0335 1.2285 1.7600 -153 1081 5.0993 1.2356 1.7600 -153 1082 5.1625 1.2441 1.7600 -153 1083 5.2233 1.2549 1.7600 -153 1084 5.2840 1.2650 1.7600 -153 1085 5.3514 1.2736 1.7600 -153 1086 5.4273 1.2839 1.7600 -153 1087 5.5121 1.2973 1.7600 -153 1088 5.5902 1.3104 1.7600 -153 1089 5.6619 1.3167 1.7600 -153 1090 5.7307 1.3137 1.7600 -153 1091 5.7929 1.3097 1.7600 -153 1092 5.8500 1.3054 1.7600 -153 1093 5.9043 1.2985 1.7600 -154 853 -7.8130 0.8300 1.7600 -154 854 -7.7734 0.8127 1.7600 -154 855 -7.7337 0.7984 1.7600 -154 856 -7.6912 0.7889 1.7600 -154 857 -7.6434 0.7828 1.7600 -154 858 -7.5911 0.7766 1.7600 -154 859 -7.5367 0.7706 1.7600 -154 860 -7.4809 0.7668 1.7600 -154 861 -7.4256 0.7632 1.7600 -154 862 -7.3722 0.7576 1.7600 -154 863 -7.3199 0.7512 1.7600 -154 864 -7.2719 0.7430 1.7600 -154 865 -7.2223 0.7294 1.7600 -154 866 -7.1699 0.7160 1.7600 -154 867 -7.1151 0.7011 1.7600 -154 868 -7.0562 0.6852 1.7600 -154 869 -6.9949 0.6660 1.7600 -154 870 -6.9334 0.6433 1.7600 -154 871 -6.8729 0.6172 1.7600 -154 872 -6.8154 0.5916 1.7600 -154 873 -6.7624 0.5666 1.7600 -154 874 -6.7097 0.5472 1.7600 -154 875 -6.6570 0.5322 1.7600 -154 876 -6.6031 0.5219 1.7600 -154 877 -6.5484 0.5145 1.7600 -154 878 -6.4888 0.5092 1.7600 -154 879 -6.4294 0.5110 1.7600 -154 880 -6.3687 0.5139 1.7600 -154 881 -6.3125 0.5215 1.7600 -154 882 -6.2579 0.5264 1.7600 -154 883 -6.2035 0.5300 1.7600 -154 884 -6.1535 0.5308 1.7600 -154 885 -6.1048 0.5318 1.7600 -154 886 -6.0582 0.5306 1.7600 -154 887 -6.0100 0.5303 1.7600 -154 888 -5.9655 0.5299 1.7600 -154 889 -5.9182 0.5271 1.7600 -154 890 -5.8726 0.5205 1.7600 -154 891 -5.8198 0.5087 1.7600 -154 892 -5.7732 0.4926 1.7600 -154 893 -5.7270 0.4735 1.7600 -154 894 -5.6781 0.4549 1.7600 -154 895 -5.6328 0.4353 1.7600 -154 896 -5.5891 0.4211 1.7600 -154 897 -5.5444 0.4123 1.7600 -154 898 -5.5001 0.4034 1.7600 -154 899 -5.4571 0.3989 1.7600 -154 900 -5.4117 0.3955 1.7600 -154 901 -5.3640 0.3953 1.7600 -154 902 -5.3141 0.3988 1.7600 -154 903 -5.2657 0.4045 1.7600 -154 904 -5.2154 0.4120 1.7600 -154 905 -5.1657 0.4203 1.7600 -154 906 -5.1164 0.4269 1.7600 -154 907 -5.0708 0.4294 1.7600 -154 908 -5.0272 0.4277 1.7600 -154 909 -4.9836 0.4231 1.7600 -154 910 -4.9412 0.4181 1.7600 -154 911 -4.8954 0.4111 1.7600 -154 912 -4.8457 0.3975 1.7600 -154 913 -4.7983 0.3817 1.7600 -154 914 -4.7518 0.3636 1.7600 -154 915 -4.7030 0.3448 1.7600 -154 916 -4.6555 0.3221 1.7600 -154 917 -4.6077 0.2978 1.7600 -154 918 -4.5633 0.2803 1.7600 -154 919 -4.5181 0.2707 1.7600 -154 920 -4.4754 0.2644 1.7600 -154 921 -4.4329 0.2614 1.7600 -154 922 -4.3911 0.2590 1.7600 -154 923 -4.3476 0.2637 1.7600 -154 924 -4.3050 0.2704 1.7600 -154 925 -4.2587 0.2780 1.7600 -154 926 -4.2144 0.2881 1.7600 -154 927 -4.1675 0.3005 1.7600 -154 928 -4.1198 0.3135 1.7600 -154 929 -4.0726 0.3255 1.7600 -154 930 -4.0277 0.3369 1.7600 -154 931 -3.9843 0.3451 1.7600 -154 932 -3.9390 0.3484 1.7600 -154 933 -3.8951 0.3501 1.7600 -154 934 -3.8488 0.3480 1.7600 -154 935 -3.8013 0.3424 1.7600 -154 936 -3.7518 0.3305 1.7600 -154 937 -3.7016 0.3172 1.7600 -154 938 -3.6514 0.2991 1.7600 -154 939 -3.5994 0.2810 1.7600 -154 940 -3.5449 0.2650 1.7600 -154 941 -3.4918 0.2541 1.7600 -154 942 -3.4403 0.2481 1.7600 -154 943 -3.3891 0.2458 1.7600 -154 944 -3.3384 0.2487 1.7600 -154 945 -3.2899 0.2521 1.7600 -154 946 -3.2379 0.2564 1.7600 -154 947 -3.1904 0.2654 1.7600 -154 948 -3.1419 0.2780 1.7600 -154 949 -3.0964 0.2918 1.7600 -154 950 -3.0492 0.3074 1.7600 -154 951 -3.0029 0.3206 1.7600 -154 952 -2.9567 0.3295 1.7600 -154 953 -2.9101 0.3333 1.7600 -154 954 -2.8629 0.3348 1.7600 -154 955 -2.8143 0.3349 1.7600 -154 956 -2.7662 0.3345 1.7600 -154 957 -2.7168 0.3319 1.7600 -154 958 -2.6644 0.3265 1.7600 -154 959 -2.6122 0.3167 1.7600 -154 960 -2.5595 0.3030 1.7600 -154 961 -2.5033 0.2875 1.7600 -154 962 -2.4507 0.2725 1.7600 -154 963 -2.4017 0.2621 1.7600 -154 964 -2.3542 0.2566 1.7600 -154 965 -2.3054 0.2553 1.7600 -154 966 -2.2591 0.2557 1.7600 -154 967 -2.2129 0.2592 1.7600 -154 968 -2.1658 0.2632 1.7600 -154 969 -2.1189 0.2712 1.7600 -154 970 -2.0735 0.2836 1.7600 -154 971 -2.0278 0.2974 1.7600 -154 972 -1.9787 0.3137 1.7600 -154 973 -1.9265 0.3275 1.7600 -154 974 -1.8744 0.3385 1.7600 -154 975 -1.8261 0.3448 1.7600 -154 976 -1.7771 0.3478 1.7600 -154 977 -1.7301 0.3468 1.7600 -154 978 -1.6805 0.3451 1.7600 -154 979 -1.6287 0.3418 1.7600 -154 980 -1.5740 0.3359 1.7600 -154 981 -1.5162 0.3236 1.7600 -154 982 -1.4560 0.3066 1.7600 -154 983 -1.3964 0.2894 1.7600 -154 984 -1.3362 0.2727 1.7600 -154 985 -1.2796 0.2580 1.7600 -154 986 -1.2260 0.2492 1.7600 -154 987 -1.1737 0.2420 1.7600 -154 988 -1.1235 0.2406 1.7600 -154 989 -1.0730 0.2391 1.7600 -154 990 -1.0223 0.2406 1.7600 -154 991 -0.9720 0.2464 1.7600 -154 992 -0.9224 0.2538 1.7600 -154 993 -0.8714 0.2646 1.7600 -154 994 -0.8218 0.2784 1.7600 -154 995 -0.7705 0.2919 1.7600 -154 996 -0.7176 0.3038 1.7600 -154 997 -0.6655 0.3126 1.7600 -154 998 -0.6132 0.3177 1.7600 -154 999 -0.5626 0.3172 1.7600 -154 1000 -0.5130 0.3175 1.7600 -154 1001 -0.4617 0.3167 1.7600 -154 1002 -0.4078 0.3157 1.7600 -154 1003 -0.3528 0.3154 1.7600 -154 1004 -0.2941 0.3103 1.7600 -154 1005 -0.2354 0.3015 1.7600 -154 1006 -0.1772 0.2879 1.7600 -154 1007 -0.1179 0.2726 1.7600 -154 1008 -0.0624 0.2627 1.7600 -154 1009 -0.0103 0.2600 1.7600 -154 1010 0.0414 0.2591 1.7600 -154 1011 0.0924 0.2585 1.7600 -154 1012 0.1454 0.2602 1.7600 -154 1013 0.1984 0.2619 1.7600 -154 1014 0.2569 0.2683 1.7600 -154 1015 0.3145 0.2753 1.7600 -154 1016 0.3733 0.2865 1.7600 -154 1017 0.4311 0.2990 1.7600 -154 1018 0.4860 0.3080 1.7600 -154 1019 0.5426 0.3158 1.7600 -154 1020 0.5938 0.3190 1.7600 -154 1021 0.6436 0.3155 1.7600 -154 1022 0.6963 0.3091 1.7600 -154 1023 0.7524 0.3044 1.7600 -154 1024 0.8066 0.2972 1.7600 -154 1025 0.8637 0.2897 1.7600 -154 1026 0.9220 0.2782 1.7600 -154 1027 0.9808 0.2640 1.7600 -154 1028 1.0392 0.2481 1.7600 -154 1029 1.0964 0.2316 1.7600 -154 1030 1.1574 0.2169 1.7600 -154 1031 1.2146 0.2112 1.7600 -154 1032 1.2669 0.2098 1.7600 -154 1033 1.3181 0.2117 1.7600 -154 1034 1.3697 0.2139 1.7600 -154 1035 1.4199 0.2149 1.7600 -154 1036 1.4695 0.2148 1.7600 -154 1037 1.5205 0.2185 1.7600 -154 1038 1.5693 0.2266 1.7600 -154 1039 1.6167 0.2386 1.7600 -154 1040 1.6608 0.2533 1.7600 -154 1041 1.7082 0.2709 1.7600 -154 1042 1.7527 0.2889 1.7600 -154 1043 1.7980 0.3031 1.7600 -154 1044 1.8442 0.3106 1.7600 -154 1045 1.8950 0.3147 1.7600 -154 1046 1.9464 0.3179 1.7600 -154 1047 1.9989 0.3146 1.7600 -154 1048 2.0544 0.3093 1.7600 -154 1049 2.1093 0.2996 1.7600 -154 1050 2.1659 0.2869 1.7600 -154 1051 2.2169 0.2737 1.7600 -154 1052 2.2656 0.2638 1.7600 -154 1053 2.3150 0.2617 1.7600 -154 1054 2.3643 0.2595 1.7600 -154 1055 2.4112 0.2618 1.7600 -154 1056 2.4509 0.2614 1.7600 -154 1057 2.4892 0.2622 1.7600 -154 1058 2.5345 0.2627 1.7600 -154 1059 2.5863 0.2621 1.7600 -154 1060 2.6348 0.2654 1.7600 -154 1061 2.6823 0.2724 1.7600 -154 1062 2.7296 0.2836 1.7600 -154 1063 2.7801 0.2957 1.7600 -154 1064 2.8336 0.3074 1.7600 -154 1065 2.8854 0.3161 1.7600 -154 1066 2.9423 0.3258 1.7600 -154 1067 3.0003 0.3314 1.7600 -154 1068 3.0548 0.3352 1.7600 -154 1069 3.1089 0.3364 1.7600 -154 1070 3.1673 0.3344 1.7600 -154 1071 3.2272 0.3269 1.7600 -154 1072 3.2897 0.3183 1.7600 -154 1073 3.3549 0.3059 1.7600 -154 1074 3.4239 0.2952 1.7600 -154 1075 3.4929 0.2900 1.7600 -154 1076 3.5617 0.2919 1.7600 -154 1077 3.6308 0.2971 1.7600 -154 1078 3.6989 0.3040 1.7600 -154 1079 3.7677 0.3131 1.7600 -154 1080 3.8344 0.3269 1.7600 -154 1081 3.9003 0.3432 1.7600 -154 1082 3.9663 0.3606 1.7600 -154 1083 4.0333 0.3757 1.7600 -154 1084 4.1044 0.3899 1.7600 -154 1085 4.1718 0.3981 1.7600 -154 1086 4.2333 0.3998 1.7600 -154 1087 4.2918 0.3936 1.7600 -154 1088 4.3483 0.3845 1.7600 -154 1089 4.4050 0.3714 1.7600 -154 1090 4.4615 0.3501 1.7600 -154 1091 4.5248 0.3284 1.7600 -154 1092 4.5897 0.2975 1.7600 -154 1093 4.6624 0.2646 1.7600 -154 1094 4.7356 0.2373 1.7600 -154 1095 4.8032 0.2167 1.7600 -154 1096 4.8663 0.2076 1.7600 -154 1097 4.9245 0.2033 1.7600 -154 1098 4.9829 0.2050 1.7600 -154 1099 5.0378 0.2110 1.7600 -154 1100 5.0942 0.2218 1.7600 -154 1101 5.1506 0.2381 1.7600 -154 1102 5.2094 0.2562 1.7600 -154 1103 5.2751 0.2725 1.7600 -154 1104 5.3482 0.2869 1.7600 -154 1105 5.4223 0.3019 1.7600 -154 1106 5.4895 0.3094 1.7600 -154 1107 5.5570 0.3155 1.7600 -154 1108 5.6171 0.3145 1.7600 -154 1109 5.6786 0.3141 1.7600 -154 1110 5.7378 0.3077 1.7600 -154 1111 5.7956 0.2975 1.7600 -154 1112 5.8577 0.2844 1.7600 -154 1113 5.9251 0.2679 1.7600 -155 860 -7.8021 1.3594 1.7600 -155 861 -7.7363 1.3392 1.7600 -155 862 -7.6753 1.3155 1.7600 -155 863 -7.6218 1.2885 1.7600 -155 864 -7.5738 1.2640 1.7600 -155 865 -7.5225 1.2435 1.7600 -155 866 -7.4653 1.2232 1.7600 -155 867 -7.4049 1.2071 1.7600 -155 868 -7.3447 1.1961 1.7600 -155 869 -7.2854 1.1874 1.7600 -155 870 -7.2260 1.1788 1.7600 -155 871 -7.1672 1.1683 1.7600 -155 872 -7.1156 1.1621 1.7600 -155 873 -7.0706 1.1580 1.7600 -155 874 -7.0210 1.1488 1.7600 -155 875 -6.9712 1.1345 1.7600 -155 876 -6.9185 1.1213 1.7600 -155 877 -6.8667 1.1050 1.7600 -155 878 -6.8074 1.0870 1.7600 -155 879 -6.7469 1.0658 1.7600 -155 880 -6.6863 1.0447 1.7600 -155 881 -6.6295 1.0209 1.7600 -155 882 -6.5799 1.0017 1.7600 -155 883 -6.5265 0.9811 1.7600 -155 884 -6.4670 0.9681 1.7600 -155 885 -6.4106 0.9618 1.7600 -155 886 -6.3555 0.9601 1.7600 -155 887 -6.2988 0.9593 1.7600 -155 888 -6.2381 0.9568 1.7600 -155 889 -6.1793 0.9570 1.7600 -155 890 -6.1236 0.9626 1.7600 -155 891 -6.0804 0.9725 1.7600 -155 892 -6.0335 0.9810 1.7600 -155 893 -5.9819 0.9812 1.7600 -155 894 -5.9278 0.9755 1.7600 -155 895 -5.8842 0.9663 1.7600 -155 896 -5.8396 0.9551 1.7600 -155 897 -5.7933 0.9448 1.7600 -155 898 -5.7431 0.9318 1.7600 -155 899 -5.6911 0.9167 1.7600 -155 900 -5.6443 0.8977 1.7600 -155 901 -5.6052 0.8820 1.7600 -155 902 -5.5614 0.8667 1.7600 -155 903 -5.5113 0.8603 1.7600 -155 904 -5.4647 0.8603 1.7600 -155 905 -5.4231 0.8629 1.7600 -155 906 -5.3800 0.8698 1.7600 -155 907 -5.3385 0.8741 1.7600 -155 908 -5.2967 0.8807 1.7600 -155 909 -5.2600 0.8897 1.7600 -155 910 -5.2213 0.8933 1.7600 -155 911 -5.1849 0.8943 1.7600 -155 912 -5.1520 0.8959 1.7600 -155 913 -5.1153 0.8968 1.7600 -155 914 -5.0714 0.8950 1.7600 -155 915 -5.0251 0.8905 1.7600 -155 916 -4.9783 0.8808 1.7600 -155 917 -4.9336 0.8656 1.7600 -155 918 -4.8919 0.8471 1.7600 -155 919 -4.8547 0.8271 1.7600 -155 920 -4.8113 0.8126 1.7600 -155 921 -4.7635 0.8047 1.7600 -155 922 -4.7175 0.8035 1.7600 -155 923 -4.6751 0.8075 1.7600 -155 924 -4.6322 0.8123 1.7600 -155 925 -4.5890 0.8167 1.7600 -155 926 -4.5470 0.8234 1.7600 -155 927 -4.5036 0.8311 1.7600 -155 928 -4.4673 0.8404 1.7600 -155 929 -4.4284 0.8495 1.7600 -155 930 -4.3875 0.8596 1.7600 -155 931 -4.3510 0.8640 1.7600 -155 932 -4.3089 0.8658 1.7600 -155 933 -4.2621 0.8619 1.7600 -155 934 -4.2185 0.8569 1.7600 -155 935 -4.1725 0.8503 1.7600 -155 936 -4.1230 0.8446 1.7600 -155 937 -4.0674 0.8367 1.7600 -155 938 -4.0116 0.8291 1.7600 -155 939 -3.9543 0.8173 1.7600 -155 940 -3.9084 0.8050 1.7600 -155 941 -3.8694 0.7960 1.7600 -155 942 -3.8269 0.7891 1.7600 -155 943 -3.7799 0.7848 1.7600 -155 944 -3.7304 0.7874 1.7600 -155 945 -3.6858 0.7946 1.7600 -155 946 -3.6405 0.8023 1.7600 -155 947 -3.5928 0.8152 1.7600 -155 948 -3.5415 0.8289 1.7600 -155 949 -3.4900 0.8464 1.7600 -155 950 -3.4338 0.8635 1.7600 -155 951 -3.3871 0.8734 1.7600 -155 952 -3.3362 0.8783 1.7600 -155 953 -3.2870 0.8758 1.7600 -155 954 -3.2433 0.8697 1.7600 -155 955 -3.1969 0.8589 1.7600 -155 956 -3.1488 0.8448 1.7600 -155 957 -3.0988 0.8298 1.7600 -155 958 -3.0468 0.8154 1.7600 -155 959 -2.9956 0.7995 1.7600 -155 960 -2.9412 0.7829 1.7600 -155 961 -2.8946 0.7698 1.7600 -155 962 -2.8459 0.7569 1.7600 -155 963 -2.7918 0.7480 1.7600 -155 964 -2.7397 0.7462 1.7600 -155 965 -2.6954 0.7520 1.7600 -155 966 -2.6498 0.7593 1.7600 -155 967 -2.6032 0.7704 1.7600 -155 968 -2.5527 0.7853 1.7600 -155 969 -2.4955 0.8001 1.7600 -155 970 -2.4423 0.8197 1.7600 -155 971 -2.3945 0.8304 1.7600 -155 972 -2.3414 0.8368 1.7600 -155 973 -2.2898 0.8374 1.7600 -155 974 -2.2419 0.8363 1.7600 -155 975 -2.1946 0.8365 1.7600 -155 976 -2.1441 0.8340 1.7600 -155 977 -2.0921 0.8310 1.7600 -155 978 -2.0350 0.8232 1.7600 -155 979 -1.9696 0.8096 1.7600 -155 980 -1.9137 0.7973 1.7600 -155 981 -1.8562 0.7872 1.7600 -155 982 -1.8000 0.7836 1.7600 -155 983 -1.7492 0.7902 1.7600 -155 984 -1.7018 0.7992 1.7600 -155 985 -1.6548 0.8099 1.7600 -155 986 -1.6032 0.8193 1.7600 -155 987 -1.5478 0.8300 1.7600 -155 988 -1.4869 0.8435 1.7600 -155 989 -1.4172 0.8585 1.7600 -155 990 -1.3540 0.8753 1.7600 -155 991 -1.2962 0.8883 1.7600 -155 992 -1.2381 0.8946 1.7600 -155 993 -1.1798 0.8943 1.7600 -155 994 -1.1217 0.8890 1.7600 -155 995 -1.0611 0.8811 1.7600 -155 996 -1.0002 0.8708 1.7600 -155 997 -0.9434 0.8576 1.7600 -155 998 -0.8859 0.8420 1.7600 -155 999 -0.8332 0.8228 1.7600 -155 1000 -0.7883 0.8078 1.7600 -155 1001 -0.7353 0.7961 1.7600 -155 1002 -0.6798 0.7912 1.7600 -155 1003 -0.6261 0.7934 1.7600 -155 1004 -0.5724 0.7978 1.7600 -155 1005 -0.5156 0.8046 1.7600 -155 1006 -0.4548 0.8125 1.7600 -155 1007 -0.3924 0.8229 1.7600 -155 1008 -0.3300 0.8363 1.7600 -155 1009 -0.2789 0.8521 1.7600 -155 1010 -0.2248 0.8644 1.7600 -155 1011 -0.1698 0.8680 1.7600 -155 1012 -0.1121 0.8668 1.7600 -155 1013 -0.0540 0.8665 1.7600 -155 1014 0.0033 0.8662 1.7600 -155 1015 0.0651 0.8637 1.7600 -155 1016 0.1247 0.8597 1.7600 -155 1017 0.1860 0.8544 1.7600 -155 1018 0.2459 0.8483 1.7600 -155 1019 0.3023 0.8454 1.7600 -155 1020 0.3621 0.8480 1.7600 -155 1021 0.4219 0.8562 1.7600 -155 1022 0.4811 0.8677 1.7600 -155 1023 0.5404 0.8811 1.7600 -155 1024 0.6007 0.8942 1.7600 -155 1025 0.6602 0.9069 1.7600 -155 1026 0.7216 0.9218 1.7600 -155 1027 0.7826 0.9368 1.7600 -155 1028 0.8402 0.9488 1.7600 -155 1029 0.8997 0.9556 1.7600 -155 1030 0.9635 0.9557 1.7600 -155 1031 1.0244 0.9531 1.7600 -155 1032 1.0861 0.9493 1.7600 -155 1033 1.1531 0.9436 1.7600 -155 1034 1.2214 0.9347 1.7600 -155 1035 1.2891 0.9214 1.7600 -155 1036 1.3502 0.9042 1.7600 -155 1037 1.4112 0.8890 1.7600 -155 1038 1.4747 0.8819 1.7600 -155 1039 1.5392 0.8840 1.7600 -155 1040 1.5970 0.8898 1.7600 -155 1041 1.6585 0.8967 1.7600 -155 1042 1.7207 0.9036 1.7600 -155 1043 1.7855 0.9128 1.7600 -155 1044 1.8547 0.9258 1.7600 -155 1045 1.9153 0.9416 1.7600 -155 1046 1.9698 0.9546 1.7600 -155 1047 2.0261 0.9600 1.7600 -155 1048 2.0808 0.9574 1.7600 -155 1049 2.1372 0.9537 1.7600 -155 1050 2.1905 0.9539 1.7600 -155 1051 2.2456 0.9568 1.7600 -155 1052 2.2971 0.9573 1.7600 -155 1053 2.3492 0.9560 1.7600 -155 1054 2.4018 0.9499 1.7600 -155 1055 2.4486 0.9452 1.7600 -155 1056 2.4966 0.9409 1.7600 -155 1057 2.5521 0.9415 1.7600 -155 1058 2.6097 0.9474 1.7600 -155 1059 2.6721 0.9581 1.7600 -155 1060 2.7291 0.9717 1.7600 -155 1061 2.7884 0.9886 1.7600 -155 1062 2.8444 1.0048 1.7600 -155 1063 2.9084 1.0222 1.7600 -155 1064 2.9631 1.0393 1.7600 -155 1065 3.0186 1.0507 1.7600 -155 1066 3.0818 1.0587 1.7600 -155 1067 3.1497 1.0658 1.7600 -155 1068 3.2135 1.0702 1.7600 -155 1069 3.2752 1.0724 1.7600 -155 1070 3.3353 1.0730 1.7600 -155 1071 3.4026 1.0711 1.7600 -155 1072 3.4748 1.0677 1.7600 -155 1073 3.5488 1.0642 1.7600 -155 1074 3.6155 1.0599 1.7600 -155 1075 3.6857 1.0614 1.7600 -155 1076 3.7561 1.0712 1.7600 -155 1077 3.8255 1.0872 1.7600 -155 1078 3.8899 1.1011 1.7600 -155 1079 3.9583 1.1122 1.7600 -155 1080 4.0255 1.1240 1.7600 -155 1081 4.0965 1.1361 1.7600 -155 1082 4.1618 1.1504 1.7600 -155 1083 4.2262 1.1606 1.7600 -155 1084 4.2955 1.1666 1.7600 -155 1085 4.3624 1.1682 1.7600 -155 1086 4.4242 1.1663 1.7600 -155 1087 4.4894 1.1663 1.7600 -155 1088 4.5518 1.1659 1.7600 -155 1089 4.6199 1.1654 1.7600 -155 1090 4.6939 1.1617 1.7600 -155 1091 4.7625 1.1596 1.7600 -155 1092 4.8290 1.1564 1.7600 -155 1093 4.8973 1.1602 1.7600 -155 1094 4.9659 1.1699 1.7600 -155 1095 5.0311 1.1843 1.7600 -155 1096 5.0922 1.1984 1.7600 -155 1097 5.1502 1.2093 1.7600 -155 1098 5.2127 1.2196 1.7600 -155 1099 5.2782 1.2321 1.7600 -155 1100 5.3446 1.2460 1.7600 -155 1101 5.4110 1.2548 1.7600 -155 1102 5.4725 1.2557 1.7600 -155 1103 5.5266 1.2525 1.7600 -155 1104 5.5819 1.2485 1.7600 -155 1105 5.6359 1.2495 1.7600 -155 1106 5.6957 1.2508 1.7600 -155 1107 5.7603 1.2548 1.7600 -155 1108 5.8394 1.2558 1.7600 -155 1109 5.9233 1.2524 1.7600 -156 872 -7.7976 0.8776 1.7600 -156 873 -7.7569 0.8506 1.7600 -156 874 -7.7167 0.8250 1.7600 -156 875 -7.6729 0.8056 1.7600 -156 876 -7.6280 0.7936 1.7600 -156 877 -7.5824 0.7870 1.7600 -156 878 -7.5335 0.7848 1.7600 -156 879 -7.4815 0.7866 1.7600 -156 880 -7.4267 0.7917 1.7600 -156 881 -7.3707 0.7994 1.7600 -156 882 -7.3119 0.8096 1.7600 -156 883 -7.2562 0.8191 1.7600 -156 884 -7.2001 0.8285 1.7600 -156 885 -7.1475 0.8340 1.7600 -156 886 -7.0960 0.8326 1.7600 -156 887 -7.0449 0.8293 1.7600 -156 888 -6.9937 0.8230 1.7600 -156 889 -6.9464 0.8141 1.7600 -156 890 -6.8954 0.8059 1.7600 -156 891 -6.8476 0.7914 1.7600 -156 892 -6.7994 0.7730 1.7600 -156 893 -6.7538 0.7529 1.7600 -156 894 -6.7141 0.7249 1.7600 -156 895 -6.6744 0.6997 1.7600 -156 896 -6.6335 0.6806 1.7600 -156 897 -6.5897 0.6680 1.7600 -156 898 -6.5450 0.6634 1.7600 -156 899 -6.4965 0.6595 1.7600 -156 900 -6.4477 0.6584 1.7600 -156 901 -6.3977 0.6574 1.7600 -156 902 -6.3495 0.6615 1.7600 -156 903 -6.3006 0.6642 1.7600 -156 904 -6.2520 0.6702 1.7600 -156 905 -6.2051 0.6737 1.7600 -156 906 -6.1594 0.6724 1.7600 -156 907 -6.1146 0.6663 1.7600 -156 908 -6.0692 0.6582 1.7600 -156 909 -6.0190 0.6482 1.7600 -156 910 -5.9708 0.6358 1.7600 -156 911 -5.9217 0.6226 1.7600 -156 912 -5.8747 0.6039 1.7600 -156 913 -5.8255 0.5825 1.7600 -156 914 -5.7830 0.5621 1.7600 -156 915 -5.7430 0.5406 1.7600 -156 916 -5.7005 0.5271 1.7600 -156 917 -5.6580 0.5164 1.7600 -156 918 -5.6158 0.5123 1.7600 -156 919 -5.5769 0.5108 1.7600 -156 920 -5.5374 0.5088 1.7600 -156 921 -5.4972 0.5096 1.7600 -156 922 -5.4586 0.5132 1.7600 -156 923 -5.4201 0.5170 1.7600 -156 924 -5.3774 0.5244 1.7600 -156 925 -5.3372 0.5323 1.7600 -156 926 -5.2951 0.5410 1.7600 -156 927 -5.2511 0.5450 1.7600 -156 928 -5.2049 0.5442 1.7600 -156 929 -5.1597 0.5346 1.7600 -156 930 -5.1143 0.5250 1.7600 -156 931 -5.0706 0.5146 1.7600 -156 932 -5.0276 0.5034 1.7600 -156 933 -4.9856 0.4906 1.7600 -156 934 -4.9461 0.4773 1.7600 -156 935 -4.9056 0.4622 1.7600 -156 936 -4.8635 0.4447 1.7600 -156 937 -4.8218 0.4300 1.7600 -156 938 -4.7808 0.4166 1.7600 -156 939 -4.7415 0.4072 1.7600 -156 940 -4.6973 0.4007 1.7600 -156 941 -4.6547 0.3998 1.7600 -156 942 -4.6132 0.4004 1.7600 -156 943 -4.5723 0.4029 1.7600 -156 944 -4.5292 0.4095 1.7600 -156 945 -4.4854 0.4210 1.7600 -156 946 -4.4437 0.4330 1.7600 -156 947 -4.4005 0.4438 1.7600 -156 948 -4.3567 0.4575 1.7600 -156 949 -4.3142 0.4631 1.7600 -156 950 -4.2710 0.4635 1.7600 -156 951 -4.2247 0.4577 1.7600 -156 952 -4.1814 0.4502 1.7600 -156 953 -4.1381 0.4445 1.7600 -156 954 -4.0964 0.4384 1.7600 -156 955 -4.0500 0.4299 1.7600 -156 956 -4.0051 0.4176 1.7600 -156 957 -3.9567 0.4027 1.7600 -156 958 -3.9097 0.3856 1.7600 -156 959 -3.8604 0.3722 1.7600 -156 960 -3.8124 0.3641 1.7600 -156 961 -3.7666 0.3577 1.7600 -156 962 -3.7193 0.3549 1.7600 -156 963 -3.6755 0.3567 1.7600 -156 964 -3.6304 0.3616 1.7600 -156 965 -3.5852 0.3649 1.7600 -156 966 -3.5390 0.3703 1.7600 -156 967 -3.4916 0.3759 1.7600 -156 968 -3.4432 0.3825 1.7600 -156 969 -3.3929 0.3891 1.7600 -156 970 -3.3432 0.3944 1.7600 -156 971 -3.2938 0.3948 1.7600 -156 972 -3.2425 0.3900 1.7600 -156 973 -3.1930 0.3843 1.7600 -156 974 -3.1426 0.3800 1.7600 -156 975 -3.0944 0.3742 1.7600 -156 976 -3.0449 0.3656 1.7600 -156 977 -2.9954 0.3537 1.7600 -156 978 -2.9440 0.3409 1.7600 -156 979 -2.8894 0.3286 1.7600 -156 980 -2.8355 0.3166 1.7600 -156 981 -2.7808 0.3092 1.7600 -156 982 -2.7265 0.3083 1.7600 -156 983 -2.6705 0.3113 1.7600 -156 984 -2.6170 0.3170 1.7600 -156 985 -2.5668 0.3261 1.7600 -156 986 -2.5165 0.3341 1.7600 -156 987 -2.4678 0.3474 1.7600 -156 988 -2.4164 0.3613 1.7600 -156 989 -2.3636 0.3723 1.7600 -156 990 -2.3134 0.3814 1.7600 -156 991 -2.2634 0.3853 1.7600 -156 992 -2.2074 0.3866 1.7600 -156 993 -2.1548 0.3919 1.7600 -156 994 -2.1079 0.3968 1.7600 -156 995 -2.0621 0.3976 1.7600 -156 996 -2.0139 0.3909 1.7600 -156 997 -1.9670 0.3887 1.7600 -156 998 -1.9137 0.3810 1.7600 -156 999 -1.8587 0.3737 1.7600 -156 1000 -1.8035 0.3649 1.7600 -156 1001 -1.7507 0.3574 1.7600 -156 1002 -1.6999 0.3555 1.7600 -156 1003 -1.6460 0.3562 1.7600 -156 1004 -1.5948 0.3554 1.7600 -156 1005 -1.5449 0.3537 1.7600 -156 1006 -1.4953 0.3548 1.7600 -156 1007 -1.4440 0.3585 1.7600 -156 1008 -1.3927 0.3655 1.7600 -156 1009 -1.3413 0.3721 1.7600 -156 1010 -1.2908 0.3779 1.7600 -156 1011 -1.2410 0.3846 1.7600 -156 1012 -1.1908 0.3882 1.7600 -156 1013 -1.1424 0.3895 1.7600 -156 1014 -1.0947 0.3857 1.7600 -156 1015 -1.0454 0.3808 1.7600 -156 1016 -0.9948 0.3760 1.7600 -156 1017 -0.9432 0.3672 1.7600 -156 1018 -0.8856 0.3528 1.7600 -156 1019 -0.8261 0.3361 1.7600 -156 1020 -0.7646 0.3200 1.7600 -156 1021 -0.7033 0.3094 1.7600 -156 1022 -0.6447 0.3064 1.7600 -156 1023 -0.5861 0.3074 1.7600 -156 1024 -0.5287 0.3125 1.7600 -156 1025 -0.4723 0.3195 1.7600 -156 1026 -0.4162 0.3281 1.7600 -156 1027 -0.3587 0.3383 1.7600 -156 1028 -0.3002 0.3521 1.7600 -156 1029 -0.2390 0.3665 1.7600 -156 1030 -0.1812 0.3770 1.7600 -156 1031 -0.1240 0.3839 1.7600 -156 1032 -0.0695 0.3845 1.7600 -156 1033 -0.0118 0.3808 1.7600 -156 1034 0.0461 0.3794 1.7600 -156 1035 0.1075 0.3790 1.7600 -156 1036 0.1703 0.3775 1.7600 -156 1037 0.2305 0.3715 1.7600 -156 1038 0.2914 0.3627 1.7600 -156 1039 0.3511 0.3539 1.7600 -156 1040 0.4087 0.3447 1.7600 -156 1041 0.4692 0.3422 1.7600 -156 1042 0.5287 0.3487 1.7600 -156 1043 0.5878 0.3567 1.7600 -156 1044 0.6456 0.3686 1.7600 -156 1045 0.7030 0.3791 1.7600 -156 1046 0.7611 0.3961 1.7600 -156 1047 0.8172 0.4148 1.7600 -156 1048 0.8777 0.4346 1.7600 -156 1049 0.9396 0.4459 1.7600 -156 1050 1.0007 0.4503 1.7600 -156 1051 1.0621 0.4480 1.7600 -156 1052 1.1204 0.4413 1.7600 -156 1053 1.1789 0.4377 1.7600 -156 1054 1.2378 0.4321 1.7600 -156 1055 1.2961 0.4219 1.7600 -156 1056 1.3565 0.4091 1.7600 -156 1057 1.4182 0.3946 1.7600 -156 1058 1.4770 0.3790 1.7600 -156 1059 1.5376 0.3660 1.7600 -156 1060 1.5968 0.3596 1.7600 -156 1061 1.6533 0.3615 1.7600 -156 1062 1.7095 0.3656 1.7600 -156 1063 1.7654 0.3762 1.7600 -156 1064 1.8205 0.3904 1.7600 -156 1065 1.8767 0.4069 1.7600 -156 1066 1.9348 0.4214 1.7600 -156 1067 1.9940 0.4385 1.7600 -156 1068 2.0515 0.4529 1.7600 -156 1069 2.1069 0.4602 1.7600 -156 1070 2.1631 0.4603 1.7600 -156 1071 2.2216 0.4528 1.7600 -156 1072 2.2797 0.4388 1.7600 -156 1073 2.3381 0.4204 1.7600 -156 1074 2.3983 0.4039 1.7600 -156 1075 2.4556 0.3864 1.7600 -156 1076 2.5143 0.3679 1.7600 -156 1077 2.5745 0.3501 1.7600 -156 1078 2.6360 0.3365 1.7600 -156 1079 2.6973 0.3300 1.7600 -156 1080 2.7568 0.3346 1.7600 -156 1081 2.8164 0.3414 1.7600 -156 1082 2.8763 0.3528 1.7600 -156 1083 2.9341 0.3705 1.7600 -156 1084 2.9926 0.3879 1.7600 -156 1085 3.0516 0.4054 1.7600 -156 1086 3.1094 0.4201 1.7600 -156 1087 3.1706 0.4322 1.7600 -156 1088 3.2294 0.4357 1.7600 -156 1089 3.2905 0.4327 1.7600 -156 1090 3.3537 0.4214 1.7600 -156 1091 3.4161 0.4099 1.7600 -156 1092 3.4784 0.4009 1.7600 -156 1093 3.5396 0.3893 1.7600 -156 1094 3.6018 0.3761 1.7600 -156 1095 3.6662 0.3605 1.7600 -156 1096 3.7291 0.3495 1.7600 -156 1097 3.7921 0.3427 1.7600 -156 1098 3.8547 0.3421 1.7600 -156 1099 3.9178 0.3438 1.7600 -156 1100 3.9781 0.3479 1.7600 -156 1101 4.0376 0.3568 1.7600 -156 1102 4.0960 0.3667 1.7600 -156 1103 4.1551 0.3800 1.7600 -156 1104 4.2178 0.3959 1.7600 -156 1105 4.2837 0.4087 1.7600 -156 1106 4.3465 0.4161 1.7600 -156 1107 4.4117 0.4149 1.7600 -156 1108 4.4731 0.4097 1.7600 -156 1109 4.5364 0.4057 1.7600 -156 1110 4.5973 0.4004 1.7600 -156 1111 4.6586 0.3923 1.7600 -156 1112 4.7180 0.3794 1.7600 -156 1113 4.7828 0.3620 1.7600 -156 1114 4.8496 0.3463 1.7600 -156 1115 4.9146 0.3338 1.7600 -156 1116 4.9824 0.3319 1.7600 -156 1117 5.0493 0.3366 1.7600 -156 1118 5.1147 0.3464 1.7600 -156 1119 5.1750 0.3615 1.7600 -156 1120 5.2317 0.3731 1.7600 -156 1121 5.2860 0.3836 1.7600 -156 1122 5.3402 0.3961 1.7600 -156 1123 5.3991 0.4078 1.7600 -156 1124 5.4598 0.4156 1.7600 -156 1125 5.5217 0.4177 1.7600 -156 1126 5.5842 0.4145 1.7600 -156 1127 5.6444 0.4086 1.7600 -156 1128 5.7021 0.4010 1.7600 -156 1129 5.7567 0.3951 1.7600 -156 1130 5.8133 0.3882 1.7600 -156 1131 5.8759 0.3798 1.7600 -156 1132 5.9439 0.3684 1.7600 -157 883 -7.7789 1.9172 1.7600 -157 884 -7.7229 1.9260 1.7600 -157 885 -7.6694 1.9364 1.7600 -157 886 -7.6177 1.9387 1.7600 -157 887 -7.5684 1.9322 1.7600 -157 888 -7.5200 1.9201 1.7600 -157 889 -7.4687 1.9077 1.7600 -157 890 -7.4167 1.8899 1.7600 -157 891 -7.3704 1.8675 1.7600 -157 892 -7.3255 1.8440 1.7600 -157 893 -7.2812 1.8124 1.7600 -157 894 -7.2440 1.7826 1.7600 -157 895 -7.2029 1.7541 1.7600 -157 896 -7.1621 1.7329 1.7600 -157 897 -7.1197 1.7160 1.7600 -157 898 -7.0738 1.7049 1.7600 -157 899 -7.0227 1.6974 1.7600 -157 900 -6.9667 1.6989 1.7600 -157 901 -6.9118 1.7001 1.7600 -157 902 -6.8579 1.7091 1.7600 -157 903 -6.8116 1.7232 1.7600 -157 904 -6.7678 1.7416 1.7600 -157 905 -6.7244 1.7573 1.7600 -157 906 -6.6807 1.7617 1.7600 -157 907 -6.6385 1.7605 1.7600 -157 908 -6.5938 1.7549 1.7600 -157 909 -6.5451 1.7451 1.7600 -157 910 -6.4966 1.7327 1.7600 -157 911 -6.4468 1.7174 1.7600 -157 912 -6.3974 1.6961 1.7600 -157 913 -6.3503 1.6712 1.7600 -157 914 -6.3049 1.6475 1.7600 -157 915 -6.2589 1.6291 1.7600 -157 916 -6.2130 1.6186 1.7600 -157 917 -6.1643 1.6130 1.7600 -157 918 -6.1131 1.6060 1.7600 -157 919 -6.0614 1.6007 1.7600 -157 920 -6.0073 1.5985 1.7600 -157 921 -5.9502 1.5994 1.7600 -157 922 -5.8908 1.6026 1.7600 -157 923 -5.8353 1.6084 1.7600 -157 924 -5.7833 1.6144 1.7600 -157 925 -5.7301 1.6202 1.7600 -157 926 -5.6830 1.6198 1.7600 -157 927 -5.6368 1.6093 1.7600 -157 928 -5.5870 1.6006 1.7600 -157 929 -5.5415 1.5859 1.7600 -157 930 -5.4943 1.5687 1.7600 -157 931 -5.4490 1.5474 1.7600 -157 932 -5.4020 1.5210 1.7600 -157 933 -5.3579 1.4905 1.7600 -157 934 -5.3145 1.4626 1.7600 -157 935 -5.2699 1.4406 1.7600 -157 936 -5.2219 1.4209 1.7600 -157 937 -5.1739 1.4049 1.7600 -157 938 -5.1246 1.3911 1.7600 -157 939 -5.0747 1.3804 1.7600 -157 940 -5.0244 1.3740 1.7600 -157 941 -4.9768 1.3744 1.7600 -157 942 -4.9283 1.3816 1.7600 -157 943 -4.8843 1.3862 1.7600 -157 944 -4.8393 1.3941 1.7600 -157 945 -4.7972 1.4014 1.7600 -157 946 -4.7499 1.4093 1.7600 -157 947 -4.7085 1.4124 1.7600 -157 948 -4.6667 1.4080 1.7600 -157 949 -4.6221 1.4019 1.7600 -157 950 -4.5724 1.3909 1.7600 -157 951 -4.5256 1.3750 1.7600 -157 952 -4.4772 1.3546 1.7600 -157 953 -4.4296 1.3338 1.7600 -157 954 -4.3876 1.3147 1.7600 -157 955 -4.3488 1.3004 1.7600 -157 956 -4.3094 1.2900 1.7600 -157 957 -4.2689 1.2818 1.7600 -157 958 -4.2271 1.2763 1.7600 -157 959 -4.1837 1.2764 1.7600 -157 960 -4.1392 1.2798 1.7600 -157 961 -4.0943 1.2858 1.7600 -157 962 -4.0514 1.2955 1.7600 -157 963 -4.0092 1.3033 1.7600 -157 964 -3.9671 1.3161 1.7600 -157 965 -3.9242 1.3269 1.7600 -157 966 -3.8803 1.3332 1.7600 -157 967 -3.8371 1.3349 1.7600 -157 968 -3.7931 1.3346 1.7600 -157 969 -3.7491 1.3307 1.7600 -157 970 -3.7055 1.3225 1.7600 -157 971 -3.6590 1.3099 1.7600 -157 972 -3.6126 1.2936 1.7600 -157 973 -3.5647 1.2817 1.7600 -157 974 -3.5178 1.2756 1.7600 -157 975 -3.4746 1.2729 1.7600 -157 976 -3.4314 1.2729 1.7600 -157 977 -3.3889 1.2744 1.7600 -157 978 -3.3457 1.2805 1.7600 -157 979 -3.3018 1.2878 1.7600 -157 980 -3.2629 1.2991 1.7600 -157 981 -3.2209 1.3098 1.7600 -157 982 -3.1777 1.3221 1.7600 -157 983 -3.1372 1.3328 1.7600 -157 984 -3.0956 1.3407 1.7600 -157 985 -3.0537 1.3422 1.7600 -157 986 -3.0127 1.3410 1.7600 -157 987 -2.9695 1.3379 1.7600 -157 988 -2.9232 1.3321 1.7600 -157 989 -2.8773 1.3211 1.7600 -157 990 -2.8277 1.3058 1.7600 -157 991 -2.7745 1.2897 1.7600 -157 992 -2.7215 1.2753 1.7600 -157 993 -2.6669 1.2646 1.7600 -157 994 -2.6187 1.2576 1.7600 -157 995 -2.5686 1.2539 1.7600 -157 996 -2.5204 1.2513 1.7600 -157 997 -2.4685 1.2522 1.7600 -157 998 -2.4174 1.2571 1.7600 -157 999 -2.3688 1.2660 1.7600 -157 1000 -2.3178 1.2779 1.7600 -157 1001 -2.2644 1.2907 1.7600 -157 1002 -2.2118 1.2998 1.7600 -157 1003 -2.1637 1.3031 1.7600 -157 1004 -2.1147 1.3036 1.7600 -157 1005 -2.0629 1.3011 1.7600 -157 1006 -2.0151 1.2984 1.7600 -157 1007 -1.9663 1.2882 1.7600 -157 1008 -1.9206 1.2775 1.7600 -157 1009 -1.8701 1.2625 1.7600 -157 1010 -1.8196 1.2494 1.7600 -157 1011 -1.7694 1.2379 1.7600 -157 1012 -1.7201 1.2335 1.7600 -157 1013 -1.6702 1.2333 1.7600 -157 1014 -1.6243 1.2370 1.7600 -157 1015 -1.5749 1.2424 1.7600 -157 1016 -1.5284 1.2501 1.7600 -157 1017 -1.4863 1.2632 1.7600 -157 1018 -1.4455 1.2785 1.7600 -157 1019 -1.4021 1.2973 1.7600 -157 1020 -1.3563 1.3121 1.7600 -157 1021 -1.3068 1.3254 1.7600 -157 1022 -1.2569 1.3345 1.7600 -157 1023 -1.2063 1.3369 1.7600 -157 1024 -1.1557 1.3349 1.7600 -157 1025 -1.1012 1.3299 1.7600 -157 1026 -1.0464 1.3229 1.7600 -157 1027 -0.9895 1.3134 1.7600 -157 1028 -0.9307 1.2993 1.7600 -157 1029 -0.8732 1.2818 1.7600 -157 1030 -0.8172 1.2686 1.7600 -157 1031 -0.7617 1.2605 1.7600 -157 1032 -0.7054 1.2585 1.7600 -157 1033 -0.6498 1.2592 1.7600 -157 1034 -0.5944 1.2594 1.7600 -157 1035 -0.5375 1.2598 1.7600 -157 1036 -0.4764 1.2618 1.7600 -157 1037 -0.4141 1.2664 1.7600 -157 1038 -0.3514 1.2733 1.7600 -157 1039 -0.2882 1.2805 1.7600 -157 1040 -0.2281 1.2935 1.7600 -157 1041 -0.1704 1.3042 1.7600 -157 1042 -0.1114 1.3057 1.7600 -157 1043 -0.0541 1.3010 1.7600 -157 1044 0.0060 1.2947 1.7600 -157 1045 0.0631 1.2909 1.7600 -157 1046 0.1219 1.2850 1.7600 -157 1047 0.1788 1.2776 1.7600 -157 1048 0.2354 1.2648 1.7600 -157 1049 0.2887 1.2493 1.7600 -157 1050 0.3433 1.2283 1.7600 -157 1051 0.3959 1.2112 1.7600 -157 1052 0.4555 1.2014 1.7600 -157 1053 0.5165 1.1996 1.7600 -157 1054 0.5795 1.1983 1.7600 -157 1055 0.6411 1.2004 1.7600 -157 1056 0.7052 1.2094 1.7600 -157 1057 0.7710 1.2217 1.7600 -157 1058 0.8357 1.2386 1.7600 -157 1059 0.9028 1.2594 1.7600 -157 1060 0.9659 1.2782 1.7600 -157 1061 1.0224 1.2954 1.7600 -157 1062 1.0792 1.3015 1.7600 -157 1063 1.1327 1.3041 1.7600 -157 1064 1.1870 1.3040 1.7600 -157 1065 1.2429 1.3032 1.7600 -157 1066 1.2967 1.2998 1.7600 -157 1067 1.3476 1.2911 1.7600 -157 1068 1.3993 1.2761 1.7600 -157 1069 1.4491 1.2588 1.7600 -157 1070 1.4992 1.2398 1.7600 -157 1071 1.5456 1.2238 1.7600 -157 1072 1.5917 1.2132 1.7600 -157 1073 1.6415 1.2064 1.7600 -157 1074 1.6885 1.2045 1.7600 -157 1075 1.7416 1.2043 1.7600 -157 1076 1.7909 1.2079 1.7600 -157 1077 1.8458 1.2137 1.7600 -157 1078 1.8992 1.2206 1.7600 -157 1079 1.9565 1.2268 1.7600 -157 1080 2.0130 1.2378 1.7600 -157 1081 2.0726 1.2496 1.7600 -157 1082 2.1311 1.2584 1.7600 -157 1083 2.1850 1.2605 1.7600 -157 1084 2.2419 1.2613 1.7600 -157 1085 2.2974 1.2624 1.7600 -157 1086 2.3576 1.2631 1.7600 -157 1087 2.4165 1.2601 1.7600 -157 1088 2.4748 1.2551 1.7600 -157 1089 2.5314 1.2450 1.7600 -157 1090 2.5907 1.2317 1.7600 -157 1091 2.6529 1.2189 1.7600 -157 1092 2.7105 1.2058 1.7600 -157 1093 2.7703 1.2006 1.7600 -157 1094 2.8321 1.2011 1.7600 -157 1095 2.8931 1.2037 1.7600 -157 1096 2.9564 1.2047 1.7600 -157 1097 3.0165 1.2108 1.7600 -157 1098 3.0764 1.2197 1.7600 -157 1099 3.1390 1.2326 1.7600 -157 1100 3.2041 1.2506 1.7600 -157 1101 3.2659 1.2706 1.7600 -157 1102 3.3271 1.2827 1.7600 -157 1103 3.3901 1.2878 1.7600 -157 1104 3.4504 1.2858 1.7600 -157 1105 3.5080 1.2816 1.7600 -157 1106 3.5652 1.2781 1.7600 -157 1107 3.6224 1.2724 1.7600 -157 1108 3.6799 1.2626 1.7600 -157 1109 3.7344 1.2484 1.7600 -157 1110 3.7949 1.2295 1.7600 -157 1111 3.8556 1.2152 1.7600 -157 1112 3.9150 1.2054 1.7600 -157 1113 3.9794 1.2040 1.7600 -157 1114 4.0456 1.2056 1.7600 -157 1115 4.1096 1.2079 1.7600 -157 1116 4.1716 1.2147 1.7600 -157 1117 4.2319 1.2233 1.7600 -157 1118 4.2942 1.2389 1.7600 -157 1119 4.3618 1.2568 1.7600 -157 1120 4.4355 1.2740 1.7600 -157 1121 4.5092 1.2890 1.7600 -157 1122 4.5789 1.2967 1.7600 -157 1123 4.6437 1.2984 1.7600 -157 1124 4.7069 1.2989 1.7600 -157 1125 4.7663 1.2973 1.7600 -157 1126 4.8255 1.2945 1.7600 -157 1127 4.8795 1.2881 1.7600 -157 1128 4.9354 1.2803 1.7600 -157 1129 4.9953 1.2685 1.7600 -157 1130 5.0546 1.2583 1.7600 -157 1131 5.1157 1.2495 1.7600 -157 1132 5.1799 1.2495 1.7600 -157 1133 5.2437 1.2548 1.7600 -157 1134 5.3071 1.2610 1.7600 -157 1135 5.3681 1.2686 1.7600 -157 1136 5.4246 1.2796 1.7600 -157 1137 5.4806 1.2929 1.7600 -157 1138 5.5389 1.3097 1.7600 -157 1139 5.6088 1.3303 1.7600 -157 1140 5.6787 1.3523 1.7600 -157 1141 5.7484 1.3673 1.7600 -157 1142 5.8160 1.3726 1.7600 -157 1143 5.8794 1.3731 1.7600 -157 1144 5.9389 1.3719 1.7600 -158 884 -7.8332 1.6193 1.7600 -158 885 -7.7752 1.6226 1.7600 -158 886 -7.7182 1.6276 1.7600 -158 887 -7.6674 1.6312 1.7600 -158 888 -7.6226 1.6258 1.7600 -158 889 -7.5816 1.6095 1.7600 -158 890 -7.5458 1.5914 1.7600 -158 891 -7.5103 1.5713 1.7600 -158 892 -7.4690 1.5527 1.7600 -158 893 -7.4265 1.5306 1.7600 -158 894 -7.3781 1.5085 1.7600 -158 895 -7.3277 1.4851 1.7600 -158 896 -7.2756 1.4654 1.7600 -158 897 -7.2306 1.4407 1.7600 -158 898 -7.2009 1.4187 1.7600 -158 899 -7.1683 1.3991 1.7600 -158 900 -7.1329 1.3855 1.7600 -158 901 -7.0939 1.3772 1.7600 -158 902 -7.0542 1.3735 1.7600 -158 903 -7.0053 1.3675 1.7600 -158 904 -6.9506 1.3624 1.7600 -158 905 -6.8851 1.3601 1.7600 -158 906 -6.8162 1.3598 1.7600 -158 907 -6.7500 1.3611 1.7600 -158 908 -6.6886 1.3665 1.7600 -158 909 -6.6336 1.3716 1.7600 -158 910 -6.5817 1.3721 1.7600 -158 911 -6.5304 1.3657 1.7600 -158 912 -6.4851 1.3474 1.7600 -158 913 -6.4410 1.3251 1.7600 -158 914 -6.3973 1.2994 1.7600 -158 915 -6.3482 1.2739 1.7600 -158 916 -6.2928 1.2482 1.7600 -158 917 -6.2384 1.2231 1.7600 -158 918 -6.1840 1.1995 1.7600 -158 919 -6.1292 1.1743 1.7600 -158 920 -6.0786 1.1475 1.7600 -158 921 -6.0324 1.1231 1.7600 -158 922 -5.9857 1.1129 1.7600 -158 923 -5.9333 1.1104 1.7600 -158 924 -5.8839 1.1109 1.7600 -158 925 -5.8311 1.1136 1.7600 -158 926 -5.7777 1.1164 1.7600 -158 927 -5.7249 1.1194 1.7600 -158 928 -5.6693 1.1244 1.7600 -158 929 -5.6152 1.1317 1.7600 -158 930 -5.5591 1.1400 1.7600 -158 931 -5.5099 1.1452 1.7600 -158 932 -5.4715 1.1448 1.7600 -158 933 -5.4340 1.1394 1.7600 -158 934 -5.3924 1.1321 1.7600 -158 935 -5.3497 1.1210 1.7600 -158 936 -5.3048 1.1091 1.7600 -158 937 -5.2558 1.0947 1.7600 -158 938 -5.2082 1.0771 1.7600 -158 939 -5.1606 1.0557 1.7600 -158 940 -5.1081 1.0332 1.7600 -158 941 -5.0543 1.0115 1.7600 -158 942 -5.0039 0.9949 1.7600 -158 943 -4.9481 0.9910 1.7600 -158 944 -4.8903 0.9952 1.7600 -158 945 -4.8366 1.0031 1.7600 -158 946 -4.7873 1.0105 1.7600 -158 947 -4.7414 1.0179 1.7600 -158 948 -4.6929 1.0262 1.7600 -158 949 -4.6466 1.0390 1.7600 -158 950 -4.6011 1.0527 1.7600 -158 951 -4.5536 1.0678 1.7600 -158 952 -4.5061 1.0813 1.7600 -158 953 -4.4647 1.0935 1.7600 -158 954 -4.4151 1.0973 1.7600 -158 955 -4.3645 1.0987 1.7600 -158 956 -4.3136 1.0978 1.7600 -158 957 -4.2603 1.0952 1.7600 -158 958 -4.2080 1.0899 1.7600 -158 959 -4.1569 1.0812 1.7600 -158 960 -4.1042 1.0668 1.7600 -158 961 -4.0567 1.0492 1.7600 -158 962 -4.0066 1.0348 1.7600 -158 963 -3.9600 1.0261 1.7600 -158 964 -3.9198 1.0203 1.7600 -158 965 -3.8793 1.0189 1.7600 -158 966 -3.8383 1.0198 1.7600 -158 967 -3.8000 1.0161 1.7600 -158 968 -3.7668 1.0130 1.7600 -158 969 -3.7360 1.0131 1.7600 -158 970 -3.7062 1.0150 1.7600 -158 971 -3.6777 1.0222 1.7600 -158 972 -3.6487 1.0304 1.7600 -158 973 -3.6123 1.0377 1.7600 -158 974 -3.5660 1.0549 1.7600 -158 975 -3.5106 1.0753 1.7600 -158 976 -3.4551 1.0837 1.7600 -158 977 -3.4020 1.0818 1.7600 -158 978 -3.3500 1.0725 1.7600 -158 979 -3.3013 1.0593 1.7600 -158 980 -3.2510 1.0436 1.7600 -158 981 -3.1977 1.0263 1.7600 -158 982 -3.1433 1.0099 1.7600 -158 983 -3.0969 0.9858 1.7600 -158 984 -3.0500 0.9597 1.7600 -158 985 -3.0041 0.9383 1.7600 -158 986 -2.9527 0.9205 1.7600 -158 987 -2.9066 0.9038 1.7600 -158 988 -2.8668 0.8910 1.7600 -158 989 -2.8258 0.8878 1.7600 -158 990 -2.7803 0.8903 1.7600 -158 991 -2.7331 0.8967 1.7600 -158 992 -2.6870 0.9042 1.7600 -158 993 -2.6393 0.9166 1.7600 -158 994 -2.5884 0.9312 1.7600 -158 995 -2.5338 0.9480 1.7600 -158 996 -2.4777 0.9662 1.7600 -158 997 -2.4172 0.9860 1.7600 -158 998 -2.3489 1.0114 1.7600 -158 999 -2.2939 1.0302 1.7600 -158 1000 -2.2368 1.0401 1.7600 -158 1001 -2.1797 1.0428 1.7600 -158 1002 -2.1252 1.0371 1.7600 -158 1003 -2.0744 1.0263 1.7600 -158 1004 -2.0246 1.0164 1.7600 -158 1005 -1.9750 1.0076 1.7600 -158 1006 -1.9273 0.9960 1.7600 -158 1007 -1.8812 0.9808 1.7600 -158 1008 -1.8354 0.9636 1.7600 -158 1009 -1.7862 0.9453 1.7600 -158 1010 -1.7408 0.9115 1.7600 -158 1011 -1.7027 0.8874 1.7600 -158 1012 -1.6612 0.8635 1.7600 -158 1013 -1.6182 0.8578 1.7600 -158 1014 -1.5737 0.8578 1.7600 -158 1015 -1.5311 0.8654 1.7600 -158 1016 -1.4898 0.8799 1.7600 -158 1017 -1.4493 0.9041 1.7600 -158 1018 -1.4127 0.9280 1.7600 -158 1019 -1.3694 0.9589 1.7600 -158 1020 -1.3152 0.9789 1.7600 -158 1021 -1.2554 0.9943 1.7600 -158 1022 -1.1999 1.0071 1.7600 -158 1023 -1.1503 1.0154 1.7600 -158 1024 -1.1012 1.0149 1.7600 -158 1025 -1.0545 1.0104 1.7600 -158 1026 -1.0073 1.0006 1.7600 -158 1027 -0.9577 0.9900 1.7600 -158 1028 -0.9055 0.9777 1.7600 -158 1029 -0.8495 0.9609 1.7600 -158 1030 -0.7955 0.9412 1.7600 -158 1031 -0.7407 0.9218 1.7600 -158 1032 -0.6844 0.9055 1.7600 -158 1033 -0.6277 0.8898 1.7600 -158 1034 -0.5739 0.8831 1.7600 -158 1035 -0.5216 0.8830 1.7600 -158 1036 -0.4724 0.8872 1.7600 -158 1037 -0.4256 0.8990 1.7600 -158 1038 -0.3808 0.9139 1.7600 -158 1039 -0.3350 0.9250 1.7600 -158 1040 -0.2856 0.9359 1.7600 -158 1041 -0.2315 0.9476 1.7600 -158 1042 -0.1645 0.9682 1.7600 -158 1043 -0.0935 0.9907 1.7600 -158 1044 -0.0227 0.9994 1.7600 -158 1045 0.0438 1.0029 1.7600 -158 1046 0.1074 0.9997 1.7600 -158 1047 0.1664 0.9918 1.7600 -158 1048 0.2287 0.9722 1.7600 -158 1049 0.2920 0.9446 1.7600 -158 1050 0.3571 0.9170 1.7600 -158 1051 0.4162 0.8957 1.7600 -158 1052 0.4762 0.8766 1.7600 -158 1053 0.5349 0.8537 1.7600 -158 1054 0.5839 0.8430 1.7600 -158 1055 0.6245 0.8473 1.7600 -158 1056 0.6624 0.8654 1.7600 -158 1057 0.6981 0.8851 1.7600 -158 1058 0.7375 0.8985 1.7600 -158 1059 0.7793 0.9128 1.7600 -158 1060 0.8297 0.9269 1.7600 -158 1061 0.8849 0.9401 1.7600 -158 1062 0.9464 0.9579 1.7600 -158 1063 1.0137 0.9774 1.7600 -158 1064 1.0785 0.9903 1.7600 -158 1065 1.1424 0.9980 1.7600 -158 1066 1.2012 0.9951 1.7600 -158 1067 1.2593 0.9857 1.7600 -158 1068 1.3156 0.9686 1.7600 -158 1069 1.3744 0.9507 1.7600 -158 1070 1.4360 0.9343 1.7600 -158 1071 1.4939 0.9201 1.7600 -158 1072 1.5443 0.9108 1.7600 -158 1073 1.5944 0.9033 1.7600 -158 1074 1.6431 0.8933 1.7600 -158 1075 1.6880 0.8864 1.7600 -158 1076 1.7337 0.8908 1.7600 -158 1077 1.7819 0.8964 1.7600 -158 1078 1.8379 0.9003 1.7600 -158 1079 1.8940 0.9043 1.7600 -158 1080 1.9507 0.9128 1.7600 -158 1081 2.0074 0.9266 1.7600 -158 1082 2.0655 0.9462 1.7600 -158 1083 2.1326 0.9683 1.7600 -158 1084 2.1998 0.9865 1.7600 -158 1085 2.2621 0.9972 1.7600 -158 1086 2.3210 0.9968 1.7600 -158 1087 2.3789 0.9891 1.7600 -158 1088 2.4346 0.9709 1.7600 -158 1089 2.4896 0.9575 1.7600 -158 1090 2.5490 0.9383 1.7600 -158 1091 2.6078 0.9191 1.7600 -158 1092 2.6661 0.8969 1.7600 -158 1093 2.7272 0.8768 1.7600 -158 1094 2.7934 0.8591 1.7600 -158 1095 2.8582 0.8424 1.7600 -158 1096 2.9170 0.8330 1.7600 -158 1097 2.9783 0.8352 1.7600 -158 1098 3.0363 0.8426 1.7600 -158 1099 3.0931 0.8541 1.7600 -158 1100 3.1478 0.8661 1.7600 -158 1101 3.2037 0.8789 1.7600 -158 1102 3.2594 0.8942 1.7600 -158 1103 3.3187 0.9132 1.7600 -158 1104 3.3843 0.9351 1.7600 -158 1105 3.4483 0.9485 1.7600 -158 1106 3.5041 0.9568 1.7600 -158 1107 3.5598 0.9586 1.7600 -158 1108 3.6217 0.9557 1.7600 -158 1109 3.6795 0.9479 1.7600 -158 1110 3.7341 0.9403 1.7600 -158 1111 3.7859 0.9281 1.7600 -158 1112 3.8352 0.9143 1.7600 -158 1113 3.8915 0.8973 1.7600 -158 1114 3.9561 0.8800 1.7600 -158 1115 4.0218 0.8644 1.7600 -158 1116 4.0822 0.8551 1.7600 -158 1117 4.1428 0.8542 1.7600 -158 1118 4.2023 0.8570 1.7600 -158 1119 4.2631 0.8646 1.7600 -158 1120 4.3255 0.8703 1.7600 -158 1121 4.3901 0.8777 1.7600 -158 1122 4.4538 0.8866 1.7600 -158 1123 4.5183 0.8984 1.7600 -158 1124 4.5914 0.9140 1.7600 -158 1125 4.6691 0.9277 1.7600 -158 1126 4.7369 0.9329 1.7600 -158 1127 4.8003 0.9297 1.7600 -158 1128 4.8627 0.9210 1.7600 -158 1129 4.9243 0.9112 1.7600 -158 1130 4.9846 0.9004 1.7600 -158 1131 5.0439 0.8883 1.7600 -158 1132 5.1032 0.8759 1.7600 -158 1133 5.1672 0.8642 1.7600 -158 1134 5.2384 0.8525 1.7600 -158 1135 5.3078 0.8409 1.7600 -158 1136 5.3829 0.8354 1.7600 -158 1137 5.4453 0.8345 1.7600 -158 1138 5.5071 0.8416 1.7600 -158 1139 5.5677 0.8512 1.7600 -158 1140 5.6285 0.8603 1.7600 -158 1141 5.6888 0.8724 1.7600 -158 1142 5.7492 0.8875 1.7600 -158 1143 5.8142 0.9047 1.7600 -158 1144 5.8896 0.9234 1.7600 -159 866 -7.8067 1.8319 1.7600 -159 867 -7.7630 1.8310 1.7600 -159 868 -7.7176 1.8288 1.7600 -159 869 -7.6697 1.8254 1.7600 -159 870 -7.6217 1.8223 1.7600 -159 871 -7.5754 1.8207 1.7600 -159 872 -7.5328 1.8205 1.7600 -159 873 -7.4889 1.8183 1.7600 -159 874 -7.4417 1.8123 1.7600 -159 875 -7.3951 1.8053 1.7600 -159 876 -7.3499 1.7985 1.7600 -159 877 -7.3045 1.7905 1.7600 -159 878 -7.2574 1.7810 1.7600 -159 879 -7.2099 1.7702 1.7600 -159 880 -7.1635 1.7572 1.7600 -159 881 -7.1229 1.7418 1.7600 -159 882 -7.0858 1.7232 1.7600 -159 883 -7.0478 1.7146 1.7600 -159 884 -7.0078 1.7021 1.7600 -159 885 -6.9661 1.6907 1.7600 -159 886 -6.9229 1.6814 1.7600 -159 887 -6.8774 1.6736 1.7600 -159 888 -6.8281 1.6674 1.7600 -159 889 -6.7753 1.6614 1.7600 -159 890 -6.7191 1.6560 1.7600 -159 891 -6.6643 1.6493 1.7600 -159 892 -6.6149 1.6455 1.7600 -159 893 -6.5692 1.6435 1.7600 -159 894 -6.5235 1.6355 1.7600 -159 895 -6.4693 1.6268 1.7600 -159 896 -6.4131 1.6144 1.7600 -159 897 -6.3520 1.6036 1.7600 -159 898 -6.2909 1.5868 1.7600 -159 899 -6.2282 1.5663 1.7600 -159 900 -6.1681 1.5452 1.7600 -159 901 -6.1092 1.5219 1.7600 -159 902 -6.0589 1.5005 1.7600 -159 903 -6.0079 1.4817 1.7600 -159 904 -5.9550 1.4652 1.7600 -159 905 -5.9049 1.4537 1.7600 -159 906 -5.8537 1.4461 1.7600 -159 907 -5.8038 1.4345 1.7600 -159 908 -5.7511 1.4273 1.7600 -159 909 -5.6989 1.4210 1.7600 -159 910 -5.6488 1.4120 1.7600 -159 911 -5.5960 1.4058 1.7600 -159 912 -5.5447 1.3997 1.7600 -159 913 -5.4926 1.3946 1.7600 -159 914 -5.4428 1.3857 1.7600 -159 915 -5.3913 1.3747 1.7600 -159 916 -5.3420 1.3595 1.7600 -159 917 -5.2915 1.3438 1.7600 -159 918 -5.2430 1.3278 1.7600 -159 919 -5.1920 1.3122 1.7600 -159 920 -5.1404 1.2968 1.7600 -159 921 -5.0922 1.2797 1.7600 -159 922 -5.0457 1.2615 1.7600 -159 923 -5.0011 1.2438 1.7600 -159 924 -4.9556 1.2266 1.7600 -159 925 -4.9059 1.2158 1.7600 -159 926 -4.8566 1.2087 1.7600 -159 927 -4.8123 1.2040 1.7600 -159 928 -4.7664 1.1992 1.7600 -159 929 -4.7220 1.1963 1.7600 -159 930 -4.6739 1.1918 1.7600 -159 931 -4.6293 1.1860 1.7600 -159 932 -4.5861 1.1814 1.7600 -159 933 -4.5412 1.1823 1.7600 -159 934 -4.4925 1.1800 1.7600 -159 935 -4.4426 1.1750 1.7600 -159 936 -4.3945 1.1646 1.7600 -159 937 -4.3465 1.1530 1.7600 -159 938 -4.3025 1.1413 1.7600 -159 939 -4.2627 1.1300 1.7600 -159 940 -4.2260 1.1185 1.7600 -159 941 -4.1848 1.1069 1.7600 -159 942 -4.1469 1.0962 1.7600 -159 943 -4.1089 1.0860 1.7600 -159 944 -4.0664 1.0784 1.7600 -159 945 -4.0224 1.0747 1.7600 -159 946 -3.9730 1.0751 1.7600 -159 947 -3.9272 1.0788 1.7600 -159 948 -3.8826 1.0789 1.7600 -159 949 -3.8374 1.0792 1.7600 -159 950 -3.7916 1.0774 1.7600 -159 951 -3.7422 1.0795 1.7600 -159 952 -3.6921 1.0838 1.7600 -159 953 -3.6453 1.0883 1.7600 -159 954 -3.6011 1.0892 1.7600 -159 955 -3.5529 1.0890 1.7600 -159 956 -3.5107 1.0857 1.7600 -159 957 -3.4698 1.0842 1.7600 -159 958 -3.4290 1.0808 1.7600 -159 959 -3.3933 1.0764 1.7600 -159 960 -3.3553 1.0709 1.7600 -159 961 -3.3165 1.0671 1.7600 -159 962 -3.2783 1.0664 1.7600 -159 963 -3.2358 1.0715 1.7600 -159 964 -3.1886 1.0833 1.7600 -159 965 -3.1418 1.0940 1.7600 -159 966 -3.0971 1.1036 1.7600 -159 967 -3.0497 1.1121 1.7600 -159 968 -3.0014 1.1186 1.7600 -159 969 -2.9497 1.1318 1.7600 -159 970 -2.8947 1.1490 1.7600 -159 971 -2.8448 1.1615 1.7600 -159 972 -2.7952 1.1684 1.7600 -159 973 -2.7449 1.1711 1.7600 -159 974 -2.6963 1.1689 1.7600 -159 975 -2.6469 1.1677 1.7600 -159 976 -2.5962 1.1636 1.7600 -159 977 -2.5457 1.1587 1.7600 -159 978 -2.4964 1.1525 1.7600 -159 979 -2.4473 1.1449 1.7600 -159 980 -2.3945 1.1392 1.7600 -159 981 -2.3402 1.1367 1.7600 -159 982 -2.2862 1.1409 1.7600 -159 983 -2.2337 1.1475 1.7600 -159 984 -2.1826 1.1581 1.7600 -159 985 -2.1360 1.1703 1.7600 -159 986 -2.0873 1.1829 1.7600 -159 987 -2.0381 1.1948 1.7600 -159 988 -1.9853 1.2062 1.7600 -159 989 -1.9275 1.2196 1.7600 -159 990 -1.8676 1.2330 1.7600 -159 991 -1.8108 1.2405 1.7600 -159 992 -1.7535 1.2450 1.7600 -159 993 -1.6956 1.2468 1.7600 -159 994 -1.6382 1.2483 1.7600 -159 995 -1.5821 1.2486 1.7600 -159 996 -1.5280 1.2474 1.7600 -159 997 -1.4753 1.2427 1.7600 -159 998 -1.4201 1.2401 1.7600 -159 999 -1.3640 1.2369 1.7600 -159 1000 -1.3053 1.2380 1.7600 -159 1001 -1.2470 1.2404 1.7600 -159 1002 -1.1879 1.2456 1.7600 -159 1003 -1.1343 1.2502 1.7600 -159 1004 -1.0832 1.2553 1.7600 -159 1005 -1.0328 1.2593 1.7600 -159 1006 -0.9795 1.2643 1.7600 -159 1007 -0.9198 1.2700 1.7600 -159 1008 -0.8595 1.2755 1.7600 -159 1009 -0.7987 1.2846 1.7600 -159 1010 -0.7419 1.2920 1.7600 -159 1011 -0.6828 1.2953 1.7600 -159 1012 -0.6228 1.2958 1.7600 -159 1013 -0.5637 1.2960 1.7600 -159 1014 -0.5064 1.2918 1.7600 -159 1015 -0.4496 1.2883 1.7600 -159 1016 -0.3981 1.2825 1.7600 -159 1017 -0.3467 1.2767 1.7600 -159 1018 -0.2922 1.2724 1.7600 -159 1019 -0.2391 1.2674 1.7600 -159 1020 -0.1888 1.2660 1.7600 -159 1021 -0.1327 1.2649 1.7600 -159 1022 -0.0803 1.2674 1.7600 -159 1023 -0.0263 1.2705 1.7600 -159 1024 0.0265 1.2745 1.7600 -159 1025 0.0821 1.2782 1.7600 -159 1026 0.1412 1.2816 1.7600 -159 1027 0.1963 1.2836 1.7600 -159 1028 0.2515 1.2900 1.7600 -159 1029 0.3040 1.2956 1.7600 -159 1030 0.3565 1.2976 1.7600 -159 1031 0.4119 1.2998 1.7600 -159 1032 0.4687 1.2976 1.7600 -159 1033 0.5275 1.2951 1.7600 -159 1034 0.5847 1.2924 1.7600 -159 1035 0.6417 1.2883 1.7600 -159 1036 0.6989 1.2836 1.7600 -159 1037 0.7530 1.2780 1.7600 -159 1038 0.8036 1.2729 1.7600 -159 1039 0.8546 1.2690 1.7600 -159 1040 0.9072 1.2695 1.7600 -159 1041 0.9593 1.2721 1.7600 -159 1042 1.0130 1.2777 1.7600 -159 1043 1.0653 1.2875 1.7600 -159 1044 1.1191 1.2949 1.7600 -159 1045 1.1755 1.3009 1.7600 -159 1046 1.2326 1.3099 1.7600 -159 1047 1.2916 1.3188 1.7600 -159 1048 1.3452 1.3270 1.7600 -159 1049 1.3983 1.3356 1.7600 -159 1050 1.4549 1.3435 1.7600 -159 1051 1.5114 1.3506 1.7600 -159 1052 1.5661 1.3552 1.7600 -159 1053 1.6212 1.3552 1.7600 -159 1054 1.6743 1.3526 1.7600 -159 1055 1.7255 1.3484 1.7600 -159 1056 1.7795 1.3395 1.7600 -159 1057 1.8329 1.3320 1.7600 -159 1058 1.8883 1.3260 1.7600 -159 1059 1.9466 1.3214 1.7600 -159 1060 2.0057 1.3215 1.7600 -159 1061 2.0614 1.3251 1.7600 -159 1062 2.1169 1.3296 1.7600 -159 1063 2.1731 1.3351 1.7600 -159 1064 2.2318 1.3420 1.7600 -159 1065 2.2880 1.3447 1.7600 -159 1066 2.3462 1.3477 1.7600 -159 1067 2.4041 1.3506 1.7600 -159 1068 2.4644 1.3546 1.7600 -159 1069 2.5217 1.3554 1.7600 -159 1070 2.5771 1.3517 1.7600 -159 1071 2.6310 1.3471 1.7600 -159 1072 2.6834 1.3405 1.7600 -159 1073 2.7356 1.3346 1.7600 -159 1074 2.7856 1.3290 1.7600 -159 1075 2.8370 1.3226 1.7600 -159 1076 2.8926 1.3155 1.7600 -159 1077 2.9481 1.3086 1.7600 -159 1078 3.0063 1.3056 1.7600 -159 1079 3.0649 1.3061 1.7600 -159 1080 3.1229 1.3112 1.7600 -159 1081 3.1784 1.3174 1.7600 -159 1082 3.2274 1.3218 1.7600 -159 1083 3.2840 1.3291 1.7600 -159 1084 3.3380 1.3377 1.7600 -159 1085 3.3951 1.3451 1.7600 -159 1086 3.4519 1.3556 1.7600 -159 1087 3.5103 1.3608 1.7600 -159 1088 3.5704 1.3621 1.7600 -159 1089 3.6298 1.3580 1.7600 -159 1090 3.6897 1.3527 1.7600 -159 1091 3.7482 1.3482 1.7600 -159 1092 3.8039 1.3415 1.7600 -159 1093 3.8551 1.3312 1.7600 -159 1094 3.9045 1.3195 1.7600 -159 1095 3.9556 1.3118 1.7600 -159 1096 4.0107 1.3081 1.7600 -159 1097 4.0681 1.3071 1.7600 -159 1098 4.1210 1.3121 1.7600 -159 1099 4.1739 1.3204 1.7600 -159 1100 4.2224 1.3336 1.7600 -159 1101 4.2694 1.3443 1.7600 -159 1102 4.3180 1.3598 1.7600 -159 1103 4.3685 1.3770 1.7600 -159 1104 4.4266 1.3934 1.7600 -159 1105 4.4839 1.4055 1.7600 -159 1106 4.5454 1.4162 1.7600 -159 1107 4.6060 1.4237 1.7600 -159 1108 4.6643 1.4268 1.7600 -159 1109 4.7186 1.4286 1.7600 -159 1110 4.7693 1.4288 1.7600 -159 1111 4.8169 1.4282 1.7600 -159 1112 4.8672 1.4234 1.7600 -159 1113 4.9215 1.4155 1.7600 -159 1114 4.9818 1.4079 1.7600 -159 1115 5.0472 1.4027 1.7600 -159 1116 5.1144 1.4021 1.7600 -159 1117 5.1808 1.4056 1.7600 -159 1118 5.2428 1.4121 1.7600 -159 1119 5.3006 1.4207 1.7600 -159 1120 5.3537 1.4282 1.7600 -159 1121 5.4076 1.4362 1.7600 -159 1122 5.4673 1.4427 1.7600 -159 1123 5.5348 1.4529 1.7600 -159 1124 5.6091 1.4651 1.7600 -159 1125 5.6815 1.4771 1.7600 -159 1126 5.7502 1.4853 1.7600 -159 1127 5.8127 1.4905 1.7600 -159 1128 5.8707 1.4954 1.7600 -159 1129 5.9267 1.5001 1.7600 -160 870 -7.8297 2.3424 1.7600 -160 871 -7.7842 2.3303 1.7600 -160 872 -7.7393 2.3231 1.7600 -160 873 -7.6963 2.3169 1.7600 -160 874 -7.6529 2.3203 1.7600 -160 875 -7.6066 2.3207 1.7600 -160 876 -7.5578 2.3218 1.7600 -160 877 -7.5051 2.3233 1.7600 -160 878 -7.4490 2.3254 1.7600 -160 879 -7.3910 2.3295 1.7600 -160 880 -7.3347 2.3370 1.7600 -160 881 -7.2831 2.3475 1.7600 -160 882 -7.2349 2.3563 1.7600 -160 883 -7.1893 2.3607 1.7600 -160 884 -7.1451 2.3593 1.7600 -160 885 -7.0990 2.3535 1.7600 -160 886 -7.0504 2.3439 1.7600 -160 887 -6.9991 2.3293 1.7600 -160 888 -6.9464 2.3097 1.7600 -160 889 -6.8936 2.2862 1.7600 -160 890 -6.8397 2.2602 1.7600 -160 891 -6.7904 2.2334 1.7600 -160 892 -6.7441 2.2077 1.7600 -160 893 -6.7014 2.1850 1.7600 -160 894 -6.6555 2.1656 1.7600 -160 895 -6.6052 2.1455 1.7600 -160 896 -6.5556 2.1302 1.7600 -160 897 -6.5043 2.1133 1.7600 -160 898 -6.4528 2.0995 1.7600 -160 899 -6.3958 2.0863 1.7600 -160 900 -6.3349 2.0736 1.7600 -160 901 -6.2714 2.0658 1.7600 -160 902 -6.2055 2.0565 1.7600 -160 903 -6.1431 2.0546 1.7600 -160 904 -6.0841 2.0475 1.7600 -160 905 -6.0313 2.0393 1.7600 -160 906 -5.9786 2.0272 1.7600 -160 907 -5.9241 2.0114 1.7600 -160 908 -5.8688 1.9973 1.7600 -160 909 -5.8129 1.9789 1.7600 -160 910 -5.7529 1.9599 1.7600 -160 911 -5.7000 1.9370 1.7600 -160 912 -5.6459 1.9081 1.7600 -160 913 -5.5996 1.8821 1.7600 -160 914 -5.5529 1.8583 1.7600 -160 915 -5.5079 1.8382 1.7600 -160 916 -5.4593 1.8191 1.7600 -160 917 -5.4084 1.8054 1.7600 -160 918 -5.3584 1.7932 1.7600 -160 919 -5.3046 1.7838 1.7600 -160 920 -5.2492 1.7736 1.7600 -160 921 -5.1933 1.7661 1.7600 -160 922 -5.1374 1.7604 1.7600 -160 923 -5.0826 1.7569 1.7600 -160 924 -5.0291 1.7560 1.7600 -160 925 -4.9801 1.7523 1.7600 -160 926 -4.9351 1.7479 1.7600 -160 927 -4.8920 1.7379 1.7600 -160 928 -4.8485 1.7260 1.7600 -160 929 -4.8052 1.7128 1.7600 -160 930 -4.7624 1.6974 1.7600 -160 931 -4.7201 1.6779 1.7600 -160 932 -4.6812 1.6576 1.7600 -160 933 -4.6463 1.6359 1.7600 -160 934 -4.6142 1.6174 1.7600 -160 935 -4.5853 1.6001 1.7600 -160 936 -4.5570 1.5818 1.7600 -160 937 -4.5268 1.5605 1.7600 -160 938 -4.4943 1.5403 1.7600 -160 939 -4.4601 1.5231 1.7600 -160 940 -4.4261 1.5062 1.7600 -160 941 -4.3912 1.4937 1.7600 -160 942 -4.3504 1.4818 1.7600 -160 943 -4.3077 1.4759 1.7600 -160 944 -4.2650 1.4758 1.7600 -160 945 -4.2151 1.4829 1.7600 -160 946 -4.1658 1.4944 1.7600 -160 947 -4.1149 1.5043 1.7600 -160 948 -4.0667 1.5105 1.7600 -160 949 -4.0143 1.5117 1.7600 -160 950 -3.9614 1.5091 1.7600 -160 951 -3.9065 1.5024 1.7600 -160 952 -3.8539 1.4938 1.7600 -160 953 -3.8046 1.4830 1.7600 -160 954 -3.7543 1.4718 1.7600 -160 955 -3.7078 1.4607 1.7600 -160 956 -3.6595 1.4536 1.7600 -160 957 -3.6132 1.4466 1.7600 -160 958 -3.5625 1.4397 1.7600 -160 959 -3.5087 1.4356 1.7600 -160 960 -3.4518 1.4352 1.7600 -160 961 -3.3943 1.4375 1.7600 -160 962 -3.3356 1.4392 1.7600 -160 963 -3.2805 1.4470 1.7600 -160 964 -3.2254 1.4576 1.7600 -160 965 -3.1657 1.4682 1.7600 -160 966 -3.1114 1.4750 1.7600 -160 967 -3.0617 1.4776 1.7600 -160 968 -3.0161 1.4759 1.7600 -160 969 -2.9710 1.4714 1.7600 -160 970 -2.9292 1.4696 1.7600 -160 971 -2.8903 1.4667 1.7600 -160 972 -2.8525 1.4643 1.7600 -160 973 -2.8169 1.4604 1.7600 -160 974 -2.7827 1.4558 1.7600 -160 975 -2.7454 1.4516 1.7600 -160 976 -2.7072 1.4493 1.7600 -160 977 -2.6659 1.4508 1.7600 -160 978 -2.6241 1.4567 1.7600 -160 979 -2.5815 1.4602 1.7600 -160 980 -2.5384 1.4666 1.7600 -160 981 -2.4928 1.4748 1.7600 -160 982 -2.4464 1.4854 1.7600 -160 983 -2.3996 1.4977 1.7600 -160 984 -2.3514 1.5151 1.7600 -160 985 -2.2993 1.5367 1.7600 -160 986 -2.2514 1.5576 1.7600 -160 987 -2.2066 1.5740 1.7600 -160 988 -2.1626 1.5859 1.7600 -160 989 -2.1209 1.5956 1.7600 -160 990 -2.0798 1.6043 1.7600 -160 991 -2.0368 1.6096 1.7600 -160 992 -1.9921 1.6111 1.7600 -160 993 -1.9449 1.6101 1.7600 -160 994 -1.8952 1.6060 1.7600 -160 995 -1.8445 1.5979 1.7600 -160 996 -1.7897 1.5880 1.7600 -160 997 -1.7285 1.5790 1.7600 -160 998 -1.6706 1.5700 1.7600 -160 999 -1.6200 1.5610 1.7600 -160 1000 -1.5747 1.5545 1.7600 -160 1001 -1.5332 1.5500 1.7600 -160 1002 -1.4957 1.5465 1.7600 -160 1003 -1.4582 1.5429 1.7600 -160 1004 -1.4178 1.5399 1.7600 -160 1005 -1.3740 1.5394 1.7600 -160 1006 -1.3276 1.5416 1.7600 -160 1007 -1.2795 1.5454 1.7600 -160 1008 -1.2271 1.5516 1.7600 -160 1009 -1.1693 1.5640 1.7600 -160 1010 -1.1089 1.5788 1.7600 -160 1011 -1.0535 1.5899 1.7600 -160 1012 -0.9986 1.5983 1.7600 -160 1013 -0.9436 1.6070 1.7600 -160 1014 -0.8917 1.6146 1.7600 -160 1015 -0.8400 1.6197 1.7600 -160 1016 -0.7868 1.6240 1.7600 -160 1017 -0.7334 1.6279 1.7600 -160 1018 -0.6800 1.6332 1.7600 -160 1019 -0.6294 1.6315 1.7600 -160 1020 -0.5820 1.6294 1.7600 -160 1021 -0.5424 1.6252 1.7600 -160 1022 -0.5030 1.6221 1.7600 -160 1023 -0.4613 1.6194 1.7600 -160 1024 -0.4177 1.6181 1.7600 -160 1025 -0.3723 1.6189 1.7600 -160 1026 -0.3257 1.6210 1.7600 -160 1027 -0.2752 1.6227 1.7600 -160 1028 -0.2236 1.6226 1.7600 -160 1029 -0.1710 1.6243 1.7600 -160 1030 -0.1159 1.6282 1.7600 -160 1031 -0.0604 1.6354 1.7600 -160 1032 -0.0079 1.6415 1.7600 -160 1033 0.0472 1.6476 1.7600 -160 1034 0.1077 1.6526 1.7600 -160 1035 0.1675 1.6560 1.7600 -160 1036 0.2300 1.6588 1.7600 -160 1037 0.2973 1.6583 1.7600 -160 1038 0.3650 1.6584 1.7600 -160 1039 0.4336 1.6530 1.7600 -160 1040 0.4978 1.6382 1.7600 -160 1041 0.5576 1.6240 1.7600 -160 1042 0.6094 1.6101 1.7600 -160 1043 0.6624 1.6007 1.7600 -160 1044 0.7163 1.5965 1.7600 -160 1045 0.7723 1.5947 1.7600 -160 1046 0.8293 1.5988 1.7600 -160 1047 0.8883 1.5992 1.7600 -160 1048 0.9495 1.6018 1.7600 -160 1049 1.0130 1.6066 1.7600 -160 1050 1.0775 1.6153 1.7600 -160 1051 1.1422 1.6265 1.7600 -160 1052 1.2047 1.6373 1.7600 -160 1053 1.2637 1.6462 1.7600 -160 1054 1.3212 1.6544 1.7600 -160 1055 1.3790 1.6582 1.7600 -160 1056 1.4361 1.6575 1.7600 -160 1057 1.4954 1.6563 1.7600 -160 1058 1.5542 1.6557 1.7600 -160 1059 1.6123 1.6523 1.7600 -160 1060 1.6716 1.6449 1.7600 -160 1061 1.7269 1.6399 1.7600 -160 1062 1.7802 1.6387 1.7600 -160 1063 1.8310 1.6427 1.7600 -160 1064 1.8816 1.6449 1.7600 -160 1065 1.9309 1.6474 1.7600 -160 1066 1.9810 1.6498 1.7600 -160 1067 2.0330 1.6482 1.7600 -160 1068 2.0858 1.6504 1.7600 -160 1069 2.1406 1.6531 1.7600 -160 1070 2.1992 1.6587 1.7600 -160 1071 2.2573 1.6651 1.7600 -160 1072 2.3157 1.6670 1.7600 -160 1073 2.3764 1.6690 1.7600 -160 1074 2.4355 1.6661 1.7600 -160 1075 2.4971 1.6648 1.7600 -160 1076 2.5552 1.6653 1.7600 -160 1077 2.6120 1.6625 1.7600 -160 1078 2.6669 1.6562 1.7600 -160 1079 2.7212 1.6494 1.7600 -160 1080 2.7716 1.6405 1.7600 -160 1081 2.8146 1.6281 1.7600 -160 1082 2.8620 1.6232 1.7600 -160 1083 2.9137 1.6177 1.7600 -160 1084 2.9660 1.6155 1.7600 -160 1085 3.0216 1.6141 1.7600 -160 1086 3.0770 1.6159 1.7600 -160 1087 3.1346 1.6198 1.7600 -160 1088 3.1939 1.6261 1.7600 -160 1089 3.2587 1.6339 1.7600 -160 1090 3.3165 1.6416 1.7600 -160 1091 3.3785 1.6497 1.7600 -160 1092 3.4369 1.6515 1.7600 -160 1093 3.4909 1.6515 1.7600 -160 1094 3.5452 1.6546 1.7600 -160 1095 3.5950 1.6532 1.7600 -160 1096 3.6476 1.6520 1.7600 -160 1097 3.7005 1.6505 1.7600 -160 1098 3.7496 1.6420 1.7600 -160 1099 3.8002 1.6354 1.7600 -160 1100 3.8561 1.6285 1.7600 -160 1101 3.9073 1.6204 1.7600 -160 1102 3.9546 1.6187 1.7600 -160 1103 3.9987 1.6194 1.7600 -160 1104 4.0425 1.6241 1.7600 -160 1105 4.0862 1.6326 1.7600 -160 1106 4.1276 1.6438 1.7600 -160 1107 4.1692 1.6547 1.7600 -160 1108 4.2116 1.6655 1.7600 -160 1109 4.2554 1.6729 1.7600 -160 1110 4.3070 1.6867 1.7600 -160 1111 4.3602 1.7002 1.7600 -160 1112 4.4159 1.7140 1.7600 -160 1113 4.4713 1.7237 1.7600 -160 1114 4.5263 1.7313 1.7600 -160 1115 4.5766 1.7372 1.7600 -160 1116 4.6308 1.7432 1.7600 -160 1117 4.6835 1.7483 1.7600 -160 1118 4.7367 1.7486 1.7600 -160 1119 4.7948 1.7518 1.7600 -160 1120 4.8591 1.7552 1.7600 -160 1121 4.9201 1.7632 1.7600 -160 1122 4.9708 1.7757 1.7600 -160 1123 5.0231 1.7899 1.7600 -160 1124 5.0765 1.8056 1.7600 -160 1125 5.1292 1.8253 1.7600 -160 1126 5.1801 1.8486 1.7600 -160 1127 5.2312 1.8732 1.7600 -160 1128 5.2808 1.9001 1.7600 -160 1129 5.3370 1.9290 1.7600 -160 1130 5.4017 1.9619 1.7600 -160 1131 5.4720 1.9915 1.7600 -160 1132 5.5384 2.0169 1.7600 -160 1133 5.6102 2.0360 1.7600 -160 1134 5.6743 2.0513 1.7600 -160 1135 5.7370 2.0630 1.7600 -160 1136 5.8002 2.0697 1.7600 -160 1137 5.8635 2.0726 1.7600 -160 1138 5.9230 2.0702 1.7600 -161 894 -7.8327 2.2709 1.7600 -161 895 -7.7719 2.2676 1.7600 -161 896 -7.7105 2.2610 1.7600 -161 897 -7.6496 2.2504 1.7600 -161 898 -7.5894 2.2340 1.7600 -161 899 -7.5290 2.2109 1.7600 -161 900 -7.4665 2.1841 1.7600 -161 901 -7.4014 2.1609 1.7600 -161 902 -7.3380 2.1482 1.7600 -161 903 -7.2763 2.1448 1.7600 -161 904 -7.2197 2.1412 1.7600 -161 905 -7.1643 2.1431 1.7600 -161 906 -7.1098 2.1449 1.7600 -161 907 -7.0557 2.1516 1.7600 -161 908 -6.9975 2.1608 1.7600 -161 909 -6.9366 2.1755 1.7600 -161 910 -6.8788 2.1873 1.7600 -161 911 -6.8171 2.2003 1.7600 -161 912 -6.7626 2.2064 1.7600 -161 913 -6.7082 2.2060 1.7600 -161 914 -6.6548 2.1948 1.7600 -161 915 -6.5998 2.1816 1.7600 -161 916 -6.5485 2.1680 1.7600 -161 917 -6.4985 2.1501 1.7600 -161 918 -6.4468 2.1317 1.7600 -161 919 -6.3966 2.1061 1.7600 -161 920 -6.3484 2.0757 1.7600 -161 921 -6.2998 2.0464 1.7600 -161 922 -6.2505 2.0144 1.7600 -161 923 -6.2136 1.9960 1.7600 -161 924 -6.1749 1.9862 1.7600 -161 925 -6.1350 1.9760 1.7600 -161 926 -6.0895 1.9676 1.7600 -161 927 -6.0404 1.9621 1.7600 -161 928 -5.9937 1.9588 1.7600 -161 929 -5.9453 1.9609 1.7600 -161 930 -5.8954 1.9675 1.7600 -161 931 -5.8425 1.9757 1.7600 -161 932 -5.7892 1.9868 1.7600 -161 933 -5.7441 1.9903 1.7600 -161 934 -5.7040 1.9893 1.7600 -161 935 -5.6594 1.9818 1.7600 -161 936 -5.6118 1.9709 1.7600 -161 937 -5.5686 1.9589 1.7600 -161 938 -5.5277 1.9439 1.7600 -161 939 -5.4825 1.9250 1.7600 -161 940 -5.4429 1.9014 1.7600 -161 941 -5.4072 1.8708 1.7600 -161 942 -5.3753 1.8371 1.7600 -161 943 -5.3439 1.8059 1.7600 -161 944 -5.3115 1.7819 1.7600 -161 945 -5.2816 1.7620 1.7600 -161 946 -5.2471 1.7471 1.7600 -161 947 -5.2115 1.7336 1.7600 -161 948 -5.1754 1.7223 1.7600 -161 949 -5.1327 1.7173 1.7600 -161 950 -5.0839 1.7175 1.7600 -161 951 -5.0308 1.7213 1.7600 -161 952 -4.9799 1.7325 1.7600 -161 953 -4.9268 1.7442 1.7600 -161 954 -4.8769 1.7550 1.7600 -161 955 -4.8242 1.7648 1.7600 -161 956 -4.7783 1.7683 1.7600 -161 957 -4.7344 1.7686 1.7600 -161 958 -4.6915 1.7675 1.7600 -161 959 -4.6510 1.7648 1.7600 -161 960 -4.6145 1.7555 1.7600 -161 961 -4.5801 1.7453 1.7600 -161 962 -4.5450 1.7286 1.7600 -161 963 -4.5079 1.7082 1.7600 -161 964 -4.4731 1.6806 1.7600 -161 965 -4.4388 1.6477 1.7600 -161 966 -4.4037 1.6135 1.7600 -161 967 -4.3676 1.5818 1.7600 -161 968 -4.3337 1.5615 1.7600 -161 969 -4.3033 1.5459 1.7600 -161 970 -4.2698 1.5349 1.7600 -161 971 -4.2318 1.5268 1.7600 -161 972 -4.1920 1.5222 1.7600 -161 973 -4.1483 1.5215 1.7600 -161 974 -4.1042 1.5268 1.7600 -161 975 -4.0618 1.5349 1.7600 -161 976 -4.0149 1.5464 1.7600 -161 977 -3.9689 1.5589 1.7600 -161 978 -3.9248 1.5646 1.7600 -161 979 -3.8796 1.5687 1.7600 -161 980 -3.8330 1.5683 1.7600 -161 981 -3.7866 1.5651 1.7600 -161 982 -3.7393 1.5574 1.7600 -161 983 -3.6921 1.5433 1.7600 -161 984 -3.6450 1.5214 1.7600 -161 985 -3.5951 1.4950 1.7600 -161 986 -3.5455 1.4708 1.7600 -161 987 -3.4950 1.4525 1.7600 -161 988 -3.4563 1.4401 1.7600 -161 989 -3.4110 1.4338 1.7600 -161 990 -3.3637 1.4317 1.7600 -161 991 -3.3137 1.4327 1.7600 -161 992 -3.2607 1.4449 1.7600 -161 993 -3.2092 1.4571 1.7600 -161 994 -3.1584 1.4640 1.7600 -161 995 -3.1077 1.4626 1.7600 -161 996 -3.0547 1.4564 1.7600 -161 997 -3.0001 1.4463 1.7600 -161 998 -2.9510 1.4299 1.7600 -161 999 -2.9076 1.4111 1.7600 -161 1000 -2.8674 1.3872 1.7600 -161 1001 -2.8233 1.3716 1.7600 -161 1002 -2.7749 1.3621 1.7600 -161 1003 -2.7270 1.3662 1.7600 -161 1004 -2.6783 1.3721 1.7600 -161 1005 -2.6283 1.3795 1.7600 -161 1006 -2.5772 1.3947 1.7600 -161 1007 -2.5191 1.4111 1.7600 -161 1008 -2.4641 1.4362 1.7600 -161 1009 -2.4024 1.4618 1.7600 -161 1010 -2.3462 1.4740 1.7600 -161 1011 -2.2918 1.4785 1.7600 -161 1012 -2.2387 1.4782 1.7600 -161 1013 -2.1855 1.4756 1.7600 -161 1014 -2.1305 1.4704 1.7600 -161 1015 -2.0764 1.4605 1.7600 -161 1016 -2.0210 1.4481 1.7600 -161 1017 -1.9675 1.4331 1.7600 -161 1018 -1.9202 1.4103 1.7600 -161 1019 -1.8697 1.3967 1.7600 -161 1020 -1.8160 1.3913 1.7600 -161 1021 -1.7627 1.3962 1.7600 -161 1022 -1.7129 1.4043 1.7600 -161 1023 -1.6634 1.4126 1.7600 -161 1024 -1.6133 1.4195 1.7600 -161 1025 -1.5563 1.4318 1.7600 -161 1026 -1.4981 1.4438 1.7600 -161 1027 -1.4399 1.4556 1.7600 -161 1028 -1.3832 1.4618 1.7600 -161 1029 -1.3264 1.4622 1.7600 -161 1030 -1.2693 1.4577 1.7600 -161 1031 -1.2159 1.4478 1.7600 -161 1032 -1.1657 1.4336 1.7600 -161 1033 -1.1152 1.4164 1.7600 -161 1034 -1.0698 1.3944 1.7600 -161 1035 -1.0264 1.3726 1.7600 -161 1036 -0.9837 1.3515 1.7600 -161 1037 -0.9432 1.3379 1.7600 -161 1038 -0.9049 1.3346 1.7600 -161 1039 -0.8672 1.3351 1.7600 -161 1040 -0.8256 1.3382 1.7600 -161 1041 -0.7804 1.3449 1.7600 -161 1042 -0.7345 1.3562 1.7600 -161 1043 -0.6966 1.3744 1.7600 -161 1044 -0.6640 1.3969 1.7600 -161 1045 -0.6328 1.4180 1.7600 -161 1046 -0.5993 1.4351 1.7600 -161 1047 -0.5615 1.4439 1.7600 -161 1048 -0.5164 1.4475 1.7600 -161 1049 -0.4724 1.4468 1.7600 -161 1050 -0.4278 1.4408 1.7600 -161 1051 -0.3807 1.4304 1.7600 -161 1052 -0.3316 1.4163 1.7600 -161 1053 -0.2798 1.3984 1.7600 -161 1054 -0.2263 1.3782 1.7600 -161 1055 -0.1653 1.3576 1.7600 -161 1056 -0.0984 1.3436 1.7600 -161 1057 -0.0280 1.3396 1.7600 -161 1058 0.0416 1.3406 1.7600 -161 1059 0.1062 1.3487 1.7600 -161 1060 0.1708 1.3589 1.7600 -161 1061 0.2324 1.3735 1.7600 -161 1062 0.2936 1.3940 1.7600 -161 1063 0.3611 1.4227 1.7600 -161 1064 0.4299 1.4531 1.7600 -161 1065 0.4865 1.4706 1.7600 -161 1066 0.5395 1.4766 1.7600 -161 1067 0.5918 1.4826 1.7600 -161 1068 0.6415 1.4909 1.7600 -161 1069 0.6902 1.4913 1.7600 -161 1070 0.7412 1.4854 1.7600 -161 1071 0.7917 1.4776 1.7600 -161 1072 0.8441 1.4654 1.7600 -161 1073 0.8982 1.4440 1.7600 -161 1074 0.9572 1.4273 1.7600 -161 1075 1.0146 1.4168 1.7600 -161 1076 1.0693 1.4141 1.7600 -161 1077 1.1167 1.4181 1.7600 -161 1078 1.1677 1.4240 1.7600 -161 1079 1.2236 1.4318 1.7600 -161 1080 1.2846 1.4414 1.7600 -161 1081 1.3474 1.4577 1.7600 -161 1082 1.4145 1.4849 1.7600 -161 1083 1.4835 1.5025 1.7600 -161 1084 1.5540 1.5151 1.7600 -161 1085 1.6167 1.5271 1.7600 -161 1086 1.6761 1.5222 1.7600 -161 1087 1.7420 1.5184 1.7600 -161 1088 1.8071 1.5118 1.7600 -161 1089 1.8723 1.5023 1.7600 -161 1090 1.9325 1.4804 1.7600 -161 1091 1.9954 1.4524 1.7600 -161 1092 2.0582 1.4282 1.7600 -161 1093 2.1177 1.4126 1.7600 -161 1094 2.1814 1.4048 1.7600 -161 1095 2.2498 1.4065 1.7600 -161 1096 2.3199 1.4130 1.7600 -161 1097 2.3938 1.4265 1.7600 -161 1098 2.4768 1.4482 1.7600 -161 1099 2.5671 1.4723 1.7600 -161 1100 2.6563 1.4839 1.7600 -161 1101 2.7357 1.4927 1.7600 -161 1102 2.8029 1.5028 1.7600 -161 1103 2.8586 1.5016 1.7600 -161 1104 2.9093 1.4954 1.7600 -161 1105 2.9623 1.4861 1.7600 -161 1106 3.0116 1.4601 1.7600 -161 1107 3.0573 1.4379 1.7600 -161 1108 3.1000 1.4175 1.7600 -161 1109 3.1444 1.3999 1.7600 -161 1110 3.1939 1.3855 1.7600 -161 1111 3.2493 1.3891 1.7600 -161 1112 3.3076 1.4037 1.7600 -161 1113 3.3647 1.4198 1.7600 -161 1114 3.4198 1.4398 1.7600 -161 1115 3.4745 1.4640 1.7600 -161 1116 3.5340 1.4802 1.7600 -161 1117 3.5912 1.4917 1.7600 -161 1118 3.6486 1.4986 1.7600 -161 1119 3.7041 1.5005 1.7600 -161 1120 3.7606 1.4974 1.7600 -161 1121 3.8157 1.4934 1.7600 -161 1122 3.8710 1.4860 1.7600 -161 1123 3.9310 1.4814 1.7600 -161 1124 3.9992 1.4780 1.7600 -161 1125 4.0704 1.4821 1.7600 -161 1126 4.1378 1.4930 1.7600 -161 1127 4.1990 1.5070 1.7600 -161 1128 4.2589 1.5270 1.7600 -161 1129 4.3217 1.5488 1.7600 -161 1130 4.3875 1.5819 1.7600 -161 1131 4.4637 1.6130 1.7600 -161 1132 4.5446 1.6465 1.7600 -161 1133 4.6180 1.6706 1.7600 -161 1134 4.6887 1.6852 1.7600 -161 1135 4.7615 1.6958 1.7600 -161 1136 4.8292 1.7028 1.7600 -161 1137 4.9002 1.7075 1.7600 -161 1138 4.9654 1.7079 1.7600 -161 1139 5.0349 1.7066 1.7600 -161 1140 5.1131 1.7041 1.7600 -161 1141 5.1991 1.7090 1.7600 -161 1142 5.2777 1.7241 1.7600 -161 1143 5.3509 1.7446 1.7600 -161 1144 5.4172 1.7666 1.7600 -161 1145 5.4776 1.7887 1.7600 -161 1146 5.5375 1.8130 1.7600 -161 1147 5.5986 1.8436 1.7600 -161 1148 5.6662 1.8747 1.7600 -161 1149 5.7516 1.9093 1.7600 -161 1150 5.8378 1.9326 1.7600 -161 1151 5.9194 1.9439 1.7600 -162 893 -7.8171 1.1893 1.7600 -162 894 -7.7599 1.1762 1.7600 -162 895 -7.7018 1.1614 1.7600 -162 896 -7.6427 1.1443 1.7600 -162 897 -7.5831 1.1271 1.7600 -162 898 -7.5247 1.1116 1.7600 -162 899 -7.4706 1.1001 1.7600 -162 900 -7.4171 1.0935 1.7600 -162 901 -7.3626 1.0845 1.7600 -162 902 -7.3070 1.0688 1.7600 -162 903 -7.2518 1.0461 1.7600 -162 904 -7.1968 1.0215 1.7600 -162 905 -7.1434 0.9965 1.7600 -162 906 -7.0868 0.9731 1.7600 -162 907 -7.0295 0.9489 1.7600 -162 908 -6.9719 0.9265 1.7600 -162 909 -6.9217 0.9009 1.7600 -162 910 -6.8768 0.8754 1.7600 -162 911 -6.8279 0.8488 1.7600 -162 912 -6.7697 0.8283 1.7600 -162 913 -6.7102 0.8116 1.7600 -162 914 -6.6464 0.7979 1.7600 -162 915 -6.5834 0.7816 1.7600 -162 916 -6.5246 0.7669 1.7600 -162 917 -6.4707 0.7545 1.7600 -162 918 -6.4182 0.7483 1.7600 -162 919 -6.3694 0.7468 1.7600 -162 920 -6.3197 0.7363 1.7600 -162 921 -6.2674 0.7198 1.7600 -162 922 -6.2122 0.7048 1.7600 -162 923 -6.1607 0.6898 1.7600 -162 924 -6.1078 0.6796 1.7600 -162 925 -6.0549 0.6677 1.7600 -162 926 -6.0092 0.6583 1.7600 -162 927 -5.9651 0.6467 1.7600 -162 928 -5.9259 0.6374 1.7600 -162 929 -5.8870 0.6307 1.7600 -162 930 -5.8379 0.6302 1.7600 -162 931 -5.7916 0.6339 1.7600 -162 932 -5.7446 0.6352 1.7600 -162 933 -5.6967 0.6356 1.7600 -162 934 -5.6504 0.6376 1.7600 -162 935 -5.6027 0.6426 1.7600 -162 936 -5.5527 0.6499 1.7600 -162 937 -5.5100 0.6593 1.7600 -162 938 -5.4726 0.6692 1.7600 -162 939 -5.4313 0.6720 1.7600 -162 940 -5.3861 0.6730 1.7600 -162 941 -5.3426 0.6713 1.7600 -162 942 -5.3024 0.6676 1.7600 -162 943 -5.2639 0.6665 1.7600 -162 944 -5.2230 0.6636 1.7600 -162 945 -5.1834 0.6627 1.7600 -162 946 -5.1435 0.6615 1.7600 -162 947 -5.1037 0.6546 1.7600 -162 948 -5.0657 0.6473 1.7600 -162 949 -5.0314 0.6386 1.7600 -162 950 -4.9967 0.6304 1.7600 -162 951 -4.9545 0.6264 1.7600 -162 952 -4.9116 0.6277 1.7600 -162 953 -4.8719 0.6305 1.7600 -162 954 -4.8323 0.6294 1.7600 -162 955 -4.7909 0.6280 1.7600 -162 956 -4.7454 0.6286 1.7600 -162 957 -4.7039 0.6334 1.7600 -162 958 -4.6613 0.6409 1.7600 -162 959 -4.6210 0.6511 1.7600 -162 960 -4.5858 0.6630 1.7600 -162 961 -4.5507 0.6710 1.7600 -162 962 -4.5090 0.6729 1.7600 -162 963 -4.4674 0.6718 1.7600 -162 964 -4.4305 0.6693 1.7600 -162 965 -4.3940 0.6684 1.7600 -162 966 -4.3583 0.6713 1.7600 -162 967 -4.3200 0.6733 1.7600 -162 968 -4.2765 0.6759 1.7600 -162 969 -4.2348 0.6759 1.7600 -162 970 -4.1973 0.6731 1.7600 -162 971 -4.1588 0.6726 1.7600 -162 972 -4.1185 0.6704 1.7600 -162 973 -4.0798 0.6717 1.7600 -162 974 -4.0390 0.6718 1.7600 -162 975 -3.9966 0.6728 1.7600 -162 976 -3.9492 0.6787 1.7600 -162 977 -3.9109 0.6866 1.7600 -162 978 -3.8701 0.6962 1.7600 -162 979 -3.8303 0.7051 1.7600 -162 980 -3.7857 0.7124 1.7600 -162 981 -3.7411 0.7232 1.7600 -162 982 -3.6966 0.7313 1.7600 -162 983 -3.6534 0.7431 1.7600 -162 984 -3.6163 0.7510 1.7600 -162 985 -3.5749 0.7519 1.7600 -162 986 -3.5286 0.7471 1.7600 -162 987 -3.4849 0.7397 1.7600 -162 988 -3.4483 0.7342 1.7600 -162 989 -3.4106 0.7299 1.7600 -162 990 -3.3709 0.7254 1.7600 -162 991 -3.3275 0.7162 1.7600 -162 992 -3.2862 0.7049 1.7600 -162 993 -3.2408 0.6957 1.7600 -162 994 -3.1980 0.6851 1.7600 -162 995 -3.1540 0.6789 1.7600 -162 996 -3.1083 0.6749 1.7600 -162 997 -3.0607 0.6778 1.7600 -162 998 -3.0164 0.6800 1.7600 -162 999 -2.9741 0.6810 1.7600 -162 1000 -2.9282 0.6823 1.7600 -162 1001 -2.8849 0.6842 1.7600 -162 1002 -2.8406 0.6890 1.7600 -162 1003 -2.7954 0.6987 1.7600 -162 1004 -2.7471 0.7124 1.7600 -162 1005 -2.7019 0.7235 1.7600 -162 1006 -2.6585 0.7277 1.7600 -162 1007 -2.6122 0.7271 1.7600 -162 1008 -2.5656 0.7244 1.7600 -162 1009 -2.5224 0.7286 1.7600 -162 1010 -2.4812 0.7313 1.7600 -162 1011 -2.4374 0.7331 1.7600 -162 1012 -2.3899 0.7324 1.7600 -162 1013 -2.3340 0.7275 1.7600 -162 1014 -2.2839 0.7231 1.7600 -162 1015 -2.2331 0.7175 1.7600 -162 1016 -2.1784 0.7151 1.7600 -162 1017 -2.1211 0.7169 1.7600 -162 1018 -2.0653 0.7203 1.7600 -162 1019 -2.0093 0.7178 1.7600 -162 1020 -1.9599 0.7193 1.7600 -162 1021 -1.9127 0.7216 1.7600 -162 1022 -1.8667 0.7265 1.7600 -162 1023 -1.8236 0.7330 1.7600 -162 1024 -1.7783 0.7378 1.7600 -162 1025 -1.7301 0.7395 1.7600 -162 1026 -1.6848 0.7395 1.7600 -162 1027 -1.6395 0.7394 1.7600 -162 1028 -1.5970 0.7382 1.7600 -162 1029 -1.5516 0.7384 1.7600 -162 1030 -1.4996 0.7386 1.7600 -162 1031 -1.4520 0.7378 1.7600 -162 1032 -1.4133 0.7404 1.7600 -162 1033 -1.3631 0.7402 1.7600 -162 1034 -1.3082 0.7432 1.7600 -162 1035 -1.2577 0.7478 1.7600 -162 1036 -1.2076 0.7508 1.7600 -162 1037 -1.1532 0.7539 1.7600 -162 1038 -1.0999 0.7580 1.7600 -162 1039 -1.0496 0.7637 1.7600 -162 1040 -1.0001 0.7706 1.7600 -162 1041 -0.9538 0.7803 1.7600 -162 1042 -0.9059 0.7888 1.7600 -162 1043 -0.8534 0.7928 1.7600 -162 1044 -0.7994 0.7915 1.7600 -162 1045 -0.7482 0.7924 1.7600 -162 1046 -0.6989 0.7912 1.7600 -162 1047 -0.6464 0.7915 1.7600 -162 1048 -0.5925 0.7891 1.7600 -162 1049 -0.5408 0.7855 1.7600 -162 1050 -0.4873 0.7812 1.7600 -162 1051 -0.4329 0.7762 1.7600 -162 1052 -0.3762 0.7721 1.7600 -162 1053 -0.3138 0.7699 1.7600 -162 1054 -0.2526 0.7696 1.7600 -162 1055 -0.1958 0.7686 1.7600 -162 1056 -0.1363 0.7672 1.7600 -162 1057 -0.0738 0.7655 1.7600 -162 1058 -0.0118 0.7652 1.7600 -162 1059 0.0509 0.7685 1.7600 -162 1060 0.1054 0.7728 1.7600 -162 1061 0.1576 0.7807 1.7600 -162 1062 0.2163 0.7832 1.7600 -162 1063 0.2749 0.7774 1.7600 -162 1064 0.3281 0.7671 1.7600 -162 1065 0.3771 0.7593 1.7600 -162 1066 0.4269 0.7527 1.7600 -162 1067 0.4771 0.7493 1.7600 -162 1068 0.5265 0.7427 1.7600 -162 1069 0.5693 0.7330 1.7600 -162 1070 0.6046 0.7209 1.7600 -162 1071 0.6413 0.7099 1.7600 -162 1072 0.6827 0.7053 1.7600 -162 1073 0.7326 0.7050 1.7600 -162 1074 0.7850 0.7053 1.7600 -162 1075 0.8384 0.7049 1.7600 -162 1076 0.8949 0.7046 1.7600 -162 1077 0.9492 0.7052 1.7600 -162 1078 1.0017 0.7104 1.7600 -162 1079 1.0532 0.7206 1.7600 -162 1080 1.1049 0.7296 1.7600 -162 1081 1.1586 0.7347 1.7600 -162 1082 1.2118 0.7360 1.7600 -162 1083 1.2653 0.7345 1.7600 -162 1084 1.3199 0.7326 1.7600 -162 1085 1.3730 0.7343 1.7600 -162 1086 1.4273 0.7337 1.7600 -162 1087 1.4815 0.7312 1.7600 -162 1088 1.5324 0.7246 1.7600 -162 1089 1.5834 0.7167 1.7600 -162 1090 1.6378 0.7123 1.7600 -162 1091 1.6944 0.7122 1.7600 -162 1092 1.7481 0.7106 1.7600 -162 1093 1.8002 0.7095 1.7600 -162 1094 1.8515 0.7122 1.7600 -162 1095 1.9030 0.7193 1.7600 -162 1096 1.9559 0.7294 1.7600 -162 1097 2.0072 0.7451 1.7600 -162 1098 2.0513 0.7581 1.7600 -162 1099 2.1006 0.7668 1.7600 -162 1100 2.1511 0.7690 1.7600 -162 1101 2.2061 0.7733 1.7600 -162 1102 2.2607 0.7746 1.7600 -162 1103 2.3140 0.7726 1.7600 -162 1104 2.3685 0.7661 1.7600 -162 1105 2.4230 0.7537 1.7600 -162 1106 2.4765 0.7393 1.7600 -162 1107 2.5290 0.7265 1.7600 -162 1108 2.5822 0.7182 1.7600 -162 1109 2.6364 0.7173 1.7600 -162 1110 2.6896 0.7165 1.7600 -162 1111 2.7425 0.7137 1.7600 -162 1112 2.7969 0.7121 1.7600 -162 1113 2.8534 0.7117 1.7600 -162 1114 2.9121 0.7140 1.7600 -162 1115 2.9689 0.7190 1.7600 -162 1116 3.0211 0.7264 1.7600 -162 1117 3.0753 0.7312 1.7600 -162 1118 3.1303 0.7295 1.7600 -162 1119 3.1895 0.7255 1.7600 -162 1120 3.2490 0.7213 1.7600 -162 1121 3.3041 0.7165 1.7600 -162 1122 3.3591 0.7125 1.7600 -162 1123 3.4179 0.7066 1.7600 -162 1124 3.4769 0.6967 1.7600 -162 1125 3.5342 0.6819 1.7600 -162 1126 3.5914 0.6674 1.7600 -162 1127 3.6494 0.6588 1.7600 -162 1128 3.7129 0.6591 1.7600 -162 1129 3.7711 0.6602 1.7600 -162 1130 3.8313 0.6589 1.7600 -162 1131 3.8926 0.6555 1.7600 -162 1132 3.9587 0.6528 1.7600 -162 1133 4.0316 0.6525 1.7600 -162 1134 4.1007 0.6555 1.7600 -162 1135 4.1649 0.6593 1.7600 -162 1136 4.2299 0.6538 1.7600 -162 1137 4.2993 0.6399 1.7600 -162 1138 4.3640 0.6235 1.7600 -162 1139 4.4268 0.6082 1.7600 -162 1140 4.4918 0.5913 1.7600 -162 1141 4.5570 0.5756 1.7600 -162 1142 4.6298 0.5585 1.7600 -162 1143 4.6961 0.5380 1.7600 -162 1144 4.7623 0.5176 1.7600 -162 1145 4.8268 0.5041 1.7600 -162 1146 4.8922 0.5017 1.7600 -162 1147 4.9545 0.5049 1.7600 -162 1148 5.0168 0.5055 1.7600 -162 1149 5.0798 0.5024 1.7600 -162 1150 5.1483 0.4977 1.7600 -162 1151 5.2267 0.4934 1.7600 -162 1152 5.3030 0.4961 1.7600 -162 1153 5.3729 0.4980 1.7600 -162 1154 5.4409 0.4924 1.7600 -162 1155 5.5095 0.4790 1.7600 -162 1156 5.5771 0.4637 1.7600 -162 1157 5.6398 0.4496 1.7600 -162 1158 5.7005 0.4380 1.7600 -162 1159 5.7675 0.4284 1.7600 -162 1160 5.8421 0.4151 1.7600 -162 1161 5.9135 0.3948 1.7600 -163 887 -7.8272 0.7531 1.7600 -163 888 -7.7688 0.7369 1.7600 -163 889 -7.7079 0.7254 1.7600 -163 890 -7.6443 0.7193 1.7600 -163 891 -7.5818 0.7178 1.7600 -163 892 -7.5245 0.7171 1.7600 -163 893 -7.4701 0.7104 1.7600 -163 894 -7.4170 0.6975 1.7600 -163 895 -7.3653 0.6803 1.7600 -163 896 -7.3141 0.6620 1.7600 -163 897 -7.2612 0.6417 1.7600 -163 898 -7.2053 0.6167 1.7600 -163 899 -7.1487 0.5879 1.7600 -163 900 -7.0937 0.5502 1.7600 -163 901 -7.0488 0.5112 1.7600 -163 902 -7.0025 0.4664 1.7600 -163 903 -6.9548 0.4230 1.7600 -163 904 -6.9048 0.3864 1.7600 -163 905 -6.8553 0.3584 1.7600 -163 906 -6.8071 0.3373 1.7600 -163 907 -6.7586 0.3214 1.7600 -163 908 -6.7077 0.3124 1.7600 -163 909 -6.6550 0.3109 1.7600 -163 910 -6.6013 0.3167 1.7600 -163 911 -6.5472 0.3290 1.7600 -163 912 -6.4958 0.3438 1.7600 -163 913 -6.4459 0.3572 1.7600 -163 914 -6.3968 0.3639 1.7600 -163 915 -6.3458 0.3626 1.7600 -163 916 -6.2987 0.3593 1.7600 -163 917 -6.2532 0.3576 1.7600 -163 918 -6.2049 0.3540 1.7600 -163 919 -6.1543 0.3461 1.7600 -163 920 -6.1009 0.3333 1.7600 -163 921 -6.0490 0.3126 1.7600 -163 922 -5.9999 0.2871 1.7600 -163 923 -5.9513 0.2583 1.7600 -163 924 -5.9034 0.2308 1.7600 -163 925 -5.8551 0.2083 1.7600 -163 926 -5.8063 0.1881 1.7600 -163 927 -5.7617 0.1757 1.7600 -163 928 -5.7226 0.1691 1.7600 -163 929 -5.6838 0.1640 1.7600 -163 930 -5.6462 0.1654 1.7600 -163 931 -5.6061 0.1688 1.7600 -163 932 -5.5650 0.1812 1.7600 -163 933 -5.5267 0.2001 1.7600 -163 934 -5.4908 0.2178 1.7600 -163 935 -5.4551 0.2364 1.7600 -163 936 -5.4171 0.2521 1.7600 -163 937 -5.3801 0.2647 1.7600 -163 938 -5.3399 0.2729 1.7600 -163 939 -5.2994 0.2785 1.7600 -163 940 -5.2597 0.2809 1.7600 -163 941 -5.2218 0.2823 1.7600 -163 942 -5.1823 0.2786 1.7600 -163 943 -5.1391 0.2716 1.7600 -163 944 -5.0946 0.2621 1.7600 -163 945 -5.0472 0.2449 1.7600 -163 946 -5.0025 0.2286 1.7600 -163 947 -4.9564 0.2071 1.7600 -163 948 -4.9078 0.1879 1.7600 -163 949 -4.8601 0.1712 1.7600 -163 950 -4.8170 0.1586 1.7600 -163 951 -4.7773 0.1518 1.7600 -163 952 -4.7376 0.1476 1.7600 -163 953 -4.7027 0.1449 1.7600 -163 954 -4.6666 0.1451 1.7600 -163 955 -4.6289 0.1506 1.7600 -163 956 -4.5929 0.1604 1.7600 -163 957 -4.5575 0.1772 1.7600 -163 958 -4.5272 0.1970 1.7600 -163 959 -4.4974 0.2207 1.7600 -163 960 -4.4668 0.2431 1.7600 -163 961 -4.4360 0.2610 1.7600 -163 962 -4.4025 0.2732 1.7600 -163 963 -4.3705 0.2821 1.7600 -163 964 -4.3383 0.2908 1.7600 -163 965 -4.3047 0.2981 1.7600 -163 966 -4.2665 0.3046 1.7600 -163 967 -4.2267 0.3050 1.7600 -163 968 -4.1853 0.3013 1.7600 -163 969 -4.1448 0.2948 1.7600 -163 970 -4.1049 0.2808 1.7600 -163 971 -4.0620 0.2662 1.7600 -163 972 -4.0185 0.2540 1.7600 -163 973 -3.9766 0.2456 1.7600 -163 974 -3.9339 0.2405 1.7600 -163 975 -3.8924 0.2414 1.7600 -163 976 -3.8507 0.2403 1.7600 -163 977 -3.8084 0.2472 1.7600 -163 978 -3.7653 0.2573 1.7600 -163 979 -3.7171 0.2736 1.7600 -163 980 -3.6705 0.2958 1.7600 -163 981 -3.6225 0.3256 1.7600 -163 982 -3.5722 0.3523 1.7600 -163 983 -3.5240 0.3722 1.7600 -163 984 -3.4762 0.3882 1.7600 -163 985 -3.4300 0.3985 1.7600 -163 986 -3.3834 0.4040 1.7600 -163 987 -3.3396 0.4064 1.7600 -163 988 -3.2929 0.3979 1.7600 -163 989 -3.2471 0.3889 1.7600 -163 990 -3.2009 0.3750 1.7600 -163 991 -3.1523 0.3559 1.7600 -163 992 -3.1018 0.3322 1.7600 -163 993 -3.0521 0.3084 1.7600 -163 994 -3.0001 0.2895 1.7600 -163 995 -2.9500 0.2748 1.7600 -163 996 -2.9012 0.2641 1.7600 -163 997 -2.8573 0.2574 1.7600 -163 998 -2.8149 0.2570 1.7600 -163 999 -2.7702 0.2594 1.7600 -163 1000 -2.7235 0.2714 1.7600 -163 1001 -2.6764 0.2887 1.7600 -163 1002 -2.6282 0.3073 1.7600 -163 1003 -2.5769 0.3291 1.7600 -163 1004 -2.5252 0.3440 1.7600 -163 1005 -2.4730 0.3541 1.7600 -163 1006 -2.4221 0.3588 1.7600 -163 1007 -2.3718 0.3605 1.7600 -163 1008 -2.3233 0.3609 1.7600 -163 1009 -2.2740 0.3579 1.7600 -163 1010 -2.2233 0.3470 1.7600 -163 1011 -2.1724 0.3357 1.7600 -163 1012 -2.1207 0.3155 1.7600 -163 1013 -2.0615 0.2931 1.7600 -163 1014 -2.0007 0.2741 1.7600 -163 1015 -1.9476 0.2600 1.7600 -163 1016 -1.8960 0.2497 1.7600 -163 1017 -1.8488 0.2469 1.7600 -163 1018 -1.8022 0.2480 1.7600 -163 1019 -1.7575 0.2513 1.7600 -163 1020 -1.7082 0.2603 1.7600 -163 1021 -1.6571 0.2779 1.7600 -163 1022 -1.6040 0.3039 1.7600 -163 1023 -1.5511 0.3347 1.7600 -163 1024 -1.4939 0.3646 1.7600 -163 1025 -1.4379 0.3863 1.7600 -163 1026 -1.3848 0.4012 1.7600 -163 1027 -1.3313 0.4127 1.7600 -163 1028 -1.2796 0.4176 1.7600 -163 1029 -1.2293 0.4193 1.7600 -163 1030 -1.1789 0.4152 1.7600 -163 1031 -1.1275 0.4047 1.7600 -163 1032 -1.0718 0.3904 1.7600 -163 1033 -1.0133 0.3702 1.7600 -163 1034 -0.9521 0.3444 1.7600 -163 1035 -0.8886 0.3204 1.7600 -163 1036 -0.8304 0.3027 1.7600 -163 1037 -0.7767 0.2941 1.7600 -163 1038 -0.7227 0.2909 1.7600 -163 1039 -0.6699 0.2914 1.7600 -163 1040 -0.6171 0.2962 1.7600 -163 1041 -0.5626 0.3081 1.7600 -163 1042 -0.5062 0.3263 1.7600 -163 1043 -0.4477 0.3506 1.7600 -163 1044 -0.3932 0.3773 1.7600 -163 1045 -0.3391 0.3981 1.7600 -163 1046 -0.2831 0.4174 1.7600 -163 1047 -0.2243 0.4295 1.7600 -163 1048 -0.1648 0.4331 1.7600 -163 1049 -0.1057 0.4337 1.7600 -163 1050 -0.0434 0.4313 1.7600 -163 1051 0.0241 0.4238 1.7600 -163 1052 0.0949 0.4094 1.7600 -163 1053 0.1615 0.3914 1.7600 -163 1054 0.2249 0.3689 1.7600 -163 1055 0.2880 0.3503 1.7600 -163 1056 0.3505 0.3382 1.7600 -163 1057 0.4107 0.3338 1.7600 -163 1058 0.4714 0.3294 1.7600 -163 1059 0.5321 0.3322 1.7600 -163 1060 0.5960 0.3429 1.7600 -163 1061 0.6581 0.3569 1.7600 -163 1062 0.7203 0.3780 1.7600 -163 1063 0.7790 0.3983 1.7600 -163 1064 0.8366 0.4155 1.7600 -163 1065 0.8936 0.4318 1.7600 -163 1066 0.9529 0.4386 1.7600 -163 1067 1.0123 0.4408 1.7600 -163 1068 1.0711 0.4392 1.7600 -163 1069 1.1308 0.4357 1.7600 -163 1070 1.1925 0.4236 1.7600 -163 1071 1.2571 0.4077 1.7600 -163 1072 1.3224 0.3880 1.7600 -163 1073 1.3892 0.3657 1.7600 -163 1074 1.4516 0.3473 1.7600 -163 1075 1.5148 0.3332 1.7600 -163 1076 1.5760 0.3244 1.7600 -163 1077 1.6340 0.3205 1.7600 -163 1078 1.6941 0.3173 1.7600 -163 1079 1.7548 0.3171 1.7600 -163 1080 1.8185 0.3239 1.7600 -163 1081 1.8792 0.3342 1.7600 -163 1082 1.9407 0.3503 1.7600 -163 1083 2.0029 0.3670 1.7600 -163 1084 2.0655 0.3777 1.7600 -163 1085 2.1288 0.3822 1.7600 -163 1086 2.1900 0.3828 1.7600 -163 1087 2.2458 0.3797 1.7600 -163 1088 2.3030 0.3754 1.7600 -163 1089 2.3659 0.3673 1.7600 -163 1090 2.4289 0.3516 1.7600 -163 1091 2.4958 0.3300 1.7600 -163 1092 2.5644 0.3040 1.7600 -163 1093 2.6274 0.2846 1.7600 -163 1094 2.6819 0.2686 1.7600 -163 1095 2.7370 0.2580 1.7600 -163 1096 2.7871 0.2481 1.7600 -163 1097 2.8353 0.2446 1.7600 -163 1098 2.8830 0.2483 1.7600 -163 1099 2.9307 0.2576 1.7600 -163 1100 2.9822 0.2739 1.7600 -163 1101 3.0339 0.2945 1.7600 -163 1102 3.0885 0.3191 1.7600 -163 1103 3.1440 0.3441 1.7600 -163 1104 3.1979 0.3594 1.7600 -163 1105 3.2547 0.3658 1.7600 -163 1106 3.3120 0.3704 1.7600 -163 1107 3.3688 0.3735 1.7600 -163 1108 3.4258 0.3741 1.7600 -163 1109 3.4885 0.3693 1.7600 -163 1110 3.5507 0.3591 1.7600 -163 1111 3.6194 0.3408 1.7600 -163 1112 3.6906 0.3166 1.7600 -163 1113 3.7611 0.2975 1.7600 -163 1114 3.8285 0.2803 1.7600 -163 1115 3.8930 0.2731 1.7600 -163 1116 3.9561 0.2713 1.7600 -163 1117 4.0150 0.2700 1.7600 -163 1118 4.0739 0.2724 1.7600 -163 1119 4.1337 0.2774 1.7600 -163 1120 4.1959 0.2890 1.7600 -163 1121 4.2640 0.3050 1.7600 -163 1122 4.3355 0.3213 1.7600 -163 1123 4.4066 0.3325 1.7600 -163 1124 4.4735 0.3351 1.7600 -163 1125 4.5421 0.3300 1.7600 -163 1126 4.6087 0.3202 1.7600 -163 1127 4.6740 0.3073 1.7600 -163 1128 4.7346 0.2889 1.7600 -163 1129 4.7988 0.2633 1.7600 -163 1130 4.8663 0.2312 1.7600 -163 1131 4.9400 0.1947 1.7600 -163 1132 5.0154 0.1597 1.7600 -163 1133 5.0864 0.1336 1.7600 -163 1134 5.1545 0.1178 1.7600 -163 1135 5.2178 0.1058 1.7600 -163 1136 5.2815 0.0971 1.7600 -163 1137 5.3414 0.0938 1.7600 -163 1138 5.4059 0.0975 1.7600 -163 1139 5.4762 0.1082 1.7600 -163 1140 5.5587 0.1221 1.7600 -163 1141 5.6397 0.1305 1.7600 -163 1142 5.7146 0.1284 1.7600 -163 1143 5.7901 0.1199 1.7600 -163 1144 5.8593 0.1099 1.7600 -163 1145 5.9242 0.0997 1.7600 -164 905 -7.8100 0.5759 1.7600 -164 906 -7.7700 0.5517 1.7600 -164 907 -7.7248 0.5347 1.7600 -164 908 -7.6747 0.5231 1.7600 -164 909 -7.6171 0.5153 1.7600 -164 910 -7.5546 0.5133 1.7600 -164 911 -7.4900 0.5179 1.7600 -164 912 -7.4273 0.5246 1.7600 -164 913 -7.3708 0.5290 1.7600 -164 914 -7.3182 0.5303 1.7600 -164 915 -7.2689 0.5257 1.7600 -164 916 -7.2240 0.5127 1.7600 -164 917 -7.1782 0.4957 1.7600 -164 918 -7.1265 0.4791 1.7600 -164 919 -7.0688 0.4607 1.7600 -164 920 -7.0090 0.4384 1.7600 -164 921 -6.9493 0.4113 1.7600 -164 922 -6.8902 0.3756 1.7600 -164 923 -6.8379 0.3424 1.7600 -164 924 -6.7898 0.3088 1.7600 -164 925 -6.7440 0.2819 1.7600 -164 926 -6.6962 0.2633 1.7600 -164 927 -6.6443 0.2506 1.7600 -164 928 -6.5903 0.2409 1.7600 -164 929 -6.5310 0.2338 1.7600 -164 930 -6.4714 0.2333 1.7600 -164 931 -6.4122 0.2365 1.7600 -164 932 -6.3564 0.2415 1.7600 -164 933 -6.3065 0.2446 1.7600 -164 934 -6.2584 0.2432 1.7600 -164 935 -6.2114 0.2332 1.7600 -164 936 -6.1622 0.2160 1.7600 -164 937 -6.1095 0.1967 1.7600 -164 938 -6.0579 0.1745 1.7600 -164 939 -6.0072 0.1458 1.7600 -164 940 -5.9657 0.1121 1.7600 -164 941 -5.9291 0.0770 1.7600 -164 942 -5.8953 0.0458 1.7600 -164 943 -5.8608 0.0212 1.7600 -164 944 -5.8203 0.0020 1.7600 -164 945 -5.7782 -0.0108 1.7600 -164 946 -5.7339 -0.0181 1.7600 -164 947 -5.6925 -0.0191 1.7600 -164 948 -5.6478 -0.0124 1.7600 -164 949 -5.6009 0.0029 1.7600 -164 950 -5.5520 0.0245 1.7600 -164 951 -5.5082 0.0495 1.7600 -164 952 -5.4664 0.0728 1.7600 -164 953 -5.4267 0.0942 1.7600 -164 954 -5.3887 0.1085 1.7600 -164 955 -5.3520 0.1161 1.7600 -164 956 -5.3182 0.1170 1.7600 -164 957 -5.2837 0.1184 1.7600 -164 958 -5.2451 0.1206 1.7600 -164 959 -5.2043 0.1222 1.7600 -164 960 -5.1598 0.1212 1.7600 -164 961 -5.1102 0.1113 1.7600 -164 962 -5.0583 0.0985 1.7600 -164 963 -5.0092 0.0826 1.7600 -164 964 -4.9611 0.0684 1.7600 -164 965 -4.9137 0.0571 1.7600 -164 966 -4.8695 0.0520 1.7600 -164 967 -4.8260 0.0551 1.7600 -164 968 -4.7837 0.0643 1.7600 -164 969 -4.7432 0.0765 1.7600 -164 970 -4.7035 0.0925 1.7600 -164 971 -4.6647 0.1127 1.7600 -164 972 -4.6280 0.1389 1.7600 -164 973 -4.5933 0.1695 1.7600 -164 974 -4.5596 0.2010 1.7600 -164 975 -4.5300 0.2269 1.7600 -164 976 -4.5002 0.2490 1.7600 -164 977 -4.4672 0.2665 1.7600 -164 978 -4.4260 0.2803 1.7600 -164 979 -4.3825 0.2896 1.7600 -164 980 -4.3393 0.2962 1.7600 -164 981 -4.2943 0.2984 1.7600 -164 982 -4.2482 0.2930 1.7600 -164 983 -4.2094 0.2846 1.7600 -164 984 -4.1706 0.2729 1.7600 -164 985 -4.1354 0.2648 1.7600 -164 986 -4.0980 0.2616 1.7600 -164 987 -4.0563 0.2665 1.7600 -164 988 -4.0156 0.2729 1.7600 -164 989 -3.9750 0.2832 1.7600 -164 990 -3.9317 0.2997 1.7600 -164 991 -3.8900 0.3217 1.7600 -164 992 -3.8446 0.3483 1.7600 -164 993 -3.7993 0.3731 1.7600 -164 994 -3.7536 0.3920 1.7600 -164 995 -3.7039 0.4036 1.7600 -164 996 -3.6530 0.4049 1.7600 -164 997 -3.5989 0.3984 1.7600 -164 998 -3.5479 0.3799 1.7600 -164 999 -3.4988 0.3536 1.7600 -164 1000 -3.4551 0.3246 1.7600 -164 1001 -3.4140 0.2950 1.7600 -164 1002 -3.3724 0.2703 1.7600 -164 1003 -3.3297 0.2500 1.7600 -164 1004 -3.2842 0.2390 1.7600 -164 1005 -3.2371 0.2330 1.7600 -164 1006 -3.1877 0.2411 1.7600 -164 1007 -3.1384 0.2576 1.7600 -164 1008 -3.0886 0.2798 1.7600 -164 1009 -3.0401 0.3101 1.7600 -164 1010 -2.9926 0.3392 1.7600 -164 1011 -2.9491 0.3628 1.7600 -164 1012 -2.9024 0.3806 1.7600 -164 1013 -2.8571 0.3902 1.7600 -164 1014 -2.8098 0.3929 1.7600 -164 1015 -2.7594 0.3940 1.7600 -164 1016 -2.7099 0.3890 1.7600 -164 1017 -2.6576 0.3748 1.7600 -164 1018 -2.6104 0.3483 1.7600 -164 1019 -2.5615 0.3217 1.7600 -164 1020 -2.5127 0.2966 1.7600 -164 1021 -2.4693 0.2785 1.7600 -164 1022 -2.4237 0.2657 1.7600 -164 1023 -2.3771 0.2576 1.7600 -164 1024 -2.3328 0.2535 1.7600 -164 1025 -2.2890 0.2571 1.7600 -164 1026 -2.2453 0.2650 1.7600 -164 1027 -2.2039 0.2821 1.7600 -164 1028 -2.1621 0.3066 1.7600 -164 1029 -2.1188 0.3347 1.7600 -164 1030 -2.0692 0.3601 1.7600 -164 1031 -2.0213 0.3805 1.7600 -164 1032 -1.9705 0.3938 1.7600 -164 1033 -1.9200 0.3983 1.7600 -164 1034 -1.8691 0.4010 1.7600 -164 1035 -1.8172 0.4049 1.7600 -164 1036 -1.7676 0.4095 1.7600 -164 1037 -1.7122 0.4061 1.7600 -164 1038 -1.6568 0.3966 1.7600 -164 1039 -1.6035 0.3777 1.7600 -164 1040 -1.5519 0.3546 1.7600 -164 1041 -1.5045 0.3385 1.7600 -164 1042 -1.4580 0.3284 1.7600 -164 1043 -1.4076 0.3295 1.7600 -164 1044 -1.3556 0.3368 1.7600 -164 1045 -1.3040 0.3431 1.7600 -164 1046 -1.2516 0.3514 1.7600 -164 1047 -1.1970 0.3649 1.7600 -164 1048 -1.1407 0.3827 1.7600 -164 1049 -1.0827 0.4040 1.7600 -164 1050 -1.0258 0.4231 1.7600 -164 1051 -0.9727 0.4370 1.7600 -164 1052 -0.9210 0.4436 1.7600 -164 1053 -0.8667 0.4423 1.7600 -164 1054 -0.8118 0.4391 1.7600 -164 1055 -0.7576 0.4358 1.7600 -164 1056 -0.7007 0.4297 1.7600 -164 1057 -0.6391 0.4190 1.7600 -164 1058 -0.5769 0.4051 1.7600 -164 1059 -0.5156 0.3870 1.7600 -164 1060 -0.4581 0.3687 1.7600 -164 1061 -0.4063 0.3575 1.7600 -164 1062 -0.3556 0.3528 1.7600 -164 1063 -0.3009 0.3544 1.7600 -164 1064 -0.2420 0.3636 1.7600 -164 1065 -0.1807 0.3822 1.7600 -164 1066 -0.1198 0.4025 1.7600 -164 1067 -0.0596 0.4203 1.7600 -164 1068 0.0009 0.4392 1.7600 -164 1069 0.0613 0.4640 1.7600 -164 1070 0.1184 0.4883 1.7600 -164 1071 0.1721 0.5065 1.7600 -164 1072 0.2271 0.5144 1.7600 -164 1073 0.2824 0.5163 1.7600 -164 1074 0.3401 0.5083 1.7600 -164 1075 0.3920 0.4880 1.7600 -164 1076 0.4431 0.4627 1.7600 -164 1077 0.4974 0.4336 1.7600 -164 1078 0.5523 0.3916 1.7600 -164 1079 0.6001 0.3483 1.7600 -164 1080 0.6377 0.3163 1.7600 -164 1081 0.6800 0.2943 1.7600 -164 1082 0.7313 0.2835 1.7600 -164 1083 0.7869 0.2787 1.7600 -164 1084 0.8463 0.2788 1.7600 -164 1085 0.9053 0.2847 1.7600 -164 1086 0.9665 0.2995 1.7600 -164 1087 1.0276 0.3175 1.7600 -164 1088 1.0853 0.3341 1.7600 -164 1089 1.1389 0.3533 1.7600 -164 1090 1.1893 0.3692 1.7600 -164 1091 1.2449 0.3754 1.7600 -164 1092 1.3002 0.3751 1.7600 -164 1093 1.3597 0.3712 1.7600 -164 1094 1.4258 0.3720 1.7600 -164 1095 1.4913 0.3776 1.7600 -164 1096 1.5499 0.3754 1.7600 -164 1097 1.6026 0.3561 1.7600 -164 1098 1.6533 0.3340 1.7600 -164 1099 1.7032 0.3130 1.7600 -164 1100 1.7533 0.2967 1.7600 -164 1101 1.8017 0.2902 1.7600 -164 1102 1.8506 0.2874 1.7600 -164 1103 1.9012 0.2884 1.7600 -164 1104 1.9558 0.2983 1.7600 -164 1105 2.0122 0.3097 1.7600 -164 1106 2.0706 0.3292 1.7600 -164 1107 2.1266 0.3581 1.7600 -164 1108 2.1854 0.3880 1.7600 -164 1109 2.2490 0.4121 1.7600 -164 1110 2.3071 0.4255 1.7600 -164 1111 2.3663 0.4324 1.7600 -164 1112 2.4222 0.4305 1.7600 -164 1113 2.4766 0.4298 1.7600 -164 1114 2.5296 0.4246 1.7600 -164 1115 2.5881 0.4193 1.7600 -164 1116 2.6454 0.4085 1.7600 -164 1117 2.7065 0.3942 1.7600 -164 1118 2.7707 0.3781 1.7600 -164 1119 2.8324 0.3710 1.7600 -164 1120 2.8886 0.3648 1.7600 -164 1121 2.9421 0.3629 1.7600 -164 1122 2.9955 0.3633 1.7600 -164 1123 3.0526 0.3663 1.7600 -164 1124 3.1105 0.3745 1.7600 -164 1125 3.1683 0.3847 1.7600 -164 1126 3.2227 0.3946 1.7600 -164 1127 3.2802 0.4043 1.7600 -164 1128 3.3361 0.4097 1.7600 -164 1129 3.3916 0.4103 1.7600 -164 1130 3.4467 0.4055 1.7600 -164 1131 3.5005 0.3982 1.7600 -164 1132 3.5536 0.3857 1.7600 -164 1133 3.6059 0.3726 1.7600 -164 1134 3.6540 0.3549 1.7600 -164 1135 3.7045 0.3348 1.7600 -164 1136 3.7579 0.3145 1.7600 -164 1137 3.8119 0.2978 1.7600 -164 1138 3.8727 0.2850 1.7600 -164 1139 3.9381 0.2778 1.7600 -164 1140 4.0075 0.2733 1.7600 -164 1141 4.0756 0.2753 1.7600 -164 1142 4.1410 0.2799 1.7600 -164 1143 4.2082 0.2864 1.7600 -164 1144 4.2757 0.2882 1.7600 -164 1145 4.3362 0.2847 1.7600 -164 1146 4.3980 0.2756 1.7600 -164 1147 4.4601 0.2659 1.7600 -164 1148 4.5185 0.2505 1.7600 -164 1149 4.5756 0.2366 1.7600 -164 1150 4.6337 0.2165 1.7600 -164 1151 4.6941 0.1893 1.7600 -164 1152 4.7564 0.1648 1.7600 -164 1153 4.8154 0.1468 1.7600 -164 1154 4.8718 0.1361 1.7600 -164 1155 4.9223 0.1281 1.7600 -164 1156 4.9687 0.1226 1.7600 -164 1157 5.0154 0.1200 1.7600 -164 1158 5.0660 0.1210 1.7600 -164 1159 5.1148 0.1281 1.7600 -164 1160 5.1684 0.1352 1.7600 -164 1161 5.2271 0.1390 1.7600 -164 1162 5.2882 0.1340 1.7600 -164 1163 5.3546 0.1222 1.7600 -164 1164 5.4223 0.1049 1.7600 -164 1165 5.4841 0.0865 1.7600 -164 1166 5.5454 0.0691 1.7600 -164 1167 5.5999 0.0541 1.7600 -164 1168 5.6580 0.0355 1.7600 -164 1169 5.7205 0.0128 1.7600 -164 1170 5.7868 -0.0095 1.7600 -164 1171 5.8517 -0.0232 1.7600 -164 1172 5.9201 -0.0260 1.7600 -165 915 -7.8077 1.0953 1.7600 -165 916 -7.7512 1.0785 1.7600 -165 917 -7.6942 1.0596 1.7600 -165 918 -7.6344 1.0389 1.7600 -165 919 -7.5720 1.0160 1.7600 -165 920 -7.5108 0.9898 1.7600 -165 921 -7.4539 0.9601 1.7600 -165 922 -7.4012 0.9302 1.7600 -165 923 -7.3490 0.9041 1.7600 -165 924 -7.3010 0.8882 1.7600 -165 925 -7.2549 0.8831 1.7600 -165 926 -7.2015 0.8822 1.7600 -165 927 -7.1454 0.8803 1.7600 -165 928 -7.0845 0.8805 1.7600 -165 929 -7.0213 0.8869 1.7600 -165 930 -6.9603 0.8947 1.7600 -165 931 -6.9008 0.9054 1.7600 -165 932 -6.8422 0.9162 1.7600 -165 933 -6.7858 0.9239 1.7600 -165 934 -6.7319 0.9269 1.7600 -165 935 -6.6763 0.9233 1.7600 -165 936 -6.6210 0.9149 1.7600 -165 937 -6.5659 0.9035 1.7600 -165 938 -6.5079 0.8896 1.7600 -165 939 -6.4505 0.8728 1.7600 -165 940 -6.3925 0.8510 1.7600 -165 941 -6.3378 0.8270 1.7600 -165 942 -6.2824 0.8058 1.7600 -165 943 -6.2284 0.7892 1.7600 -165 944 -6.1764 0.7785 1.7600 -165 945 -6.1220 0.7747 1.7600 -165 946 -6.0701 0.7696 1.7600 -165 947 -6.0182 0.7676 1.7600 -165 948 -5.9641 0.7668 1.7600 -165 949 -5.9118 0.7672 1.7600 -165 950 -5.8584 0.7728 1.7600 -165 951 -5.8112 0.7778 1.7600 -165 952 -5.7648 0.7830 1.7600 -165 953 -5.7204 0.7857 1.7600 -165 954 -5.6772 0.7812 1.7600 -165 955 -5.6355 0.7709 1.7600 -165 956 -5.5927 0.7587 1.7600 -165 957 -5.5511 0.7464 1.7600 -165 958 -5.5088 0.7323 1.7600 -165 959 -5.4674 0.7132 1.7600 -165 960 -5.4239 0.6885 1.7600 -165 961 -5.3823 0.6646 1.7600 -165 962 -5.3419 0.6385 1.7600 -165 963 -5.3011 0.6187 1.7600 -165 964 -5.2613 0.6017 1.7600 -165 965 -5.2213 0.5911 1.7600 -165 966 -5.1870 0.5861 1.7600 -165 967 -5.1534 0.5855 1.7600 -165 968 -5.1181 0.5876 1.7600 -165 969 -5.0847 0.5918 1.7600 -165 970 -5.0534 0.6018 1.7600 -165 971 -5.0235 0.6179 1.7600 -165 972 -4.9968 0.6393 1.7600 -165 973 -4.9681 0.6637 1.7600 -165 974 -4.9399 0.6850 1.7600 -165 975 -4.9138 0.7015 1.7600 -165 976 -4.8859 0.7107 1.7600 -165 977 -4.8595 0.7152 1.7600 -165 978 -4.8356 0.7180 1.7600 -165 979 -4.8119 0.7175 1.7600 -165 980 -4.7892 0.7131 1.7600 -165 981 -4.7654 0.7031 1.7600 -165 982 -4.7406 0.6879 1.7600 -165 983 -4.7140 0.6663 1.7600 -165 984 -4.6838 0.6426 1.7600 -165 985 -4.6516 0.6180 1.7600 -165 986 -4.6189 0.5915 1.7600 -165 987 -4.5854 0.5673 1.7600 -165 988 -4.5545 0.5496 1.7600 -165 989 -4.5194 0.5378 1.7600 -165 990 -4.4861 0.5326 1.7600 -165 991 -4.4532 0.5324 1.7600 -165 992 -4.4198 0.5332 1.7600 -165 993 -4.3829 0.5397 1.7600 -165 994 -4.3456 0.5496 1.7600 -165 995 -4.3071 0.5620 1.7600 -165 996 -4.2659 0.5791 1.7600 -165 997 -4.2289 0.5993 1.7600 -165 998 -4.1903 0.6191 1.7600 -165 999 -4.1533 0.6355 1.7600 -165 1000 -4.1182 0.6470 1.7600 -165 1001 -4.0821 0.6509 1.7600 -165 1002 -4.0482 0.6507 1.7600 -165 1003 -4.0133 0.6466 1.7600 -165 1004 -3.9771 0.6417 1.7600 -165 1005 -3.9374 0.6304 1.7600 -165 1006 -3.9016 0.6145 1.7600 -165 1007 -3.8623 0.5941 1.7600 -165 1008 -3.8212 0.5724 1.7600 -165 1009 -3.7817 0.5503 1.7600 -165 1010 -3.7421 0.5306 1.7600 -165 1011 -3.7049 0.5148 1.7600 -165 1012 -3.6668 0.5041 1.7600 -165 1013 -3.6291 0.5020 1.7600 -165 1014 -3.5935 0.4998 1.7600 -165 1015 -3.5569 0.4988 1.7600 -165 1016 -3.5172 0.5001 1.7600 -165 1017 -3.4772 0.5082 1.7600 -165 1018 -3.4369 0.5254 1.7600 -165 1019 -3.3990 0.5435 1.7600 -165 1020 -3.3647 0.5604 1.7600 -165 1021 -3.3321 0.5728 1.7600 -165 1022 -3.2988 0.5775 1.7600 -165 1023 -3.2661 0.5759 1.7600 -165 1024 -3.2327 0.5721 1.7600 -165 1025 -3.1986 0.5669 1.7600 -165 1026 -3.1596 0.5589 1.7600 -165 1027 -3.1182 0.5465 1.7600 -165 1028 -3.0721 0.5272 1.7600 -165 1029 -3.0220 0.5043 1.7600 -165 1030 -2.9703 0.4814 1.7600 -165 1031 -2.9167 0.4557 1.7600 -165 1032 -2.8680 0.4381 1.7600 -165 1033 -2.8202 0.4238 1.7600 -165 1034 -2.7743 0.4167 1.7600 -165 1035 -2.7293 0.4158 1.7600 -165 1036 -2.6866 0.4136 1.7600 -165 1037 -2.6434 0.4169 1.7600 -165 1038 -2.5981 0.4219 1.7600 -165 1039 -2.5509 0.4288 1.7600 -165 1040 -2.5057 0.4427 1.7600 -165 1041 -2.4577 0.4548 1.7600 -165 1042 -2.4137 0.4687 1.7600 -165 1043 -2.3704 0.4764 1.7600 -165 1044 -2.3259 0.4759 1.7600 -165 1045 -2.2810 0.4700 1.7600 -165 1046 -2.2380 0.4627 1.7600 -165 1047 -2.1932 0.4500 1.7600 -165 1048 -2.1477 0.4379 1.7600 -165 1049 -2.1000 0.4165 1.7600 -165 1050 -2.0510 0.3916 1.7600 -165 1051 -1.9972 0.3638 1.7600 -165 1052 -1.9419 0.3433 1.7600 -165 1053 -1.8858 0.3317 1.7600 -165 1054 -1.8287 0.3273 1.7600 -165 1055 -1.7713 0.3266 1.7600 -165 1056 -1.7142 0.3328 1.7600 -165 1057 -1.6601 0.3412 1.7600 -165 1058 -1.6042 0.3532 1.7600 -165 1059 -1.5477 0.3703 1.7600 -165 1060 -1.4898 0.3853 1.7600 -165 1061 -1.4320 0.3988 1.7600 -165 1062 -1.3764 0.4069 1.7600 -165 1063 -1.3182 0.4096 1.7600 -165 1064 -1.2650 0.4052 1.7600 -165 1065 -1.2105 0.3971 1.7600 -165 1066 -1.1587 0.3875 1.7600 -165 1067 -1.1053 0.3765 1.7600 -165 1068 -1.0510 0.3602 1.7600 -165 1069 -0.9938 0.3409 1.7600 -165 1070 -0.9366 0.3209 1.7600 -165 1071 -0.8798 0.3058 1.7600 -165 1072 -0.8276 0.2964 1.7600 -165 1073 -0.7729 0.2948 1.7600 -165 1074 -0.7203 0.2986 1.7600 -165 1075 -0.6673 0.3033 1.7600 -165 1076 -0.6155 0.3099 1.7600 -165 1077 -0.5635 0.3212 1.7600 -165 1078 -0.5113 0.3350 1.7600 -165 1079 -0.4603 0.3557 1.7600 -165 1080 -0.4101 0.3772 1.7600 -165 1081 -0.3644 0.3921 1.7600 -165 1082 -0.3184 0.3989 1.7600 -165 1083 -0.2740 0.3995 1.7600 -165 1084 -0.2273 0.3988 1.7600 -165 1085 -0.1787 0.3937 1.7600 -165 1086 -0.1269 0.3845 1.7600 -165 1087 -0.0726 0.3676 1.7600 -165 1088 -0.0175 0.3495 1.7600 -165 1089 0.0367 0.3325 1.7600 -165 1090 0.0909 0.3168 1.7600 -165 1091 0.1418 0.3058 1.7600 -165 1092 0.1934 0.3022 1.7600 -165 1093 0.2461 0.3033 1.7600 -165 1094 0.2961 0.3050 1.7600 -165 1095 0.3478 0.3080 1.7600 -165 1096 0.4002 0.3139 1.7600 -165 1097 0.4565 0.3232 1.7600 -165 1098 0.5115 0.3344 1.7600 -165 1099 0.5689 0.3494 1.7600 -165 1100 0.6244 0.3641 1.7600 -165 1101 0.6775 0.3762 1.7600 -165 1102 0.7298 0.3814 1.7600 -165 1103 0.7832 0.3800 1.7600 -165 1104 0.8332 0.3750 1.7600 -165 1105 0.8847 0.3705 1.7600 -165 1106 0.9374 0.3639 1.7600 -165 1107 0.9892 0.3532 1.7600 -165 1108 1.0447 0.3399 1.7600 -165 1109 1.0981 0.3225 1.7600 -165 1110 1.1511 0.3059 1.7600 -165 1111 1.2016 0.2912 1.7600 -165 1112 1.2533 0.2829 1.7600 -165 1113 1.3035 0.2810 1.7600 -165 1114 1.3532 0.2813 1.7600 -165 1115 1.4020 0.2838 1.7600 -165 1116 1.4543 0.2891 1.7600 -165 1117 1.5066 0.3011 1.7600 -165 1118 1.5598 0.3145 1.7600 -165 1119 1.6157 0.3312 1.7600 -165 1120 1.6706 0.3461 1.7600 -165 1121 1.7227 0.3594 1.7600 -165 1122 1.7763 0.3630 1.7600 -165 1123 1.8285 0.3647 1.7600 -165 1124 1.8818 0.3603 1.7600 -165 1125 1.9364 0.3551 1.7600 -165 1126 1.9906 0.3464 1.7600 -165 1127 2.0484 0.3375 1.7600 -165 1128 2.1077 0.3230 1.7600 -165 1129 2.1721 0.3020 1.7600 -165 1130 2.2367 0.2829 1.7600 -165 1131 2.2947 0.2674 1.7600 -165 1132 2.3514 0.2587 1.7600 -165 1133 2.4084 0.2549 1.7600 -165 1134 2.4637 0.2557 1.7600 -165 1135 2.5157 0.2582 1.7600 -165 1136 2.5712 0.2626 1.7600 -165 1137 2.6293 0.2685 1.7600 -165 1138 2.6879 0.2786 1.7600 -165 1139 2.7540 0.2916 1.7600 -165 1140 2.8208 0.3031 1.7600 -165 1141 2.8819 0.3129 1.7600 -165 1142 2.9430 0.3150 1.7600 -165 1143 3.0036 0.3118 1.7600 -165 1144 3.0612 0.3049 1.7600 -165 1145 3.1192 0.2994 1.7600 -165 1146 3.1802 0.2939 1.7600 -165 1147 3.2384 0.2848 1.7600 -165 1148 3.3015 0.2728 1.7600 -165 1149 3.3721 0.2574 1.7600 -165 1150 3.4409 0.2448 1.7600 -165 1151 3.5040 0.2397 1.7600 -165 1152 3.5682 0.2419 1.7600 -165 1153 3.6280 0.2509 1.7600 -165 1154 3.6866 0.2607 1.7600 -165 1155 3.7427 0.2721 1.7600 -165 1156 3.8030 0.2880 1.7600 -165 1157 3.8651 0.3071 1.7600 -165 1158 3.9336 0.3268 1.7600 -165 1159 4.0017 0.3448 1.7600 -165 1160 4.0657 0.3562 1.7600 -165 1161 4.1303 0.3644 1.7600 -165 1162 4.1935 0.3673 1.7600 -165 1163 4.2549 0.3688 1.7600 -165 1164 4.3151 0.3674 1.7600 -165 1165 4.3788 0.3657 1.7600 -165 1166 4.4448 0.3601 1.7600 -165 1167 4.5198 0.3488 1.7600 -165 1168 4.5926 0.3384 1.7600 -165 1169 4.6599 0.3356 1.7600 -165 1170 4.7325 0.3382 1.7600 -165 1171 4.7977 0.3461 1.7600 -165 1172 4.8604 0.3532 1.7600 -165 1173 4.9211 0.3599 1.7600 -165 1174 4.9891 0.3689 1.7600 -165 1175 5.0616 0.3789 1.7600 -165 1176 5.1441 0.3895 1.7600 -165 1177 5.2229 0.3960 1.7600 -165 1178 5.3001 0.3959 1.7600 -165 1179 5.3775 0.3911 1.7600 -165 1180 5.4455 0.3840 1.7600 -165 1181 5.5080 0.3748 1.7600 -165 1182 5.5662 0.3662 1.7600 -165 1183 5.6159 0.3541 1.7600 -165 1184 5.6654 0.3413 1.7600 -165 1185 5.7270 0.3235 1.7600 -165 1186 5.7912 0.3067 1.7600 -165 1187 5.8594 0.2936 1.7600 -165 1188 5.9319 0.2853 1.7600 -166 900 -7.7947 1.6178 1.7600 -166 901 -7.7404 1.6133 1.7600 -166 902 -7.6841 1.6117 1.7600 -166 903 -7.6289 1.6135 1.7600 -166 904 -7.5797 1.6174 1.7600 -166 905 -7.5309 1.6189 1.7600 -166 906 -7.4827 1.6170 1.7600 -166 907 -7.4342 1.6116 1.7600 -166 908 -7.3844 1.6051 1.7600 -166 909 -7.3324 1.5976 1.7600 -166 910 -7.2783 1.5866 1.7600 -166 911 -7.2256 1.5710 1.7600 -166 912 -7.1789 1.5538 1.7600 -166 913 -7.1379 1.5376 1.7600 -166 914 -7.0979 1.5229 1.7600 -166 915 -7.0556 1.5115 1.7600 -166 916 -7.0109 1.5029 1.7600 -166 917 -6.9640 1.4949 1.7600 -166 918 -6.9136 1.4870 1.7600 -166 919 -6.8595 1.4807 1.7600 -166 920 -6.8048 1.4782 1.7600 -166 921 -6.7525 1.4752 1.7600 -166 922 -6.7072 1.4765 1.7600 -166 923 -6.6597 1.4780 1.7600 -166 924 -6.6079 1.4729 1.7600 -166 925 -6.5518 1.4634 1.7600 -166 926 -6.4940 1.4555 1.7600 -166 927 -6.4379 1.4481 1.7600 -166 928 -6.3822 1.4362 1.7600 -166 929 -6.3285 1.4192 1.7600 -166 930 -6.2795 1.3987 1.7600 -166 931 -6.2355 1.3779 1.7600 -166 932 -6.1886 1.3559 1.7600 -166 933 -6.1387 1.3395 1.7600 -166 934 -6.0910 1.3276 1.7600 -166 935 -6.0408 1.3180 1.7600 -166 936 -5.9866 1.3076 1.7600 -166 937 -5.9338 1.2994 1.7600 -166 938 -5.8781 1.2932 1.7600 -166 939 -5.8252 1.2898 1.7600 -166 940 -5.7731 1.2880 1.7600 -166 941 -5.7272 1.2823 1.7600 -166 942 -5.6786 1.2743 1.7600 -166 943 -5.6279 1.2606 1.7600 -166 944 -5.5816 1.2456 1.7600 -166 945 -5.5358 1.2302 1.7600 -166 946 -5.4924 1.2128 1.7600 -166 947 -5.4564 1.1960 1.7600 -166 948 -5.4210 1.1791 1.7600 -166 949 -5.3887 1.1639 1.7600 -166 950 -5.3529 1.1490 1.7600 -166 951 -5.3158 1.1370 1.7600 -166 952 -5.2779 1.1255 1.7600 -166 953 -5.2401 1.1177 1.7600 -166 954 -5.2017 1.1069 1.7600 -166 955 -5.1609 1.1011 1.7600 -166 956 -5.1233 1.0959 1.7600 -166 957 -5.0887 1.0974 1.7600 -166 958 -5.0538 1.0997 1.7600 -166 959 -5.0144 1.0975 1.7600 -166 960 -4.9710 1.0907 1.7600 -166 961 -4.9332 1.0842 1.7600 -166 962 -4.8992 1.0763 1.7600 -166 963 -4.8668 1.0657 1.7600 -166 964 -4.8336 1.0509 1.7600 -166 965 -4.8023 1.0345 1.7600 -166 966 -4.7714 1.0185 1.7600 -166 967 -4.7417 0.9995 1.7600 -166 968 -4.7119 0.9846 1.7600 -166 969 -4.6815 0.9710 1.7600 -166 970 -4.6484 0.9624 1.7600 -166 971 -4.6183 0.9514 1.7600 -166 972 -4.5917 0.9408 1.7600 -166 973 -4.5671 0.9307 1.7600 -166 974 -4.5396 0.9210 1.7600 -166 975 -4.5076 0.9107 1.7600 -166 976 -4.4728 0.8980 1.7600 -166 977 -4.4353 0.8834 1.7600 -166 978 -4.3929 0.8709 1.7600 -166 979 -4.3516 0.8535 1.7600 -166 980 -4.3136 0.8332 1.7600 -166 981 -4.2755 0.8141 1.7600 -166 982 -4.2397 0.7958 1.7600 -166 983 -4.2059 0.7821 1.7600 -166 984 -4.1742 0.7707 1.7600 -166 985 -4.1414 0.7647 1.7600 -166 986 -4.1100 0.7589 1.7600 -166 987 -4.0727 0.7583 1.7600 -166 988 -4.0352 0.7578 1.7600 -166 989 -3.9990 0.7589 1.7600 -166 990 -3.9556 0.7602 1.7600 -166 991 -3.9135 0.7588 1.7600 -166 992 -3.8694 0.7520 1.7600 -166 993 -3.8262 0.7436 1.7600 -166 994 -3.7832 0.7415 1.7600 -166 995 -3.7415 0.7377 1.7600 -166 996 -3.7005 0.7423 1.7600 -166 997 -3.6560 0.7510 1.7600 -166 998 -3.6176 0.7608 1.7600 -166 999 -3.5790 0.7691 1.7600 -166 1000 -3.5342 0.7722 1.7600 -166 1001 -3.4885 0.7725 1.7600 -166 1002 -3.4400 0.7672 1.7600 -166 1003 -3.3998 0.7580 1.7600 -166 1004 -3.3618 0.7408 1.7600 -166 1005 -3.3205 0.7245 1.7600 -166 1006 -3.2827 0.7158 1.7600 -166 1007 -3.2453 0.7100 1.7600 -166 1008 -3.2118 0.7048 1.7600 -166 1009 -3.1839 0.7007 1.7600 -166 1010 -3.1639 0.6962 1.7600 -166 1011 -3.1404 0.6932 1.7600 -166 1012 -3.1160 0.6932 1.7600 -166 1013 -3.0898 0.6969 1.7600 -166 1014 -3.0574 0.7001 1.7600 -166 1015 -3.0164 0.6953 1.7600 -166 1016 -2.9728 0.6888 1.7600 -166 1017 -2.9313 0.6795 1.7600 -166 1018 -2.8971 0.6731 1.7600 -166 1019 -2.8621 0.6672 1.7600 -166 1020 -2.8307 0.6631 1.7600 -166 1021 -2.7952 0.6613 1.7600 -166 1022 -2.7553 0.6607 1.7600 -166 1023 -2.7148 0.6642 1.7600 -166 1024 -2.6740 0.6678 1.7600 -166 1025 -2.6335 0.6744 1.7600 -166 1026 -2.5915 0.6819 1.7600 -166 1027 -2.5492 0.6896 1.7600 -166 1028 -2.5046 0.6912 1.7600 -166 1029 -2.4601 0.6923 1.7600 -166 1030 -2.4160 0.6927 1.7600 -166 1031 -2.3681 0.6900 1.7600 -166 1032 -2.3212 0.6853 1.7600 -166 1033 -2.2742 0.6777 1.7600 -166 1034 -2.2288 0.6730 1.7600 -166 1035 -2.1871 0.6704 1.7600 -166 1036 -2.1432 0.6713 1.7600 -166 1037 -2.0986 0.6767 1.7600 -166 1038 -2.0555 0.6802 1.7600 -166 1039 -2.0121 0.6913 1.7600 -166 1040 -1.9709 0.7009 1.7600 -166 1041 -1.9301 0.7127 1.7600 -166 1042 -1.8876 0.7238 1.7600 -166 1043 -1.8403 0.7295 1.7600 -166 1044 -1.7915 0.7284 1.7600 -166 1045 -1.7429 0.7254 1.7600 -166 1046 -1.6891 0.7219 1.7600 -166 1047 -1.6297 0.7202 1.7600 -166 1048 -1.5734 0.7171 1.7600 -166 1049 -1.5165 0.7100 1.7600 -166 1050 -1.4561 0.6943 1.7600 -166 1051 -1.3985 0.6805 1.7600 -166 1052 -1.3424 0.6735 1.7600 -166 1053 -1.2842 0.6747 1.7600 -166 1054 -1.2256 0.6819 1.7600 -166 1055 -1.1680 0.6916 1.7600 -166 1056 -1.1116 0.7047 1.7600 -166 1057 -1.0554 0.7203 1.7600 -166 1058 -1.0006 0.7430 1.7600 -166 1059 -0.9472 0.7607 1.7600 -166 1060 -0.8909 0.7683 1.7600 -166 1061 -0.8362 0.7660 1.7600 -166 1062 -0.7788 0.7600 1.7600 -166 1063 -0.7188 0.7513 1.7600 -166 1064 -0.6534 0.7407 1.7600 -166 1065 -0.5881 0.7264 1.7600 -166 1066 -0.5274 0.7088 1.7600 -166 1067 -0.4736 0.6877 1.7600 -166 1068 -0.4257 0.6689 1.7600 -166 1069 -0.3772 0.6587 1.7600 -166 1070 -0.3323 0.6558 1.7600 -166 1071 -0.2883 0.6611 1.7600 -166 1072 -0.2399 0.6681 1.7600 -166 1073 -0.1860 0.6800 1.7600 -166 1074 -0.1249 0.6945 1.7600 -166 1075 -0.0598 0.7092 1.7600 -166 1076 0.0063 0.7253 1.7600 -166 1077 0.0755 0.7397 1.7600 -166 1078 0.1421 0.7419 1.7600 -166 1079 0.2057 0.7353 1.7600 -166 1080 0.2717 0.7258 1.7600 -166 1081 0.3379 0.7127 1.7600 -166 1082 0.3945 0.6997 1.7600 -166 1083 0.4406 0.6833 1.7600 -166 1084 0.4887 0.6714 1.7600 -166 1085 0.5337 0.6604 1.7600 -166 1086 0.5814 0.6545 1.7600 -166 1087 0.6315 0.6501 1.7600 -166 1088 0.6848 0.6484 1.7600 -166 1089 0.7426 0.6447 1.7600 -166 1090 0.8054 0.6432 1.7600 -166 1091 0.8633 0.6470 1.7600 -166 1092 0.9245 0.6586 1.7600 -166 1093 0.9888 0.6723 1.7600 -166 1094 1.0572 0.6805 1.7600 -166 1095 1.1259 0.6843 1.7600 -166 1096 1.1897 0.6819 1.7600 -166 1097 1.2517 0.6797 1.7600 -166 1098 1.3114 0.6775 1.7600 -166 1099 1.3646 0.6710 1.7600 -166 1100 1.4144 0.6636 1.7600 -166 1101 1.4580 0.6525 1.7600 -166 1102 1.5008 0.6445 1.7600 -166 1103 1.5412 0.6420 1.7600 -166 1104 1.5785 0.6420 1.7600 -166 1105 1.6188 0.6422 1.7600 -166 1106 1.6586 0.6439 1.7600 -166 1107 1.7007 0.6471 1.7600 -166 1108 1.7457 0.6567 1.7600 -166 1109 1.7904 0.6667 1.7600 -166 1110 1.8404 0.6804 1.7600 -166 1111 1.8884 0.6896 1.7600 -166 1112 1.9382 0.6938 1.7600 -166 1113 1.9875 0.6920 1.7600 -166 1114 2.0407 0.6948 1.7600 -166 1115 2.0979 0.6928 1.7600 -166 1116 2.1548 0.6893 1.7600 -166 1117 2.2106 0.6811 1.7600 -166 1118 2.2652 0.6672 1.7600 -166 1119 2.3212 0.6503 1.7600 -166 1120 2.3766 0.6400 1.7600 -166 1121 2.4279 0.6396 1.7600 -166 1122 2.4782 0.6462 1.7600 -166 1123 2.5266 0.6553 1.7600 -166 1124 2.5783 0.6606 1.7600 -166 1125 2.6311 0.6673 1.7600 -166 1126 2.6852 0.6698 1.7600 -166 1127 2.7431 0.6674 1.7600 -166 1128 2.8026 0.6714 1.7600 -166 1129 2.8590 0.6786 1.7600 -166 1130 2.9178 0.6855 1.7600 -166 1131 2.9752 0.6941 1.7600 -166 1132 3.0337 0.6987 1.7600 -166 1133 3.0907 0.7020 1.7600 -166 1134 3.1482 0.7056 1.7600 -166 1135 3.2032 0.7040 1.7600 -166 1136 3.2618 0.6992 1.7600 -166 1137 3.3206 0.6932 1.7600 -166 1138 3.3831 0.6891 1.7600 -166 1139 3.4464 0.6873 1.7600 -166 1140 3.5115 0.6880 1.7600 -166 1141 3.5729 0.6910 1.7600 -166 1142 3.6291 0.6938 1.7600 -166 1143 3.6848 0.7000 1.7600 -166 1144 3.7408 0.7087 1.7600 -166 1145 3.8037 0.7195 1.7600 -166 1146 3.8702 0.7324 1.7600 -166 1147 3.9407 0.7362 1.7600 -166 1148 4.0134 0.7264 1.7600 -166 1149 4.0877 0.7182 1.7600 -166 1150 4.1551 0.7181 1.7600 -166 1151 4.2192 0.7215 1.7600 -166 1152 4.2815 0.7191 1.7600 -166 1153 4.3519 0.7140 1.7600 -166 1154 4.4274 0.7060 1.7600 -166 1155 4.5064 0.7043 1.7600 -166 1156 4.5800 0.7109 1.7600 -166 1157 4.6487 0.7208 1.7600 -166 1158 4.7127 0.7344 1.7600 -166 1159 4.7737 0.7473 1.7600 -166 1160 4.8382 0.7619 1.7600 -166 1161 4.9024 0.7771 1.7600 -166 1162 4.9737 0.7876 1.7600 -166 1163 5.0544 0.7942 1.7600 -166 1164 5.1380 0.7925 1.7600 -166 1165 5.2147 0.7865 1.7600 -166 1166 5.2837 0.7798 1.7600 -166 1167 5.3530 0.7719 1.7600 -166 1168 5.4244 0.7609 1.7600 -166 1169 5.5007 0.7471 1.7600 -166 1170 5.5790 0.7343 1.7600 -166 1171 5.6629 0.7288 1.7600 -166 1172 5.7434 0.7297 1.7600 -166 1173 5.8176 0.7316 1.7600 -166 1174 5.8861 0.7332 1.7600 -166 1175 5.9493 0.7360 1.7600 -167 909 -7.8227 1.8485 1.7600 -167 910 -7.7573 1.8358 1.7600 -167 911 -7.6957 1.8148 1.7600 -167 912 -7.6366 1.7910 1.7600 -167 913 -7.5809 1.7743 1.7600 -167 914 -7.5240 1.7660 1.7600 -167 915 -7.4659 1.7646 1.7600 -167 916 -7.4078 1.7663 1.7600 -167 917 -7.3476 1.7677 1.7600 -167 918 -7.2835 1.7690 1.7600 -167 919 -7.2171 1.7724 1.7600 -167 920 -7.1518 1.7796 1.7600 -167 921 -7.0943 1.7906 1.7600 -167 922 -7.0446 1.8052 1.7600 -167 923 -6.9954 1.8137 1.7600 -167 924 -6.9444 1.8142 1.7600 -167 925 -6.8986 1.8118 1.7600 -167 926 -6.8534 1.8088 1.7600 -167 927 -6.8034 1.8037 1.7600 -167 928 -6.7486 1.7967 1.7600 -167 929 -6.6920 1.7831 1.7600 -167 930 -6.6341 1.7640 1.7600 -167 931 -6.5785 1.7411 1.7600 -167 932 -6.5262 1.7229 1.7600 -167 933 -6.4723 1.7114 1.7600 -167 934 -6.4196 1.7031 1.7600 -167 935 -6.3661 1.7025 1.7600 -167 936 -6.3126 1.7020 1.7600 -167 937 -6.2537 1.6998 1.7600 -167 938 -6.1931 1.6972 1.7600 -167 939 -6.1344 1.6947 1.7600 -167 940 -6.0782 1.6924 1.7600 -167 941 -6.0260 1.6923 1.7600 -167 942 -5.9799 1.6960 1.7600 -167 943 -5.9339 1.6929 1.7600 -167 944 -5.8896 1.6837 1.7600 -167 945 -5.8440 1.6787 1.7600 -167 946 -5.8030 1.6724 1.7600 -167 947 -5.7599 1.6645 1.7600 -167 948 -5.7121 1.6514 1.7600 -167 949 -5.6676 1.6339 1.7600 -167 950 -5.6211 1.6127 1.7600 -167 951 -5.5739 1.5894 1.7600 -167 952 -5.5281 1.5672 1.7600 -167 953 -5.4800 1.5445 1.7600 -167 954 -5.4279 1.5255 1.7600 -167 955 -5.3761 1.5126 1.7600 -167 956 -5.3315 1.5061 1.7600 -167 957 -5.2900 1.4961 1.7600 -167 958 -5.2469 1.4842 1.7600 -167 959 -5.2023 1.4674 1.7600 -167 960 -5.1546 1.4542 1.7600 -167 961 -5.1080 1.4433 1.7600 -167 962 -5.0632 1.4378 1.7600 -167 963 -5.0223 1.4371 1.7600 -167 964 -4.9845 1.4312 1.7600 -167 965 -4.9408 1.4217 1.7600 -167 966 -4.8947 1.4102 1.7600 -167 967 -4.8504 1.3984 1.7600 -167 968 -4.8111 1.3892 1.7600 -167 969 -4.7722 1.3769 1.7600 -167 970 -4.7246 1.3612 1.7600 -167 971 -4.6787 1.3355 1.7600 -167 972 -4.6396 1.3032 1.7600 -167 973 -4.6038 1.2713 1.7600 -167 974 -4.5633 1.2439 1.7600 -167 975 -4.5216 1.2209 1.7600 -167 976 -4.4830 1.2058 1.7600 -167 977 -4.4503 1.1937 1.7600 -167 978 -4.4209 1.1832 1.7600 -167 979 -4.3902 1.1757 1.7600 -167 980 -4.3538 1.1693 1.7600 -167 981 -4.3173 1.1640 1.7600 -167 982 -4.2802 1.1643 1.7600 -167 983 -4.2437 1.1652 1.7600 -167 984 -4.2088 1.1698 1.7600 -167 985 -4.1709 1.1736 1.7600 -167 986 -4.1339 1.1801 1.7600 -167 987 -4.0937 1.1860 1.7600 -167 988 -4.0520 1.1896 1.7600 -167 989 -4.0114 1.1906 1.7600 -167 990 -3.9689 1.1910 1.7600 -167 991 -3.9306 1.1924 1.7600 -167 992 -3.8914 1.1955 1.7600 -167 993 -3.8533 1.1958 1.7600 -167 994 -3.8176 1.1890 1.7600 -167 995 -3.7839 1.1730 1.7600 -167 996 -3.7490 1.1504 1.7600 -167 997 -3.7165 1.1284 1.7600 -167 998 -3.6769 1.1093 1.7600 -167 999 -3.6325 1.0935 1.7600 -167 1000 -3.5837 1.0859 1.7600 -167 1001 -3.5354 1.0828 1.7600 -167 1002 -3.4911 1.0807 1.7600 -167 1003 -3.4417 1.0793 1.7600 -167 1004 -3.3922 1.0804 1.7600 -167 1005 -3.3371 1.0849 1.7600 -167 1006 -3.2810 1.0938 1.7600 -167 1007 -3.2258 1.1015 1.7600 -167 1008 -3.1812 1.1105 1.7600 -167 1009 -3.1421 1.1161 1.7600 -167 1010 -3.0965 1.1173 1.7600 -167 1011 -3.0500 1.1140 1.7600 -167 1012 -3.0035 1.1095 1.7600 -167 1013 -2.9561 1.0997 1.7600 -167 1014 -2.9112 1.0901 1.7600 -167 1015 -2.8677 1.0780 1.7600 -167 1016 -2.8295 1.0648 1.7600 -167 1017 -2.7926 1.0531 1.7600 -167 1018 -2.7502 1.0463 1.7600 -167 1019 -2.7024 1.0431 1.7600 -167 1020 -2.6437 1.0390 1.7600 -167 1021 -2.5898 1.0448 1.7600 -167 1022 -2.5421 1.0517 1.7600 -167 1023 -2.4934 1.0547 1.7600 -167 1024 -2.4447 1.0654 1.7600 -167 1025 -2.3958 1.0769 1.7600 -167 1026 -2.3462 1.0964 1.7600 -167 1027 -2.2895 1.1193 1.7600 -167 1028 -2.2308 1.1455 1.7600 -167 1029 -2.1793 1.1626 1.7600 -167 1030 -2.1251 1.1660 1.7600 -167 1031 -2.0717 1.1564 1.7600 -167 1032 -2.0310 1.1494 1.7600 -167 1033 -1.9966 1.1496 1.7600 -167 1034 -1.9582 1.1490 1.7600 -167 1035 -1.9222 1.1460 1.7600 -167 1036 -1.8868 1.1357 1.7600 -167 1037 -1.8477 1.1154 1.7600 -167 1038 -1.8052 1.0900 1.7600 -167 1039 -1.7632 1.0596 1.7600 -167 1040 -1.7183 1.0355 1.7600 -167 1041 -1.6676 1.0204 1.7600 -167 1042 -1.6174 1.0203 1.7600 -167 1043 -1.5709 1.0309 1.7600 -167 1044 -1.5238 1.0435 1.7600 -167 1045 -1.4768 1.0552 1.7600 -167 1046 -1.4294 1.0716 1.7600 -167 1047 -1.3788 1.0949 1.7600 -167 1048 -1.3232 1.1216 1.7600 -167 1049 -1.2690 1.1478 1.7600 -167 1050 -1.2177 1.1726 1.7600 -167 1051 -1.1573 1.1872 1.7600 -167 1052 -1.0909 1.1905 1.7600 -167 1053 -1.0369 1.1882 1.7600 -167 1054 -0.9928 1.1837 1.7600 -167 1055 -0.9461 1.1802 1.7600 -167 1056 -0.8947 1.1734 1.7600 -167 1057 -0.8360 1.1595 1.7600 -167 1058 -0.7767 1.1392 1.7600 -167 1059 -0.7210 1.1139 1.7600 -167 1060 -0.6728 1.0961 1.7600 -167 1061 -0.6250 1.0883 1.7600 -167 1062 -0.5783 1.0868 1.7600 -167 1063 -0.5418 1.0938 1.7600 -167 1064 -0.5065 1.0962 1.7600 -167 1065 -0.4667 1.0959 1.7600 -167 1066 -0.4190 1.0919 1.7600 -167 1067 -0.3609 1.0940 1.7600 -167 1068 -0.2957 1.1007 1.7600 -167 1069 -0.2308 1.1097 1.7600 -167 1070 -0.1759 1.1247 1.7600 -167 1071 -0.1274 1.1364 1.7600 -167 1072 -0.0825 1.1378 1.7600 -167 1073 -0.0409 1.1353 1.7600 -167 1074 -0.0049 1.1374 1.7600 -167 1075 0.0368 1.1432 1.7600 -167 1076 0.0817 1.1488 1.7600 -167 1077 0.1316 1.1498 1.7600 -167 1078 0.1848 1.1414 1.7600 -167 1079 0.2380 1.1269 1.7600 -167 1080 0.2876 1.1044 1.7600 -167 1081 0.3396 1.0839 1.7600 -167 1082 0.3965 1.0651 1.7600 -167 1083 0.4509 1.0569 1.7600 -167 1084 0.4990 1.0621 1.7600 -167 1085 0.5364 1.0764 1.7600 -167 1086 0.5785 1.0865 1.7600 -167 1087 0.6258 1.0949 1.7600 -167 1088 0.6783 1.1015 1.7600 -167 1089 0.7339 1.1100 1.7600 -167 1090 0.7953 1.1240 1.7600 -167 1091 0.8610 1.1400 1.7600 -167 1092 0.9244 1.1564 1.7600 -167 1093 0.9902 1.1655 1.7600 -167 1094 1.0546 1.1618 1.7600 -167 1095 1.1173 1.1542 1.7600 -167 1096 1.1741 1.1465 1.7600 -167 1097 1.2284 1.1438 1.7600 -167 1098 1.2859 1.1371 1.7600 -167 1099 1.3401 1.1261 1.7600 -167 1100 1.3973 1.1089 1.7600 -167 1101 1.4585 1.0848 1.7600 -167 1102 1.5166 1.0655 1.7600 -167 1103 1.5690 1.0576 1.7600 -167 1104 1.6277 1.0532 1.7600 -167 1105 1.6900 1.0596 1.7600 -167 1106 1.7492 1.0730 1.7600 -167 1107 1.8103 1.0879 1.7600 -167 1108 1.8722 1.1044 1.7600 -167 1109 1.9320 1.1298 1.7600 -167 1110 1.9951 1.1522 1.7600 -167 1111 2.0578 1.1778 1.7600 -167 1112 2.1182 1.1958 1.7600 -167 1113 2.1756 1.2043 1.7600 -167 1114 2.2280 1.2039 1.7600 -167 1115 2.2727 1.2089 1.7600 -167 1116 2.3156 1.2157 1.7600 -167 1117 2.3580 1.2200 1.7600 -167 1118 2.4022 1.2229 1.7600 -167 1119 2.4526 1.2188 1.7600 -167 1120 2.5060 1.2051 1.7600 -167 1121 2.5557 1.1881 1.7600 -167 1122 2.6076 1.1713 1.7600 -167 1123 2.6678 1.1563 1.7600 -167 1124 2.7310 1.1455 1.7600 -167 1125 2.7963 1.1400 1.7600 -167 1126 2.8565 1.1410 1.7600 -167 1127 2.9137 1.1426 1.7600 -167 1128 2.9649 1.1450 1.7600 -167 1129 3.0153 1.1474 1.7600 -167 1130 3.0759 1.1607 1.7600 -167 1131 3.1477 1.1766 1.7600 -167 1132 3.2185 1.1891 1.7600 -167 1133 3.2764 1.1871 1.7600 -167 1134 3.3275 1.1787 1.7600 -167 1135 3.3825 1.1685 1.7600 -167 1136 3.4370 1.1573 1.7600 -167 1137 3.4874 1.1440 1.7600 -167 1138 3.5358 1.1257 1.7600 -167 1139 3.5902 1.1074 1.7600 -167 1140 3.6543 1.0851 1.7600 -167 1141 3.7236 1.0647 1.7600 -167 1142 3.7858 1.0476 1.7600 -167 1143 3.8489 1.0377 1.7600 -167 1144 3.9170 1.0383 1.7600 -167 1145 3.9845 1.0509 1.7600 -167 1146 4.0501 1.0688 1.7600 -167 1147 4.1143 1.0866 1.7600 -167 1148 4.1803 1.1073 1.7600 -167 1149 4.2463 1.1305 1.7600 -167 1150 4.3205 1.1572 1.7600 -167 1151 4.3928 1.1825 1.7600 -167 1152 4.4545 1.2014 1.7600 -167 1153 4.5137 1.2073 1.7600 -167 1154 4.5729 1.2047 1.7600 -167 1155 4.6292 1.1989 1.7600 -167 1156 4.6792 1.1940 1.7600 -167 1157 4.7252 1.1885 1.7600 -167 1158 4.7693 1.1784 1.7600 -167 1159 4.8219 1.1626 1.7600 -167 1160 4.8888 1.1467 1.7600 -167 1161 4.9546 1.1339 1.7600 -167 1162 5.0224 1.1270 1.7600 -167 1163 5.0869 1.1315 1.7600 -167 1164 5.1511 1.1439 1.7600 -167 1165 5.2088 1.1568 1.7600 -167 1166 5.2658 1.1703 1.7600 -167 1167 5.3186 1.1801 1.7600 -167 1168 5.3739 1.1929 1.7600 -167 1169 5.4330 1.2105 1.7600 -167 1170 5.5084 1.2301 1.7600 -167 1171 5.5784 1.2500 1.7600 -167 1172 5.6433 1.2614 1.7600 -167 1173 5.7123 1.2625 1.7600 -167 1174 5.7799 1.2594 1.7600 -167 1175 5.8463 1.2584 1.7600 -167 1176 5.9162 1.2609 1.7600 -168 932 -7.8050 1.1626 1.7600 -168 933 -7.7654 1.1529 1.7600 -168 934 -7.7248 1.1446 1.7600 -168 935 -7.6786 1.1375 1.7600 -168 936 -7.6292 1.1321 1.7600 -168 937 -7.5755 1.1294 1.7600 -168 938 -7.5194 1.1299 1.7600 -168 939 -7.4721 1.1272 1.7600 -168 940 -7.4242 1.1232 1.7600 -168 941 -7.3755 1.1119 1.7600 -168 942 -7.3259 1.0971 1.7600 -168 943 -7.2800 1.0819 1.7600 -168 944 -7.2302 1.0661 1.7600 -168 945 -7.1760 1.0498 1.7600 -168 946 -7.1191 1.0336 1.7600 -168 947 -7.0625 1.0150 1.7600 -168 948 -7.0114 0.9954 1.7600 -168 949 -6.9618 0.9788 1.7600 -168 950 -6.9134 0.9630 1.7600 -168 951 -6.8565 0.9471 1.7600 -168 952 -6.7987 0.9382 1.7600 -168 953 -6.7402 0.9330 1.7600 -168 954 -6.6857 0.9249 1.7600 -168 955 -6.6281 0.9153 1.7600 -168 956 -6.5696 0.9057 1.7600 -168 957 -6.5080 0.9003 1.7600 -168 958 -6.4477 0.8943 1.7600 -168 959 -6.3892 0.8902 1.7600 -168 960 -6.3345 0.8856 1.7600 -168 961 -6.2809 0.8744 1.7600 -168 962 -6.2322 0.8585 1.7600 -168 963 -6.1872 0.8418 1.7600 -168 964 -6.1401 0.8250 1.7600 -168 965 -6.0954 0.8095 1.7600 -168 966 -6.0476 0.7943 1.7600 -168 967 -6.0022 0.7781 1.7600 -168 968 -5.9553 0.7594 1.7600 -168 969 -5.9169 0.7420 1.7600 -168 970 -5.8805 0.7264 1.7600 -168 971 -5.8375 0.7169 1.7600 -168 972 -5.7953 0.7131 1.7600 -168 973 -5.7565 0.7121 1.7600 -168 974 -5.7174 0.7099 1.7600 -168 975 -5.6754 0.7091 1.7600 -168 976 -5.6303 0.7096 1.7600 -168 977 -5.5865 0.7128 1.7600 -168 978 -5.5410 0.7167 1.7600 -168 979 -5.4973 0.7196 1.7600 -168 980 -5.4546 0.7234 1.7600 -168 981 -5.4171 0.7242 1.7600 -168 982 -5.3793 0.7207 1.7600 -168 983 -5.3481 0.7137 1.7600 -168 984 -5.3199 0.7075 1.7600 -168 985 -5.2871 0.7028 1.7600 -168 986 -5.2543 0.7002 1.7600 -168 987 -5.2204 0.6991 1.7600 -168 988 -5.1860 0.6968 1.7600 -168 989 -5.1530 0.6936 1.7600 -168 990 -5.1221 0.6877 1.7600 -168 991 -5.0924 0.6793 1.7600 -168 992 -5.0642 0.6725 1.7600 -168 993 -5.0360 0.6659 1.7600 -168 994 -5.0038 0.6632 1.7600 -168 995 -4.9712 0.6636 1.7600 -168 996 -4.9404 0.6669 1.7600 -168 997 -4.9054 0.6724 1.7600 -168 998 -4.8627 0.6823 1.7600 -168 999 -4.8195 0.6934 1.7600 -168 1000 -4.7762 0.7094 1.7600 -168 1001 -4.7320 0.7247 1.7600 -168 1002 -4.6899 0.7348 1.7600 -168 1003 -4.6501 0.7381 1.7600 -168 1004 -4.6123 0.7408 1.7600 -168 1005 -4.5761 0.7418 1.7600 -168 1006 -4.5400 0.7428 1.7600 -168 1007 -4.5026 0.7449 1.7600 -168 1008 -4.4747 0.7404 1.7600 -168 1009 -4.4462 0.7321 1.7600 -168 1010 -4.4143 0.7203 1.7600 -168 1011 -4.3791 0.7068 1.7600 -168 1012 -4.3440 0.6930 1.7600 -168 1013 -4.3124 0.6835 1.7600 -168 1014 -4.2729 0.6814 1.7600 -168 1015 -4.2319 0.6808 1.7600 -168 1016 -4.1949 0.6826 1.7600 -168 1017 -4.1552 0.6870 1.7600 -168 1018 -4.1142 0.6925 1.7600 -168 1019 -4.0687 0.6984 1.7600 -168 1020 -4.0227 0.7081 1.7600 -168 1021 -3.9737 0.7175 1.7600 -168 1022 -3.9255 0.7266 1.7600 -168 1023 -3.8808 0.7324 1.7600 -168 1024 -3.8341 0.7365 1.7600 -168 1025 -3.7907 0.7361 1.7600 -168 1026 -3.7486 0.7361 1.7600 -168 1027 -3.7044 0.7336 1.7600 -168 1028 -3.6624 0.7305 1.7600 -168 1029 -3.6200 0.7255 1.7600 -168 1030 -3.5787 0.7181 1.7600 -168 1031 -3.5360 0.7100 1.7600 -168 1032 -3.4957 0.7056 1.7600 -168 1033 -3.4496 0.7045 1.7600 -168 1034 -3.4026 0.7101 1.7600 -168 1035 -3.3552 0.7180 1.7600 -168 1036 -3.3095 0.7277 1.7600 -168 1037 -3.2640 0.7411 1.7600 -168 1038 -3.2178 0.7545 1.7600 -168 1039 -3.1755 0.7638 1.7600 -168 1040 -3.1336 0.7707 1.7600 -168 1041 -3.0911 0.7747 1.7600 -168 1042 -3.0487 0.7762 1.7600 -168 1043 -3.0067 0.7748 1.7600 -168 1044 -2.9643 0.7695 1.7600 -168 1045 -2.9223 0.7593 1.7600 -168 1046 -2.8800 0.7446 1.7600 -168 1047 -2.8372 0.7291 1.7600 -168 1048 -2.7999 0.7146 1.7600 -168 1049 -2.7624 0.7062 1.7600 -168 1050 -2.7244 0.7035 1.7600 -168 1051 -2.6926 0.7051 1.7600 -168 1052 -2.6592 0.7068 1.7600 -168 1053 -2.6230 0.7095 1.7600 -168 1054 -2.5849 0.7168 1.7600 -168 1055 -2.5425 0.7283 1.7600 -168 1056 -2.4956 0.7415 1.7600 -168 1057 -2.4487 0.7547 1.7600 -168 1058 -2.4070 0.7668 1.7600 -168 1059 -2.3642 0.7734 1.7600 -168 1060 -2.3198 0.7733 1.7600 -168 1061 -2.2773 0.7705 1.7600 -168 1062 -2.2341 0.7683 1.7600 -168 1063 -2.1908 0.7640 1.7600 -168 1064 -2.1492 0.7606 1.7600 -168 1065 -2.1064 0.7566 1.7600 -168 1066 -2.0616 0.7505 1.7600 -168 1067 -2.0112 0.7443 1.7600 -168 1068 -1.9589 0.7397 1.7600 -168 1069 -1.9091 0.7360 1.7600 -168 1070 -1.8579 0.7342 1.7600 -168 1071 -1.8082 0.7366 1.7600 -168 1072 -1.7615 0.7404 1.7600 -168 1073 -1.7126 0.7429 1.7600 -168 1074 -1.6612 0.7451 1.7600 -168 1075 -1.6072 0.7488 1.7600 -168 1076 -1.5493 0.7543 1.7600 -168 1077 -1.4867 0.7612 1.7600 -168 1078 -1.4201 0.7673 1.7600 -168 1079 -1.3605 0.7710 1.7600 -168 1080 -1.3090 0.7689 1.7600 -168 1081 -1.2570 0.7623 1.7600 -168 1082 -1.2070 0.7529 1.7600 -168 1083 -1.1573 0.7441 1.7600 -168 1084 -1.1055 0.7366 1.7600 -168 1085 -1.0506 0.7292 1.7600 -168 1086 -0.9934 0.7204 1.7600 -168 1087 -0.9344 0.7087 1.7600 -168 1088 -0.8724 0.6957 1.7600 -168 1089 -0.8133 0.6848 1.7600 -168 1090 -0.7567 0.6793 1.7600 -168 1091 -0.7009 0.6817 1.7600 -168 1092 -0.6439 0.6884 1.7600 -168 1093 -0.5873 0.6949 1.7600 -168 1094 -0.5301 0.7018 1.7600 -168 1095 -0.4688 0.7089 1.7600 -168 1096 -0.4059 0.7171 1.7600 -168 1097 -0.3408 0.7270 1.7600 -168 1098 -0.2768 0.7386 1.7600 -168 1099 -0.2239 0.7498 1.7600 -168 1100 -0.1672 0.7540 1.7600 -168 1101 -0.1091 0.7518 1.7600 -168 1102 -0.0540 0.7458 1.7600 -168 1103 0.0000 0.7421 1.7600 -168 1104 0.0557 0.7395 1.7600 -168 1105 0.1185 0.7350 1.7600 -168 1106 0.1791 0.7301 1.7600 -168 1107 0.2454 0.7212 1.7600 -168 1108 0.3071 0.7145 1.7600 -168 1109 0.3602 0.7057 1.7600 -168 1110 0.4095 0.7023 1.7600 -168 1111 0.4577 0.7018 1.7600 -168 1112 0.5038 0.7050 1.7600 -168 1113 0.5503 0.7087 1.7600 -168 1114 0.5915 0.7106 1.7600 -168 1115 0.6332 0.7094 1.7600 -168 1116 0.6731 0.7094 1.7600 -168 1117 0.7177 0.7101 1.7600 -168 1118 0.7615 0.7149 1.7600 -168 1119 0.8020 0.7241 1.7600 -168 1120 0.8453 0.7310 1.7600 -168 1121 0.8917 0.7329 1.7600 -168 1122 0.9408 0.7339 1.7600 -168 1123 0.9947 0.7397 1.7600 -168 1124 1.0506 0.7486 1.7600 -168 1125 1.1104 0.7546 1.7600 -168 1126 1.1671 0.7545 1.7600 -168 1127 1.2106 0.7500 1.7600 -168 1128 1.2580 0.7420 1.7600 -168 1129 1.3118 0.7398 1.7600 -168 1130 1.3691 0.7397 1.7600 -168 1131 1.4289 0.7438 1.7600 -168 1132 1.4844 0.7499 1.7600 -168 1133 1.5302 0.7555 1.7600 -168 1134 1.5757 0.7640 1.7600 -168 1135 1.6249 0.7723 1.7600 -168 1136 1.6762 0.7828 1.7600 -168 1137 1.7312 0.7929 1.7600 -168 1138 1.7893 0.8055 1.7600 -168 1139 1.8501 0.8195 1.7600 -168 1140 1.9060 0.8322 1.7600 -168 1141 1.9620 0.8374 1.7600 -168 1142 2.0201 0.8393 1.7600 -168 1143 2.0741 0.8382 1.7600 -168 1144 2.1296 0.8365 1.7600 -168 1145 2.1840 0.8335 1.7600 -168 1146 2.2384 0.8294 1.7600 -168 1147 2.2935 0.8242 1.7600 -168 1148 2.3534 0.8202 1.7600 -168 1149 2.4109 0.8150 1.7600 -168 1150 2.4613 0.8134 1.7600 -168 1151 2.5134 0.8116 1.7600 -168 1152 2.5670 0.8110 1.7600 -168 1153 2.6189 0.8136 1.7600 -168 1154 2.6722 0.8156 1.7600 -168 1155 2.7256 0.8187 1.7600 -168 1156 2.7815 0.8232 1.7600 -168 1157 2.8424 0.8294 1.7600 -168 1158 2.9041 0.8367 1.7600 -168 1159 2.9652 0.8420 1.7600 -168 1160 3.0231 0.8426 1.7600 -168 1161 3.0834 0.8360 1.7600 -168 1162 3.1384 0.8271 1.7600 -168 1163 3.1901 0.8156 1.7600 -168 1164 3.2398 0.8053 1.7600 -168 1165 3.2865 0.7928 1.7600 -168 1166 3.3342 0.7797 1.7600 -168 1167 3.3845 0.7641 1.7600 -168 1168 3.4320 0.7543 1.7600 -168 1169 3.4779 0.7493 1.7600 -168 1170 3.5297 0.7521 1.7600 -168 1171 3.5772 0.7610 1.7600 -168 1172 3.6276 0.7702 1.7600 -168 1173 3.6792 0.7778 1.7600 -168 1174 3.7294 0.7897 1.7600 -168 1175 3.7842 0.7995 1.7600 -168 1176 3.8452 0.8125 1.7600 -168 1177 3.9094 0.8238 1.7600 -168 1178 3.9692 0.8351 1.7600 -168 1179 4.0280 0.8387 1.7600 -168 1180 4.0893 0.8384 1.7600 -168 1181 4.1485 0.8348 1.7600 -168 1182 4.2071 0.8329 1.7600 -168 1183 4.2650 0.8291 1.7600 -168 1184 4.3218 0.8244 1.7600 -168 1185 4.3860 0.8173 1.7600 -168 1186 4.4593 0.8087 1.7600 -168 1187 4.5309 0.8011 1.7600 -168 1188 4.5956 0.7958 1.7600 -168 1189 4.6623 0.7930 1.7600 -168 1190 4.7263 0.7923 1.7600 -168 1191 4.7879 0.7930 1.7600 -168 1192 4.8493 0.7914 1.7600 -168 1193 4.9094 0.7901 1.7600 -168 1194 4.9744 0.7897 1.7600 -168 1195 5.0474 0.7890 1.7600 -168 1196 5.1208 0.7889 1.7600 -168 1197 5.1895 0.7855 1.7600 -168 1198 5.2577 0.7772 1.7600 -168 1199 5.3235 0.7699 1.7600 -168 1200 5.3868 0.7645 1.7600 -168 1201 5.4485 0.7607 1.7600 -168 1202 5.5097 0.7552 1.7600 -168 1203 5.5719 0.7448 1.7600 -168 1204 5.6419 0.7318 1.7600 -168 1205 5.7133 0.7166 1.7600 -168 1206 5.7861 0.7044 1.7600 -168 1207 5.8590 0.6974 1.7600 -168 1208 5.9252 0.6951 1.7600 -169 922 -7.7815 2.1839 1.7600 -169 923 -7.7244 2.1727 1.7600 -169 924 -7.6670 2.1646 1.7600 -169 925 -7.6101 2.1588 1.7600 -169 926 -7.5531 2.1543 1.7600 -169 927 -7.4937 2.1504 1.7600 -169 928 -7.4334 2.1471 1.7600 -169 929 -7.3720 2.1432 1.7600 -169 930 -7.3110 2.1407 1.7600 -169 931 -7.2516 2.1421 1.7600 -169 932 -7.1959 2.1465 1.7600 -169 933 -7.1440 2.1504 1.7600 -169 934 -7.0942 2.1520 1.7600 -169 935 -7.0457 2.1507 1.7600 -169 936 -6.9965 2.1454 1.7600 -169 937 -6.9477 2.1399 1.7600 -169 938 -6.8954 2.1309 1.7600 -169 939 -6.8391 2.1190 1.7600 -169 940 -6.7834 2.1032 1.7600 -169 941 -6.7271 2.0866 1.7600 -169 942 -6.6710 2.0644 1.7600 -169 943 -6.6156 2.0426 1.7600 -169 944 -6.5625 2.0209 1.7600 -169 945 -6.5144 2.0021 1.7600 -169 946 -6.4635 1.9898 1.7600 -169 947 -6.4146 1.9770 1.7600 -169 948 -6.3669 1.9674 1.7600 -169 949 -6.3194 1.9594 1.7600 -169 950 -6.2685 1.9490 1.7600 -169 951 -6.2145 1.9433 1.7600 -169 952 -6.1591 1.9374 1.7600 -169 953 -6.1070 1.9348 1.7600 -169 954 -6.0544 1.9368 1.7600 -169 955 -6.0033 1.9376 1.7600 -169 956 -5.9543 1.9388 1.7600 -169 957 -5.9051 1.9360 1.7600 -169 958 -5.8602 1.9314 1.7600 -169 959 -5.8127 1.9234 1.7600 -169 960 -5.7666 1.9119 1.7600 -169 961 -5.7202 1.8987 1.7600 -169 962 -5.6703 1.8814 1.7600 -169 963 -5.6242 1.8637 1.7600 -169 964 -5.5773 1.8474 1.7600 -169 965 -5.5371 1.8281 1.7600 -169 966 -5.4964 1.8096 1.7600 -169 967 -5.4566 1.7928 1.7600 -169 968 -5.4129 1.7750 1.7600 -169 969 -5.3695 1.7592 1.7600 -169 970 -5.3283 1.7469 1.7600 -169 971 -5.2871 1.7360 1.7600 -169 972 -5.2470 1.7306 1.7600 -169 973 -5.2046 1.7244 1.7600 -169 974 -5.1606 1.7213 1.7600 -169 975 -5.1137 1.7197 1.7600 -169 976 -5.0699 1.7199 1.7600 -169 977 -5.0247 1.7245 1.7600 -169 978 -4.9806 1.7318 1.7600 -169 979 -4.9367 1.7360 1.7600 -169 980 -4.8957 1.7347 1.7600 -169 981 -4.8527 1.7336 1.7600 -169 982 -4.8101 1.7309 1.7600 -169 983 -4.7714 1.7277 1.7600 -169 984 -4.7338 1.7223 1.7600 -169 985 -4.6926 1.7134 1.7600 -169 986 -4.6495 1.6999 1.7600 -169 987 -4.6069 1.6815 1.7600 -169 988 -4.5638 1.6595 1.7600 -169 989 -4.5190 1.6377 1.7600 -169 990 -4.4735 1.6155 1.7600 -169 991 -4.4307 1.5949 1.7600 -169 992 -4.3915 1.5755 1.7600 -169 993 -4.3504 1.5576 1.7600 -169 994 -4.3092 1.5429 1.7600 -169 995 -4.2708 1.5309 1.7600 -169 996 -4.2292 1.5229 1.7600 -169 997 -4.1892 1.5171 1.7600 -169 998 -4.1463 1.5129 1.7600 -169 999 -4.1003 1.5111 1.7600 -169 1000 -4.0548 1.5107 1.7600 -169 1001 -4.0068 1.5125 1.7600 -169 1002 -3.9564 1.5145 1.7600 -169 1003 -3.9075 1.5201 1.7600 -169 1004 -3.8604 1.5231 1.7600 -169 1005 -3.8162 1.5244 1.7600 -169 1006 -3.7700 1.5239 1.7600 -169 1007 -3.7252 1.5235 1.7600 -169 1008 -3.6833 1.5202 1.7600 -169 1009 -3.6397 1.5152 1.7600 -169 1010 -3.5932 1.5095 1.7600 -169 1011 -3.5433 1.4968 1.7600 -169 1012 -3.4940 1.4857 1.7600 -169 1013 -3.4466 1.4745 1.7600 -169 1014 -3.3976 1.4582 1.7600 -169 1015 -3.3494 1.4449 1.7600 -169 1016 -3.3004 1.4348 1.7600 -169 1017 -3.2543 1.4249 1.7600 -169 1018 -3.2071 1.4200 1.7600 -169 1019 -3.1616 1.4165 1.7600 -169 1020 -3.1191 1.4154 1.7600 -169 1021 -3.0749 1.4155 1.7600 -169 1022 -3.0288 1.4146 1.7600 -169 1023 -2.9813 1.4173 1.7600 -169 1024 -2.9348 1.4232 1.7600 -169 1025 -2.8854 1.4328 1.7600 -169 1026 -2.8320 1.4432 1.7600 -169 1027 -2.7815 1.4539 1.7600 -169 1028 -2.7340 1.4623 1.7600 -169 1029 -2.6874 1.4679 1.7600 -169 1030 -2.6403 1.4720 1.7600 -169 1031 -2.5977 1.4743 1.7600 -169 1032 -2.5545 1.4747 1.7600 -169 1033 -2.5084 1.4723 1.7600 -169 1034 -2.4621 1.4664 1.7600 -169 1035 -2.4141 1.4604 1.7600 -169 1036 -2.3660 1.4489 1.7600 -169 1037 -2.3152 1.4383 1.7600 -169 1038 -2.2623 1.4273 1.7600 -169 1039 -2.2108 1.4175 1.7600 -169 1040 -2.1624 1.4090 1.7600 -169 1041 -2.1106 1.4009 1.7600 -169 1042 -2.0626 1.3967 1.7600 -169 1043 -2.0163 1.3954 1.7600 -169 1044 -1.9711 1.3970 1.7600 -169 1045 -1.9216 1.3974 1.7600 -169 1046 -1.8746 1.4015 1.7600 -169 1047 -1.8242 1.4089 1.7600 -169 1048 -1.7751 1.4182 1.7600 -169 1049 -1.7220 1.4322 1.7600 -169 1050 -1.6662 1.4493 1.7600 -169 1051 -1.6113 1.4621 1.7600 -169 1052 -1.5594 1.4692 1.7600 -169 1053 -1.5123 1.4819 1.7600 -169 1054 -1.4689 1.4938 1.7600 -169 1055 -1.4252 1.4988 1.7600 -169 1056 -1.3787 1.4950 1.7600 -169 1057 -1.3316 1.4930 1.7600 -169 1058 -1.2836 1.4889 1.7600 -169 1059 -1.2356 1.4809 1.7600 -169 1060 -1.1877 1.4696 1.7600 -169 1061 -1.1382 1.4554 1.7600 -169 1062 -1.0929 1.4477 1.7600 -169 1063 -1.0475 1.4377 1.7600 -169 1064 -1.0033 1.4281 1.7600 -169 1065 -0.9592 1.4211 1.7600 -169 1066 -0.9171 1.4162 1.7600 -169 1067 -0.8735 1.4138 1.7600 -169 1068 -0.8281 1.4124 1.7600 -169 1069 -0.7843 1.4126 1.7600 -169 1070 -0.7362 1.4162 1.7600 -169 1071 -0.6864 1.4230 1.7600 -169 1072 -0.6328 1.4328 1.7600 -169 1073 -0.5804 1.4434 1.7600 -169 1074 -0.5280 1.4553 1.7600 -169 1075 -0.4806 1.4646 1.7600 -169 1076 -0.4335 1.4731 1.7600 -169 1077 -0.3879 1.4793 1.7600 -169 1078 -0.3441 1.4826 1.7600 -169 1079 -0.3008 1.4849 1.7600 -169 1080 -0.2543 1.4842 1.7600 -169 1081 -0.2047 1.4816 1.7600 -169 1082 -0.1517 1.4772 1.7600 -169 1083 -0.0968 1.4709 1.7600 -169 1084 -0.0460 1.4585 1.7600 -169 1085 0.0087 1.4444 1.7600 -169 1086 0.0576 1.4288 1.7600 -169 1087 0.1055 1.4169 1.7600 -169 1088 0.1559 1.4101 1.7600 -169 1089 0.2015 1.4067 1.7600 -169 1090 0.2475 1.4044 1.7600 -169 1091 0.2924 1.4067 1.7600 -169 1092 0.3435 1.4102 1.7600 -169 1093 0.3980 1.4131 1.7600 -169 1094 0.4557 1.4172 1.7600 -169 1095 0.5141 1.4255 1.7600 -169 1096 0.5715 1.4338 1.7600 -169 1097 0.6302 1.4449 1.7600 -169 1098 0.6853 1.4566 1.7600 -169 1099 0.7392 1.4672 1.7600 -169 1100 0.7947 1.4742 1.7600 -169 1101 0.8488 1.4809 1.7600 -169 1102 0.9008 1.4867 1.7600 -169 1103 0.9595 1.4885 1.7600 -169 1104 1.0219 1.4850 1.7600 -169 1105 1.0847 1.4804 1.7600 -169 1106 1.1477 1.4731 1.7600 -169 1107 1.2093 1.4653 1.7600 -169 1108 1.2680 1.4547 1.7600 -169 1109 1.3256 1.4456 1.7600 -169 1110 1.3848 1.4426 1.7600 -169 1111 1.4446 1.4411 1.7600 -169 1112 1.5041 1.4429 1.7600 -169 1113 1.5597 1.4454 1.7600 -169 1114 1.6219 1.4496 1.7600 -169 1115 1.6840 1.4550 1.7600 -169 1116 1.7474 1.4656 1.7600 -169 1117 1.8097 1.4788 1.7600 -169 1118 1.8729 1.4923 1.7600 -169 1119 1.9313 1.5032 1.7600 -169 1120 1.9898 1.5118 1.7600 -169 1121 2.0479 1.5152 1.7600 -169 1122 2.1027 1.5180 1.7600 -169 1123 2.1554 1.5182 1.7600 -169 1124 2.2093 1.5136 1.7600 -169 1125 2.2649 1.5080 1.7600 -169 1126 2.3212 1.4989 1.7600 -169 1127 2.3776 1.4861 1.7600 -169 1128 2.4378 1.4717 1.7600 -169 1129 2.4968 1.4588 1.7600 -169 1130 2.5536 1.4497 1.7600 -169 1131 2.6099 1.4421 1.7600 -169 1132 2.6682 1.4385 1.7600 -169 1133 2.7251 1.4353 1.7600 -169 1134 2.7798 1.4338 1.7600 -169 1135 2.8367 1.4342 1.7600 -169 1136 2.8952 1.4383 1.7600 -169 1137 2.9576 1.4418 1.7600 -169 1138 3.0229 1.4513 1.7600 -169 1139 3.0892 1.4650 1.7600 -169 1140 3.1599 1.4781 1.7600 -169 1141 3.2252 1.4905 1.7600 -169 1142 3.2877 1.5006 1.7600 -169 1143 3.3501 1.5053 1.7600 -169 1144 3.4136 1.5104 1.7600 -169 1145 3.4754 1.5110 1.7600 -169 1146 3.5397 1.5107 1.7600 -169 1147 3.6073 1.5105 1.7600 -169 1148 3.6744 1.5112 1.7600 -169 1149 3.7481 1.5120 1.7600 -169 1150 3.8265 1.5139 1.7600 -169 1151 3.9019 1.5171 1.7600 -169 1152 3.9784 1.5243 1.7600 -169 1153 4.0600 1.5328 1.7600 -169 1154 4.1348 1.5458 1.7600 -169 1155 4.2108 1.5585 1.7600 -169 1156 4.2862 1.5741 1.7600 -169 1157 4.3669 1.5932 1.7600 -169 1158 4.4468 1.6142 1.7600 -169 1159 4.5395 1.6389 1.7600 -169 1160 4.6278 1.6626 1.7600 -169 1161 4.7166 1.6843 1.7600 -169 1162 4.8094 1.7057 1.7600 -169 1163 4.8933 1.7185 1.7600 -169 1164 4.9775 1.7287 1.7600 -169 1165 5.0594 1.7338 1.7600 -169 1166 5.1454 1.7408 1.7600 -169 1167 5.2359 1.7483 1.7600 -169 1168 5.3304 1.7567 1.7600 -169 1169 5.4195 1.7647 1.7600 -169 1170 5.5124 1.7776 1.7600 -169 1171 5.6036 1.7941 1.7600 -169 1172 5.6818 1.8100 1.7600 -169 1173 5.7607 1.8300 1.7600 -169 1174 5.8353 1.8491 1.7600 -169 1175 5.9108 1.8694 1.7600 -170 927 -7.7905 1.4328 1.7600 -170 928 -7.7420 1.4168 1.7600 -170 929 -7.6994 1.4027 1.7600 -170 930 -7.6564 1.3935 1.7600 -170 931 -7.6109 1.3862 1.7600 -170 932 -7.5625 1.3784 1.7600 -170 933 -7.5112 1.3732 1.7600 -170 934 -7.4569 1.3741 1.7600 -170 935 -7.4004 1.3823 1.7600 -170 936 -7.3443 1.3934 1.7600 -170 937 -7.2935 1.4030 1.7600 -170 938 -7.2453 1.4056 1.7600 -170 939 -7.1985 1.4013 1.7600 -170 940 -7.1538 1.3938 1.7600 -170 941 -7.1094 1.3873 1.7600 -170 942 -7.0599 1.3803 1.7600 -170 943 -7.0133 1.3721 1.7600 -170 944 -6.9621 1.3618 1.7600 -170 945 -6.9160 1.3481 1.7600 -170 946 -6.8723 1.3345 1.7600 -170 947 -6.8291 1.3251 1.7600 -170 948 -6.7840 1.3154 1.7600 -170 949 -6.7331 1.3096 1.7600 -170 950 -6.6753 1.3075 1.7600 -170 951 -6.6146 1.3052 1.7600 -170 952 -6.5512 1.2997 1.7600 -170 953 -6.4919 1.2947 1.7600 -170 954 -6.4307 1.2940 1.7600 -170 955 -6.3717 1.2943 1.7600 -170 956 -6.3204 1.2954 1.7600 -170 957 -6.2784 1.2973 1.7600 -170 958 -6.2355 1.2945 1.7600 -170 959 -6.1885 1.2875 1.7600 -170 960 -6.1400 1.2764 1.7600 -170 961 -6.0905 1.2628 1.7600 -170 962 -6.0417 1.2481 1.7600 -170 963 -5.9940 1.2336 1.7600 -170 964 -5.9542 1.2146 1.7600 -170 965 -5.9122 1.1968 1.7600 -170 966 -5.8791 1.1836 1.7600 -170 967 -5.8414 1.1700 1.7600 -170 968 -5.7993 1.1603 1.7600 -170 969 -5.7606 1.1532 1.7600 -170 970 -5.7203 1.1428 1.7600 -170 971 -5.6756 1.1367 1.7600 -170 972 -5.6316 1.1335 1.7600 -170 973 -5.5878 1.1301 1.7600 -170 974 -5.5459 1.1300 1.7600 -170 975 -5.5058 1.1344 1.7600 -170 976 -5.4675 1.1372 1.7600 -170 977 -5.4304 1.1319 1.7600 -170 978 -5.3908 1.1227 1.7600 -170 979 -5.3520 1.1123 1.7600 -170 980 -5.3141 1.1021 1.7600 -170 981 -5.2744 1.0933 1.7600 -170 982 -5.2388 1.0801 1.7600 -170 983 -5.2065 1.0663 1.7600 -170 984 -5.1769 1.0555 1.7600 -170 985 -5.1463 1.0512 1.7600 -170 986 -5.1129 1.0503 1.7600 -170 987 -5.0758 1.0462 1.7600 -170 988 -5.0420 1.0438 1.7600 -170 989 -5.0109 1.0433 1.7600 -170 990 -4.9832 1.0439 1.7600 -170 991 -4.9550 1.0482 1.7600 -170 992 -4.9294 1.0519 1.7600 -170 993 -4.9054 1.0608 1.7600 -170 994 -4.8812 1.0740 1.7600 -170 995 -4.8566 1.0922 1.7600 -170 996 -4.8280 1.1071 1.7600 -170 997 -4.7988 1.1149 1.7600 -170 998 -4.7679 1.1184 1.7600 -170 999 -4.7371 1.1162 1.7600 -170 1000 -4.7121 1.1173 1.7600 -170 1001 -4.6843 1.1207 1.7600 -170 1002 -4.6553 1.1209 1.7600 -170 1003 -4.6184 1.1175 1.7600 -170 1004 -4.5837 1.1097 1.7600 -170 1005 -4.5531 1.0981 1.7600 -170 1006 -4.5209 1.0825 1.7600 -170 1007 -4.4888 1.0693 1.7600 -170 1008 -4.4529 1.0589 1.7600 -170 1009 -4.4133 1.0520 1.7600 -170 1010 -4.3780 1.0431 1.7600 -170 1011 -4.3378 1.0391 1.7600 -170 1012 -4.2915 1.0407 1.7600 -170 1013 -4.2483 1.0442 1.7600 -170 1014 -4.2030 1.0470 1.7600 -170 1015 -4.1557 1.0499 1.7600 -170 1016 -4.1132 1.0535 1.7600 -170 1017 -4.0659 1.0598 1.7600 -170 1018 -4.0207 1.0689 1.7600 -170 1019 -3.9724 1.0827 1.7600 -170 1020 -3.9258 1.0971 1.7600 -170 1021 -3.8832 1.1038 1.7600 -170 1022 -3.8428 1.1020 1.7600 -170 1023 -3.7983 1.0960 1.7600 -170 1024 -3.7528 1.0856 1.7600 -170 1025 -3.7109 1.0775 1.7600 -170 1026 -3.6680 1.0694 1.7600 -170 1027 -3.6278 1.0604 1.7600 -170 1028 -3.5851 1.0533 1.7600 -170 1029 -3.5429 1.0435 1.7600 -170 1030 -3.5058 1.0389 1.7600 -170 1031 -3.4699 1.0364 1.7600 -170 1032 -3.4307 1.0364 1.7600 -170 1033 -3.3853 1.0362 1.7600 -170 1034 -3.3345 1.0343 1.7600 -170 1035 -3.2907 1.0290 1.7600 -170 1036 -3.2504 1.0242 1.7600 -170 1037 -3.2147 1.0192 1.7600 -170 1038 -3.1767 1.0211 1.7600 -170 1039 -3.1352 1.0292 1.7600 -170 1040 -3.0900 1.0404 1.7600 -170 1041 -3.0473 1.0564 1.7600 -170 1042 -3.0109 1.0699 1.7600 -170 1043 -2.9727 1.0807 1.7600 -170 1044 -2.9315 1.0878 1.7600 -170 1045 -2.8928 1.0921 1.7600 -170 1046 -2.8572 1.0944 1.7600 -170 1047 -2.8180 1.0954 1.7600 -170 1048 -2.7735 1.0969 1.7600 -170 1049 -2.7296 1.0955 1.7600 -170 1050 -2.6839 1.0901 1.7600 -170 1051 -2.6338 1.0841 1.7600 -170 1052 -2.5807 1.0762 1.7600 -170 1053 -2.5235 1.0698 1.7600 -170 1054 -2.4714 1.0703 1.7600 -170 1055 -2.4176 1.0734 1.7600 -170 1056 -2.3584 1.0800 1.7600 -170 1057 -2.2995 1.0897 1.7600 -170 1058 -2.2443 1.0979 1.7600 -170 1059 -2.1973 1.1058 1.7600 -170 1060 -2.1532 1.1111 1.7600 -170 1061 -2.1067 1.1179 1.7600 -170 1062 -2.0570 1.1267 1.7600 -170 1063 -2.0106 1.1424 1.7600 -170 1064 -1.9671 1.1568 1.7600 -170 1065 -1.9205 1.1586 1.7600 -170 1066 -1.8717 1.1543 1.7600 -170 1067 -1.8191 1.1474 1.7600 -170 1068 -1.7649 1.1396 1.7600 -170 1069 -1.7133 1.1312 1.7600 -170 1070 -1.6616 1.1268 1.7600 -170 1071 -1.6089 1.1236 1.7600 -170 1072 -1.5532 1.1213 1.7600 -170 1073 -1.4979 1.1178 1.7600 -170 1074 -1.4504 1.1177 1.7600 -170 1075 -1.4025 1.1247 1.7600 -170 1076 -1.3532 1.1372 1.7600 -170 1077 -1.3039 1.1501 1.7600 -170 1078 -1.2530 1.1587 1.7600 -170 1079 -1.2065 1.1591 1.7600 -170 1080 -1.1615 1.1554 1.7600 -170 1081 -1.1107 1.1528 1.7600 -170 1082 -1.0562 1.1553 1.7600 -170 1083 -1.0031 1.1581 1.7600 -170 1084 -0.9505 1.1584 1.7600 -170 1085 -0.8917 1.1537 1.7600 -170 1086 -0.8302 1.1474 1.7600 -170 1087 -0.7708 1.1387 1.7600 -170 1088 -0.7157 1.1281 1.7600 -170 1089 -0.6651 1.1193 1.7600 -170 1090 -0.6147 1.1091 1.7600 -170 1091 -0.5604 1.1011 1.7600 -170 1092 -0.5016 1.0999 1.7600 -170 1093 -0.4416 1.1027 1.7600 -170 1094 -0.3812 1.1071 1.7600 -170 1095 -0.3193 1.1141 1.7600 -170 1096 -0.2594 1.1218 1.7600 -170 1097 -0.2064 1.1320 1.7600 -170 1098 -0.1635 1.1402 1.7600 -170 1099 -0.1217 1.1414 1.7600 -170 1100 -0.0740 1.1370 1.7600 -170 1101 -0.0198 1.1290 1.7600 -170 1102 0.0352 1.1233 1.7600 -170 1103 0.0840 1.1240 1.7600 -170 1104 0.1209 1.1257 1.7600 -170 1105 0.1536 1.1221 1.7600 -170 1106 0.1876 1.1145 1.7600 -170 1107 0.2224 1.1046 1.7600 -170 1108 0.2608 1.0935 1.7600 -170 1109 0.3063 1.0832 1.7600 -170 1110 0.3591 1.0758 1.7600 -170 1111 0.4173 1.0703 1.7600 -170 1112 0.4767 1.0638 1.7600 -170 1113 0.5347 1.0543 1.7600 -170 1114 0.5892 1.0493 1.7600 -170 1115 0.6415 1.0491 1.7600 -170 1116 0.6943 1.0557 1.7600 -170 1117 0.7527 1.0660 1.7600 -170 1118 0.8122 1.0842 1.7600 -170 1119 0.8617 1.1032 1.7600 -170 1120 0.9100 1.1185 1.7600 -170 1121 0.9578 1.1282 1.7600 -170 1122 1.0050 1.1335 1.7600 -170 1123 1.0609 1.1365 1.7600 -170 1124 1.1186 1.1432 1.7600 -170 1125 1.1786 1.1528 1.7600 -170 1126 1.2314 1.1586 1.7600 -170 1127 1.2853 1.1603 1.7600 -170 1128 1.3342 1.1590 1.7600 -170 1129 1.3847 1.1557 1.7600 -170 1130 1.4387 1.1524 1.7600 -170 1131 1.4912 1.1505 1.7600 -170 1132 1.5480 1.1498 1.7600 -170 1133 1.6079 1.1467 1.7600 -170 1134 1.6696 1.1436 1.7600 -170 1135 1.7286 1.1418 1.7600 -170 1136 1.7870 1.1467 1.7600 -170 1137 1.8548 1.1514 1.7600 -170 1138 1.9263 1.1639 1.7600 -170 1139 1.9886 1.1760 1.7600 -170 1140 2.0523 1.1824 1.7600 -170 1141 2.1141 1.1823 1.7600 -170 1142 2.1738 1.1850 1.7600 -170 1143 2.2350 1.1909 1.7600 -170 1144 2.2933 1.2031 1.7600 -170 1145 2.3485 1.2168 1.7600 -170 1146 2.3981 1.2189 1.7600 -170 1147 2.4515 1.2121 1.7600 -170 1148 2.5007 1.2012 1.7600 -170 1149 2.5495 1.1872 1.7600 -170 1150 2.5973 1.1694 1.7600 -170 1151 2.6586 1.1444 1.7600 -170 1152 2.7348 1.1154 1.7600 -170 1153 2.8154 1.0924 1.7600 -170 1154 2.8896 1.0868 1.7600 -170 1155 2.9517 1.0996 1.7600 -170 1156 2.9916 1.1285 1.7600 -170 1157 3.0289 1.1545 1.7600 -170 1158 3.0605 1.1746 1.7600 -170 1159 3.0920 1.1913 1.7600 -170 1160 3.1297 1.1996 1.7600 -170 1161 3.1745 1.2074 1.7600 -170 1162 3.2281 1.2191 1.7600 -170 1163 3.2868 1.2338 1.7600 -170 1164 3.3515 1.2442 1.7600 -170 1165 3.4120 1.2507 1.7600 -170 1166 3.4659 1.2532 1.7600 -170 1167 3.5190 1.2533 1.7600 -170 1168 3.5713 1.2510 1.7600 -170 1169 3.6261 1.2463 1.7600 -170 1170 3.6796 1.2396 1.7600 -170 1171 3.7364 1.2322 1.7600 -170 1172 3.7936 1.2244 1.7600 -170 1173 3.8563 1.2156 1.7600 -170 1174 3.9253 1.2066 1.7600 -170 1175 3.9952 1.2032 1.7600 -170 1176 4.0692 1.2056 1.7600 -170 1177 4.1454 1.2108 1.7600 -170 1178 4.2157 1.2219 1.7600 -170 1179 4.2792 1.2316 1.7600 -170 1180 4.3391 1.2367 1.7600 -170 1181 4.3979 1.2375 1.7600 -170 1182 4.4631 1.2384 1.7600 -170 1183 4.5338 1.2402 1.7600 -170 1184 4.6025 1.2403 1.7600 -170 1185 4.6736 1.2287 1.7600 -170 1186 4.7447 1.2095 1.7600 -170 1187 4.8038 1.1877 1.7600 -170 1188 4.8587 1.1671 1.7600 -170 1189 4.9124 1.1496 1.7600 -170 1190 4.9693 1.1342 1.7600 -170 1191 5.0309 1.1165 1.7600 -170 1192 5.0941 1.1032 1.7600 -170 1193 5.1570 1.0955 1.7600 -170 1194 5.2266 1.0931 1.7600 -170 1195 5.2946 1.0933 1.7600 -170 1196 5.3596 1.0963 1.7600 -170 1197 5.4183 1.0985 1.7600 -170 1198 5.4784 1.1020 1.7600 -170 1199 5.5389 1.1067 1.7600 -170 1200 5.6064 1.1110 1.7600 -170 1201 5.6811 1.1124 1.7600 -170 1202 5.7535 1.1069 1.7600 -170 1203 5.8219 1.0915 1.7600 -170 1204 5.8824 1.0704 1.7600 -170 1205 5.9336 1.0521 1.7600 -171 926 -7.7967 0.7360 1.7600 -171 927 -7.7459 0.7168 1.7600 -171 928 -7.6910 0.6998 1.7600 -171 929 -7.6329 0.6826 1.7600 -171 930 -7.5695 0.6647 1.7600 -171 931 -7.5011 0.6486 1.7600 -171 932 -7.4328 0.6370 1.7600 -171 933 -7.3689 0.6292 1.7600 -171 934 -7.3115 0.6240 1.7600 -171 935 -7.2584 0.6195 1.7600 -171 936 -7.2098 0.6129 1.7600 -171 937 -7.1653 0.6018 1.7600 -171 938 -7.1203 0.5877 1.7600 -171 939 -7.0713 0.5737 1.7600 -171 940 -7.0174 0.5634 1.7600 -171 941 -6.9599 0.5553 1.7600 -171 942 -6.8983 0.5475 1.7600 -171 943 -6.8338 0.5382 1.7600 -171 944 -6.7700 0.5277 1.7600 -171 945 -6.7093 0.5155 1.7600 -171 946 -6.6510 0.5038 1.7600 -171 947 -6.5933 0.4962 1.7600 -171 948 -6.5375 0.4936 1.7600 -171 949 -6.4830 0.4945 1.7600 -171 950 -6.4272 0.4965 1.7600 -171 951 -6.3709 0.4977 1.7600 -171 952 -6.3122 0.4933 1.7600 -171 953 -6.2505 0.4939 1.7600 -171 954 -6.1902 0.4989 1.7600 -171 955 -6.1358 0.5053 1.7600 -171 956 -6.0858 0.5072 1.7600 -171 957 -6.0399 0.5075 1.7600 -171 958 -5.9965 0.5052 1.7600 -171 959 -5.9513 0.5010 1.7600 -171 960 -5.9039 0.4963 1.7600 -171 961 -5.8584 0.4929 1.7600 -171 962 -5.8157 0.4877 1.7600 -171 963 -5.7721 0.4828 1.7600 -171 964 -5.7292 0.4761 1.7600 -171 965 -5.6873 0.4657 1.7600 -171 966 -5.6448 0.4520 1.7600 -171 967 -5.6052 0.4380 1.7600 -171 968 -5.5675 0.4213 1.7600 -171 969 -5.5307 0.4029 1.7600 -171 970 -5.4938 0.3825 1.7600 -171 971 -5.4535 0.3664 1.7600 -171 972 -5.4085 0.3508 1.7600 -171 973 -5.3621 0.3416 1.7600 -171 974 -5.3168 0.3339 1.7600 -171 975 -5.2730 0.3269 1.7600 -171 976 -5.2299 0.3156 1.7600 -171 977 -5.1815 0.3062 1.7600 -171 978 -5.1372 0.3016 1.7600 -171 979 -5.0940 0.3019 1.7600 -171 980 -5.0514 0.3054 1.7600 -171 981 -5.0082 0.3114 1.7600 -171 982 -4.9632 0.3160 1.7600 -171 983 -4.9203 0.3210 1.7600 -171 984 -4.8795 0.3254 1.7600 -171 985 -4.8428 0.3275 1.7600 -171 986 -4.8102 0.3275 1.7600 -171 987 -4.7793 0.3250 1.7600 -171 988 -4.7490 0.3193 1.7600 -171 989 -4.7161 0.3114 1.7600 -171 990 -4.6839 0.3038 1.7600 -171 991 -4.6563 0.2930 1.7600 -171 992 -4.6301 0.2805 1.7600 -171 993 -4.6043 0.2672 1.7600 -171 994 -4.5795 0.2542 1.7600 -171 995 -4.5546 0.2420 1.7600 -171 996 -4.5293 0.2318 1.7600 -171 997 -4.5005 0.2268 1.7600 -171 998 -4.4732 0.2184 1.7600 -171 999 -4.4469 0.2125 1.7600 -171 1000 -4.4170 0.2090 1.7600 -171 1001 -4.3844 0.2093 1.7600 -171 1002 -4.3497 0.2122 1.7600 -171 1003 -4.3131 0.2199 1.7600 -171 1004 -4.2741 0.2309 1.7600 -171 1005 -4.2342 0.2437 1.7600 -171 1006 -4.1899 0.2567 1.7600 -171 1007 -4.1402 0.2714 1.7600 -171 1008 -4.0962 0.2843 1.7600 -171 1009 -4.0503 0.2956 1.7600 -171 1010 -4.0083 0.3028 1.7600 -171 1011 -3.9681 0.3066 1.7600 -171 1012 -3.9292 0.3084 1.7600 -171 1013 -3.8935 0.3072 1.7600 -171 1014 -3.8551 0.3029 1.7600 -171 1015 -3.8142 0.2953 1.7600 -171 1016 -3.7736 0.2833 1.7600 -171 1017 -3.7289 0.2675 1.7600 -171 1018 -3.6823 0.2481 1.7600 -171 1019 -3.6391 0.2333 1.7600 -171 1020 -3.5957 0.2212 1.7600 -171 1021 -3.5517 0.2132 1.7600 -171 1022 -3.5073 0.2063 1.7600 -171 1023 -3.4660 0.2018 1.7600 -171 1024 -3.4312 0.1997 1.7600 -171 1025 -3.3946 0.2047 1.7600 -171 1026 -3.3580 0.2097 1.7600 -171 1027 -3.3221 0.2202 1.7600 -171 1028 -3.2912 0.2317 1.7600 -171 1029 -3.2639 0.2434 1.7600 -171 1030 -3.2348 0.2533 1.7600 -171 1031 -3.2053 0.2647 1.7600 -171 1032 -3.1709 0.2779 1.7600 -171 1033 -3.1437 0.2901 1.7600 -171 1034 -3.1148 0.2976 1.7600 -171 1035 -3.0852 0.3027 1.7600 -171 1036 -3.0586 0.3066 1.7600 -171 1037 -3.0335 0.3107 1.7600 -171 1038 -3.0089 0.3170 1.7600 -171 1039 -2.9785 0.3214 1.7600 -171 1040 -2.9406 0.3269 1.7600 -171 1041 -2.9006 0.3273 1.7600 -171 1042 -2.8570 0.3259 1.7600 -171 1043 -2.8133 0.3214 1.7600 -171 1044 -2.7680 0.3110 1.7600 -171 1045 -2.7200 0.3032 1.7600 -171 1046 -2.6757 0.2966 1.7600 -171 1047 -2.6365 0.2926 1.7600 -171 1048 -2.6002 0.2922 1.7600 -171 1049 -2.5662 0.2958 1.7600 -171 1050 -2.5324 0.3012 1.7600 -171 1051 -2.4989 0.3061 1.7600 -171 1052 -2.4665 0.3094 1.7600 -171 1053 -2.4351 0.3152 1.7600 -171 1054 -2.4042 0.3210 1.7600 -171 1055 -2.3724 0.3264 1.7600 -171 1056 -2.3405 0.3329 1.7600 -171 1057 -2.3039 0.3425 1.7600 -171 1058 -2.2712 0.3537 1.7600 -171 1059 -2.2368 0.3608 1.7600 -171 1060 -2.1983 0.3611 1.7600 -171 1061 -2.1591 0.3612 1.7600 -171 1062 -2.1200 0.3588 1.7600 -171 1063 -2.0822 0.3542 1.7600 -171 1064 -2.0398 0.3505 1.7600 -171 1065 -1.9974 0.3429 1.7600 -171 1066 -1.9495 0.3263 1.7600 -171 1067 -1.8947 0.3061 1.7600 -171 1068 -1.8375 0.2832 1.7600 -171 1069 -1.7784 0.2639 1.7600 -171 1070 -1.7240 0.2523 1.7600 -171 1071 -1.6733 0.2463 1.7600 -171 1072 -1.6227 0.2465 1.7600 -171 1073 -1.5746 0.2516 1.7600 -171 1074 -1.5245 0.2583 1.7600 -171 1075 -1.4712 0.2666 1.7600 -171 1076 -1.4150 0.2777 1.7600 -171 1077 -1.3547 0.2934 1.7600 -171 1078 -1.2947 0.3104 1.7600 -171 1079 -1.2323 0.3246 1.7600 -171 1080 -1.1702 0.3412 1.7600 -171 1081 -1.1135 0.3518 1.7600 -171 1082 -1.0584 0.3558 1.7600 -171 1083 -1.0031 0.3585 1.7600 -171 1084 -0.9512 0.3622 1.7600 -171 1085 -0.8985 0.3644 1.7600 -171 1086 -0.8436 0.3655 1.7600 -171 1087 -0.7838 0.3646 1.7600 -171 1088 -0.7206 0.3589 1.7600 -171 1089 -0.6587 0.3498 1.7600 -171 1090 -0.5967 0.3408 1.7600 -171 1091 -0.5359 0.3337 1.7600 -171 1092 -0.4764 0.3325 1.7600 -171 1093 -0.4181 0.3334 1.7600 -171 1094 -0.3631 0.3357 1.7600 -171 1095 -0.3075 0.3408 1.7600 -171 1096 -0.2512 0.3477 1.7600 -171 1097 -0.1978 0.3568 1.7600 -171 1098 -0.1400 0.3660 1.7600 -171 1099 -0.0907 0.3771 1.7600 -171 1100 -0.0415 0.3874 1.7600 -171 1101 0.0080 0.4015 1.7600 -171 1102 0.0544 0.4126 1.7600 -171 1103 0.1022 0.4172 1.7600 -171 1104 0.1499 0.4140 1.7600 -171 1105 0.1980 0.4098 1.7600 -171 1106 0.2481 0.4038 1.7600 -171 1107 0.3018 0.3963 1.7600 -171 1108 0.3584 0.3840 1.7600 -171 1109 0.4189 0.3669 1.7600 -171 1110 0.4800 0.3486 1.7600 -171 1111 0.5427 0.3286 1.7600 -171 1112 0.5984 0.3107 1.7600 -171 1113 0.6493 0.2971 1.7600 -171 1114 0.6995 0.2879 1.7600 -171 1115 0.7508 0.2810 1.7600 -171 1116 0.8009 0.2751 1.7600 -171 1117 0.8502 0.2711 1.7600 -171 1118 0.9006 0.2689 1.7600 -171 1119 0.9504 0.2711 1.7600 -171 1120 0.9999 0.2753 1.7600 -171 1121 1.0477 0.2838 1.7600 -171 1122 1.0917 0.2880 1.7600 -171 1123 1.1383 0.2941 1.7600 -171 1124 1.1875 0.3033 1.7600 -171 1125 1.2401 0.3117 1.7600 -171 1126 1.2936 0.3145 1.7600 -171 1127 1.3453 0.3127 1.7600 -171 1128 1.3986 0.3077 1.7600 -171 1129 1.4560 0.3024 1.7600 -171 1130 1.5199 0.2935 1.7600 -171 1131 1.5870 0.2774 1.7600 -171 1132 1.6517 0.2628 1.7600 -171 1133 1.7086 0.2568 1.7600 -171 1134 1.7596 0.2556 1.7600 -171 1135 1.8157 0.2605 1.7600 -171 1136 1.8676 0.2664 1.7600 -171 1137 1.9186 0.2759 1.7600 -171 1138 1.9725 0.2873 1.7600 -171 1139 2.0305 0.3038 1.7600 -171 1140 2.0889 0.3212 1.7600 -171 1141 2.1444 0.3399 1.7600 -171 1142 2.1940 0.3560 1.7600 -171 1143 2.2416 0.3663 1.7600 -171 1144 2.2885 0.3710 1.7600 -171 1145 2.3376 0.3720 1.7600 -171 1146 2.3843 0.3715 1.7600 -171 1147 2.4285 0.3667 1.7600 -171 1148 2.4731 0.3572 1.7600 -171 1149 2.5176 0.3448 1.7600 -171 1150 2.5656 0.3254 1.7600 -171 1151 2.6133 0.2992 1.7600 -171 1152 2.6591 0.2802 1.7600 -171 1153 2.7090 0.2692 1.7600 -171 1154 2.7610 0.2664 1.7600 -171 1155 2.8149 0.2667 1.7600 -171 1156 2.8700 0.2690 1.7600 -171 1157 2.9241 0.2755 1.7600 -171 1158 2.9789 0.2845 1.7600 -171 1159 3.0332 0.3000 1.7600 -171 1160 3.0936 0.3160 1.7600 -171 1161 3.1556 0.3365 1.7600 -171 1162 3.2186 0.3542 1.7600 -171 1163 3.2809 0.3647 1.7600 -171 1164 3.3396 0.3671 1.7600 -171 1165 3.3966 0.3661 1.7600 -171 1166 3.4485 0.3609 1.7600 -171 1167 3.5022 0.3578 1.7600 -171 1168 3.5593 0.3562 1.7600 -171 1169 3.6172 0.3510 1.7600 -171 1170 3.6795 0.3429 1.7600 -171 1171 3.7516 0.3289 1.7600 -171 1172 3.8308 0.3119 1.7600 -171 1173 3.9041 0.2960 1.7600 -171 1174 3.9704 0.2874 1.7600 -171 1175 4.0304 0.2876 1.7600 -171 1176 4.0849 0.2939 1.7600 -171 1177 4.1403 0.2983 1.7600 -171 1178 4.1976 0.3004 1.7600 -171 1179 4.2597 0.2972 1.7600 -171 1180 4.3243 0.2948 1.7600 -171 1181 4.3965 0.2932 1.7600 -171 1182 4.4745 0.2905 1.7600 -171 1183 4.5510 0.2827 1.7600 -171 1184 4.6251 0.2637 1.7600 -171 1185 4.6928 0.2333 1.7600 -171 1186 4.7582 0.2017 1.7600 -171 1187 4.8176 0.1719 1.7600 -171 1188 4.8774 0.1489 1.7600 -171 1189 4.9401 0.1248 1.7600 -171 1190 5.0056 0.0977 1.7600 -171 1191 5.0849 0.0669 1.7600 -171 1192 5.1624 0.0374 1.7600 -171 1193 5.2382 0.0093 1.7600 -171 1194 5.3146 -0.0140 1.7600 -171 1195 5.3867 -0.0302 1.7600 -171 1196 5.4531 -0.0401 1.7600 -171 1197 5.5175 -0.0514 1.7600 -171 1198 5.5805 -0.0627 1.7600 -171 1199 5.6444 -0.0713 1.7600 -171 1200 5.7184 -0.0792 1.7600 -171 1201 5.8043 -0.0854 1.7600 -171 1202 5.8891 -0.0910 1.7600 -171 1203 5.9694 -0.0997 1.7600 -172 949 -7.7861 0.9228 1.7600 -172 950 -7.7107 0.9066 1.7600 -172 951 -7.6362 0.8955 1.7600 -172 952 -7.5682 0.8905 1.7600 -172 953 -7.5043 0.8886 1.7600 -172 954 -7.4408 0.8831 1.7600 -172 955 -7.3808 0.8717 1.7600 -172 956 -7.3229 0.8548 1.7600 -172 957 -7.2670 0.8338 1.7600 -172 958 -7.2083 0.8143 1.7600 -172 959 -7.1468 0.7917 1.7600 -172 960 -7.0879 0.7675 1.7600 -172 961 -7.0297 0.7388 1.7600 -172 962 -6.9791 0.7096 1.7600 -172 963 -6.9245 0.6817 1.7600 -172 964 -6.8730 0.6591 1.7600 -172 965 -6.8116 0.6411 1.7600 -172 966 -6.7509 0.6262 1.7600 -172 967 -6.6905 0.6145 1.7600 -172 968 -6.6306 0.6059 1.7600 -172 969 -6.5717 0.6017 1.7600 -172 970 -6.5132 0.6049 1.7600 -172 971 -6.4591 0.6166 1.7600 -172 972 -6.4034 0.6251 1.7600 -172 973 -6.3502 0.6296 1.7600 -172 974 -6.3008 0.6288 1.7600 -172 975 -6.2519 0.6253 1.7600 -172 976 -6.2089 0.6202 1.7600 -172 977 -6.1699 0.6143 1.7600 -172 978 -6.1351 0.6070 1.7600 -172 979 -6.1032 0.5988 1.7600 -172 980 -6.0726 0.5835 1.7600 -172 981 -6.0504 0.5645 1.7600 -172 982 -6.0291 0.5503 1.7600 -172 983 -6.0075 0.5384 1.7600 -172 984 -5.9812 0.5318 1.7600 -172 985 -5.9480 0.5306 1.7600 -172 986 -5.9162 0.5311 1.7600 -172 987 -5.8887 0.5350 1.7600 -172 988 -5.8588 0.5404 1.7600 -172 989 -5.8287 0.5511 1.7600 -172 990 -5.8010 0.5667 1.7600 -172 991 -5.7688 0.5866 1.7600 -172 992 -5.7328 0.6113 1.7600 -172 993 -5.6907 0.6353 1.7600 -172 994 -5.6468 0.6615 1.7600 -172 995 -5.5971 0.6905 1.7600 -172 996 -5.5484 0.7162 1.7600 -172 997 -5.5051 0.7377 1.7600 -172 998 -5.4638 0.7526 1.7600 -172 999 -5.4303 0.7640 1.7600 -172 1000 -5.3956 0.7674 1.7600 -172 1001 -5.3608 0.7689 1.7600 -172 1002 -5.3226 0.7652 1.7600 -172 1003 -5.2847 0.7604 1.7600 -172 1004 -5.2442 0.7472 1.7600 -172 1005 -5.2057 0.7301 1.7600 -172 1006 -5.1710 0.7108 1.7600 -172 1007 -5.1371 0.6883 1.7600 -172 1008 -5.1017 0.6679 1.7600 -172 1009 -5.0699 0.6526 1.7600 -172 1010 -5.0374 0.6442 1.7600 -172 1011 -5.0051 0.6372 1.7600 -172 1012 -4.9703 0.6334 1.7600 -172 1013 -4.9337 0.6329 1.7600 -172 1014 -4.8939 0.6368 1.7600 -172 1015 -4.8492 0.6486 1.7600 -172 1016 -4.8039 0.6688 1.7600 -172 1017 -4.7550 0.6894 1.7600 -172 1018 -4.7064 0.7137 1.7600 -172 1019 -4.6618 0.7340 1.7600 -172 1020 -4.6193 0.7445 1.7600 -172 1021 -4.5784 0.7503 1.7600 -172 1022 -4.5368 0.7539 1.7600 -172 1023 -4.4999 0.7523 1.7600 -172 1024 -4.4576 0.7491 1.7600 -172 1025 -4.4182 0.7429 1.7600 -172 1026 -4.3774 0.7291 1.7600 -172 1027 -4.3400 0.7131 1.7600 -172 1028 -4.3025 0.6935 1.7600 -172 1029 -4.2652 0.6739 1.7600 -172 1030 -4.2297 0.6599 1.7600 -172 1031 -4.1955 0.6525 1.7600 -172 1032 -4.1577 0.6473 1.7600 -172 1033 -4.1191 0.6429 1.7600 -172 1034 -4.0800 0.6413 1.7600 -172 1035 -4.0373 0.6424 1.7600 -172 1036 -3.9942 0.6477 1.7600 -172 1037 -3.9508 0.6571 1.7600 -172 1038 -3.9119 0.6710 1.7600 -172 1039 -3.8733 0.6893 1.7600 -172 1040 -3.8333 0.7066 1.7600 -172 1041 -3.7940 0.7174 1.7600 -172 1042 -3.7584 0.7236 1.7600 -172 1043 -3.7224 0.7293 1.7600 -172 1044 -3.6836 0.7342 1.7600 -172 1045 -3.6474 0.7353 1.7600 -172 1046 -3.6156 0.7286 1.7600 -172 1047 -3.5933 0.7158 1.7600 -172 1048 -3.5830 0.6953 1.7600 -172 1049 -3.5779 0.6733 1.7600 -172 1050 -3.5718 0.6533 1.7600 -172 1051 -3.5532 0.6442 1.7600 -172 1052 -3.5289 0.6421 1.7600 -172 1053 -3.5027 0.6457 1.7600 -172 1054 -3.4760 0.6511 1.7600 -172 1055 -3.4480 0.6606 1.7600 -172 1056 -3.4152 0.6740 1.7600 -172 1057 -3.3821 0.6936 1.7600 -172 1058 -3.3497 0.7169 1.7600 -172 1059 -3.3139 0.7412 1.7600 -172 1060 -3.2763 0.7655 1.7600 -172 1061 -3.2394 0.7840 1.7600 -172 1062 -3.1963 0.7939 1.7600 -172 1063 -3.1488 0.7983 1.7600 -172 1064 -3.0968 0.7989 1.7600 -172 1065 -3.0393 0.7929 1.7600 -172 1066 -2.9806 0.7806 1.7600 -172 1067 -2.9250 0.7633 1.7600 -172 1068 -2.8785 0.7453 1.7600 -172 1069 -2.8292 0.7296 1.7600 -172 1070 -2.7802 0.7147 1.7600 -172 1071 -2.7332 0.7015 1.7600 -172 1072 -2.6899 0.6913 1.7600 -172 1073 -2.6410 0.6837 1.7600 -172 1074 -2.5895 0.6828 1.7600 -172 1075 -2.5378 0.6824 1.7600 -172 1076 -2.4818 0.6891 1.7600 -172 1077 -2.4328 0.6963 1.7600 -172 1078 -2.3868 0.7063 1.7600 -172 1079 -2.3418 0.7197 1.7600 -172 1080 -2.2932 0.7327 1.7600 -172 1081 -2.2429 0.7429 1.7600 -172 1082 -2.1924 0.7486 1.7600 -172 1083 -2.1440 0.7512 1.7600 -172 1084 -2.0960 0.7510 1.7600 -172 1085 -2.0406 0.7500 1.7600 -172 1086 -1.9847 0.7474 1.7600 -172 1087 -1.9327 0.7408 1.7600 -172 1088 -1.8804 0.7300 1.7600 -172 1089 -1.8215 0.7160 1.7600 -172 1090 -1.7602 0.7015 1.7600 -172 1091 -1.7047 0.6919 1.7600 -172 1092 -1.6515 0.6885 1.7600 -172 1093 -1.5979 0.6873 1.7600 -172 1094 -1.5448 0.6868 1.7600 -172 1095 -1.4915 0.6886 1.7600 -172 1096 -1.4371 0.6947 1.7600 -172 1097 -1.3831 0.7079 1.7600 -172 1098 -1.3302 0.7244 1.7600 -172 1099 -1.2751 0.7382 1.7600 -172 1100 -1.2189 0.7464 1.7600 -172 1101 -1.1606 0.7479 1.7600 -172 1102 -1.1008 0.7444 1.7600 -172 1103 -1.0439 0.7382 1.7600 -172 1104 -0.9898 0.7333 1.7600 -172 1105 -0.9347 0.7277 1.7600 -172 1106 -0.8806 0.7188 1.7600 -172 1107 -0.8289 0.7065 1.7600 -172 1108 -0.7809 0.6911 1.7600 -172 1109 -0.7311 0.6753 1.7600 -172 1110 -0.6833 0.6631 1.7600 -172 1111 -0.6339 0.6552 1.7600 -172 1112 -0.5840 0.6542 1.7600 -172 1113 -0.5337 0.6559 1.7600 -172 1114 -0.4816 0.6580 1.7600 -172 1115 -0.4294 0.6633 1.7600 -172 1116 -0.3785 0.6737 1.7600 -172 1117 -0.3242 0.6903 1.7600 -172 1118 -0.2709 0.7079 1.7600 -172 1119 -0.2149 0.7245 1.7600 -172 1120 -0.1594 0.7400 1.7600 -172 1121 -0.1033 0.7483 1.7600 -172 1122 -0.0470 0.7492 1.7600 -172 1123 0.0070 0.7461 1.7600 -172 1124 0.0624 0.7429 1.7600 -172 1125 0.1194 0.7376 1.7600 -172 1126 0.1752 0.7294 1.7600 -172 1127 0.2234 0.7178 1.7600 -172 1128 0.2690 0.7050 1.7600 -172 1129 0.3138 0.6927 1.7600 -172 1130 0.3573 0.6825 1.7600 -172 1131 0.4041 0.6765 1.7600 -172 1132 0.4510 0.6734 1.7600 -172 1133 0.4957 0.6717 1.7600 -172 1134 0.5410 0.6740 1.7600 -172 1135 0.5840 0.6755 1.7600 -172 1136 0.6281 0.6799 1.7600 -172 1137 0.6729 0.6896 1.7600 -172 1138 0.7203 0.6972 1.7600 -172 1139 0.7682 0.7060 1.7600 -172 1140 0.8165 0.7150 1.7600 -172 1141 0.8642 0.7231 1.7600 -172 1142 0.9121 0.7253 1.7600 -172 1143 0.9586 0.7243 1.7600 -172 1144 1.0040 0.7206 1.7600 -172 1145 1.0543 0.7143 1.7600 -172 1146 1.1035 0.7067 1.7600 -172 1147 1.1510 0.6993 1.7600 -172 1148 1.2008 0.6883 1.7600 -172 1149 1.2545 0.6776 1.7600 -172 1150 1.3082 0.6655 1.7600 -172 1151 1.3682 0.6516 1.7600 -172 1152 1.4338 0.6407 1.7600 -172 1153 1.4971 0.6410 1.7600 -172 1154 1.5555 0.6420 1.7600 -172 1155 1.6140 0.6442 1.7600 -172 1156 1.6682 0.6510 1.7600 -172 1157 1.7196 0.6650 1.7600 -172 1158 1.7730 0.6817 1.7600 -172 1159 1.8231 0.7004 1.7600 -172 1160 1.8716 0.7127 1.7600 -172 1161 1.9213 0.7213 1.7600 -172 1162 1.9721 0.7266 1.7600 -172 1163 2.0186 0.7287 1.7600 -172 1164 2.0629 0.7310 1.7600 -172 1165 2.1033 0.7323 1.7600 -172 1166 2.1416 0.7320 1.7600 -172 1167 2.1772 0.7310 1.7600 -172 1168 2.2135 0.7277 1.7600 -172 1169 2.2507 0.7242 1.7600 -172 1170 2.2905 0.7183 1.7600 -172 1171 2.3415 0.7091 1.7600 -172 1172 2.3969 0.7015 1.7600 -172 1173 2.4551 0.6993 1.7600 -172 1174 2.5115 0.6989 1.7600 -172 1175 2.5705 0.7024 1.7600 -172 1176 2.6291 0.7074 1.7600 -172 1177 2.6896 0.7156 1.7600 -172 1178 2.7477 0.7249 1.7600 -172 1179 2.8070 0.7362 1.7600 -172 1180 2.8686 0.7475 1.7600 -172 1181 2.9336 0.7567 1.7600 -172 1182 3.0076 0.7625 1.7600 -172 1183 3.0828 0.7627 1.7600 -172 1184 3.1545 0.7584 1.7600 -172 1185 3.2185 0.7469 1.7600 -172 1186 3.2749 0.7329 1.7600 -172 1187 3.3311 0.7146 1.7600 -172 1188 3.3876 0.6944 1.7600 -172 1189 3.4462 0.6798 1.7600 -172 1190 3.5026 0.6657 1.7600 -172 1191 3.5624 0.6583 1.7600 -172 1192 3.6177 0.6554 1.7600 -172 1193 3.6658 0.6563 1.7600 -172 1194 3.7116 0.6601 1.7600 -172 1195 3.7579 0.6657 1.7600 -172 1196 3.8093 0.6772 1.7600 -172 1197 3.8639 0.6884 1.7600 -172 1198 3.9226 0.7023 1.7600 -172 1199 3.9817 0.7144 1.7600 -172 1200 4.0404 0.7248 1.7600 -172 1201 4.1002 0.7278 1.7600 -172 1202 4.1605 0.7260 1.7600 -172 1203 4.2168 0.7214 1.7600 -172 1204 4.2690 0.7151 1.7600 -172 1205 4.3257 0.7077 1.7600 -172 1206 4.3803 0.6944 1.7600 -172 1207 4.4446 0.6777 1.7600 -172 1208 4.5088 0.6583 1.7600 -172 1209 4.5707 0.6389 1.7600 -172 1210 4.6413 0.6198 1.7600 -172 1211 4.7187 0.6073 1.7600 -172 1212 4.7982 0.5994 1.7600 -172 1213 4.8759 0.5897 1.7600 -172 1214 4.9458 0.5804 1.7600 -172 1215 5.0198 0.5750 1.7600 -172 1216 5.0936 0.5714 1.7600 -172 1217 5.1689 0.5672 1.7600 -172 1218 5.2457 0.5578 1.7600 -172 1219 5.3232 0.5418 1.7600 -172 1220 5.3958 0.5222 1.7600 -172 1221 5.4630 0.5027 1.7600 -172 1222 5.5285 0.4823 1.7600 -172 1223 5.5917 0.4604 1.7600 -172 1224 5.6584 0.4357 1.7600 -172 1225 5.7294 0.4091 1.7600 -172 1226 5.8020 0.3849 1.7600 -172 1227 5.8816 0.3636 1.7600 -173 942 -7.8583 2.1832 1.7600 -173 943 -7.8028 2.1828 1.7600 -173 944 -7.7473 2.1824 1.7600 -173 945 -7.6921 2.1840 1.7600 -173 946 -7.6343 2.1861 1.7600 -173 947 -7.5738 2.1868 1.7600 -173 948 -7.5110 2.1870 1.7600 -173 949 -7.4466 2.1892 1.7600 -173 950 -7.3828 2.1950 1.7600 -173 951 -7.3241 2.2040 1.7600 -173 952 -7.2711 2.2135 1.7600 -173 953 -7.2171 2.2199 1.7600 -173 954 -7.1619 2.2191 1.7600 -173 955 -7.1087 2.2108 1.7600 -173 956 -7.0557 2.1977 1.7600 -173 957 -7.0012 2.1833 1.7600 -173 958 -6.9453 2.1690 1.7600 -173 959 -6.8864 2.1532 1.7600 -173 960 -6.8257 2.1357 1.7600 -173 961 -6.7631 2.1140 1.7600 -173 962 -6.7040 2.0949 1.7600 -173 963 -6.6511 2.0709 1.7600 -173 964 -6.5984 2.0496 1.7600 -173 965 -6.5472 2.0346 1.7600 -173 966 -6.4923 2.0234 1.7600 -173 967 -6.4378 2.0174 1.7600 -173 968 -6.3797 2.0123 1.7600 -173 969 -6.3232 2.0101 1.7600 -173 970 -6.2658 2.0059 1.7600 -173 971 -6.2076 2.0005 1.7600 -173 972 -6.1529 1.9993 1.7600 -173 973 -6.0983 2.0007 1.7600 -173 974 -6.0576 2.0037 1.7600 -173 975 -6.0167 2.0061 1.7600 -173 976 -5.9782 2.0017 1.7600 -173 977 -5.9355 1.9967 1.7600 -173 978 -5.8977 1.9904 1.7600 -173 979 -5.8553 1.9846 1.7600 -173 980 -5.8175 1.9784 1.7600 -173 981 -5.7752 1.9741 1.7600 -173 982 -5.7337 1.9668 1.7600 -173 983 -5.6904 1.9582 1.7600 -173 984 -5.6456 1.9443 1.7600 -173 985 -5.6038 1.9312 1.7600 -173 986 -5.5662 1.9158 1.7600 -173 987 -5.5264 1.8991 1.7600 -173 988 -5.4893 1.8852 1.7600 -173 989 -5.4525 1.8759 1.7600 -173 990 -5.4142 1.8670 1.7600 -173 991 -5.3746 1.8603 1.7600 -173 992 -5.3368 1.8580 1.7600 -173 993 -5.3006 1.8544 1.7600 -173 994 -5.2650 1.8535 1.7600 -173 995 -5.2274 1.8544 1.7600 -173 996 -5.1905 1.8583 1.7600 -173 997 -5.1528 1.8685 1.7600 -173 998 -5.1209 1.8868 1.7600 -173 999 -5.0864 1.9036 1.7600 -173 1000 -5.0512 1.9172 1.7600 -173 1001 -5.0125 1.9276 1.7600 -173 1002 -4.9765 1.9347 1.7600 -173 1003 -4.9416 1.9373 1.7600 -173 1004 -4.9039 1.9359 1.7600 -173 1005 -4.8651 1.9280 1.7600 -173 1006 -4.8249 1.9180 1.7600 -173 1007 -4.7830 1.9066 1.7600 -173 1008 -4.7424 1.8884 1.7600 -173 1009 -4.6989 1.8640 1.7600 -173 1010 -4.6529 1.8329 1.7600 -173 1011 -4.6103 1.8023 1.7600 -173 1012 -4.5648 1.7670 1.7600 -173 1013 -4.5172 1.7320 1.7600 -173 1014 -4.4694 1.7007 1.7600 -173 1015 -4.4253 1.6756 1.7600 -173 1016 -4.3811 1.6580 1.7600 -173 1017 -4.3387 1.6437 1.7600 -173 1018 -4.2961 1.6330 1.7600 -173 1019 -4.2511 1.6238 1.7600 -173 1020 -4.2033 1.6181 1.7600 -173 1021 -4.1562 1.6121 1.7600 -173 1022 -4.1043 1.6077 1.7600 -173 1023 -4.0556 1.6033 1.7600 -173 1024 -4.0047 1.5990 1.7600 -173 1025 -3.9559 1.5940 1.7600 -173 1026 -3.9085 1.5875 1.7600 -173 1027 -3.8701 1.5817 1.7600 -173 1028 -3.8324 1.5722 1.7600 -173 1029 -3.7935 1.5627 1.7600 -173 1030 -3.7514 1.5533 1.7600 -173 1031 -3.7121 1.5412 1.7600 -173 1032 -3.6683 1.5296 1.7600 -173 1033 -3.6235 1.5162 1.7600 -173 1034 -3.5761 1.5039 1.7600 -173 1035 -3.5289 1.4883 1.7600 -173 1036 -3.4810 1.4734 1.7600 -173 1037 -3.4314 1.4549 1.7600 -173 1038 -3.3894 1.4417 1.7600 -173 1039 -3.3493 1.4326 1.7600 -173 1040 -3.3099 1.4249 1.7600 -173 1041 -3.2721 1.4201 1.7600 -173 1042 -3.2335 1.4213 1.7600 -173 1043 -3.1899 1.4303 1.7600 -173 1044 -3.1477 1.4421 1.7600 -173 1045 -3.1033 1.4531 1.7600 -173 1046 -3.0587 1.4685 1.7600 -173 1047 -3.0121 1.4776 1.7600 -173 1048 -2.9655 1.4852 1.7600 -173 1049 -2.9183 1.4930 1.7600 -173 1050 -2.8736 1.4974 1.7600 -173 1051 -2.8251 1.5003 1.7600 -173 1052 -2.7749 1.5078 1.7600 -173 1053 -2.7231 1.5133 1.7600 -173 1054 -2.6709 1.5149 1.7600 -173 1055 -2.6190 1.5154 1.7600 -173 1056 -2.5670 1.5112 1.7600 -173 1057 -2.5174 1.5047 1.7600 -173 1058 -2.4691 1.4951 1.7600 -173 1059 -2.4192 1.4817 1.7600 -173 1060 -2.3716 1.4651 1.7600 -173 1061 -2.3274 1.4520 1.7600 -173 1062 -2.2860 1.4452 1.7600 -173 1063 -2.2479 1.4445 1.7600 -173 1064 -2.2095 1.4491 1.7600 -173 1065 -2.1686 1.4523 1.7600 -173 1066 -2.1257 1.4579 1.7600 -173 1067 -2.0803 1.4636 1.7600 -173 1068 -2.0307 1.4759 1.7600 -173 1069 -1.9778 1.4925 1.7600 -173 1070 -1.9182 1.5105 1.7600 -173 1071 -1.8508 1.5267 1.7600 -173 1072 -1.7939 1.5327 1.7600 -173 1073 -1.7423 1.5322 1.7600 -173 1074 -1.6912 1.5285 1.7600 -173 1075 -1.6395 1.5187 1.7600 -173 1076 -1.5912 1.5123 1.7600 -173 1077 -1.5453 1.5048 1.7600 -173 1078 -1.5004 1.4945 1.7600 -173 1079 -1.4512 1.4806 1.7600 -173 1080 -1.3999 1.4573 1.7600 -173 1081 -1.3487 1.4405 1.7600 -173 1082 -1.3018 1.4309 1.7600 -173 1083 -1.2621 1.4243 1.7600 -173 1084 -1.2200 1.4238 1.7600 -173 1085 -1.1788 1.4249 1.7600 -173 1086 -1.1372 1.4288 1.7600 -173 1087 -1.0925 1.4335 1.7600 -173 1088 -1.0459 1.4371 1.7600 -173 1089 -0.9942 1.4431 1.7600 -173 1090 -0.9462 1.4519 1.7600 -173 1091 -0.8908 1.4700 1.7600 -173 1092 -0.8367 1.4802 1.7600 -173 1093 -0.7849 1.4897 1.7600 -173 1094 -0.7356 1.4949 1.7600 -173 1095 -0.6866 1.4950 1.7600 -173 1096 -0.6359 1.4909 1.7600 -173 1097 -0.5830 1.4872 1.7600 -173 1098 -0.5301 1.4887 1.7600 -173 1099 -0.4765 1.4834 1.7600 -173 1100 -0.4235 1.4773 1.7600 -173 1101 -0.3672 1.4642 1.7600 -173 1102 -0.3093 1.4504 1.7600 -173 1103 -0.2568 1.4446 1.7600 -173 1104 -0.2061 1.4442 1.7600 -173 1105 -0.1532 1.4461 1.7600 -173 1106 -0.1004 1.4531 1.7600 -173 1107 -0.0430 1.4646 1.7600 -173 1108 0.0162 1.4763 1.7600 -173 1109 0.0783 1.4877 1.7600 -173 1110 0.1386 1.5003 1.7600 -173 1111 0.1970 1.5149 1.7600 -173 1112 0.2525 1.5355 1.7600 -173 1113 0.2987 1.5499 1.7600 -173 1114 0.3429 1.5596 1.7600 -173 1115 0.3847 1.5661 1.7600 -173 1116 0.4265 1.5690 1.7600 -173 1117 0.4707 1.5726 1.7600 -173 1118 0.5190 1.5705 1.7600 -173 1119 0.5694 1.5701 1.7600 -173 1120 0.6229 1.5666 1.7600 -173 1121 0.6767 1.5599 1.7600 -173 1122 0.7314 1.5503 1.7600 -173 1123 0.7814 1.5415 1.7600 -173 1124 0.8313 1.5313 1.7600 -173 1125 0.8758 1.5274 1.7600 -173 1126 0.9212 1.5241 1.7600 -173 1127 0.9667 1.5243 1.7600 -173 1128 1.0150 1.5234 1.7600 -173 1129 1.0619 1.5246 1.7600 -173 1130 1.1082 1.5298 1.7600 -173 1131 1.1594 1.5304 1.7600 -173 1132 1.2105 1.5349 1.7600 -173 1133 1.2625 1.5432 1.7600 -173 1134 1.3173 1.5549 1.7600 -173 1135 1.3734 1.5684 1.7600 -173 1136 1.4295 1.5771 1.7600 -173 1137 1.4863 1.5853 1.7600 -173 1138 1.5402 1.5910 1.7600 -173 1139 1.5949 1.5908 1.7600 -173 1140 1.6451 1.5871 1.7600 -173 1141 1.6990 1.5827 1.7600 -173 1142 1.7489 1.5786 1.7600 -173 1143 1.7970 1.5753 1.7600 -173 1144 1.8454 1.5738 1.7600 -173 1145 1.8989 1.5694 1.7600 -173 1146 1.9594 1.5575 1.7600 -173 1147 2.0163 1.5394 1.7600 -173 1148 2.0680 1.5257 1.7600 -173 1149 2.1205 1.5273 1.7600 -173 1150 2.1752 1.5329 1.7600 -173 1151 2.2302 1.5412 1.7600 -173 1152 2.2824 1.5497 1.7600 -173 1153 2.3365 1.5601 1.7600 -173 1154 2.3886 1.5694 1.7600 -173 1155 2.4413 1.5808 1.7600 -173 1156 2.4973 1.5948 1.7600 -173 1157 2.5568 1.6081 1.7600 -173 1158 2.6122 1.6162 1.7600 -173 1159 2.6652 1.6178 1.7600 -173 1160 2.7170 1.6150 1.7600 -173 1161 2.7659 1.6138 1.7600 -173 1162 2.8154 1.6127 1.7600 -173 1163 2.8658 1.6143 1.7600 -173 1164 2.9111 1.6175 1.7600 -173 1165 2.9615 1.6172 1.7600 -173 1166 3.0136 1.6122 1.7600 -173 1167 3.0691 1.6032 1.7600 -173 1168 3.1263 1.5924 1.7600 -173 1169 3.1792 1.5803 1.7600 -173 1170 3.2303 1.5722 1.7600 -173 1171 3.2826 1.5663 1.7600 -173 1172 3.3379 1.5632 1.7600 -173 1173 3.3959 1.5632 1.7600 -173 1174 3.4540 1.5618 1.7600 -173 1175 3.5144 1.5623 1.7600 -173 1176 3.5746 1.5624 1.7600 -173 1177 3.6351 1.5645 1.7600 -173 1178 3.6967 1.5729 1.7600 -173 1179 3.7631 1.5830 1.7600 -173 1180 3.8309 1.5937 1.7600 -173 1181 3.8924 1.6013 1.7600 -173 1182 3.9500 1.6074 1.7600 -173 1183 4.0054 1.6142 1.7600 -173 1184 4.0586 1.6231 1.7600 -173 1185 4.1171 1.6268 1.7600 -173 1186 4.1770 1.6291 1.7600 -173 1187 4.2370 1.6297 1.7600 -173 1188 4.3014 1.6275 1.7600 -173 1189 4.3777 1.6292 1.7600 -173 1190 4.4520 1.6266 1.7600 -173 1191 4.5196 1.6245 1.7600 -173 1192 4.5781 1.6278 1.7600 -173 1193 4.6367 1.6380 1.7600 -173 1194 4.6920 1.6512 1.7600 -173 1195 4.7490 1.6636 1.7600 -173 1196 4.8087 1.6736 1.7600 -173 1197 4.8663 1.6768 1.7600 -173 1198 4.9205 1.6777 1.7600 -173 1199 4.9800 1.6784 1.7600 -173 1200 5.0438 1.6813 1.7600 -173 1201 5.1082 1.6900 1.7600 -173 1202 5.1686 1.7017 1.7600 -173 1203 5.2246 1.7093 1.7600 -173 1204 5.2757 1.7141 1.7600 -173 1205 5.3258 1.7170 1.7600 -173 1206 5.3766 1.7179 1.7600 -173 1207 5.4298 1.7171 1.7600 -173 1208 5.4853 1.7107 1.7600 -173 1209 5.5440 1.6989 1.7600 -173 1210 5.6101 1.6876 1.7600 -173 1211 5.6822 1.6766 1.7600 -173 1212 5.7559 1.6709 1.7600 -173 1213 5.8300 1.6696 1.7600 -173 1214 5.9047 1.6734 1.7600 -174 939 -7.7858 0.5292 1.7600 -174 940 -7.7412 0.4860 1.7600 -174 941 -7.7041 0.4497 1.7600 -174 942 -7.6659 0.4227 1.7600 -174 943 -7.6228 0.4012 1.7600 -174 944 -7.5725 0.3816 1.7600 -174 945 -7.5150 0.3633 1.7600 -174 946 -7.4530 0.3498 1.7600 -174 947 -7.3906 0.3461 1.7600 -174 948 -7.3264 0.3522 1.7600 -174 949 -7.2643 0.3552 1.7600 -174 950 -7.2107 0.3454 1.7600 -174 951 -7.1577 0.3270 1.7600 -174 952 -7.1003 0.3059 1.7600 -174 953 -7.0373 0.2872 1.7600 -174 954 -6.9688 0.2718 1.7600 -174 955 -6.8962 0.2590 1.7600 -174 956 -6.8244 0.2448 1.7600 -174 957 -6.7571 0.2261 1.7600 -174 958 -6.6908 0.2071 1.7600 -174 959 -6.6309 0.1993 1.7600 -174 960 -6.5744 0.1989 1.7600 -174 961 -6.5229 0.2056 1.7600 -174 962 -6.4676 0.2125 1.7600 -174 963 -6.4164 0.2163 1.7600 -174 964 -6.3644 0.2234 1.7600 -174 965 -6.3158 0.2365 1.7600 -174 966 -6.2681 0.2534 1.7600 -174 967 -6.2192 0.2661 1.7600 -174 968 -6.1728 0.2728 1.7600 -174 969 -6.1251 0.2744 1.7600 -174 970 -6.0841 0.2690 1.7600 -174 971 -6.0382 0.2594 1.7600 -174 972 -5.9910 0.2480 1.7600 -174 973 -5.9378 0.2329 1.7600 -174 974 -5.8905 0.2168 1.7600 -174 975 -5.8377 0.1975 1.7600 -174 976 -5.7921 0.1829 1.7600 -174 977 -5.7561 0.1704 1.7600 -174 978 -5.7226 0.1631 1.7600 -174 979 -5.6850 0.1619 1.7600 -174 980 -5.6500 0.1671 1.7600 -174 981 -5.6180 0.1691 1.7600 -174 982 -5.5882 0.1741 1.7600 -174 983 -5.5584 0.1847 1.7600 -174 984 -5.5254 0.2025 1.7600 -174 985 -5.4947 0.2212 1.7600 -174 986 -5.4636 0.2275 1.7600 -174 987 -5.4309 0.2262 1.7600 -174 988 -5.3961 0.2208 1.7600 -174 989 -5.3588 0.2144 1.7600 -174 990 -5.3164 0.2099 1.7600 -174 991 -5.2740 0.2001 1.7600 -174 992 -5.2347 0.1867 1.7600 -174 993 -5.1971 0.1659 1.7600 -174 994 -5.1613 0.1477 1.7600 -174 995 -5.1358 0.1318 1.7600 -174 996 -5.1060 0.1166 1.7600 -174 997 -5.0717 0.1086 1.7600 -174 998 -5.0387 0.1081 1.7600 -174 999 -5.0099 0.1105 1.7600 -174 1000 -4.9804 0.1137 1.7600 -174 1001 -4.9504 0.1210 1.7600 -174 1002 -4.9247 0.1320 1.7600 -174 1003 -4.9001 0.1477 1.7600 -174 1004 -4.8756 0.1665 1.7600 -174 1005 -4.8511 0.1892 1.7600 -174 1006 -4.8218 0.2088 1.7600 -174 1007 -4.7907 0.2198 1.7600 -174 1008 -4.7544 0.2226 1.7600 -174 1009 -4.7136 0.2250 1.7600 -174 1010 -4.6708 0.2278 1.7600 -174 1011 -4.6243 0.2286 1.7600 -174 1012 -4.5799 0.2302 1.7600 -174 1013 -4.5345 0.2265 1.7600 -174 1014 -4.4881 0.2195 1.7600 -174 1015 -4.4412 0.2126 1.7600 -174 1016 -4.3968 0.2089 1.7600 -174 1017 -4.3508 0.2093 1.7600 -174 1018 -4.3035 0.2152 1.7600 -174 1019 -4.2595 0.2275 1.7600 -174 1020 -4.2154 0.2417 1.7600 -174 1021 -4.1676 0.2620 1.7600 -174 1022 -4.1274 0.2826 1.7600 -174 1023 -4.0886 0.3068 1.7600 -174 1024 -4.0522 0.3323 1.7600 -174 1025 -4.0167 0.3504 1.7600 -174 1026 -3.9761 0.3571 1.7600 -174 1027 -3.9296 0.3591 1.7600 -174 1028 -3.8849 0.3580 1.7600 -174 1029 -3.8400 0.3578 1.7600 -174 1030 -3.7991 0.3516 1.7600 -174 1031 -3.7614 0.3373 1.7600 -174 1032 -3.7214 0.3206 1.7600 -174 1033 -3.6886 0.3105 1.7600 -174 1034 -3.6538 0.3090 1.7600 -174 1035 -3.6174 0.3125 1.7600 -174 1036 -3.5861 0.3169 1.7600 -174 1037 -3.5540 0.3228 1.7600 -174 1038 -3.5204 0.3365 1.7600 -174 1039 -3.4881 0.3569 1.7600 -174 1040 -3.4596 0.3710 1.7600 -174 1041 -3.4321 0.3738 1.7600 -174 1042 -3.3985 0.3706 1.7600 -174 1043 -3.3631 0.3702 1.7600 -174 1044 -3.3260 0.3643 1.7600 -174 1045 -3.2913 0.3516 1.7600 -174 1046 -3.2544 0.3379 1.7600 -174 1047 -3.2193 0.3299 1.7600 -174 1048 -3.1791 0.3287 1.7600 -174 1049 -3.1359 0.3353 1.7600 -174 1050 -3.0820 0.3449 1.7600 -174 1051 -3.0252 0.3624 1.7600 -174 1052 -2.9734 0.3835 1.7600 -174 1053 -2.9302 0.3954 1.7600 -174 1054 -2.8886 0.4014 1.7600 -174 1055 -2.8454 0.3990 1.7600 -174 1056 -2.7993 0.3930 1.7600 -174 1057 -2.7555 0.3852 1.7600 -174 1058 -2.7123 0.3732 1.7600 -174 1059 -2.6724 0.3552 1.7600 -174 1060 -2.6308 0.3419 1.7600 -174 1061 -2.5863 0.3339 1.7600 -174 1062 -2.5404 0.3355 1.7600 -174 1063 -2.4979 0.3383 1.7600 -174 1064 -2.4543 0.3426 1.7600 -174 1065 -2.4062 0.3589 1.7600 -174 1066 -2.3603 0.3642 1.7600 -174 1067 -2.3164 0.3611 1.7600 -174 1068 -2.2716 0.3547 1.7600 -174 1069 -2.2191 0.3409 1.7600 -174 1070 -2.1709 0.3341 1.7600 -174 1071 -2.1215 0.3314 1.7600 -174 1072 -2.0729 0.3411 1.7600 -174 1073 -2.0203 0.3554 1.7600 -174 1074 -1.9700 0.3748 1.7600 -174 1075 -1.9151 0.3982 1.7600 -174 1076 -1.8521 0.4308 1.7600 -174 1077 -1.7870 0.4610 1.7600 -174 1078 -1.7308 0.4785 1.7600 -174 1079 -1.6792 0.4850 1.7600 -174 1080 -1.6323 0.4888 1.7600 -174 1081 -1.5881 0.4899 1.7600 -174 1082 -1.5443 0.4862 1.7600 -174 1083 -1.4969 0.4800 1.7600 -174 1084 -1.4470 0.4668 1.7600 -174 1085 -1.3976 0.4512 1.7600 -174 1086 -1.3482 0.4317 1.7600 -174 1087 -1.2983 0.4082 1.7600 -174 1088 -1.2443 0.3800 1.7600 -174 1089 -1.1902 0.3536 1.7600 -174 1090 -1.1411 0.3308 1.7600 -174 1091 -1.0906 0.3286 1.7600 -174 1092 -1.0463 0.3261 1.7600 -174 1093 -1.0020 0.3239 1.7600 -174 1094 -0.9483 0.3385 1.7600 -174 1095 -0.8941 0.3508 1.7600 -174 1096 -0.8394 0.3662 1.7600 -174 1097 -0.7859 0.3847 1.7600 -174 1098 -0.7318 0.4077 1.7600 -174 1099 -0.6810 0.4337 1.7600 -174 1100 -0.6326 0.4507 1.7600 -174 1101 -0.5885 0.4580 1.7600 -174 1102 -0.5403 0.4571 1.7600 -174 1103 -0.4930 0.4530 1.7600 -174 1104 -0.4432 0.4458 1.7600 -174 1105 -0.3930 0.4337 1.7600 -174 1106 -0.3423 0.4200 1.7600 -174 1107 -0.2886 0.4022 1.7600 -174 1108 -0.2330 0.3808 1.7600 -174 1109 -0.1793 0.3540 1.7600 -174 1110 -0.1304 0.3136 1.7600 -174 1111 -0.0763 0.3091 1.7600 -174 1112 -0.0273 0.2941 1.7600 -174 1113 0.0212 0.3122 1.7600 -174 1114 0.0607 0.3244 1.7600 -174 1115 0.0980 0.3394 1.7600 -174 1116 0.1435 0.3567 1.7600 -174 1117 0.1967 0.3787 1.7600 -174 1118 0.2522 0.4034 1.7600 -174 1119 0.3102 0.4315 1.7600 -174 1120 0.3694 0.4636 1.7600 -174 1121 0.4252 0.4884 1.7600 -174 1122 0.4687 0.5038 1.7600 -174 1123 0.5096 0.5116 1.7600 -174 1124 0.5496 0.5168 1.7600 -174 1125 0.5880 0.5207 1.7600 -174 1126 0.6296 0.5200 1.7600 -174 1127 0.6736 0.5155 1.7600 -174 1128 0.7193 0.5062 1.7600 -174 1129 0.7713 0.4912 1.7600 -174 1130 0.8271 0.4741 1.7600 -174 1131 0.8869 0.4548 1.7600 -174 1132 0.9492 0.4323 1.7600 -174 1133 1.0101 0.4093 1.7600 -174 1134 1.0755 0.3875 1.7600 -174 1135 1.1405 0.3773 1.7600 -174 1136 1.2026 0.3776 1.7600 -174 1137 1.2616 0.3826 1.7600 -174 1138 1.3182 0.3908 1.7600 -174 1139 1.3785 0.4020 1.7600 -174 1140 1.4391 0.4188 1.7600 -174 1141 1.5022 0.4409 1.7600 -174 1142 1.5650 0.4680 1.7600 -174 1143 1.6259 0.4898 1.7600 -174 1144 1.6787 0.4990 1.7600 -174 1145 1.7349 0.5015 1.7600 -174 1146 1.7879 0.5088 1.7600 -174 1147 1.8411 0.5101 1.7600 -174 1148 1.8913 0.5116 1.7600 -174 1149 1.9443 0.5067 1.7600 -174 1150 1.9973 0.4953 1.7600 -174 1151 2.0541 0.4775 1.7600 -174 1152 2.1148 0.4588 1.7600 -174 1153 2.1755 0.4408 1.7600 -174 1154 2.2378 0.4273 1.7600 -174 1155 2.3025 0.4240 1.7600 -174 1156 2.3669 0.4303 1.7600 -174 1157 2.4277 0.4438 1.7600 -174 1158 2.4859 0.4649 1.7600 -174 1159 2.5441 0.4914 1.7600 -174 1160 2.6028 0.5182 1.7600 -174 1161 2.6647 0.5463 1.7600 -174 1162 2.7188 0.5623 1.7600 -174 1163 2.7719 0.5630 1.7600 -174 1164 2.8244 0.5582 1.7600 -174 1165 2.8740 0.5485 1.7600 -174 1166 2.9290 0.5382 1.7600 -174 1167 2.9833 0.5214 1.7600 -174 1168 3.0349 0.5018 1.7600 -174 1169 3.0905 0.4751 1.7600 -174 1170 3.1489 0.4482 1.7600 -174 1171 3.2115 0.4193 1.7600 -174 1172 3.2756 0.3942 1.7600 -174 1173 3.3380 0.3763 1.7600 -174 1174 3.3975 0.3677 1.7600 -174 1175 3.4536 0.3661 1.7600 -174 1176 3.5081 0.3706 1.7600 -174 1177 3.5632 0.3812 1.7600 -174 1178 3.6196 0.3971 1.7600 -174 1179 3.6804 0.4204 1.7600 -174 1180 3.7475 0.4506 1.7600 -174 1181 3.8163 0.4830 1.7600 -174 1182 3.8801 0.5068 1.7600 -174 1183 3.9443 0.5179 1.7600 -174 1184 4.0040 0.5252 1.7600 -174 1185 4.0608 0.5335 1.7600 -174 1186 4.1191 0.5386 1.7600 -174 1187 4.1799 0.5400 1.7600 -174 1188 4.2427 0.5283 1.7600 -174 1189 4.3091 0.5079 1.7600 -174 1190 4.3747 0.4833 1.7600 -174 1191 4.4433 0.4560 1.7600 -174 1192 4.5206 0.4305 1.7600 -174 1193 4.6052 0.4148 1.7600 -174 1194 4.6893 0.4095 1.7600 -174 1195 4.7649 0.4097 1.7600 -174 1196 4.8420 0.4105 1.7600 -174 1197 4.9251 0.4144 1.7600 -174 1198 5.0189 0.4245 1.7600 -174 1199 5.1099 0.4396 1.7600 -174 1200 5.1997 0.4429 1.7600 -174 1201 5.2880 0.4281 1.7600 -174 1202 5.3722 0.4038 1.7600 -174 1203 5.4426 0.3821 1.7600 -174 1204 5.5122 0.3640 1.7600 -174 1205 5.5854 0.3481 1.7600 -174 1206 5.6673 0.3284 1.7600 -174 1207 5.7587 0.3029 1.7600 -174 1208 5.8507 0.2758 1.7600 -174 1209 5.9484 0.2537 1.7600 -175 967 -7.7823 1.2422 1.7600 -175 968 -7.7224 1.2218 1.7600 -175 969 -7.6607 1.2001 1.7600 -175 970 -7.6007 1.1786 1.7600 -175 971 -7.5441 1.1561 1.7600 -175 972 -7.4920 1.1324 1.7600 -175 973 -7.4456 1.1120 1.7600 -175 974 -7.4004 1.0916 1.7600 -175 975 -7.3503 1.0758 1.7600 -175 976 -7.2940 1.0629 1.7600 -175 977 -7.2338 1.0515 1.7600 -175 978 -7.1723 1.0403 1.7600 -175 979 -7.1098 1.0309 1.7600 -175 980 -7.0525 1.0241 1.7600 -175 981 -6.9989 1.0170 1.7600 -175 982 -6.9492 1.0114 1.7600 -175 983 -6.9041 1.0010 1.7600 -175 984 -6.8600 0.9874 1.7600 -175 985 -6.8184 0.9709 1.7600 -175 986 -6.7745 0.9555 1.7600 -175 987 -6.7282 0.9408 1.7600 -175 988 -6.6787 0.9286 1.7600 -175 989 -6.6302 0.9192 1.7600 -175 990 -6.5866 0.9115 1.7600 -175 991 -6.5403 0.9031 1.7600 -175 992 -6.4949 0.8996 1.7600 -175 993 -6.4511 0.8944 1.7600 -175 994 -6.4059 0.8931 1.7600 -175 995 -6.3634 0.8923 1.7600 -175 996 -6.3196 0.8916 1.7600 -175 997 -6.2786 0.8906 1.7600 -175 998 -6.2409 0.8902 1.7600 -175 999 -6.2019 0.8929 1.7600 -175 1000 -6.1684 0.8982 1.7600 -175 1001 -6.1356 0.9003 1.7600 -175 1002 -6.1061 0.8997 1.7600 -175 1003 -6.0775 0.8991 1.7600 -175 1004 -6.0452 0.8949 1.7600 -175 1005 -6.0163 0.8901 1.7600 -175 1006 -5.9880 0.8830 1.7600 -175 1007 -5.9574 0.8749 1.7600 -175 1008 -5.9272 0.8635 1.7600 -175 1009 -5.8968 0.8504 1.7600 -175 1010 -5.8625 0.8345 1.7600 -175 1011 -5.8320 0.8201 1.7600 -175 1012 -5.7990 0.8078 1.7600 -175 1013 -5.7665 0.7963 1.7600 -175 1014 -5.7294 0.7904 1.7600 -175 1015 -5.6911 0.7907 1.7600 -175 1016 -5.6526 0.7938 1.7600 -175 1017 -5.6159 0.7961 1.7600 -175 1018 -5.5770 0.8010 1.7600 -175 1019 -5.5388 0.8049 1.7600 -175 1020 -5.4996 0.8076 1.7600 -175 1021 -5.4634 0.8105 1.7600 -175 1022 -5.4289 0.8135 1.7600 -175 1023 -5.3970 0.8147 1.7600 -175 1024 -5.3646 0.8113 1.7600 -175 1025 -5.3301 0.8069 1.7600 -175 1026 -5.2966 0.8029 1.7600 -175 1027 -5.2642 0.7976 1.7600 -175 1028 -5.2296 0.7902 1.7600 -175 1029 -5.1982 0.7866 1.7600 -175 1030 -5.1674 0.7830 1.7600 -175 1031 -5.1396 0.7788 1.7600 -175 1032 -5.1074 0.7773 1.7600 -175 1033 -5.0744 0.7754 1.7600 -175 1034 -5.0430 0.7712 1.7600 -175 1035 -5.0154 0.7654 1.7600 -175 1036 -4.9850 0.7600 1.7600 -175 1037 -4.9491 0.7594 1.7600 -175 1038 -4.9073 0.7613 1.7600 -175 1039 -4.8680 0.7624 1.7600 -175 1040 -4.8257 0.7684 1.7600 -175 1041 -4.7857 0.7774 1.7600 -175 1042 -4.7454 0.7844 1.7600 -175 1043 -4.7086 0.7880 1.7600 -175 1044 -4.6748 0.7904 1.7600 -175 1045 -4.6382 0.7876 1.7600 -175 1046 -4.6062 0.7848 1.7600 -175 1047 -4.5733 0.7771 1.7600 -175 1048 -4.5392 0.7699 1.7600 -175 1049 -4.5046 0.7606 1.7600 -175 1050 -4.4681 0.7551 1.7600 -175 1051 -4.4301 0.7537 1.7600 -175 1052 -4.3906 0.7544 1.7600 -175 1053 -4.3502 0.7567 1.7600 -175 1054 -4.3099 0.7619 1.7600 -175 1055 -4.2696 0.7686 1.7600 -175 1056 -4.2330 0.7747 1.7600 -175 1057 -4.1939 0.7830 1.7600 -175 1058 -4.1543 0.7922 1.7600 -175 1059 -4.1158 0.8038 1.7600 -175 1060 -4.0799 0.8143 1.7600 -175 1061 -4.0484 0.8196 1.7600 -175 1062 -4.0179 0.8190 1.7600 -175 1063 -3.9848 0.8171 1.7600 -175 1064 -3.9492 0.8176 1.7600 -175 1065 -3.9129 0.8186 1.7600 -175 1066 -3.8772 0.8189 1.7600 -175 1067 -3.8388 0.8193 1.7600 -175 1068 -3.8023 0.8188 1.7600 -175 1069 -3.7635 0.8162 1.7600 -175 1070 -3.7276 0.8141 1.7600 -175 1071 -3.6897 0.8141 1.7600 -175 1072 -3.6473 0.8148 1.7600 -175 1073 -3.6160 0.8167 1.7600 -175 1074 -3.5794 0.8170 1.7600 -175 1075 -3.5373 0.8181 1.7600 -175 1076 -3.5028 0.8185 1.7600 -175 1077 -3.4642 0.8175 1.7600 -175 1078 -3.4246 0.8151 1.7600 -175 1079 -3.3855 0.8127 1.7600 -175 1080 -3.3447 0.8113 1.7600 -175 1081 -3.3015 0.8085 1.7600 -175 1082 -3.2582 0.8089 1.7600 -175 1083 -3.2163 0.8056 1.7600 -175 1084 -3.1762 0.8040 1.7600 -175 1085 -3.1345 0.8025 1.7600 -175 1086 -3.0930 0.8039 1.7600 -175 1087 -3.0521 0.8054 1.7600 -175 1088 -3.0073 0.8077 1.7600 -175 1089 -2.9613 0.8129 1.7600 -175 1090 -2.9118 0.8165 1.7600 -175 1091 -2.8603 0.8199 1.7600 -175 1092 -2.8113 0.8181 1.7600 -175 1093 -2.7610 0.8156 1.7600 -175 1094 -2.7109 0.8116 1.7600 -175 1095 -2.6616 0.8052 1.7600 -175 1096 -2.6144 0.8043 1.7600 -175 1097 -2.5672 0.8047 1.7600 -175 1098 -2.5229 0.8071 1.7600 -175 1099 -2.4759 0.8081 1.7600 -175 1100 -2.4279 0.8089 1.7600 -175 1101 -2.3757 0.8094 1.7600 -175 1102 -2.3230 0.8093 1.7600 -175 1103 -2.2768 0.8056 1.7600 -175 1104 -2.2336 0.7977 1.7600 -175 1105 -2.1919 0.7843 1.7600 -175 1106 -2.1423 0.7642 1.7600 -175 1107 -2.0927 0.7443 1.7600 -175 1108 -2.0400 0.7258 1.7600 -175 1109 -1.9915 0.7073 1.7600 -175 1110 -1.9400 0.6916 1.7600 -175 1111 -1.8826 0.6774 1.7600 -175 1112 -1.8318 0.6675 1.7600 -175 1113 -1.7780 0.6567 1.7600 -175 1114 -1.7188 0.6508 1.7600 -175 1115 -1.6565 0.6504 1.7600 -175 1116 -1.5891 0.6477 1.7600 -175 1117 -1.5263 0.6480 1.7600 -175 1118 -1.4629 0.6465 1.7600 -175 1119 -1.4000 0.6469 1.7600 -175 1120 -1.3360 0.6548 1.7600 -175 1121 -1.2777 0.6597 1.7600 -175 1122 -1.2248 0.6640 1.7600 -175 1123 -1.1763 0.6649 1.7600 -175 1124 -1.1280 0.6639 1.7600 -175 1125 -1.0853 0.6658 1.7600 -175 1126 -1.0419 0.6649 1.7600 -175 1127 -0.9962 0.6655 1.7600 -175 1128 -0.9501 0.6652 1.7600 -175 1129 -0.9024 0.6637 1.7600 -175 1130 -0.8555 0.6594 1.7600 -175 1131 -0.8030 0.6527 1.7600 -175 1132 -0.7514 0.6516 1.7600 -175 1133 -0.6985 0.6618 1.7600 -175 1134 -0.6450 0.6793 1.7600 -175 1135 -0.5898 0.6979 1.7600 -175 1136 -0.5390 0.7181 1.7600 -175 1137 -0.4856 0.7371 1.7600 -175 1138 -0.4360 0.7537 1.7600 -175 1139 -0.3819 0.7685 1.7600 -175 1140 -0.3284 0.7838 1.7600 -175 1141 -0.2776 0.8005 1.7600 -175 1142 -0.2379 0.8171 1.7600 -175 1143 -0.1956 0.8350 1.7600 -175 1144 -0.1506 0.8467 1.7600 -175 1145 -0.1089 0.8555 1.7600 -175 1146 -0.0658 0.8636 1.7600 -175 1147 -0.0231 0.8682 1.7600 -175 1148 0.0199 0.8693 1.7600 -175 1149 0.0681 0.8677 1.7600 -175 1150 0.1120 0.8580 1.7600 -175 1151 0.1589 0.8455 1.7600 -175 1152 0.2066 0.8359 1.7600 -175 1153 0.2568 0.8389 1.7600 -175 1154 0.3118 0.8518 1.7600 -175 1155 0.3685 0.8706 1.7600 -175 1156 0.4236 0.8916 1.7600 -175 1157 0.4821 0.9089 1.7600 -175 1158 0.5384 0.9237 1.7600 -175 1159 0.5968 0.9378 1.7600 -175 1160 0.6555 0.9457 1.7600 -175 1161 0.7114 0.9456 1.7600 -175 1162 0.7687 0.9386 1.7600 -175 1163 0.8259 0.9280 1.7600 -175 1164 0.8838 0.9142 1.7600 -175 1165 0.9440 0.8956 1.7600 -175 1166 1.0062 0.8753 1.7600 -175 1167 1.0679 0.8559 1.7600 -175 1168 1.1269 0.8404 1.7600 -175 1169 1.1841 0.8299 1.7600 -175 1170 1.2415 0.8273 1.7600 -175 1171 1.2997 0.8283 1.7600 -175 1172 1.3551 0.8313 1.7600 -175 1173 1.4125 0.8401 1.7600 -175 1174 1.4694 0.8531 1.7600 -175 1175 1.5286 0.8709 1.7600 -175 1176 1.5830 0.8872 1.7600 -175 1177 1.6401 0.8964 1.7600 -175 1178 1.6939 0.9009 1.7600 -175 1179 1.7510 0.8976 1.7600 -175 1180 1.8084 0.8892 1.7600 -175 1181 1.8661 0.8765 1.7600 -175 1182 1.9237 0.8600 1.7600 -175 1183 1.9806 0.8408 1.7600 -175 1184 2.0370 0.8251 1.7600 -175 1185 2.0903 0.8140 1.7600 -175 1186 2.1408 0.8086 1.7600 -175 1187 2.1860 0.8036 1.7600 -175 1188 2.2342 0.7963 1.7600 -175 1189 2.2792 0.7884 1.7600 -175 1190 2.3265 0.7832 1.7600 -175 1191 2.3717 0.7761 1.7600 -175 1192 2.4328 0.7700 1.7600 -175 1193 2.4688 0.7702 1.7600 -175 1194 2.5274 0.7566 1.7600 -175 1195 2.5814 0.7462 1.7600 -175 1196 2.6236 0.7421 1.7600 -175 1197 2.6829 0.7366 1.7600 -175 1198 2.7395 0.7370 1.7600 -175 1199 2.7974 0.7360 1.7600 -175 1200 2.8487 0.7498 1.7600 -175 1201 2.9091 0.7542 1.7600 -175 1202 2.9647 0.7596 1.7600 -175 1203 3.0261 0.7615 1.7600 -175 1204 3.1026 0.7614 1.7600 -175 1205 3.1516 0.7646 1.7600 -175 1206 3.2074 0.7638 1.7600 -175 1207 3.2613 0.7609 1.7600 -175 1208 3.3138 0.7582 1.7600 -175 1209 3.3708 0.7560 1.7600 -175 1210 3.4357 0.7505 1.7600 -175 1211 3.4924 0.7537 1.7600 -175 1212 3.5290 0.7606 1.7600 -175 1213 3.5764 0.7611 1.7600 -175 1214 3.6275 0.7519 1.7600 -175 1215 3.6795 0.7375 1.7600 -175 1216 3.7370 0.7261 1.7600 -175 1217 3.8019 0.7207 1.7600 -175 1218 3.8686 0.7182 1.7600 -175 1219 3.9324 0.7202 1.7600 -175 1220 3.9999 0.7191 1.7600 -175 1221 4.0689 0.7162 1.7600 -175 1222 4.1349 0.7132 1.7600 -175 1223 4.2014 0.7118 1.7600 -175 1224 4.2655 0.7062 1.7600 -175 1225 4.3286 0.7018 1.7600 -175 1226 4.3905 0.7011 1.7600 -175 1227 4.4557 0.7033 1.7600 -175 1228 4.5251 0.7087 1.7600 -175 1229 4.5985 0.7111 1.7600 -175 1230 4.6748 0.7118 1.7600 -175 1231 4.7496 0.7124 1.7600 -175 1232 4.8192 0.7082 1.7600 -175 1233 4.8853 0.6943 1.7600 -175 1234 4.9460 0.6759 1.7600 -175 1235 5.0045 0.6556 1.7600 -175 1236 5.0630 0.6375 1.7600 -175 1237 5.1226 0.6241 1.7600 -175 1238 5.1845 0.6121 1.7600 -175 1239 5.2525 0.6059 1.7600 -175 1240 5.3240 0.6006 1.7600 -175 1241 5.4008 0.5952 1.7600 -175 1242 5.4780 0.5929 1.7600 -175 1243 5.5472 0.5936 1.7600 -175 1244 5.6092 0.5919 1.7600 -175 1245 5.6692 0.5872 1.7600 -175 1246 5.7283 0.5804 1.7600 -175 1247 5.7893 0.5741 1.7600 -175 1248 5.8568 0.5677 1.7600 -175 1249 5.9256 0.5621 1.7600 -176 958 -7.8327 2.0196 1.7600 -176 959 -7.7752 2.0166 1.7600 -176 960 -7.7234 2.0117 1.7600 -176 961 -7.6794 2.0063 1.7600 -176 962 -7.6382 2.0023 1.7600 -176 963 -7.5965 2.0010 1.7600 -176 964 -7.5539 2.0002 1.7600 -176 965 -7.5107 1.9962 1.7600 -176 966 -7.4638 1.9910 1.7600 -176 967 -7.4123 1.9851 1.7600 -176 968 -7.3574 1.9810 1.7600 -176 969 -7.3053 1.9804 1.7600 -176 970 -7.2576 1.9843 1.7600 -176 971 -7.2097 1.9883 1.7600 -176 972 -7.1598 1.9882 1.7600 -176 973 -7.1073 1.9831 1.7600 -176 974 -7.0512 1.9759 1.7600 -176 975 -6.9920 1.9689 1.7600 -176 976 -6.9307 1.9626 1.7600 -176 977 -6.8707 1.9544 1.7600 -176 978 -6.8147 1.9432 1.7600 -176 979 -6.7637 1.9339 1.7600 -176 980 -6.7115 1.9233 1.7600 -176 981 -6.6559 1.9161 1.7600 -176 982 -6.6020 1.9112 1.7600 -176 983 -6.5486 1.9079 1.7600 -176 984 -6.4944 1.9046 1.7600 -176 985 -6.4374 1.8971 1.7600 -176 986 -6.3798 1.8935 1.7600 -176 987 -6.3291 1.8893 1.7600 -176 988 -6.2810 1.8876 1.7600 -176 989 -6.2389 1.8861 1.7600 -176 990 -6.2008 1.8781 1.7600 -176 991 -6.1611 1.8668 1.7600 -176 992 -6.1258 1.8588 1.7600 -176 993 -6.0922 1.8471 1.7600 -176 994 -6.0644 1.8362 1.7600 -176 995 -6.0417 1.8215 1.7600 -176 996 -6.0260 1.8055 1.7600 -176 997 -6.0110 1.7922 1.7600 -176 998 -5.9920 1.7860 1.7600 -176 999 -5.9656 1.7824 1.7600 -176 1000 -5.9335 1.7789 1.7600 -176 1001 -5.8963 1.7721 1.7600 -176 1002 -5.8574 1.7697 1.7600 -176 1003 -5.8121 1.7704 1.7600 -176 1004 -5.7642 1.7759 1.7600 -176 1005 -5.7276 1.7832 1.7600 -176 1006 -5.6968 1.7911 1.7600 -176 1007 -5.6664 1.7930 1.7600 -176 1008 -5.6345 1.7899 1.7600 -176 1009 -5.6015 1.7832 1.7600 -176 1010 -5.5698 1.7747 1.7600 -176 1011 -5.5367 1.7640 1.7600 -176 1012 -5.5046 1.7519 1.7600 -176 1013 -5.4761 1.7399 1.7600 -176 1014 -5.4496 1.7262 1.7600 -176 1015 -5.4237 1.7077 1.7600 -176 1016 -5.3929 1.6896 1.7600 -176 1017 -5.3581 1.6717 1.7600 -176 1018 -5.3228 1.6568 1.7600 -176 1019 -5.2825 1.6399 1.7600 -176 1020 -5.2386 1.6254 1.7600 -176 1021 -5.1901 1.6134 1.7600 -176 1022 -5.1402 1.6054 1.7600 -176 1023 -5.0939 1.6015 1.7600 -176 1024 -5.0514 1.6012 1.7600 -176 1025 -5.0096 1.6010 1.7600 -176 1026 -4.9710 1.6057 1.7600 -176 1027 -4.9325 1.6113 1.7600 -176 1028 -4.8929 1.6182 1.7600 -176 1029 -4.8492 1.6194 1.7600 -176 1030 -4.8068 1.6145 1.7600 -176 1031 -4.7663 1.6053 1.7600 -176 1032 -4.7280 1.5950 1.7600 -176 1033 -4.6876 1.5814 1.7600 -176 1034 -4.6450 1.5638 1.7600 -176 1035 -4.6085 1.5439 1.7600 -176 1036 -4.5744 1.5226 1.7600 -176 1037 -4.5412 1.5048 1.7600 -176 1038 -4.5030 1.4921 1.7600 -176 1039 -4.4641 1.4832 1.7600 -176 1040 -4.4250 1.4749 1.7600 -176 1041 -4.3935 1.4715 1.7600 -176 1042 -4.3663 1.4754 1.7600 -176 1043 -4.3305 1.4788 1.7600 -176 1044 -4.2999 1.4806 1.7600 -176 1045 -4.2707 1.4874 1.7600 -176 1046 -4.2365 1.4982 1.7600 -176 1047 -4.1998 1.5016 1.7600 -176 1048 -4.1597 1.5007 1.7600 -176 1049 -4.1198 1.4944 1.7600 -176 1050 -4.0798 1.4866 1.7600 -176 1051 -4.0423 1.4773 1.7600 -176 1052 -4.0002 1.4663 1.7600 -176 1053 -3.9607 1.4534 1.7600 -176 1054 -3.9206 1.4385 1.7600 -176 1055 -3.8789 1.4205 1.7600 -176 1056 -3.8427 1.4017 1.7600 -176 1057 -3.8072 1.3851 1.7600 -176 1058 -3.7698 1.3716 1.7600 -176 1059 -3.7339 1.3621 1.7600 -176 1060 -3.6993 1.3564 1.7600 -176 1061 -3.6630 1.3524 1.7600 -176 1062 -3.6273 1.3522 1.7600 -176 1063 -3.5916 1.3582 1.7600 -176 1064 -3.5502 1.3683 1.7600 -176 1065 -3.5124 1.3813 1.7600 -176 1066 -3.4747 1.3998 1.7600 -176 1067 -3.4314 1.4173 1.7600 -176 1068 -3.3896 1.4284 1.7600 -176 1069 -3.3450 1.4325 1.7600 -176 1070 -3.3011 1.4338 1.7600 -176 1071 -3.2590 1.4315 1.7600 -176 1072 -3.2173 1.4281 1.7600 -176 1073 -3.1727 1.4233 1.7600 -176 1074 -3.1291 1.4137 1.7600 -176 1075 -3.0858 1.3955 1.7600 -176 1076 -3.0422 1.3727 1.7600 -176 1077 -3.0036 1.3576 1.7600 -176 1078 -2.9652 1.3505 1.7600 -176 1079 -2.9241 1.3499 1.7600 -176 1080 -2.8809 1.3503 1.7600 -176 1081 -2.8406 1.3546 1.7600 -176 1082 -2.7999 1.3610 1.7600 -176 1083 -2.7598 1.3721 1.7600 -176 1084 -2.7205 1.3868 1.7600 -176 1085 -2.6806 1.4075 1.7600 -176 1086 -2.6398 1.4242 1.7600 -176 1087 -2.5937 1.4353 1.7600 -176 1088 -2.5474 1.4434 1.7600 -176 1089 -2.4991 1.4469 1.7600 -176 1090 -2.4506 1.4499 1.7600 -176 1091 -2.4024 1.4538 1.7600 -176 1092 -2.3524 1.4526 1.7600 -176 1093 -2.3013 1.4479 1.7600 -176 1094 -2.2460 1.4397 1.7600 -176 1095 -2.1885 1.4250 1.7600 -176 1096 -2.1283 1.4123 1.7600 -176 1097 -2.0727 1.4105 1.7600 -176 1098 -2.0245 1.4131 1.7600 -176 1099 -1.9771 1.4169 1.7600 -176 1100 -1.9308 1.4177 1.7600 -176 1101 -1.8827 1.4199 1.7600 -176 1102 -1.8345 1.4255 1.7600 -176 1103 -1.7859 1.4375 1.7600 -176 1104 -1.7369 1.4498 1.7600 -176 1105 -1.6876 1.4623 1.7600 -176 1106 -1.6376 1.4705 1.7600 -176 1107 -1.5842 1.4724 1.7600 -176 1108 -1.5305 1.4713 1.7600 -176 1109 -1.4762 1.4705 1.7600 -176 1110 -1.4213 1.4702 1.7600 -176 1111 -1.3641 1.4670 1.7600 -176 1112 -1.3032 1.4559 1.7600 -176 1113 -1.2420 1.4392 1.7600 -176 1114 -1.1798 1.4181 1.7600 -176 1115 -1.1191 1.4106 1.7600 -176 1116 -1.0595 1.4101 1.7600 -176 1117 -0.9986 1.4165 1.7600 -176 1118 -0.9410 1.4218 1.7600 -176 1119 -0.8836 1.4255 1.7600 -176 1120 -0.8265 1.4312 1.7600 -176 1121 -0.7630 1.4354 1.7600 -176 1122 -0.7037 1.4471 1.7600 -176 1123 -0.6465 1.4629 1.7600 -176 1124 -0.5902 1.4765 1.7600 -176 1125 -0.5328 1.4841 1.7600 -176 1126 -0.4738 1.4865 1.7600 -176 1127 -0.4134 1.4860 1.7600 -176 1128 -0.3510 1.4841 1.7600 -176 1129 -0.2888 1.4800 1.7600 -176 1130 -0.2286 1.4726 1.7600 -176 1131 -0.1762 1.4603 1.7600 -176 1132 -0.1201 1.4415 1.7600 -176 1133 -0.0576 1.4197 1.7600 -176 1134 -0.0003 1.4144 1.7600 -176 1135 0.0538 1.4130 1.7600 -176 1136 0.1073 1.4116 1.7600 -176 1137 0.1609 1.4097 1.7600 -176 1138 0.2159 1.4082 1.7600 -176 1139 0.2726 1.4076 1.7600 -176 1140 0.3297 1.4123 1.7600 -176 1141 0.3865 1.4200 1.7600 -176 1142 0.4427 1.4271 1.7600 -176 1143 0.4977 1.4294 1.7600 -176 1144 0.5551 1.4251 1.7600 -176 1145 0.6110 1.4191 1.7600 -176 1146 0.6679 1.4099 1.7600 -176 1147 0.7245 1.4006 1.7600 -176 1148 0.7856 1.3930 1.7600 -176 1149 0.8477 1.3814 1.7600 -176 1150 0.9089 1.3672 1.7600 -176 1151 0.9695 1.3515 1.7600 -176 1152 1.0280 1.3417 1.7600 -176 1153 1.0873 1.3386 1.7600 -176 1154 1.1406 1.3429 1.7600 -176 1155 1.1919 1.3458 1.7600 -176 1156 1.2454 1.3495 1.7600 -176 1157 1.2995 1.3537 1.7600 -176 1158 1.3532 1.3594 1.7600 -176 1159 1.4079 1.3676 1.7600 -176 1160 1.4629 1.3776 1.7600 -176 1161 1.5191 1.3854 1.7600 -176 1162 1.5770 1.3891 1.7600 -176 1163 1.6365 1.3874 1.7600 -176 1164 1.6929 1.3832 1.7600 -176 1165 1.7483 1.3802 1.7600 -176 1166 1.8054 1.3753 1.7600 -176 1167 1.8636 1.3697 1.7600 -176 1168 1.9219 1.3572 1.7600 -176 1169 1.9789 1.3418 1.7600 -176 1170 2.0394 1.3276 1.7600 -176 1171 2.0926 1.3235 1.7600 -176 1172 2.1463 1.3308 1.7600 -176 1173 2.1958 1.3429 1.7600 -176 1174 2.2456 1.3560 1.7600 -176 1175 2.2917 1.3735 1.7600 -176 1176 2.3408 1.3924 1.7600 -176 1177 2.3896 1.4144 1.7600 -176 1178 2.4415 1.4363 1.7600 -176 1179 2.4937 1.4612 1.7600 -176 1180 2.5504 1.4853 1.7600 -176 1181 2.6061 1.5038 1.7600 -176 1182 2.6614 1.5179 1.7600 -176 1183 2.7159 1.5239 1.7600 -176 1184 2.7701 1.5274 1.7600 -176 1185 2.8250 1.5274 1.7600 -176 1186 2.8821 1.5214 1.7600 -176 1187 2.9380 1.5054 1.7600 -176 1188 2.9988 1.4836 1.7600 -176 1189 3.0608 1.4617 1.7600 -176 1190 3.1221 1.4494 1.7600 -176 1191 3.1823 1.4427 1.7600 -176 1192 3.2446 1.4420 1.7600 -176 1193 3.3092 1.4446 1.7600 -176 1194 3.3701 1.4476 1.7600 -176 1195 3.4340 1.4526 1.7600 -176 1196 3.4965 1.4630 1.7600 -176 1197 3.5605 1.4797 1.7600 -176 1198 3.6228 1.4983 1.7600 -176 1199 3.6910 1.5183 1.7600 -176 1200 3.7591 1.5327 1.7600 -176 1201 3.8273 1.5442 1.7600 -176 1202 3.8897 1.5543 1.7600 -176 1203 3.9503 1.5613 1.7600 -176 1204 4.0170 1.5633 1.7600 -176 1205 4.0871 1.5604 1.7600 -176 1206 4.1627 1.5545 1.7600 -176 1207 4.2376 1.5524 1.7600 -176 1208 4.3115 1.5566 1.7600 -176 1209 4.3837 1.5686 1.7600 -176 1210 4.4523 1.5817 1.7600 -176 1211 4.5158 1.5947 1.7600 -176 1212 4.5786 1.6111 1.7600 -176 1213 4.6438 1.6318 1.7600 -176 1214 4.7129 1.6585 1.7600 -176 1215 4.7882 1.6891 1.7600 -176 1216 4.8640 1.7204 1.7600 -176 1217 4.9443 1.7448 1.7600 -176 1218 5.0207 1.7597 1.7600 -176 1219 5.0954 1.7737 1.7600 -176 1220 5.1666 1.7920 1.7600 -176 1221 5.2334 1.8075 1.7600 -176 1222 5.3048 1.8178 1.7600 -176 1223 5.3779 1.8260 1.7600 -176 1224 5.4580 1.8378 1.7600 -176 1225 5.5434 1.8565 1.7600 -176 1226 5.6281 1.8806 1.7600 -176 1227 5.7066 1.9029 1.7600 -176 1228 5.7767 1.9224 1.7600 -176 1229 5.8418 1.9422 1.7600 -176 1230 5.9093 1.9669 1.7600 -177 970 -7.8168 0.7490 1.7600 -177 971 -7.7528 0.7099 1.7600 -177 972 -7.7010 0.6707 1.7600 -177 973 -7.6588 0.6338 1.7600 -177 974 -7.6221 0.6060 1.7600 -177 975 -7.5862 0.5889 1.7600 -177 976 -7.5474 0.5759 1.7600 -177 977 -7.5034 0.5657 1.7600 -177 978 -7.4533 0.5568 1.7600 -177 979 -7.3973 0.5507 1.7600 -177 980 -7.3366 0.5481 1.7600 -177 981 -7.2735 0.5489 1.7600 -177 982 -7.2108 0.5526 1.7600 -177 983 -7.1519 0.5580 1.7600 -177 984 -7.0936 0.5647 1.7600 -177 985 -7.0354 0.5675 1.7600 -177 986 -6.9791 0.5687 1.7600 -177 987 -6.9180 0.5624 1.7600 -177 988 -6.8558 0.5529 1.7600 -177 989 -6.7925 0.5401 1.7600 -177 990 -6.7312 0.5262 1.7600 -177 991 -6.6719 0.5083 1.7600 -177 992 -6.6172 0.4868 1.7600 -177 993 -6.5699 0.4589 1.7600 -177 994 -6.5287 0.4262 1.7600 -177 995 -6.4928 0.3924 1.7600 -177 996 -6.4591 0.3597 1.7600 -177 997 -6.4272 0.3370 1.7600 -177 998 -6.3949 0.3224 1.7600 -177 999 -6.3646 0.3155 1.7600 -177 1000 -6.3293 0.3102 1.7600 -177 1001 -6.2936 0.3094 1.7600 -177 1002 -6.2576 0.3111 1.7600 -177 1003 -6.2145 0.3146 1.7600 -177 1004 -6.1736 0.3228 1.7600 -177 1005 -6.1273 0.3348 1.7600 -177 1006 -6.0823 0.3503 1.7600 -177 1007 -6.0416 0.3668 1.7600 -177 1008 -5.9963 0.3822 1.7600 -177 1009 -5.9563 0.3963 1.7600 -177 1010 -5.9149 0.4034 1.7600 -177 1011 -5.8767 0.4103 1.7600 -177 1012 -5.8413 0.4137 1.7600 -177 1013 -5.8058 0.4111 1.7600 -177 1014 -5.7734 0.4075 1.7600 -177 1015 -5.7384 0.4013 1.7600 -177 1016 -5.7031 0.3911 1.7600 -177 1017 -5.6601 0.3790 1.7600 -177 1018 -5.6138 0.3601 1.7600 -177 1019 -5.5629 0.3352 1.7600 -177 1020 -5.5089 0.3116 1.7600 -177 1021 -5.4607 0.2854 1.7600 -177 1022 -5.4173 0.2611 1.7600 -177 1023 -5.3780 0.2422 1.7600 -177 1024 -5.3472 0.2310 1.7600 -177 1025 -5.3156 0.2226 1.7600 -177 1026 -5.2884 0.2205 1.7600 -177 1027 -5.2601 0.2202 1.7600 -177 1028 -5.2323 0.2220 1.7600 -177 1029 -5.2020 0.2275 1.7600 -177 1030 -5.1705 0.2340 1.7600 -177 1031 -5.1356 0.2436 1.7600 -177 1032 -5.1003 0.2547 1.7600 -177 1033 -5.0640 0.2694 1.7600 -177 1034 -5.0267 0.2865 1.7600 -177 1035 -4.9890 0.2998 1.7600 -177 1036 -4.9548 0.3093 1.7600 -177 1037 -4.9227 0.3174 1.7600 -177 1038 -4.8873 0.3254 1.7600 -177 1039 -4.8504 0.3319 1.7600 -177 1040 -4.8114 0.3395 1.7600 -177 1041 -4.7718 0.3453 1.7600 -177 1042 -4.7283 0.3537 1.7600 -177 1043 -4.6808 0.3587 1.7600 -177 1044 -4.6314 0.3632 1.7600 -177 1045 -4.5820 0.3620 1.7600 -177 1046 -4.5308 0.3548 1.7600 -177 1047 -4.4844 0.3440 1.7600 -177 1048 -4.4423 0.3341 1.7600 -177 1049 -4.4028 0.3276 1.7600 -177 1050 -4.3696 0.3254 1.7600 -177 1051 -4.3403 0.3245 1.7600 -177 1052 -4.3115 0.3258 1.7600 -177 1053 -4.2822 0.3293 1.7600 -177 1054 -4.2530 0.3309 1.7600 -177 1055 -4.2236 0.3326 1.7600 -177 1056 -4.1916 0.3365 1.7600 -177 1057 -4.1583 0.3405 1.7600 -177 1058 -4.1249 0.3457 1.7600 -177 1059 -4.0906 0.3562 1.7600 -177 1060 -4.0527 0.3653 1.7600 -177 1061 -4.0155 0.3774 1.7600 -177 1062 -3.9786 0.3885 1.7600 -177 1063 -3.9432 0.3974 1.7600 -177 1064 -3.9117 0.4067 1.7600 -177 1065 -3.8736 0.4120 1.7600 -177 1066 -3.8344 0.4141 1.7600 -177 1067 -3.7957 0.4100 1.7600 -177 1068 -3.7563 0.4069 1.7600 -177 1069 -3.7117 0.4005 1.7600 -177 1070 -3.6659 0.3922 1.7600 -177 1071 -3.6142 0.3815 1.7600 -177 1072 -3.5643 0.3628 1.7600 -177 1073 -3.5205 0.3410 1.7600 -177 1074 -3.4786 0.3178 1.7600 -177 1075 -3.4406 0.2978 1.7600 -177 1076 -3.4064 0.2854 1.7600 -177 1077 -3.3763 0.2795 1.7600 -177 1078 -3.3454 0.2766 1.7600 -177 1079 -3.3113 0.2756 1.7600 -177 1080 -3.2729 0.2755 1.7600 -177 1081 -3.2320 0.2786 1.7600 -177 1082 -3.1888 0.2847 1.7600 -177 1083 -3.1436 0.2915 1.7600 -177 1084 -3.0929 0.3023 1.7600 -177 1085 -3.0409 0.3173 1.7600 -177 1086 -2.9860 0.3352 1.7600 -177 1087 -2.9306 0.3542 1.7600 -177 1088 -2.8827 0.3679 1.7600 -177 1089 -2.8356 0.3813 1.7600 -177 1090 -2.7883 0.3869 1.7600 -177 1091 -2.7412 0.3857 1.7600 -177 1092 -2.6971 0.3830 1.7600 -177 1093 -2.6523 0.3824 1.7600 -177 1094 -2.6043 0.3842 1.7600 -177 1095 -2.5500 0.3854 1.7600 -177 1096 -2.4931 0.3839 1.7600 -177 1097 -2.4380 0.3734 1.7600 -177 1098 -2.3754 0.3582 1.7600 -177 1099 -2.3139 0.3366 1.7600 -177 1100 -2.2579 0.3156 1.7600 -177 1101 -2.2140 0.2978 1.7600 -177 1102 -2.1783 0.2926 1.7600 -177 1103 -2.1434 0.2933 1.7600 -177 1104 -2.1048 0.2987 1.7600 -177 1105 -2.0633 0.3031 1.7600 -177 1106 -2.0218 0.3090 1.7600 -177 1107 -1.9756 0.3137 1.7600 -177 1108 -1.9302 0.3207 1.7600 -177 1109 -1.8858 0.3298 1.7600 -177 1110 -1.8414 0.3400 1.7600 -177 1111 -1.7932 0.3539 1.7600 -177 1112 -1.7425 0.3672 1.7600 -177 1113 -1.6857 0.3728 1.7600 -177 1114 -1.6282 0.3689 1.7600 -177 1115 -1.5722 0.3575 1.7600 -177 1116 -1.5184 0.3415 1.7600 -177 1117 -1.4664 0.3228 1.7600 -177 1118 -1.4187 0.3040 1.7600 -177 1119 -1.3717 0.2846 1.7600 -177 1120 -1.3270 0.2691 1.7600 -177 1121 -1.2790 0.2616 1.7600 -177 1122 -1.2313 0.2609 1.7600 -177 1123 -1.1781 0.2658 1.7600 -177 1124 -1.1249 0.2724 1.7600 -177 1125 -1.0754 0.2810 1.7600 -177 1126 -1.0280 0.2905 1.7600 -177 1127 -0.9844 0.3015 1.7600 -177 1128 -0.9445 0.3174 1.7600 -177 1129 -0.9070 0.3277 1.7600 -177 1130 -0.8709 0.3363 1.7600 -177 1131 -0.8321 0.3402 1.7600 -177 1132 -0.7902 0.3442 1.7600 -177 1133 -0.7476 0.3479 1.7600 -177 1134 -0.6988 0.3487 1.7600 -177 1135 -0.6430 0.3478 1.7600 -177 1136 -0.5767 0.3400 1.7600 -177 1137 -0.5065 0.3252 1.7600 -177 1138 -0.4386 0.3074 1.7600 -177 1139 -0.3789 0.2929 1.7600 -177 1140 -0.3340 0.2876 1.7600 -177 1141 -0.2996 0.2884 1.7600 -177 1142 -0.2652 0.2939 1.7600 -177 1143 -0.2280 0.3021 1.7600 -177 1144 -0.1858 0.3098 1.7600 -177 1145 -0.1394 0.3181 1.7600 -177 1146 -0.0881 0.3281 1.7600 -177 1147 -0.0322 0.3400 1.7600 -177 1148 0.0246 0.3549 1.7600 -177 1149 0.0860 0.3721 1.7600 -177 1150 0.1459 0.3965 1.7600 -177 1151 0.2010 0.4224 1.7600 -177 1152 0.2467 0.4456 1.7600 -177 1153 0.2975 0.4671 1.7600 -177 1154 0.3553 0.4878 1.7600 -177 1155 0.4242 0.5021 1.7600 -177 1156 0.5028 0.5132 1.7600 -177 1157 0.5843 0.5146 1.7600 -177 1158 0.6617 0.5050 1.7600 -177 1159 0.7256 0.4854 1.7600 -177 1160 0.7811 0.4565 1.7600 -177 1161 0.8359 0.4265 1.7600 -177 1162 0.8806 0.4060 1.7600 -177 1163 0.9181 0.3950 1.7600 -177 1164 0.9542 0.3908 1.7600 -177 1165 0.9936 0.3908 1.7600 -177 1166 1.0339 0.3939 1.7600 -177 1167 1.0780 0.4019 1.7600 -177 1168 1.1242 0.4116 1.7600 -177 1169 1.1761 0.4205 1.7600 -177 1170 1.2315 0.4321 1.7600 -177 1171 1.2872 0.4427 1.7600 -177 1172 1.3462 0.4534 1.7600 -177 1173 1.4087 0.4628 1.7600 -177 1174 1.4702 0.4671 1.7600 -177 1175 1.5344 0.4647 1.7600 -177 1176 1.6001 0.4581 1.7600 -177 1177 1.6677 0.4445 1.7600 -177 1178 1.7354 0.4286 1.7600 -177 1179 1.8003 0.4105 1.7600 -177 1180 1.8674 0.3873 1.7600 -177 1181 1.9321 0.3623 1.7600 -177 1182 1.9966 0.3305 1.7600 -177 1183 2.0563 0.3030 1.7600 -177 1184 2.1114 0.2869 1.7600 -177 1185 2.1582 0.2807 1.7600 -177 1186 2.2100 0.2835 1.7600 -177 1187 2.2654 0.2891 1.7600 -177 1188 2.3214 0.2996 1.7600 -177 1189 2.3768 0.3107 1.7600 -177 1190 2.4329 0.3259 1.7600 -177 1191 2.4893 0.3428 1.7600 -177 1192 2.5451 0.3611 1.7600 -177 1193 2.6011 0.3794 1.7600 -177 1194 2.6571 0.3913 1.7600 -177 1195 2.7132 0.3966 1.7600 -177 1196 2.7680 0.3940 1.7600 -177 1197 2.8292 0.3895 1.7600 -177 1198 2.8902 0.3821 1.7600 -177 1199 2.9527 0.3692 1.7600 -177 1200 3.0183 0.3528 1.7600 -177 1201 3.0828 0.3343 1.7600 -177 1202 3.1452 0.3081 1.7600 -177 1203 3.2052 0.2816 1.7600 -177 1204 3.2609 0.2611 1.7600 -177 1205 3.3092 0.2487 1.7600 -177 1206 3.3496 0.2432 1.7600 -177 1207 3.3907 0.2405 1.7600 -177 1208 3.4342 0.2409 1.7600 -177 1209 3.4830 0.2446 1.7600 -177 1210 3.5331 0.2498 1.7600 -177 1211 3.5858 0.2617 1.7600 -177 1212 3.6422 0.2772 1.7600 -177 1213 3.7014 0.2955 1.7600 -177 1214 3.7671 0.3160 1.7600 -177 1215 3.8351 0.3383 1.7600 -177 1216 3.9047 0.3538 1.7600 -177 1217 3.9699 0.3575 1.7600 -177 1218 4.0347 0.3520 1.7600 -177 1219 4.1033 0.3421 1.7600 -177 1220 4.1689 0.3277 1.7600 -177 1221 4.2349 0.3077 1.7600 -177 1222 4.3005 0.2772 1.7600 -177 1223 4.3611 0.2360 1.7600 -177 1224 4.4264 0.1928 1.7600 -177 1225 4.4857 0.1588 1.7600 -177 1226 4.5375 0.1369 1.7600 -177 1227 4.5877 0.1240 1.7600 -177 1228 4.6409 0.1180 1.7600 -177 1229 4.7002 0.1162 1.7600 -177 1230 4.7665 0.1171 1.7600 -177 1231 4.8400 0.1220 1.7600 -177 1232 4.9118 0.1295 1.7600 -177 1233 4.9845 0.1406 1.7600 -177 1234 5.0590 0.1509 1.7600 -177 1235 5.1320 0.1628 1.7600 -177 1236 5.1997 0.1746 1.7600 -177 1237 5.2671 0.1798 1.7600 -177 1238 5.3342 0.1785 1.7600 -177 1239 5.3988 0.1707 1.7600 -177 1240 5.4611 0.1592 1.7600 -177 1241 5.5190 0.1415 1.7600 -177 1242 5.5758 0.1192 1.7600 -177 1243 5.6322 0.0923 1.7600 -177 1244 5.6921 0.0591 1.7600 -177 1245 5.7580 0.0212 1.7600 -177 1246 5.8274 -0.0153 1.7600 -177 1247 5.8930 -0.0413 1.7600 -177 1248 5.9567 -0.0564 1.7600 -178 964 -7.8052 1.7315 1.7600 -178 965 -7.7528 1.7244 1.7600 -178 966 -7.7043 1.7172 1.7600 -178 967 -7.6377 1.7146 1.7600 -178 968 -7.5726 1.7191 1.7600 -178 969 -7.5101 1.7277 1.7600 -178 970 -7.4508 1.7332 1.7600 -178 971 -7.3942 1.7319 1.7600 -178 972 -7.3387 1.7274 1.7600 -178 973 -7.2834 1.7213 1.7600 -178 974 -7.2281 1.7137 1.7600 -178 975 -7.1733 1.7040 1.7600 -178 976 -7.1203 1.6902 1.7600 -178 977 -7.0710 1.6722 1.7600 -178 978 -7.0255 1.6496 1.7600 -178 979 -6.9813 1.6237 1.7600 -178 980 -6.9375 1.5974 1.7600 -178 981 -6.8938 1.5744 1.7600 -178 982 -6.8484 1.5582 1.7600 -178 983 -6.8009 1.5453 1.7600 -178 984 -6.7505 1.5336 1.7600 -178 985 -6.6986 1.5243 1.7600 -178 986 -6.6454 1.5194 1.7600 -178 987 -6.5917 1.5190 1.7600 -178 988 -6.5418 1.5258 1.7600 -178 989 -6.4907 1.5316 1.7600 -178 990 -6.4439 1.5354 1.7600 -178 991 -6.4020 1.5312 1.7600 -178 992 -6.3614 1.5216 1.7600 -178 993 -6.3224 1.5073 1.7600 -178 994 -6.2824 1.4940 1.7600 -178 995 -6.2412 1.4798 1.7600 -178 996 -6.2023 1.4631 1.7600 -178 997 -6.1630 1.4431 1.7600 -178 998 -6.1229 1.4193 1.7600 -178 999 -6.0886 1.3986 1.7600 -178 1000 -6.0468 1.3801 1.7600 -178 1001 -6.0088 1.3632 1.7600 -178 1002 -5.9650 1.3526 1.7600 -178 1003 -5.9297 1.3428 1.7600 -178 1004 -5.8922 1.3378 1.7600 -178 1005 -5.8579 1.3313 1.7600 -178 1006 -5.8249 1.3260 1.7600 -178 1007 -5.7914 1.3225 1.7600 -178 1008 -5.7581 1.3221 1.7600 -178 1009 -5.7273 1.3236 1.7600 -178 1010 -5.6968 1.3291 1.7600 -178 1011 -5.6666 1.3389 1.7600 -178 1012 -5.6373 1.3470 1.7600 -178 1013 -5.6061 1.3518 1.7600 -178 1014 -5.5722 1.3538 1.7600 -178 1015 -5.5412 1.3553 1.7600 -178 1016 -5.5124 1.3552 1.7600 -178 1017 -5.4830 1.3514 1.7600 -178 1018 -5.4517 1.3441 1.7600 -178 1019 -5.4205 1.3286 1.7600 -178 1020 -5.3887 1.3090 1.7600 -178 1021 -5.3551 1.2818 1.7600 -178 1022 -5.3207 1.2514 1.7600 -178 1023 -5.2878 1.2199 1.7600 -178 1024 -5.2545 1.1898 1.7600 -178 1025 -5.2212 1.1658 1.7600 -178 1026 -5.1899 1.1471 1.7600 -178 1027 -5.1578 1.1329 1.7600 -178 1028 -5.1284 1.1252 1.7600 -178 1029 -5.0973 1.1193 1.7600 -178 1030 -5.0672 1.1192 1.7600 -178 1031 -5.0327 1.1227 1.7600 -178 1032 -4.9961 1.1355 1.7600 -178 1033 -4.9589 1.1548 1.7600 -178 1034 -4.9202 1.1810 1.7600 -178 1035 -4.8785 1.2124 1.7600 -178 1036 -4.8398 1.2428 1.7600 -178 1037 -4.7979 1.2719 1.7600 -178 1038 -4.7573 1.2891 1.7600 -178 1039 -4.7165 1.2961 1.7600 -178 1040 -4.6760 1.2925 1.7600 -178 1041 -4.6363 1.2755 1.7600 -178 1042 -4.5991 1.2562 1.7600 -178 1043 -4.5577 1.2278 1.7600 -178 1044 -4.5175 1.1986 1.7600 -178 1045 -4.4744 1.1640 1.7600 -178 1046 -4.4292 1.1218 1.7600 -178 1047 -4.3817 1.0746 1.7600 -178 1048 -4.3325 1.0225 1.7600 -178 1049 -4.2795 0.9689 1.7600 -178 1050 -4.2324 0.9286 1.7600 -178 1051 -4.1877 0.8972 1.7600 -178 1052 -4.1421 0.8773 1.7600 -178 1053 -4.1009 0.8640 1.7600 -178 1054 -4.0607 0.8536 1.7600 -178 1055 -4.0233 0.8461 1.7600 -178 1056 -3.9845 0.8444 1.7600 -178 1057 -3.9410 0.8442 1.7600 -178 1058 -3.9008 0.8496 1.7600 -178 1059 -3.8561 0.8596 1.7600 -178 1060 -3.8115 0.8751 1.7600 -178 1061 -3.7615 0.8912 1.7600 -178 1062 -3.7153 0.9107 1.7600 -178 1063 -3.6680 0.9327 1.7600 -178 1064 -3.6246 0.9508 1.7600 -178 1065 -3.5803 0.9651 1.7600 -178 1066 -3.5379 0.9754 1.7600 -178 1067 -3.5006 0.9859 1.7600 -178 1068 -3.4590 0.9955 1.7600 -178 1069 -3.4173 0.9990 1.7600 -178 1070 -3.3780 0.9985 1.7600 -178 1071 -3.3377 0.9920 1.7600 -178 1072 -3.2973 0.9789 1.7600 -178 1073 -3.2567 0.9646 1.7600 -178 1074 -3.2162 0.9513 1.7600 -178 1075 -3.1764 0.9439 1.7600 -178 1076 -3.1358 0.9396 1.7600 -178 1077 -3.0948 0.9403 1.7600 -178 1078 -3.0536 0.9384 1.7600 -178 1079 -3.0148 0.9427 1.7600 -178 1080 -2.9734 0.9453 1.7600 -178 1081 -2.9322 0.9556 1.7600 -178 1082 -2.8894 0.9724 1.7600 -178 1083 -2.8484 0.9921 1.7600 -178 1084 -2.8036 1.0160 1.7600 -178 1085 -2.7583 1.0386 1.7600 -178 1086 -2.7146 1.0583 1.7600 -178 1087 -2.6755 1.0720 1.7600 -178 1088 -2.6347 1.0821 1.7600 -178 1089 -2.5920 1.0857 1.7600 -178 1090 -2.5529 1.0851 1.7600 -178 1091 -2.5128 1.0828 1.7600 -178 1092 -2.4729 1.0764 1.7600 -178 1093 -2.4299 1.0662 1.7600 -178 1094 -2.3816 1.0471 1.7600 -178 1095 -2.3307 1.0239 1.7600 -178 1096 -2.2738 0.9945 1.7600 -178 1097 -2.2163 0.9631 1.7600 -178 1098 -2.1636 0.9379 1.7600 -178 1099 -2.1149 0.9181 1.7600 -178 1100 -2.0673 0.9042 1.7600 -178 1101 -2.0220 0.8945 1.7600 -178 1102 -1.9801 0.8925 1.7600 -178 1103 -1.9355 0.8980 1.7600 -178 1104 -1.8903 0.9126 1.7600 -178 1105 -1.8415 0.9382 1.7600 -178 1106 -1.7891 0.9732 1.7600 -178 1107 -1.7333 1.0103 1.7600 -178 1108 -1.6754 1.0478 1.7600 -178 1109 -1.6194 1.0802 1.7600 -178 1110 -1.5682 1.1050 1.7600 -178 1111 -1.5175 1.1266 1.7600 -178 1112 -1.4693 1.1424 1.7600 -178 1113 -1.4222 1.1516 1.7600 -178 1114 -1.3757 1.1563 1.7600 -178 1115 -1.3277 1.1576 1.7600 -178 1116 -1.2761 1.1547 1.7600 -178 1117 -1.2202 1.1472 1.7600 -178 1118 -1.1585 1.1401 1.7600 -178 1119 -1.0988 1.1323 1.7600 -178 1120 -1.0405 1.1253 1.7600 -178 1121 -0.9835 1.1202 1.7600 -178 1122 -0.9242 1.1160 1.7600 -178 1123 -0.8643 1.1115 1.7600 -178 1124 -0.8027 1.1076 1.7600 -178 1125 -0.7372 1.1073 1.7600 -178 1126 -0.6675 1.1082 1.7600 -178 1127 -0.5994 1.1142 1.7600 -178 1128 -0.5321 1.1273 1.7600 -178 1129 -0.4651 1.1421 1.7600 -178 1130 -0.3961 1.1458 1.7600 -178 1131 -0.3234 1.1428 1.7600 -178 1132 -0.2493 1.1356 1.7600 -178 1133 -0.1791 1.1282 1.7600 -178 1134 -0.1076 1.1190 1.7600 -178 1135 -0.0299 1.1031 1.7600 -178 1136 0.0462 1.0837 1.7600 -178 1137 0.1230 1.0603 1.7600 -178 1138 0.1884 1.0401 1.7600 -178 1139 0.2474 1.0269 1.7600 -178 1140 0.3003 1.0180 1.7600 -178 1141 0.3523 1.0118 1.7600 -178 1142 0.3996 1.0053 1.7600 -178 1143 0.4487 1.0018 1.7600 -178 1144 0.5014 1.0021 1.7600 -178 1145 0.5578 1.0058 1.7600 -178 1146 0.6147 1.0192 1.7600 -178 1147 0.6659 1.0419 1.7600 -178 1148 0.7179 1.0665 1.7600 -178 1149 0.7687 1.0893 1.7600 -178 1150 0.8188 1.0999 1.7600 -178 1151 0.8708 1.1030 1.7600 -178 1152 0.9235 1.1010 1.7600 -178 1153 0.9775 1.0983 1.7600 -178 1154 1.0297 1.0939 1.7600 -178 1155 1.0838 1.0827 1.7600 -178 1156 1.1381 1.0692 1.7600 -178 1157 1.1896 1.0560 1.7600 -178 1158 1.2402 1.0434 1.7600 -178 1159 1.2865 1.0337 1.7600 -178 1160 1.3313 1.0282 1.7600 -178 1161 1.3831 1.0256 1.7600 -178 1162 1.4325 1.0257 1.7600 -178 1163 1.4831 1.0278 1.7600 -178 1164 1.5365 1.0295 1.7600 -178 1165 1.5933 1.0352 1.7600 -178 1166 1.6493 1.0459 1.7600 -178 1167 1.7074 1.0608 1.7600 -178 1168 1.7627 1.0795 1.7600 -178 1169 1.8164 1.0940 1.7600 -178 1170 1.8691 1.1039 1.7600 -178 1171 1.9241 1.1061 1.7600 -178 1172 1.9785 1.1055 1.7600 -178 1173 2.0315 1.1034 1.7600 -178 1174 2.0824 1.0994 1.7600 -178 1175 2.1374 1.0913 1.7600 -178 1176 2.1923 1.0802 1.7600 -178 1177 2.2479 1.0651 1.7600 -178 1178 2.3086 1.0497 1.7600 -178 1179 2.3635 1.0382 1.7600 -178 1180 2.4179 1.0316 1.7600 -178 1181 2.4725 1.0318 1.7600 -178 1182 2.5319 1.0329 1.7600 -178 1183 2.5881 1.0390 1.7600 -178 1184 2.6449 1.0458 1.7600 -178 1185 2.7000 1.0583 1.7600 -178 1186 2.7532 1.0771 1.7600 -178 1187 2.8054 1.1049 1.7600 -178 1188 2.8607 1.1347 1.7600 -178 1189 2.9136 1.1595 1.7600 -178 1190 2.9641 1.1746 1.7600 -178 1191 3.0166 1.1837 1.7600 -178 1192 3.0683 1.1908 1.7600 -178 1193 3.1212 1.1971 1.7600 -178 1194 3.1717 1.2007 1.7600 -178 1195 3.2214 1.2026 1.7600 -178 1196 3.2744 1.2020 1.7600 -178 1197 3.3304 1.1972 1.7600 -178 1198 3.3858 1.1901 1.7600 -178 1199 3.4446 1.1871 1.7600 -178 1200 3.5002 1.1865 1.7600 -178 1201 3.5545 1.1909 1.7600 -178 1202 3.6100 1.1961 1.7600 -178 1203 3.6636 1.2012 1.7600 -178 1204 3.7178 1.2080 1.7600 -178 1205 3.7731 1.2163 1.7600 -178 1206 3.8304 1.2286 1.7600 -178 1207 3.8879 1.2474 1.7600 -178 1208 3.9571 1.2680 1.7600 -178 1209 4.0250 1.2908 1.7600 -178 1210 4.0952 1.3084 1.7600 -178 1211 4.1657 1.3194 1.7600 -178 1212 4.2352 1.3238 1.7600 -178 1213 4.3060 1.3274 1.7600 -178 1214 4.3754 1.3293 1.7600 -178 1215 4.4476 1.3321 1.7600 -178 1216 4.5201 1.3328 1.7600 -178 1217 4.6003 1.3336 1.7600 -178 1218 4.6866 1.3352 1.7600 -178 1219 4.7698 1.3415 1.7600 -178 1220 4.8498 1.3548 1.7600 -178 1221 4.9220 1.3672 1.7600 -178 1222 4.9913 1.3804 1.7600 -178 1223 5.0585 1.3971 1.7600 -178 1224 5.1274 1.4185 1.7600 -178 1225 5.2019 1.4486 1.7600 -178 1226 5.2870 1.4834 1.7600 -178 1227 5.3788 1.5174 1.7600 -178 1228 5.4681 1.5459 1.7600 -178 1229 5.5559 1.5662 1.7600 -178 1230 5.6341 1.5841 1.7600 -178 1231 5.7105 1.6025 1.7600 -178 1232 5.7841 1.6165 1.7600 -178 1233 5.8652 1.6306 1.7600 -179 978 -7.8296 1.3694 1.7600 -179 979 -7.7598 1.3611 1.7600 -179 980 -7.6884 1.3537 1.7600 -179 981 -7.6163 1.3485 1.7600 -179 982 -7.5472 1.3443 1.7600 -179 983 -7.4822 1.3403 1.7600 -179 984 -7.4264 1.3313 1.7600 -179 985 -7.3775 1.3128 1.7600 -179 986 -7.3309 1.2897 1.7600 -179 987 -7.2847 1.2654 1.7600 -179 988 -7.2359 1.2407 1.7600 -179 989 -7.1838 1.2146 1.7600 -179 990 -7.1309 1.1867 1.7600 -179 991 -7.0758 1.1617 1.7600 -179 992 -7.0234 1.1356 1.7600 -179 993 -6.9761 1.1100 1.7600 -179 994 -6.9292 1.0864 1.7600 -179 995 -6.8847 1.0745 1.7600 -179 996 -6.8384 1.0718 1.7600 -179 997 -6.7950 1.0692 1.7600 -179 998 -6.7489 1.0676 1.7600 -179 999 -6.7041 1.0639 1.7600 -179 1000 -6.6546 1.0624 1.7600 -179 1001 -6.6074 1.0591 1.7600 -179 1002 -6.5650 1.0607 1.7600 -179 1003 -6.5254 1.0624 1.7600 -179 1004 -6.4851 1.0632 1.7600 -179 1005 -6.4506 1.0609 1.7600 -179 1006 -6.4158 1.0545 1.7600 -179 1007 -6.3818 1.0462 1.7600 -179 1008 -6.3540 1.0382 1.7600 -179 1009 -6.3248 1.0309 1.7600 -179 1010 -6.3024 1.0249 1.7600 -179 1011 -6.2791 1.0166 1.7600 -179 1012 -6.2597 1.0074 1.7600 -179 1013 -6.2403 0.9996 1.7600 -179 1014 -6.2209 0.9893 1.7600 -179 1015 -6.2031 0.9788 1.7600 -179 1016 -6.1889 0.9666 1.7600 -179 1017 -6.1720 0.9546 1.7600 -179 1018 -6.1525 0.9426 1.7600 -179 1019 -6.1301 0.9359 1.7600 -179 1020 -6.1101 0.9343 1.7600 -179 1021 -6.0876 0.9355 1.7600 -179 1022 -6.0608 0.9372 1.7600 -179 1023 -6.0313 0.9426 1.7600 -179 1024 -5.9988 0.9504 1.7600 -179 1025 -5.9593 0.9628 1.7600 -179 1026 -5.9243 0.9771 1.7600 -179 1027 -5.8901 0.9961 1.7600 -179 1028 -5.8536 1.0100 1.7600 -179 1029 -5.8197 1.0212 1.7600 -179 1030 -5.7886 1.0269 1.7600 -179 1031 -5.7556 1.0268 1.7600 -179 1032 -5.7247 1.0231 1.7600 -179 1033 -5.6945 1.0161 1.7600 -179 1034 -5.6622 1.0105 1.7600 -179 1035 -5.6280 1.0036 1.7600 -179 1036 -5.5927 0.9923 1.7600 -179 1037 -5.5556 0.9781 1.7600 -179 1038 -5.5169 0.9573 1.7600 -179 1039 -5.4815 0.9380 1.7600 -179 1040 -5.4452 0.9164 1.7600 -179 1041 -5.4080 0.8982 1.7600 -179 1042 -5.3708 0.8831 1.7600 -179 1043 -5.3337 0.8742 1.7600 -179 1044 -5.2991 0.8691 1.7600 -179 1045 -5.2633 0.8660 1.7600 -179 1046 -5.2261 0.8636 1.7600 -179 1047 -5.1881 0.8614 1.7600 -179 1048 -5.1532 0.8622 1.7600 -179 1049 -5.1144 0.8655 1.7600 -179 1050 -5.0721 0.8710 1.7600 -179 1051 -5.0284 0.8807 1.7600 -179 1052 -4.9830 0.8920 1.7600 -179 1053 -4.9387 0.9023 1.7600 -179 1054 -4.8967 0.9104 1.7600 -179 1055 -4.8599 0.9153 1.7600 -179 1056 -4.8210 0.9182 1.7600 -179 1057 -4.7839 0.9168 1.7600 -179 1058 -4.7480 0.9132 1.7600 -179 1059 -4.7130 0.9081 1.7600 -179 1060 -4.6747 0.9004 1.7600 -179 1061 -4.6353 0.8933 1.7600 -179 1062 -4.5950 0.8856 1.7600 -179 1063 -4.5548 0.8788 1.7600 -179 1064 -4.5117 0.8710 1.7600 -179 1065 -4.4726 0.8628 1.7600 -179 1066 -4.4346 0.8550 1.7600 -179 1067 -4.3965 0.8505 1.7600 -179 1068 -4.3567 0.8480 1.7600 -179 1069 -4.3176 0.8477 1.7600 -179 1070 -4.2813 0.8501 1.7600 -179 1071 -4.2477 0.8552 1.7600 -179 1072 -4.2128 0.8623 1.7600 -179 1073 -4.1734 0.8739 1.7600 -179 1074 -4.1336 0.8871 1.7600 -179 1075 -4.0901 0.9018 1.7600 -179 1076 -4.0446 0.9200 1.7600 -179 1077 -4.0029 0.9369 1.7600 -179 1078 -3.9578 0.9504 1.7600 -179 1079 -3.9155 0.9575 1.7600 -179 1080 -3.8727 0.9592 1.7600 -179 1081 -3.8339 0.9583 1.7600 -179 1082 -3.7967 0.9524 1.7600 -179 1083 -3.7571 0.9473 1.7600 -179 1084 -3.7194 0.9407 1.7600 -179 1085 -3.6773 0.9345 1.7600 -179 1086 -3.6353 0.9275 1.7600 -179 1087 -3.5950 0.9195 1.7600 -179 1088 -3.5484 0.9087 1.7600 -179 1089 -3.5058 0.9010 1.7600 -179 1090 -3.4635 0.8933 1.7600 -179 1091 -3.4225 0.8891 1.7600 -179 1092 -3.3811 0.8853 1.7600 -179 1093 -3.3385 0.8880 1.7600 -179 1094 -3.3006 0.8925 1.7600 -179 1095 -3.2647 0.8991 1.7600 -179 1096 -3.2255 0.9041 1.7600 -179 1097 -3.1839 0.9124 1.7600 -179 1098 -3.1433 0.9241 1.7600 -179 1099 -3.1001 0.9387 1.7600 -179 1100 -3.0526 0.9574 1.7600 -179 1101 -3.0071 0.9723 1.7600 -179 1102 -2.9640 0.9866 1.7600 -179 1103 -2.9192 0.9936 1.7600 -179 1104 -2.8744 0.9969 1.7600 -179 1105 -2.8324 0.9972 1.7600 -179 1106 -2.7913 0.9951 1.7600 -179 1107 -2.7479 0.9921 1.7600 -179 1108 -2.7025 0.9884 1.7600 -179 1109 -2.6553 0.9825 1.7600 -179 1110 -2.6068 0.9739 1.7600 -179 1111 -2.5583 0.9656 1.7600 -179 1112 -2.5029 0.9546 1.7600 -179 1113 -2.4558 0.9382 1.7600 -179 1114 -2.4029 0.9269 1.7600 -179 1115 -2.3538 0.9167 1.7600 -179 1116 -2.3048 0.9096 1.7600 -179 1117 -2.2612 0.9065 1.7600 -179 1118 -2.2214 0.9049 1.7600 -179 1119 -2.1807 0.9050 1.7600 -179 1120 -2.1369 0.9072 1.7600 -179 1121 -2.0923 0.9109 1.7600 -179 1122 -2.0456 0.9165 1.7600 -179 1123 -1.9979 0.9263 1.7600 -179 1124 -1.9426 0.9354 1.7600 -179 1125 -1.8860 0.9469 1.7600 -179 1126 -1.8284 0.9536 1.7600 -179 1127 -1.7764 0.9600 1.7600 -179 1128 -1.7260 0.9597 1.7600 -179 1129 -1.6790 0.9593 1.7600 -179 1130 -1.6367 0.9537 1.7600 -179 1131 -1.5954 0.9488 1.7600 -179 1132 -1.5525 0.9426 1.7600 -179 1133 -1.5075 0.9382 1.7600 -179 1134 -1.4597 0.9317 1.7600 -179 1135 -1.4110 0.9242 1.7600 -179 1136 -1.3598 0.9151 1.7600 -179 1137 -1.3092 0.9080 1.7600 -179 1138 -1.2599 0.9029 1.7600 -179 1139 -1.2091 0.9014 1.7600 -179 1140 -1.1572 0.9072 1.7600 -179 1141 -1.1018 0.9158 1.7600 -179 1142 -1.0478 0.9261 1.7600 -179 1143 -0.9908 0.9374 1.7600 -179 1144 -0.9342 0.9472 1.7600 -179 1145 -0.8772 0.9578 1.7600 -179 1146 -0.8207 0.9722 1.7600 -179 1147 -0.7630 0.9892 1.7600 -179 1148 -0.7018 1.0086 1.7600 -179 1149 -0.6460 1.0247 1.7600 -179 1150 -0.5913 1.0383 1.7600 -179 1151 -0.5363 1.0441 1.7600 -179 1152 -0.4812 1.0435 1.7600 -179 1153 -0.4305 1.0383 1.7600 -179 1154 -0.3790 1.0324 1.7600 -179 1155 -0.3273 1.0269 1.7600 -179 1156 -0.2748 1.0207 1.7600 -179 1157 -0.2190 1.0117 1.7600 -179 1158 -0.1626 1.0021 1.7600 -179 1159 -0.1080 0.9918 1.7600 -179 1160 -0.0542 0.9795 1.7600 -179 1161 -0.0053 0.9766 1.7600 -179 1162 0.0435 0.9796 1.7600 -179 1163 0.0913 0.9819 1.7600 -179 1164 0.1382 0.9862 1.7600 -179 1165 0.1875 0.9928 1.7600 -179 1166 0.2405 0.9983 1.7600 -179 1167 0.2946 1.0056 1.7600 -179 1168 0.3547 1.0136 1.7600 -179 1169 0.4144 1.0248 1.7600 -179 1170 0.4741 1.0394 1.7600 -179 1171 0.5305 1.0536 1.7600 -179 1172 0.5870 1.0658 1.7600 -179 1173 0.6425 1.0725 1.7600 -179 1174 0.6986 1.0729 1.7600 -179 1175 0.7510 1.0669 1.7600 -179 1176 0.8029 1.0588 1.7600 -179 1177 0.8559 1.0486 1.7600 -179 1178 0.9099 1.0386 1.7600 -179 1179 0.9666 1.0297 1.7600 -179 1180 1.0253 1.0180 1.7600 -179 1181 1.0841 1.0058 1.7600 -179 1182 1.1412 0.9935 1.7600 -179 1183 1.1967 0.9858 1.7600 -179 1184 1.2514 0.9888 1.7600 -179 1185 1.3032 0.9959 1.7600 -179 1186 1.3562 1.0084 1.7600 -179 1187 1.4106 1.0203 1.7600 -179 1188 1.4623 1.0335 1.7600 -179 1189 1.5203 1.0450 1.7600 -179 1190 1.5785 1.0596 1.7600 -179 1191 1.6387 1.0736 1.7600 -179 1192 1.6984 1.0916 1.7600 -179 1193 1.7564 1.1087 1.7600 -179 1194 1.8152 1.1211 1.7600 -179 1195 1.8732 1.1276 1.7600 -179 1196 1.9291 1.1265 1.7600 -179 1197 1.9826 1.1253 1.7600 -179 1198 2.0347 1.1224 1.7600 -179 1199 2.0836 1.1177 1.7600 -179 1200 2.1360 1.1134 1.7600 -179 1201 2.1862 1.1049 1.7600 -179 1202 2.2401 1.0937 1.7600 -179 1203 2.2932 1.0810 1.7600 -179 1204 2.3488 1.0669 1.7600 -179 1205 2.4060 1.0571 1.7600 -179 1206 2.4615 1.0515 1.7600 -179 1207 2.5169 1.0514 1.7600 -179 1208 2.5708 1.0548 1.7600 -179 1209 2.6223 1.0610 1.7600 -179 1210 2.6761 1.0679 1.7600 -179 1211 2.7264 1.0769 1.7600 -179 1212 2.7810 1.0872 1.7600 -179 1213 2.8371 1.0986 1.7600 -179 1214 2.8987 1.1116 1.7600 -179 1215 2.9623 1.1239 1.7600 -179 1216 3.0221 1.1315 1.7600 -179 1217 3.0774 1.1363 1.7600 -179 1218 3.1337 1.1329 1.7600 -179 1219 3.1852 1.1269 1.7600 -179 1220 3.2334 1.1191 1.7600 -179 1221 3.2831 1.1111 1.7600 -179 1222 3.3323 1.1017 1.7600 -179 1223 3.3844 1.0920 1.7600 -179 1224 3.4393 1.0806 1.7600 -179 1225 3.4967 1.0661 1.7600 -179 1226 3.5586 1.0497 1.7600 -179 1227 3.6230 1.0388 1.7600 -179 1228 3.6852 1.0334 1.7600 -179 1229 3.7478 1.0340 1.7600 -179 1230 3.8058 1.0347 1.7600 -179 1231 3.8665 1.0377 1.7600 -179 1232 3.9239 1.0411 1.7600 -179 1233 3.9828 1.0425 1.7600 -179 1234 4.0416 1.0426 1.7600 -179 1235 4.1030 1.0455 1.7600 -179 1236 4.1727 1.0486 1.7600 -179 1237 4.2434 1.0531 1.7600 -179 1238 4.3152 1.0565 1.7600 -179 1239 4.3834 1.0541 1.7600 -179 1240 4.4461 1.0463 1.7600 -179 1241 4.5060 1.0356 1.7600 -179 1242 4.5623 1.0252 1.7600 -179 1243 4.6215 1.0143 1.7600 -179 1244 4.6822 1.0043 1.7600 -179 1245 4.7464 0.9954 1.7600 -179 1246 4.8178 0.9869 1.7600 -179 1247 4.8927 0.9795 1.7600 -179 1248 4.9671 0.9822 1.7600 -179 1249 5.0394 0.9891 1.7600 -179 1250 5.1115 0.9971 1.7600 -179 1251 5.1764 1.0059 1.7600 -179 1252 5.2387 1.0136 1.7600 -179 1253 5.2985 1.0215 1.7600 -179 1254 5.3599 1.0296 1.7600 -179 1255 5.4271 1.0397 1.7600 -179 1256 5.5072 1.0510 1.7600 -179 1257 5.5878 1.0606 1.7600 -179 1258 5.6620 1.0637 1.7600 -179 1259 5.7322 1.0573 1.7600 -179 1260 5.7968 1.0451 1.7600 -179 1261 5.8567 1.0316 1.7600 -179 1262 5.9144 1.0174 1.7600 -180 981 -7.8206 2.0922 1.7600 -180 982 -7.7622 2.0723 1.7600 -180 983 -7.7045 2.0514 1.7600 -180 984 -7.6502 2.0317 1.7600 -180 985 -7.6010 2.0156 1.7600 -180 986 -7.5524 2.0017 1.7600 -180 987 -7.5035 1.9925 1.7600 -180 988 -7.4542 1.9874 1.7600 -180 989 -7.4054 1.9843 1.7600 -180 990 -7.3551 1.9808 1.7600 -180 991 -7.3015 1.9768 1.7600 -180 992 -7.2476 1.9703 1.7600 -180 993 -7.1881 1.9660 1.7600 -180 994 -7.1296 1.9617 1.7600 -180 995 -7.0707 1.9613 1.7600 -180 996 -7.0132 1.9608 1.7600 -180 997 -6.9618 1.9628 1.7600 -180 998 -6.9112 1.9626 1.7600 -180 999 -6.8603 1.9600 1.7600 -180 1000 -6.8079 1.9499 1.7600 -180 1001 -6.7556 1.9389 1.7600 -180 1002 -6.7043 1.9263 1.7600 -180 1003 -6.6512 1.9150 1.7600 -180 1004 -6.6012 1.9032 1.7600 -180 1005 -6.5518 1.8893 1.7600 -180 1006 -6.5013 1.8735 1.7600 -180 1007 -6.4516 1.8565 1.7600 -180 1008 -6.4074 1.8431 1.7600 -180 1009 -6.3660 1.8300 1.7600 -180 1010 -6.3247 1.8206 1.7600 -180 1011 -6.2837 1.8156 1.7600 -180 1012 -6.2457 1.8132 1.7600 -180 1013 -6.2089 1.8107 1.7600 -180 1014 -6.1752 1.8101 1.7600 -180 1015 -6.1407 1.8129 1.7600 -180 1016 -6.1067 1.8149 1.7600 -180 1017 -6.0731 1.8170 1.7600 -180 1018 -6.0403 1.8198 1.7600 -180 1019 -6.0097 1.8228 1.7600 -180 1020 -5.9795 1.8250 1.7600 -180 1021 -5.9493 1.8249 1.7600 -180 1022 -5.9211 1.8267 1.7600 -180 1023 -5.8925 1.8241 1.7600 -180 1024 -5.8621 1.8219 1.7600 -180 1025 -5.8359 1.8177 1.7600 -180 1026 -5.8104 1.8148 1.7600 -180 1027 -5.7806 1.8080 1.7600 -180 1028 -5.7492 1.7971 1.7600 -180 1029 -5.7180 1.7849 1.7600 -180 1030 -5.6817 1.7702 1.7600 -180 1031 -5.6434 1.7537 1.7600 -180 1032 -5.6091 1.7407 1.7600 -180 1033 -5.5753 1.7266 1.7600 -180 1034 -5.5394 1.7145 1.7600 -180 1035 -5.5011 1.7048 1.7600 -180 1036 -5.4635 1.6979 1.7600 -180 1037 -5.4268 1.6930 1.7600 -180 1038 -5.3902 1.6888 1.7600 -180 1039 -5.3491 1.6845 1.7600 -180 1040 -5.3065 1.6811 1.7600 -180 1041 -5.2608 1.6774 1.7600 -180 1042 -5.2157 1.6752 1.7600 -180 1043 -5.1663 1.6753 1.7600 -180 1044 -5.1163 1.6767 1.7600 -180 1045 -5.0628 1.6793 1.7600 -180 1046 -5.0134 1.6797 1.7600 -180 1047 -4.9671 1.6771 1.7600 -180 1048 -4.9192 1.6717 1.7600 -180 1049 -4.8728 1.6659 1.7600 -180 1050 -4.8283 1.6582 1.7600 -180 1051 -4.7843 1.6493 1.7600 -180 1052 -4.7402 1.6405 1.7600 -180 1053 -4.6956 1.6283 1.7600 -180 1054 -4.6494 1.6146 1.7600 -180 1055 -4.6037 1.5999 1.7600 -180 1056 -4.5576 1.5832 1.7600 -180 1057 -4.5076 1.5668 1.7600 -180 1058 -4.4575 1.5494 1.7600 -180 1059 -4.4123 1.5345 1.7600 -180 1060 -4.3669 1.5239 1.7600 -180 1061 -4.3200 1.5145 1.7600 -180 1062 -4.2756 1.5067 1.7600 -180 1063 -4.2338 1.5013 1.7600 -180 1064 -4.1918 1.4968 1.7600 -180 1065 -4.1520 1.4927 1.7600 -180 1066 -4.1057 1.4887 1.7600 -180 1067 -4.0628 1.4873 1.7600 -180 1068 -4.0190 1.4881 1.7600 -180 1069 -3.9714 1.4885 1.7600 -180 1070 -3.9249 1.4899 1.7600 -180 1071 -3.8841 1.4936 1.7600 -180 1072 -3.8446 1.4936 1.7600 -180 1073 -3.8040 1.4922 1.7600 -180 1074 -3.7621 1.4859 1.7600 -180 1075 -3.7254 1.4804 1.7600 -180 1076 -3.6880 1.4761 1.7600 -180 1077 -3.6469 1.4725 1.7600 -180 1078 -3.6094 1.4695 1.7600 -180 1079 -3.5677 1.4655 1.7600 -180 1080 -3.5264 1.4619 1.7600 -180 1081 -3.4853 1.4576 1.7600 -180 1082 -3.4407 1.4522 1.7600 -180 1083 -3.3984 1.4449 1.7600 -180 1084 -3.3564 1.4423 1.7600 -180 1085 -3.3100 1.4414 1.7600 -180 1086 -3.2672 1.4427 1.7600 -180 1087 -3.2286 1.4432 1.7600 -180 1088 -3.1859 1.4459 1.7600 -180 1089 -3.1446 1.4471 1.7600 -180 1090 -3.1035 1.4505 1.7600 -180 1091 -3.0622 1.4555 1.7600 -180 1092 -3.0175 1.4619 1.7600 -180 1093 -2.9737 1.4691 1.7600 -180 1094 -2.9319 1.4756 1.7600 -180 1095 -2.8942 1.4795 1.7600 -180 1096 -2.8503 1.4849 1.7600 -180 1097 -2.8055 1.4880 1.7600 -180 1098 -2.7583 1.4871 1.7600 -180 1099 -2.7127 1.4862 1.7600 -180 1100 -2.6663 1.4873 1.7600 -180 1101 -2.6207 1.4861 1.7600 -180 1102 -2.5726 1.4852 1.7600 -180 1103 -2.5254 1.4815 1.7600 -180 1104 -2.4751 1.4792 1.7600 -180 1105 -2.4242 1.4756 1.7600 -180 1106 -2.3750 1.4732 1.7600 -180 1107 -2.3250 1.4703 1.7600 -180 1108 -2.2771 1.4696 1.7600 -180 1109 -2.2287 1.4752 1.7600 -180 1110 -2.1834 1.4784 1.7600 -180 1111 -2.1360 1.4832 1.7600 -180 1112 -2.0880 1.4893 1.7600 -180 1113 -2.0385 1.4958 1.7600 -180 1114 -1.9892 1.5022 1.7600 -180 1115 -1.9376 1.5105 1.7600 -180 1116 -1.8780 1.5219 1.7600 -180 1117 -1.8236 1.5266 1.7600 -180 1118 -1.7732 1.5286 1.7600 -180 1119 -1.7257 1.5262 1.7600 -180 1120 -1.6790 1.5200 1.7600 -180 1121 -1.6346 1.5134 1.7600 -180 1122 -1.5932 1.5060 1.7600 -180 1123 -1.5473 1.4972 1.7600 -180 1124 -1.5013 1.4848 1.7600 -180 1125 -1.4532 1.4744 1.7600 -180 1126 -1.3991 1.4614 1.7600 -180 1127 -1.3461 1.4487 1.7600 -180 1128 -1.2994 1.4370 1.7600 -180 1129 -1.2542 1.4301 1.7600 -180 1130 -1.2084 1.4258 1.7600 -180 1131 -1.1618 1.4273 1.7600 -180 1132 -1.1166 1.4292 1.7600 -180 1133 -1.0720 1.4320 1.7600 -180 1134 -1.0253 1.4348 1.7600 -180 1135 -0.9779 1.4388 1.7600 -180 1136 -0.9262 1.4441 1.7600 -180 1137 -0.8747 1.4494 1.7600 -180 1138 -0.8193 1.4567 1.7600 -180 1139 -0.7680 1.4605 1.7600 -180 1140 -0.7149 1.4638 1.7600 -180 1141 -0.6606 1.4628 1.7600 -180 1142 -0.6057 1.4593 1.7600 -180 1143 -0.5470 1.4558 1.7600 -180 1144 -0.4890 1.4491 1.7600 -180 1145 -0.4296 1.4431 1.7600 -180 1146 -0.3674 1.4349 1.7600 -180 1147 -0.3062 1.4261 1.7600 -180 1148 -0.2485 1.4190 1.7600 -180 1149 -0.1917 1.4142 1.7600 -180 1150 -0.1389 1.4096 1.7600 -180 1151 -0.0789 1.4121 1.7600 -180 1152 -0.0183 1.4195 1.7600 -180 1153 0.0454 1.4259 1.7600 -180 1154 0.1087 1.4298 1.7600 -180 1155 0.1715 1.4351 1.7600 -180 1156 0.2347 1.4410 1.7600 -180 1157 0.2993 1.4480 1.7600 -180 1158 0.3653 1.4569 1.7600 -180 1159 0.4287 1.4619 1.7600 -180 1160 0.4872 1.4686 1.7600 -180 1161 0.5473 1.4719 1.7600 -180 1162 0.6065 1.4729 1.7600 -180 1163 0.6630 1.4704 1.7600 -180 1164 0.7156 1.4683 1.7600 -180 1165 0.7710 1.4701 1.7600 -180 1166 0.8288 1.4708 1.7600 -180 1167 0.8855 1.4714 1.7600 -180 1168 0.9429 1.4709 1.7600 -180 1169 1.0021 1.4678 1.7600 -180 1170 1.0594 1.4659 1.7600 -180 1171 1.1167 1.4673 1.7600 -180 1172 1.1711 1.4713 1.7600 -180 1173 1.2271 1.4774 1.7600 -180 1174 1.2821 1.4832 1.7600 -180 1175 1.3362 1.4881 1.7600 -180 1176 1.3904 1.4919 1.7600 -180 1177 1.4461 1.4973 1.7600 -180 1178 1.5020 1.5015 1.7600 -180 1179 1.5605 1.5110 1.7600 -180 1180 1.6181 1.5191 1.7600 -180 1181 1.6780 1.5270 1.7600 -180 1182 1.7360 1.5284 1.7600 -180 1183 1.7917 1.5275 1.7600 -180 1184 1.8479 1.5245 1.7600 -180 1185 1.9048 1.5200 1.7600 -180 1186 1.9616 1.5145 1.7600 -180 1187 2.0210 1.5071 1.7600 -180 1188 2.0811 1.4977 1.7600 -180 1189 2.1417 1.4851 1.7600 -180 1190 2.2020 1.4735 1.7600 -180 1191 2.2617 1.4642 1.7600 -180 1192 2.3196 1.4576 1.7600 -180 1193 2.3771 1.4575 1.7600 -180 1194 2.4357 1.4589 1.7600 -180 1195 2.4917 1.4624 1.7600 -180 1196 2.5473 1.4634 1.7600 -180 1197 2.6059 1.4629 1.7600 -180 1198 2.6638 1.4636 1.7600 -180 1199 2.7230 1.4657 1.7600 -180 1200 2.7838 1.4713 1.7600 -180 1201 2.8517 1.4748 1.7600 -180 1202 2.9191 1.4767 1.7600 -180 1203 2.9855 1.4758 1.7600 -180 1204 3.0552 1.4708 1.7600 -180 1205 3.1215 1.4671 1.7600 -180 1206 3.1844 1.4629 1.7600 -180 1207 3.2504 1.4605 1.7600 -180 1208 3.3159 1.4589 1.7600 -180 1209 3.3806 1.4568 1.7600 -180 1210 3.4472 1.4552 1.7600 -180 1211 3.5157 1.4571 1.7600 -180 1212 3.5814 1.4596 1.7600 -180 1213 3.6482 1.4663 1.7600 -180 1214 3.7109 1.4757 1.7600 -180 1215 3.7719 1.4876 1.7600 -180 1216 3.8320 1.5003 1.7600 -180 1217 3.8890 1.5131 1.7600 -180 1218 3.9445 1.5273 1.7600 -180 1219 4.0040 1.5410 1.7600 -180 1220 4.0723 1.5591 1.7600 -180 1221 4.1445 1.5787 1.7600 -180 1222 4.2145 1.5951 1.7600 -180 1223 4.2862 1.6087 1.7600 -180 1224 4.3636 1.6168 1.7600 -180 1225 4.4386 1.6244 1.7600 -180 1226 4.5095 1.6303 1.7600 -180 1227 4.5778 1.6359 1.7600 -180 1228 4.6470 1.6430 1.7600 -180 1229 4.7235 1.6510 1.7600 -180 1230 4.8036 1.6621 1.7600 -180 1231 4.8827 1.6723 1.7600 -180 1232 4.9601 1.6861 1.7600 -180 1233 5.0362 1.7074 1.7600 -180 1234 5.1074 1.7297 1.7600 -180 1235 5.1688 1.7522 1.7600 -180 1236 5.2316 1.7745 1.7600 -180 1237 5.2918 1.7940 1.7600 -180 1238 5.3538 1.8149 1.7600 -180 1239 5.4288 1.8376 1.7600 -180 1240 5.5064 1.8591 1.7600 -180 1241 5.5823 1.8782 1.7600 -180 1242 5.6654 1.8944 1.7600 -180 1243 5.7482 1.9065 1.7600 -180 1244 5.8239 1.9131 1.7600 -180 1245 5.8934 1.9181 1.7600 -181 987 -7.8216 0.8871 1.7600 -181 988 -7.7752 0.8644 1.7600 -181 989 -7.7298 0.8455 1.7600 -181 990 -7.6833 0.8304 1.7600 -181 991 -7.6334 0.8180 1.7600 -181 992 -7.5799 0.8056 1.7600 -181 993 -7.5235 0.7944 1.7600 -181 994 -7.4672 0.7844 1.7600 -181 995 -7.4122 0.7773 1.7600 -181 996 -7.3617 0.7726 1.7600 -181 997 -7.3147 0.7681 1.7600 -181 998 -7.2691 0.7608 1.7600 -181 999 -7.2218 0.7507 1.7600 -181 1000 -7.1735 0.7384 1.7600 -181 1001 -7.1263 0.7237 1.7600 -181 1002 -7.0799 0.7096 1.7600 -181 1003 -7.0362 0.6924 1.7600 -181 1004 -6.9898 0.6757 1.7600 -181 1005 -6.9456 0.6563 1.7600 -181 1006 -6.9032 0.6351 1.7600 -181 1007 -6.8693 0.6135 1.7600 -181 1008 -6.8342 0.5900 1.7600 -181 1009 -6.7977 0.5680 1.7600 -181 1010 -6.7618 0.5481 1.7600 -181 1011 -6.7254 0.5285 1.7600 -181 1012 -6.6863 0.5152 1.7600 -181 1013 -6.6520 0.5048 1.7600 -181 1014 -6.6180 0.4986 1.7600 -181 1015 -6.5839 0.4910 1.7600 -181 1016 -6.5472 0.4853 1.7600 -181 1017 -6.5129 0.4841 1.7600 -181 1018 -6.4775 0.4844 1.7600 -181 1019 -6.4426 0.4852 1.7600 -181 1020 -6.4099 0.4918 1.7600 -181 1021 -6.3729 0.4983 1.7600 -181 1022 -6.3377 0.5041 1.7600 -181 1023 -6.3000 0.5092 1.7600 -181 1024 -6.2621 0.5117 1.7600 -181 1025 -6.2256 0.5091 1.7600 -181 1026 -6.1935 0.5024 1.7600 -181 1027 -6.1654 0.4933 1.7600 -181 1028 -6.1370 0.4821 1.7600 -181 1029 -6.1035 0.4691 1.7600 -181 1030 -6.0746 0.4578 1.7600 -181 1031 -6.0443 0.4425 1.7600 -181 1032 -6.0062 0.4214 1.7600 -181 1033 -5.9723 0.3967 1.7600 -181 1034 -5.9389 0.3739 1.7600 -181 1035 -5.9037 0.3495 1.7600 -181 1036 -5.8723 0.3242 1.7600 -181 1037 -5.8422 0.3022 1.7600 -181 1038 -5.8118 0.2818 1.7600 -181 1039 -5.7842 0.2635 1.7600 -181 1040 -5.7597 0.2490 1.7600 -181 1041 -5.7330 0.2324 1.7600 -181 1042 -5.7061 0.2194 1.7600 -181 1043 -5.6772 0.2101 1.7600 -181 1044 -5.6472 0.2058 1.7600 -181 1045 -5.6181 0.2047 1.7600 -181 1046 -5.5872 0.2081 1.7600 -181 1047 -5.5565 0.2173 1.7600 -181 1048 -5.5239 0.2333 1.7600 -181 1049 -5.4888 0.2522 1.7600 -181 1050 -5.4508 0.2717 1.7600 -181 1051 -5.4137 0.2874 1.7600 -181 1052 -5.3745 0.2974 1.7600 -181 1053 -5.3318 0.3029 1.7600 -181 1054 -5.2866 0.3045 1.7600 -181 1055 -5.2428 0.3032 1.7600 -181 1056 -5.1987 0.3041 1.7600 -181 1057 -5.1508 0.3039 1.7600 -181 1058 -5.1017 0.3002 1.7600 -181 1059 -5.0513 0.2925 1.7600 -181 1060 -5.0018 0.2739 1.7600 -181 1061 -4.9543 0.2521 1.7600 -181 1062 -4.9066 0.2341 1.7600 -181 1063 -4.8641 0.2182 1.7600 -181 1064 -4.8194 0.2128 1.7600 -181 1065 -4.7728 0.2141 1.7600 -181 1066 -4.7259 0.2218 1.7600 -181 1067 -4.6816 0.2314 1.7600 -181 1068 -4.6414 0.2421 1.7600 -181 1069 -4.6011 0.2541 1.7600 -181 1070 -4.5588 0.2657 1.7600 -181 1071 -4.5150 0.2767 1.7600 -181 1072 -4.4722 0.2882 1.7600 -181 1073 -4.4290 0.3022 1.7600 -181 1074 -4.3851 0.3132 1.7600 -181 1075 -4.3459 0.3246 1.7600 -181 1076 -4.3045 0.3355 1.7600 -181 1077 -4.2576 0.3432 1.7600 -181 1078 -4.2141 0.3490 1.7600 -181 1079 -4.1736 0.3512 1.7600 -181 1080 -4.1360 0.3522 1.7600 -181 1081 -4.0955 0.3512 1.7600 -181 1082 -4.0539 0.3512 1.7600 -181 1083 -4.0137 0.3453 1.7600 -181 1084 -3.9773 0.3352 1.7600 -181 1085 -3.9340 0.3182 1.7600 -181 1086 -3.8898 0.2970 1.7600 -181 1087 -3.8472 0.2784 1.7600 -181 1088 -3.8044 0.2638 1.7600 -181 1089 -3.7602 0.2542 1.7600 -181 1090 -3.7148 0.2505 1.7600 -181 1091 -3.6741 0.2460 1.7600 -181 1092 -3.6343 0.2436 1.7600 -181 1093 -3.5888 0.2426 1.7600 -181 1094 -3.5425 0.2428 1.7600 -181 1095 -3.4973 0.2483 1.7600 -181 1096 -3.4507 0.2578 1.7600 -181 1097 -3.4041 0.2670 1.7600 -181 1098 -3.3548 0.2797 1.7600 -181 1099 -3.3105 0.2909 1.7600 -181 1100 -3.2693 0.3020 1.7600 -181 1101 -3.2258 0.3092 1.7600 -181 1102 -3.1813 0.3135 1.7600 -181 1103 -3.1345 0.3143 1.7600 -181 1104 -3.0900 0.3110 1.7600 -181 1105 -3.0402 0.3069 1.7600 -181 1106 -2.9918 0.2985 1.7600 -181 1107 -2.9407 0.2894 1.7600 -181 1108 -2.8873 0.2777 1.7600 -181 1109 -2.8313 0.2614 1.7600 -181 1110 -2.7825 0.2483 1.7600 -181 1111 -2.7352 0.2427 1.7600 -181 1112 -2.6830 0.2430 1.7600 -181 1113 -2.6351 0.2473 1.7600 -181 1114 -2.5888 0.2562 1.7600 -181 1115 -2.5393 0.2636 1.7600 -181 1116 -2.4996 0.2746 1.7600 -181 1117 -2.4586 0.2868 1.7600 -181 1118 -2.4159 0.3016 1.7600 -181 1119 -2.3674 0.3163 1.7600 -181 1120 -2.3217 0.3320 1.7600 -181 1121 -2.2735 0.3426 1.7600 -181 1122 -2.2277 0.3521 1.7600 -181 1123 -2.1806 0.3609 1.7600 -181 1124 -2.1266 0.3627 1.7600 -181 1125 -2.0819 0.3658 1.7600 -181 1126 -2.0391 0.3652 1.7600 -181 1127 -1.9938 0.3610 1.7600 -181 1128 -1.9514 0.3579 1.7600 -181 1129 -1.9091 0.3525 1.7600 -181 1130 -1.8627 0.3440 1.7600 -181 1131 -1.8165 0.3323 1.7600 -181 1132 -1.7699 0.3215 1.7600 -181 1133 -1.7275 0.3156 1.7600 -181 1134 -1.6802 0.3116 1.7600 -181 1135 -1.6329 0.3107 1.7600 -181 1136 -1.5870 0.3142 1.7600 -181 1137 -1.5442 0.3183 1.7600 -181 1138 -1.4949 0.3243 1.7600 -181 1139 -1.4490 0.3336 1.7600 -181 1140 -1.3953 0.3425 1.7600 -181 1141 -1.3408 0.3533 1.7600 -181 1142 -1.2861 0.3583 1.7600 -181 1143 -1.2368 0.3673 1.7600 -181 1144 -1.1777 0.3710 1.7600 -181 1145 -1.1220 0.3746 1.7600 -181 1146 -1.0646 0.3712 1.7600 -181 1147 -1.0129 0.3666 1.7600 -181 1148 -0.9586 0.3591 1.7600 -181 1149 -0.9034 0.3512 1.7600 -181 1150 -0.8502 0.3446 1.7600 -181 1151 -0.7947 0.3358 1.7600 -181 1152 -0.7386 0.3264 1.7600 -181 1153 -0.6889 0.3187 1.7600 -181 1154 -0.6387 0.3142 1.7600 -181 1155 -0.5905 0.3102 1.7600 -181 1156 -0.5417 0.3074 1.7600 -181 1157 -0.4961 0.3057 1.7600 -181 1158 -0.4502 0.3028 1.7600 -181 1159 -0.4025 0.3043 1.7600 -181 1160 -0.3524 0.3058 1.7600 -181 1161 -0.3000 0.3089 1.7600 -181 1162 -0.2512 0.3143 1.7600 -181 1163 -0.2037 0.3202 1.7600 -181 1164 -0.1572 0.3227 1.7600 -181 1165 -0.1084 0.3223 1.7600 -181 1166 -0.0573 0.3232 1.7600 -181 1167 -0.0036 0.3174 1.7600 -181 1168 0.0514 0.3168 1.7600 -181 1169 0.1069 0.3112 1.7600 -181 1170 0.1637 0.3062 1.7600 -181 1171 0.2216 0.3014 1.7600 -181 1172 0.2779 0.2942 1.7600 -181 1173 0.3339 0.2859 1.7600 -181 1174 0.3887 0.2776 1.7600 -181 1175 0.4424 0.2701 1.7600 -181 1176 0.4959 0.2651 1.7600 -181 1177 0.5508 0.2647 1.7600 -181 1178 0.6046 0.2694 1.7600 -181 1179 0.6605 0.2761 1.7600 -181 1180 0.7159 0.2819 1.7600 -181 1181 0.7735 0.2904 1.7600 -181 1182 0.8317 0.3000 1.7600 -181 1183 0.8886 0.3082 1.7600 -181 1184 0.9428 0.3182 1.7600 -181 1185 1.0004 0.3265 1.7600 -181 1186 1.0566 0.3316 1.7600 -181 1187 1.1150 0.3338 1.7600 -181 1188 1.1767 0.3376 1.7600 -181 1189 1.2359 0.3404 1.7600 -181 1190 1.2941 0.3420 1.7600 -181 1191 1.3517 0.3407 1.7600 -181 1192 1.4104 0.3414 1.7600 -181 1193 1.4702 0.3382 1.7600 -181 1194 1.5288 0.3327 1.7600 -181 1195 1.5874 0.3283 1.7600 -181 1196 1.6424 0.3255 1.7600 -181 1197 1.7005 0.3277 1.7600 -181 1198 1.7579 0.3341 1.7600 -181 1199 1.8139 0.3429 1.7600 -181 1200 1.8682 0.3542 1.7600 -181 1201 1.9209 0.3668 1.7600 -181 1202 1.9745 0.3843 1.7600 -181 1203 2.0294 0.4031 1.7600 -181 1204 2.0827 0.4221 1.7600 -181 1205 2.1384 0.4411 1.7600 -181 1206 2.1933 0.4572 1.7600 -181 1207 2.2490 0.4697 1.7600 -181 1208 2.3055 0.4775 1.7600 -181 1209 2.3643 0.4844 1.7600 -181 1210 2.4200 0.4868 1.7600 -181 1211 2.4773 0.4878 1.7600 -181 1212 2.5306 0.4867 1.7600 -181 1213 2.5862 0.4826 1.7600 -181 1214 2.6396 0.4794 1.7600 -181 1215 2.6975 0.4719 1.7600 -181 1216 2.7524 0.4643 1.7600 -181 1217 2.8083 0.4575 1.7600 -181 1218 2.8620 0.4550 1.7600 -181 1219 2.9173 0.4534 1.7600 -181 1220 2.9689 0.4557 1.7600 -181 1221 3.0205 0.4624 1.7600 -181 1222 3.0720 0.4683 1.7600 -181 1223 3.1243 0.4744 1.7600 -181 1224 3.1800 0.4832 1.7600 -181 1225 3.2384 0.4894 1.7600 -181 1226 3.2972 0.4967 1.7600 -181 1227 3.3558 0.5020 1.7600 -181 1228 3.4174 0.5034 1.7600 -181 1229 3.4815 0.5002 1.7600 -181 1230 3.5468 0.4966 1.7600 -181 1231 3.6082 0.4868 1.7600 -181 1232 3.6681 0.4747 1.7600 -181 1233 3.7255 0.4605 1.7600 -181 1234 3.7796 0.4418 1.7600 -181 1235 3.8345 0.4215 1.7600 -181 1236 3.8966 0.3981 1.7600 -181 1237 3.9562 0.3772 1.7600 -181 1238 4.0135 0.3623 1.7600 -181 1239 4.0705 0.3538 1.7600 -181 1240 4.1281 0.3498 1.7600 -181 1241 4.1826 0.3467 1.7600 -181 1242 4.2388 0.3473 1.7600 -181 1243 4.2964 0.3487 1.7600 -181 1244 4.3523 0.3500 1.7600 -181 1245 4.4151 0.3544 1.7600 -181 1246 4.4798 0.3593 1.7600 -181 1247 4.5421 0.3618 1.7600 -181 1248 4.6039 0.3587 1.7600 -181 1249 4.6705 0.3502 1.7600 -181 1250 4.7364 0.3378 1.7600 -181 1251 4.7975 0.3236 1.7600 -181 1252 4.8539 0.3064 1.7600 -181 1253 4.9071 0.2906 1.7600 -181 1254 4.9626 0.2720 1.7600 -181 1255 5.0218 0.2527 1.7600 -181 1256 5.0868 0.2318 1.7600 -181 1257 5.1501 0.2152 1.7600 -181 1258 5.2113 0.2038 1.7600 -181 1259 5.2756 0.1949 1.7600 -181 1260 5.3354 0.1926 1.7600 -181 1261 5.3911 0.1928 1.7600 -181 1262 5.4455 0.1919 1.7600 -181 1263 5.4992 0.1927 1.7600 -181 1264 5.5576 0.1934 1.7600 -181 1265 5.6248 0.1929 1.7600 -181 1266 5.6963 0.1942 1.7600 -181 1267 5.7654 0.1914 1.7600 -181 1268 5.8347 0.1830 1.7600 -181 1269 5.9035 0.1697 1.7600 -182 999 -7.7944 1.5010 1.7600 -182 1000 -7.7387 1.4772 1.7600 -182 1001 -7.6907 1.4615 1.7600 -182 1002 -7.6494 1.4500 1.7600 -182 1003 -7.6130 1.4398 1.7600 -182 1004 -7.5787 1.4329 1.7600 -182 1005 -7.5459 1.4302 1.7600 -182 1006 -7.5117 1.4321 1.7600 -182 1007 -7.4723 1.4376 1.7600 -182 1008 -7.4267 1.4435 1.7600 -182 1009 -7.3755 1.4513 1.7600 -182 1010 -7.3225 1.4618 1.7600 -182 1011 -7.2692 1.4725 1.7600 -182 1012 -7.2212 1.4830 1.7600 -182 1013 -7.1797 1.4941 1.7600 -182 1014 -7.1426 1.4920 1.7600 -182 1015 -7.1082 1.4897 1.7600 -182 1016 -7.0710 1.4783 1.7600 -182 1017 -7.0328 1.4623 1.7600 -182 1018 -6.9912 1.4439 1.7600 -182 1019 -6.9497 1.4235 1.7600 -182 1020 -6.9077 1.4019 1.7600 -182 1021 -6.8679 1.3749 1.7600 -182 1022 -6.8410 1.3453 1.7600 -182 1023 -6.8180 1.3162 1.7600 -182 1024 -6.7964 1.2924 1.7600 -182 1025 -6.7691 1.2714 1.7600 -182 1026 -6.7379 1.2533 1.7600 -182 1027 -6.7054 1.2426 1.7600 -182 1028 -6.6754 1.2361 1.7600 -182 1029 -6.6490 1.2322 1.7600 -182 1030 -6.6234 1.2323 1.7600 -182 1031 -6.5972 1.2375 1.7600 -182 1032 -6.5683 1.2487 1.7600 -182 1033 -6.5364 1.2623 1.7600 -182 1034 -6.5044 1.2814 1.7600 -182 1035 -6.4737 1.3043 1.7600 -182 1036 -6.4449 1.3258 1.7600 -182 1037 -6.4139 1.3449 1.7600 -182 1038 -6.3794 1.3600 1.7600 -182 1039 -6.3443 1.3695 1.7600 -182 1040 -6.3122 1.3705 1.7600 -182 1041 -6.2832 1.3676 1.7600 -182 1042 -6.2550 1.3632 1.7600 -182 1043 -6.2214 1.3576 1.7600 -182 1044 -6.1897 1.3493 1.7600 -182 1045 -6.1533 1.3360 1.7600 -182 1046 -6.1199 1.3181 1.7600 -182 1047 -6.0874 1.2967 1.7600 -182 1048 -6.0627 1.2692 1.7600 -182 1049 -6.0416 1.2443 1.7600 -182 1050 -6.0158 1.2236 1.7600 -182 1051 -5.9939 1.2057 1.7600 -182 1052 -5.9694 1.1897 1.7600 -182 1053 -5.9446 1.1824 1.7600 -182 1054 -5.9232 1.1822 1.7600 -182 1055 -5.9038 1.1849 1.7600 -182 1056 -5.8824 1.1910 1.7600 -182 1057 -5.8587 1.1985 1.7600 -182 1058 -5.8297 1.2073 1.7600 -182 1059 -5.7963 1.2204 1.7600 -182 1060 -5.7599 1.2379 1.7600 -182 1061 -5.7168 1.2568 1.7600 -182 1062 -5.6800 1.2806 1.7600 -182 1063 -5.6426 1.3011 1.7600 -182 1064 -5.6015 1.3211 1.7600 -182 1065 -5.5600 1.3322 1.7600 -182 1066 -5.5190 1.3366 1.7600 -182 1067 -5.4822 1.3351 1.7600 -182 1068 -5.4428 1.3312 1.7600 -182 1069 -5.4016 1.3252 1.7600 -182 1070 -5.3563 1.3158 1.7600 -182 1071 -5.3084 1.3036 1.7600 -182 1072 -5.2632 1.2835 1.7600 -182 1073 -5.2187 1.2594 1.7600 -182 1074 -5.1793 1.2318 1.7600 -182 1075 -5.1448 1.2033 1.7600 -182 1076 -5.1081 1.1747 1.7600 -182 1077 -5.0708 1.1511 1.7600 -182 1078 -5.0280 1.1358 1.7600 -182 1079 -4.9855 1.1258 1.7600 -182 1080 -4.9468 1.1215 1.7600 -182 1081 -4.9090 1.1194 1.7600 -182 1082 -4.8649 1.1204 1.7600 -182 1083 -4.8202 1.1277 1.7600 -182 1084 -4.7699 1.1395 1.7600 -182 1085 -4.7161 1.1592 1.7600 -182 1086 -4.6617 1.1807 1.7600 -182 1087 -4.6085 1.2036 1.7600 -182 1088 -4.5539 1.2209 1.7600 -182 1089 -4.5038 1.2365 1.7600 -182 1090 -4.4544 1.2450 1.7600 -182 1091 -4.4045 1.2466 1.7600 -182 1092 -4.3574 1.2461 1.7600 -182 1093 -4.3056 1.2444 1.7600 -182 1094 -4.2548 1.2421 1.7600 -182 1095 -4.1992 1.2364 1.7600 -182 1096 -4.1465 1.2257 1.7600 -182 1097 -4.0959 1.2097 1.7600 -182 1098 -4.0505 1.1910 1.7600 -182 1099 -4.0104 1.1706 1.7600 -182 1100 -3.9714 1.1516 1.7600 -182 1101 -3.9338 1.1380 1.7600 -182 1102 -3.8971 1.1306 1.7600 -182 1103 -3.8582 1.1269 1.7600 -182 1104 -3.8238 1.1229 1.7600 -182 1105 -3.7858 1.1207 1.7600 -182 1106 -3.7433 1.1204 1.7600 -182 1107 -3.6994 1.1247 1.7600 -182 1108 -3.6509 1.1336 1.7600 -182 1109 -3.6053 1.1472 1.7600 -182 1110 -3.5564 1.1645 1.7600 -182 1111 -3.5109 1.1828 1.7600 -182 1112 -3.4701 1.1949 1.7600 -182 1113 -3.4238 1.2009 1.7600 -182 1114 -3.3742 1.2007 1.7600 -182 1115 -3.3269 1.1933 1.7600 -182 1116 -3.2798 1.1843 1.7600 -182 1117 -3.2284 1.1714 1.7600 -182 1118 -3.1741 1.1538 1.7600 -182 1119 -3.1222 1.1324 1.7600 -182 1120 -3.0727 1.1054 1.7600 -182 1121 -3.0276 1.0764 1.7600 -182 1122 -2.9840 1.0537 1.7600 -182 1123 -2.9440 1.0377 1.7600 -182 1124 -2.9020 1.0281 1.7600 -182 1125 -2.8578 1.0249 1.7600 -182 1126 -2.8185 1.0242 1.7600 -182 1127 -2.7767 1.0292 1.7600 -182 1128 -2.7374 1.0331 1.7600 -182 1129 -2.6899 1.0396 1.7600 -182 1130 -2.6402 1.0484 1.7600 -182 1131 -2.5867 1.0602 1.7600 -182 1132 -2.5329 1.0787 1.7600 -182 1133 -2.4788 1.1002 1.7600 -182 1134 -2.4225 1.1213 1.7600 -182 1135 -2.3621 1.1431 1.7600 -182 1136 -2.3080 1.1599 1.7600 -182 1137 -2.2510 1.1691 1.7600 -182 1138 -2.1975 1.1701 1.7600 -182 1139 -2.1471 1.1666 1.7600 -182 1140 -2.0988 1.1598 1.7600 -182 1141 -2.0473 1.1496 1.7600 -182 1142 -1.9944 1.1368 1.7600 -182 1143 -1.9400 1.1217 1.7600 -182 1144 -1.8854 1.1034 1.7600 -182 1145 -1.8248 1.0854 1.7600 -182 1146 -1.7699 1.0688 1.7600 -182 1147 -1.7238 1.0581 1.7600 -182 1148 -1.6752 1.0563 1.7600 -182 1149 -1.6310 1.0585 1.7600 -182 1150 -1.5909 1.0665 1.7600 -182 1151 -1.5525 1.0780 1.7600 -182 1152 -1.5144 1.0905 1.7600 -182 1153 -1.4725 1.1050 1.7600 -182 1154 -1.4296 1.1203 1.7600 -182 1155 -1.3833 1.1390 1.7600 -182 1156 -1.3299 1.1601 1.7600 -182 1157 -1.2719 1.1844 1.7600 -182 1158 -1.2184 1.2052 1.7600 -182 1159 -1.1643 1.2194 1.7600 -182 1160 -1.1063 1.2233 1.7600 -182 1161 -1.0499 1.2198 1.7600 -182 1162 -0.9966 1.2099 1.7600 -182 1163 -0.9404 1.2018 1.7600 -182 1164 -0.8786 1.1925 1.7600 -182 1165 -0.8176 1.1827 1.7600 -182 1166 -0.7580 1.1726 1.7600 -182 1167 -0.6987 1.1633 1.7600 -182 1168 -0.6401 1.1528 1.7600 -182 1169 -0.5855 1.1446 1.7600 -182 1170 -0.5301 1.1448 1.7600 -182 1171 -0.4752 1.1533 1.7600 -182 1172 -0.4208 1.1658 1.7600 -182 1173 -0.3694 1.1785 1.7600 -182 1174 -0.3137 1.1896 1.7600 -182 1175 -0.2585 1.1994 1.7600 -182 1176 -0.2003 1.2092 1.7600 -182 1177 -0.1404 1.2218 1.7600 -182 1178 -0.0785 1.2371 1.7600 -182 1179 -0.0232 1.2467 1.7600 -182 1180 0.0321 1.2495 1.7600 -182 1181 0.0873 1.2478 1.7600 -182 1182 0.1406 1.2408 1.7600 -182 1183 0.1914 1.2337 1.7600 -182 1184 0.2484 1.2232 1.7600 -182 1185 0.3110 1.2105 1.7600 -182 1186 0.3756 1.1939 1.7600 -182 1187 0.4378 1.1748 1.7600 -182 1188 0.4992 1.1557 1.7600 -182 1189 0.5576 1.1360 1.7600 -182 1190 0.6082 1.1286 1.7600 -182 1191 0.6541 1.1340 1.7600 -182 1192 0.7054 1.1409 1.7600 -182 1193 0.7547 1.1517 1.7600 -182 1194 0.8040 1.1615 1.7600 -182 1195 0.8548 1.1721 1.7600 -182 1196 0.9071 1.1819 1.7600 -182 1197 0.9603 1.1928 1.7600 -182 1198 1.0126 1.2079 1.7600 -182 1199 1.0663 1.2243 1.7600 -182 1200 1.1205 1.2378 1.7600 -182 1201 1.1766 1.2467 1.7600 -182 1202 1.2404 1.2500 1.7600 -182 1203 1.3043 1.2490 1.7600 -182 1204 1.3712 1.2452 1.7600 -182 1205 1.4361 1.2381 1.7600 -182 1206 1.5050 1.2285 1.7600 -182 1207 1.5745 1.2131 1.7600 -182 1208 1.6426 1.1979 1.7600 -182 1209 1.7076 1.1797 1.7600 -182 1210 1.7638 1.1726 1.7600 -182 1211 1.8171 1.1731 1.7600 -182 1212 1.8683 1.1778 1.7600 -182 1213 1.9221 1.1830 1.7600 -182 1214 1.9774 1.1913 1.7600 -182 1215 2.0392 1.2019 1.7600 -182 1216 2.0994 1.2157 1.7600 -182 1217 2.1630 1.2351 1.7600 -182 1218 2.2292 1.2599 1.7600 -182 1219 2.2830 1.2778 1.7600 -182 1220 2.3364 1.2879 1.7600 -182 1221 2.3915 1.2901 1.7600 -182 1222 2.4451 1.2887 1.7600 -182 1223 2.4934 1.2860 1.7600 -182 1224 2.5466 1.2832 1.7600 -182 1225 2.6020 1.2759 1.7600 -182 1226 2.6610 1.2645 1.7600 -182 1227 2.7237 1.2503 1.7600 -182 1228 2.7864 1.2341 1.7600 -182 1229 2.8457 1.2183 1.7600 -182 1230 2.9038 1.2103 1.7600 -182 1231 2.9655 1.2093 1.7600 -182 1232 3.0271 1.2146 1.7600 -182 1233 3.0869 1.2234 1.7600 -182 1234 3.1495 1.2338 1.7600 -182 1235 3.2119 1.2469 1.7600 -182 1236 3.2756 1.2641 1.7600 -182 1237 3.3400 1.2881 1.7600 -182 1238 3.3951 1.3118 1.7600 -182 1239 3.4504 1.3246 1.7600 -182 1240 3.5158 1.3239 1.7600 -182 1241 3.5881 1.3177 1.7600 -182 1242 3.6604 1.3132 1.7600 -182 1243 3.7298 1.3076 1.7600 -182 1244 3.8039 1.3023 1.7600 -182 1245 3.8820 1.2907 1.7600 -182 1246 3.9667 1.2768 1.7600 -182 1247 4.0482 1.2604 1.7600 -182 1248 4.1294 1.2491 1.7600 -182 1249 4.2100 1.2447 1.7600 -182 1250 4.2856 1.2531 1.7600 -182 1251 4.3607 1.2653 1.7600 -182 1252 4.4409 1.2793 1.7600 -182 1253 4.5228 1.3030 1.7600 -182 1254 4.6090 1.3329 1.7600 -182 1255 4.7016 1.3642 1.7600 -182 1256 4.7925 1.3898 1.7600 -182 1257 4.8808 1.4048 1.7600 -182 1258 4.9684 1.4085 1.7600 -182 1259 5.0543 1.4074 1.7600 -182 1260 5.1347 1.4065 1.7600 -182 1261 5.2129 1.4065 1.7600 -182 1262 5.2916 1.4026 1.7600 -182 1263 5.3767 1.3958 1.7600 -182 1264 5.4762 1.3834 1.7600 -182 1265 5.5758 1.3696 1.7600 -182 1266 5.6761 1.3613 1.7600 -182 1267 5.7780 1.3634 1.7600 -182 1268 5.8692 1.3733 1.7600 -182 1269 5.9474 1.3839 1.7600 -183 995 -7.7979 1.7506 1.7600 -183 996 -7.7509 1.7432 1.7600 -183 997 -7.7032 1.7375 1.7600 -183 998 -7.6521 1.7344 1.7600 -183 999 -7.5975 1.7335 1.7600 -183 1000 -7.5409 1.7343 1.7600 -183 1001 -7.4861 1.7381 1.7600 -183 1002 -7.4370 1.7462 1.7600 -183 1003 -7.3900 1.7542 1.7600 -183 1004 -7.3421 1.7573 1.7600 -183 1005 -7.2948 1.7557 1.7600 -183 1006 -7.2501 1.7508 1.7600 -183 1007 -7.2059 1.7437 1.7600 -183 1008 -7.1604 1.7343 1.7600 -183 1009 -7.1152 1.7238 1.7600 -183 1010 -7.0644 1.7103 1.7600 -183 1011 -7.0142 1.6942 1.7600 -183 1012 -6.9646 1.6777 1.7600 -183 1013 -6.9158 1.6544 1.7600 -183 1014 -6.8741 1.6351 1.7600 -183 1015 -6.8329 1.6161 1.7600 -183 1016 -6.7890 1.6000 1.7600 -183 1017 -6.7479 1.5874 1.7600 -183 1018 -6.7043 1.5764 1.7600 -183 1019 -6.6607 1.5657 1.7600 -183 1020 -6.6180 1.5591 1.7600 -183 1021 -6.5718 1.5559 1.7600 -183 1022 -6.5253 1.5554 1.7600 -183 1023 -6.4828 1.5599 1.7600 -183 1024 -6.4410 1.5676 1.7600 -183 1025 -6.3993 1.5752 1.7600 -183 1026 -6.3588 1.5832 1.7600 -183 1027 -6.3205 1.5881 1.7600 -183 1028 -6.2838 1.5938 1.7600 -183 1029 -6.2477 1.5932 1.7600 -183 1030 -6.2121 1.5921 1.7600 -183 1031 -6.1797 1.5867 1.7600 -183 1032 -6.1426 1.5789 1.7600 -183 1033 -6.1108 1.5656 1.7600 -183 1034 -6.0742 1.5521 1.7600 -183 1035 -6.0462 1.5325 1.7600 -183 1036 -6.0174 1.5124 1.7600 -183 1037 -5.9912 1.4922 1.7600 -183 1038 -5.9638 1.4738 1.7600 -183 1039 -5.9323 1.4576 1.7600 -183 1040 -5.9035 1.4435 1.7600 -183 1041 -5.8773 1.4329 1.7600 -183 1042 -5.8463 1.4276 1.7600 -183 1043 -5.8196 1.4221 1.7600 -183 1044 -5.7892 1.4198 1.7600 -183 1045 -5.7555 1.4238 1.7600 -183 1046 -5.7174 1.4275 1.7600 -183 1047 -5.6793 1.4346 1.7600 -183 1048 -5.6398 1.4427 1.7600 -183 1049 -5.6003 1.4528 1.7600 -183 1050 -5.5626 1.4603 1.7600 -183 1051 -5.5236 1.4649 1.7600 -183 1052 -5.4796 1.4662 1.7600 -183 1053 -5.4317 1.4688 1.7600 -183 1054 -5.3829 1.4663 1.7600 -183 1055 -5.3332 1.4617 1.7600 -183 1056 -5.2791 1.4524 1.7600 -183 1057 -5.2275 1.4414 1.7600 -183 1058 -5.1776 1.4297 1.7600 -183 1059 -5.1255 1.4155 1.7600 -183 1060 -5.0789 1.3996 1.7600 -183 1061 -5.0339 1.3899 1.7600 -183 1062 -4.9907 1.3835 1.7600 -183 1063 -4.9521 1.3808 1.7600 -183 1064 -4.9176 1.3799 1.7600 -183 1065 -4.8842 1.3793 1.7600 -183 1066 -4.8508 1.3794 1.7600 -183 1067 -4.8180 1.3847 1.7600 -183 1068 -4.7827 1.3937 1.7600 -183 1069 -4.7435 1.4067 1.7600 -183 1070 -4.7071 1.4172 1.7600 -183 1071 -4.6662 1.4293 1.7600 -183 1072 -4.6270 1.4407 1.7600 -183 1073 -4.5892 1.4526 1.7600 -183 1074 -4.5540 1.4640 1.7600 -183 1075 -4.5166 1.4701 1.7600 -183 1076 -4.4775 1.4745 1.7600 -183 1077 -4.4404 1.4767 1.7600 -183 1078 -4.4008 1.4743 1.7600 -183 1079 -4.3601 1.4693 1.7600 -183 1080 -4.3168 1.4589 1.7600 -183 1081 -4.2711 1.4461 1.7600 -183 1082 -4.2239 1.4353 1.7600 -183 1083 -4.1786 1.4215 1.7600 -183 1084 -4.1342 1.4120 1.7600 -183 1085 -4.0894 1.4021 1.7600 -183 1086 -4.0483 1.3959 1.7600 -183 1087 -4.0077 1.3904 1.7600 -183 1088 -3.9672 1.3863 1.7600 -183 1089 -3.9271 1.3849 1.7600 -183 1090 -3.8825 1.3884 1.7600 -183 1091 -3.8425 1.3949 1.7600 -183 1092 -3.7992 1.4036 1.7600 -183 1093 -3.7551 1.4178 1.7600 -183 1094 -3.7094 1.4324 1.7600 -183 1095 -3.6651 1.4445 1.7600 -183 1096 -3.6251 1.4541 1.7600 -183 1097 -3.5836 1.4607 1.7600 -183 1098 -3.5418 1.4641 1.7600 -183 1099 -3.5015 1.4670 1.7600 -183 1100 -3.4608 1.4660 1.7600 -183 1101 -3.4176 1.4640 1.7600 -183 1102 -3.3747 1.4592 1.7600 -183 1103 -3.3264 1.4559 1.7600 -183 1104 -3.2768 1.4443 1.7600 -183 1105 -3.2262 1.4299 1.7600 -183 1106 -3.1726 1.4165 1.7600 -183 1107 -3.1260 1.4090 1.7600 -183 1108 -3.0785 1.4024 1.7600 -183 1109 -3.0296 1.3998 1.7600 -183 1110 -2.9854 1.3979 1.7600 -183 1111 -2.9406 1.3980 1.7600 -183 1112 -2.8929 1.4006 1.7600 -183 1113 -2.8444 1.4090 1.7600 -183 1114 -2.7983 1.4222 1.7600 -183 1115 -2.7527 1.4367 1.7600 -183 1116 -2.7028 1.4533 1.7600 -183 1117 -2.6573 1.4684 1.7600 -183 1118 -2.6121 1.4807 1.7600 -183 1119 -2.5673 1.4908 1.7600 -183 1120 -2.5221 1.4995 1.7600 -183 1121 -2.4769 1.5012 1.7600 -183 1122 -2.4333 1.5019 1.7600 -183 1123 -2.3896 1.5025 1.7600 -183 1124 -2.3452 1.4977 1.7600 -183 1125 -2.2996 1.4916 1.7600 -183 1126 -2.2513 1.4847 1.7600 -183 1127 -2.1991 1.4719 1.7600 -183 1128 -2.1462 1.4608 1.7600 -183 1129 -2.0958 1.4534 1.7600 -183 1130 -2.0487 1.4499 1.7600 -183 1131 -2.0024 1.4483 1.7600 -183 1132 -1.9543 1.4473 1.7600 -183 1133 -1.9078 1.4478 1.7600 -183 1134 -1.8599 1.4520 1.7600 -183 1135 -1.8100 1.4589 1.7600 -183 1136 -1.7651 1.4683 1.7600 -183 1137 -1.7113 1.4799 1.7600 -183 1138 -1.6552 1.4960 1.7600 -183 1139 -1.6010 1.5131 1.7600 -183 1140 -1.5426 1.5243 1.7600 -183 1141 -1.4880 1.5321 1.7600 -183 1142 -1.4354 1.5346 1.7600 -183 1143 -1.3843 1.5354 1.7600 -183 1144 -1.3328 1.5349 1.7600 -183 1145 -1.2790 1.5277 1.7600 -183 1146 -1.2265 1.5230 1.7600 -183 1147 -1.1730 1.5161 1.7600 -183 1148 -1.1193 1.5066 1.7600 -183 1149 -1.0658 1.4933 1.7600 -183 1150 -1.0099 1.4850 1.7600 -183 1151 -0.9612 1.4814 1.7600 -183 1152 -0.9115 1.4792 1.7600 -183 1153 -0.8631 1.4785 1.7600 -183 1154 -0.8158 1.4806 1.7600 -183 1155 -0.7654 1.4835 1.7600 -183 1156 -0.7124 1.4906 1.7600 -183 1157 -0.6561 1.4985 1.7600 -183 1158 -0.6009 1.5075 1.7600 -183 1159 -0.5470 1.5179 1.7600 -183 1160 -0.4937 1.5267 1.7600 -183 1161 -0.4411 1.5316 1.7600 -183 1162 -0.3924 1.5339 1.7600 -183 1163 -0.3498 1.5336 1.7600 -183 1164 -0.3003 1.5313 1.7600 -183 1165 -0.2477 1.5284 1.7600 -183 1166 -0.1933 1.5243 1.7600 -183 1167 -0.1377 1.5159 1.7600 -183 1168 -0.0839 1.5048 1.7600 -183 1169 -0.0294 1.4920 1.7600 -183 1170 0.0247 1.4791 1.7600 -183 1171 0.0776 1.4689 1.7600 -183 1172 0.1310 1.4641 1.7600 -183 1173 0.1846 1.4618 1.7600 -183 1174 0.2390 1.4612 1.7600 -183 1175 0.2931 1.4609 1.7600 -183 1176 0.3527 1.4616 1.7600 -183 1177 0.4155 1.4670 1.7600 -183 1178 0.4788 1.4774 1.7600 -183 1179 0.5392 1.4911 1.7600 -183 1180 0.5957 1.5085 1.7600 -183 1181 0.6530 1.5198 1.7600 -183 1182 0.7092 1.5338 1.7600 -183 1183 0.7645 1.5358 1.7600 -183 1184 0.8183 1.5375 1.7600 -183 1185 0.8722 1.5382 1.7600 -183 1186 0.9296 1.5374 1.7600 -183 1187 0.9859 1.5340 1.7600 -183 1188 1.0440 1.5299 1.7600 -183 1189 1.1041 1.5209 1.7600 -183 1190 1.1614 1.5138 1.7600 -183 1191 1.2169 1.5000 1.7600 -183 1192 1.2728 1.4944 1.7600 -183 1193 1.3267 1.4935 1.7600 -183 1194 1.3780 1.4971 1.7600 -183 1195 1.4309 1.5007 1.7600 -183 1196 1.4851 1.5057 1.7600 -183 1197 1.5432 1.5100 1.7600 -183 1198 1.6020 1.5165 1.7600 -183 1199 1.6585 1.5249 1.7600 -183 1200 1.7178 1.5346 1.7600 -183 1201 1.7748 1.5452 1.7600 -183 1202 1.8305 1.5520 1.7600 -183 1203 1.8862 1.5537 1.7600 -183 1204 1.9410 1.5492 1.7600 -183 1205 1.9938 1.5466 1.7600 -183 1206 2.0479 1.5400 1.7600 -183 1207 2.1004 1.5324 1.7600 -183 1208 2.1558 1.5207 1.7600 -183 1209 2.2104 1.5065 1.7600 -183 1210 2.2680 1.4912 1.7600 -183 1211 2.3271 1.4731 1.7600 -183 1212 2.3857 1.4583 1.7600 -183 1213 2.4421 1.4463 1.7600 -183 1214 2.4959 1.4393 1.7600 -183 1215 2.5496 1.4345 1.7600 -183 1216 2.6024 1.4321 1.7600 -183 1217 2.6557 1.4326 1.7600 -183 1218 2.7116 1.4371 1.7600 -183 1219 2.7656 1.4462 1.7600 -183 1220 2.8256 1.4598 1.7600 -183 1221 2.8887 1.4770 1.7600 -183 1222 2.9548 1.4944 1.7600 -183 1223 3.0216 1.5075 1.7600 -183 1224 3.0828 1.5172 1.7600 -183 1225 3.1442 1.5237 1.7600 -183 1226 3.2041 1.5259 1.7600 -183 1227 3.2623 1.5271 1.7600 -183 1228 3.3220 1.5251 1.7600 -183 1229 3.3819 1.5230 1.7600 -183 1230 3.4398 1.5172 1.7600 -183 1231 3.5006 1.5101 1.7600 -183 1232 3.5711 1.5051 1.7600 -183 1233 3.6488 1.4951 1.7600 -183 1234 3.7225 1.4809 1.7600 -183 1235 3.7765 1.4784 1.7600 -183 1236 3.8230 1.4864 1.7600 -183 1237 3.8811 1.4963 1.7600 -183 1238 3.9500 1.5087 1.7600 -183 1239 4.0227 1.5210 1.7600 -183 1240 4.0984 1.5357 1.7600 -183 1241 4.1719 1.5571 1.7600 -183 1242 4.2490 1.5780 1.7600 -183 1243 4.3273 1.5985 1.7600 -183 1244 4.4062 1.6117 1.7600 -183 1245 4.4793 1.6190 1.7600 -183 1246 4.5536 1.6226 1.7600 -183 1247 4.6256 1.6252 1.7600 -183 1248 4.6945 1.6275 1.7600 -183 1249 4.7668 1.6304 1.7600 -183 1250 4.8418 1.6329 1.7600 -183 1251 4.9271 1.6362 1.7600 -183 1252 5.0187 1.6407 1.7600 -183 1253 5.1049 1.6527 1.7600 -183 1254 5.1921 1.6711 1.7600 -183 1255 5.2692 1.6915 1.7600 -183 1256 5.3417 1.7126 1.7600 -183 1257 5.4108 1.7330 1.7600 -183 1258 5.4803 1.7530 1.7600 -183 1259 5.5543 1.7754 1.7600 -183 1260 5.6424 1.8018 1.7600 -183 1261 5.7311 1.8260 1.7600 -183 1262 5.8160 1.8441 1.7600 -183 1263 5.8986 1.8554 1.7600 -184 1002 -7.8028 0.7882 1.7600 -184 1003 -7.7523 0.7398 1.7600 -184 1004 -7.7035 0.6970 1.7600 -184 1005 -7.6519 0.6633 1.7600 -184 1006 -7.5948 0.6380 1.7600 -184 1007 -7.5355 0.6191 1.7600 -184 1008 -7.4747 0.6056 1.7600 -184 1009 -7.4140 0.5979 1.7600 -184 1010 -7.3602 0.5940 1.7600 -184 1011 -7.3087 0.5917 1.7600 -184 1012 -7.2651 0.5834 1.7600 -184 1013 -7.2192 0.5670 1.7600 -184 1014 -7.1687 0.5424 1.7600 -184 1015 -7.1178 0.5160 1.7600 -184 1016 -7.0685 0.4868 1.7600 -184 1017 -7.0155 0.4543 1.7600 -184 1018 -6.9648 0.4199 1.7600 -184 1019 -6.9230 0.3877 1.7600 -184 1020 -6.8815 0.3502 1.7600 -184 1021 -6.8419 0.3218 1.7600 -184 1022 -6.8008 0.3031 1.7600 -184 1023 -6.7625 0.2882 1.7600 -184 1024 -6.7173 0.2729 1.7600 -184 1025 -6.6674 0.2583 1.7600 -184 1026 -6.6183 0.2429 1.7600 -184 1027 -6.5712 0.2313 1.7600 -184 1028 -6.5311 0.2222 1.7600 -184 1029 -6.4920 0.2158 1.7600 -184 1030 -6.4530 0.2080 1.7600 -184 1031 -6.4101 0.1928 1.7600 -184 1032 -6.3681 0.1715 1.7600 -184 1033 -6.3279 0.1509 1.7600 -184 1034 -6.2884 0.1307 1.7600 -184 1035 -6.2528 0.1102 1.7600 -184 1036 -6.2153 0.0906 1.7600 -184 1037 -6.1826 0.0655 1.7600 -184 1038 -6.1508 0.0408 1.7600 -184 1039 -6.1182 0.0197 1.7600 -184 1040 -6.0864 0.0099 1.7600 -184 1041 -6.0479 0.0088 1.7600 -184 1042 -6.0149 0.0052 1.7600 -184 1043 -5.9862 -0.0015 1.7600 -184 1044 -5.9508 -0.0019 1.7600 -184 1045 -5.9128 0.0046 1.7600 -184 1046 -5.8710 0.0090 1.7600 -184 1047 -5.8276 0.0084 1.7600 -184 1048 -5.7888 0.0079 1.7600 -184 1049 -5.7467 0.0085 1.7600 -184 1050 -5.7050 0.0098 1.7600 -184 1051 -5.6650 0.0090 1.7600 -184 1052 -5.6269 0.0056 1.7600 -184 1053 -5.5822 0.0038 1.7600 -184 1054 -5.5349 -0.0010 1.7600 -184 1055 -5.4933 -0.0050 1.7600 -184 1056 -5.4534 -0.0137 1.7600 -184 1057 -5.4127 -0.0156 1.7600 -184 1058 -5.3707 -0.0120 1.7600 -184 1059 -5.3317 -0.0056 1.7600 -184 1060 -5.2956 0.0041 1.7600 -184 1061 -5.2636 0.0161 1.7600 -184 1062 -5.2302 0.0297 1.7600 -184 1063 -5.1962 0.0453 1.7600 -184 1064 -5.1652 0.0609 1.7600 -184 1065 -5.1346 0.0763 1.7600 -184 1066 -5.1046 0.0875 1.7600 -184 1067 -5.0737 0.0949 1.7600 -184 1068 -5.0391 0.0973 1.7600 -184 1069 -5.0020 0.0976 1.7600 -184 1070 -4.9640 0.0962 1.7600 -184 1071 -4.9233 0.0920 1.7600 -184 1072 -4.8786 0.0882 1.7600 -184 1073 -4.8327 0.0819 1.7600 -184 1074 -4.7861 0.0778 1.7600 -184 1075 -4.7401 0.0782 1.7600 -184 1076 -4.6973 0.0832 1.7600 -184 1077 -4.6552 0.0927 1.7600 -184 1078 -4.6190 0.1091 1.7600 -184 1079 -4.5828 0.1277 1.7600 -184 1080 -4.5507 0.1507 1.7600 -184 1081 -4.5240 0.1776 1.7600 -184 1082 -4.4996 0.2029 1.7600 -184 1083 -4.4806 0.2274 1.7600 -184 1084 -4.4587 0.2457 1.7600 -184 1085 -4.4311 0.2614 1.7600 -184 1086 -4.3999 0.2717 1.7600 -184 1087 -4.3670 0.2792 1.7600 -184 1088 -4.3312 0.2856 1.7600 -184 1089 -4.2909 0.2876 1.7600 -184 1090 -4.2490 0.2869 1.7600 -184 1091 -4.2060 0.2850 1.7600 -184 1092 -4.1600 0.2850 1.7600 -184 1093 -4.1180 0.2884 1.7600 -184 1094 -4.0781 0.2954 1.7600 -184 1095 -4.0411 0.3028 1.7600 -184 1096 -4.0066 0.3134 1.7600 -184 1097 -3.9710 0.3221 1.7600 -184 1098 -3.9340 0.3348 1.7600 -184 1099 -3.9010 0.3520 1.7600 -184 1100 -3.8663 0.3719 1.7600 -184 1101 -3.8344 0.3900 1.7600 -184 1102 -3.8052 0.4034 1.7600 -184 1103 -3.7712 0.4040 1.7600 -184 1104 -3.7341 0.3981 1.7600 -184 1105 -3.6961 0.3902 1.7600 -184 1106 -3.6543 0.3797 1.7600 -184 1107 -3.6063 0.3659 1.7600 -184 1108 -3.5591 0.3464 1.7600 -184 1109 -3.5095 0.3220 1.7600 -184 1110 -3.4673 0.3016 1.7600 -184 1111 -3.4291 0.2893 1.7600 -184 1112 -3.3919 0.2861 1.7600 -184 1113 -3.3581 0.2862 1.7600 -184 1114 -3.3254 0.2895 1.7600 -184 1115 -3.2886 0.2984 1.7600 -184 1116 -3.2478 0.3116 1.7600 -184 1117 -3.2049 0.3298 1.7600 -184 1118 -3.1602 0.3510 1.7600 -184 1119 -3.1102 0.3750 1.7600 -184 1120 -3.0652 0.3970 1.7600 -184 1121 -3.0193 0.4103 1.7600 -184 1122 -2.9701 0.4084 1.7600 -184 1123 -2.9261 0.4001 1.7600 -184 1124 -2.8840 0.3875 1.7600 -184 1125 -2.8416 0.3738 1.7600 -184 1126 -2.7961 0.3548 1.7600 -184 1127 -2.7488 0.3275 1.7600 -184 1128 -2.7014 0.2985 1.7600 -184 1129 -2.6553 0.2700 1.7600 -184 1130 -2.6060 0.2535 1.7600 -184 1131 -2.5523 0.2473 1.7600 -184 1132 -2.4969 0.2468 1.7600 -184 1133 -2.4433 0.2515 1.7600 -184 1134 -2.3921 0.2585 1.7600 -184 1135 -2.3429 0.2708 1.7600 -184 1136 -2.2926 0.2877 1.7600 -184 1137 -2.2414 0.3074 1.7600 -184 1138 -2.1951 0.3277 1.7600 -184 1139 -2.1501 0.3450 1.7600 -184 1140 -2.1000 0.3502 1.7600 -184 1141 -2.0492 0.3497 1.7600 -184 1142 -1.9981 0.3451 1.7600 -184 1143 -1.9527 0.3383 1.7600 -184 1144 -1.9075 0.3258 1.7600 -184 1145 -1.8607 0.3065 1.7600 -184 1146 -1.8099 0.2799 1.7600 -184 1147 -1.7567 0.2540 1.7600 -184 1148 -1.7022 0.2392 1.7600 -184 1149 -1.6467 0.2351 1.7600 -184 1150 -1.5966 0.2406 1.7600 -184 1151 -1.5462 0.2543 1.7600 -184 1152 -1.4989 0.2713 1.7600 -184 1153 -1.4484 0.2888 1.7600 -184 1154 -1.3939 0.3081 1.7600 -184 1155 -1.3373 0.3291 1.7600 -184 1156 -1.2764 0.3495 1.7600 -184 1157 -1.2203 0.3642 1.7600 -184 1158 -1.1642 0.3674 1.7600 -184 1159 -1.1077 0.3635 1.7600 -184 1160 -1.0507 0.3551 1.7600 -184 1161 -0.9924 0.3451 1.7600 -184 1162 -0.9331 0.3344 1.7600 -184 1163 -0.8743 0.3206 1.7600 -184 1164 -0.8140 0.3037 1.7600 -184 1165 -0.7517 0.2925 1.7600 -184 1166 -0.6991 0.2936 1.7600 -184 1167 -0.6476 0.3018 1.7600 -184 1168 -0.5953 0.3135 1.7600 -184 1169 -0.5428 0.3277 1.7600 -184 1170 -0.4894 0.3443 1.7600 -184 1171 -0.4331 0.3625 1.7600 -184 1172 -0.3758 0.3861 1.7600 -184 1173 -0.3182 0.4121 1.7600 -184 1174 -0.2607 0.4317 1.7600 -184 1175 -0.2112 0.4408 1.7600 -184 1176 -0.1558 0.4411 1.7600 -184 1177 -0.1003 0.4363 1.7600 -184 1178 -0.0467 0.4291 1.7600 -184 1179 0.0093 0.4193 1.7600 -184 1180 0.0667 0.4073 1.7600 -184 1181 0.1244 0.3913 1.7600 -184 1182 0.1791 0.3732 1.7600 -184 1183 0.2333 0.3524 1.7600 -184 1184 0.2874 0.3410 1.7600 -184 1185 0.3387 0.3418 1.7600 -184 1186 0.3926 0.3490 1.7600 -184 1187 0.4473 0.3558 1.7600 -184 1188 0.5041 0.3629 1.7600 -184 1189 0.5658 0.3759 1.7600 -184 1190 0.6278 0.3918 1.7600 -184 1191 0.6890 0.4107 1.7600 -184 1192 0.7448 0.4293 1.7600 -184 1193 0.7995 0.4439 1.7600 -184 1194 0.8579 0.4467 1.7600 -184 1195 0.9157 0.4465 1.7600 -184 1196 0.9758 0.4429 1.7600 -184 1197 1.0370 0.4408 1.7600 -184 1198 1.0985 0.4356 1.7600 -184 1199 1.1603 0.4249 1.7600 -184 1200 1.2219 0.4075 1.7600 -184 1201 1.2812 0.3917 1.7600 -184 1202 1.3363 0.3850 1.7600 -184 1203 1.3899 0.3812 1.7600 -184 1204 1.4365 0.3803 1.7600 -184 1205 1.4902 0.3788 1.7600 -184 1206 1.5410 0.3820 1.7600 -184 1207 1.5991 0.3905 1.7600 -184 1208 1.6558 0.4045 1.7600 -184 1209 1.7155 0.4202 1.7600 -184 1210 1.7771 0.4304 1.7600 -184 1211 1.8430 0.4323 1.7600 -184 1212 1.9071 0.4309 1.7600 -184 1213 1.9698 0.4238 1.7600 -184 1214 2.0343 0.4123 1.7600 -184 1215 2.0957 0.3964 1.7600 -184 1216 2.1585 0.3749 1.7600 -184 1217 2.2203 0.3438 1.7600 -184 1218 2.2757 0.3196 1.7600 -184 1219 2.3310 0.3047 1.7600 -184 1220 2.3854 0.3009 1.7600 -184 1221 2.4380 0.3027 1.7600 -184 1222 2.4875 0.3110 1.7600 -184 1223 2.5370 0.3217 1.7600 -184 1224 2.5918 0.3353 1.7600 -184 1225 2.6498 0.3511 1.7600 -184 1226 2.7085 0.3677 1.7600 -184 1227 2.7646 0.3791 1.7600 -184 1228 2.8190 0.3852 1.7600 -184 1229 2.8687 0.3873 1.7600 -184 1230 2.9155 0.3916 1.7600 -184 1231 2.9657 0.3946 1.7600 -184 1232 3.0175 0.3859 1.7600 -184 1233 3.0762 0.3720 1.7600 -184 1234 3.1384 0.3558 1.7600 -184 1235 3.2050 0.3384 1.7600 -184 1236 3.2669 0.3253 1.7600 -184 1237 3.3223 0.3174 1.7600 -184 1238 3.3749 0.3218 1.7600 -184 1239 3.4256 0.3287 1.7600 -184 1240 3.4778 0.3416 1.7600 -184 1241 3.5364 0.3609 1.7600 -184 1242 3.5999 0.3852 1.7600 -184 1243 3.6648 0.4112 1.7600 -184 1244 3.7323 0.4405 1.7600 -184 1245 3.7968 0.4635 1.7600 -184 1246 3.8551 0.4739 1.7600 -184 1247 3.9131 0.4763 1.7600 -184 1248 3.9762 0.4766 1.7600 -184 1249 4.0406 0.4765 1.7600 -184 1250 4.1088 0.4765 1.7600 -184 1251 4.1806 0.4725 1.7600 -184 1252 4.2586 0.4614 1.7600 -184 1253 4.3393 0.4549 1.7600 -184 1254 4.4069 0.4553 1.7600 -184 1255 4.4663 0.4630 1.7600 -184 1256 4.5250 0.4713 1.7600 -184 1257 4.5877 0.4804 1.7600 -184 1258 4.6616 0.4909 1.7600 -184 1259 4.7374 0.5024 1.7600 -184 1260 4.8059 0.5065 1.7600 -184 1261 4.8686 0.4981 1.7600 -184 1262 4.9254 0.4819 1.7600 -184 1263 4.9801 0.4616 1.7600 -184 1264 5.0337 0.4368 1.7600 -184 1265 5.0872 0.4056 1.7600 -184 1266 5.1456 0.3659 1.7600 -184 1267 5.2216 0.3160 1.7600 -184 1268 5.2964 0.2735 1.7600 -184 1269 5.3585 0.2523 1.7600 -184 1270 5.4216 0.2453 1.7600 -184 1271 5.4841 0.2521 1.7600 -184 1272 5.5555 0.2762 1.7600 -184 1273 5.6353 0.3140 1.7600 -184 1274 5.7127 0.3470 1.7600 -184 1275 5.7936 0.3736 1.7600 -184 1276 5.8715 0.3936 1.7600 -184 1277 5.9470 0.4056 1.7600 -185 1000 -7.8222 1.1532 1.7600 -185 1001 -7.7550 1.1481 1.7600 -185 1002 -7.6911 1.1411 1.7600 -185 1003 -7.6291 1.1342 1.7600 -185 1004 -7.5693 1.1269 1.7600 -185 1005 -7.5146 1.1193 1.7600 -185 1006 -7.4673 1.1082 1.7600 -185 1007 -7.4230 1.0933 1.7600 -185 1008 -7.3756 1.0768 1.7600 -185 1009 -7.3248 1.0578 1.7600 -185 1010 -7.2734 1.0360 1.7600 -185 1011 -7.2247 1.0121 1.7600 -185 1012 -7.1809 0.9878 1.7600 -185 1013 -7.1392 0.9671 1.7600 -185 1014 -7.0973 0.9538 1.7600 -185 1015 -7.0517 0.9457 1.7600 -185 1016 -7.0026 0.9389 1.7600 -185 1017 -6.9513 0.9323 1.7600 -185 1018 -6.9005 0.9271 1.7600 -185 1019 -6.8500 0.9247 1.7600 -185 1020 -6.8011 0.9264 1.7600 -185 1021 -6.7576 0.9312 1.7600 -185 1022 -6.7152 0.9331 1.7600 -185 1023 -6.6782 0.9313 1.7600 -185 1024 -6.6403 0.9307 1.7600 -185 1025 -6.6001 0.9293 1.7600 -185 1026 -6.5627 0.9338 1.7600 -185 1027 -6.5325 0.9359 1.7600 -185 1028 -6.5017 0.9378 1.7600 -185 1029 -6.4769 0.9363 1.7600 -185 1030 -6.4488 0.9293 1.7600 -185 1031 -6.4207 0.9213 1.7600 -185 1032 -6.3887 0.9112 1.7600 -185 1033 -6.3558 0.8994 1.7600 -185 1034 -6.3206 0.8920 1.7600 -185 1035 -6.2875 0.8847 1.7600 -185 1036 -6.2496 0.8830 1.7600 -185 1037 -6.2111 0.8846 1.7600 -185 1038 -6.1732 0.8858 1.7600 -185 1039 -6.1304 0.8875 1.7600 -185 1040 -6.0927 0.8915 1.7600 -185 1041 -6.0563 0.8970 1.7600 -185 1042 -6.0230 0.8995 1.7600 -185 1043 -5.9911 0.8998 1.7600 -185 1044 -5.9543 0.8993 1.7600 -185 1045 -5.9200 0.8929 1.7600 -185 1046 -5.8864 0.8871 1.7600 -185 1047 -5.8482 0.8808 1.7600 -185 1048 -5.8158 0.8708 1.7600 -185 1049 -5.7839 0.8569 1.7600 -185 1050 -5.7537 0.8395 1.7600 -185 1051 -5.7217 0.8234 1.7600 -185 1052 -5.6911 0.8075 1.7600 -185 1053 -5.6581 0.7928 1.7600 -185 1054 -5.6225 0.7765 1.7600 -185 1055 -5.5816 0.7610 1.7600 -185 1056 -5.5383 0.7477 1.7600 -185 1057 -5.4923 0.7427 1.7600 -185 1058 -5.4513 0.7431 1.7600 -185 1059 -5.4141 0.7443 1.7600 -185 1060 -5.3812 0.7498 1.7600 -185 1061 -5.3501 0.7543 1.7600 -185 1062 -5.3181 0.7560 1.7600 -185 1063 -5.2842 0.7595 1.7600 -185 1064 -5.2465 0.7609 1.7600 -185 1065 -5.2095 0.7612 1.7600 -185 1066 -5.1726 0.7575 1.7600 -185 1067 -5.1364 0.7511 1.7600 -185 1068 -5.0978 0.7421 1.7600 -185 1069 -5.0586 0.7321 1.7600 -185 1070 -5.0218 0.7256 1.7600 -185 1071 -4.9889 0.7190 1.7600 -185 1072 -4.9514 0.7159 1.7600 -185 1073 -4.9100 0.7149 1.7600 -185 1074 -4.8701 0.7198 1.7600 -185 1075 -4.8262 0.7232 1.7600 -185 1076 -4.7851 0.7269 1.7600 -185 1077 -4.7390 0.7329 1.7600 -185 1078 -4.6926 0.7401 1.7600 -185 1079 -4.6426 0.7510 1.7600 -185 1080 -4.5939 0.7641 1.7600 -185 1081 -4.5487 0.7784 1.7600 -185 1082 -4.5024 0.7905 1.7600 -185 1083 -4.4568 0.7961 1.7600 -185 1084 -4.4106 0.8010 1.7600 -185 1085 -4.3643 0.8031 1.7600 -185 1086 -4.3199 0.8032 1.7600 -185 1087 -4.2708 0.7991 1.7600 -185 1088 -4.2284 0.7916 1.7600 -185 1089 -4.1833 0.7805 1.7600 -185 1090 -4.1416 0.7714 1.7600 -185 1091 -4.1022 0.7685 1.7600 -185 1092 -4.0583 0.7656 1.7600 -185 1093 -4.0151 0.7709 1.7600 -185 1094 -3.9626 0.7770 1.7600 -185 1095 -3.9122 0.7832 1.7600 -185 1096 -3.8629 0.7898 1.7600 -185 1097 -3.8184 0.7976 1.7600 -185 1098 -3.7762 0.8066 1.7600 -185 1099 -3.7312 0.8162 1.7600 -185 1100 -3.6910 0.8170 1.7600 -185 1101 -3.6526 0.8116 1.7600 -185 1102 -3.6154 0.8021 1.7600 -185 1103 -3.5760 0.7932 1.7600 -185 1104 -3.5342 0.7853 1.7600 -185 1105 -3.4957 0.7765 1.7600 -185 1106 -3.4591 0.7630 1.7600 -185 1107 -3.4213 0.7523 1.7600 -185 1108 -3.3885 0.7410 1.7600 -185 1109 -3.3585 0.7366 1.7600 -185 1110 -3.3311 0.7358 1.7600 -185 1111 -3.2943 0.7307 1.7600 -185 1112 -3.2551 0.7248 1.7600 -185 1113 -3.2148 0.7192 1.7600 -185 1114 -3.1719 0.7177 1.7600 -185 1115 -3.1286 0.7188 1.7600 -185 1116 -3.0848 0.7227 1.7600 -185 1117 -3.0406 0.7271 1.7600 -185 1118 -2.9926 0.7334 1.7600 -185 1119 -2.9475 0.7380 1.7600 -185 1120 -2.9045 0.7436 1.7600 -185 1121 -2.8594 0.7472 1.7600 -185 1122 -2.8167 0.7518 1.7600 -185 1123 -2.7756 0.7552 1.7600 -185 1124 -2.7232 0.7550 1.7600 -185 1125 -2.6765 0.7577 1.7600 -185 1126 -2.6271 0.7580 1.7600 -185 1127 -2.5735 0.7509 1.7600 -185 1128 -2.5288 0.7412 1.7600 -185 1129 -2.4761 0.7318 1.7600 -185 1130 -2.4296 0.7236 1.7600 -185 1131 -2.3820 0.7190 1.7600 -185 1132 -2.3344 0.7159 1.7600 -185 1133 -2.2901 0.7120 1.7600 -185 1134 -2.2428 0.7080 1.7600 -185 1135 -2.1973 0.7081 1.7600 -185 1136 -2.1424 0.7044 1.7600 -185 1137 -2.0949 0.7059 1.7600 -185 1138 -2.0435 0.7077 1.7600 -185 1139 -1.9876 0.7083 1.7600 -185 1140 -1.9318 0.7085 1.7600 -185 1141 -1.8783 0.7088 1.7600 -185 1142 -1.8350 0.7132 1.7600 -185 1143 -1.7850 0.7133 1.7600 -185 1144 -1.7356 0.7132 1.7600 -185 1145 -1.6843 0.7108 1.7600 -185 1146 -1.6316 0.7053 1.7600 -185 1147 -1.5763 0.6986 1.7600 -185 1148 -1.5210 0.6919 1.7600 -185 1149 -1.4662 0.6851 1.7600 -185 1150 -1.4155 0.6805 1.7600 -185 1151 -1.3638 0.6812 1.7600 -185 1152 -1.3136 0.6851 1.7600 -185 1153 -1.2653 0.6889 1.7600 -185 1154 -1.2166 0.6929 1.7600 -185 1155 -1.1641 0.6979 1.7600 -185 1156 -1.1082 0.7044 1.7600 -185 1157 -1.0500 0.7121 1.7600 -185 1158 -0.9930 0.7203 1.7600 -185 1159 -0.9359 0.7281 1.7600 -185 1160 -0.8778 0.7358 1.7600 -185 1161 -0.8207 0.7425 1.7600 -185 1162 -0.7661 0.7478 1.7600 -185 1163 -0.7127 0.7516 1.7600 -185 1164 -0.6586 0.7524 1.7600 -185 1165 -0.6025 0.7510 1.7600 -185 1166 -0.5464 0.7461 1.7600 -185 1167 -0.4924 0.7385 1.7600 -185 1168 -0.4399 0.7299 1.7600 -185 1169 -0.3887 0.7221 1.7600 -185 1170 -0.3381 0.7167 1.7600 -185 1171 -0.2872 0.7140 1.7600 -185 1172 -0.2346 0.7138 1.7600 -185 1173 -0.1804 0.7142 1.7600 -185 1174 -0.1224 0.7156 1.7600 -185 1175 -0.0600 0.7164 1.7600 -185 1176 0.0063 0.7175 1.7600 -185 1177 0.0814 0.7207 1.7600 -185 1178 0.1632 0.7234 1.7600 -185 1179 0.2425 0.7254 1.7600 -185 1180 0.3145 0.7252 1.7600 -185 1181 0.3748 0.7255 1.7600 -185 1182 0.4317 0.7286 1.7600 -185 1183 0.4900 0.7273 1.7600 -185 1184 0.5454 0.7242 1.7600 -185 1185 0.6028 0.7186 1.7600 -185 1186 0.6569 0.7140 1.7600 -185 1187 0.7061 0.7118 1.7600 -185 1188 0.7532 0.7113 1.7600 -185 1189 0.8059 0.7070 1.7600 -185 1190 0.8570 0.7063 1.7600 -185 1191 0.9083 0.7054 1.7600 -185 1192 0.9610 0.7044 1.7600 -185 1193 1.0160 0.7046 1.7600 -185 1194 1.0741 0.7118 1.7600 -185 1195 1.1334 0.7199 1.7600 -185 1196 1.1880 0.7285 1.7600 -185 1197 1.2420 0.7323 1.7600 -185 1198 1.2928 0.7285 1.7600 -185 1199 1.3420 0.7216 1.7600 -185 1200 1.3940 0.7185 1.7600 -185 1201 1.4450 0.7146 1.7600 -185 1202 1.5006 0.7083 1.7600 -185 1203 1.5578 0.6954 1.7600 -185 1204 1.6214 0.6790 1.7600 -185 1205 1.6825 0.6679 1.7600 -185 1206 1.7427 0.6653 1.7600 -185 1207 1.8039 0.6666 1.7600 -185 1208 1.8651 0.6728 1.7600 -185 1209 1.9231 0.6809 1.7600 -185 1210 1.9772 0.6898 1.7600 -185 1211 2.0316 0.6996 1.7600 -185 1212 2.0840 0.7137 1.7600 -185 1213 2.1393 0.7317 1.7600 -185 1214 2.1903 0.7515 1.7600 -185 1215 2.2414 0.7675 1.7600 -185 1216 2.2991 0.7788 1.7600 -185 1217 2.3581 0.7875 1.7600 -185 1218 2.4148 0.7923 1.7600 -185 1219 2.4679 0.7972 1.7600 -185 1220 2.5241 0.7969 1.7600 -185 1221 2.5796 0.7938 1.7600 -185 1222 2.6290 0.7892 1.7600 -185 1223 2.6696 0.7884 1.7600 -185 1224 2.7097 0.7936 1.7600 -185 1225 2.7499 0.8033 1.7600 -185 1226 2.7923 0.8153 1.7600 -185 1227 2.8384 0.8308 1.7600 -185 1228 2.8868 0.8481 1.7600 -185 1229 2.9477 0.8593 1.7600 -185 1230 3.0014 0.8732 1.7600 -185 1231 3.0562 0.8839 1.7600 -185 1232 3.1136 0.8913 1.7600 -185 1233 3.1731 0.8946 1.7600 -185 1234 3.2314 0.8957 1.7600 -185 1235 3.2887 0.8946 1.7600 -185 1236 3.3472 0.8910 1.7600 -185 1237 3.4063 0.8848 1.7600 -185 1238 3.4651 0.8780 1.7600 -185 1239 3.5239 0.8692 1.7600 -185 1240 3.5821 0.8578 1.7600 -185 1241 3.6429 0.8471 1.7600 -185 1242 3.6998 0.8363 1.7600 -185 1243 3.7552 0.8340 1.7600 -185 1244 3.8105 0.8258 1.7600 -185 1245 3.8687 0.8184 1.7600 -185 1246 3.9273 0.8130 1.7600 -185 1247 3.9919 0.8104 1.7600 -185 1248 4.0568 0.8100 1.7600 -185 1249 4.1217 0.8079 1.7600 -185 1250 4.1867 0.8035 1.7600 -185 1251 4.2538 0.7974 1.7600 -185 1252 4.3206 0.7891 1.7600 -185 1253 4.3856 0.7826 1.7600 -185 1254 4.4493 0.7754 1.7600 -185 1255 4.5166 0.7657 1.7600 -185 1256 4.5904 0.7538 1.7600 -185 1257 4.6667 0.7428 1.7600 -185 1258 4.7461 0.7359 1.7600 -185 1259 4.8218 0.7340 1.7600 -185 1260 4.8965 0.7373 1.7600 -185 1261 4.9653 0.7421 1.7600 -185 1262 5.0321 0.7501 1.7600 -185 1263 5.1004 0.7597 1.7600 -185 1264 5.1764 0.7698 1.7600 -185 1265 5.2506 0.7791 1.7600 -185 1266 5.3199 0.7869 1.7600 -185 1267 5.3878 0.7907 1.7600 -185 1268 5.4499 0.7920 1.7600 -185 1269 5.5048 0.7941 1.7600 -185 1270 5.5553 0.7962 1.7600 -185 1271 5.6041 0.7957 1.7600 -185 1272 5.6567 0.7924 1.7600 -185 1273 5.7150 0.7893 1.7600 -185 1274 5.7721 0.7866 1.7600 -185 1275 5.8330 0.7846 1.7600 -185 1276 5.9025 0.7855 1.7600 -186 1007 -7.7885 2.0446 1.7600 -186 1008 -7.7291 2.0458 1.7600 -186 1009 -7.6705 2.0502 1.7600 -186 1010 -7.6142 2.0583 1.7600 -186 1011 -7.5611 2.0677 1.7600 -186 1012 -7.5097 2.0733 1.7600 -186 1013 -7.4626 2.0746 1.7600 -186 1014 -7.4189 2.0711 1.7600 -186 1015 -7.3756 2.0647 1.7600 -186 1016 -7.3310 2.0547 1.7600 -186 1017 -7.2848 2.0417 1.7600 -186 1018 -7.2365 2.0263 1.7600 -186 1019 -7.1881 2.0085 1.7600 -186 1020 -7.1423 1.9891 1.7600 -186 1021 -7.0999 1.9686 1.7600 -186 1022 -7.0588 1.9482 1.7600 -186 1023 -7.0159 1.9304 1.7600 -186 1024 -6.9731 1.9189 1.7600 -186 1025 -6.9293 1.9119 1.7600 -186 1026 -6.8830 1.9071 1.7600 -186 1027 -6.8359 1.9011 1.7600 -186 1028 -6.7865 1.9009 1.7600 -186 1029 -6.7350 1.9006 1.7600 -186 1030 -6.6849 1.9032 1.7600 -186 1031 -6.6382 1.9099 1.7600 -186 1032 -6.5954 1.9183 1.7600 -186 1033 -6.5539 1.9251 1.7600 -186 1034 -6.5155 1.9302 1.7600 -186 1035 -6.4805 1.9334 1.7600 -186 1036 -6.4502 1.9276 1.7600 -186 1037 -6.4204 1.9237 1.7600 -186 1038 -6.3913 1.9167 1.7600 -186 1039 -6.3597 1.9067 1.7600 -186 1040 -6.3272 1.8944 1.7600 -186 1041 -6.2967 1.8812 1.7600 -186 1042 -6.2669 1.8651 1.7600 -186 1043 -6.2358 1.8496 1.7600 -186 1044 -6.2088 1.8319 1.7600 -186 1045 -6.1812 1.8153 1.7600 -186 1046 -6.1522 1.8026 1.7600 -186 1047 -6.1212 1.7905 1.7600 -186 1048 -6.0892 1.7830 1.7600 -186 1049 -6.0536 1.7738 1.7600 -186 1050 -6.0230 1.7689 1.7600 -186 1051 -5.9860 1.7676 1.7600 -186 1052 -5.9506 1.7663 1.7600 -186 1053 -5.9102 1.7654 1.7600 -186 1054 -5.8672 1.7653 1.7600 -186 1055 -5.8253 1.7658 1.7600 -186 1056 -5.7785 1.7688 1.7600 -186 1057 -5.7372 1.7745 1.7600 -186 1058 -5.6986 1.7812 1.7600 -186 1059 -5.6612 1.7868 1.7600 -186 1060 -5.6242 1.7883 1.7600 -186 1061 -5.5925 1.7875 1.7600 -186 1062 -5.5599 1.7827 1.7600 -186 1063 -5.5279 1.7784 1.7600 -186 1064 -5.4928 1.7728 1.7600 -186 1065 -5.4529 1.7652 1.7600 -186 1066 -5.4133 1.7554 1.7600 -186 1067 -5.3721 1.7429 1.7600 -186 1068 -5.3302 1.7295 1.7600 -186 1069 -5.2920 1.7142 1.7600 -186 1070 -5.2553 1.7015 1.7600 -186 1071 -5.2235 1.6920 1.7600 -186 1072 -5.1864 1.6827 1.7600 -186 1073 -5.1503 1.6761 1.7600 -186 1074 -5.1137 1.6745 1.7600 -186 1075 -5.0745 1.6761 1.7600 -186 1076 -5.0319 1.6779 1.7600 -186 1077 -4.9893 1.6808 1.7600 -186 1078 -4.9471 1.6850 1.7600 -186 1079 -4.9043 1.6930 1.7600 -186 1080 -4.8631 1.7021 1.7600 -186 1081 -4.8223 1.7123 1.7600 -186 1082 -4.7792 1.7250 1.7600 -186 1083 -4.7378 1.7346 1.7600 -186 1084 -4.6963 1.7398 1.7600 -186 1085 -4.6590 1.7378 1.7600 -186 1086 -4.6234 1.7356 1.7600 -186 1087 -4.5934 1.7292 1.7600 -186 1088 -4.5620 1.7217 1.7600 -186 1089 -4.5289 1.7118 1.7600 -186 1090 -4.4964 1.7001 1.7600 -186 1091 -4.4618 1.6843 1.7600 -186 1092 -4.4285 1.6677 1.7600 -186 1093 -4.3971 1.6512 1.7600 -186 1094 -4.3633 1.6360 1.7600 -186 1095 -4.3288 1.6209 1.7600 -186 1096 -4.2926 1.6070 1.7600 -186 1097 -4.2543 1.5938 1.7600 -186 1098 -4.2174 1.5848 1.7600 -186 1099 -4.1805 1.5775 1.7600 -186 1100 -4.1401 1.5691 1.7600 -186 1101 -4.0954 1.5643 1.7600 -186 1102 -4.0540 1.5635 1.7600 -186 1103 -4.0109 1.5674 1.7600 -186 1104 -3.9692 1.5699 1.7600 -186 1105 -3.9277 1.5685 1.7600 -186 1106 -3.8877 1.5627 1.7600 -186 1107 -3.8535 1.5536 1.7600 -186 1108 -3.8204 1.5450 1.7600 -186 1109 -3.7832 1.5346 1.7600 -186 1110 -3.7444 1.5246 1.7600 -186 1111 -3.7105 1.5149 1.7600 -186 1112 -3.6768 1.5041 1.7600 -186 1113 -3.6403 1.4995 1.7600 -186 1114 -3.6013 1.4951 1.7600 -186 1115 -3.5592 1.4952 1.7600 -186 1116 -3.5179 1.4990 1.7600 -186 1117 -3.4743 1.5079 1.7600 -186 1118 -3.4270 1.5204 1.7600 -186 1119 -3.3805 1.5336 1.7600 -186 1120 -3.3389 1.5429 1.7600 -186 1121 -3.2994 1.5520 1.7600 -186 1122 -3.2616 1.5537 1.7600 -186 1123 -3.2240 1.5550 1.7600 -186 1124 -3.1875 1.5536 1.7600 -186 1125 -3.1498 1.5503 1.7600 -186 1126 -3.1109 1.5433 1.7600 -186 1127 -3.0723 1.5344 1.7600 -186 1128 -3.0313 1.5229 1.7600 -186 1129 -2.9917 1.5113 1.7600 -186 1130 -2.9493 1.4984 1.7600 -186 1131 -2.9037 1.4908 1.7600 -186 1132 -2.8550 1.4839 1.7600 -186 1133 -2.8101 1.4829 1.7600 -186 1134 -2.7609 1.4837 1.7600 -186 1135 -2.7114 1.4868 1.7600 -186 1136 -2.6596 1.4959 1.7600 -186 1137 -2.6064 1.5073 1.7600 -186 1138 -2.5534 1.5190 1.7600 -186 1139 -2.4968 1.5360 1.7600 -186 1140 -2.4467 1.5470 1.7600 -186 1141 -2.3960 1.5571 1.7600 -186 1142 -2.3467 1.5593 1.7600 -186 1143 -2.2999 1.5614 1.7600 -186 1144 -2.2525 1.5627 1.7600 -186 1145 -2.2019 1.5617 1.7600 -186 1146 -2.1512 1.5572 1.7600 -186 1147 -2.0983 1.5516 1.7600 -186 1148 -2.0437 1.5414 1.7600 -186 1149 -1.9876 1.5276 1.7600 -186 1150 -1.9336 1.5171 1.7600 -186 1151 -1.8786 1.5119 1.7600 -186 1152 -1.8269 1.5124 1.7600 -186 1153 -1.7783 1.5131 1.7600 -186 1154 -1.7339 1.5146 1.7600 -186 1155 -1.6873 1.5148 1.7600 -186 1156 -1.6395 1.5158 1.7600 -186 1157 -1.5888 1.5199 1.7600 -186 1158 -1.5397 1.5245 1.7600 -186 1159 -1.4915 1.5382 1.7600 -186 1160 -1.4409 1.5514 1.7600 -186 1161 -1.3847 1.5571 1.7600 -186 1162 -1.3337 1.5596 1.7600 -186 1163 -1.2838 1.5597 1.7600 -186 1164 -1.2350 1.5586 1.7600 -186 1165 -1.1860 1.5556 1.7600 -186 1166 -1.1346 1.5516 1.7600 -186 1167 -1.0821 1.5469 1.7600 -186 1168 -1.0296 1.5381 1.7600 -186 1169 -0.9741 1.5264 1.7600 -186 1170 -0.9199 1.5167 1.7600 -186 1171 -0.8725 1.5081 1.7600 -186 1172 -0.8246 1.5043 1.7600 -186 1173 -0.7765 1.5036 1.7600 -186 1174 -0.7285 1.5055 1.7600 -186 1175 -0.6796 1.5057 1.7600 -186 1176 -0.6264 1.5036 1.7600 -186 1177 -0.5680 1.5056 1.7600 -186 1178 -0.5047 1.5142 1.7600 -186 1179 -0.4492 1.5270 1.7600 -186 1180 -0.3930 1.5415 1.7600 -186 1181 -0.3400 1.5589 1.7600 -186 1182 -0.2951 1.5729 1.7600 -186 1183 -0.2486 1.5747 1.7600 -186 1184 -0.2043 1.5718 1.7600 -186 1185 -0.1570 1.5667 1.7600 -186 1186 -0.1035 1.5592 1.7600 -186 1187 -0.0499 1.5520 1.7600 -186 1188 0.0096 1.5393 1.7600 -186 1189 0.0678 1.5244 1.7600 -186 1190 0.1227 1.5081 1.7600 -186 1191 0.1749 1.4913 1.7600 -186 1192 0.2320 1.4804 1.7600 -186 1193 0.2864 1.4779 1.7600 -186 1194 0.3391 1.4824 1.7600 -186 1195 0.3881 1.4868 1.7600 -186 1196 0.4392 1.4908 1.7600 -186 1197 0.4927 1.4956 1.7600 -186 1198 0.5475 1.5044 1.7600 -186 1199 0.6023 1.5160 1.7600 -186 1200 0.6587 1.5364 1.7600 -186 1201 0.7158 1.5559 1.7600 -186 1202 0.7717 1.5702 1.7600 -186 1203 0.8247 1.5751 1.7600 -186 1204 0.8770 1.5729 1.7600 -186 1205 0.9295 1.5672 1.7600 -186 1206 0.9830 1.5599 1.7600 -186 1207 1.0379 1.5517 1.7600 -186 1208 1.0959 1.5411 1.7600 -186 1209 1.1536 1.5262 1.7600 -186 1210 1.2144 1.5101 1.7600 -186 1211 1.2735 1.4945 1.7600 -186 1212 1.3341 1.4817 1.7600 -186 1213 1.3882 1.4798 1.7600 -186 1214 1.4407 1.4807 1.7600 -186 1215 1.4927 1.4840 1.7600 -186 1216 1.5417 1.4901 1.7600 -186 1217 1.5941 1.4973 1.7600 -186 1218 1.6527 1.5033 1.7600 -186 1219 1.7121 1.5106 1.7600 -186 1220 1.7722 1.5221 1.7600 -186 1221 1.8313 1.5388 1.7600 -186 1222 1.8903 1.5551 1.7600 -186 1223 1.9494 1.5652 1.7600 -186 1224 2.0040 1.5667 1.7600 -186 1225 2.0571 1.5624 1.7600 -186 1226 2.1104 1.5560 1.7600 -186 1227 2.1654 1.5492 1.7600 -186 1228 2.2241 1.5419 1.7600 -186 1229 2.2828 1.5324 1.7600 -186 1230 2.3414 1.5214 1.7600 -186 1231 2.4028 1.5052 1.7600 -186 1232 2.4599 1.4917 1.7600 -186 1233 2.5109 1.4836 1.7600 -186 1234 2.5609 1.4813 1.7600 -186 1235 2.6062 1.4839 1.7600 -186 1236 2.6485 1.4849 1.7600 -186 1237 2.6930 1.4887 1.7600 -186 1238 2.7373 1.4918 1.7600 -186 1239 2.7829 1.4949 1.7600 -186 1240 2.8321 1.5016 1.7600 -186 1241 2.8850 1.5115 1.7600 -186 1242 2.9427 1.5247 1.7600 -186 1243 3.0071 1.5432 1.7600 -186 1244 3.0678 1.5562 1.7600 -186 1245 3.1251 1.5640 1.7600 -186 1246 3.1841 1.5673 1.7600 -186 1247 3.2464 1.5675 1.7600 -186 1248 3.3117 1.5676 1.7600 -186 1249 3.3768 1.5682 1.7600 -186 1250 3.4480 1.5662 1.7600 -186 1251 3.5223 1.5638 1.7600 -186 1252 3.6044 1.5552 1.7600 -186 1253 3.6949 1.5487 1.7600 -186 1254 3.7902 1.5494 1.7600 -186 1255 3.8833 1.5570 1.7600 -186 1256 3.9722 1.5695 1.7600 -186 1257 4.0548 1.5837 1.7600 -186 1258 4.1352 1.5998 1.7600 -186 1259 4.2135 1.6130 1.7600 -186 1260 4.2922 1.6280 1.7600 -186 1261 4.3813 1.6505 1.7600 -186 1262 4.4783 1.6810 1.7600 -186 1263 4.5728 1.7090 1.7600 -186 1264 4.6780 1.7345 1.7600 -186 1265 4.7876 1.7545 1.7600 -186 1266 4.8941 1.7699 1.7600 -186 1267 4.9950 1.7808 1.7600 -186 1268 5.0912 1.7878 1.7600 -186 1269 5.1880 1.7944 1.7600 -186 1270 5.2866 1.8007 1.7600 -186 1271 5.3952 1.8081 1.7600 -186 1272 5.5064 1.8279 1.7600 -186 1273 5.6061 1.8522 1.7600 -186 1274 5.6981 1.8789 1.7600 -186 1275 5.7757 1.9016 1.7600 -186 1276 5.8550 1.9266 1.7600 -186 1277 5.9370 1.9532 1.7600 -187 1017 -7.8314 2.1944 1.7600 -187 1018 -7.7947 2.2024 1.7600 -187 1019 -7.7543 2.2060 1.7600 -187 1020 -7.7108 2.2063 1.7600 -187 1021 -7.6668 2.2025 1.7600 -187 1022 -7.6253 2.1946 1.7600 -187 1023 -7.5869 2.1824 1.7600 -187 1024 -7.5523 2.1662 1.7600 -187 1025 -7.5181 2.1500 1.7600 -187 1026 -7.4808 2.1361 1.7600 -187 1027 -7.4412 2.1268 1.7600 -187 1028 -7.3993 2.1217 1.7600 -187 1029 -7.3540 2.1199 1.7600 -187 1030 -7.3048 2.1208 1.7600 -187 1031 -7.2514 2.1245 1.7600 -187 1032 -7.1965 2.1319 1.7600 -187 1033 -7.1438 2.1431 1.7600 -187 1034 -7.0931 2.1581 1.7600 -187 1035 -7.0416 2.1740 1.7600 -187 1036 -6.9886 2.1871 1.7600 -187 1037 -6.9348 2.1969 1.7600 -187 1038 -6.8814 2.2025 1.7600 -187 1039 -6.8271 2.2045 1.7600 -187 1040 -6.7738 2.2002 1.7600 -187 1041 -6.7182 2.1962 1.7600 -187 1042 -6.6662 2.1863 1.7600 -187 1043 -6.6168 2.1765 1.7600 -187 1044 -6.5689 2.1675 1.7600 -187 1045 -6.5184 2.1589 1.7600 -187 1046 -6.4676 2.1524 1.7600 -187 1047 -6.4153 2.1517 1.7600 -187 1048 -6.3646 2.1555 1.7600 -187 1049 -6.3145 2.1641 1.7600 -187 1050 -6.2641 2.1673 1.7600 -187 1051 -6.2120 2.1774 1.7600 -187 1052 -6.1637 2.1853 1.7600 -187 1053 -6.1202 2.1981 1.7600 -187 1054 -6.0761 2.2118 1.7600 -187 1055 -6.0343 2.2228 1.7600 -187 1056 -5.9929 2.2262 1.7600 -187 1057 -5.9521 2.2287 1.7600 -187 1058 -5.9157 2.2247 1.7600 -187 1059 -5.8805 2.2143 1.7600 -187 1060 -5.8494 2.2029 1.7600 -187 1061 -5.8145 2.1931 1.7600 -187 1062 -5.7871 2.1768 1.7600 -187 1063 -5.7626 2.1585 1.7600 -187 1064 -5.7379 2.1395 1.7600 -187 1065 -5.7151 2.1207 1.7600 -187 1066 -5.6867 2.1006 1.7600 -187 1067 -5.6544 2.0814 1.7600 -187 1068 -5.6222 2.0663 1.7600 -187 1069 -5.5896 2.0554 1.7600 -187 1070 -5.5522 2.0489 1.7600 -187 1071 -5.5149 2.0442 1.7600 -187 1072 -5.4748 2.0401 1.7600 -187 1073 -5.4350 2.0373 1.7600 -187 1074 -5.3890 2.0365 1.7600 -187 1075 -5.3475 2.0388 1.7600 -187 1076 -5.3055 2.0437 1.7600 -187 1077 -5.2600 2.0507 1.7600 -187 1078 -5.2160 2.0575 1.7600 -187 1079 -5.1735 2.0589 1.7600 -187 1080 -5.1331 2.0582 1.7600 -187 1081 -5.0992 2.0526 1.7600 -187 1082 -5.0676 2.0449 1.7600 -187 1083 -5.0435 2.0338 1.7600 -187 1084 -5.0260 2.0210 1.7600 -187 1085 -5.0139 2.0032 1.7600 -187 1086 -5.0090 1.9858 1.7600 -187 1087 -5.0098 1.9669 1.7600 -187 1088 -5.0096 1.9453 1.7600 -187 1089 -5.0063 1.9226 1.7600 -187 1090 -4.9980 1.8983 1.7600 -187 1091 -4.9845 1.8729 1.7600 -187 1092 -4.9657 1.8483 1.7600 -187 1093 -4.9420 1.8286 1.7600 -187 1094 -4.9145 1.8112 1.7600 -187 1095 -4.8793 1.7975 1.7600 -187 1096 -4.8426 1.7823 1.7600 -187 1097 -4.8037 1.7706 1.7600 -187 1098 -4.7586 1.7584 1.7600 -187 1099 -4.7145 1.7441 1.7600 -187 1100 -4.6729 1.7271 1.7600 -187 1101 -4.6304 1.7062 1.7600 -187 1102 -4.5881 1.6796 1.7600 -187 1103 -4.5455 1.6462 1.7600 -187 1104 -4.5024 1.6096 1.7600 -187 1105 -4.4612 1.5694 1.7600 -187 1106 -4.4207 1.5279 1.7600 -187 1107 -4.3788 1.4846 1.7600 -187 1108 -4.3365 1.4454 1.7600 -187 1109 -4.3009 1.4143 1.7600 -187 1110 -4.2708 1.3915 1.7600 -187 1111 -4.2419 1.3672 1.7600 -187 1112 -4.2087 1.3493 1.7600 -187 1113 -4.1760 1.3358 1.7600 -187 1114 -4.1432 1.3274 1.7600 -187 1115 -4.1105 1.3202 1.7600 -187 1116 -4.0747 1.3143 1.7600 -187 1117 -4.0412 1.3090 1.7600 -187 1118 -4.0066 1.3026 1.7600 -187 1119 -3.9695 1.2905 1.7600 -187 1120 -3.9347 1.2723 1.7600 -187 1121 -3.8968 1.2499 1.7600 -187 1122 -3.8608 1.2250 1.7600 -187 1123 -3.8242 1.2003 1.7600 -187 1124 -3.7824 1.1801 1.7600 -187 1125 -3.7386 1.1591 1.7600 -187 1126 -3.6938 1.1432 1.7600 -187 1127 -3.6459 1.1287 1.7600 -187 1128 -3.5981 1.1185 1.7600 -187 1129 -3.5449 1.1152 1.7600 -187 1130 -3.4979 1.1163 1.7600 -187 1131 -3.4494 1.1184 1.7600 -187 1132 -3.4043 1.1250 1.7600 -187 1133 -3.3577 1.1326 1.7600 -187 1134 -3.3105 1.1404 1.7600 -187 1135 -3.2668 1.1452 1.7600 -187 1136 -3.2200 1.1468 1.7600 -187 1137 -3.1739 1.1446 1.7600 -187 1138 -3.1273 1.1359 1.7600 -187 1139 -3.0819 1.1239 1.7600 -187 1140 -3.0368 1.1059 1.7600 -187 1141 -2.9944 1.0857 1.7600 -187 1142 -2.9502 1.0635 1.7600 -187 1143 -2.9021 1.0436 1.7600 -187 1144 -2.8529 1.0268 1.7600 -187 1145 -2.8061 1.0128 1.7600 -187 1146 -2.7546 1.0033 1.7600 -187 1147 -2.7018 1.0037 1.7600 -187 1148 -2.6455 1.0024 1.7600 -187 1149 -2.5921 1.0099 1.7600 -187 1150 -2.5376 1.0200 1.7600 -187 1151 -2.4827 1.0333 1.7600 -187 1152 -2.4233 1.0541 1.7600 -187 1153 -2.3628 1.0681 1.7600 -187 1154 -2.3088 1.0786 1.7600 -187 1155 -2.2577 1.0841 1.7600 -187 1156 -2.2057 1.0859 1.7600 -187 1157 -2.1528 1.0826 1.7600 -187 1158 -2.0959 1.0771 1.7600 -187 1159 -2.0388 1.0668 1.7600 -187 1160 -1.9789 1.0517 1.7600 -187 1161 -1.9137 1.0352 1.7600 -187 1162 -1.8437 1.0220 1.7600 -187 1163 -1.7818 1.0085 1.7600 -187 1164 -1.7276 0.9980 1.7600 -187 1165 -1.6744 0.9919 1.7600 -187 1166 -1.6204 0.9869 1.7600 -187 1167 -1.5662 0.9892 1.7600 -187 1168 -1.5106 0.9871 1.7600 -187 1169 -1.4514 0.9937 1.7600 -187 1170 -1.3920 1.0069 1.7600 -187 1171 -1.3277 1.0198 1.7600 -187 1172 -1.2637 1.0324 1.7600 -187 1173 -1.2055 1.0443 1.7600 -187 1174 -1.1517 1.0505 1.7600 -187 1175 -1.0957 1.0524 1.7600 -187 1176 -1.0388 1.0490 1.7600 -187 1177 -0.9772 1.0435 1.7600 -187 1178 -0.9134 1.0373 1.7600 -187 1179 -0.8474 1.0294 1.7600 -187 1180 -0.7801 1.0199 1.7600 -187 1181 -0.7120 1.0122 1.7600 -187 1182 -0.6467 1.0056 1.7600 -187 1183 -0.5840 1.0015 1.7600 -187 1184 -0.5229 1.0000 1.7600 -187 1185 -0.4614 1.0027 1.7600 -187 1186 -0.4023 1.0100 1.7600 -187 1187 -0.3465 1.0169 1.7600 -187 1188 -0.2909 1.0255 1.7600 -187 1189 -0.2404 1.0357 1.7600 -187 1190 -0.1867 1.0480 1.7600 -187 1191 -0.1338 1.0574 1.7600 -187 1192 -0.0823 1.0637 1.7600 -187 1193 -0.0311 1.0632 1.7600 -187 1194 0.0189 1.0583 1.7600 -187 1195 0.0712 1.0491 1.7600 -187 1196 0.1232 1.0387 1.7600 -187 1197 0.1739 1.0245 1.7600 -187 1198 0.2262 1.0072 1.7600 -187 1199 0.2773 0.9925 1.7600 -187 1200 0.3290 0.9763 1.7600 -187 1201 0.3815 0.9628 1.7600 -187 1202 0.4312 0.9523 1.7600 -187 1203 0.4803 0.9448 1.7600 -187 1204 0.5292 0.9402 1.7600 -187 1205 0.5819 0.9398 1.7600 -187 1206 0.6383 0.9448 1.7600 -187 1207 0.7009 0.9506 1.7600 -187 1208 0.7682 0.9570 1.7600 -187 1209 0.8363 0.9677 1.7600 -187 1210 0.9007 0.9753 1.7600 -187 1211 0.9654 0.9863 1.7600 -187 1212 1.0259 0.9915 1.7600 -187 1213 1.0874 0.9904 1.7600 -187 1214 1.1496 0.9867 1.7600 -187 1215 1.2119 0.9778 1.7600 -187 1216 1.2779 0.9666 1.7600 -187 1217 1.3411 0.9530 1.7600 -187 1218 1.4022 0.9425 1.7600 -187 1219 1.4628 0.9324 1.7600 -187 1220 1.5223 0.9238 1.7600 -187 1221 1.5807 0.9184 1.7600 -187 1222 1.6365 0.9168 1.7600 -187 1223 1.6900 0.9178 1.7600 -187 1224 1.7463 0.9210 1.7600 -187 1225 1.8016 0.9244 1.7600 -187 1226 1.8583 0.9301 1.7600 -187 1227 1.9186 0.9376 1.7600 -187 1228 1.9790 0.9456 1.7600 -187 1229 2.0387 0.9528 1.7600 -187 1230 2.0965 0.9623 1.7600 -187 1231 2.1489 0.9632 1.7600 -187 1232 2.2023 0.9594 1.7600 -187 1233 2.2579 0.9526 1.7600 -187 1234 2.3138 0.9413 1.7600 -187 1235 2.3673 0.9300 1.7600 -187 1236 2.4259 0.9178 1.7600 -187 1237 2.4869 0.9076 1.7600 -187 1238 2.5500 0.8989 1.7600 -187 1239 2.6090 0.8905 1.7600 -187 1240 2.6691 0.8817 1.7600 -187 1241 2.7267 0.8772 1.7600 -187 1242 2.7896 0.8744 1.7600 -187 1243 2.8525 0.8770 1.7600 -187 1244 2.9136 0.8828 1.7600 -187 1245 2.9734 0.8880 1.7600 -187 1246 3.0344 0.8910 1.7600 -187 1247 3.0982 0.8948 1.7600 -187 1248 3.1632 0.8992 1.7600 -187 1249 3.2243 0.9043 1.7600 -187 1250 3.2856 0.9075 1.7600 -187 1251 3.3478 0.9066 1.7600 -187 1252 3.4100 0.9047 1.7600 -187 1253 3.4704 0.8988 1.7600 -187 1254 3.5312 0.8894 1.7600 -187 1255 3.5935 0.8793 1.7600 -187 1256 3.6597 0.8681 1.7600 -187 1257 3.7328 0.8576 1.7600 -187 1258 3.8040 0.8514 1.7600 -187 1259 3.8772 0.8481 1.7600 -187 1260 3.9489 0.8530 1.7600 -187 1261 4.0219 0.8608 1.7600 -187 1262 4.0919 0.8716 1.7600 -187 1263 4.1605 0.8827 1.7600 -187 1264 4.2263 0.8958 1.7600 -187 1265 4.2966 0.9081 1.7600 -187 1266 4.3698 0.9241 1.7600 -187 1267 4.4425 0.9384 1.7600 -187 1268 4.5132 0.9455 1.7600 -187 1269 4.5796 0.9528 1.7600 -187 1270 4.6461 0.9545 1.7600 -187 1271 4.7111 0.9536 1.7600 -187 1272 4.7759 0.9501 1.7600 -187 1273 4.8399 0.9455 1.7600 -187 1274 4.9063 0.9406 1.7600 -187 1275 4.9733 0.9358 1.7600 -187 1276 5.0328 0.9319 1.7600 -187 1277 5.0877 0.9314 1.7600 -187 1278 5.1435 0.9335 1.7600 -187 1279 5.2010 0.9385 1.7600 -187 1280 5.2522 0.9475 1.7600 -187 1281 5.3033 0.9575 1.7600 -187 1282 5.3527 0.9710 1.7600 -187 1283 5.4064 0.9877 1.7600 -187 1284 5.4652 1.0050 1.7600 -187 1285 5.5201 1.0204 1.7600 -187 1286 5.5738 1.0304 1.7600 -187 1287 5.6311 1.0359 1.7600 -187 1288 5.6866 1.0393 1.7600 -187 1289 5.7399 1.0403 1.7600 -187 1290 5.7932 1.0382 1.7600 -187 1291 5.8482 1.0346 1.7600 -187 1292 5.9072 1.0309 1.7600 -188 1038 -7.8262 2.1246 1.7600 -188 1039 -7.7640 2.1079 1.7600 -188 1040 -7.7009 2.0852 1.7600 -188 1041 -7.6417 2.0569 1.7600 -188 1042 -7.5880 2.0271 1.7600 -188 1043 -7.5370 2.0052 1.7600 -188 1044 -7.4933 1.9913 1.7600 -188 1045 -7.4442 1.9818 1.7600 -188 1046 -7.3953 1.9789 1.7600 -188 1047 -7.3489 1.9796 1.7600 -188 1048 -7.3017 1.9817 1.7600 -188 1049 -7.2539 1.9865 1.7600 -188 1050 -7.2030 1.9945 1.7600 -188 1051 -7.1518 2.0073 1.7600 -188 1052 -7.1035 2.0274 1.7600 -188 1053 -7.0603 2.0540 1.7600 -188 1054 -7.0166 2.0822 1.7600 -188 1055 -6.9744 2.1106 1.7600 -188 1056 -6.9370 2.1285 1.7600 -188 1057 -6.9016 2.1458 1.7600 -188 1058 -6.8666 2.1555 1.7600 -188 1059 -6.8343 2.1602 1.7600 -188 1060 -6.8026 2.1597 1.7600 -188 1061 -6.7676 2.1576 1.7600 -188 1062 -6.7276 2.1533 1.7600 -188 1063 -6.6864 2.1455 1.7600 -188 1064 -6.6384 2.1318 1.7600 -188 1065 -6.5887 2.1126 1.7600 -188 1066 -6.5338 2.0902 1.7600 -188 1067 -6.4792 2.0664 1.7600 -188 1068 -6.4189 2.0456 1.7600 -188 1069 -6.3650 2.0258 1.7600 -188 1070 -6.3159 2.0114 1.7600 -188 1071 -6.2693 2.0009 1.7600 -188 1072 -6.2229 1.9959 1.7600 -188 1073 -6.1791 1.9934 1.7600 -188 1074 -6.1343 1.9932 1.7600 -188 1075 -6.0853 1.9970 1.7600 -188 1076 -6.0352 2.0027 1.7600 -188 1077 -5.9838 2.0157 1.7600 -188 1078 -5.9281 2.0323 1.7600 -188 1079 -5.8781 2.0489 1.7600 -188 1080 -5.8388 2.0609 1.7600 -188 1081 -5.8032 2.0671 1.7600 -188 1082 -5.7662 2.0675 1.7600 -188 1083 -5.7360 2.0633 1.7600 -188 1084 -5.7086 2.0540 1.7600 -188 1085 -5.6767 2.0424 1.7600 -188 1086 -5.6439 2.0272 1.7600 -188 1087 -5.6086 2.0105 1.7600 -188 1088 -5.5686 1.9876 1.7600 -188 1089 -5.5291 1.9663 1.7600 -188 1090 -5.4870 1.9407 1.7600 -188 1091 -5.4516 1.9191 1.7600 -188 1092 -5.4224 1.9010 1.7600 -188 1093 -5.3915 1.8893 1.7600 -188 1094 -5.3605 1.8830 1.7600 -188 1095 -5.3306 1.8800 1.7600 -188 1096 -5.2990 1.8782 1.7600 -188 1097 -5.2674 1.8792 1.7600 -188 1098 -5.2344 1.8835 1.7600 -188 1099 -5.2011 1.8927 1.7600 -188 1100 -5.1699 1.9059 1.7600 -188 1101 -5.1390 1.9177 1.7600 -188 1102 -5.1106 1.9266 1.7600 -188 1103 -5.0851 1.9334 1.7600 -188 1104 -5.0628 1.9382 1.7600 -188 1105 -5.0408 1.9375 1.7600 -188 1106 -5.0200 1.9309 1.7600 -188 1107 -5.0002 1.9180 1.7600 -188 1108 -4.9788 1.9008 1.7600 -188 1109 -4.9556 1.8791 1.7600 -188 1110 -4.9334 1.8548 1.7600 -188 1111 -4.9121 1.8265 1.7600 -188 1112 -4.8940 1.7919 1.7600 -188 1113 -4.8809 1.7573 1.7600 -188 1114 -4.8656 1.7259 1.7600 -188 1115 -4.8480 1.6997 1.7600 -188 1116 -4.8276 1.6777 1.7600 -188 1117 -4.8084 1.6606 1.7600 -188 1118 -4.8003 1.6535 1.7600 -188 1119 -4.8032 1.6538 1.7600 -188 1120 -4.8019 1.6538 1.7600 -188 1121 -4.7796 1.6463 1.7600 -188 1122 -4.7484 1.6380 1.7600 -188 1123 -4.7173 1.6371 1.7600 -188 1124 -4.6827 1.6425 1.7600 -188 1125 -4.6481 1.6524 1.7600 -188 1126 -4.6149 1.6577 1.7600 -188 1127 -4.5810 1.6619 1.7600 -188 1128 -4.5478 1.6626 1.7600 -188 1129 -4.5130 1.6569 1.7600 -188 1130 -4.4821 1.6473 1.7600 -188 1131 -4.4503 1.6327 1.7600 -188 1132 -4.4144 1.6134 1.7600 -188 1133 -4.3780 1.5881 1.7600 -188 1134 -4.3417 1.5559 1.7600 -188 1135 -4.3086 1.5183 1.7600 -188 1136 -4.2762 1.4793 1.7600 -188 1137 -4.2425 1.4456 1.7600 -188 1138 -4.2069 1.4197 1.7600 -188 1139 -4.1705 1.4010 1.7600 -188 1140 -4.1324 1.3930 1.7600 -188 1141 -4.0922 1.3883 1.7600 -188 1142 -4.0523 1.3886 1.7600 -188 1143 -4.0079 1.3939 1.7600 -188 1144 -3.9672 1.4033 1.7600 -188 1145 -3.9240 1.4228 1.7600 -188 1146 -3.8836 1.4463 1.7600 -188 1147 -3.8470 1.4686 1.7600 -188 1148 -3.8130 1.4843 1.7600 -188 1149 -3.7759 1.4952 1.7600 -188 1150 -3.7385 1.4981 1.7600 -188 1151 -3.6978 1.4978 1.7600 -188 1152 -3.6569 1.4946 1.7600 -188 1153 -3.6143 1.4836 1.7600 -188 1154 -3.5696 1.4652 1.7600 -188 1155 -3.5234 1.4405 1.7600 -188 1156 -3.4796 1.4135 1.7600 -188 1157 -3.4314 1.3879 1.7600 -188 1158 -3.3859 1.3673 1.7600 -188 1159 -3.3402 1.3547 1.7600 -188 1160 -3.2930 1.3489 1.7600 -188 1161 -3.2445 1.3479 1.7600 -188 1162 -3.1947 1.3512 1.7600 -188 1163 -3.1449 1.3551 1.7600 -188 1164 -3.0949 1.3636 1.7600 -188 1165 -3.0430 1.3810 1.7600 -188 1166 -2.9969 1.4050 1.7600 -188 1167 -2.9515 1.4337 1.7600 -188 1168 -2.9047 1.4598 1.7600 -188 1169 -2.8608 1.4793 1.7600 -188 1170 -2.8180 1.4906 1.7600 -188 1171 -2.7716 1.4954 1.7600 -188 1172 -2.7242 1.4959 1.7600 -188 1173 -2.6737 1.4926 1.7600 -188 1174 -2.6213 1.4820 1.7600 -188 1175 -2.5671 1.4655 1.7600 -188 1176 -2.5102 1.4440 1.7600 -188 1177 -2.4533 1.4199 1.7600 -188 1178 -2.3943 1.3970 1.7600 -188 1179 -2.3315 1.3811 1.7600 -188 1180 -2.2752 1.3725 1.7600 -188 1181 -2.2163 1.3676 1.7600 -188 1182 -2.1557 1.3657 1.7600 -188 1183 -2.0942 1.3669 1.7600 -188 1184 -2.0346 1.3701 1.7600 -188 1185 -1.9763 1.3790 1.7600 -188 1186 -1.9180 1.3927 1.7600 -188 1187 -1.8591 1.4135 1.7600 -188 1188 -1.7980 1.4362 1.7600 -188 1189 -1.7427 1.4511 1.7600 -188 1190 -1.6930 1.4596 1.7600 -188 1191 -1.6425 1.4641 1.7600 -188 1192 -1.5932 1.4628 1.7600 -188 1193 -1.5428 1.4561 1.7600 -188 1194 -1.4901 1.4467 1.7600 -188 1195 -1.4365 1.4338 1.7600 -188 1196 -1.3795 1.4143 1.7600 -188 1197 -1.3242 1.3915 1.7600 -188 1198 -1.2682 1.3685 1.7600 -188 1199 -1.2122 1.3520 1.7600 -188 1200 -1.1571 1.3443 1.7600 -188 1201 -1.1032 1.3398 1.7600 -188 1202 -1.0492 1.3399 1.7600 -188 1203 -0.9956 1.3442 1.7600 -188 1204 -0.9375 1.3512 1.7600 -188 1205 -0.8781 1.3617 1.7600 -188 1206 -0.8218 1.3809 1.7600 -188 1207 -0.7680 1.4057 1.7600 -188 1208 -0.7167 1.4311 1.7600 -188 1209 -0.6633 1.4491 1.7600 -188 1210 -0.6160 1.4573 1.7600 -188 1211 -0.5679 1.4682 1.7600 -188 1212 -0.5198 1.4670 1.7600 -188 1213 -0.4683 1.4623 1.7600 -188 1214 -0.4116 1.4549 1.7600 -188 1215 -0.3523 1.4415 1.7600 -188 1216 -0.2852 1.4208 1.7600 -188 1217 -0.2205 1.3986 1.7600 -188 1218 -0.1563 1.3759 1.7600 -188 1219 -0.0894 1.3582 1.7600 -188 1220 -0.0240 1.3496 1.7600 -188 1221 0.0431 1.3464 1.7600 -188 1222 0.1023 1.3496 1.7600 -188 1223 0.1632 1.3550 1.7600 -188 1224 0.2268 1.3611 1.7600 -188 1225 0.2921 1.3700 1.7600 -188 1226 0.3539 1.3839 1.7600 -188 1227 0.4136 1.4055 1.7600 -188 1228 0.4697 1.4268 1.7600 -188 1229 0.5221 1.4430 1.7600 -188 1230 0.5703 1.4516 1.7600 -188 1231 0.6188 1.4576 1.7600 -188 1232 0.6692 1.4582 1.7600 -188 1233 0.7235 1.4569 1.7600 -188 1234 0.7821 1.4532 1.7600 -188 1235 0.8445 1.4451 1.7600 -188 1236 0.9051 1.4323 1.7600 -188 1237 0.9618 1.4114 1.7600 -188 1238 1.0192 1.3887 1.7600 -188 1239 1.0763 1.3697 1.7600 -188 1240 1.1275 1.3593 1.7600 -188 1241 1.1788 1.3565 1.7600 -188 1242 1.2340 1.3610 1.7600 -188 1243 1.2920 1.3664 1.7600 -188 1244 1.3545 1.3751 1.7600 -188 1245 1.4160 1.3913 1.7600 -188 1246 1.4777 1.4115 1.7600 -188 1247 1.5352 1.4376 1.7600 -188 1248 1.5890 1.4651 1.7600 -188 1249 1.6414 1.4854 1.7600 -188 1250 1.6931 1.4974 1.7600 -188 1251 1.7420 1.5004 1.7600 -188 1252 1.7965 1.4952 1.7600 -188 1253 1.8490 1.4845 1.7600 -188 1254 1.9048 1.4674 1.7600 -188 1255 1.9611 1.4470 1.7600 -188 1256 2.0189 1.4209 1.7600 -188 1257 2.0770 1.3899 1.7600 -188 1258 2.1346 1.3656 1.7600 -188 1259 2.1840 1.3507 1.7600 -188 1260 2.2385 1.3420 1.7600 -188 1261 2.2907 1.3395 1.7600 -188 1262 2.3520 1.3419 1.7600 -188 1263 2.4136 1.3494 1.7600 -188 1264 2.4780 1.3611 1.7600 -188 1265 2.5393 1.3808 1.7600 -188 1266 2.6013 1.4099 1.7600 -188 1267 2.6605 1.4412 1.7600 -188 1268 2.7228 1.4641 1.7600 -188 1269 2.7824 1.4790 1.7600 -188 1270 2.8449 1.4847 1.7600 -188 1271 2.9068 1.4837 1.7600 -188 1272 2.9697 1.4795 1.7600 -188 1273 3.0312 1.4675 1.7600 -188 1274 3.0949 1.4502 1.7600 -188 1275 3.1617 1.4276 1.7600 -188 1276 3.2354 1.3987 1.7600 -188 1277 3.3076 1.3768 1.7600 -188 1278 3.3735 1.3685 1.7600 -188 1279 3.4355 1.3683 1.7600 -188 1280 3.4997 1.3716 1.7600 -188 1281 3.5638 1.3785 1.7600 -188 1282 3.6288 1.3869 1.7600 -188 1283 3.6933 1.4011 1.7600 -188 1284 3.7593 1.4201 1.7600 -188 1285 3.8328 1.4506 1.7600 -188 1286 3.9054 1.4844 1.7600 -188 1287 3.9745 1.5102 1.7600 -188 1288 4.0420 1.5280 1.7600 -188 1289 4.1167 1.5377 1.7600 -188 1290 4.1880 1.5455 1.7600 -188 1291 4.2662 1.5503 1.7600 -188 1292 4.3449 1.5521 1.7600 -188 1293 4.4235 1.5498 1.7600 -188 1294 4.5094 1.5436 1.7600 -188 1295 4.5954 1.5408 1.7600 -188 1296 4.6743 1.5478 1.7600 -188 1297 4.7506 1.5649 1.7600 -188 1298 4.8212 1.5861 1.7600 -188 1299 4.8913 1.6096 1.7600 -188 1300 4.9628 1.6348 1.7600 -188 1301 5.0296 1.6626 1.7600 -188 1302 5.0959 1.6984 1.7600 -188 1303 5.1713 1.7445 1.7600 -188 1304 5.2492 1.7890 1.7600 -188 1305 5.3258 1.8191 1.7600 -188 1306 5.4013 1.8392 1.7600 -188 1307 5.4729 1.8535 1.7600 -188 1308 5.5442 1.8647 1.7600 -188 1309 5.6167 1.8729 1.7600 -188 1310 5.6891 1.8783 1.7600 -188 1311 5.7628 1.8777 1.7600 -188 1312 5.8438 1.8750 1.7600 -188 1313 5.9243 1.8737 1.7600 -189 1036 -7.7813 1.5582 1.7600 -189 1037 -7.7301 1.5617 1.7600 -189 1038 -7.6867 1.5674 1.7600 -189 1039 -7.6446 1.5753 1.7600 -189 1040 -7.6017 1.5813 1.7600 -189 1041 -7.5595 1.5827 1.7600 -189 1042 -7.5179 1.5793 1.7600 -189 1043 -7.4766 1.5735 1.7600 -189 1044 -7.4363 1.5659 1.7600 -189 1045 -7.3970 1.5574 1.7600 -189 1046 -7.3587 1.5486 1.7600 -189 1047 -7.3234 1.5360 1.7600 -189 1048 -7.2827 1.5158 1.7600 -189 1049 -7.2470 1.4974 1.7600 -189 1050 -7.2074 1.4780 1.7600 -189 1051 -7.1731 1.4545 1.7600 -189 1052 -7.1418 1.4358 1.7600 -189 1053 -7.1107 1.4175 1.7600 -189 1054 -7.0822 1.4004 1.7600 -189 1055 -7.0528 1.3841 1.7600 -189 1056 -7.0195 1.3710 1.7600 -189 1057 -6.9820 1.3592 1.7600 -189 1058 -6.9394 1.3518 1.7600 -189 1059 -6.9009 1.3458 1.7600 -189 1060 -6.8639 1.3425 1.7600 -189 1061 -6.8245 1.3397 1.7600 -189 1062 -6.7865 1.3376 1.7600 -189 1063 -6.7474 1.3387 1.7600 -189 1064 -6.7068 1.3425 1.7600 -189 1065 -6.6625 1.3502 1.7600 -189 1066 -6.6166 1.3616 1.7600 -189 1067 -6.5772 1.3766 1.7600 -189 1068 -6.5393 1.3938 1.7600 -189 1069 -6.5030 1.4129 1.7600 -189 1070 -6.4678 1.4285 1.7600 -189 1071 -6.4248 1.4370 1.7600 -189 1072 -6.3815 1.4432 1.7600 -189 1073 -6.3429 1.4452 1.7600 -189 1074 -6.3085 1.4446 1.7600 -189 1075 -6.2748 1.4378 1.7600 -189 1076 -6.2414 1.4351 1.7600 -189 1077 -6.2061 1.4298 1.7600 -189 1078 -6.1674 1.4237 1.7600 -189 1079 -6.1258 1.4171 1.7600 -189 1080 -6.0846 1.4101 1.7600 -189 1081 -6.0375 1.4044 1.7600 -189 1082 -5.9983 1.4002 1.7600 -189 1083 -5.9581 1.3980 1.7600 -189 1084 -5.9262 1.3931 1.7600 -189 1085 -5.8934 1.3865 1.7600 -189 1086 -5.8609 1.3833 1.7600 -189 1087 -5.8336 1.3823 1.7600 -189 1088 -5.8114 1.3798 1.7600 -189 1089 -5.7886 1.3792 1.7600 -189 1090 -5.7585 1.3760 1.7600 -189 1091 -5.7265 1.3740 1.7600 -189 1092 -5.6907 1.3743 1.7600 -189 1093 -5.6533 1.3746 1.7600 -189 1094 -5.6145 1.3750 1.7600 -189 1095 -5.5727 1.3768 1.7600 -189 1096 -5.5310 1.3849 1.7600 -189 1097 -5.4896 1.3914 1.7600 -189 1098 -5.4515 1.3946 1.7600 -189 1099 -5.4136 1.3953 1.7600 -189 1100 -5.3762 1.3935 1.7600 -189 1101 -5.3386 1.3853 1.7600 -189 1102 -5.3041 1.3731 1.7600 -189 1103 -5.2700 1.3581 1.7600 -189 1104 -5.2333 1.3427 1.7600 -189 1105 -5.1959 1.3246 1.7600 -189 1106 -5.1579 1.3035 1.7600 -189 1107 -5.1169 1.2778 1.7600 -189 1108 -5.0759 1.2483 1.7600 -189 1109 -5.0311 1.2141 1.7600 -189 1110 -4.9860 1.1794 1.7600 -189 1111 -4.9408 1.1448 1.7600 -189 1112 -4.8973 1.1126 1.7600 -189 1113 -4.8559 1.0834 1.7600 -189 1114 -4.8152 1.0579 1.7600 -189 1115 -4.7731 1.0378 1.7600 -189 1116 -4.7337 1.0236 1.7600 -189 1117 -4.6918 1.0117 1.7600 -189 1118 -4.6473 1.0047 1.7600 -189 1119 -4.5989 0.9989 1.7600 -189 1120 -4.5454 0.9959 1.7600 -189 1121 -4.4923 0.9984 1.7600 -189 1122 -4.4394 1.0024 1.7600 -189 1123 -4.3833 1.0096 1.7600 -189 1124 -4.3345 1.0204 1.7600 -189 1125 -4.2875 1.0278 1.7600 -189 1126 -4.2409 1.0295 1.7600 -189 1127 -4.1920 1.0236 1.7600 -189 1128 -4.1492 1.0158 1.7600 -189 1129 -4.1110 1.0059 1.7600 -189 1130 -4.0695 0.9983 1.7600 -189 1131 -4.0286 0.9905 1.7600 -189 1132 -3.9860 0.9785 1.7600 -189 1133 -3.9441 0.9657 1.7600 -189 1134 -3.9017 0.9501 1.7600 -189 1135 -3.8552 0.9284 1.7600 -189 1136 -3.8100 0.9091 1.7600 -189 1137 -3.7659 0.8872 1.7600 -189 1138 -3.7267 0.8666 1.7600 -189 1139 -3.6854 0.8513 1.7600 -189 1140 -3.6399 0.8426 1.7600 -189 1141 -3.5985 0.8383 1.7600 -189 1142 -3.5580 0.8372 1.7600 -189 1143 -3.5178 0.8388 1.7600 -189 1144 -3.4761 0.8437 1.7600 -189 1145 -3.4311 0.8491 1.7600 -189 1146 -3.3887 0.8587 1.7600 -189 1147 -3.3452 0.8746 1.7600 -189 1148 -3.2963 0.8921 1.7600 -189 1149 -3.2537 0.9075 1.7600 -189 1150 -3.2153 0.9180 1.7600 -189 1151 -3.1727 0.9239 1.7600 -189 1152 -3.1274 0.9252 1.7600 -189 1153 -3.0853 0.9238 1.7600 -189 1154 -3.0382 0.9153 1.7600 -189 1155 -2.9935 0.9069 1.7600 -189 1156 -2.9480 0.8975 1.7600 -189 1157 -2.9007 0.8850 1.7600 -189 1158 -2.8526 0.8704 1.7600 -189 1159 -2.8041 0.8551 1.7600 -189 1160 -2.7520 0.8379 1.7600 -189 1161 -2.7025 0.8216 1.7600 -189 1162 -2.6592 0.8064 1.7600 -189 1163 -2.6134 0.7944 1.7600 -189 1164 -2.5626 0.7901 1.7600 -189 1165 -2.5112 0.7915 1.7600 -189 1166 -2.4588 0.7943 1.7600 -189 1167 -2.4065 0.8015 1.7600 -189 1168 -2.3488 0.8114 1.7600 -189 1169 -2.2924 0.8247 1.7600 -189 1170 -2.2356 0.8411 1.7600 -189 1171 -2.1757 0.8624 1.7600 -189 1172 -2.1125 0.8873 1.7600 -189 1173 -2.0584 0.9105 1.7600 -189 1174 -2.0018 0.9293 1.7600 -189 1175 -1.9466 0.9416 1.7600 -189 1176 -1.8897 0.9481 1.7600 -189 1177 -1.8346 0.9526 1.7600 -189 1178 -1.7778 0.9541 1.7600 -189 1179 -1.7227 0.9502 1.7600 -189 1180 -1.6670 0.9446 1.7600 -189 1181 -1.6166 0.9343 1.7600 -189 1182 -1.5582 0.9226 1.7600 -189 1183 -1.4988 0.9062 1.7600 -189 1184 -1.4482 0.8936 1.7600 -189 1185 -1.4056 0.8853 1.7600 -189 1186 -1.3586 0.8837 1.7600 -189 1187 -1.3107 0.8878 1.7600 -189 1188 -1.2645 0.8948 1.7600 -189 1189 -1.2178 0.9033 1.7600 -189 1190 -1.1693 0.9135 1.7600 -189 1191 -1.1193 0.9253 1.7600 -189 1192 -1.0686 0.9387 1.7600 -189 1193 -1.0122 0.9558 1.7600 -189 1194 -0.9569 0.9731 1.7600 -189 1195 -0.9078 0.9881 1.7600 -189 1196 -0.8601 0.9982 1.7600 -189 1197 -0.8125 0.9998 1.7600 -189 1198 -0.7653 0.9963 1.7600 -189 1199 -0.7223 0.9882 1.7600 -189 1200 -0.6779 0.9782 1.7600 -189 1201 -0.6296 0.9668 1.7600 -189 1202 -0.5813 0.9538 1.7600 -189 1203 -0.5321 0.9376 1.7600 -189 1204 -0.4795 0.9186 1.7600 -189 1205 -0.4274 0.9004 1.7600 -189 1206 -0.3841 0.8858 1.7600 -189 1207 -0.3438 0.8748 1.7600 -189 1208 -0.2981 0.8664 1.7600 -189 1209 -0.2485 0.8650 1.7600 -189 1210 -0.1900 0.8688 1.7600 -189 1211 -0.1297 0.8765 1.7600 -189 1212 -0.0666 0.8853 1.7600 -189 1213 -0.0066 0.8969 1.7600 -189 1214 0.0580 0.9101 1.7600 -189 1215 0.1195 0.9244 1.7600 -189 1216 0.1826 0.9407 1.7600 -189 1217 0.2388 0.9552 1.7600 -189 1218 0.2906 0.9671 1.7600 -189 1219 0.3460 0.9739 1.7600 -189 1220 0.4030 0.9744 1.7600 -189 1221 0.4559 0.9706 1.7600 -189 1222 0.5120 0.9663 1.7600 -189 1223 0.5704 0.9590 1.7600 -189 1224 0.6299 0.9522 1.7600 -189 1225 0.6917 0.9405 1.7600 -189 1226 0.7549 0.9247 1.7600 -189 1227 0.8175 0.9075 1.7600 -189 1228 0.8770 0.8902 1.7600 -189 1229 0.9367 0.8745 1.7600 -189 1230 0.9951 0.8639 1.7600 -189 1231 1.0558 0.8595 1.7600 -189 1232 1.1168 0.8623 1.7600 -189 1233 1.1782 0.8663 1.7600 -189 1234 1.2408 0.8701 1.7600 -189 1235 1.3073 0.8746 1.7600 -189 1236 1.3696 0.8805 1.7600 -189 1237 1.4357 0.8907 1.7600 -189 1238 1.5037 0.9018 1.7600 -189 1239 1.5648 0.9110 1.7600 -189 1240 1.6268 0.9176 1.7600 -189 1241 1.6838 0.9161 1.7600 -189 1242 1.7447 0.9099 1.7600 -189 1243 1.8019 0.8986 1.7600 -189 1244 1.8576 0.8839 1.7600 -189 1245 1.9139 0.8676 1.7600 -189 1246 1.9698 0.8491 1.7600 -189 1247 2.0261 0.8281 1.7600 -189 1248 2.0829 0.8031 1.7600 -189 1249 2.1461 0.7729 1.7600 -189 1250 2.2042 0.7438 1.7600 -189 1251 2.2542 0.7207 1.7600 -189 1252 2.3056 0.7034 1.7600 -189 1253 2.3611 0.6956 1.7600 -189 1254 2.4203 0.6952 1.7600 -189 1255 2.4799 0.6996 1.7600 -189 1256 2.5391 0.7070 1.7600 -189 1257 2.5987 0.7152 1.7600 -189 1258 2.6621 0.7275 1.7600 -189 1259 2.7225 0.7405 1.7600 -189 1260 2.7936 0.7568 1.7600 -189 1261 2.8629 0.7728 1.7600 -189 1262 2.9293 0.7869 1.7600 -189 1263 2.9914 0.7933 1.7600 -189 1264 3.0538 0.7933 1.7600 -189 1265 3.1155 0.7884 1.7600 -189 1266 3.1735 0.7795 1.7600 -189 1267 3.2296 0.7680 1.7600 -189 1268 3.2908 0.7581 1.7600 -189 1269 3.3526 0.7459 1.7600 -189 1270 3.4170 0.7322 1.7600 -189 1271 3.4869 0.7200 1.7600 -189 1272 3.5626 0.7054 1.7600 -189 1273 3.6326 0.6928 1.7600 -189 1274 3.7018 0.6852 1.7600 -189 1275 3.7686 0.6854 1.7600 -189 1276 3.8368 0.6898 1.7600 -189 1277 3.9023 0.6952 1.7600 -189 1278 3.9650 0.7035 1.7600 -189 1279 4.0343 0.7092 1.7600 -189 1280 4.1033 0.7158 1.7600 -189 1281 4.1779 0.7252 1.7600 -189 1282 4.2644 0.7346 1.7600 -189 1283 4.3490 0.7442 1.7600 -189 1284 4.4314 0.7484 1.7600 -189 1285 4.5143 0.7453 1.7600 -189 1286 4.5935 0.7373 1.7600 -189 1287 4.6660 0.7261 1.7600 -189 1288 4.7368 0.7148 1.7600 -189 1289 4.8105 0.7007 1.7600 -189 1290 4.8840 0.6867 1.7600 -189 1291 4.9683 0.6713 1.7600 -189 1292 5.0613 0.6519 1.7600 -189 1293 5.1439 0.6349 1.7600 -189 1294 5.2267 0.6229 1.7600 -189 1295 5.3152 0.6175 1.7600 -189 1296 5.4002 0.6195 1.7600 -189 1297 5.4773 0.6239 1.7600 -189 1298 5.5519 0.6312 1.7600 -189 1299 5.6272 0.6375 1.7600 -189 1300 5.7048 0.6460 1.7600 -189 1301 5.7981 0.6486 1.7600 -189 1302 5.8955 0.6540 1.7600 -190 1036 -7.8070 0.4797 1.7600 -190 1037 -7.7652 0.4818 1.7600 -190 1038 -7.7244 0.4875 1.7600 -190 1039 -7.6830 0.4907 1.7600 -190 1040 -7.6407 0.4880 1.7600 -190 1041 -7.5983 0.4809 1.7600 -190 1042 -7.5602 0.4721 1.7600 -190 1043 -7.5253 0.4615 1.7600 -190 1044 -7.4896 0.4456 1.7600 -190 1045 -7.4546 0.4282 1.7600 -190 1046 -7.4178 0.4090 1.7600 -190 1047 -7.3804 0.3864 1.7600 -190 1048 -7.3393 0.3596 1.7600 -190 1049 -7.2985 0.3301 1.7600 -190 1050 -7.2620 0.2979 1.7600 -190 1051 -7.2271 0.2661 1.7600 -190 1052 -7.1954 0.2412 1.7600 -190 1053 -7.1643 0.2225 1.7600 -190 1054 -7.1386 0.2099 1.7600 -190 1055 -7.1133 0.2006 1.7600 -190 1056 -7.0793 0.1974 1.7600 -190 1057 -7.0419 0.1962 1.7600 -190 1058 -7.0024 0.1999 1.7600 -190 1059 -6.9643 0.2071 1.7600 -190 1060 -6.9197 0.2237 1.7600 -190 1061 -6.8759 0.2422 1.7600 -190 1062 -6.8318 0.2536 1.7600 -190 1063 -6.7930 0.2588 1.7600 -190 1064 -6.7614 0.2581 1.7600 -190 1065 -6.7302 0.2550 1.7600 -190 1066 -6.7003 0.2494 1.7600 -190 1067 -6.6673 0.2441 1.7600 -190 1068 -6.6319 0.2401 1.7600 -190 1069 -6.5935 0.2318 1.7600 -190 1070 -6.5518 0.2212 1.7600 -190 1071 -6.5067 0.2040 1.7600 -190 1072 -6.4643 0.1831 1.7600 -190 1073 -6.4277 0.1627 1.7600 -190 1074 -6.3909 0.1397 1.7600 -190 1075 -6.3552 0.1177 1.7600 -190 1076 -6.3209 0.1021 1.7600 -190 1077 -6.2811 0.0894 1.7600 -190 1078 -6.2454 0.0812 1.7600 -190 1079 -6.2072 0.0754 1.7600 -190 1080 -6.1720 0.0738 1.7600 -190 1081 -6.1346 0.0786 1.7600 -190 1082 -6.0965 0.0902 1.7600 -190 1083 -6.0579 0.0999 1.7600 -190 1084 -6.0237 0.1061 1.7600 -190 1085 -5.9882 0.1065 1.7600 -190 1086 -5.9559 0.1038 1.7600 -190 1087 -5.9218 0.0992 1.7600 -190 1088 -5.8843 0.0930 1.7600 -190 1089 -5.8455 0.0854 1.7600 -190 1090 -5.8051 0.0758 1.7600 -190 1091 -5.7612 0.0621 1.7600 -190 1092 -5.7231 0.0429 1.7600 -190 1093 -5.6853 0.0224 1.7600 -190 1094 -5.6469 0.0047 1.7600 -190 1095 -5.6087 -0.0046 1.7600 -190 1096 -5.5692 -0.0042 1.7600 -190 1097 -5.5295 0.0030 1.7600 -190 1098 -5.4884 0.0181 1.7600 -190 1099 -5.4442 0.0400 1.7600 -190 1100 -5.4021 0.0703 1.7600 -190 1101 -5.3572 0.1020 1.7600 -190 1102 -5.3161 0.1333 1.7600 -190 1103 -5.2774 0.1635 1.7600 -190 1104 -5.2381 0.1864 1.7600 -190 1105 -5.1997 0.2044 1.7600 -190 1106 -5.1609 0.2182 1.7600 -190 1107 -5.1211 0.2259 1.7600 -190 1108 -5.0803 0.2287 1.7600 -190 1109 -5.0376 0.2298 1.7600 -190 1110 -4.9948 0.2284 1.7600 -190 1111 -4.9484 0.2216 1.7600 -190 1112 -4.9021 0.2107 1.7600 -190 1113 -4.8564 0.1977 1.7600 -190 1114 -4.8120 0.1809 1.7600 -190 1115 -4.7686 0.1627 1.7600 -190 1116 -4.7248 0.1516 1.7600 -190 1117 -4.6851 0.1418 1.7600 -190 1118 -4.6424 0.1353 1.7600 -190 1119 -4.6019 0.1382 1.7600 -190 1120 -4.5621 0.1446 1.7600 -190 1121 -4.5221 0.1542 1.7600 -190 1122 -4.4815 0.1714 1.7600 -190 1123 -4.4376 0.1943 1.7600 -190 1124 -4.3916 0.2239 1.7600 -190 1125 -4.3490 0.2517 1.7600 -190 1126 -4.3062 0.2766 1.7600 -190 1127 -4.2623 0.2932 1.7600 -190 1128 -4.2195 0.3072 1.7600 -190 1129 -4.1780 0.3169 1.7600 -190 1130 -4.1370 0.3226 1.7600 -190 1131 -4.0995 0.3237 1.7600 -190 1132 -4.0598 0.3215 1.7600 -190 1133 -4.0205 0.3152 1.7600 -190 1134 -3.9818 0.3047 1.7600 -190 1135 -3.9431 0.2873 1.7600 -190 1136 -3.9013 0.2683 1.7600 -190 1137 -3.8570 0.2435 1.7600 -190 1138 -3.8125 0.2188 1.7600 -190 1139 -3.7691 0.1968 1.7600 -190 1140 -3.7231 0.1802 1.7600 -190 1141 -3.6778 0.1692 1.7600 -190 1142 -3.6331 0.1599 1.7600 -190 1143 -3.5853 0.1537 1.7600 -190 1144 -3.5353 0.1511 1.7600 -190 1145 -3.4853 0.1556 1.7600 -190 1146 -3.4343 0.1679 1.7600 -190 1147 -3.3799 0.1881 1.7600 -190 1148 -3.3252 0.2077 1.7600 -190 1149 -3.2700 0.2274 1.7600 -190 1150 -3.2218 0.2430 1.7600 -190 1151 -3.1748 0.2499 1.7600 -190 1152 -3.1284 0.2515 1.7600 -190 1153 -3.0827 0.2489 1.7600 -190 1154 -3.0362 0.2415 1.7600 -190 1155 -2.9904 0.2333 1.7600 -190 1156 -2.9438 0.2229 1.7600 -190 1157 -2.8948 0.2073 1.7600 -190 1158 -2.8448 0.1853 1.7600 -190 1159 -2.7910 0.1614 1.7600 -190 1160 -2.7397 0.1438 1.7600 -190 1161 -2.6864 0.1318 1.7600 -190 1162 -2.6370 0.1282 1.7600 -190 1163 -2.5885 0.1298 1.7600 -190 1164 -2.5386 0.1378 1.7600 -190 1165 -2.4910 0.1497 1.7600 -190 1166 -2.4437 0.1682 1.7600 -190 1167 -2.3930 0.1893 1.7600 -190 1168 -2.3414 0.2087 1.7600 -190 1169 -2.2900 0.2210 1.7600 -190 1170 -2.2409 0.2289 1.7600 -190 1171 -2.1911 0.2306 1.7600 -190 1172 -2.1429 0.2312 1.7600 -190 1173 -2.0975 0.2284 1.7600 -190 1174 -2.0492 0.2231 1.7600 -190 1175 -1.9969 0.2129 1.7600 -190 1176 -1.9418 0.1977 1.7600 -190 1177 -1.8853 0.1856 1.7600 -190 1178 -1.8343 0.1753 1.7600 -190 1179 -1.7831 0.1710 1.7600 -190 1180 -1.7335 0.1697 1.7600 -190 1181 -1.6853 0.1710 1.7600 -190 1182 -1.6378 0.1769 1.7600 -190 1183 -1.5885 0.1843 1.7600 -190 1184 -1.5418 0.1956 1.7600 -190 1185 -1.4934 0.2124 1.7600 -190 1186 -1.4376 0.2316 1.7600 -190 1187 -1.3768 0.2496 1.7600 -190 1188 -1.3160 0.2629 1.7600 -190 1189 -1.2669 0.2739 1.7600 -190 1190 -1.2200 0.2838 1.7600 -190 1191 -1.1750 0.2881 1.7600 -190 1192 -1.1279 0.2882 1.7600 -190 1193 -1.0819 0.2843 1.7600 -190 1194 -1.0321 0.2744 1.7600 -190 1195 -0.9780 0.2612 1.7600 -190 1196 -0.9234 0.2488 1.7600 -190 1197 -0.8700 0.2382 1.7600 -190 1198 -0.8224 0.2298 1.7600 -190 1199 -0.7779 0.2227 1.7600 -190 1200 -0.7336 0.2183 1.7600 -190 1201 -0.6906 0.2160 1.7600 -190 1202 -0.6469 0.2171 1.7600 -190 1203 -0.6012 0.2218 1.7600 -190 1204 -0.5551 0.2290 1.7600 -190 1205 -0.5062 0.2444 1.7600 -190 1206 -0.4623 0.2631 1.7600 -190 1207 -0.4182 0.2826 1.7600 -190 1208 -0.3739 0.2942 1.7600 -190 1209 -0.3306 0.2971 1.7600 -190 1210 -0.2863 0.2939 1.7600 -190 1211 -0.2367 0.2832 1.7600 -190 1212 -0.1817 0.2703 1.7600 -190 1213 -0.1210 0.2533 1.7600 -190 1214 -0.0667 0.2319 1.7600 -190 1215 -0.0136 0.2099 1.7600 -190 1216 0.0346 0.1940 1.7600 -190 1217 0.0744 0.1936 1.7600 -190 1218 0.1135 0.2053 1.7600 -190 1219 0.1568 0.2220 1.7600 -190 1220 0.1986 0.2423 1.7600 -190 1221 0.2422 0.2668 1.7600 -190 1222 0.2859 0.2934 1.7600 -190 1223 0.3267 0.3139 1.7600 -190 1224 0.3662 0.3233 1.7600 -190 1225 0.4047 0.3289 1.7600 -190 1226 0.4453 0.3275 1.7600 -190 1227 0.4904 0.3256 1.7600 -190 1228 0.5412 0.3211 1.7600 -190 1229 0.5937 0.3137 1.7600 -190 1230 0.6474 0.3026 1.7600 -190 1231 0.7027 0.2857 1.7600 -190 1232 0.7604 0.2657 1.7600 -190 1233 0.8162 0.2445 1.7600 -190 1234 0.8669 0.2304 1.7600 -190 1235 0.9172 0.2193 1.7600 -190 1236 0.9674 0.2097 1.7600 -190 1237 1.0157 0.2092 1.7600 -190 1238 1.0610 0.2192 1.7600 -190 1239 1.1112 0.2290 1.7600 -190 1240 1.1664 0.2433 1.7600 -190 1241 1.2246 0.2732 1.7600 -190 1242 1.2818 0.3069 1.7600 -190 1243 1.3407 0.3330 1.7600 -190 1244 1.3973 0.3499 1.7600 -190 1245 1.4469 0.3565 1.7600 -190 1246 1.4979 0.3536 1.7600 -190 1247 1.5458 0.3451 1.7600 -190 1248 1.5970 0.3343 1.7600 -190 1249 1.6457 0.3188 1.7600 -190 1250 1.6968 0.3008 1.7600 -190 1251 1.7482 0.2815 1.7600 -190 1252 1.7993 0.2560 1.7600 -190 1253 1.8511 0.2252 1.7600 -190 1254 1.9042 0.2013 1.7600 -190 1255 1.9587 0.1959 1.7600 -190 1256 2.0144 0.2008 1.7600 -190 1257 2.0685 0.2157 1.7600 -190 1258 2.1224 0.2384 1.7600 -190 1259 2.1780 0.2657 1.7600 -190 1260 2.2335 0.2958 1.7600 -190 1261 2.2884 0.3259 1.7600 -190 1262 2.3456 0.3513 1.7600 -190 1263 2.3977 0.3637 1.7600 -190 1264 2.4480 0.3679 1.7600 -190 1265 2.4974 0.3665 1.7600 -190 1266 2.5469 0.3567 1.7600 -190 1267 2.5985 0.3399 1.7600 -190 1268 2.6512 0.3210 1.7600 -190 1269 2.7048 0.2999 1.7600 -190 1270 2.7588 0.2776 1.7600 -190 1271 2.8142 0.2603 1.7600 -190 1272 2.8687 0.2486 1.7600 -190 1273 2.9244 0.2435 1.7600 -190 1274 2.9798 0.2466 1.7600 -190 1275 3.0352 0.2536 1.7600 -190 1276 3.0909 0.2645 1.7600 -190 1277 3.1459 0.2794 1.7600 -190 1278 3.2034 0.2982 1.7600 -190 1279 3.2652 0.3199 1.7600 -190 1280 3.3309 0.3377 1.7600 -190 1281 3.3961 0.3525 1.7600 -190 1282 3.4554 0.3585 1.7600 -190 1283 3.5127 0.3572 1.7600 -190 1284 3.5664 0.3549 1.7600 -190 1285 3.6199 0.3508 1.7600 -190 1286 3.6757 0.3431 1.7600 -190 1287 3.7299 0.3355 1.7600 -190 1288 3.7834 0.3231 1.7600 -190 1289 3.8389 0.3066 1.7600 -190 1290 3.9001 0.2841 1.7600 -190 1291 3.9636 0.2643 1.7600 -190 1292 4.0242 0.2526 1.7600 -190 1293 4.0860 0.2510 1.7600 -190 1294 4.1461 0.2514 1.7600 -190 1295 4.2034 0.2560 1.7600 -190 1296 4.2619 0.2638 1.7600 -190 1297 4.3213 0.2751 1.7600 -190 1298 4.3863 0.2894 1.7600 -190 1299 4.4559 0.3041 1.7600 -190 1300 4.5281 0.3138 1.7600 -190 1301 4.5967 0.3178 1.7600 -190 1302 4.6593 0.3164 1.7600 -190 1303 4.7183 0.3076 1.7600 -190 1304 4.7739 0.2973 1.7600 -190 1305 4.8286 0.2828 1.7600 -190 1306 4.8795 0.2637 1.7600 -190 1307 4.9296 0.2409 1.7600 -190 1308 4.9830 0.2151 1.7600 -190 1309 5.0389 0.1827 1.7600 -190 1310 5.0982 0.1521 1.7600 -190 1311 5.1554 0.1240 1.7600 -190 1312 5.2170 0.1031 1.7600 -190 1313 5.2753 0.0882 1.7600 -190 1314 5.3317 0.0774 1.7600 -190 1315 5.3875 0.0713 1.7600 -190 1316 5.4440 0.0685 1.7600 -190 1317 5.5094 0.0706 1.7600 -190 1318 5.5845 0.0708 1.7600 -190 1319 5.6613 0.0659 1.7600 -190 1320 5.7300 0.0524 1.7600 -190 1321 5.7931 0.0333 1.7600 -190 1322 5.8524 0.0123 1.7600 -190 1323 5.9084 -0.0097 1.7600 -190 1324 5.9615 -0.0350 1.7600 -191 1048 -7.7586 2.4154 1.7600 -191 1049 -7.6760 2.4318 1.7600 -191 1050 -7.6016 2.4566 1.7600 -191 1051 -7.5298 2.4879 1.7600 -191 1052 -7.4528 2.5187 1.7600 -191 1053 -7.3672 2.5486 1.7600 -191 1054 -7.2766 2.5819 1.7600 -191 1055 -7.1859 2.6239 1.7600 -191 1056 -7.1013 2.6703 1.7600 -191 1057 -7.0343 2.7051 1.7600 -191 1058 -6.9797 2.7236 1.7600 -191 1059 -6.9290 2.7283 1.7600 -191 1060 -6.8724 2.7253 1.7600 -191 1061 -6.8046 2.7190 1.7600 -191 1062 -6.7260 2.7106 1.7600 -191 1063 -6.6414 2.7032 1.7600 -191 1064 -6.5553 2.6984 1.7600 -191 1065 -6.4707 2.6930 1.7600 -191 1066 -6.3864 2.6859 1.7600 -191 1067 -6.3061 2.6899 1.7600 -191 1068 -6.2263 2.7003 1.7600 -191 1069 -6.1455 2.7128 1.7600 -191 1070 -6.0653 2.7208 1.7600 -191 1071 -5.9802 2.7232 1.7600 -191 1072 -5.8965 2.7242 1.7600 -191 1073 -5.8122 2.7262 1.7600 -191 1074 -5.7383 2.7258 1.7600 -191 1075 -5.6888 2.7138 1.7600 -191 1076 -5.6460 2.6948 1.7600 -191 1077 -5.6118 2.6664 1.7600 -191 1078 -5.5776 2.6398 1.7600 -191 1079 -5.5435 2.6068 1.7600 -191 1080 -5.5075 2.5728 1.7600 -191 1081 -5.4671 2.5326 1.7600 -191 1082 -5.4275 2.4876 1.7600 -191 1083 -5.3837 2.4383 1.7600 -191 1084 -5.3450 2.3974 1.7600 -191 1085 -5.3020 2.3672 1.7600 -191 1086 -5.2548 2.3519 1.7600 -191 1087 -5.2121 2.3414 1.7600 -191 1088 -5.1689 2.3357 1.7600 -191 1089 -5.1196 2.3285 1.7600 -191 1090 -5.0670 2.3212 1.7600 -191 1091 -5.0097 2.3179 1.7600 -191 1092 -4.9558 2.3194 1.7600 -191 1093 -4.9073 2.3254 1.7600 -191 1094 -4.8654 2.3287 1.7600 -191 1095 -4.8252 2.3240 1.7600 -191 1096 -4.7856 2.3111 1.7600 -191 1097 -4.7508 2.2933 1.7600 -191 1098 -4.7173 2.2716 1.7600 -191 1099 -4.6826 2.2446 1.7600 -191 1100 -4.6513 2.2126 1.7600 -191 1101 -4.6263 2.1758 1.7600 -191 1102 -4.6036 2.1341 1.7600 -191 1103 -4.5823 2.0897 1.7600 -191 1104 -4.5602 2.0425 1.7600 -191 1105 -4.5414 2.0000 1.7600 -191 1106 -4.5239 1.9664 1.7600 -191 1107 -4.5038 1.9380 1.7600 -191 1108 -4.4838 1.9184 1.7600 -191 1109 -4.4623 1.9007 1.7600 -191 1110 -4.4399 1.8827 1.7600 -191 1111 -4.4160 1.8623 1.7600 -191 1112 -4.3888 1.8413 1.7600 -191 1113 -4.3554 1.8183 1.7600 -191 1114 -4.3189 1.7995 1.7600 -191 1115 -4.2755 1.7813 1.7600 -191 1116 -4.2291 1.7646 1.7600 -191 1117 -4.1877 1.7506 1.7600 -191 1118 -4.1513 1.7367 1.7600 -191 1119 -4.1174 1.7194 1.7600 -191 1120 -4.0836 1.6997 1.7600 -191 1121 -4.0504 1.6757 1.7600 -191 1122 -4.0139 1.6530 1.7600 -191 1123 -3.9763 1.6293 1.7600 -191 1124 -3.9375 1.6045 1.7600 -191 1125 -3.9002 1.5822 1.7600 -191 1126 -3.8626 1.5620 1.7600 -191 1127 -3.8275 1.5472 1.7600 -191 1128 -3.7917 1.5399 1.7600 -191 1129 -3.7594 1.5366 1.7600 -191 1130 -3.7255 1.5321 1.7600 -191 1131 -3.6933 1.5230 1.7600 -191 1132 -3.6492 1.5151 1.7600 -191 1133 -3.6008 1.5134 1.7600 -191 1134 -3.5515 1.5172 1.7600 -191 1135 -3.5135 1.5137 1.7600 -191 1136 -3.4844 1.5003 1.7600 -191 1137 -3.4498 1.4798 1.7600 -191 1138 -3.4125 1.4623 1.7600 -191 1139 -3.3760 1.4382 1.7600 -191 1140 -3.3380 1.4156 1.7600 -191 1141 -3.2941 1.3891 1.7600 -191 1142 -3.2519 1.3694 1.7600 -191 1143 -3.2066 1.3587 1.7600 -191 1144 -3.1596 1.3576 1.7600 -191 1145 -3.1117 1.3644 1.7600 -191 1146 -3.0562 1.3726 1.7600 -191 1147 -2.9952 1.3849 1.7600 -191 1148 -2.9309 1.4093 1.7600 -191 1149 -2.8652 1.4373 1.7600 -191 1150 -2.7993 1.4689 1.7600 -191 1151 -2.7416 1.4915 1.7600 -191 1152 -2.6964 1.5041 1.7600 -191 1153 -2.6613 1.5084 1.7600 -191 1154 -2.6240 1.5125 1.7600 -191 1155 -2.5861 1.5121 1.7600 -191 1156 -2.5398 1.5088 1.7600 -191 1157 -2.4894 1.5003 1.7600 -191 1158 -2.4310 1.4850 1.7600 -191 1159 -2.3623 1.4620 1.7600 -191 1160 -2.2792 1.4421 1.7600 -191 1161 -2.2004 1.4253 1.7600 -191 1162 -2.1342 1.4151 1.7600 -191 1163 -2.0742 1.4116 1.7600 -191 1164 -2.0180 1.4178 1.7600 -191 1165 -1.9638 1.4223 1.7600 -191 1166 -1.9082 1.4354 1.7600 -191 1167 -1.8451 1.4419 1.7600 -191 1168 -1.7883 1.4609 1.7600 -191 1169 -1.7282 1.4840 1.7600 -191 1170 -1.6641 1.5131 1.7600 -191 1171 -1.6104 1.5341 1.7600 -191 1172 -1.5677 1.5438 1.7600 -191 1173 -1.5356 1.5436 1.7600 -191 1174 -1.5060 1.5435 1.7600 -191 1175 -1.4725 1.5413 1.7600 -191 1176 -1.4326 1.5330 1.7600 -191 1177 -1.3884 1.5193 1.7600 -191 1178 -1.3382 1.5022 1.7600 -191 1179 -1.2810 1.4839 1.7600 -191 1180 -1.2242 1.4632 1.7600 -191 1181 -1.1638 1.4468 1.7600 -191 1182 -1.1106 1.4411 1.7600 -191 1183 -1.0581 1.4437 1.7600 -191 1184 -1.0097 1.4469 1.7600 -191 1185 -0.9624 1.4483 1.7600 -191 1186 -0.9130 1.4613 1.7600 -191 1187 -0.8652 1.4737 1.7600 -191 1188 -0.8186 1.4915 1.7600 -191 1189 -0.7737 1.5067 1.7600 -191 1190 -0.7308 1.5185 1.7600 -191 1191 -0.6881 1.5253 1.7600 -191 1192 -0.6429 1.5259 1.7600 -191 1193 -0.5954 1.5211 1.7600 -191 1194 -0.5463 1.5132 1.7600 -191 1195 -0.4940 1.5015 1.7600 -191 1196 -0.4394 1.4858 1.7600 -191 1197 -0.3822 1.4657 1.7600 -191 1198 -0.3301 1.4480 1.7600 -191 1199 -0.2730 1.4301 1.7600 -191 1200 -0.2171 1.4197 1.7600 -191 1201 -0.1588 1.4097 1.7600 -191 1202 -0.0992 1.4098 1.7600 -191 1203 -0.0384 1.4113 1.7600 -191 1204 0.0228 1.4180 1.7600 -191 1205 0.0851 1.4329 1.7600 -191 1206 0.1452 1.4511 1.7600 -191 1207 0.2035 1.4751 1.7600 -191 1208 0.2618 1.4933 1.7600 -191 1209 0.3119 1.5049 1.7600 -191 1210 0.3635 1.5104 1.7600 -191 1211 0.4197 1.5103 1.7600 -191 1212 0.4855 1.5023 1.7600 -191 1213 0.5579 1.4904 1.7600 -191 1214 0.6281 1.4726 1.7600 -191 1215 0.6934 1.4517 1.7600 -191 1216 0.7590 1.4252 1.7600 -191 1217 0.8232 1.3931 1.7600 -191 1218 0.8802 1.3672 1.7600 -191 1219 0.9344 1.3512 1.7600 -191 1220 0.9918 1.3428 1.7600 -191 1221 1.0423 1.3434 1.7600 -191 1222 1.0914 1.3417 1.7600 -191 1223 1.1413 1.3420 1.7600 -191 1224 1.1941 1.3470 1.7600 -191 1225 1.2487 1.3551 1.7600 -191 1226 1.3034 1.3612 1.7600 -191 1227 1.3586 1.3684 1.7600 -191 1228 1.4042 1.3680 1.7600 -191 1229 1.4495 1.3622 1.7600 -191 1230 1.4979 1.3510 1.7600 -191 1231 1.5491 1.3379 1.7600 -191 1232 1.6008 1.3252 1.7600 -191 1233 1.6550 1.3074 1.7600 -191 1234 1.7099 1.2865 1.7600 -191 1235 1.7653 1.2591 1.7600 -191 1236 1.8226 1.2316 1.7600 -191 1237 1.8763 1.2133 1.7600 -191 1238 1.9290 1.2018 1.7600 -191 1239 1.9805 1.1950 1.7600 -191 1240 2.0315 1.1950 1.7600 -191 1241 2.0783 1.1949 1.7600 -191 1242 2.1310 1.1982 1.7600 -191 1243 2.1825 1.2058 1.7600 -191 1244 2.2375 1.2164 1.7600 -191 1245 2.2901 1.2297 1.7600 -191 1246 2.3392 1.2417 1.7600 -191 1247 2.3824 1.2480 1.7600 -191 1248 2.4305 1.2523 1.7600 -191 1249 2.4776 1.2539 1.7600 -191 1250 2.5249 1.2502 1.7600 -191 1251 2.5776 1.2425 1.7600 -191 1252 2.6313 1.2327 1.7600 -191 1253 2.6908 1.2164 1.7600 -191 1254 2.7550 1.1922 1.7600 -191 1255 2.8217 1.1717 1.7600 -191 1256 2.8818 1.1572 1.7600 -191 1257 2.9421 1.1543 1.7600 -191 1258 2.9992 1.1576 1.7600 -191 1259 3.0559 1.1650 1.7600 -191 1260 3.1157 1.1767 1.7600 -191 1261 3.1753 1.1896 1.7600 -191 1262 3.2378 1.2050 1.7600 -191 1263 3.3057 1.2266 1.7600 -191 1264 3.3743 1.2478 1.7600 -191 1265 3.4317 1.2633 1.7600 -191 1266 3.4917 1.2675 1.7600 -191 1267 3.5540 1.2680 1.7600 -191 1268 3.6184 1.2669 1.7600 -191 1269 3.6827 1.2661 1.7600 -191 1270 3.7486 1.2640 1.7600 -191 1271 3.8224 1.2578 1.7600 -191 1272 3.9020 1.2505 1.7600 -191 1273 3.9872 1.2445 1.7600 -191 1274 4.0617 1.2445 1.7600 -191 1275 4.1345 1.2559 1.7600 -191 1276 4.2057 1.2732 1.7600 -191 1277 4.2666 1.2893 1.7600 -191 1278 4.3308 1.3058 1.7600 -191 1279 4.3929 1.3246 1.7600 -191 1280 4.4618 1.3463 1.7600 -191 1281 4.5408 1.3710 1.7600 -191 1282 4.6248 1.3922 1.7600 -191 1283 4.7052 1.3981 1.7600 -191 1284 4.7781 1.3957 1.7600 -191 1285 4.8491 1.3909 1.7600 -191 1286 4.9162 1.3873 1.7600 -191 1287 4.9880 1.3845 1.7600 -191 1288 5.0683 1.3817 1.7600 -191 1289 5.1534 1.3835 1.7600 -191 1290 5.2488 1.3864 1.7600 -191 1291 5.3363 1.3943 1.7600 -191 1292 5.4175 1.4076 1.7600 -191 1293 5.4925 1.4281 1.7600 -191 1294 5.5642 1.4485 1.7600 -191 1295 5.6306 1.4720 1.7600 -191 1296 5.6959 1.4947 1.7600 -191 1297 5.7647 1.5203 1.7600 -191 1298 5.8462 1.5500 1.7600 -191 1299 5.9343 1.5775 1.7600 -192 1052 -7.8120 1.3923 1.7600 -192 1053 -7.7701 1.3887 1.7600 -192 1054 -7.7293 1.3873 1.7600 -192 1055 -7.6915 1.3874 1.7600 -192 1056 -7.6529 1.3873 1.7600 -192 1057 -7.6154 1.3840 1.7600 -192 1058 -7.5796 1.3781 1.7600 -192 1059 -7.5458 1.3699 1.7600 -192 1060 -7.5110 1.3603 1.7600 -192 1061 -7.4745 1.3497 1.7600 -192 1062 -7.4362 1.3361 1.7600 -192 1063 -7.3979 1.3201 1.7600 -192 1064 -7.3601 1.3015 1.7600 -192 1065 -7.3253 1.2818 1.7600 -192 1066 -7.2930 1.2616 1.7600 -192 1067 -7.2599 1.2429 1.7600 -192 1068 -7.2264 1.2268 1.7600 -192 1069 -7.1923 1.2140 1.7600 -192 1070 -7.1637 1.2066 1.7600 -192 1071 -7.1319 1.1997 1.7600 -192 1072 -7.0973 1.1936 1.7600 -192 1073 -7.0591 1.1899 1.7600 -192 1074 -7.0218 1.1884 1.7600 -192 1075 -6.9798 1.1894 1.7600 -192 1076 -6.9416 1.1913 1.7600 -192 1077 -6.9053 1.1962 1.7600 -192 1078 -6.8721 1.2038 1.7600 -192 1079 -6.8333 1.2091 1.7600 -192 1080 -6.7990 1.2093 1.7600 -192 1081 -6.7641 1.2081 1.7600 -192 1082 -6.7294 1.2059 1.7600 -192 1083 -6.6943 1.2039 1.7600 -192 1084 -6.6549 1.1992 1.7600 -192 1085 -6.6125 1.1924 1.7600 -192 1086 -6.5671 1.1832 1.7600 -192 1087 -6.5207 1.1714 1.7600 -192 1088 -6.4801 1.1571 1.7600 -192 1089 -6.4414 1.1424 1.7600 -192 1090 -6.4005 1.1295 1.7600 -192 1091 -6.3630 1.1197 1.7600 -192 1092 -6.3295 1.1150 1.7600 -192 1093 -6.2983 1.1105 1.7600 -192 1094 -6.2611 1.1090 1.7600 -192 1095 -6.2244 1.1064 1.7600 -192 1096 -6.1854 1.1081 1.7600 -192 1097 -6.1476 1.1137 1.7600 -192 1098 -6.1099 1.1208 1.7600 -192 1099 -6.0723 1.1284 1.7600 -192 1100 -6.0329 1.1313 1.7600 -192 1101 -6.0044 1.1311 1.7600 -192 1102 -5.9828 1.1313 1.7600 -192 1103 -5.9603 1.1311 1.7600 -192 1104 -5.9342 1.1255 1.7600 -192 1105 -5.9039 1.1179 1.7600 -192 1106 -5.8699 1.1060 1.7600 -192 1107 -5.8290 1.0891 1.7600 -192 1108 -5.7917 1.0698 1.7600 -192 1109 -5.7563 1.0469 1.7600 -192 1110 -5.7195 1.0261 1.7600 -192 1111 -5.6822 1.0097 1.7600 -192 1112 -5.6471 0.9971 1.7600 -192 1113 -5.6139 0.9883 1.7600 -192 1114 -5.5836 0.9831 1.7600 -192 1115 -5.5502 0.9798 1.7600 -192 1116 -5.5121 0.9761 1.7600 -192 1117 -5.4735 0.9748 1.7600 -192 1118 -5.4332 0.9752 1.7600 -192 1119 -5.3944 0.9786 1.7600 -192 1120 -5.3587 0.9831 1.7600 -192 1121 -5.3223 0.9871 1.7600 -192 1122 -5.2872 0.9874 1.7600 -192 1123 -5.2563 0.9860 1.7600 -192 1124 -5.2235 0.9846 1.7600 -192 1125 -5.1911 0.9820 1.7600 -192 1126 -5.1586 0.9745 1.7600 -192 1127 -5.1214 0.9655 1.7600 -192 1128 -5.0796 0.9533 1.7600 -192 1129 -5.0390 0.9385 1.7600 -192 1130 -4.9985 0.9217 1.7600 -192 1131 -4.9586 0.9021 1.7600 -192 1132 -4.9200 0.8839 1.7600 -192 1133 -4.8815 0.8714 1.7600 -192 1134 -4.8422 0.8622 1.7600 -192 1135 -4.8080 0.8560 1.7600 -192 1136 -4.7742 0.8486 1.7600 -192 1137 -4.7344 0.8441 1.7600 -192 1138 -4.6927 0.8412 1.7600 -192 1139 -4.6480 0.8435 1.7600 -192 1140 -4.6063 0.8497 1.7600 -192 1141 -4.5664 0.8592 1.7600 -192 1142 -4.5270 0.8712 1.7600 -192 1143 -4.4885 0.8819 1.7600 -192 1144 -4.4529 0.8928 1.7600 -192 1145 -4.4172 0.8990 1.7600 -192 1146 -4.3808 0.9039 1.7600 -192 1147 -4.3476 0.9087 1.7600 -192 1148 -4.3156 0.9146 1.7600 -192 1149 -4.2808 0.9159 1.7600 -192 1150 -4.2463 0.9088 1.7600 -192 1151 -4.2099 0.8950 1.7600 -192 1152 -4.1704 0.8758 1.7600 -192 1153 -4.1344 0.8552 1.7600 -192 1154 -4.0945 0.8298 1.7600 -192 1155 -4.0510 0.8054 1.7600 -192 1156 -4.0100 0.7900 1.7600 -192 1157 -3.9682 0.7767 1.7600 -192 1158 -3.9305 0.7707 1.7600 -192 1159 -3.8916 0.7657 1.7600 -192 1160 -3.8479 0.7636 1.7600 -192 1161 -3.8043 0.7620 1.7600 -192 1162 -3.7559 0.7697 1.7600 -192 1163 -3.7073 0.7826 1.7600 -192 1164 -3.6566 0.8019 1.7600 -192 1165 -3.6120 0.8219 1.7600 -192 1166 -3.5693 0.8388 1.7600 -192 1167 -3.5241 0.8529 1.7600 -192 1168 -3.4789 0.8608 1.7600 -192 1169 -3.4308 0.8656 1.7600 -192 1170 -3.3874 0.8673 1.7600 -192 1171 -3.3390 0.8669 1.7600 -192 1172 -3.2895 0.8611 1.7600 -192 1173 -3.2387 0.8523 1.7600 -192 1174 -3.1830 0.8404 1.7600 -192 1175 -3.1305 0.8262 1.7600 -192 1176 -3.0792 0.8151 1.7600 -192 1177 -3.0266 0.8078 1.7600 -192 1178 -2.9765 0.8065 1.7600 -192 1179 -2.9247 0.8072 1.7600 -192 1180 -2.8746 0.8092 1.7600 -192 1181 -2.8229 0.8127 1.7600 -192 1182 -2.7685 0.8208 1.7600 -192 1183 -2.7154 0.8345 1.7600 -192 1184 -2.6605 0.8476 1.7600 -192 1185 -2.6056 0.8640 1.7600 -192 1186 -2.5555 0.8773 1.7600 -192 1187 -2.5036 0.8857 1.7600 -192 1188 -2.4516 0.8900 1.7600 -192 1189 -2.3983 0.8924 1.7600 -192 1190 -2.3472 0.8915 1.7600 -192 1191 -2.2965 0.8911 1.7600 -192 1192 -2.2403 0.8847 1.7600 -192 1193 -2.1855 0.8781 1.7600 -192 1194 -2.1215 0.8690 1.7600 -192 1195 -2.0615 0.8591 1.7600 -192 1196 -2.0005 0.8513 1.7600 -192 1197 -1.9432 0.8477 1.7600 -192 1198 -1.8891 0.8486 1.7600 -192 1199 -1.8399 0.8497 1.7600 -192 1200 -1.7869 0.8515 1.7600 -192 1201 -1.7339 0.8527 1.7600 -192 1202 -1.6810 0.8547 1.7600 -192 1203 -1.6241 0.8614 1.7600 -192 1204 -1.5657 0.8668 1.7600 -192 1205 -1.5114 0.8771 1.7600 -192 1206 -1.4597 0.8837 1.7600 -192 1207 -1.4077 0.8857 1.7600 -192 1208 -1.3558 0.8856 1.7600 -192 1209 -1.3067 0.8839 1.7600 -192 1210 -1.2559 0.8802 1.7600 -192 1211 -1.2020 0.8761 1.7600 -192 1212 -1.1455 0.8698 1.7600 -192 1213 -1.0848 0.8580 1.7600 -192 1214 -1.0236 0.8436 1.7600 -192 1215 -0.9661 0.8331 1.7600 -192 1216 -0.9138 0.8263 1.7600 -192 1217 -0.8597 0.8269 1.7600 -192 1218 -0.8074 0.8328 1.7600 -192 1219 -0.7556 0.8383 1.7600 -192 1220 -0.6975 0.8448 1.7600 -192 1221 -0.6350 0.8535 1.7600 -192 1222 -0.5733 0.8658 1.7600 -192 1223 -0.5127 0.8823 1.7600 -192 1224 -0.4557 0.8968 1.7600 -192 1225 -0.4033 0.9078 1.7600 -192 1226 -0.3541 0.9159 1.7600 -192 1227 -0.3082 0.9213 1.7600 -192 1228 -0.2629 0.9262 1.7600 -192 1229 -0.2110 0.9273 1.7600 -192 1230 -0.1560 0.9249 1.7600 -192 1231 -0.0975 0.9181 1.7600 -192 1232 -0.0360 0.9106 1.7600 -192 1233 0.0263 0.8964 1.7600 -192 1234 0.0831 0.8851 1.7600 -192 1235 0.1340 0.8804 1.7600 -192 1236 0.1869 0.8810 1.7600 -192 1237 0.2418 0.8821 1.7600 -192 1238 0.2976 0.8844 1.7600 -192 1239 0.3569 0.8879 1.7600 -192 1240 0.4167 0.8905 1.7600 -192 1241 0.4808 0.8978 1.7600 -192 1242 0.5471 0.9054 1.7600 -192 1243 0.6113 0.9159 1.7600 -192 1244 0.6692 0.9241 1.7600 -192 1245 0.7247 0.9299 1.7600 -192 1246 0.7783 0.9333 1.7600 -192 1247 0.8323 0.9349 1.7600 -192 1248 0.8905 0.9334 1.7600 -192 1249 0.9523 0.9277 1.7600 -192 1250 1.0202 0.9195 1.7600 -192 1251 1.0868 0.9089 1.7600 -192 1252 1.1579 0.8966 1.7600 -192 1253 1.2213 0.8845 1.7600 -192 1254 1.2827 0.8742 1.7600 -192 1255 1.3391 0.8708 1.7600 -192 1256 1.3962 0.8734 1.7600 -192 1257 1.4538 0.8775 1.7600 -192 1258 1.5165 0.8822 1.7600 -192 1259 1.5778 0.8905 1.7600 -192 1260 1.6410 0.9001 1.7600 -192 1261 1.7030 0.9144 1.7600 -192 1262 1.7648 0.9264 1.7600 -192 1263 1.8215 0.9369 1.7600 -192 1264 1.8738 0.9418 1.7600 -192 1265 1.9262 0.9441 1.7600 -192 1266 1.9764 0.9452 1.7600 -192 1267 2.0308 0.9490 1.7600 -192 1268 2.0865 0.9520 1.7600 -192 1269 2.1451 0.9480 1.7600 -192 1270 2.2014 0.9334 1.7600 -192 1271 2.2594 0.9168 1.7600 -192 1272 2.3205 0.9043 1.7600 -192 1273 2.3799 0.8980 1.7600 -192 1274 2.4415 0.8987 1.7600 -192 1275 2.5004 0.9038 1.7600 -192 1276 2.5598 0.9117 1.7600 -192 1277 2.6176 0.9180 1.7600 -192 1278 2.6780 0.9257 1.7600 -192 1279 2.7383 0.9372 1.7600 -192 1280 2.8048 0.9487 1.7600 -192 1281 2.8721 0.9642 1.7600 -192 1282 2.9377 0.9762 1.7600 -192 1283 2.9985 0.9840 1.7600 -192 1284 3.0610 0.9874 1.7600 -192 1285 3.1262 0.9898 1.7600 -192 1286 3.1917 0.9936 1.7600 -192 1287 3.2575 0.9926 1.7600 -192 1288 3.3245 0.9893 1.7600 -192 1289 3.3969 0.9812 1.7600 -192 1290 3.4741 0.9714 1.7600 -192 1291 3.5435 0.9633 1.7600 -192 1292 3.6099 0.9629 1.7600 -192 1293 3.6764 0.9682 1.7600 -192 1294 3.7402 0.9759 1.7600 -192 1295 3.8045 0.9847 1.7600 -192 1296 3.8677 0.9930 1.7600 -192 1297 3.9340 1.0027 1.7600 -192 1298 4.0033 1.0152 1.7600 -192 1299 4.0760 1.0281 1.7600 -192 1300 4.1531 1.0407 1.7600 -192 1301 4.2245 1.0462 1.7600 -192 1302 4.2972 1.0459 1.7600 -192 1303 4.3698 1.0425 1.7600 -192 1304 4.4370 1.0388 1.7600 -192 1305 4.5022 1.0317 1.7600 -192 1306 4.5698 1.0239 1.7600 -192 1307 4.6418 1.0144 1.7600 -192 1308 4.7274 1.0053 1.7600 -192 1309 4.8109 0.9997 1.7600 -192 1310 4.8870 0.9991 1.7600 -192 1311 4.9598 1.0058 1.7600 -192 1312 5.0300 1.0132 1.7600 -192 1313 5.0956 1.0226 1.7600 -192 1314 5.1604 1.0318 1.7600 -192 1315 5.2248 1.0417 1.7600 -192 1316 5.2904 1.0572 1.7600 -192 1317 5.3652 1.0759 1.7600 -192 1318 5.4385 1.0927 1.7600 -192 1319 5.5077 1.1018 1.7600 -192 1320 5.5796 1.1045 1.7600 -192 1321 5.6489 1.1040 1.7600 -192 1322 5.7135 1.1030 1.7600 -192 1323 5.7751 1.0995 1.7600 -192 1324 5.8352 1.0940 1.7600 -192 1325 5.8984 1.0812 1.7600 -193 1046 -7.7951 0.8760 1.7600 -193 1047 -7.7520 0.8627 1.7600 -193 1048 -7.7085 0.8481 1.7600 -193 1049 -7.6684 0.8311 1.7600 -193 1050 -7.6344 0.8113 1.7600 -193 1051 -7.6007 0.7922 1.7600 -193 1052 -7.5637 0.7773 1.7600 -193 1053 -7.5247 0.7655 1.7600 -193 1054 -7.4884 0.7560 1.7600 -193 1055 -7.4530 0.7498 1.7600 -193 1056 -7.4169 0.7455 1.7600 -193 1057 -7.3805 0.7427 1.7600 -193 1058 -7.3438 0.7428 1.7600 -193 1059 -7.3053 0.7447 1.7600 -193 1060 -7.2645 0.7468 1.7600 -193 1061 -7.2241 0.7501 1.7600 -193 1062 -7.1871 0.7565 1.7600 -193 1063 -7.1530 0.7659 1.7600 -193 1064 -7.1177 0.7737 1.7600 -193 1065 -7.0808 0.7760 1.7600 -193 1066 -7.0441 0.7740 1.7600 -193 1067 -7.0084 0.7679 1.7600 -193 1068 -6.9723 0.7583 1.7600 -193 1069 -6.9350 0.7482 1.7600 -193 1070 -6.8965 0.7387 1.7600 -193 1071 -6.8561 0.7267 1.7600 -193 1072 -6.8135 0.7130 1.7600 -193 1073 -6.7706 0.6941 1.7600 -193 1074 -6.7325 0.6717 1.7600 -193 1075 -6.6962 0.6476 1.7600 -193 1076 -6.6603 0.6239 1.7600 -193 1077 -6.6227 0.6044 1.7600 -193 1078 -6.5871 0.5879 1.7600 -193 1079 -6.5532 0.5769 1.7600 -193 1080 -6.5198 0.5705 1.7600 -193 1081 -6.4881 0.5672 1.7600 -193 1082 -6.4579 0.5661 1.7600 -193 1083 -6.4227 0.5667 1.7600 -193 1084 -6.3873 0.5700 1.7600 -193 1085 -6.3521 0.5781 1.7600 -193 1086 -6.3154 0.5901 1.7600 -193 1087 -6.2812 0.6065 1.7600 -193 1088 -6.2478 0.6277 1.7600 -193 1089 -6.2112 0.6462 1.7600 -193 1090 -6.1717 0.6631 1.7600 -193 1091 -6.1305 0.6738 1.7600 -193 1092 -6.0912 0.6779 1.7600 -193 1093 -6.0505 0.6783 1.7600 -193 1094 -6.0112 0.6737 1.7600 -193 1095 -5.9705 0.6666 1.7600 -193 1096 -5.9295 0.6561 1.7600 -193 1097 -5.8896 0.6417 1.7600 -193 1098 -5.8460 0.6202 1.7600 -193 1099 -5.8068 0.5945 1.7600 -193 1100 -5.7693 0.5684 1.7600 -193 1101 -5.7279 0.5465 1.7600 -193 1102 -5.6858 0.5333 1.7600 -193 1103 -5.6445 0.5238 1.7600 -193 1104 -5.6062 0.5236 1.7600 -193 1105 -5.5673 0.5238 1.7600 -193 1106 -5.5258 0.5297 1.7600 -193 1107 -5.4843 0.5389 1.7600 -193 1108 -5.4427 0.5536 1.7600 -193 1109 -5.4022 0.5738 1.7600 -193 1110 -5.3607 0.5955 1.7600 -193 1111 -5.3216 0.6189 1.7600 -193 1112 -5.2804 0.6386 1.7600 -193 1113 -5.2389 0.6555 1.7600 -193 1114 -5.1991 0.6635 1.7600 -193 1115 -5.1573 0.6691 1.7600 -193 1116 -5.1174 0.6735 1.7600 -193 1117 -5.0771 0.6755 1.7600 -193 1118 -5.0372 0.6758 1.7600 -193 1119 -4.9954 0.6733 1.7600 -193 1120 -4.9538 0.6675 1.7600 -193 1121 -4.9133 0.6558 1.7600 -193 1122 -4.8737 0.6411 1.7600 -193 1123 -4.8330 0.6253 1.7600 -193 1124 -4.7911 0.6115 1.7600 -193 1125 -4.7508 0.6044 1.7600 -193 1126 -4.7098 0.5991 1.7600 -193 1127 -4.6685 0.5980 1.7600 -193 1128 -4.6300 0.5979 1.7600 -193 1129 -4.5930 0.5989 1.7600 -193 1130 -4.5573 0.5993 1.7600 -193 1131 -4.5189 0.6027 1.7600 -193 1132 -4.4832 0.6050 1.7600 -193 1133 -4.4456 0.6119 1.7600 -193 1134 -4.4083 0.6192 1.7600 -193 1135 -4.3668 0.6291 1.7600 -193 1136 -4.3285 0.6404 1.7600 -193 1137 -4.2890 0.6529 1.7600 -193 1138 -4.2512 0.6638 1.7600 -193 1139 -4.2118 0.6716 1.7600 -193 1140 -4.1736 0.6761 1.7600 -193 1141 -4.1334 0.6754 1.7600 -193 1142 -4.0933 0.6711 1.7600 -193 1143 -4.0520 0.6664 1.7600 -193 1144 -4.0142 0.6597 1.7600 -193 1145 -3.9731 0.6483 1.7600 -193 1146 -3.9315 0.6319 1.7600 -193 1147 -3.8920 0.6114 1.7600 -193 1148 -3.8480 0.5889 1.7600 -193 1149 -3.8065 0.5686 1.7600 -193 1150 -3.7671 0.5513 1.7600 -193 1151 -3.7264 0.5350 1.7600 -193 1152 -3.6884 0.5257 1.7600 -193 1153 -3.6478 0.5183 1.7600 -193 1154 -3.6076 0.5156 1.7600 -193 1155 -3.5691 0.5156 1.7600 -193 1156 -3.5273 0.5132 1.7600 -193 1157 -3.4849 0.5136 1.7600 -193 1158 -3.4413 0.5155 1.7600 -193 1159 -3.3969 0.5166 1.7600 -193 1160 -3.3520 0.5165 1.7600 -193 1161 -3.3019 0.5136 1.7600 -193 1162 -3.2525 0.5110 1.7600 -193 1163 -3.2037 0.5081 1.7600 -193 1164 -3.1533 0.5051 1.7600 -193 1165 -3.1044 0.5015 1.7600 -193 1166 -3.0576 0.4962 1.7600 -193 1167 -3.0076 0.4913 1.7600 -193 1168 -2.9617 0.4882 1.7600 -193 1169 -2.9145 0.4822 1.7600 -193 1170 -2.8662 0.4727 1.7600 -193 1171 -2.8215 0.4607 1.7600 -193 1172 -2.7748 0.4422 1.7600 -193 1173 -2.7320 0.4224 1.7600 -193 1174 -2.6924 0.4065 1.7600 -193 1175 -2.6505 0.3949 1.7600 -193 1176 -2.6112 0.3854 1.7600 -193 1177 -2.5745 0.3738 1.7600 -193 1178 -2.5380 0.3691 1.7600 -193 1179 -2.5001 0.3639 1.7600 -193 1180 -2.4624 0.3682 1.7600 -193 1181 -2.4228 0.3737 1.7600 -193 1182 -2.3790 0.3818 1.7600 -193 1183 -2.3306 0.3876 1.7600 -193 1184 -2.2788 0.3913 1.7600 -193 1185 -2.2301 0.3947 1.7600 -193 1186 -2.1837 0.3927 1.7600 -193 1187 -2.1353 0.3895 1.7600 -193 1188 -2.0904 0.3837 1.7600 -193 1189 -2.0457 0.3787 1.7600 -193 1190 -2.0008 0.3742 1.7600 -193 1191 -1.9560 0.3689 1.7600 -193 1192 -1.9089 0.3605 1.7600 -193 1193 -1.8594 0.3479 1.7600 -193 1194 -1.8083 0.3302 1.7600 -193 1195 -1.7519 0.3112 1.7600 -193 1196 -1.6987 0.2971 1.7600 -193 1197 -1.6473 0.2912 1.7600 -193 1198 -1.5957 0.2905 1.7600 -193 1199 -1.5444 0.2918 1.7600 -193 1200 -1.4955 0.2969 1.7600 -193 1201 -1.4463 0.3036 1.7600 -193 1202 -1.3968 0.3153 1.7600 -193 1203 -1.3447 0.3311 1.7600 -193 1204 -1.2902 0.3511 1.7600 -193 1205 -1.2341 0.3722 1.7600 -193 1206 -1.1808 0.3894 1.7600 -193 1207 -1.1286 0.3989 1.7600 -193 1208 -1.0756 0.4046 1.7600 -193 1209 -1.0215 0.4073 1.7600 -193 1210 -0.9700 0.4086 1.7600 -193 1211 -0.9181 0.4113 1.7600 -193 1212 -0.8640 0.4118 1.7600 -193 1213 -0.8095 0.4075 1.7600 -193 1214 -0.7522 0.4001 1.7600 -193 1215 -0.6941 0.3861 1.7600 -193 1216 -0.6369 0.3739 1.7600 -193 1217 -0.5833 0.3686 1.7600 -193 1218 -0.5306 0.3688 1.7600 -193 1219 -0.4773 0.3695 1.7600 -193 1220 -0.4283 0.3706 1.7600 -193 1221 -0.3781 0.3730 1.7600 -193 1222 -0.3252 0.3793 1.7600 -193 1223 -0.2710 0.3891 1.7600 -193 1224 -0.2150 0.4026 1.7600 -193 1225 -0.1608 0.4206 1.7600 -193 1226 -0.1045 0.4436 1.7600 -193 1227 -0.0521 0.4539 1.7600 -193 1228 0.0027 0.4559 1.7600 -193 1229 0.0512 0.4529 1.7600 -193 1230 0.1013 0.4549 1.7600 -193 1231 0.1557 0.4523 1.7600 -193 1232 0.2073 0.4456 1.7600 -193 1233 0.2552 0.4306 1.7600 -193 1234 0.3029 0.4108 1.7600 -193 1235 0.3479 0.3881 1.7600 -193 1236 0.3942 0.3574 1.7600 -193 1237 0.4488 0.3278 1.7600 -193 1238 0.5086 0.3097 1.7600 -193 1239 0.5729 0.3005 1.7600 -193 1240 0.6373 0.2983 1.7600 -193 1241 0.6955 0.2993 1.7600 -193 1242 0.7515 0.3054 1.7600 -193 1243 0.8046 0.3151 1.7600 -193 1244 0.8574 0.3325 1.7600 -193 1245 0.9100 0.3581 1.7600 -193 1246 0.9587 0.3826 1.7600 -193 1247 1.0033 0.4058 1.7600 -193 1248 1.0495 0.4225 1.7600 -193 1249 1.0968 0.4360 1.7600 -193 1250 1.1448 0.4483 1.7600 -193 1251 1.1945 0.4590 1.7600 -193 1252 1.2464 0.4700 1.7600 -193 1253 1.2955 0.4777 1.7600 -193 1254 1.3434 0.4830 1.7600 -193 1255 1.3978 0.4826 1.7600 -193 1256 1.4556 0.4740 1.7600 -193 1257 1.5062 0.4673 1.7600 -193 1258 1.5543 0.4680 1.7600 -193 1259 1.6038 0.4708 1.7600 -193 1260 1.6513 0.4751 1.7600 -193 1261 1.6992 0.4817 1.7600 -193 1262 1.7482 0.4911 1.7600 -193 1263 1.8020 0.5003 1.7600 -193 1264 1.8539 0.5049 1.7600 -193 1265 1.9082 0.5112 1.7600 -193 1266 1.9582 0.5141 1.7600 -193 1267 2.0092 0.5154 1.7600 -193 1268 2.0605 0.5129 1.7600 -193 1269 2.1133 0.5098 1.7600 -193 1270 2.1696 0.5065 1.7600 -193 1271 2.2282 0.5038 1.7600 -193 1272 2.2826 0.4988 1.7600 -193 1273 2.3370 0.4887 1.7600 -193 1274 2.3921 0.4712 1.7600 -193 1275 2.4507 0.4484 1.7600 -193 1276 2.5136 0.4305 1.7600 -193 1277 2.5743 0.4269 1.7600 -193 1278 2.6292 0.4274 1.7600 -193 1279 2.6784 0.4349 1.7600 -193 1280 2.7244 0.4381 1.7600 -193 1281 2.7724 0.4388 1.7600 -193 1282 2.8193 0.4429 1.7600 -193 1283 2.8665 0.4428 1.7600 -193 1284 2.9113 0.4422 1.7600 -193 1285 2.9595 0.4388 1.7600 -193 1286 3.0061 0.4354 1.7600 -193 1287 3.0507 0.4272 1.7600 -193 1288 3.0936 0.4254 1.7600 -193 1289 3.1365 0.4201 1.7600 -193 1290 3.1823 0.4163 1.7600 -193 1291 3.2279 0.4072 1.7600 -193 1292 3.2761 0.3972 1.7600 -193 1293 3.3248 0.3859 1.7600 -193 1294 3.3774 0.3709 1.7600 -193 1295 3.4307 0.3583 1.7600 -193 1296 3.4848 0.3522 1.7600 -193 1297 3.5443 0.3499 1.7600 -193 1298 3.6079 0.3500 1.7600 -193 1299 3.6762 0.3515 1.7600 -193 1300 3.7485 0.3538 1.7600 -193 1301 3.8206 0.3647 1.7600 -193 1302 3.8929 0.3776 1.7600 -193 1303 3.9639 0.3922 1.7600 -193 1304 4.0355 0.4041 1.7600 -193 1305 4.1005 0.4086 1.7600 -193 1306 4.1655 0.4082 1.7600 -193 1307 4.2276 0.4062 1.7600 -193 1308 4.2877 0.4047 1.7600 -193 1309 4.3477 0.4043 1.7600 -193 1310 4.4081 0.4005 1.7600 -193 1311 4.4696 0.3951 1.7600 -193 1312 4.5357 0.3886 1.7600 -193 1313 4.5965 0.3873 1.7600 -193 1314 4.6582 0.3921 1.7600 -193 1315 4.7188 0.4020 1.7600 -193 1316 4.7764 0.4118 1.7600 -193 1317 4.8336 0.4202 1.7600 -193 1318 4.8918 0.4283 1.7600 -193 1319 4.9519 0.4383 1.7600 -193 1320 5.0150 0.4504 1.7600 -193 1321 5.0825 0.4634 1.7600 -193 1322 5.1478 0.4726 1.7600 -193 1323 5.2124 0.4755 1.7600 -193 1324 5.2738 0.4740 1.7600 -193 1325 5.3319 0.4704 1.7600 -193 1326 5.3884 0.4659 1.7600 -193 1327 5.4454 0.4589 1.7600 -193 1328 5.5031 0.4483 1.7600 -193 1329 5.5725 0.4306 1.7600 -193 1330 5.6344 0.4127 1.7600 -193 1331 5.6903 0.3948 1.7600 -193 1332 5.7337 0.3853 1.7600 -193 1333 5.7850 0.3820 1.7600 -193 1334 5.8395 0.3839 1.7600 -193 1335 5.8919 0.3870 1.7600 -193 1336 5.9422 0.3907 1.7600 -194 1060 -7.7903 1.8926 1.7600 -194 1061 -7.7302 1.8714 1.7600 -194 1062 -7.6784 1.8483 1.7600 -194 1063 -7.6304 1.8270 1.7600 -194 1064 -7.5824 1.8127 1.7600 -194 1065 -7.5357 1.8029 1.7600 -194 1066 -7.4892 1.7961 1.7600 -194 1067 -7.4407 1.7904 1.7600 -194 1068 -7.3891 1.7847 1.7600 -194 1069 -7.3354 1.7816 1.7600 -194 1070 -7.2824 1.7843 1.7600 -194 1071 -7.2302 1.7915 1.7600 -194 1072 -7.1826 1.8012 1.7600 -194 1073 -7.1371 1.8109 1.7600 -194 1074 -7.0904 1.8160 1.7600 -194 1075 -7.0434 1.8138 1.7600 -194 1076 -6.9962 1.8076 1.7600 -194 1077 -6.9478 1.8001 1.7600 -194 1078 -6.8977 1.7923 1.7600 -194 1079 -6.8471 1.7815 1.7600 -194 1080 -6.7979 1.7651 1.7600 -194 1081 -6.7538 1.7402 1.7600 -194 1082 -6.7165 1.7061 1.7600 -194 1083 -6.6838 1.6758 1.7600 -194 1084 -6.6459 1.6528 1.7600 -194 1085 -6.6053 1.6398 1.7600 -194 1086 -6.5648 1.6322 1.7600 -194 1087 -6.5216 1.6264 1.7600 -194 1088 -6.4781 1.6224 1.7600 -194 1089 -6.4324 1.6219 1.7600 -194 1090 -6.3870 1.6276 1.7600 -194 1091 -6.3392 1.6395 1.7600 -194 1092 -6.2951 1.6531 1.7600 -194 1093 -6.2560 1.6692 1.7600 -194 1094 -6.2198 1.6823 1.7600 -194 1095 -6.1785 1.6905 1.7600 -194 1096 -6.1348 1.6911 1.7600 -194 1097 -6.0895 1.6812 1.7600 -194 1098 -6.0444 1.6657 1.7600 -194 1099 -6.0074 1.6495 1.7600 -194 1100 -5.9689 1.6282 1.7600 -194 1101 -5.9431 1.6028 1.7600 -194 1102 -5.9204 1.5720 1.7600 -194 1103 -5.8964 1.5377 1.7600 -194 1104 -5.8734 1.5099 1.7600 -194 1105 -5.8461 1.4865 1.7600 -194 1106 -5.8158 1.4693 1.7600 -194 1107 -5.7882 1.4627 1.7600 -194 1108 -5.7533 1.4591 1.7600 -194 1109 -5.7099 1.4551 1.7600 -194 1110 -5.6682 1.4592 1.7600 -194 1111 -5.6260 1.4675 1.7600 -194 1112 -5.5811 1.4834 1.7600 -194 1113 -5.5359 1.5062 1.7600 -194 1114 -5.4935 1.5295 1.7600 -194 1115 -5.4527 1.5491 1.7600 -194 1116 -5.4111 1.5645 1.7600 -194 1117 -5.3680 1.5756 1.7600 -194 1118 -5.3259 1.5797 1.7600 -194 1119 -5.2891 1.5843 1.7600 -194 1120 -5.2563 1.5837 1.7600 -194 1121 -5.2236 1.5760 1.7600 -194 1122 -5.1911 1.5635 1.7600 -194 1123 -5.1614 1.5437 1.7600 -194 1124 -5.1356 1.5212 1.7600 -194 1125 -5.1127 1.4956 1.7600 -194 1126 -5.0845 1.4752 1.7600 -194 1127 -5.0542 1.4585 1.7600 -194 1128 -5.0213 1.4457 1.7600 -194 1129 -4.9868 1.4293 1.7600 -194 1130 -4.9522 1.4160 1.7600 -194 1131 -4.9184 1.4039 1.7600 -194 1132 -4.8791 1.3928 1.7600 -194 1133 -4.8377 1.3863 1.7600 -194 1134 -4.7958 1.3863 1.7600 -194 1135 -4.7505 1.3929 1.7600 -194 1136 -4.7084 1.4032 1.7600 -194 1137 -4.6700 1.4107 1.7600 -194 1138 -4.6313 1.4114 1.7600 -194 1139 -4.5890 1.4080 1.7600 -194 1140 -4.5478 1.3997 1.7600 -194 1141 -4.5091 1.3899 1.7600 -194 1142 -4.4700 1.3764 1.7600 -194 1143 -4.4319 1.3623 1.7600 -194 1144 -4.3977 1.3393 1.7600 -194 1145 -4.3685 1.3112 1.7600 -194 1146 -4.3452 1.2788 1.7600 -194 1147 -4.3204 1.2467 1.7600 -194 1148 -4.2961 1.2167 1.7600 -194 1149 -4.2727 1.1941 1.7600 -194 1150 -4.2433 1.1832 1.7600 -194 1151 -4.2101 1.1842 1.7600 -194 1152 -4.1721 1.1914 1.7600 -194 1153 -4.1354 1.2013 1.7600 -194 1154 -4.0982 1.2139 1.7600 -194 1155 -4.0616 1.2329 1.7600 -194 1156 -4.0264 1.2564 1.7600 -194 1157 -3.9879 1.2830 1.7600 -194 1158 -3.9511 1.3043 1.7600 -194 1159 -3.9142 1.3207 1.7600 -194 1160 -3.8765 1.3339 1.7600 -194 1161 -3.8372 1.3425 1.7600 -194 1162 -3.7954 1.3476 1.7600 -194 1163 -3.7522 1.3480 1.7600 -194 1164 -3.7093 1.3440 1.7600 -194 1165 -3.6638 1.3332 1.7600 -194 1166 -3.6200 1.3176 1.7600 -194 1167 -3.5774 1.2925 1.7600 -194 1168 -3.5377 1.2646 1.7600 -194 1169 -3.4993 1.2440 1.7600 -194 1170 -3.4603 1.2301 1.7600 -194 1171 -3.4223 1.2213 1.7600 -194 1172 -3.3842 1.2129 1.7600 -194 1173 -3.3420 1.2096 1.7600 -194 1174 -3.2996 1.2089 1.7600 -194 1175 -3.2572 1.2147 1.7600 -194 1176 -3.2133 1.2289 1.7600 -194 1177 -3.1673 1.2461 1.7600 -194 1178 -3.1193 1.2693 1.7600 -194 1179 -3.0663 1.2923 1.7600 -194 1180 -3.0155 1.3112 1.7600 -194 1181 -2.9660 1.3220 1.7600 -194 1182 -2.9116 1.3284 1.7600 -194 1183 -2.8552 1.3311 1.7600 -194 1184 -2.8020 1.3334 1.7600 -194 1185 -2.7498 1.3321 1.7600 -194 1186 -2.7047 1.3232 1.7600 -194 1187 -2.6608 1.3050 1.7600 -194 1188 -2.6145 1.2864 1.7600 -194 1189 -2.5675 1.2719 1.7600 -194 1190 -2.5242 1.2584 1.7600 -194 1191 -2.4753 1.2533 1.7600 -194 1192 -2.4222 1.2516 1.7600 -194 1193 -2.3677 1.2500 1.7600 -194 1194 -2.3119 1.2520 1.7600 -194 1195 -2.2600 1.2637 1.7600 -194 1196 -2.2080 1.2813 1.7600 -194 1197 -2.1554 1.3057 1.7600 -194 1198 -2.0948 1.3291 1.7600 -194 1199 -2.0402 1.3475 1.7600 -194 1200 -1.9884 1.3598 1.7600 -194 1201 -1.9287 1.3690 1.7600 -194 1202 -1.8688 1.3738 1.7600 -194 1203 -1.8082 1.3777 1.7600 -194 1204 -1.7542 1.3762 1.7600 -194 1205 -1.6995 1.3672 1.7600 -194 1206 -1.6421 1.3518 1.7600 -194 1207 -1.5859 1.3397 1.7600 -194 1208 -1.5360 1.3386 1.7600 -194 1209 -1.4803 1.3460 1.7600 -194 1210 -1.4215 1.3560 1.7600 -194 1211 -1.3650 1.3649 1.7600 -194 1212 -1.3082 1.3759 1.7600 -194 1213 -1.2579 1.3931 1.7600 -194 1214 -1.2078 1.4164 1.7600 -194 1215 -1.1507 1.4345 1.7600 -194 1216 -1.0926 1.4473 1.7600 -194 1217 -1.0366 1.4482 1.7600 -194 1218 -0.9752 1.4480 1.7600 -194 1219 -0.9142 1.4471 1.7600 -194 1220 -0.8556 1.4423 1.7600 -194 1221 -0.7997 1.4319 1.7600 -194 1222 -0.7472 1.4204 1.7600 -194 1223 -0.6938 1.4012 1.7600 -194 1224 -0.6412 1.3904 1.7600 -194 1225 -0.5849 1.3905 1.7600 -194 1226 -0.5230 1.3965 1.7600 -194 1227 -0.4597 1.4006 1.7600 -194 1228 -0.3985 1.4130 1.7600 -194 1229 -0.3429 1.4300 1.7600 -194 1230 -0.2802 1.4547 1.7600 -194 1231 -0.2186 1.4739 1.7600 -194 1232 -0.1610 1.4901 1.7600 -194 1233 -0.0975 1.4933 1.7600 -194 1234 -0.0334 1.4957 1.7600 -194 1235 0.0317 1.5003 1.7600 -194 1236 0.0961 1.4979 1.7600 -194 1237 0.1593 1.4892 1.7600 -194 1238 0.2197 1.4737 1.7600 -194 1239 0.2801 1.4544 1.7600 -194 1240 0.3392 1.4323 1.7600 -194 1241 0.3938 1.4209 1.7600 -194 1242 0.4459 1.4171 1.7600 -194 1243 0.5009 1.4160 1.7600 -194 1244 0.5575 1.4181 1.7600 -194 1245 0.6138 1.4258 1.7600 -194 1246 0.6721 1.4420 1.7600 -194 1247 0.7313 1.4572 1.7600 -194 1248 0.7950 1.4722 1.7600 -194 1249 0.8548 1.4825 1.7600 -194 1250 0.9134 1.4886 1.7600 -194 1251 0.9711 1.4891 1.7600 -194 1252 1.0319 1.4889 1.7600 -194 1253 1.0868 1.4858 1.7600 -194 1254 1.1438 1.4771 1.7600 -194 1255 1.1952 1.4625 1.7600 -194 1256 1.2459 1.4426 1.7600 -194 1257 1.2965 1.4164 1.7600 -194 1258 1.3431 1.4043 1.7600 -194 1259 1.3927 1.4041 1.7600 -194 1260 1.4424 1.4034 1.7600 -194 1261 1.5024 1.4072 1.7600 -194 1262 1.5614 1.4113 1.7600 -194 1263 1.6245 1.4212 1.7600 -194 1264 1.6870 1.4352 1.7600 -194 1265 1.7480 1.4563 1.7600 -194 1266 1.8112 1.4744 1.7600 -194 1267 1.8704 1.4863 1.7600 -194 1268 1.9327 1.4855 1.7600 -194 1269 1.9997 1.4807 1.7600 -194 1270 2.0634 1.4762 1.7600 -194 1271 2.1235 1.4687 1.7600 -194 1272 2.1852 1.4578 1.7600 -194 1273 2.2446 1.4432 1.7600 -194 1274 2.3079 1.4199 1.7600 -194 1275 2.3688 1.4033 1.7600 -194 1276 2.4293 1.4009 1.7600 -194 1277 2.4899 1.4049 1.7600 -194 1278 2.5564 1.4101 1.7600 -194 1279 2.6215 1.4179 1.7600 -194 1280 2.6874 1.4321 1.7600 -194 1281 2.7470 1.4583 1.7600 -194 1282 2.8108 1.4860 1.7600 -194 1283 2.8801 1.5111 1.7600 -194 1284 2.9448 1.5294 1.7600 -194 1285 3.0038 1.5387 1.7600 -194 1286 3.0631 1.5404 1.7600 -194 1287 3.1243 1.5383 1.7600 -194 1288 3.1864 1.5284 1.7600 -194 1289 3.2456 1.5137 1.7600 -194 1290 3.3053 1.4944 1.7600 -194 1291 3.3665 1.4756 1.7600 -194 1292 3.4345 1.4526 1.7600 -194 1293 3.5019 1.4330 1.7600 -194 1294 3.5674 1.4253 1.7600 -194 1295 3.6363 1.4266 1.7600 -194 1296 3.7044 1.4297 1.7600 -194 1297 3.7725 1.4333 1.7600 -194 1298 3.8377 1.4457 1.7600 -194 1299 3.8969 1.4611 1.7600 -194 1300 3.9607 1.4827 1.7600 -194 1301 4.0336 1.5051 1.7600 -194 1302 4.1035 1.5226 1.7600 -194 1303 4.1706 1.5287 1.7600 -194 1304 4.2343 1.5272 1.7600 -194 1305 4.3002 1.5235 1.7600 -194 1306 4.3664 1.5203 1.7600 -194 1307 4.4314 1.5173 1.7600 -194 1308 4.5048 1.5113 1.7600 -194 1309 4.5860 1.5030 1.7600 -194 1310 4.6714 1.4970 1.7600 -194 1311 4.7461 1.4999 1.7600 -194 1312 4.8201 1.5144 1.7600 -194 1313 4.8975 1.5357 1.7600 -194 1314 4.9705 1.5543 1.7600 -194 1315 5.0404 1.5758 1.7600 -194 1316 5.1088 1.5977 1.7600 -194 1317 5.1827 1.6267 1.7600 -194 1318 5.2660 1.6596 1.7600 -194 1319 5.3482 1.6875 1.7600 -194 1320 5.4273 1.7093 1.7600 -194 1321 5.5135 1.7212 1.7600 -194 1322 5.5928 1.7275 1.7600 -194 1323 5.6676 1.7321 1.7600 -194 1324 5.7365 1.7352 1.7600 -194 1325 5.8024 1.7357 1.7600 -194 1326 5.8717 1.7324 1.7600 -194 1327 5.9495 1.7295 1.7600 -195 1082 -7.8166 0.9832 1.7600 -195 1083 -7.7768 0.9757 1.7600 -195 1084 -7.7360 0.9666 1.7600 -195 1085 -7.6938 0.9552 1.7600 -195 1086 -7.6512 0.9409 1.7600 -195 1087 -7.6086 0.9241 1.7600 -195 1088 -7.5679 0.9056 1.7600 -195 1089 -7.5314 0.8855 1.7600 -195 1090 -7.4997 0.8636 1.7600 -195 1091 -7.4682 0.8426 1.7600 -195 1092 -7.4329 0.8250 1.7600 -195 1093 -7.3945 0.8086 1.7600 -195 1094 -7.3563 0.7924 1.7600 -195 1095 -7.3177 0.7802 1.7600 -195 1096 -7.2800 0.7707 1.7600 -195 1097 -7.2386 0.7626 1.7600 -195 1098 -7.1972 0.7537 1.7600 -195 1099 -7.1539 0.7466 1.7600 -195 1100 -7.1080 0.7444 1.7600 -195 1101 -7.0639 0.7438 1.7600 -195 1102 -7.0200 0.7479 1.7600 -195 1103 -6.9784 0.7537 1.7600 -195 1104 -6.9411 0.7565 1.7600 -195 1105 -6.9028 0.7602 1.7600 -195 1106 -6.8611 0.7620 1.7600 -195 1107 -6.8179 0.7606 1.7600 -195 1108 -6.7746 0.7548 1.7600 -195 1109 -6.7338 0.7500 1.7600 -195 1110 -6.6927 0.7480 1.7600 -195 1111 -6.6510 0.7453 1.7600 -195 1112 -6.6084 0.7433 1.7600 -195 1113 -6.5663 0.7414 1.7600 -195 1114 -6.5204 0.7395 1.7600 -195 1115 -6.4748 0.7283 1.7600 -195 1116 -6.4315 0.7164 1.7600 -195 1117 -6.3932 0.7013 1.7600 -195 1118 -6.3572 0.6923 1.7600 -195 1119 -6.3204 0.6893 1.7600 -195 1120 -6.2812 0.6930 1.7600 -195 1121 -6.2407 0.6959 1.7600 -195 1122 -6.1952 0.6972 1.7600 -195 1123 -6.1520 0.6984 1.7600 -195 1124 -6.1087 0.6979 1.7600 -195 1125 -6.0671 0.6979 1.7600 -195 1126 -6.0253 0.6987 1.7600 -195 1127 -5.9885 0.7023 1.7600 -195 1128 -5.9528 0.7051 1.7600 -195 1129 -5.9197 0.7062 1.7600 -195 1130 -5.8834 0.7088 1.7600 -195 1131 -5.8430 0.7078 1.7600 -195 1132 -5.8015 0.6955 1.7600 -195 1133 -5.7570 0.6814 1.7600 -195 1134 -5.7093 0.6664 1.7600 -195 1135 -5.6683 0.6497 1.7600 -195 1136 -5.6280 0.6324 1.7600 -195 1137 -5.5861 0.6099 1.7600 -195 1138 -5.5459 0.5851 1.7600 -195 1139 -5.5076 0.5573 1.7600 -195 1140 -5.4705 0.5279 1.7600 -195 1141 -5.4354 0.5058 1.7600 -195 1142 -5.3990 0.4885 1.7600 -195 1143 -5.3580 0.4725 1.7600 -195 1144 -5.3118 0.4634 1.7600 -195 1145 -5.2627 0.4560 1.7600 -195 1146 -5.2146 0.4528 1.7600 -195 1147 -5.1664 0.4532 1.7600 -195 1148 -5.1198 0.4583 1.7600 -195 1149 -5.0762 0.4696 1.7600 -195 1150 -5.0350 0.4840 1.7600 -195 1151 -4.9977 0.4946 1.7600 -195 1152 -4.9607 0.5011 1.7600 -195 1153 -4.9229 0.5010 1.7600 -195 1154 -4.8817 0.4962 1.7600 -195 1155 -4.8408 0.4866 1.7600 -195 1156 -4.8025 0.4744 1.7600 -195 1157 -4.7626 0.4634 1.7600 -195 1158 -4.7265 0.4485 1.7600 -195 1159 -4.6875 0.4287 1.7600 -195 1160 -4.6501 0.4036 1.7600 -195 1161 -4.6128 0.3769 1.7600 -195 1162 -4.5788 0.3497 1.7600 -195 1163 -4.5467 0.3277 1.7600 -195 1164 -4.5130 0.3122 1.7600 -195 1165 -4.4752 0.3012 1.7600 -195 1166 -4.4359 0.2936 1.7600 -195 1167 -4.3909 0.2909 1.7600 -195 1168 -4.3484 0.2886 1.7600 -195 1169 -4.3069 0.2920 1.7600 -195 1170 -4.2637 0.2952 1.7600 -195 1171 -4.2206 0.3051 1.7600 -195 1172 -4.1759 0.3161 1.7600 -195 1173 -4.1309 0.3306 1.7600 -195 1174 -4.0859 0.3416 1.7600 -195 1175 -4.0415 0.3499 1.7600 -195 1176 -3.9970 0.3534 1.7600 -195 1177 -3.9511 0.3545 1.7600 -195 1178 -3.9057 0.3536 1.7600 -195 1179 -3.8590 0.3499 1.7600 -195 1180 -3.8081 0.3447 1.7600 -195 1181 -3.7598 0.3359 1.7600 -195 1182 -3.7104 0.3251 1.7600 -195 1183 -3.6637 0.3110 1.7600 -195 1184 -3.6119 0.2933 1.7600 -195 1185 -3.5576 0.2809 1.7600 -195 1186 -3.5055 0.2696 1.7600 -195 1187 -3.4528 0.2655 1.7600 -195 1188 -3.4060 0.2604 1.7600 -195 1189 -3.3572 0.2547 1.7600 -195 1190 -3.3082 0.2575 1.7600 -195 1191 -3.2584 0.2643 1.7600 -195 1192 -3.2089 0.2745 1.7600 -195 1193 -3.1607 0.2878 1.7600 -195 1194 -3.1135 0.3043 1.7600 -195 1195 -3.0676 0.3234 1.7600 -195 1196 -3.0194 0.3370 1.7600 -195 1197 -2.9677 0.3454 1.7600 -195 1198 -2.9175 0.3484 1.7600 -195 1199 -2.8656 0.3484 1.7600 -195 1200 -2.8177 0.3443 1.7600 -195 1201 -2.7716 0.3414 1.7600 -195 1202 -2.7295 0.3353 1.7600 -195 1203 -2.6879 0.3253 1.7600 -195 1204 -2.6441 0.3105 1.7600 -195 1205 -2.5973 0.2997 1.7600 -195 1206 -2.5558 0.2873 1.7600 -195 1207 -2.5145 0.2846 1.7600 -195 1208 -2.4713 0.2854 1.7600 -195 1209 -2.4259 0.2875 1.7600 -195 1210 -2.3832 0.2926 1.7600 -195 1211 -2.3398 0.3044 1.7600 -195 1212 -2.2975 0.3196 1.7600 -195 1213 -2.2514 0.3369 1.7600 -195 1214 -2.1997 0.3531 1.7600 -195 1215 -2.1479 0.3652 1.7600 -195 1216 -2.1010 0.3732 1.7600 -195 1217 -2.0549 0.3806 1.7600 -195 1218 -2.0144 0.3775 1.7600 -195 1219 -1.9718 0.3735 1.7600 -195 1220 -1.9243 0.3659 1.7600 -195 1221 -1.8741 0.3554 1.7600 -195 1222 -1.8203 0.3392 1.7600 -195 1223 -1.7684 0.3174 1.7600 -195 1224 -1.7113 0.2966 1.7600 -195 1225 -1.6593 0.2769 1.7600 -195 1226 -1.6084 0.2631 1.7600 -195 1227 -1.5584 0.2569 1.7600 -195 1228 -1.5080 0.2559 1.7600 -195 1229 -1.4559 0.2593 1.7600 -195 1230 -1.4041 0.2674 1.7600 -195 1231 -1.3547 0.2828 1.7600 -195 1232 -1.3041 0.3053 1.7600 -195 1233 -1.2533 0.3328 1.7600 -195 1234 -1.1986 0.3583 1.7600 -195 1235 -1.1486 0.3748 1.7600 -195 1236 -1.1002 0.3850 1.7600 -195 1237 -1.0487 0.3897 1.7600 -195 1238 -0.9984 0.3896 1.7600 -195 1239 -0.9509 0.3876 1.7600 -195 1240 -0.9047 0.3828 1.7600 -195 1241 -0.8562 0.3723 1.7600 -195 1242 -0.8069 0.3602 1.7600 -195 1243 -0.7553 0.3449 1.7600 -195 1244 -0.7027 0.3244 1.7600 -195 1245 -0.6532 0.3056 1.7600 -195 1246 -0.6027 0.2939 1.7600 -195 1247 -0.5497 0.2888 1.7600 -195 1248 -0.4951 0.2884 1.7600 -195 1249 -0.4388 0.2910 1.7600 -195 1250 -0.3838 0.2988 1.7600 -195 1251 -0.3271 0.3116 1.7600 -195 1252 -0.2701 0.3277 1.7600 -195 1253 -0.2128 0.3465 1.7600 -195 1254 -0.1570 0.3665 1.7600 -195 1255 -0.0994 0.3838 1.7600 -195 1256 -0.0396 0.3982 1.7600 -195 1257 0.0217 0.4043 1.7600 -195 1258 0.0782 0.4050 1.7600 -195 1259 0.1331 0.4018 1.7600 -195 1260 0.1886 0.3957 1.7600 -195 1261 0.2417 0.3875 1.7600 -195 1262 0.2949 0.3751 1.7600 -195 1263 0.3451 0.3574 1.7600 -195 1264 0.3939 0.3386 1.7600 -195 1265 0.4437 0.3275 1.7600 -195 1266 0.4983 0.3213 1.7600 -195 1267 0.5548 0.3221 1.7600 -195 1268 0.6149 0.3263 1.7600 -195 1269 0.6740 0.3369 1.7600 -195 1270 0.7318 0.3527 1.7600 -195 1271 0.7867 0.3722 1.7600 -195 1272 0.8397 0.3938 1.7600 -195 1273 0.8901 0.4137 1.7600 -195 1274 0.9366 0.4277 1.7600 -195 1275 0.9858 0.4347 1.7600 -195 1276 1.0345 0.4350 1.7600 -195 1277 1.0849 0.4302 1.7600 -195 1278 1.1348 0.4210 1.7600 -195 1279 1.1828 0.4061 1.7600 -195 1280 1.2307 0.3866 1.7600 -195 1281 1.2785 0.3603 1.7600 -195 1282 1.3281 0.3304 1.7600 -195 1283 1.3773 0.3025 1.7600 -195 1284 1.4258 0.2805 1.7600 -195 1285 1.4784 0.2673 1.7600 -195 1286 1.5296 0.2618 1.7600 -195 1287 1.5809 0.2608 1.7600 -195 1288 1.6323 0.2697 1.7600 -195 1289 1.6842 0.2875 1.7600 -195 1290 1.7371 0.3129 1.7600 -195 1291 1.7895 0.3426 1.7600 -195 1292 1.8399 0.3720 1.7600 -195 1293 1.8921 0.3981 1.7600 -195 1294 1.9453 0.4121 1.7600 -195 1295 2.0007 0.4154 1.7600 -195 1296 2.0566 0.4138 1.7600 -195 1297 2.1108 0.4046 1.7600 -195 1298 2.1641 0.3912 1.7600 -195 1299 2.2184 0.3698 1.7600 -195 1300 2.2713 0.3412 1.7600 -195 1301 2.3271 0.3111 1.7600 -195 1302 2.3828 0.2842 1.7600 -195 1303 2.4382 0.2675 1.7600 -195 1304 2.4931 0.2595 1.7600 -195 1305 2.5465 0.2580 1.7600 -195 1306 2.5974 0.2641 1.7600 -195 1307 2.6481 0.2775 1.7600 -195 1308 2.6976 0.2986 1.7600 -195 1309 2.7452 0.3286 1.7600 -195 1310 2.7981 0.3593 1.7600 -195 1311 2.8519 0.3909 1.7600 -195 1312 2.9085 0.4202 1.7600 -195 1313 2.9639 0.4411 1.7600 -195 1314 3.0196 0.4507 1.7600 -195 1315 3.0751 0.4568 1.7600 -195 1316 3.1290 0.4571 1.7600 -195 1317 3.1846 0.4515 1.7600 -195 1318 3.2401 0.4369 1.7600 -195 1319 3.2971 0.4183 1.7600 -195 1320 3.3605 0.3969 1.7600 -195 1321 3.4290 0.3781 1.7600 -195 1322 3.5009 0.3696 1.7600 -195 1323 3.5699 0.3686 1.7600 -195 1324 3.6396 0.3746 1.7600 -195 1325 3.7067 0.3913 1.7600 -195 1326 3.7718 0.4188 1.7600 -195 1327 3.8358 0.4535 1.7600 -195 1328 3.9023 0.4950 1.7600 -195 1329 3.9756 0.5351 1.7600 -195 1330 4.0510 0.5652 1.7600 -195 1331 4.1327 0.5814 1.7600 -195 1332 4.2136 0.5928 1.7600 -195 1333 4.2852 0.6008 1.7600 -195 1334 4.3547 0.6048 1.7600 -195 1335 4.4193 0.6003 1.7600 -195 1336 4.4839 0.5932 1.7600 -195 1337 4.5512 0.5829 1.7600 -195 1338 4.6265 0.5769 1.7600 -195 1339 4.7060 0.5764 1.7600 -195 1340 4.7838 0.5817 1.7600 -195 1341 4.8605 0.5913 1.7600 -195 1342 4.9317 0.5961 1.7600 -195 1343 5.0047 0.6010 1.7600 -195 1344 5.0778 0.6075 1.7600 -195 1345 5.1507 0.6151 1.7600 -195 1346 5.2307 0.6186 1.7600 -195 1347 5.3162 0.6177 1.7600 -195 1348 5.3991 0.6099 1.7600 -195 1349 5.4802 0.5969 1.7600 -195 1350 5.5548 0.5789 1.7600 -195 1351 5.6221 0.5609 1.7600 -195 1352 5.6917 0.5459 1.7600 -195 1353 5.7576 0.5311 1.7600 -195 1354 5.8311 0.5145 1.7600 -195 1355 5.9139 0.4981 1.7600 -196 1066 -7.7955 0.8727 1.7600 -196 1067 -7.7593 0.8669 1.7600 -196 1068 -7.7242 0.8549 1.7600 -196 1069 -7.6888 0.8380 1.7600 -196 1070 -7.6527 0.8170 1.7600 -196 1071 -7.6154 0.7903 1.7600 -196 1072 -7.5786 0.7572 1.7600 -196 1073 -7.5426 0.7200 1.7600 -196 1074 -7.5110 0.6809 1.7600 -196 1075 -7.4866 0.6405 1.7600 -196 1076 -7.4613 0.6044 1.7600 -196 1077 -7.4328 0.5754 1.7600 -196 1078 -7.4034 0.5525 1.7600 -196 1079 -7.3734 0.5350 1.7600 -196 1080 -7.3400 0.5219 1.7600 -196 1081 -7.3026 0.5115 1.7600 -196 1082 -7.2624 0.5019 1.7600 -196 1083 -7.2178 0.4932 1.7600 -196 1084 -7.1683 0.4856 1.7600 -196 1085 -7.1160 0.4801 1.7600 -196 1086 -7.0636 0.4769 1.7600 -196 1087 -7.0163 0.4746 1.7600 -196 1088 -6.9710 0.4712 1.7600 -196 1089 -6.9248 0.4647 1.7600 -196 1090 -6.8809 0.4554 1.7600 -196 1091 -6.8406 0.4417 1.7600 -196 1092 -6.8002 0.4247 1.7600 -196 1093 -6.7568 0.4066 1.7600 -196 1094 -6.7104 0.3878 1.7600 -196 1095 -6.6613 0.3681 1.7600 -196 1096 -6.6105 0.3474 1.7600 -196 1097 -6.5613 0.3246 1.7600 -196 1098 -6.5167 0.2993 1.7600 -196 1099 -6.4756 0.2763 1.7600 -196 1100 -6.4332 0.2599 1.7600 -196 1101 -6.3932 0.2484 1.7600 -196 1102 -6.3515 0.2399 1.7600 -196 1103 -6.3099 0.2311 1.7600 -196 1104 -6.2669 0.2223 1.7600 -196 1105 -6.2195 0.2149 1.7600 -196 1106 -6.1684 0.2134 1.7600 -196 1107 -6.1189 0.2122 1.7600 -196 1108 -6.0704 0.2166 1.7600 -196 1109 -6.0266 0.2235 1.7600 -196 1110 -5.9805 0.2314 1.7600 -196 1111 -5.9341 0.2337 1.7600 -196 1112 -5.8903 0.2322 1.7600 -196 1113 -5.8437 0.2275 1.7600 -196 1114 -5.7994 0.2241 1.7600 -196 1115 -5.7530 0.2209 1.7600 -196 1116 -5.7033 0.2182 1.7600 -196 1117 -5.6541 0.2148 1.7600 -196 1118 -5.6049 0.2121 1.7600 -196 1119 -5.5555 0.2044 1.7600 -196 1120 -5.5102 0.1962 1.7600 -196 1121 -5.4660 0.1897 1.7600 -196 1122 -5.4231 0.1862 1.7600 -196 1123 -5.3808 0.1876 1.7600 -196 1124 -5.3436 0.1921 1.7600 -196 1125 -5.3053 0.1975 1.7600 -196 1126 -5.2643 0.2047 1.7600 -196 1127 -5.2203 0.2117 1.7600 -196 1128 -5.1746 0.2225 1.7600 -196 1129 -5.1271 0.2354 1.7600 -196 1130 -5.0795 0.2498 1.7600 -196 1131 -5.0313 0.2638 1.7600 -196 1132 -4.9865 0.2758 1.7600 -196 1133 -4.9420 0.2823 1.7600 -196 1134 -4.8972 0.2804 1.7600 -196 1135 -4.8556 0.2738 1.7600 -196 1136 -4.8127 0.2673 1.7600 -196 1137 -4.7664 0.2607 1.7600 -196 1138 -4.7200 0.2527 1.7600 -196 1139 -4.6745 0.2422 1.7600 -196 1140 -4.6268 0.2302 1.7600 -196 1141 -4.5815 0.2146 1.7600 -196 1142 -4.5385 0.2007 1.7600 -196 1143 -4.4987 0.1903 1.7600 -196 1144 -4.4600 0.1840 1.7600 -196 1145 -4.4231 0.1816 1.7600 -196 1146 -4.3900 0.1809 1.7600 -196 1147 -4.3554 0.1794 1.7600 -196 1148 -4.3209 0.1798 1.7600 -196 1149 -4.2823 0.1827 1.7600 -196 1150 -4.2439 0.1920 1.7600 -196 1151 -4.2022 0.2014 1.7600 -196 1152 -4.1595 0.2101 1.7600 -196 1153 -4.1182 0.2215 1.7600 -196 1154 -4.0763 0.2336 1.7600 -196 1155 -4.0346 0.2405 1.7600 -196 1156 -3.9949 0.2472 1.7600 -196 1157 -3.9550 0.2480 1.7600 -196 1158 -3.9157 0.2510 1.7600 -196 1159 -3.8770 0.2525 1.7600 -196 1160 -3.8327 0.2501 1.7600 -196 1161 -3.7892 0.2465 1.7600 -196 1162 -3.7407 0.2383 1.7600 -196 1163 -3.6903 0.2248 1.7600 -196 1164 -3.6405 0.2053 1.7600 -196 1165 -3.5957 0.1941 1.7600 -196 1166 -3.5521 0.1892 1.7600 -196 1167 -3.5093 0.1868 1.7600 -196 1168 -3.4680 0.1891 1.7600 -196 1169 -3.4297 0.1920 1.7600 -196 1170 -3.3916 0.1957 1.7600 -196 1171 -3.3499 0.2043 1.7600 -196 1172 -3.3078 0.2151 1.7600 -196 1173 -3.2634 0.2325 1.7600 -196 1174 -3.2198 0.2495 1.7600 -196 1175 -3.1756 0.2700 1.7600 -196 1176 -3.1302 0.2878 1.7600 -196 1177 -3.0875 0.3025 1.7600 -196 1178 -3.0459 0.3045 1.7600 -196 1179 -3.0011 0.3011 1.7600 -196 1180 -2.9589 0.2959 1.7600 -196 1181 -2.9175 0.2853 1.7600 -196 1182 -2.8753 0.2699 1.7600 -196 1183 -2.8343 0.2497 1.7600 -196 1184 -2.7923 0.2287 1.7600 -196 1185 -2.7529 0.2093 1.7600 -196 1186 -2.7180 0.1974 1.7600 -196 1187 -2.6816 0.1902 1.7600 -196 1188 -2.6448 0.1868 1.7600 -196 1189 -2.6080 0.1846 1.7600 -196 1190 -2.5701 0.1835 1.7600 -196 1191 -2.5291 0.1881 1.7600 -196 1192 -2.4895 0.1977 1.7600 -196 1193 -2.4480 0.2151 1.7600 -196 1194 -2.4054 0.2338 1.7600 -196 1195 -2.3666 0.2495 1.7600 -196 1196 -2.3298 0.2627 1.7600 -196 1197 -2.2914 0.2711 1.7600 -196 1198 -2.2532 0.2780 1.7600 -196 1199 -2.2190 0.2853 1.7600 -196 1200 -2.1842 0.2865 1.7600 -196 1201 -2.1429 0.2864 1.7600 -196 1202 -2.1024 0.2811 1.7600 -196 1203 -2.0598 0.2810 1.7600 -196 1204 -2.0171 0.2869 1.7600 -196 1205 -1.9736 0.2966 1.7600 -196 1206 -1.9292 0.3095 1.7600 -196 1207 -1.8807 0.3269 1.7600 -196 1208 -1.8305 0.3412 1.7600 -196 1209 -1.7787 0.3525 1.7600 -196 1210 -1.7296 0.3590 1.7600 -196 1211 -1.6829 0.3594 1.7600 -196 1212 -1.6318 0.3582 1.7600 -196 1213 -1.5798 0.3508 1.7600 -196 1214 -1.5286 0.3392 1.7600 -196 1215 -1.4785 0.3242 1.7600 -196 1216 -1.4235 0.3049 1.7600 -196 1217 -1.3648 0.2858 1.7600 -196 1218 -1.3120 0.2729 1.7600 -196 1219 -1.2651 0.2680 1.7600 -196 1220 -1.2179 0.2675 1.7600 -196 1221 -1.1711 0.2697 1.7600 -196 1222 -1.1256 0.2756 1.7600 -196 1223 -1.0804 0.2836 1.7600 -196 1224 -1.0321 0.2963 1.7600 -196 1225 -0.9815 0.3129 1.7600 -196 1226 -0.9291 0.3308 1.7600 -196 1227 -0.8763 0.3483 1.7600 -196 1228 -0.8253 0.3621 1.7600 -196 1229 -0.7750 0.3744 1.7600 -196 1230 -0.7219 0.3811 1.7600 -196 1231 -0.6722 0.3796 1.7600 -196 1232 -0.6202 0.3746 1.7600 -196 1233 -0.5680 0.3652 1.7600 -196 1234 -0.5152 0.3537 1.7600 -196 1235 -0.4589 0.3404 1.7600 -196 1236 -0.4059 0.3239 1.7600 -196 1237 -0.3587 0.3086 1.7600 -196 1238 -0.3135 0.3001 1.7600 -196 1239 -0.2691 0.3002 1.7600 -196 1240 -0.2227 0.3066 1.7600 -196 1241 -0.1776 0.3142 1.7600 -196 1242 -0.1266 0.3264 1.7600 -196 1243 -0.0731 0.3408 1.7600 -196 1244 -0.0191 0.3594 1.7600 -196 1245 0.0349 0.3790 1.7600 -196 1246 0.0882 0.3994 1.7600 -196 1247 0.1387 0.4166 1.7600 -196 1248 0.1907 0.4221 1.7600 -196 1249 0.2386 0.4211 1.7600 -196 1250 0.2902 0.4156 1.7600 -196 1251 0.3411 0.4066 1.7600 -196 1252 0.3936 0.3965 1.7600 -196 1253 0.4491 0.3836 1.7600 -196 1254 0.5050 0.3669 1.7600 -196 1255 0.5590 0.3446 1.7600 -196 1256 0.6125 0.3231 1.7600 -196 1257 0.6618 0.3072 1.7600 -196 1258 0.7085 0.2966 1.7600 -196 1259 0.7559 0.2937 1.7600 -196 1260 0.8033 0.2932 1.7600 -196 1261 0.8520 0.2936 1.7600 -196 1262 0.9033 0.2979 1.7600 -196 1263 0.9566 0.3047 1.7600 -196 1264 1.0123 0.3161 1.7600 -196 1265 1.0659 0.3312 1.7600 -196 1266 1.1181 0.3475 1.7600 -196 1267 1.1716 0.3583 1.7600 -196 1268 1.2238 0.3640 1.7600 -196 1269 1.2772 0.3670 1.7600 -196 1270 1.3305 0.3639 1.7600 -196 1271 1.3851 0.3639 1.7600 -196 1272 1.4416 0.3589 1.7600 -196 1273 1.4990 0.3503 1.7600 -196 1274 1.5589 0.3386 1.7600 -196 1275 1.6183 0.3229 1.7600 -196 1276 1.6713 0.3079 1.7600 -196 1277 1.7227 0.3032 1.7600 -196 1278 1.7723 0.3053 1.7600 -196 1279 1.8195 0.3109 1.7600 -196 1280 1.8664 0.3204 1.7600 -196 1281 1.9150 0.3328 1.7600 -196 1282 1.9629 0.3473 1.7600 -196 1283 2.0140 0.3651 1.7600 -196 1284 2.0641 0.3865 1.7600 -196 1285 2.1150 0.4097 1.7600 -196 1286 2.1632 0.4307 1.7600 -196 1287 2.2116 0.4474 1.7600 -196 1288 2.2592 0.4581 1.7600 -196 1289 2.3040 0.4634 1.7600 -196 1290 2.3495 0.4656 1.7600 -196 1291 2.3954 0.4644 1.7600 -196 1292 2.4430 0.4625 1.7600 -196 1293 2.4922 0.4532 1.7600 -196 1294 2.5414 0.4396 1.7600 -196 1295 2.5932 0.4218 1.7600 -196 1296 2.6475 0.4062 1.7600 -196 1297 2.6980 0.3912 1.7600 -196 1298 2.7460 0.3793 1.7600 -196 1299 2.7958 0.3724 1.7600 -196 1300 2.8436 0.3695 1.7600 -196 1301 2.8937 0.3732 1.7600 -196 1302 2.9428 0.3792 1.7600 -196 1303 2.9949 0.3892 1.7600 -196 1304 3.0496 0.4013 1.7600 -196 1305 3.1076 0.4185 1.7600 -196 1306 3.1674 0.4371 1.7600 -196 1307 3.2224 0.4484 1.7600 -196 1308 3.2732 0.4524 1.7600 -196 1309 3.3254 0.4496 1.7600 -196 1310 3.3810 0.4428 1.7600 -196 1311 3.4352 0.4366 1.7600 -196 1312 3.4923 0.4265 1.7600 -196 1313 3.5514 0.4146 1.7600 -196 1314 3.6142 0.3974 1.7600 -196 1315 3.6792 0.3760 1.7600 -196 1316 3.7439 0.3561 1.7600 -196 1317 3.7990 0.3458 1.7600 -196 1318 3.8538 0.3392 1.7600 -196 1319 3.9097 0.3372 1.7600 -196 1320 3.9657 0.3346 1.7600 -196 1321 4.0203 0.3323 1.7600 -196 1322 4.0815 0.3317 1.7600 -196 1323 4.1451 0.3313 1.7600 -196 1324 4.2144 0.3296 1.7600 -196 1325 4.2868 0.3225 1.7600 -196 1326 4.3502 0.3111 1.7600 -196 1327 4.4109 0.2959 1.7600 -196 1328 4.4695 0.2794 1.7600 -196 1329 4.5259 0.2610 1.7600 -196 1330 4.5814 0.2428 1.7600 -196 1331 4.6374 0.2230 1.7600 -196 1332 4.6980 0.1995 1.7600 -196 1333 4.7709 0.1729 1.7600 -196 1334 4.8362 0.1529 1.7600 -196 1335 4.8966 0.1405 1.7600 -196 1336 4.9542 0.1313 1.7600 -196 1337 5.0170 0.1278 1.7600 -196 1338 5.0779 0.1267 1.7600 -196 1339 5.1351 0.1326 1.7600 -196 1340 5.1985 0.1438 1.7600 -196 1341 5.2687 0.1471 1.7600 -196 1342 5.3444 0.1461 1.7600 -196 1343 5.4149 0.1383 1.7600 -196 1344 5.4757 0.1274 1.7600 -196 1345 5.5326 0.1126 1.7600 -196 1346 5.5841 0.0936 1.7600 -196 1347 5.6351 0.0710 1.7600 -196 1348 5.6943 0.0456 1.7600 -196 1349 5.7616 0.0131 1.7600 -196 1350 5.8422 -0.0104 1.7600 -196 1351 5.9197 -0.0349 1.7600 -197 1073 -7.8328 1.6452 1.7600 -197 1074 -7.7723 1.6466 1.7600 -197 1075 -7.7189 1.6499 1.7600 -197 1076 -7.6695 1.6528 1.7600 -197 1077 -7.6190 1.6526 1.7600 -197 1078 -7.5707 1.6469 1.7600 -197 1079 -7.5266 1.6349 1.7600 -197 1080 -7.4840 1.6188 1.7600 -197 1081 -7.4404 1.6041 1.7600 -197 1082 -7.3983 1.5875 1.7600 -197 1083 -7.3603 1.5665 1.7600 -197 1084 -7.3244 1.5383 1.7600 -197 1085 -7.2905 1.5042 1.7600 -197 1086 -7.2588 1.4641 1.7600 -197 1087 -7.2304 1.4207 1.7600 -197 1088 -7.2062 1.3761 1.7600 -197 1089 -7.1811 1.3332 1.7600 -197 1090 -7.1561 1.2916 1.7600 -197 1091 -7.1261 1.2525 1.7600 -197 1092 -7.0950 1.2179 1.7600 -197 1093 -7.0632 1.1885 1.7600 -197 1094 -7.0308 1.1638 1.7600 -197 1095 -6.9975 1.1453 1.7600 -197 1096 -6.9623 1.1346 1.7600 -197 1097 -6.9259 1.1334 1.7600 -197 1098 -6.8887 1.1407 1.7600 -197 1099 -6.8498 1.1557 1.7600 -197 1100 -6.8081 1.1774 1.7600 -197 1101 -6.7659 1.2021 1.7600 -197 1102 -6.7235 1.2262 1.7600 -197 1103 -6.6768 1.2512 1.7600 -197 1104 -6.6315 1.2649 1.7600 -197 1105 -6.5877 1.2739 1.7600 -197 1106 -6.5451 1.2798 1.7600 -197 1107 -6.5084 1.2817 1.7600 -197 1108 -6.4716 1.2795 1.7600 -197 1109 -6.4379 1.2704 1.7600 -197 1110 -6.4034 1.2570 1.7600 -197 1111 -6.3736 1.2394 1.7600 -197 1112 -6.3438 1.2168 1.7600 -197 1113 -6.3195 1.1879 1.7600 -197 1114 -6.2945 1.1560 1.7600 -197 1115 -6.2652 1.1205 1.7600 -197 1116 -6.2310 1.0917 1.7600 -197 1117 -6.1927 1.0682 1.7600 -197 1118 -6.1543 1.0518 1.7600 -197 1119 -6.1094 1.0379 1.7600 -197 1120 -6.0590 1.0315 1.7600 -197 1121 -6.0074 1.0327 1.7600 -197 1122 -5.9542 1.0444 1.7600 -197 1123 -5.9057 1.0631 1.7600 -197 1124 -5.8598 1.0877 1.7600 -197 1125 -5.8113 1.1108 1.7600 -197 1126 -5.7729 1.1342 1.7600 -197 1127 -5.7361 1.1489 1.7600 -197 1128 -5.6991 1.1547 1.7600 -197 1129 -5.6685 1.1515 1.7600 -197 1130 -5.6386 1.1401 1.7600 -197 1131 -5.6048 1.1289 1.7600 -197 1132 -5.5683 1.1143 1.7600 -197 1133 -5.5325 1.1002 1.7600 -197 1134 -5.4985 1.0796 1.7600 -197 1135 -5.4674 1.0576 1.7600 -197 1136 -5.4373 1.0383 1.7600 -197 1137 -5.4064 1.0243 1.7600 -197 1138 -5.3746 1.0176 1.7600 -197 1139 -5.3418 1.0169 1.7600 -197 1140 -5.3064 1.0235 1.7600 -197 1141 -5.2674 1.0331 1.7600 -197 1142 -5.2243 1.0397 1.7600 -197 1143 -5.1777 1.0484 1.7600 -197 1144 -5.1284 1.0612 1.7600 -197 1145 -5.0784 1.0764 1.7600 -197 1146 -5.0343 1.0897 1.7600 -197 1147 -4.9962 1.1004 1.7600 -197 1148 -4.9597 1.1079 1.7600 -197 1149 -4.9237 1.1114 1.7600 -197 1150 -4.8929 1.1148 1.7600 -197 1151 -4.8628 1.1160 1.7600 -197 1152 -4.8325 1.1132 1.7600 -197 1153 -4.8058 1.1011 1.7600 -197 1154 -4.7799 1.0838 1.7600 -197 1155 -4.7562 1.0586 1.7600 -197 1156 -4.7370 1.0265 1.7600 -197 1157 -4.7181 0.9879 1.7600 -197 1158 -4.6904 0.9505 1.7600 -197 1159 -4.6593 0.9158 1.7600 -197 1160 -4.6249 0.8808 1.7600 -197 1161 -4.5812 0.8569 1.7600 -197 1162 -4.5370 0.8407 1.7600 -197 1163 -4.4873 0.8352 1.7600 -197 1164 -4.4393 0.8387 1.7600 -197 1165 -4.3872 0.8500 1.7600 -197 1166 -4.3401 0.8725 1.7600 -197 1167 -4.2934 0.9018 1.7600 -197 1168 -4.2481 0.9385 1.7600 -197 1169 -4.2068 0.9715 1.7600 -197 1170 -4.1658 0.9986 1.7600 -197 1171 -4.1361 1.0228 1.7600 -197 1172 -4.1049 1.0442 1.7600 -197 1173 -4.0676 1.0591 1.7600 -197 1174 -4.0318 1.0682 1.7600 -197 1175 -3.9919 1.0728 1.7600 -197 1176 -3.9500 1.0667 1.7600 -197 1177 -3.9087 1.0533 1.7600 -197 1178 -3.8638 1.0305 1.7600 -197 1179 -3.8211 1.0025 1.7600 -197 1180 -3.7777 0.9722 1.7600 -197 1181 -3.7326 0.9397 1.7600 -197 1182 -3.6856 0.9104 1.7600 -197 1183 -3.6370 0.8920 1.7600 -197 1184 -3.5876 0.8798 1.7600 -197 1185 -3.5313 0.8753 1.7600 -197 1186 -3.4765 0.8807 1.7600 -197 1187 -3.4191 0.8907 1.7600 -197 1188 -3.3655 0.9129 1.7600 -197 1189 -3.3145 0.9420 1.7600 -197 1190 -3.2684 0.9781 1.7600 -197 1191 -3.2138 1.0137 1.7600 -197 1192 -3.1644 1.0417 1.7600 -197 1193 -3.1215 1.0544 1.7600 -197 1194 -3.0751 1.0575 1.7600 -197 1195 -3.0288 1.0528 1.7600 -197 1196 -2.9824 1.0460 1.7600 -197 1197 -2.9350 1.0330 1.7600 -197 1198 -2.8856 1.0112 1.7600 -197 1199 -2.8352 0.9865 1.7600 -197 1200 -2.7826 0.9567 1.7600 -197 1201 -2.7291 0.9237 1.7600 -197 1202 -2.6734 0.8862 1.7600 -197 1203 -2.6164 0.8442 1.7600 -197 1204 -2.5567 0.8075 1.7600 -197 1205 -2.4946 0.7834 1.7600 -197 1206 -2.4348 0.7742 1.7600 -197 1207 -2.3778 0.7747 1.7600 -197 1208 -2.3245 0.7794 1.7600 -197 1209 -2.2747 0.7890 1.7600 -197 1210 -2.2258 0.8052 1.7600 -197 1211 -2.1714 0.8290 1.7600 -197 1212 -2.1126 0.8543 1.7600 -197 1213 -2.0541 0.8795 1.7600 -197 1214 -2.0009 0.8974 1.7600 -197 1215 -1.9484 0.9070 1.7600 -197 1216 -1.8890 0.9054 1.7600 -197 1217 -1.8285 0.8982 1.7600 -197 1218 -1.7710 0.8861 1.7600 -197 1219 -1.7166 0.8724 1.7600 -197 1220 -1.6601 0.8536 1.7600 -197 1221 -1.6018 0.8299 1.7600 -197 1222 -1.5390 0.8000 1.7600 -197 1223 -1.4749 0.7756 1.7600 -197 1224 -1.4160 0.7589 1.7600 -197 1225 -1.3559 0.7532 1.7600 -197 1226 -1.2918 0.7539 1.7600 -197 1227 -1.2289 0.7602 1.7600 -197 1228 -1.1675 0.7711 1.7600 -197 1229 -1.1082 0.7861 1.7600 -197 1230 -1.0493 0.8099 1.7600 -197 1231 -0.9902 0.8376 1.7600 -197 1232 -0.9297 0.8663 1.7600 -197 1233 -0.8727 0.8918 1.7600 -197 1234 -0.8185 0.9059 1.7600 -197 1235 -0.7628 0.9091 1.7600 -197 1236 -0.7044 0.9064 1.7600 -197 1237 -0.6443 0.9010 1.7600 -197 1238 -0.5856 0.8924 1.7600 -197 1239 -0.5282 0.8790 1.7600 -197 1240 -0.4691 0.8637 1.7600 -197 1241 -0.4071 0.8425 1.7600 -197 1242 -0.3510 0.8229 1.7600 -197 1243 -0.2946 0.8115 1.7600 -197 1244 -0.2379 0.8080 1.7600 -197 1245 -0.1805 0.8140 1.7600 -197 1246 -0.1212 0.8239 1.7600 -197 1247 -0.0624 0.8378 1.7600 -197 1248 -0.0027 0.8547 1.7600 -197 1249 0.0556 0.8783 1.7600 -197 1250 0.1078 0.9066 1.7600 -197 1251 0.1590 0.9387 1.7600 -197 1252 0.2113 0.9656 1.7600 -197 1253 0.2603 0.9800 1.7600 -197 1254 0.3120 0.9827 1.7600 -197 1255 0.3623 0.9789 1.7600 -197 1256 0.4145 0.9710 1.7600 -197 1257 0.4667 0.9551 1.7600 -197 1258 0.5237 0.9295 1.7600 -197 1259 0.5828 0.8976 1.7600 -197 1260 0.6431 0.8565 1.7600 -197 1261 0.6975 0.8191 1.7600 -197 1262 0.7523 0.7907 1.7600 -197 1263 0.8089 0.7771 1.7600 -197 1264 0.8686 0.7734 1.7600 -197 1265 0.9307 0.7798 1.7600 -197 1266 0.9871 0.7933 1.7600 -197 1267 1.0460 0.8102 1.7600 -197 1268 1.1039 0.8306 1.7600 -197 1269 1.1578 0.8561 1.7600 -197 1270 1.2122 0.8870 1.7600 -197 1271 1.2637 0.9187 1.7600 -197 1272 1.3079 0.9405 1.7600 -197 1273 1.3551 0.9471 1.7600 -197 1274 1.4076 0.9444 1.7600 -197 1275 1.4616 0.9366 1.7600 -197 1276 1.5177 0.9275 1.7600 -197 1277 1.5760 0.9136 1.7600 -197 1278 1.6287 0.8924 1.7600 -197 1279 1.6899 0.8583 1.7600 -197 1280 1.7472 0.8227 1.7600 -197 1281 1.8042 0.7866 1.7600 -197 1282 1.8561 0.7624 1.7600 -197 1283 1.9003 0.7557 1.7600 -197 1284 1.9498 0.7626 1.7600 -197 1285 1.9984 0.7637 1.7600 -197 1286 2.0523 0.7611 1.7600 -197 1287 2.1117 0.7671 1.7600 -197 1288 2.1671 0.7826 1.7600 -197 1289 2.2291 0.8050 1.7600 -197 1290 2.2932 0.8321 1.7600 -197 1291 2.3609 0.8633 1.7600 -197 1292 2.4290 0.8941 1.7600 -197 1293 2.4907 0.9211 1.7600 -197 1294 2.5525 0.9420 1.7600 -197 1295 2.6065 0.9578 1.7600 -197 1296 2.6581 0.9641 1.7600 -197 1297 2.7070 0.9594 1.7600 -197 1298 2.7542 0.9487 1.7600 -197 1299 2.8019 0.9334 1.7600 -197 1300 2.8469 0.9151 1.7600 -197 1301 2.8948 0.8940 1.7600 -197 1302 2.9448 0.8755 1.7600 -197 1303 2.9919 0.8536 1.7600 -197 1304 3.0370 0.8383 1.7600 -197 1305 3.0883 0.8392 1.7600 -197 1306 3.1516 0.8535 1.7600 -197 1307 3.2229 0.8721 1.7600 -197 1308 3.2967 0.8984 1.7600 -197 1309 3.3643 0.9310 1.7600 -197 1310 3.4353 0.9692 1.7600 -197 1311 3.5050 1.0060 1.7600 -197 1312 3.5838 1.0355 1.7600 -197 1313 3.6580 1.0563 1.7600 -197 1314 3.7303 1.0635 1.7600 -197 1315 3.8003 1.0646 1.7600 -197 1316 3.8676 1.0617 1.7600 -197 1317 3.9368 1.0576 1.7600 -197 1318 4.0045 1.0505 1.7600 -197 1319 4.0713 1.0365 1.7600 -197 1320 4.1420 1.0168 1.7600 -197 1321 4.2196 0.9949 1.7600 -197 1322 4.2977 0.9776 1.7600 -197 1323 4.3756 0.9721 1.7600 -197 1324 4.4545 0.9733 1.7600 -197 1325 4.5286 0.9798 1.7600 -197 1326 4.6012 0.9866 1.7600 -197 1327 4.6694 0.9956 1.7600 -197 1328 4.7340 1.0075 1.7600 -197 1329 4.7993 1.0243 1.7600 -197 1330 4.8755 1.0429 1.7600 -197 1331 4.9575 1.0642 1.7600 -197 1332 5.0376 1.0788 1.7600 -197 1333 5.1130 1.0783 1.7600 -197 1334 5.1879 1.0657 1.7600 -197 1335 5.2554 1.0507 1.7600 -197 1336 5.3187 1.0400 1.7600 -197 1337 5.3791 1.0290 1.7600 -197 1338 5.4389 1.0155 1.7600 -197 1339 5.5080 1.0000 1.7600 -197 1340 5.5873 0.9847 1.7600 -197 1341 5.6656 0.9734 1.7600 -197 1342 5.7392 0.9697 1.7600 -197 1343 5.8100 0.9734 1.7600 -197 1344 5.8788 0.9808 1.7600 -197 1345 5.9456 0.9900 1.7600 -198 1017 -7.8141 1.3125 1.7600 -198 1018 -7.7832 1.2913 1.7600 -198 1019 -7.7507 1.2672 1.7600 -198 1020 -7.7148 1.2429 1.7600 -198 1021 -7.6754 1.2180 1.7600 -198 1022 -7.6350 1.1924 1.7600 -198 1023 -7.5965 1.1707 1.7600 -198 1024 -7.5611 1.1534 1.7600 -198 1025 -7.5333 1.1304 1.7600 -198 1026 -7.5016 1.1098 1.7600 -198 1027 -7.4740 1.0786 1.7600 -198 1028 -7.4413 1.0623 1.7600 -198 1029 -7.4086 1.0483 1.7600 -198 1030 -7.3732 1.0399 1.7600 -198 1031 -7.3329 1.0346 1.7600 -198 1032 -7.2911 1.0293 1.7600 -198 1033 -7.2485 1.0285 1.7600 -198 1034 -7.2082 1.0331 1.7600 -198 1035 -7.1728 1.0403 1.7600 -198 1036 -7.1386 1.0469 1.7600 -198 1037 -7.1065 1.0486 1.7600 -198 1038 -7.0768 1.0477 1.7600 -198 1039 -7.0478 1.0432 1.7600 -198 1040 -7.0176 1.0376 1.7600 -198 1041 -6.9858 1.0315 1.7600 -198 1042 -6.9543 1.0232 1.7600 -198 1043 -6.9218 1.0127 1.7600 -198 1044 -6.8878 0.9990 1.7600 -198 1045 -6.8529 0.9831 1.7600 -198 1046 -6.8184 0.9653 1.7600 -198 1047 -6.7884 0.9476 1.7600 -198 1048 -6.7579 0.9308 1.7600 -198 1049 -6.7241 0.9174 1.7600 -198 1050 -6.6892 0.9082 1.7600 -198 1051 -6.6545 0.9041 1.7600 -198 1052 -6.6180 0.9036 1.7600 -198 1053 -6.5795 0.9049 1.7600 -198 1054 -6.5403 0.9074 1.7600 -198 1055 -6.4995 0.9135 1.7600 -198 1056 -6.4571 0.9221 1.7600 -198 1057 -6.4156 0.9340 1.7600 -198 1058 -6.3776 0.9484 1.7600 -198 1059 -6.3421 0.9611 1.7600 -198 1060 -6.3081 0.9696 1.7600 -198 1061 -6.2765 0.9734 1.7600 -198 1062 -6.2467 0.9723 1.7600 -198 1063 -6.2164 0.9688 1.7600 -198 1064 -6.1846 0.9622 1.7600 -198 1065 -6.1500 0.9550 1.7600 -198 1066 -6.1143 0.9448 1.7600 -198 1067 -6.0773 0.9308 1.7600 -198 1068 -6.0401 0.9122 1.7600 -198 1069 -6.0052 0.8903 1.7600 -198 1070 -5.9740 0.8698 1.7600 -198 1071 -5.9421 0.8525 1.7600 -198 1072 -5.9064 0.8407 1.7600 -198 1073 -5.8689 0.8336 1.7600 -198 1074 -5.8306 0.8305 1.7600 -198 1075 -5.7904 0.8303 1.7600 -198 1076 -5.7478 0.8318 1.7600 -198 1077 -5.7032 0.8365 1.7600 -198 1078 -5.6574 0.8441 1.7600 -198 1079 -5.6105 0.8554 1.7600 -198 1080 -5.5629 0.8697 1.7600 -198 1081 -5.5179 0.8830 1.7600 -198 1082 -5.4767 0.8924 1.7600 -198 1083 -5.4387 0.8965 1.7600 -198 1084 -5.4028 0.8957 1.7600 -198 1085 -5.3681 0.8914 1.7600 -198 1086 -5.3334 0.8859 1.7600 -198 1087 -5.2970 0.8790 1.7600 -198 1088 -5.2577 0.8706 1.7600 -198 1089 -5.2166 0.8603 1.7600 -198 1090 -5.1748 0.8461 1.7600 -198 1091 -5.1338 0.8290 1.7600 -198 1092 -5.0935 0.8105 1.7600 -198 1093 -5.0535 0.7928 1.7600 -198 1094 -5.0148 0.7781 1.7600 -198 1095 -4.9648 0.7538 1.7600 -198 1096 -4.9148 0.7358 1.7600 -198 1097 -4.8662 0.7302 1.7600 -198 1098 -4.8216 0.7324 1.7600 -198 1099 -4.7807 0.7332 1.7600 -198 1100 -4.7376 0.7370 1.7600 -198 1101 -4.6936 0.7439 1.7600 -198 1102 -4.6439 0.7567 1.7600 -198 1103 -4.6012 0.7691 1.7600 -198 1104 -4.5615 0.7782 1.7600 -198 1105 -4.5215 0.7821 1.7600 -198 1106 -4.4770 0.7762 1.7600 -198 1107 -4.4407 0.7713 1.7600 -198 1108 -4.4058 0.7561 1.7600 -198 1109 -4.3657 0.7429 1.7600 -198 1110 -4.3220 0.7320 1.7600 -198 1111 -4.2779 0.7181 1.7600 -198 1112 -4.2304 0.7044 1.7600 -198 1113 -4.1861 0.6869 1.7600 -198 1114 -4.1375 0.6743 1.7600 -198 1115 -4.0962 0.6651 1.7600 -198 1116 -4.0535 0.6630 1.7600 -198 1117 -4.0127 0.6688 1.7600 -198 1118 -3.9711 0.6756 1.7600 -198 1119 -3.9288 0.6857 1.7600 -198 1120 -3.8845 0.6957 1.7600 -198 1121 -3.8392 0.7047 1.7600 -198 1122 -3.7941 0.7152 1.7600 -198 1123 -3.7490 0.7250 1.7600 -198 1124 -3.7019 0.7354 1.7600 -198 1125 -3.6567 0.7426 1.7600 -198 1126 -3.6131 0.7411 1.7600 -198 1127 -3.5720 0.7356 1.7600 -198 1128 -3.5301 0.7253 1.7600 -198 1129 -3.4911 0.7149 1.7600 -198 1130 -3.4497 0.7029 1.7600 -198 1131 -3.4100 0.6916 1.7600 -198 1132 -3.3692 0.6789 1.7600 -198 1133 -3.3271 0.6606 1.7600 -198 1134 -3.2847 0.6369 1.7600 -198 1135 -3.2406 0.6172 1.7600 -198 1136 -3.1991 0.5995 1.7600 -198 1137 -3.1558 0.5906 1.7600 -198 1138 -3.1128 0.5854 1.7600 -198 1139 -3.0671 0.5828 1.7600 -198 1140 -3.0222 0.5836 1.7600 -198 1141 -2.9753 0.5860 1.7600 -198 1142 -2.9254 0.5891 1.7600 -198 1143 -2.8733 0.5944 1.7600 -198 1144 -2.8157 0.6005 1.7600 -198 1145 -2.7590 0.6041 1.7600 -198 1146 -2.7065 0.6046 1.7600 -198 1147 -2.6504 0.5988 1.7600 -198 1148 -2.5965 0.5921 1.7600 -198 1149 -2.5435 0.5814 1.7600 -198 1150 -2.4894 0.5708 1.7600 -198 1151 -2.4377 0.5561 1.7600 -198 1152 -2.3816 0.5422 1.7600 -198 1153 -2.3256 0.5237 1.7600 -198 1154 -2.2714 0.5030 1.7600 -198 1155 -2.2124 0.4806 1.7600 -198 1156 -2.1643 0.4682 1.7600 -198 1157 -2.1154 0.4634 1.7600 -198 1158 -2.0689 0.4673 1.7600 -198 1159 -2.0212 0.4737 1.7600 -198 1160 -1.9737 0.4818 1.7600 -198 1161 -1.9264 0.4916 1.7600 -198 1162 -1.8761 0.4985 1.7600 -198 1163 -1.8189 0.5065 1.7600 -198 1164 -1.7595 0.5161 1.7600 -198 1165 -1.7063 0.5226 1.7600 -198 1166 -1.6593 0.5237 1.7600 -198 1167 -1.6127 0.5210 1.7600 -198 1168 -1.5682 0.5175 1.7600 -198 1169 -1.5178 0.5105 1.7600 -198 1170 -1.4645 0.5037 1.7600 -198 1171 -1.4075 0.4951 1.7600 -198 1172 -1.3477 0.4821 1.7600 -198 1173 -1.2868 0.4705 1.7600 -198 1174 -1.2241 0.4596 1.7600 -198 1175 -1.1681 0.4557 1.7600 -198 1176 -1.1090 0.4580 1.7600 -198 1177 -1.0560 0.4648 1.7600 -198 1178 -1.0024 0.4701 1.7600 -198 1179 -0.9455 0.4729 1.7600 -198 1180 -0.8849 0.4734 1.7600 -198 1181 -0.8198 0.4749 1.7600 -198 1182 -0.7518 0.4755 1.7600 -198 1183 -0.6871 0.4755 1.7600 -198 1184 -0.6302 0.4736 1.7600 -198 1185 -0.5770 0.4649 1.7600 -198 1186 -0.5246 0.4530 1.7600 -198 1187 -0.4753 0.4385 1.7600 -198 1188 -0.4235 0.4274 1.7600 -198 1189 -0.3667 0.4145 1.7600 -198 1190 -0.3054 0.4001 1.7600 -198 1191 -0.2405 0.3842 1.7600 -198 1192 -0.1745 0.3660 1.7600 -198 1193 -0.1189 0.3537 1.7600 -198 1194 -0.0636 0.3512 1.7600 -198 1195 -0.0105 0.3579 1.7600 -198 1196 0.0394 0.3690 1.7600 -198 1197 0.0934 0.3801 1.7600 -198 1198 0.1509 0.3908 1.7600 -198 1199 0.2095 0.4012 1.7600 -198 1200 0.2685 0.4112 1.7600 -198 1201 0.3229 0.4188 1.7600 -198 1202 0.3718 0.4223 1.7600 -198 1203 0.4196 0.4197 1.7600 -198 1204 0.4650 0.4160 1.7600 -198 1205 0.5113 0.4097 1.7600 -198 1206 0.5577 0.4046 1.7600 -198 1207 0.6084 0.3988 1.7600 -198 1208 0.6595 0.3927 1.7600 -198 1209 0.7090 0.3834 1.7600 -198 1210 0.7577 0.3708 1.7600 -198 1211 0.8024 0.3592 1.7600 -198 1212 0.8466 0.3496 1.7600 -198 1213 0.8884 0.3437 1.7600 -198 1214 0.9315 0.3441 1.7600 -198 1215 0.9760 0.3443 1.7600 -198 1216 1.0243 0.3472 1.7600 -198 1217 1.0761 0.3513 1.7600 -198 1218 1.1278 0.3593 1.7600 -198 1219 1.1792 0.3666 1.7600 -198 1220 1.2267 0.3762 1.7600 -198 1221 1.2750 0.3820 1.7600 -198 1222 1.3187 0.3821 1.7600 -198 1223 1.3649 0.3803 1.7600 -198 1224 1.4143 0.3777 1.7600 -198 1225 1.4638 0.3726 1.7600 -198 1226 1.5160 0.3690 1.7600 -198 1227 1.5678 0.3621 1.7600 -198 1228 1.6223 0.3555 1.7600 -198 1229 1.6763 0.3465 1.7600 -198 1230 1.7258 0.3407 1.7600 -198 1231 1.7757 0.3478 1.7600 -198 1232 1.8181 0.3540 1.7600 -198 1233 1.8677 0.3671 1.7600 -198 1234 1.9186 0.3808 1.7600 -198 1235 1.9726 0.3955 1.7600 -198 1236 2.0295 0.4124 1.7600 -198 1237 2.0856 0.4302 1.7600 -198 1238 2.1398 0.4473 1.7600 -198 1239 2.1922 0.4603 1.7600 -198 1240 2.2462 0.4660 1.7600 -198 1241 2.2981 0.4640 1.7600 -198 1242 2.3538 0.4584 1.7600 -198 1243 2.4094 0.4529 1.7600 -198 1244 2.4649 0.4484 1.7600 -198 1245 2.5213 0.4424 1.7600 -198 1246 2.5772 0.4331 1.7600 -198 1247 2.6328 0.4217 1.7600 -198 1248 2.6884 0.4138 1.7600 -198 1249 2.7437 0.4112 1.7600 -198 1250 2.7976 0.4132 1.7600 -198 1251 2.8513 0.4177 1.7600 -198 1252 2.9056 0.4232 1.7600 -198 1253 2.9605 0.4297 1.7600 -198 1254 3.0156 0.4391 1.7600 -198 1255 3.0725 0.4529 1.7600 -198 1256 3.1325 0.4677 1.7600 -198 1257 3.1912 0.4778 1.7600 -198 1258 3.2484 0.4809 1.7600 -198 1259 3.3054 0.4780 1.7600 -198 1260 3.3632 0.4731 1.7600 -198 1261 3.4207 0.4675 1.7600 -198 1262 3.4769 0.4621 1.7600 -198 1263 3.5352 0.4551 1.7600 -198 1264 3.5985 0.4438 1.7600 -198 1265 3.6646 0.4300 1.7600 -198 1266 3.7269 0.4190 1.7600 -198 1267 3.7890 0.4127 1.7600 -198 1268 3.8512 0.4116 1.7600 -198 1269 3.9125 0.4126 1.7600 -198 1270 3.9710 0.4132 1.7600 -198 1271 4.0304 0.4124 1.7600 -198 1272 4.0945 0.4107 1.7600 -198 1273 4.1633 0.4077 1.7600 -198 1274 4.2285 0.3982 1.7600 -198 1275 4.2938 0.3870 1.7600 -198 1276 4.3581 0.3692 1.7600 -198 1277 4.4187 0.3463 1.7600 -198 1278 4.4749 0.3213 1.7600 -198 1279 4.5293 0.2954 1.7600 -198 1280 4.5845 0.2691 1.7600 -198 1281 4.6427 0.2410 1.7600 -198 1282 4.7040 0.2098 1.7600 -198 1283 4.7645 0.1805 1.7600 -198 1284 4.8274 0.1562 1.7600 -198 1285 4.8896 0.1398 1.7600 -198 1286 4.9470 0.1292 1.7600 -198 1287 5.0000 0.1217 1.7600 -198 1288 5.0544 0.1153 1.7600 -198 1289 5.1126 0.1096 1.7600 -198 1290 5.1747 0.1059 1.7600 -198 1291 5.2430 0.1008 1.7600 -198 1292 5.3102 0.0923 1.7600 -198 1293 5.3781 0.0777 1.7600 -198 1294 5.4419 0.0569 1.7600 -198 1295 5.5001 0.0336 1.7600 -198 1296 5.5551 0.0095 1.7600 -198 1297 5.6103 -0.0137 1.7600 -198 1298 5.6674 -0.0350 1.7600 -198 1299 5.7274 -0.0574 1.7600 -198 1300 5.7926 -0.0807 1.7600 -198 1301 5.8597 -0.1004 1.7600 -198 1302 5.9264 -0.1127 1.7600 -199 1086 -7.8046 2.1503 1.7600 -199 1087 -7.7476 2.1563 1.7600 -199 1088 -7.6894 2.1657 1.7600 -199 1089 -7.6316 2.1782 1.7600 -199 1090 -7.5795 2.1930 1.7600 -199 1091 -7.5339 2.2117 1.7600 -199 1092 -7.4909 2.2349 1.7600 -199 1093 -7.4453 2.2555 1.7600 -199 1094 -7.3989 2.2668 1.7600 -199 1095 -7.3509 2.2703 1.7600 -199 1096 -7.3002 2.2701 1.7600 -199 1097 -7.2465 2.2668 1.7600 -199 1098 -7.1915 2.2594 1.7600 -199 1099 -7.1371 2.2491 1.7600 -199 1100 -7.0843 2.2357 1.7600 -199 1101 -7.0362 2.2174 1.7600 -199 1102 -6.9878 2.1928 1.7600 -199 1103 -6.9387 2.1715 1.7600 -199 1104 -6.8899 2.1583 1.7600 -199 1105 -6.8416 2.1515 1.7600 -199 1106 -6.7925 2.1455 1.7600 -199 1107 -6.7480 2.1475 1.7600 -199 1108 -6.6986 2.1414 1.7600 -199 1109 -6.6499 2.1357 1.7600 -199 1110 -6.6056 2.1312 1.7600 -199 1111 -6.5601 2.1338 1.7600 -199 1112 -6.5157 2.1426 1.7600 -199 1113 -6.4653 2.1493 1.7600 -199 1114 -6.4204 2.1486 1.7600 -199 1115 -6.3758 2.1393 1.7600 -199 1116 -6.3226 2.1191 1.7600 -199 1117 -6.2830 2.1016 1.7600 -199 1118 -6.2365 2.0797 1.7600 -199 1119 -6.1915 2.0585 1.7600 -199 1120 -6.1491 2.0366 1.7600 -199 1121 -6.1122 2.0127 1.7600 -199 1122 -6.0751 1.9823 1.7600 -199 1123 -6.0396 1.9578 1.7600 -199 1124 -6.0028 1.9327 1.7600 -199 1125 -5.9688 1.9097 1.7600 -199 1126 -5.9268 1.8915 1.7600 -199 1127 -5.8859 1.8806 1.7600 -199 1128 -5.8408 1.8732 1.7600 -199 1129 -5.8020 1.8636 1.7600 -199 1130 -5.7640 1.8554 1.7600 -199 1131 -5.7251 1.8507 1.7600 -199 1132 -5.6891 1.8540 1.7600 -199 1133 -5.6534 1.8571 1.7600 -199 1134 -5.6171 1.8579 1.7600 -199 1135 -5.5741 1.8569 1.7600 -199 1136 -5.5350 1.8466 1.7600 -199 1137 -5.4995 1.8299 1.7600 -199 1138 -5.4632 1.8148 1.7600 -199 1139 -5.4240 1.8025 1.7600 -199 1140 -5.3831 1.7908 1.7600 -199 1141 -5.3460 1.7728 1.7600 -199 1142 -5.3131 1.7530 1.7600 -199 1143 -5.2817 1.7306 1.7600 -199 1144 -5.2503 1.7071 1.7600 -199 1145 -5.2149 1.6865 1.7600 -199 1146 -5.1762 1.6698 1.7600 -199 1147 -5.1376 1.6567 1.7600 -199 1148 -5.1021 1.6445 1.7600 -199 1149 -5.0647 1.6352 1.7600 -199 1150 -5.0241 1.6302 1.7600 -199 1151 -4.9821 1.6275 1.7600 -199 1152 -4.9413 1.6254 1.7600 -199 1153 -4.8986 1.6277 1.7600 -199 1154 -4.8568 1.6348 1.7600 -199 1155 -4.8165 1.6443 1.7600 -199 1156 -4.7772 1.6566 1.7600 -199 1157 -4.7348 1.6648 1.7600 -199 1158 -4.6897 1.6647 1.7600 -199 1159 -4.6465 1.6586 1.7600 -199 1160 -4.6069 1.6462 1.7600 -199 1161 -4.5670 1.6339 1.7600 -199 1162 -4.5232 1.6192 1.7600 -199 1163 -4.4832 1.6021 1.7600 -199 1164 -4.4454 1.5814 1.7600 -199 1165 -4.4133 1.5571 1.7600 -199 1166 -4.3799 1.5333 1.7600 -199 1167 -4.3451 1.5157 1.7600 -199 1168 -4.3079 1.5006 1.7600 -199 1169 -4.2663 1.4900 1.7600 -199 1170 -4.2199 1.4829 1.7600 -199 1171 -4.1794 1.4774 1.7600 -199 1172 -4.1400 1.4740 1.7600 -199 1173 -4.0949 1.4699 1.7600 -199 1174 -4.0514 1.4728 1.7600 -199 1175 -4.0060 1.4820 1.7600 -199 1176 -3.9604 1.4959 1.7600 -199 1177 -3.9157 1.5099 1.7600 -199 1178 -3.8704 1.5207 1.7600 -199 1179 -3.8279 1.5268 1.7600 -199 1180 -3.7817 1.5272 1.7600 -199 1181 -3.7346 1.5246 1.7600 -199 1182 -3.6891 1.5187 1.7600 -199 1183 -3.6447 1.5098 1.7600 -199 1184 -3.6039 1.4975 1.7600 -199 1185 -3.5619 1.4829 1.7600 -199 1186 -3.5211 1.4682 1.7600 -199 1187 -3.4811 1.4526 1.7600 -199 1188 -3.4404 1.4383 1.7600 -199 1189 -3.3964 1.4283 1.7600 -199 1190 -3.3478 1.4236 1.7600 -199 1191 -3.2981 1.4254 1.7600 -199 1192 -3.2514 1.4302 1.7600 -199 1193 -3.2074 1.4384 1.7600 -199 1194 -3.1617 1.4480 1.7600 -199 1195 -3.1163 1.4595 1.7600 -199 1196 -3.0703 1.4783 1.7600 -199 1197 -3.0250 1.4967 1.7600 -199 1198 -2.9794 1.5163 1.7600 -199 1199 -2.9348 1.5334 1.7600 -199 1200 -2.8917 1.5463 1.7600 -199 1201 -2.8441 1.5551 1.7600 -199 1202 -2.7981 1.5570 1.7600 -199 1203 -2.7511 1.5564 1.7600 -199 1204 -2.7062 1.5526 1.7600 -199 1205 -2.6630 1.5448 1.7600 -199 1206 -2.6216 1.5374 1.7600 -199 1207 -2.5752 1.5263 1.7600 -199 1208 -2.5273 1.5137 1.7600 -199 1209 -2.4822 1.5007 1.7600 -199 1210 -2.4362 1.4899 1.7600 -199 1211 -2.3903 1.4840 1.7600 -199 1212 -2.3411 1.4815 1.7600 -199 1213 -2.2902 1.4827 1.7600 -199 1214 -2.2434 1.4854 1.7600 -199 1215 -2.1963 1.4896 1.7600 -199 1216 -2.1473 1.4943 1.7600 -199 1217 -2.0961 1.5010 1.7600 -199 1218 -2.0442 1.5129 1.7600 -199 1219 -1.9944 1.5290 1.7600 -199 1220 -1.9432 1.5436 1.7600 -199 1221 -1.8856 1.5463 1.7600 -199 1222 -1.8315 1.5443 1.7600 -199 1223 -1.7763 1.5367 1.7600 -199 1224 -1.7211 1.5253 1.7600 -199 1225 -1.6668 1.5109 1.7600 -199 1226 -1.6138 1.4953 1.7600 -199 1227 -1.5606 1.4793 1.7600 -199 1228 -1.5073 1.4614 1.7600 -199 1229 -1.4556 1.4413 1.7600 -199 1230 -1.4027 1.4250 1.7600 -199 1231 -1.3465 1.4167 1.7600 -199 1232 -1.2879 1.4134 1.7600 -199 1233 -1.2296 1.4137 1.7600 -199 1234 -1.1726 1.4182 1.7600 -199 1235 -1.1157 1.4264 1.7600 -199 1236 -1.0589 1.4376 1.7600 -199 1237 -1.0038 1.4547 1.7600 -199 1238 -0.9506 1.4770 1.7600 -199 1239 -0.8977 1.4990 1.7600 -199 1240 -0.8439 1.5150 1.7600 -199 1241 -0.7888 1.5215 1.7600 -199 1242 -0.7325 1.5227 1.7600 -199 1243 -0.6747 1.5204 1.7600 -199 1244 -0.6179 1.5151 1.7600 -199 1245 -0.5605 1.5071 1.7600 -199 1246 -0.5040 1.4965 1.7600 -199 1247 -0.4510 1.4831 1.7600 -199 1248 -0.4029 1.4688 1.7600 -199 1249 -0.3537 1.4526 1.7600 -199 1250 -0.2985 1.4455 1.7600 -199 1251 -0.2403 1.4454 1.7600 -199 1252 -0.1804 1.4483 1.7600 -199 1253 -0.1223 1.4545 1.7600 -199 1254 -0.0640 1.4628 1.7600 -199 1255 -0.0078 1.4731 1.7600 -199 1256 0.0488 1.4886 1.7600 -199 1257 0.1034 1.5043 1.7600 -199 1258 0.1568 1.5237 1.7600 -199 1259 0.2113 1.5436 1.7600 -199 1260 0.2698 1.5593 1.7600 -199 1261 0.3293 1.5649 1.7600 -199 1262 0.3844 1.5645 1.7600 -199 1263 0.4412 1.5582 1.7600 -199 1264 0.4956 1.5527 1.7600 -199 1265 0.5505 1.5427 1.7600 -199 1266 0.6073 1.5298 1.7600 -199 1267 0.6660 1.5162 1.7600 -199 1268 0.7232 1.4998 1.7600 -199 1269 0.7771 1.4854 1.7600 -199 1270 0.8291 1.4791 1.7600 -199 1271 0.8806 1.4751 1.7600 -199 1272 0.9300 1.4774 1.7600 -199 1273 0.9804 1.4784 1.7600 -199 1274 1.0334 1.4841 1.7600 -199 1275 1.0869 1.4885 1.7600 -199 1276 1.1401 1.4986 1.7600 -199 1277 1.1909 1.5135 1.7600 -199 1278 1.2389 1.5313 1.7600 -199 1279 1.2868 1.5447 1.7600 -199 1280 1.3394 1.5506 1.7600 -199 1281 1.3907 1.5502 1.7600 -199 1282 1.4449 1.5442 1.7600 -199 1283 1.4983 1.5340 1.7600 -199 1284 1.5535 1.5244 1.7600 -199 1285 1.6083 1.5131 1.7600 -199 1286 1.6624 1.5002 1.7600 -199 1287 1.7142 1.4849 1.7600 -199 1288 1.7647 1.4668 1.7600 -199 1289 1.8214 1.4527 1.7600 -199 1290 1.8784 1.4453 1.7600 -199 1291 1.9383 1.4435 1.7600 -199 1292 1.9958 1.4448 1.7600 -199 1293 2.0497 1.4505 1.7600 -199 1294 2.1018 1.4561 1.7600 -199 1295 2.1547 1.4660 1.7600 -199 1296 2.2090 1.4785 1.7600 -199 1297 2.2652 1.4964 1.7600 -199 1298 2.3202 1.5115 1.7600 -199 1299 2.3757 1.5210 1.7600 -199 1300 2.4350 1.5244 1.7600 -199 1301 2.4941 1.5218 1.7600 -199 1302 2.5527 1.5157 1.7600 -199 1303 2.6095 1.5085 1.7600 -199 1304 2.6680 1.5007 1.7600 -199 1305 2.7258 1.4902 1.7600 -199 1306 2.7869 1.4788 1.7600 -199 1307 2.8471 1.4652 1.7600 -199 1308 2.9065 1.4542 1.7600 -199 1309 2.9667 1.4489 1.7600 -199 1310 3.0278 1.4511 1.7600 -199 1311 3.0870 1.4562 1.7600 -199 1312 3.1392 1.4637 1.7600 -199 1313 3.1927 1.4718 1.7600 -199 1314 3.2484 1.4829 1.7600 -199 1315 3.3051 1.4995 1.7600 -199 1316 3.3613 1.5205 1.7600 -199 1317 3.4186 1.5424 1.7600 -199 1318 3.4773 1.5591 1.7600 -199 1319 3.5372 1.5707 1.7600 -199 1320 3.5952 1.5732 1.7600 -199 1321 3.6540 1.5710 1.7600 -199 1322 3.7108 1.5686 1.7600 -199 1323 3.7649 1.5640 1.7600 -199 1324 3.8219 1.5589 1.7600 -199 1325 3.8836 1.5540 1.7600 -199 1326 3.9517 1.5418 1.7600 -199 1327 4.0051 1.5369 1.7600 -199 1328 4.0689 1.5345 1.7600 -199 1329 4.1319 1.5363 1.7600 -199 1330 4.1902 1.5411 1.7600 -199 1331 4.2474 1.5487 1.7600 -199 1332 4.3044 1.5579 1.7600 -199 1333 4.3639 1.5692 1.7600 -199 1334 4.4253 1.5821 1.7600 -199 1335 4.4872 1.6011 1.7600 -199 1336 4.5511 1.6166 1.7600 -199 1337 4.6142 1.6268 1.7600 -199 1338 4.6754 1.6278 1.7600 -199 1339 4.7341 1.6250 1.7600 -199 1340 4.7893 1.6200 1.7600 -199 1341 4.8463 1.6113 1.7600 -199 1342 4.9016 1.6028 1.7600 -199 1343 4.9622 1.5941 1.7600 -199 1344 5.0262 1.5816 1.7600 -199 1345 5.0902 1.5652 1.7600 -199 1346 5.1599 1.5545 1.7600 -199 1347 5.2249 1.5535 1.7600 -199 1348 5.2888 1.5567 1.7600 -199 1349 5.3501 1.5631 1.7600 -199 1350 5.4076 1.5717 1.7600 -199 1351 5.4673 1.5815 1.7600 -199 1352 5.5309 1.5945 1.7600 -199 1353 5.5960 1.6115 1.7600 -199 1354 5.6590 1.6315 1.7600 -199 1355 5.7219 1.6480 1.7600 -199 1356 5.7865 1.6567 1.7600 -199 1357 5.8483 1.6576 1.7600 -199 1358 5.9066 1.6529 1.7600 -200 1096 -7.8162 1.4798 1.7600 -200 1097 -7.7718 1.4754 1.7600 -200 1098 -7.7226 1.4733 1.7600 -200 1099 -7.6700 1.4706 1.7600 -200 1100 -7.6157 1.4678 1.7600 -200 1101 -7.5601 1.4667 1.7600 -200 1102 -7.5084 1.4718 1.7600 -200 1103 -7.4638 1.4848 1.7600 -200 1104 -7.4270 1.5009 1.7600 -200 1105 -7.3972 1.5112 1.7600 -200 1106 -7.3684 1.5104 1.7600 -200 1107 -7.3374 1.5003 1.7600 -200 1108 -7.3039 1.4834 1.7600 -200 1109 -7.2701 1.4627 1.7600 -200 1110 -7.2344 1.4380 1.7600 -200 1111 -7.1973 1.4081 1.7600 -200 1112 -7.1616 1.3728 1.7600 -200 1113 -7.1299 1.3371 1.7600 -200 1114 -7.1040 1.3079 1.7600 -200 1115 -7.0781 1.2870 1.7600 -200 1116 -7.0468 1.2702 1.7600 -200 1117 -7.0080 1.2542 1.7600 -200 1118 -6.9697 1.2422 1.7600 -200 1119 -6.9288 1.2337 1.7600 -200 1120 -6.8883 1.2276 1.7600 -200 1121 -6.8449 1.2245 1.7600 -200 1122 -6.8012 1.2266 1.7600 -200 1123 -6.7581 1.2332 1.7600 -200 1124 -6.7174 1.2453 1.7600 -200 1125 -6.6825 1.2553 1.7600 -200 1126 -6.6493 1.2631 1.7600 -200 1127 -6.6207 1.2620 1.7600 -200 1128 -6.5920 1.2553 1.7600 -200 1129 -6.5596 1.2447 1.7600 -200 1130 -6.5280 1.2352 1.7600 -200 1131 -6.4924 1.2213 1.7600 -200 1132 -6.4560 1.2050 1.7600 -200 1133 -6.4143 1.1820 1.7600 -200 1134 -6.3760 1.1582 1.7600 -200 1135 -6.3381 1.1323 1.7600 -200 1136 -6.3022 1.1158 1.7600 -200 1137 -6.2646 1.1069 1.7600 -200 1138 -6.2247 1.1017 1.7600 -200 1139 -6.1766 1.0972 1.7600 -200 1140 -6.1239 1.0966 1.7600 -200 1141 -6.0749 1.1011 1.7600 -200 1142 -6.0245 1.1086 1.7600 -200 1143 -5.9829 1.1186 1.7600 -200 1144 -5.9390 1.1297 1.7600 -200 1145 -5.9041 1.1392 1.7600 -200 1146 -5.8770 1.1487 1.7600 -200 1147 -5.8548 1.1537 1.7600 -200 1148 -5.8302 1.1539 1.7600 -200 1149 -5.8064 1.1489 1.7600 -200 1150 -5.7837 1.1419 1.7600 -200 1151 -5.7570 1.1336 1.7600 -200 1152 -5.7249 1.1239 1.7600 -200 1153 -5.6832 1.1104 1.7600 -200 1154 -5.6413 1.0934 1.7600 -200 1155 -5.5984 1.0708 1.7600 -200 1156 -5.5502 1.0476 1.7600 -200 1157 -5.4977 1.0281 1.7600 -200 1158 -5.4465 1.0198 1.7600 -200 1159 -5.3987 1.0135 1.7600 -200 1160 -5.3554 1.0095 1.7600 -200 1161 -5.3167 1.0056 1.7600 -200 1162 -5.2796 1.0027 1.7600 -200 1163 -5.2436 1.0015 1.7600 -200 1164 -5.2046 1.0024 1.7600 -200 1165 -5.1628 1.0112 1.7600 -200 1166 -5.1251 1.0273 1.7600 -200 1167 -5.0910 1.0509 1.7600 -200 1168 -5.0591 1.0700 1.7600 -200 1169 -5.0298 1.0784 1.7600 -200 1170 -4.9970 1.0766 1.7600 -200 1171 -4.9648 1.0685 1.7600 -200 1172 -4.9283 1.0599 1.7600 -200 1173 -4.8906 1.0478 1.7600 -200 1174 -4.8486 1.0324 1.7600 -200 1175 -4.8031 1.0139 1.7600 -200 1176 -4.7604 0.9903 1.7600 -200 1177 -4.7248 0.9646 1.7600 -200 1178 -4.6920 0.9440 1.7600 -200 1179 -4.6596 0.9298 1.7600 -200 1180 -4.6290 0.9189 1.7600 -200 1181 -4.5930 0.9115 1.7600 -200 1182 -4.5607 0.9061 1.7600 -200 1183 -4.5277 0.9042 1.7600 -200 1184 -4.4900 0.9075 1.7600 -200 1185 -4.4474 0.9172 1.7600 -200 1186 -4.3941 0.9321 1.7600 -200 1187 -4.3458 0.9543 1.7600 -200 1188 -4.2980 0.9777 1.7600 -200 1189 -4.2571 0.9955 1.7600 -200 1190 -4.2233 1.0104 1.7600 -200 1191 -4.1859 1.0193 1.7600 -200 1192 -4.1493 1.0234 1.7600 -200 1193 -4.1128 1.0181 1.7600 -200 1194 -4.0754 1.0132 1.7600 -200 1195 -4.0386 1.0059 1.7600 -200 1196 -4.0024 0.9922 1.7600 -200 1197 -3.9605 0.9757 1.7600 -200 1198 -3.9252 0.9507 1.7600 -200 1199 -3.8825 0.9155 1.7600 -200 1200 -3.8396 0.8801 1.7600 -200 1201 -3.8020 0.8521 1.7600 -200 1202 -3.7599 0.8354 1.7600 -200 1203 -3.7172 0.8267 1.7600 -200 1204 -3.6706 0.8242 1.7600 -200 1205 -3.6212 0.8304 1.7600 -200 1206 -3.5738 0.8385 1.7600 -200 1207 -3.5236 0.8484 1.7600 -200 1208 -3.4727 0.8606 1.7600 -200 1209 -3.4201 0.8762 1.7600 -200 1210 -3.3740 0.8974 1.7600 -200 1211 -3.3271 0.9164 1.7600 -200 1212 -3.2857 0.9297 1.7600 -200 1213 -3.2469 0.9338 1.7600 -200 1214 -3.2075 0.9359 1.7600 -200 1215 -3.1666 0.9319 1.7600 -200 1216 -3.1237 0.9227 1.7600 -200 1217 -3.0777 0.9124 1.7600 -200 1218 -3.0270 0.9003 1.7600 -200 1219 -2.9723 0.8861 1.7600 -200 1220 -2.9187 0.8707 1.7600 -200 1221 -2.8663 0.8550 1.7600 -200 1222 -2.8271 0.8410 1.7600 -200 1223 -2.7860 0.8285 1.7600 -200 1224 -2.7384 0.8246 1.7600 -200 1225 -2.6853 0.8275 1.7600 -200 1226 -2.6289 0.8367 1.7600 -200 1227 -2.5713 0.8472 1.7600 -200 1228 -2.5132 0.8624 1.7600 -200 1229 -2.4533 0.8832 1.7600 -200 1230 -2.3922 0.9038 1.7600 -200 1231 -2.3345 0.9232 1.7600 -200 1232 -2.2798 0.9349 1.7600 -200 1233 -2.2264 0.9413 1.7600 -200 1234 -2.1707 0.9448 1.7600 -200 1235 -2.1171 0.9496 1.7600 -200 1236 -2.0639 0.9535 1.7600 -200 1237 -2.0115 0.9562 1.7600 -200 1238 -1.9613 0.9622 1.7600 -200 1239 -1.9151 0.9709 1.7600 -200 1240 -1.8686 0.9775 1.7600 -200 1241 -1.8277 0.9842 1.7600 -200 1242 -1.7858 0.9906 1.7600 -200 1243 -1.7422 0.9959 1.7600 -200 1244 -1.7031 1.0025 1.7600 -200 1245 -1.6651 1.0131 1.7600 -200 1246 -1.6275 1.0240 1.7600 -200 1247 -1.5844 1.0405 1.7600 -200 1248 -1.5420 1.0629 1.7600 -200 1249 -1.4932 1.0907 1.7600 -200 1250 -1.4395 1.1250 1.7600 -200 1251 -1.3828 1.1629 1.7600 -200 1252 -1.3271 1.1910 1.7600 -200 1253 -1.2730 1.2118 1.7600 -200 1254 -1.2207 1.2251 1.7600 -200 1255 -1.1697 1.2323 1.7600 -200 1256 -1.1214 1.2373 1.7600 -200 1257 -1.0730 1.2403 1.7600 -200 1258 -1.0290 1.2457 1.7600 -200 1259 -0.9884 1.2510 1.7600 -200 1260 -0.9522 1.2517 1.7600 -200 1261 -0.9185 1.2482 1.7600 -200 1262 -0.8797 1.2519 1.7600 -200 1263 -0.8392 1.2616 1.7600 -200 1264 -0.7989 1.2776 1.7600 -200 1265 -0.7567 1.2966 1.7600 -200 1266 -0.7124 1.3176 1.7600 -200 1267 -0.6625 1.3435 1.7600 -200 1268 -0.6116 1.3729 1.7600 -200 1269 -0.5623 1.4028 1.7600 -200 1270 -0.5166 1.4254 1.7600 -200 1271 -0.4704 1.4352 1.7600 -200 1272 -0.4222 1.4364 1.7600 -200 1273 -0.3766 1.4362 1.7600 -200 1274 -0.3268 1.4343 1.7600 -200 1275 -0.2743 1.4288 1.7600 -200 1276 -0.2221 1.4187 1.7600 -200 1277 -0.1692 1.4067 1.7600 -200 1278 -0.1229 1.3947 1.7600 -200 1279 -0.0816 1.3880 1.7600 -200 1280 -0.0384 1.3875 1.7600 -200 1281 0.0149 1.3922 1.7600 -200 1282 0.0679 1.3970 1.7600 -200 1283 0.1249 1.4024 1.7600 -200 1284 0.1844 1.4106 1.7600 -200 1285 0.2467 1.4244 1.7600 -200 1286 0.3122 1.4420 1.7600 -200 1287 0.3855 1.4657 1.7600 -200 1288 0.4593 1.4866 1.7600 -200 1289 0.5274 1.4950 1.7600 -200 1290 0.5892 1.5010 1.7600 -200 1291 0.6518 1.4977 1.7600 -200 1292 0.7145 1.4932 1.7600 -200 1293 0.7790 1.4845 1.7600 -200 1294 0.8455 1.4751 1.7600 -200 1295 0.9137 1.4596 1.7600 -200 1296 0.9801 1.4429 1.7600 -200 1297 1.0379 1.4343 1.7600 -200 1298 1.0941 1.4337 1.7600 -200 1299 1.1511 1.4402 1.7600 -200 1300 1.2127 1.4490 1.7600 -200 1301 1.2766 1.4584 1.7600 -200 1302 1.3433 1.4701 1.7600 -200 1303 1.4130 1.4852 1.7600 -200 1304 1.4837 1.5047 1.7600 -200 1305 1.5487 1.5263 1.7600 -200 1306 1.6061 1.5407 1.7600 -200 1307 1.6592 1.5468 1.7600 -200 1308 1.7137 1.5416 1.7600 -200 1309 1.7701 1.5338 1.7600 -200 1310 1.8311 1.5243 1.7600 -200 1311 1.8943 1.5140 1.7600 -200 1312 1.9591 1.5005 1.7600 -200 1313 2.0307 1.4843 1.7600 -200 1314 2.1015 1.4713 1.7600 -200 1315 2.1699 1.4633 1.7600 -200 1316 2.2385 1.4650 1.7600 -200 1317 2.3021 1.4744 1.7600 -200 1318 2.3685 1.4893 1.7600 -200 1319 2.4322 1.5026 1.7600 -200 1320 2.4979 1.5185 1.7600 -200 1321 2.5674 1.5371 1.7600 -200 1322 2.6404 1.5566 1.7600 -200 1323 2.7041 1.5654 1.7600 -200 1324 2.7609 1.5672 1.7600 -200 1325 2.8181 1.5596 1.7600 -200 1326 2.8740 1.5494 1.7600 -200 1327 2.9296 1.5337 1.7600 -200 1328 2.9864 1.5161 1.7600 -200 1329 3.0450 1.4991 1.7600 -200 1330 3.0985 1.4822 1.7600 -200 1331 3.1510 1.4663 1.7600 -200 1332 3.2085 1.4557 1.7600 -200 1333 3.2712 1.4546 1.7600 -200 1334 3.3298 1.4584 1.7600 -200 1335 3.3874 1.4642 1.7600 -200 1336 3.4436 1.4732 1.7600 -200 1337 3.5043 1.4831 1.7600 -200 1338 3.5647 1.4957 1.7600 -200 1339 3.6305 1.5131 1.7600 -200 1340 3.6912 1.5268 1.7600 -200 1341 3.7468 1.5342 1.7600 -200 1342 3.8020 1.5337 1.7600 -200 1343 3.8615 1.5293 1.7600 -200 1344 3.9236 1.5247 1.7600 -200 1345 3.9861 1.5175 1.7600 -200 1346 4.0479 1.5102 1.7600 -200 1347 4.1089 1.4979 1.7600 -200 1348 4.1721 1.4874 1.7600 -200 1349 4.2314 1.4821 1.7600 -200 1350 4.2935 1.4801 1.7600 -200 1351 4.3539 1.4847 1.7600 -200 1352 4.4105 1.4902 1.7600 -200 1353 4.4691 1.4932 1.7600 -200 1354 4.5354 1.4959 1.7600 -200 1355 4.6023 1.5012 1.7600 -200 1356 4.6723 1.5086 1.7600 -200 1357 4.7370 1.5201 1.7600 -200 1358 4.7988 1.5285 1.7600 -200 1359 4.8599 1.5298 1.7600 -200 1360 4.9203 1.5213 1.7600 -200 1361 4.9781 1.5119 1.7600 -200 1362 5.0385 1.4998 1.7600 -200 1363 5.1043 1.4869 1.7600 -200 1364 5.1684 1.4755 1.7600 -200 1365 5.2352 1.4688 1.7600 -200 1366 5.3006 1.4659 1.7600 -200 1367 5.3630 1.4731 1.7600 -200 1368 5.4314 1.4890 1.7600 -200 1369 5.4972 1.5069 1.7600 -200 1370 5.5591 1.5219 1.7600 -200 1371 5.6189 1.5350 1.7600 -200 1372 5.6836 1.5468 1.7600 -200 1373 5.7529 1.5601 1.7600 -200 1374 5.8257 1.5718 1.7600 -200 1375 5.8937 1.5806 1.7600 -201 1107 -7.8163 1.7155 1.7600 -201 1108 -7.7652 1.7027 1.7600 -201 1109 -7.7192 1.6891 1.7600 -201 1110 -7.6799 1.6758 1.7600 -201 1111 -7.6427 1.6687 1.7600 -201 1112 -7.6018 1.6671 1.7600 -201 1113 -7.5569 1.6670 1.7600 -201 1114 -7.5131 1.6665 1.7600 -201 1115 -7.4741 1.6675 1.7600 -201 1116 -7.4448 1.6718 1.7600 -201 1117 -7.4211 1.6796 1.7600 -201 1118 -7.3937 1.6943 1.7600 -201 1119 -7.3625 1.7132 1.7600 -201 1120 -7.3302 1.7343 1.7600 -201 1121 -7.3001 1.7545 1.7600 -201 1122 -7.2641 1.7713 1.7600 -201 1123 -7.2260 1.7846 1.7600 -201 1124 -7.1881 1.7928 1.7600 -201 1125 -7.1504 1.7968 1.7600 -201 1126 -7.1124 1.7969 1.7600 -201 1127 -7.0716 1.7924 1.7600 -201 1128 -7.0309 1.7845 1.7600 -201 1129 -6.9876 1.7708 1.7600 -201 1130 -6.9532 1.7571 1.7600 -201 1131 -6.9165 1.7376 1.7600 -201 1132 -6.8848 1.7128 1.7600 -201 1133 -6.8528 1.6875 1.7600 -201 1134 -6.8230 1.6658 1.7600 -201 1135 -6.7907 1.6448 1.7600 -201 1136 -6.7566 1.6309 1.7600 -201 1137 -6.7231 1.6200 1.7600 -201 1138 -6.6873 1.6104 1.7600 -201 1139 -6.6523 1.6024 1.7600 -201 1140 -6.6138 1.5966 1.7600 -201 1141 -6.5750 1.5937 1.7600 -201 1142 -6.5335 1.5934 1.7600 -201 1143 -6.4923 1.5964 1.7600 -201 1144 -6.4512 1.6039 1.7600 -201 1145 -6.4125 1.6147 1.7600 -201 1146 -6.3754 1.6283 1.7600 -201 1147 -6.3384 1.6401 1.7600 -201 1148 -6.3012 1.6471 1.7600 -201 1149 -6.2624 1.6519 1.7600 -201 1150 -6.2266 1.6537 1.7600 -201 1151 -6.1927 1.6571 1.7600 -201 1152 -6.1633 1.6604 1.7600 -201 1153 -6.1342 1.6598 1.7600 -201 1154 -6.1054 1.6574 1.7600 -201 1155 -6.0799 1.6537 1.7600 -201 1156 -6.0509 1.6476 1.7600 -201 1157 -6.0258 1.6384 1.7600 -201 1158 -6.0025 1.6264 1.7600 -201 1159 -5.9776 1.6127 1.7600 -201 1160 -5.9558 1.5964 1.7600 -201 1161 -5.9321 1.5799 1.7600 -201 1162 -5.9028 1.5623 1.7600 -201 1163 -5.8731 1.5484 1.7600 -201 1164 -5.8411 1.5370 1.7600 -201 1165 -5.8057 1.5287 1.7600 -201 1166 -5.7704 1.5238 1.7600 -201 1167 -5.7348 1.5221 1.7600 -201 1168 -5.6983 1.5213 1.7600 -201 1169 -5.6604 1.5215 1.7600 -201 1170 -5.6248 1.5231 1.7600 -201 1171 -5.5895 1.5309 1.7600 -201 1172 -5.5559 1.5439 1.7600 -201 1173 -5.5200 1.5580 1.7600 -201 1174 -5.4824 1.5687 1.7600 -201 1175 -5.4434 1.5803 1.7600 -201 1176 -5.4040 1.5875 1.7600 -201 1177 -5.3645 1.5920 1.7600 -201 1178 -5.3267 1.5952 1.7600 -201 1179 -5.2947 1.5995 1.7600 -201 1180 -5.2665 1.6023 1.7600 -201 1181 -5.2355 1.6040 1.7600 -201 1182 -5.2019 1.6040 1.7600 -201 1183 -5.1695 1.6019 1.7600 -201 1184 -5.1348 1.5979 1.7600 -201 1185 -5.1038 1.5894 1.7600 -201 1186 -5.0720 1.5779 1.7600 -201 1187 -5.0371 1.5640 1.7600 -201 1188 -5.0015 1.5430 1.7600 -201 1189 -4.9658 1.5258 1.7600 -201 1190 -4.9317 1.5092 1.7600 -201 1191 -4.8976 1.4973 1.7600 -201 1192 -4.8635 1.4865 1.7600 -201 1193 -4.8295 1.4807 1.7600 -201 1194 -4.7924 1.4779 1.7600 -201 1195 -4.7546 1.4759 1.7600 -201 1196 -4.7158 1.4760 1.7600 -201 1197 -4.6770 1.4824 1.7600 -201 1198 -4.6400 1.4916 1.7600 -201 1199 -4.6030 1.5099 1.7600 -201 1200 -4.5681 1.5318 1.7600 -201 1201 -4.5333 1.5520 1.7600 -201 1202 -4.4974 1.5726 1.7600 -201 1203 -4.4625 1.5883 1.7600 -201 1204 -4.4247 1.5979 1.7600 -201 1205 -4.3868 1.6041 1.7600 -201 1206 -4.3535 1.6117 1.7600 -201 1207 -4.3241 1.6175 1.7600 -201 1208 -4.2916 1.6181 1.7600 -201 1209 -4.2580 1.6126 1.7600 -201 1210 -4.2226 1.6024 1.7600 -201 1211 -4.1913 1.5881 1.7600 -201 1212 -4.1622 1.5703 1.7600 -201 1213 -4.1348 1.5477 1.7600 -201 1214 -4.1046 1.5219 1.7600 -201 1215 -4.0732 1.4965 1.7600 -201 1216 -4.0421 1.4752 1.7600 -201 1217 -4.0063 1.4570 1.7600 -201 1218 -3.9709 1.4412 1.7600 -201 1219 -3.9363 1.4269 1.7600 -201 1220 -3.8956 1.4153 1.7600 -201 1221 -3.8583 1.4048 1.7600 -201 1222 -3.8246 1.3973 1.7600 -201 1223 -3.7874 1.3901 1.7600 -201 1224 -3.7491 1.3878 1.7600 -201 1225 -3.7116 1.3902 1.7600 -201 1226 -3.6691 1.3951 1.7600 -201 1227 -3.6299 1.4057 1.7600 -201 1228 -3.5922 1.4173 1.7600 -201 1229 -3.5554 1.4304 1.7600 -201 1230 -3.5210 1.4407 1.7600 -201 1231 -3.4849 1.4437 1.7600 -201 1232 -3.4443 1.4437 1.7600 -201 1233 -3.3983 1.4434 1.7600 -201 1234 -3.3498 1.4401 1.7600 -201 1235 -3.3047 1.4441 1.7600 -201 1236 -3.2652 1.4511 1.7600 -201 1237 -3.2253 1.4560 1.7600 -201 1238 -3.1850 1.4584 1.7600 -201 1239 -3.1398 1.4561 1.7600 -201 1240 -3.0880 1.4460 1.7600 -201 1241 -3.0311 1.4278 1.7600 -201 1242 -2.9678 1.4096 1.7600 -201 1243 -2.9024 1.3911 1.7600 -201 1244 -2.8270 1.3721 1.7600 -201 1245 -2.7488 1.3613 1.7600 -201 1246 -2.6918 1.3602 1.7600 -201 1247 -2.6463 1.3688 1.7600 -201 1248 -2.6061 1.3759 1.7600 -201 1249 -2.5686 1.3860 1.7600 -201 1250 -2.5291 1.3992 1.7600 -201 1251 -2.4874 1.4244 1.7600 -201 1252 -2.4432 1.4467 1.7600 -201 1253 -2.3990 1.4677 1.7600 -201 1254 -2.3632 1.4861 1.7600 -201 1255 -2.3291 1.4978 1.7600 -201 1256 -2.2837 1.5029 1.7600 -201 1257 -2.2331 1.5021 1.7600 -201 1258 -2.1854 1.4978 1.7600 -201 1259 -2.1410 1.4958 1.7600 -201 1260 -2.0974 1.4937 1.7600 -201 1261 -2.0527 1.4924 1.7600 -201 1262 -2.0064 1.4876 1.7600 -201 1263 -1.9587 1.4768 1.7600 -201 1264 -1.9128 1.4582 1.7600 -201 1265 -1.8669 1.4388 1.7600 -201 1266 -1.8215 1.4215 1.7600 -201 1267 -1.7738 1.4083 1.7600 -201 1268 -1.7229 1.4032 1.7600 -201 1269 -1.6724 1.4098 1.7600 -201 1270 -1.6228 1.4238 1.7600 -201 1271 -1.5724 1.4395 1.7600 -201 1272 -1.5190 1.4519 1.7600 -201 1273 -1.4649 1.4586 1.7600 -201 1274 -1.4120 1.4668 1.7600 -201 1275 -1.3592 1.4811 1.7600 -201 1276 -1.3048 1.4981 1.7600 -201 1277 -1.2492 1.5117 1.7600 -201 1278 -1.1943 1.5183 1.7600 -201 1279 -1.1396 1.5188 1.7600 -201 1280 -1.0848 1.5136 1.7600 -201 1281 -1.0302 1.5058 1.7600 -201 1282 -0.9778 1.5004 1.7600 -201 1283 -0.9258 1.4992 1.7600 -201 1284 -0.8710 1.4974 1.7600 -201 1285 -0.8165 1.4946 1.7600 -201 1286 -0.7654 1.4888 1.7600 -201 1287 -0.7168 1.4790 1.7600 -201 1288 -0.6676 1.4660 1.7600 -201 1289 -0.6159 1.4524 1.7600 -201 1290 -0.5617 1.4399 1.7600 -201 1291 -0.5052 1.4330 1.7600 -201 1292 -0.4469 1.4321 1.7600 -201 1293 -0.3908 1.4349 1.7600 -201 1294 -0.3341 1.4391 1.7600 -201 1295 -0.2769 1.4438 1.7600 -201 1296 -0.2194 1.4472 1.7600 -201 1297 -0.1625 1.4519 1.7600 -201 1298 -0.1059 1.4614 1.7600 -201 1299 -0.0495 1.4762 1.7600 -201 1300 0.0087 1.4922 1.7600 -201 1301 0.0624 1.5045 1.7600 -201 1302 0.1118 1.5128 1.7600 -201 1303 0.1646 1.5171 1.7600 -201 1304 0.2185 1.5182 1.7600 -201 1305 0.2705 1.5209 1.7600 -201 1306 0.3235 1.5223 1.7600 -201 1307 0.3747 1.5212 1.7600 -201 1308 0.4255 1.5173 1.7600 -201 1309 0.4735 1.5106 1.7600 -201 1310 0.5241 1.5025 1.7600 -201 1311 0.5764 1.4911 1.7600 -201 1312 0.6332 1.4874 1.7600 -201 1313 0.6905 1.4853 1.7600 -201 1314 0.7510 1.4887 1.7600 -201 1315 0.8118 1.4930 1.7600 -201 1316 0.8737 1.4971 1.7600 -201 1317 0.9324 1.5060 1.7600 -201 1318 0.9893 1.5139 1.7600 -201 1319 1.0468 1.5263 1.7600 -201 1320 1.1030 1.5460 1.7600 -201 1321 1.1614 1.5663 1.7600 -201 1322 1.2170 1.5856 1.7600 -201 1323 1.2715 1.5948 1.7600 -201 1324 1.3252 1.5983 1.7600 -201 1325 1.3772 1.6048 1.7600 -201 1326 1.4299 1.6043 1.7600 -201 1327 1.4796 1.5944 1.7600 -201 1328 1.5297 1.5825 1.7600 -201 1329 1.5820 1.5653 1.7600 -201 1330 1.6348 1.5503 1.7600 -201 1331 1.6864 1.5339 1.7600 -201 1332 1.7435 1.5200 1.7600 -201 1333 1.8008 1.5045 1.7600 -201 1334 1.8576 1.4891 1.7600 -201 1335 1.9165 1.4786 1.7600 -201 1336 1.9741 1.4731 1.7600 -201 1337 2.0312 1.4700 1.7600 -201 1338 2.0887 1.4658 1.7600 -201 1339 2.1459 1.4613 1.7600 -201 1340 2.2038 1.4604 1.7600 -201 1341 2.2588 1.4641 1.7600 -201 1342 2.3188 1.4700 1.7600 -201 1343 2.3795 1.4763 1.7600 -201 1344 2.4362 1.4821 1.7600 -201 1345 2.4928 1.4815 1.7600 -201 1346 2.5484 1.4795 1.7600 -201 1347 2.6051 1.4769 1.7600 -201 1348 2.6592 1.4777 1.7600 -201 1349 2.7184 1.4777 1.7600 -201 1350 2.7754 1.4733 1.7600 -201 1351 2.8328 1.4662 1.7600 -201 1352 2.8864 1.4591 1.7600 -201 1353 2.9444 1.4512 1.7600 -201 1354 3.0037 1.4473 1.7600 -201 1355 3.0617 1.4431 1.7600 -201 1356 3.1219 1.4455 1.7600 -201 1357 3.1803 1.4494 1.7600 -201 1358 3.2361 1.4585 1.7600 -201 1359 3.2893 1.4618 1.7600 -201 1360 3.3411 1.4649 1.7600 -201 1361 3.3958 1.4732 1.7600 -201 1362 3.4497 1.4843 1.7600 -201 1363 3.5107 1.4989 1.7600 -201 1364 3.5711 1.5137 1.7600 -201 1365 3.6311 1.5242 1.7600 -201 1366 3.6883 1.5330 1.7600 -201 1367 3.7466 1.5328 1.7600 -201 1368 3.8053 1.5309 1.7600 -201 1369 3.8648 1.5280 1.7600 -201 1370 3.9208 1.5265 1.7600 -201 1371 3.9730 1.5220 1.7600 -201 1372 4.0273 1.5162 1.7600 -201 1373 4.0856 1.5120 1.7600 -201 1374 4.1499 1.5113 1.7600 -201 1375 4.2164 1.5131 1.7600 -201 1376 4.2816 1.5175 1.7600 -201 1377 4.3487 1.5239 1.7600 -201 1378 4.4165 1.5306 1.7600 -201 1379 4.4815 1.5415 1.7600 -201 1380 4.5423 1.5537 1.7600 -201 1381 4.6011 1.5632 1.7600 -201 1382 4.6618 1.5756 1.7600 -201 1383 4.7270 1.5893 1.7600 -201 1384 4.7992 1.6021 1.7600 -201 1385 4.8718 1.6093 1.7600 -201 1386 4.9435 1.6155 1.7600 -201 1387 5.0105 1.6154 1.7600 -201 1388 5.0711 1.6111 1.7600 -201 1389 5.1286 1.6063 1.7600 -201 1390 5.1820 1.5989 1.7600 -201 1391 5.2346 1.5881 1.7600 -201 1392 5.2903 1.5738 1.7600 -201 1393 5.3456 1.5570 1.7600 -201 1394 5.4091 1.5408 1.7600 -201 1395 5.4744 1.5262 1.7600 -201 1396 5.5388 1.5133 1.7600 -201 1397 5.6021 1.5032 1.7600 -201 1398 5.6626 1.4963 1.7600 -201 1399 5.7184 1.4913 1.7600 -201 1400 5.7718 1.4854 1.7600 -201 1401 5.8235 1.4798 1.7600 -201 1402 5.8773 1.4780 1.7600 -201 1403 5.9392 1.4801 1.7600 -202 1105 -7.7892 0.9344 1.7600 -202 1106 -7.7458 0.9165 1.7600 -202 1107 -7.7032 0.8962 1.7600 -202 1108 -7.6622 0.8721 1.7600 -202 1109 -7.6246 0.8446 1.7600 -202 1110 -7.5915 0.8169 1.7600 -202 1111 -7.5603 0.7911 1.7600 -202 1112 -7.5281 0.7681 1.7600 -202 1113 -7.4955 0.7487 1.7600 -202 1114 -7.4591 0.7343 1.7600 -202 1115 -7.4234 0.7212 1.7600 -202 1116 -7.3781 0.7155 1.7600 -202 1117 -7.3337 0.7122 1.7600 -202 1118 -7.2868 0.7131 1.7600 -202 1119 -7.2370 0.7146 1.7600 -202 1120 -7.1880 0.7206 1.7600 -202 1121 -7.1427 0.7309 1.7600 -202 1122 -7.1018 0.7425 1.7600 -202 1123 -7.0622 0.7519 1.7600 -202 1124 -7.0216 0.7556 1.7600 -202 1125 -6.9780 0.7570 1.7600 -202 1126 -6.9355 0.7537 1.7600 -202 1127 -6.8930 0.7429 1.7600 -202 1128 -6.8542 0.7328 1.7600 -202 1129 -6.8117 0.7239 1.7600 -202 1130 -6.7686 0.7165 1.7600 -202 1131 -6.7248 0.7075 1.7600 -202 1132 -6.6782 0.6951 1.7600 -202 1133 -6.6313 0.6782 1.7600 -202 1134 -6.5878 0.6615 1.7600 -202 1135 -6.5487 0.6449 1.7600 -202 1136 -6.5094 0.6272 1.7600 -202 1137 -6.4743 0.6140 1.7600 -202 1138 -6.4346 0.6030 1.7600 -202 1139 -6.3929 0.5946 1.7600 -202 1140 -6.3500 0.5911 1.7600 -202 1141 -6.3077 0.5917 1.7600 -202 1142 -6.2629 0.5966 1.7600 -202 1143 -6.2194 0.6022 1.7600 -202 1144 -6.1744 0.6107 1.7600 -202 1145 -6.1309 0.6260 1.7600 -202 1146 -6.0920 0.6429 1.7600 -202 1147 -6.0496 0.6552 1.7600 -202 1148 -6.0109 0.6582 1.7600 -202 1149 -5.9701 0.6595 1.7600 -202 1150 -5.9254 0.6567 1.7600 -202 1151 -5.8844 0.6494 1.7600 -202 1152 -5.8403 0.6416 1.7600 -202 1153 -5.7977 0.6366 1.7600 -202 1154 -5.7531 0.6292 1.7600 -202 1155 -5.7033 0.6147 1.7600 -202 1156 -5.6585 0.5965 1.7600 -202 1157 -5.6101 0.5796 1.7600 -202 1158 -5.5659 0.5564 1.7600 -202 1159 -5.5274 0.5337 1.7600 -202 1160 -5.4885 0.5121 1.7600 -202 1161 -5.4490 0.4934 1.7600 -202 1162 -5.4101 0.4781 1.7600 -202 1163 -5.3680 0.4702 1.7600 -202 1164 -5.3253 0.4636 1.7600 -202 1165 -5.2816 0.4617 1.7600 -202 1166 -5.2343 0.4619 1.7600 -202 1167 -5.1869 0.4641 1.7600 -202 1168 -5.1339 0.4714 1.7600 -202 1169 -5.0833 0.4856 1.7600 -202 1170 -5.0316 0.5038 1.7600 -202 1171 -4.9795 0.5200 1.7600 -202 1172 -4.9329 0.5330 1.7600 -202 1173 -4.8899 0.5409 1.7600 -202 1174 -4.8382 0.5455 1.7600 -202 1175 -4.7871 0.5407 1.7600 -202 1176 -4.7371 0.5332 1.7600 -202 1177 -4.6928 0.5229 1.7600 -202 1178 -4.6498 0.5127 1.7600 -202 1179 -4.6071 0.5032 1.7600 -202 1180 -4.5657 0.4960 1.7600 -202 1181 -4.5222 0.4880 1.7600 -202 1182 -4.4793 0.4768 1.7600 -202 1183 -4.4394 0.4619 1.7600 -202 1184 -4.3928 0.4454 1.7600 -202 1185 -4.3515 0.4326 1.7600 -202 1186 -4.3217 0.4197 1.7600 -202 1187 -4.2977 0.4100 1.7600 -202 1188 -4.2659 0.4052 1.7600 -202 1189 -4.2272 0.4058 1.7600 -202 1190 -4.1869 0.4096 1.7600 -202 1191 -4.1458 0.4128 1.7600 -202 1192 -4.1078 0.4178 1.7600 -202 1193 -4.0700 0.4282 1.7600 -202 1194 -4.0343 0.4425 1.7600 -202 1195 -3.9981 0.4637 1.7600 -202 1196 -3.9557 0.4865 1.7600 -202 1197 -3.9181 0.5046 1.7600 -202 1198 -3.8826 0.5144 1.7600 -202 1199 -3.8365 0.5243 1.7600 -202 1200 -3.7901 0.5338 1.7600 -202 1201 -3.7354 0.5416 1.7600 -202 1202 -3.6842 0.5435 1.7600 -202 1203 -3.6298 0.5410 1.7600 -202 1204 -3.5779 0.5308 1.7600 -202 1205 -3.5254 0.5209 1.7600 -202 1206 -3.4751 0.5066 1.7600 -202 1207 -3.4253 0.4943 1.7600 -202 1208 -3.3724 0.4806 1.7600 -202 1209 -3.3201 0.4660 1.7600 -202 1210 -3.2715 0.4514 1.7600 -202 1211 -3.2262 0.4379 1.7600 -202 1212 -3.1840 0.4279 1.7600 -202 1213 -3.1391 0.4228 1.7600 -202 1214 -3.0986 0.4202 1.7600 -202 1215 -3.0583 0.4199 1.7600 -202 1216 -3.0166 0.4215 1.7600 -202 1217 -2.9730 0.4262 1.7600 -202 1218 -2.9307 0.4320 1.7600 -202 1219 -2.8878 0.4415 1.7600 -202 1220 -2.8413 0.4539 1.7600 -202 1221 -2.7907 0.4701 1.7600 -202 1222 -2.7459 0.4830 1.7600 -202 1223 -2.7064 0.4901 1.7600 -202 1224 -2.6640 0.4967 1.7600 -202 1225 -2.6209 0.5000 1.7600 -202 1226 -2.5802 0.4996 1.7600 -202 1227 -2.5405 0.4965 1.7600 -202 1228 -2.5040 0.4889 1.7600 -202 1229 -2.4634 0.4793 1.7600 -202 1230 -2.4238 0.4694 1.7600 -202 1231 -2.3782 0.4569 1.7600 -202 1232 -2.3334 0.4388 1.7600 -202 1233 -2.2804 0.4191 1.7600 -202 1234 -2.2253 0.3945 1.7600 -202 1235 -2.1749 0.3704 1.7600 -202 1236 -2.1295 0.3521 1.7600 -202 1237 -2.0809 0.3370 1.7600 -202 1238 -2.0340 0.3251 1.7600 -202 1239 -1.9893 0.3142 1.7600 -202 1240 -1.9435 0.3080 1.7600 -202 1241 -1.8984 0.3013 1.7600 -202 1242 -1.8545 0.2979 1.7600 -202 1243 -1.8067 0.2989 1.7600 -202 1244 -1.7585 0.3052 1.7600 -202 1245 -1.7081 0.3159 1.7600 -202 1246 -1.6502 0.3312 1.7600 -202 1247 -1.5969 0.3448 1.7600 -202 1248 -1.5517 0.3562 1.7600 -202 1249 -1.5067 0.3645 1.7600 -202 1250 -1.4577 0.3690 1.7600 -202 1251 -1.4071 0.3687 1.7600 -202 1252 -1.3612 0.3637 1.7600 -202 1253 -1.3124 0.3581 1.7600 -202 1254 -1.2643 0.3553 1.7600 -202 1255 -1.2156 0.3528 1.7600 -202 1256 -1.1624 0.3502 1.7600 -202 1257 -1.1099 0.3461 1.7600 -202 1258 -1.0532 0.3398 1.7600 -202 1259 -0.9967 0.3337 1.7600 -202 1260 -0.9458 0.3266 1.7600 -202 1261 -0.8984 0.3239 1.7600 -202 1262 -0.8496 0.3263 1.7600 -202 1263 -0.7996 0.3324 1.7600 -202 1264 -0.7487 0.3421 1.7600 -202 1265 -0.6991 0.3540 1.7600 -202 1266 -0.6467 0.3682 1.7600 -202 1267 -0.5932 0.3833 1.7600 -202 1268 -0.5386 0.3999 1.7600 -202 1269 -0.4834 0.4193 1.7600 -202 1270 -0.4275 0.4392 1.7600 -202 1271 -0.3758 0.4548 1.7600 -202 1272 -0.3281 0.4686 1.7600 -202 1273 -0.2766 0.4768 1.7600 -202 1274 -0.2234 0.4812 1.7600 -202 1275 -0.1686 0.4835 1.7600 -202 1276 -0.1155 0.4818 1.7600 -202 1277 -0.0557 0.4800 1.7600 -202 1278 0.0075 0.4809 1.7600 -202 1279 0.0747 0.4771 1.7600 -202 1280 0.1438 0.4706 1.7600 -202 1281 0.2123 0.4645 1.7600 -202 1282 0.2770 0.4537 1.7600 -202 1283 0.3344 0.4427 1.7600 -202 1284 0.3865 0.4342 1.7600 -202 1285 0.4402 0.4313 1.7600 -202 1286 0.4915 0.4337 1.7600 -202 1287 0.5443 0.4379 1.7600 -202 1288 0.5964 0.4455 1.7600 -202 1289 0.6522 0.4523 1.7600 -202 1290 0.7111 0.4592 1.7600 -202 1291 0.7728 0.4687 1.7600 -202 1292 0.8350 0.4829 1.7600 -202 1293 0.8960 0.5001 1.7600 -202 1294 0.9514 0.5173 1.7600 -202 1295 1.0043 0.5279 1.7600 -202 1296 1.0557 0.5326 1.7600 -202 1297 1.1092 0.5340 1.7600 -202 1298 1.1670 0.5320 1.7600 -202 1299 1.2206 0.5256 1.7600 -202 1300 1.2741 0.5199 1.7600 -202 1301 1.3265 0.5145 1.7600 -202 1302 1.3833 0.5080 1.7600 -202 1303 1.4406 0.5013 1.7600 -202 1304 1.4977 0.4914 1.7600 -202 1305 1.5550 0.4796 1.7600 -202 1306 1.6120 0.4647 1.7600 -202 1307 1.6610 0.4508 1.7600 -202 1308 1.7065 0.4409 1.7600 -202 1309 1.7538 0.4357 1.7600 -202 1310 1.8059 0.4349 1.7600 -202 1311 1.8610 0.4392 1.7600 -202 1312 1.9170 0.4468 1.7600 -202 1313 1.9723 0.4574 1.7600 -202 1314 2.0299 0.4705 1.7600 -202 1315 2.0841 0.4853 1.7600 -202 1316 2.1414 0.5014 1.7600 -202 1317 2.1989 0.5199 1.7600 -202 1318 2.2567 0.5363 1.7600 -202 1319 2.3148 0.5514 1.7600 -202 1320 2.3759 0.5645 1.7600 -202 1321 2.4369 0.5728 1.7600 -202 1322 2.4994 0.5741 1.7600 -202 1323 2.5606 0.5745 1.7600 -202 1324 2.6211 0.5723 1.7600 -202 1325 2.6868 0.5670 1.7600 -202 1326 2.7490 0.5616 1.7600 -202 1327 2.8133 0.5515 1.7600 -202 1328 2.8807 0.5434 1.7600 -202 1329 2.9536 0.5312 1.7600 -202 1330 3.0213 0.5189 1.7600 -202 1331 3.0776 0.5092 1.7600 -202 1332 3.1340 0.5045 1.7600 -202 1333 3.1915 0.5029 1.7600 -202 1334 3.2498 0.5037 1.7600 -202 1335 3.3058 0.5069 1.7600 -202 1336 3.3615 0.5139 1.7600 -202 1337 3.4165 0.5231 1.7600 -202 1338 3.4736 0.5315 1.7600 -202 1339 3.5361 0.5457 1.7600 -202 1340 3.6041 0.5599 1.7600 -202 1341 3.6722 0.5705 1.7600 -202 1342 3.7334 0.5782 1.7600 -202 1343 3.7974 0.5821 1.7600 -202 1344 3.8636 0.5795 1.7600 -202 1345 3.9298 0.5726 1.7600 -202 1346 3.9929 0.5660 1.7600 -202 1347 4.0539 0.5579 1.7600 -202 1348 4.1151 0.5494 1.7600 -202 1349 4.1764 0.5392 1.7600 -202 1350 4.2399 0.5290 1.7600 -202 1351 4.3129 0.5182 1.7600 -202 1352 4.3819 0.5042 1.7600 -202 1353 4.4421 0.4947 1.7600 -202 1354 4.5011 0.4894 1.7600 -202 1355 4.5582 0.4897 1.7600 -202 1356 4.6148 0.4943 1.7600 -202 1357 4.6704 0.5022 1.7600 -202 1358 4.7227 0.5109 1.7600 -202 1359 4.7762 0.5223 1.7600 -202 1360 4.8322 0.5364 1.7600 -202 1361 4.8974 0.5531 1.7600 -202 1362 4.9693 0.5685 1.7600 -202 1363 5.0344 0.5805 1.7600 -202 1364 5.0986 0.5887 1.7600 -202 1365 5.1630 0.5918 1.7600 -202 1366 5.2321 0.5916 1.7600 -202 1367 5.3008 0.5885 1.7600 -202 1368 5.3662 0.5839 1.7600 -202 1369 5.4302 0.5789 1.7600 -202 1370 5.4913 0.5746 1.7600 -202 1371 5.5543 0.5697 1.7600 -202 1372 5.6259 0.5630 1.7600 -202 1373 5.7041 0.5536 1.7600 -202 1374 5.7736 0.5441 1.7600 -202 1375 5.8388 0.5377 1.7600 -202 1376 5.9016 0.5352 1.7600 -202 1377 5.9604 0.5356 1.7600 -203 1100 -7.8226 2.2051 1.7600 -203 1101 -7.7729 2.2291 1.7600 -203 1102 -7.7245 2.2461 1.7600 -203 1103 -7.6754 2.2547 1.7600 -203 1104 -7.6229 2.2568 1.7600 -203 1105 -7.5663 2.2554 1.7600 -203 1106 -7.5063 2.2500 1.7600 -203 1107 -7.4449 2.2404 1.7600 -203 1108 -7.3845 2.2288 1.7600 -203 1109 -7.3318 2.2189 1.7600 -203 1110 -7.2828 2.2123 1.7600 -203 1111 -7.2315 2.2114 1.7600 -203 1112 -7.1781 2.2155 1.7600 -203 1113 -7.1209 2.2214 1.7600 -203 1114 -7.0591 2.2302 1.7600 -203 1115 -6.9912 2.2437 1.7600 -203 1116 -6.9213 2.2639 1.7600 -203 1117 -6.8548 2.2919 1.7600 -203 1118 -6.7943 2.3257 1.7600 -203 1119 -6.7366 2.3559 1.7600 -203 1120 -6.6818 2.3771 1.7600 -203 1121 -6.6293 2.3882 1.7600 -203 1122 -6.5750 2.3936 1.7600 -203 1123 -6.5123 2.3975 1.7600 -203 1124 -6.4470 2.3955 1.7600 -203 1125 -6.3798 2.3884 1.7600 -203 1126 -6.3125 2.3762 1.7600 -203 1127 -6.2425 2.3640 1.7600 -203 1128 -6.1817 2.3572 1.7600 -203 1129 -6.1286 2.3530 1.7600 -203 1130 -6.0753 2.3535 1.7600 -203 1131 -6.0217 2.3531 1.7600 -203 1132 -5.9648 2.3532 1.7600 -203 1133 -5.9039 2.3431 1.7600 -203 1134 -5.8370 2.3372 1.7600 -203 1135 -5.7663 2.3309 1.7600 -203 1136 -5.7011 2.3327 1.7600 -203 1137 -5.6459 2.3371 1.7600 -203 1138 -5.5998 2.3388 1.7600 -203 1139 -5.5504 2.3295 1.7600 -203 1140 -5.5099 2.3146 1.7600 -203 1141 -5.4702 2.2969 1.7600 -203 1142 -5.4274 2.2751 1.7600 -203 1143 -5.3877 2.2508 1.7600 -203 1144 -5.3499 2.2216 1.7600 -203 1145 -5.3126 2.1884 1.7600 -203 1146 -5.2737 2.1499 1.7600 -203 1147 -5.2403 2.1165 1.7600 -203 1148 -5.2084 2.0887 1.7600 -203 1149 -5.1735 2.0636 1.7600 -203 1150 -5.1403 2.0406 1.7600 -203 1151 -5.1073 2.0250 1.7600 -203 1152 -5.0730 2.0121 1.7600 -203 1153 -5.0338 1.9996 1.7600 -203 1154 -4.9934 1.9866 1.7600 -203 1155 -4.9482 1.9798 1.7600 -203 1156 -4.9049 1.9774 1.7600 -203 1157 -4.8661 1.9741 1.7600 -203 1158 -4.8334 1.9671 1.7600 -203 1159 -4.8035 1.9568 1.7600 -203 1160 -4.7804 1.9466 1.7600 -203 1161 -4.7639 1.9348 1.7600 -203 1162 -4.7482 1.9185 1.7600 -203 1163 -4.7343 1.8983 1.7600 -203 1164 -4.7190 1.8716 1.7600 -203 1165 -4.7053 1.8452 1.7600 -203 1166 -4.6902 1.8223 1.7600 -203 1167 -4.6725 1.8024 1.7600 -203 1168 -4.6535 1.7840 1.7600 -203 1169 -4.6289 1.7657 1.7600 -203 1170 -4.5967 1.7474 1.7600 -203 1171 -4.5597 1.7329 1.7600 -203 1172 -4.5174 1.7249 1.7600 -203 1173 -4.4751 1.7246 1.7600 -203 1174 -4.4364 1.7249 1.7600 -203 1175 -4.4024 1.7238 1.7600 -203 1176 -4.3691 1.7139 1.7600 -203 1177 -4.3362 1.6980 1.7600 -203 1178 -4.3087 1.6777 1.7600 -203 1179 -4.2822 1.6591 1.7600 -203 1180 -4.2535 1.6354 1.7600 -203 1181 -4.2261 1.6040 1.7600 -203 1182 -4.2019 1.5675 1.7600 -203 1183 -4.1784 1.5296 1.7600 -203 1184 -4.1554 1.4933 1.7600 -203 1185 -4.1296 1.4609 1.7600 -203 1186 -4.1018 1.4314 1.7600 -203 1187 -4.0747 1.4062 1.7600 -203 1188 -4.0461 1.3856 1.7600 -203 1189 -4.0180 1.3668 1.7600 -203 1190 -3.9827 1.3508 1.7600 -203 1191 -3.9476 1.3378 1.7600 -203 1192 -3.9098 1.3325 1.7600 -203 1193 -3.8702 1.3290 1.7600 -203 1194 -3.8309 1.3302 1.7600 -203 1195 -3.7865 1.3309 1.7600 -203 1196 -3.7441 1.3311 1.7600 -203 1197 -3.6974 1.3255 1.7600 -203 1198 -3.6515 1.3152 1.7600 -203 1199 -3.6057 1.3034 1.7600 -203 1200 -3.5526 1.2880 1.7600 -203 1201 -3.4999 1.2681 1.7600 -203 1202 -3.4403 1.2466 1.7600 -203 1203 -3.3891 1.2258 1.7600 -203 1204 -3.3412 1.2103 1.7600 -203 1205 -3.2924 1.1976 1.7600 -203 1206 -3.2433 1.1887 1.7600 -203 1207 -3.1950 1.1861 1.7600 -203 1208 -3.1466 1.1852 1.7600 -203 1209 -3.0953 1.1838 1.7600 -203 1210 -3.0392 1.1875 1.7600 -203 1211 -2.9854 1.1967 1.7600 -203 1212 -2.9323 1.2111 1.7600 -203 1213 -2.8748 1.2280 1.7600 -203 1214 -2.8204 1.2392 1.7600 -203 1215 -2.7671 1.2462 1.7600 -203 1216 -2.7148 1.2461 1.7600 -203 1217 -2.6645 1.2433 1.7600 -203 1218 -2.6141 1.2381 1.7600 -203 1219 -2.5606 1.2315 1.7600 -203 1220 -2.5057 1.2217 1.7600 -203 1221 -2.4476 1.2071 1.7600 -203 1222 -2.3825 1.1901 1.7600 -203 1223 -2.3165 1.1736 1.7600 -203 1224 -2.2538 1.1608 1.7600 -203 1225 -2.1915 1.1532 1.7600 -203 1226 -2.1346 1.1470 1.7600 -203 1227 -2.0826 1.1423 1.7600 -203 1228 -2.0332 1.1366 1.7600 -203 1229 -1.9813 1.1312 1.7600 -203 1230 -1.9271 1.1257 1.7600 -203 1231 -1.8692 1.1242 1.7600 -203 1232 -1.8110 1.1264 1.7600 -203 1233 -1.7472 1.1329 1.7600 -203 1234 -1.6858 1.1389 1.7600 -203 1235 -1.6253 1.1413 1.7600 -203 1236 -1.5674 1.1383 1.7600 -203 1237 -1.5101 1.1299 1.7600 -203 1238 -1.4567 1.1209 1.7600 -203 1239 -1.3994 1.1127 1.7600 -203 1240 -1.3415 1.1023 1.7600 -203 1241 -1.2833 1.0893 1.7600 -203 1242 -1.2230 1.0731 1.7600 -203 1243 -1.1653 1.0551 1.7600 -203 1244 -1.1150 1.0420 1.7600 -203 1245 -1.0640 1.0347 1.7600 -203 1246 -1.0167 1.0344 1.7600 -203 1247 -0.9703 1.0367 1.7600 -203 1248 -0.9221 1.0399 1.7600 -203 1249 -0.8684 1.0428 1.7600 -203 1250 -0.8140 1.0490 1.7600 -203 1251 -0.7600 1.0612 1.7600 -203 1252 -0.7039 1.0771 1.7600 -203 1253 -0.6463 1.0942 1.7600 -203 1254 -0.5955 1.1084 1.7600 -203 1255 -0.5467 1.1176 1.7600 -203 1256 -0.4950 1.1203 1.7600 -203 1257 -0.4475 1.1197 1.7600 -203 1258 -0.4003 1.1169 1.7600 -203 1259 -0.3472 1.1115 1.7600 -203 1260 -0.2867 1.1039 1.7600 -203 1261 -0.2238 1.0963 1.7600 -203 1262 -0.1559 1.0848 1.7600 -203 1263 -0.0941 1.0764 1.7600 -203 1264 -0.0408 1.0703 1.7600 -203 1265 0.0091 1.0662 1.7600 -203 1266 0.0560 1.0655 1.7600 -203 1267 0.0977 1.0677 1.7600 -203 1268 0.1415 1.0734 1.7600 -203 1269 0.1952 1.0798 1.7600 -203 1270 0.2590 1.0891 1.7600 -203 1271 0.3218 1.1027 1.7600 -203 1272 0.3806 1.1229 1.7600 -203 1273 0.4351 1.1474 1.7600 -203 1274 0.4838 1.1726 1.7600 -203 1275 0.5356 1.1890 1.7600 -203 1276 0.5876 1.1967 1.7600 -203 1277 0.6377 1.1979 1.7600 -203 1278 0.6884 1.2004 1.7600 -203 1279 0.7474 1.2000 1.7600 -203 1280 0.8082 1.1951 1.7600 -203 1281 0.8718 1.1873 1.7600 -203 1282 0.9384 1.1754 1.7600 -203 1283 1.0022 1.1612 1.7600 -203 1284 1.0593 1.1478 1.7600 -203 1285 1.1117 1.1415 1.7600 -203 1286 1.1605 1.1385 1.7600 -203 1287 1.2042 1.1376 1.7600 -203 1288 1.2496 1.1389 1.7600 -203 1289 1.3009 1.1379 1.7600 -203 1290 1.3569 1.1417 1.7600 -203 1291 1.4186 1.1437 1.7600 -203 1292 1.4774 1.1517 1.7600 -203 1293 1.5374 1.1633 1.7600 -203 1294 1.5938 1.1746 1.7600 -203 1295 1.6476 1.1817 1.7600 -203 1296 1.7047 1.1801 1.7600 -203 1297 1.7574 1.1754 1.7600 -203 1298 1.8086 1.1666 1.7600 -203 1299 1.8602 1.1596 1.7600 -203 1300 1.9144 1.1508 1.7600 -203 1301 1.9682 1.1396 1.7600 -203 1302 2.0275 1.1254 1.7600 -203 1303 2.0916 1.1085 1.7600 -203 1304 2.1538 1.0935 1.7600 -203 1305 2.2146 1.0828 1.7600 -203 1306 2.2769 1.0769 1.7600 -203 1307 2.3441 1.0769 1.7600 -203 1308 2.4077 1.0811 1.7600 -203 1309 2.4688 1.0860 1.7600 -203 1310 2.5286 1.0872 1.7600 -203 1311 2.5866 1.0910 1.7600 -203 1312 2.6494 1.1029 1.7600 -203 1313 2.7167 1.1158 1.7600 -203 1314 2.7863 1.1316 1.7600 -203 1315 2.8468 1.1418 1.7600 -203 1316 2.9061 1.1477 1.7600 -203 1317 2.9668 1.1485 1.7600 -203 1318 3.0217 1.1426 1.7600 -203 1319 3.0745 1.1395 1.7600 -203 1320 3.1334 1.1358 1.7600 -203 1321 3.1922 1.1306 1.7600 -203 1322 3.2498 1.1169 1.7600 -203 1323 3.3129 1.1046 1.7600 -203 1324 3.3773 1.0920 1.7600 -203 1325 3.4363 1.0806 1.7600 -203 1326 3.4933 1.0753 1.7600 -203 1327 3.5481 1.0765 1.7600 -203 1328 3.6010 1.0810 1.7600 -203 1329 3.6532 1.0846 1.7600 -203 1330 3.7112 1.0888 1.7600 -203 1331 3.7738 1.0943 1.7600 -203 1332 3.8366 1.1063 1.7600 -203 1333 3.9031 1.1212 1.7600 -203 1334 3.9773 1.1402 1.7600 -203 1335 4.0450 1.1560 1.7600 -203 1336 4.1113 1.1643 1.7600 -203 1337 4.1737 1.1674 1.7600 -203 1338 4.2345 1.1671 1.7600 -203 1339 4.2929 1.1687 1.7600 -203 1340 4.3529 1.1668 1.7600 -203 1341 4.4140 1.1642 1.7600 -203 1342 4.4791 1.1603 1.7600 -203 1343 4.5534 1.1555 1.7600 -203 1344 4.6246 1.1511 1.7600 -203 1345 4.6908 1.1528 1.7600 -203 1346 4.7570 1.1594 1.7600 -203 1347 4.8163 1.1663 1.7600 -203 1348 4.8755 1.1718 1.7600 -203 1349 4.9329 1.1773 1.7600 -203 1350 4.9951 1.1820 1.7600 -203 1351 5.0579 1.1904 1.7600 -203 1352 5.1257 1.2019 1.7600 -203 1353 5.2019 1.2174 1.7600 -203 1354 5.2720 1.2320 1.7600 -203 1355 5.3439 1.2379 1.7600 -203 1356 5.4103 1.2377 1.7600 -203 1357 5.4712 1.2340 1.7600 -203 1358 5.5303 1.2311 1.7600 -203 1359 5.5886 1.2258 1.7600 -203 1360 5.6477 1.2192 1.7600 -203 1361 5.7092 1.2088 1.7600 -203 1362 5.7817 1.1969 1.7600 -203 1363 5.8537 1.1865 1.7600 -203 1364 5.9216 1.1813 1.7600 -204 1121 -7.8080 0.9518 1.7600 -204 1122 -7.7716 0.9236 1.7600 -204 1123 -7.7348 0.8903 1.7600 -204 1124 -7.6979 0.8526 1.7600 -204 1125 -7.6643 0.8131 1.7600 -204 1126 -7.6336 0.7771 1.7600 -204 1127 -7.6026 0.7453 1.7600 -204 1128 -7.5674 0.7209 1.7600 -204 1129 -7.5325 0.7026 1.7600 -204 1130 -7.4922 0.6910 1.7600 -204 1131 -7.4462 0.6841 1.7600 -204 1132 -7.3941 0.6854 1.7600 -204 1133 -7.3394 0.6929 1.7600 -204 1134 -7.2845 0.7062 1.7600 -204 1135 -7.2357 0.7225 1.7600 -204 1136 -7.1866 0.7314 1.7600 -204 1137 -7.1421 0.7295 1.7600 -204 1138 -7.0964 0.7205 1.7600 -204 1139 -7.0552 0.7078 1.7600 -204 1140 -7.0122 0.6880 1.7600 -204 1141 -6.9646 0.6616 1.7600 -204 1142 -6.9195 0.6305 1.7600 -204 1143 -6.8743 0.5942 1.7600 -204 1144 -6.8330 0.5554 1.7600 -204 1145 -6.8012 0.5160 1.7600 -204 1146 -6.7670 0.4814 1.7600 -204 1147 -6.7380 0.4543 1.7600 -204 1148 -6.7037 0.4356 1.7600 -204 1149 -6.6636 0.4241 1.7600 -204 1150 -6.6238 0.4161 1.7600 -204 1151 -6.5833 0.4170 1.7600 -204 1152 -6.5365 0.4236 1.7600 -204 1153 -6.4923 0.4410 1.7600 -204 1154 -6.4517 0.4605 1.7600 -204 1155 -6.4087 0.4767 1.7600 -204 1156 -6.3647 0.4845 1.7600 -204 1157 -6.3228 0.4820 1.7600 -204 1158 -6.2782 0.4707 1.7600 -204 1159 -6.2294 0.4562 1.7600 -204 1160 -6.1790 0.4329 1.7600 -204 1161 -6.1274 0.4043 1.7600 -204 1162 -6.0772 0.3729 1.7600 -204 1163 -6.0405 0.3369 1.7600 -204 1164 -6.0087 0.3105 1.7600 -204 1165 -5.9758 0.2907 1.7600 -204 1166 -5.9445 0.2761 1.7600 -204 1167 -5.9115 0.2662 1.7600 -204 1168 -5.8767 0.2642 1.7600 -204 1169 -5.8424 0.2704 1.7600 -204 1170 -5.8110 0.2829 1.7600 -204 1171 -5.7747 0.3025 1.7600 -204 1172 -5.7424 0.3286 1.7600 -204 1173 -5.7109 0.3559 1.7600 -204 1174 -5.6740 0.3747 1.7600 -204 1175 -5.6337 0.3850 1.7600 -204 1176 -5.5919 0.3871 1.7600 -204 1177 -5.5456 0.3861 1.7600 -204 1178 -5.4961 0.3770 1.7600 -204 1179 -5.4488 0.3619 1.7600 -204 1180 -5.3996 0.3389 1.7600 -204 1181 -5.3535 0.3120 1.7600 -204 1182 -5.3148 0.2907 1.7600 -204 1183 -5.2760 0.2775 1.7600 -204 1184 -5.2397 0.2685 1.7600 -204 1185 -5.2040 0.2643 1.7600 -204 1186 -5.1701 0.2655 1.7600 -204 1187 -5.1382 0.2729 1.7600 -204 1188 -5.1070 0.2887 1.7600 -204 1189 -5.0771 0.3036 1.7600 -204 1190 -5.0489 0.3196 1.7600 -204 1191 -5.0151 0.3320 1.7600 -204 1192 -4.9777 0.3346 1.7600 -204 1193 -4.9365 0.3325 1.7600 -204 1194 -4.8895 0.3273 1.7600 -204 1195 -4.8410 0.3190 1.7600 -204 1196 -4.7907 0.3038 1.7600 -204 1197 -4.7387 0.2803 1.7600 -204 1198 -4.6888 0.2544 1.7600 -204 1199 -4.6421 0.2354 1.7600 -204 1200 -4.5962 0.2229 1.7600 -204 1201 -4.5529 0.2159 1.7600 -204 1202 -4.5138 0.2106 1.7600 -204 1203 -4.4768 0.2100 1.7600 -204 1204 -4.4410 0.2141 1.7600 -204 1205 -4.3995 0.2224 1.7600 -204 1206 -4.3617 0.2364 1.7600 -204 1207 -4.3237 0.2568 1.7600 -204 1208 -4.2814 0.2798 1.7600 -204 1209 -4.2418 0.3050 1.7600 -204 1210 -4.2019 0.3234 1.7600 -204 1211 -4.1604 0.3364 1.7600 -204 1212 -4.1193 0.3433 1.7600 -204 1213 -4.0740 0.3452 1.7600 -204 1214 -4.0270 0.3431 1.7600 -204 1215 -3.9828 0.3363 1.7600 -204 1216 -3.9368 0.3250 1.7600 -204 1217 -3.8961 0.3125 1.7600 -204 1218 -3.8558 0.2956 1.7600 -204 1219 -3.8165 0.2830 1.7600 -204 1220 -3.7791 0.2794 1.7600 -204 1221 -3.7377 0.2836 1.7600 -204 1222 -3.6958 0.2920 1.7600 -204 1223 -3.6531 0.3032 1.7600 -204 1224 -3.6062 0.3205 1.7600 -204 1225 -3.5615 0.3387 1.7600 -204 1226 -3.5080 0.3668 1.7600 -204 1227 -3.4553 0.4004 1.7600 -204 1228 -3.4000 0.4299 1.7600 -204 1229 -3.3490 0.4456 1.7600 -204 1230 -3.2989 0.4526 1.7600 -204 1231 -3.2530 0.4522 1.7600 -204 1232 -3.2103 0.4457 1.7600 -204 1233 -3.1648 0.4351 1.7600 -204 1234 -3.1177 0.4161 1.7600 -204 1235 -3.0731 0.3944 1.7600 -204 1236 -3.0317 0.3701 1.7600 -204 1237 -2.9880 0.3457 1.7600 -204 1238 -2.9438 0.3334 1.7600 -204 1239 -2.9027 0.3328 1.7600 -204 1240 -2.8604 0.3338 1.7600 -204 1241 -2.8149 0.3404 1.7600 -204 1242 -2.7626 0.3529 1.7600 -204 1243 -2.7037 0.3738 1.7600 -204 1244 -2.6419 0.4011 1.7600 -204 1245 -2.5762 0.4352 1.7600 -204 1246 -2.5126 0.4634 1.7600 -204 1247 -2.4541 0.4810 1.7600 -204 1248 -2.4027 0.4916 1.7600 -204 1249 -2.3541 0.4973 1.7600 -204 1250 -2.3123 0.4963 1.7600 -204 1251 -2.2730 0.4927 1.7600 -204 1252 -2.2306 0.4820 1.7600 -204 1253 -2.1888 0.4662 1.7600 -204 1254 -2.1454 0.4465 1.7600 -204 1255 -2.1001 0.4260 1.7600 -204 1256 -2.0521 0.4039 1.7600 -204 1257 -2.0057 0.3888 1.7600 -204 1258 -1.9585 0.3807 1.7600 -204 1259 -1.9101 0.3791 1.7600 -204 1260 -1.8569 0.3808 1.7600 -204 1261 -1.8036 0.3879 1.7600 -204 1262 -1.7474 0.4005 1.7600 -204 1263 -1.6881 0.4178 1.7600 -204 1264 -1.6206 0.4397 1.7600 -204 1265 -1.5512 0.4607 1.7600 -204 1266 -1.4912 0.4745 1.7600 -204 1267 -1.4319 0.4849 1.7600 -204 1268 -1.3782 0.4895 1.7600 -204 1269 -1.3249 0.4874 1.7600 -204 1270 -1.2714 0.4820 1.7600 -204 1271 -1.2186 0.4732 1.7600 -204 1272 -1.1641 0.4569 1.7600 -204 1273 -1.1113 0.4376 1.7600 -204 1274 -1.0604 0.4180 1.7600 -204 1275 -1.0079 0.4041 1.7600 -204 1276 -0.9591 0.3968 1.7600 -204 1277 -0.9109 0.3935 1.7600 -204 1278 -0.8608 0.3966 1.7600 -204 1279 -0.8068 0.4027 1.7600 -204 1280 -0.7450 0.4148 1.7600 -204 1281 -0.6801 0.4293 1.7600 -204 1282 -0.6125 0.4488 1.7600 -204 1283 -0.5460 0.4681 1.7600 -204 1284 -0.4842 0.4826 1.7600 -204 1285 -0.4237 0.4892 1.7600 -204 1286 -0.3672 0.4917 1.7600 -204 1287 -0.3144 0.4899 1.7600 -204 1288 -0.2585 0.4857 1.7600 -204 1289 -0.2029 0.4793 1.7600 -204 1290 -0.1420 0.4672 1.7600 -204 1291 -0.0811 0.4528 1.7600 -204 1292 -0.0298 0.4351 1.7600 -204 1293 0.0263 0.4191 1.7600 -204 1294 0.0766 0.4113 1.7600 -204 1295 0.1243 0.4118 1.7600 -204 1296 0.1790 0.4141 1.7600 -204 1297 0.2371 0.4206 1.7600 -204 1298 0.2980 0.4319 1.7600 -204 1299 0.3645 0.4508 1.7600 -204 1300 0.4325 0.4742 1.7600 -204 1301 0.4975 0.4945 1.7600 -204 1302 0.5592 0.5123 1.7600 -204 1303 0.6152 0.5195 1.7600 -204 1304 0.6700 0.5179 1.7600 -204 1305 0.7248 0.5123 1.7600 -204 1306 0.7776 0.5062 1.7600 -204 1307 0.8348 0.4981 1.7600 -204 1308 0.8969 0.4870 1.7600 -204 1309 0.9571 0.4685 1.7600 -204 1310 1.0159 0.4475 1.7600 -204 1311 1.0735 0.4278 1.7600 -204 1312 1.1289 0.4134 1.7600 -204 1313 1.1817 0.4059 1.7600 -204 1314 1.2365 0.4015 1.7600 -204 1315 1.2922 0.4015 1.7600 -204 1316 1.3530 0.4065 1.7600 -204 1317 1.4170 0.4178 1.7600 -204 1318 1.4856 0.4353 1.7600 -204 1319 1.5536 0.4542 1.7600 -204 1320 1.6187 0.4693 1.7600 -204 1321 1.6774 0.4740 1.7600 -204 1322 1.7353 0.4696 1.7600 -204 1323 1.7889 0.4619 1.7600 -204 1324 1.8437 0.4527 1.7600 -204 1325 1.8955 0.4392 1.7600 -204 1326 1.9488 0.4229 1.7600 -204 1327 2.0008 0.4038 1.7600 -204 1328 2.0516 0.3820 1.7600 -204 1329 2.0984 0.3633 1.7600 -204 1330 2.1486 0.3515 1.7600 -204 1331 2.1976 0.3483 1.7600 -204 1332 2.2533 0.3512 1.7600 -204 1333 2.3074 0.3579 1.7600 -204 1334 2.3669 0.3706 1.7600 -204 1335 2.4277 0.3907 1.7600 -204 1336 2.4878 0.4138 1.7600 -204 1337 2.5496 0.4359 1.7600 -204 1338 2.6059 0.4497 1.7600 -204 1339 2.6613 0.4569 1.7600 -204 1340 2.7151 0.4584 1.7600 -204 1341 2.7668 0.4557 1.7600 -204 1342 2.8193 0.4479 1.7600 -204 1343 2.8717 0.4376 1.7600 -204 1344 2.9232 0.4194 1.7600 -204 1345 2.9783 0.3972 1.7600 -204 1346 3.0349 0.3727 1.7600 -204 1347 3.0889 0.3556 1.7600 -204 1348 3.1410 0.3480 1.7600 -204 1349 3.1906 0.3486 1.7600 -204 1350 3.2457 0.3553 1.7600 -204 1351 3.3015 0.3666 1.7600 -204 1352 3.3602 0.3834 1.7600 -204 1353 3.4264 0.4082 1.7600 -204 1354 3.4923 0.4333 1.7600 -204 1355 3.5577 0.4551 1.7600 -204 1356 3.6234 0.4702 1.7600 -204 1357 3.6825 0.4755 1.7600 -204 1358 3.7418 0.4694 1.7600 -204 1359 3.7964 0.4596 1.7600 -204 1360 3.8490 0.4433 1.7600 -204 1361 3.9020 0.4232 1.7600 -204 1362 3.9564 0.4004 1.7600 -204 1363 4.0147 0.3750 1.7600 -204 1364 4.0751 0.3488 1.7600 -204 1365 4.1357 0.3331 1.7600 -204 1366 4.1947 0.3273 1.7600 -204 1367 4.2554 0.3286 1.7600 -204 1368 4.3192 0.3320 1.7600 -204 1369 4.3823 0.3424 1.7600 -204 1370 4.4502 0.3600 1.7600 -204 1371 4.5248 0.3856 1.7600 -204 1372 4.6015 0.4115 1.7600 -204 1373 4.6804 0.4293 1.7600 -204 1374 4.7548 0.4319 1.7600 -204 1375 4.8213 0.4237 1.7600 -204 1376 4.8822 0.4132 1.7600 -204 1377 4.9413 0.3993 1.7600 -204 1378 5.0010 0.3828 1.7600 -204 1379 5.0611 0.3627 1.7600 -204 1380 5.1272 0.3402 1.7600 -204 1381 5.1944 0.3188 1.7600 -204 1382 5.2634 0.3023 1.7600 -204 1383 5.3324 0.2990 1.7600 -204 1384 5.3970 0.3012 1.7600 -204 1385 5.4612 0.3081 1.7600 -204 1386 5.5248 0.3201 1.7600 -204 1387 5.5901 0.3367 1.7600 -204 1388 5.6624 0.3611 1.7600 -204 1389 5.7436 0.3877 1.7600 -204 1390 5.8226 0.4075 1.7600 -204 1391 5.8964 0.4128 1.7600 -204 1392 5.9637 0.4051 1.7600 -205 1126 -7.8061 1.3119 1.7600 -205 1127 -7.7553 1.3019 1.7600 -205 1128 -7.7045 1.2896 1.7600 -205 1129 -7.6520 1.2753 1.7600 -205 1130 -7.5971 1.2587 1.7600 -205 1131 -7.5422 1.2396 1.7600 -205 1132 -7.4879 1.2180 1.7600 -205 1133 -7.4347 1.1961 1.7600 -205 1134 -7.3808 1.1775 1.7600 -205 1135 -7.3299 1.1608 1.7600 -205 1136 -7.2767 1.1457 1.7600 -205 1137 -7.2225 1.1370 1.7600 -205 1138 -7.1657 1.1323 1.7600 -205 1139 -7.1095 1.1292 1.7600 -205 1140 -7.0541 1.1266 1.7600 -205 1141 -6.9955 1.1236 1.7600 -205 1142 -6.9369 1.1215 1.7600 -205 1143 -6.8757 1.1240 1.7600 -205 1144 -6.8148 1.1279 1.7600 -205 1145 -6.7605 1.1310 1.7600 -205 1146 -6.7084 1.1308 1.7600 -205 1147 -6.6551 1.1237 1.7600 -205 1148 -6.6010 1.1125 1.7600 -205 1149 -6.5502 1.0957 1.7600 -205 1150 -6.4990 1.0785 1.7600 -205 1151 -6.4475 1.0586 1.7600 -205 1152 -6.3967 1.0372 1.7600 -205 1153 -6.3502 1.0123 1.7600 -205 1154 -6.3042 0.9875 1.7600 -205 1155 -6.2598 0.9640 1.7600 -205 1156 -6.2215 0.9427 1.7600 -205 1157 -6.1847 0.9219 1.7600 -205 1158 -6.1468 0.9033 1.7600 -205 1159 -6.1109 0.8911 1.7600 -205 1160 -6.0730 0.8864 1.7600 -205 1161 -6.0358 0.8844 1.7600 -205 1162 -5.9990 0.8849 1.7600 -205 1163 -5.9575 0.8872 1.7600 -205 1164 -5.9205 0.8937 1.7600 -205 1165 -5.8778 0.9034 1.7600 -205 1166 -5.8373 0.9126 1.7600 -205 1167 -5.7998 0.9235 1.7600 -205 1168 -5.7634 0.9302 1.7600 -205 1169 -5.7226 0.9345 1.7600 -205 1170 -5.6851 0.9353 1.7600 -205 1171 -5.6483 0.9336 1.7600 -205 1172 -5.6110 0.9311 1.7600 -205 1173 -5.5735 0.9246 1.7600 -205 1174 -5.5303 0.9160 1.7600 -205 1175 -5.4888 0.9045 1.7600 -205 1176 -5.4514 0.8876 1.7600 -205 1177 -5.4159 0.8692 1.7600 -205 1178 -5.3770 0.8517 1.7600 -205 1179 -5.3382 0.8340 1.7600 -205 1180 -5.2962 0.8207 1.7600 -205 1181 -5.2525 0.8085 1.7600 -205 1182 -5.2051 0.8025 1.7600 -205 1183 -5.1601 0.7999 1.7600 -205 1184 -5.1176 0.7999 1.7600 -205 1185 -5.0759 0.7998 1.7600 -205 1186 -5.0354 0.8026 1.7600 -205 1187 -4.9932 0.8065 1.7600 -205 1188 -4.9530 0.8141 1.7600 -205 1189 -4.9133 0.8240 1.7600 -205 1190 -4.8763 0.8307 1.7600 -205 1191 -4.8434 0.8365 1.7600 -205 1192 -4.8099 0.8386 1.7600 -205 1193 -4.7749 0.8356 1.7600 -205 1194 -4.7349 0.8291 1.7600 -205 1195 -4.6955 0.8255 1.7600 -205 1196 -4.6546 0.8203 1.7600 -205 1197 -4.6149 0.8126 1.7600 -205 1198 -4.5749 0.8036 1.7600 -205 1199 -4.5363 0.7885 1.7600 -205 1200 -4.4972 0.7721 1.7600 -205 1201 -4.4593 0.7586 1.7600 -205 1202 -4.4248 0.7480 1.7600 -205 1203 -4.3923 0.7418 1.7600 -205 1204 -4.3610 0.7401 1.7600 -205 1205 -4.3260 0.7426 1.7600 -205 1206 -4.2895 0.7499 1.7600 -205 1207 -4.2536 0.7591 1.7600 -205 1208 -4.2194 0.7709 1.7600 -205 1209 -4.1812 0.7843 1.7600 -205 1210 -4.1415 0.8004 1.7600 -205 1211 -4.1039 0.8185 1.7600 -205 1212 -4.0609 0.8374 1.7600 -205 1213 -4.0222 0.8545 1.7600 -205 1214 -3.9874 0.8690 1.7600 -205 1215 -3.9504 0.8784 1.7600 -205 1216 -3.9134 0.8849 1.7600 -205 1217 -3.8747 0.8876 1.7600 -205 1218 -3.8387 0.8877 1.7600 -205 1219 -3.8025 0.8869 1.7600 -205 1220 -3.7599 0.8823 1.7600 -205 1221 -3.7172 0.8752 1.7600 -205 1222 -3.6702 0.8662 1.7600 -205 1223 -3.6229 0.8551 1.7600 -205 1224 -3.5759 0.8445 1.7600 -205 1225 -3.5315 0.8385 1.7600 -205 1226 -3.4900 0.8316 1.7600 -205 1227 -3.4442 0.8284 1.7600 -205 1228 -3.3987 0.8286 1.7600 -205 1229 -3.3541 0.8361 1.7600 -205 1230 -3.3079 0.8486 1.7600 -205 1231 -3.2548 0.8640 1.7600 -205 1232 -3.2002 0.8849 1.7600 -205 1233 -3.1460 0.9061 1.7600 -205 1234 -3.0965 0.9249 1.7600 -205 1235 -3.0483 0.9390 1.7600 -205 1236 -3.0015 0.9485 1.7600 -205 1237 -2.9592 0.9547 1.7600 -205 1238 -2.9130 0.9564 1.7600 -205 1239 -2.8706 0.9531 1.7600 -205 1240 -2.8224 0.9473 1.7600 -205 1241 -2.7775 0.9424 1.7600 -205 1242 -2.7322 0.9331 1.7600 -205 1243 -2.6851 0.9213 1.7600 -205 1244 -2.6359 0.9051 1.7600 -205 1245 -2.5833 0.8895 1.7600 -205 1246 -2.5349 0.8776 1.7600 -205 1247 -2.4905 0.8703 1.7600 -205 1248 -2.4454 0.8668 1.7600 -205 1249 -2.4010 0.8689 1.7600 -205 1250 -2.3549 0.8746 1.7600 -205 1251 -2.3124 0.8845 1.7600 -205 1252 -2.2664 0.8972 1.7600 -205 1253 -2.2189 0.9125 1.7600 -205 1254 -2.1691 0.9292 1.7600 -205 1255 -2.1180 0.9454 1.7600 -205 1256 -2.0681 0.9620 1.7600 -205 1257 -2.0212 0.9751 1.7600 -205 1258 -1.9714 0.9839 1.7600 -205 1259 -1.9222 0.9901 1.7600 -205 1260 -1.8746 0.9900 1.7600 -205 1261 -1.8262 0.9910 1.7600 -205 1262 -1.7767 0.9918 1.7600 -205 1263 -1.7271 0.9923 1.7600 -205 1264 -1.6756 0.9902 1.7600 -205 1265 -1.6164 0.9868 1.7600 -205 1266 -1.5562 0.9797 1.7600 -205 1267 -1.4974 0.9739 1.7600 -205 1268 -1.4510 0.9744 1.7600 -205 1269 -1.4044 0.9818 1.7600 -205 1270 -1.3580 0.9904 1.7600 -205 1271 -1.3093 1.0013 1.7600 -205 1272 -1.2636 1.0066 1.7600 -205 1273 -1.2138 1.0114 1.7600 -205 1274 -1.1617 1.0189 1.7600 -205 1275 -1.1059 1.0285 1.7600 -205 1276 -1.0494 1.0371 1.7600 -205 1277 -0.9914 1.0446 1.7600 -205 1278 -0.9356 1.0513 1.7600 -205 1279 -0.8830 1.0553 1.7600 -205 1280 -0.8308 1.0546 1.7600 -205 1281 -0.7785 1.0507 1.7600 -205 1282 -0.7258 1.0440 1.7600 -205 1283 -0.6735 1.0345 1.7600 -205 1284 -0.6182 1.0238 1.7600 -205 1285 -0.5623 1.0100 1.7600 -205 1286 -0.5040 0.9931 1.7600 -205 1287 -0.4457 0.9758 1.7600 -205 1288 -0.3867 0.9588 1.7600 -205 1289 -0.3280 0.9440 1.7600 -205 1290 -0.2678 0.9338 1.7600 -205 1291 -0.2098 0.9297 1.7600 -205 1292 -0.1450 0.9307 1.7600 -205 1293 -0.0812 0.9352 1.7600 -205 1294 -0.0147 0.9422 1.7600 -205 1295 0.0563 0.9522 1.7600 -205 1296 0.1269 0.9646 1.7600 -205 1297 0.1928 0.9767 1.7600 -205 1298 0.2565 0.9884 1.7600 -205 1299 0.3148 0.9960 1.7600 -205 1300 0.3723 0.9972 1.7600 -205 1301 0.4306 0.9932 1.7600 -205 1302 0.4913 0.9855 1.7600 -205 1303 0.5526 0.9755 1.7600 -205 1304 0.6110 0.9597 1.7600 -205 1305 0.6694 0.9450 1.7600 -205 1306 0.7253 0.9271 1.7600 -205 1307 0.7811 0.9081 1.7600 -205 1308 0.8327 0.8920 1.7600 -205 1309 0.8853 0.8809 1.7600 -205 1310 0.9403 0.8736 1.7600 -205 1311 0.9955 0.8737 1.7600 -205 1312 1.0523 0.8801 1.7600 -205 1313 1.1087 0.8874 1.7600 -205 1314 1.1659 0.8973 1.7600 -205 1315 1.2261 0.9084 1.7600 -205 1316 1.2876 0.9213 1.7600 -205 1317 1.3519 0.9334 1.7600 -205 1318 1.4146 0.9451 1.7600 -205 1319 1.4720 0.9561 1.7600 -205 1320 1.5261 0.9643 1.7600 -205 1321 1.5816 0.9634 1.7600 -205 1322 1.6373 0.9601 1.7600 -205 1323 1.6918 0.9540 1.7600 -205 1324 1.7432 0.9462 1.7600 -205 1325 1.7961 0.9399 1.7600 -205 1326 1.8524 0.9311 1.7600 -205 1327 1.9067 0.9179 1.7600 -205 1328 1.9625 0.9044 1.7600 -205 1329 2.0162 0.8942 1.7600 -205 1330 2.0661 0.8875 1.7600 -205 1331 2.1211 0.8845 1.7600 -205 1332 2.1765 0.8882 1.7600 -205 1333 2.2325 0.8934 1.7600 -205 1334 2.2894 0.9018 1.7600 -205 1335 2.3455 0.9111 1.7600 -205 1336 2.4018 0.9218 1.7600 -205 1337 2.4609 0.9353 1.7600 -205 1338 2.5234 0.9512 1.7600 -205 1339 2.5852 0.9671 1.7600 -205 1340 2.6432 0.9804 1.7600 -205 1341 2.6977 0.9880 1.7600 -205 1342 2.7534 0.9905 1.7600 -205 1343 2.8109 0.9870 1.7600 -205 1344 2.8678 0.9802 1.7600 -205 1345 2.9248 0.9731 1.7600 -205 1346 2.9794 0.9604 1.7600 -205 1347 3.0367 0.9491 1.7600 -205 1348 3.0993 0.9293 1.7600 -205 1349 3.1652 0.9157 1.7600 -205 1350 3.2271 0.9035 1.7600 -205 1351 3.2849 0.8947 1.7600 -205 1352 3.3418 0.8912 1.7600 -205 1353 3.3985 0.8868 1.7600 -205 1354 3.4556 0.8823 1.7600 -205 1355 3.5095 0.8775 1.7600 -205 1356 3.5630 0.8771 1.7600 -205 1357 3.6258 0.8786 1.7600 -205 1358 3.6888 0.8939 1.7600 -205 1359 3.7511 0.9181 1.7600 -205 1360 3.8278 0.9388 1.7600 -205 1361 3.8934 0.9556 1.7600 -205 1362 3.9537 0.9642 1.7600 -205 1363 4.0116 0.9665 1.7600 -205 1364 4.0686 0.9635 1.7600 -205 1365 4.1307 0.9581 1.7600 -205 1366 4.1846 0.9520 1.7600 -205 1367 4.2403 0.9442 1.7600 -205 1368 4.2993 0.9326 1.7600 -205 1369 4.3630 0.9198 1.7600 -205 1370 4.4260 0.9078 1.7600 -205 1371 4.4860 0.8988 1.7600 -205 1372 4.5470 0.8931 1.7600 -205 1373 4.6058 0.8889 1.7600 -205 1374 4.6680 0.8915 1.7600 -205 1375 4.7282 0.8973 1.7600 -205 1376 4.7854 0.9068 1.7600 -205 1377 4.8447 0.9191 1.7600 -205 1378 4.9107 0.9338 1.7600 -205 1379 4.9834 0.9489 1.7600 -205 1380 5.0503 0.9663 1.7600 -205 1381 5.1157 0.9736 1.7600 -205 1382 5.1797 0.9741 1.7600 -205 1383 5.2412 0.9709 1.7600 -205 1384 5.2996 0.9658 1.7600 -205 1385 5.3550 0.9587 1.7600 -205 1386 5.4088 0.9509 1.7600 -205 1387 5.4671 0.9399 1.7600 -205 1388 5.5328 0.9263 1.7600 -205 1389 5.6000 0.9140 1.7600 -205 1390 5.6655 0.9047 1.7600 -205 1391 5.7332 0.9010 1.7600 -205 1392 5.7989 0.9030 1.7600 -205 1393 5.8607 0.9072 1.7600 -205 1394 5.9193 0.9117 1.7600 -206 1139 -7.7953 1.3048 1.7600 -206 1140 -7.7457 1.2845 1.7600 -206 1141 -7.6998 1.2604 1.7600 -206 1142 -7.6555 1.2344 1.7600 -206 1143 -7.6098 1.2142 1.7600 -206 1144 -7.5622 1.2024 1.7600 -206 1145 -7.5124 1.1986 1.7600 -206 1146 -7.4599 1.2012 1.7600 -206 1147 -7.4037 1.2076 1.7600 -206 1148 -7.3447 1.2173 1.7600 -206 1149 -7.2860 1.2287 1.7600 -206 1150 -7.2271 1.2365 1.7600 -206 1151 -7.1727 1.2328 1.7600 -206 1152 -7.1228 1.2189 1.7600 -206 1153 -7.0741 1.1993 1.7600 -206 1154 -7.0252 1.1768 1.7600 -206 1155 -6.9753 1.1541 1.7600 -206 1156 -6.9241 1.1282 1.7600 -206 1157 -6.8754 1.0993 1.7600 -206 1158 -6.8342 1.0709 1.7600 -206 1159 -6.7958 1.0458 1.7600 -206 1160 -6.7600 1.0257 1.7600 -206 1161 -6.7226 1.0098 1.7600 -206 1162 -6.6857 0.9970 1.7600 -206 1163 -6.6453 0.9881 1.7600 -206 1164 -6.6059 0.9857 1.7600 -206 1165 -6.5652 0.9927 1.7600 -206 1166 -6.5264 1.0087 1.7600 -206 1167 -6.4867 1.0308 1.7600 -206 1168 -6.4473 1.0489 1.7600 -206 1169 -6.4079 1.0578 1.7600 -206 1170 -6.3680 1.0569 1.7600 -206 1171 -6.3320 1.0501 1.7600 -206 1172 -6.2973 1.0371 1.7600 -206 1173 -6.2582 1.0236 1.7600 -206 1174 -6.2230 1.0061 1.7600 -206 1175 -6.1866 0.9869 1.7600 -206 1176 -6.1504 0.9621 1.7600 -206 1177 -6.1128 0.9328 1.7600 -206 1178 -6.0788 0.9023 1.7600 -206 1179 -6.0407 0.8680 1.7600 -206 1180 -6.0043 0.8383 1.7600 -206 1181 -5.9608 0.8139 1.7600 -206 1182 -5.9197 0.7949 1.7600 -206 1183 -5.8763 0.7799 1.7600 -206 1184 -5.8369 0.7684 1.7600 -206 1185 -5.8029 0.7615 1.7600 -206 1186 -5.7653 0.7621 1.7600 -206 1187 -5.7246 0.7688 1.7600 -206 1188 -5.6854 0.7759 1.7600 -206 1189 -5.6490 0.7892 1.7600 -206 1190 -5.6127 0.8048 1.7600 -206 1191 -5.5750 0.8193 1.7600 -206 1192 -5.5336 0.8247 1.7600 -206 1193 -5.4914 0.8196 1.7600 -206 1194 -5.4509 0.8085 1.7600 -206 1195 -5.4115 0.7963 1.7600 -206 1196 -5.3730 0.7830 1.7600 -206 1197 -5.3335 0.7684 1.7600 -206 1198 -5.2953 0.7496 1.7600 -206 1199 -5.2553 0.7298 1.7600 -206 1200 -5.2159 0.7135 1.7600 -206 1201 -5.1776 0.7054 1.7600 -206 1202 -5.1435 0.7046 1.7600 -206 1203 -5.1072 0.7077 1.7600 -206 1204 -5.0749 0.7138 1.7600 -206 1205 -5.0440 0.7254 1.7600 -206 1206 -5.0119 0.7418 1.7600 -206 1207 -4.9797 0.7630 1.7600 -206 1208 -4.9454 0.7870 1.7600 -206 1209 -4.9084 0.8096 1.7600 -206 1210 -4.8714 0.8242 1.7600 -206 1211 -4.8322 0.8274 1.7600 -206 1212 -4.7959 0.8236 1.7600 -206 1213 -4.7619 0.8153 1.7600 -206 1214 -4.7309 0.8032 1.7600 -206 1215 -4.7055 0.7877 1.7600 -206 1216 -4.6751 0.7718 1.7600 -206 1217 -4.6433 0.7543 1.7600 -206 1218 -4.6069 0.7341 1.7600 -206 1219 -4.5647 0.7065 1.7600 -206 1220 -4.5188 0.6755 1.7600 -206 1221 -4.4716 0.6518 1.7600 -206 1222 -4.4266 0.6367 1.7600 -206 1223 -4.3810 0.6300 1.7600 -206 1224 -4.3421 0.6300 1.7600 -206 1225 -4.3027 0.6338 1.7600 -206 1226 -4.2623 0.6427 1.7600 -206 1227 -4.2248 0.6573 1.7600 -206 1228 -4.1861 0.6787 1.7600 -206 1229 -4.1448 0.7041 1.7600 -206 1230 -4.0988 0.7309 1.7600 -206 1231 -4.0405 0.7462 1.7600 -206 1232 -3.9782 0.7415 1.7600 -206 1233 -3.9124 0.7276 1.7600 -206 1234 -3.8503 0.7080 1.7600 -206 1235 -3.7967 0.6916 1.7600 -206 1236 -3.7455 0.6769 1.7600 -206 1237 -3.6988 0.6607 1.7600 -206 1238 -3.6513 0.6378 1.7600 -206 1239 -3.6039 0.6186 1.7600 -206 1240 -3.5599 0.6064 1.7600 -206 1241 -3.5180 0.6010 1.7600 -206 1242 -3.4749 0.6013 1.7600 -206 1243 -3.4371 0.6016 1.7600 -206 1244 -3.4015 0.6062 1.7600 -206 1245 -3.3633 0.6160 1.7600 -206 1246 -3.3237 0.6253 1.7600 -206 1247 -3.2818 0.6429 1.7600 -206 1248 -3.2394 0.6621 1.7600 -206 1249 -3.1916 0.6804 1.7600 -206 1250 -3.1449 0.6909 1.7600 -206 1251 -3.0983 0.6941 1.7600 -206 1252 -3.0511 0.6870 1.7600 -206 1253 -3.0106 0.6756 1.7600 -206 1254 -2.9720 0.6636 1.7600 -206 1255 -2.9414 0.6473 1.7600 -206 1256 -2.9094 0.6307 1.7600 -206 1257 -2.8751 0.6081 1.7600 -206 1258 -2.8326 0.5862 1.7600 -206 1259 -2.7858 0.5654 1.7600 -206 1260 -2.7381 0.5506 1.7600 -206 1261 -2.6857 0.5451 1.7600 -206 1262 -2.6366 0.5466 1.7600 -206 1263 -2.5889 0.5531 1.7600 -206 1264 -2.5437 0.5666 1.7600 -206 1265 -2.4992 0.5852 1.7600 -206 1266 -2.4521 0.6084 1.7600 -206 1267 -2.4037 0.6334 1.7600 -206 1268 -2.3517 0.6584 1.7600 -206 1269 -2.2968 0.6783 1.7600 -206 1270 -2.2396 0.6866 1.7600 -206 1271 -2.1817 0.6855 1.7600 -206 1272 -2.1267 0.6790 1.7600 -206 1273 -2.0745 0.6681 1.7600 -206 1274 -2.0231 0.6567 1.7600 -206 1275 -1.9732 0.6422 1.7600 -206 1276 -1.9213 0.6240 1.7600 -206 1277 -1.8665 0.6071 1.7600 -206 1278 -1.8117 0.5871 1.7600 -206 1279 -1.7549 0.5753 1.7600 -206 1280 -1.6966 0.5725 1.7600 -206 1281 -1.6392 0.5751 1.7600 -206 1282 -1.5813 0.5811 1.7600 -206 1283 -1.5228 0.5898 1.7600 -206 1284 -1.4653 0.6011 1.7600 -206 1285 -1.4035 0.6159 1.7600 -206 1286 -1.3378 0.6348 1.7600 -206 1287 -1.2678 0.6560 1.7600 -206 1288 -1.1935 0.6647 1.7600 -206 1289 -1.1155 0.6598 1.7600 -206 1290 -1.0396 0.6479 1.7600 -206 1291 -0.9696 0.6345 1.7600 -206 1292 -0.9089 0.6176 1.7600 -206 1293 -0.8477 0.5925 1.7600 -206 1294 -0.7795 0.5617 1.7600 -206 1295 -0.7061 0.5182 1.7600 -206 1296 -0.6278 0.4798 1.7600 -206 1297 -0.5618 0.4651 1.7600 -206 1298 -0.5023 0.4645 1.7600 -206 1299 -0.4450 0.4677 1.7600 -206 1300 -0.3842 0.4751 1.7600 -206 1301 -0.3178 0.4856 1.7600 -206 1302 -0.2400 0.4998 1.7600 -206 1303 -0.1517 0.5259 1.7600 -206 1304 -0.0690 0.5526 1.7600 -206 1305 0.0151 0.5747 1.7600 -206 1306 0.0956 0.5923 1.7600 -206 1307 0.1795 0.6106 1.7600 -206 1308 0.2519 0.6108 1.7600 -206 1309 0.3204 0.5959 1.7600 -206 1310 0.3860 0.5673 1.7600 -206 1311 0.4448 0.5547 1.7600 -206 1312 0.5038 0.5463 1.7600 -206 1313 0.5614 0.5389 1.7600 -206 1314 0.6146 0.5360 1.7600 -206 1315 0.6589 0.5412 1.7600 -206 1316 0.6996 0.5539 1.7600 -206 1317 0.7451 0.5680 1.7600 -206 1318 0.7974 0.5828 1.7600 -206 1319 0.8532 0.6007 1.7600 -206 1320 0.9154 0.6238 1.7600 -206 1321 0.9821 0.6499 1.7600 -206 1322 1.0500 0.6746 1.7600 -206 1323 1.1131 0.6880 1.7600 -206 1324 1.1696 0.6902 1.7600 -206 1325 1.2241 0.6876 1.7600 -206 1326 1.2795 0.6827 1.7600 -206 1327 1.3343 0.6745 1.7600 -206 1328 1.3871 0.6631 1.7600 -206 1329 1.4387 0.6457 1.7600 -206 1330 1.4905 0.6252 1.7600 -206 1331 1.5355 0.6036 1.7600 -206 1332 1.5788 0.5945 1.7600 -206 1333 1.6160 0.5927 1.7600 -206 1334 1.6575 0.5972 1.7600 -206 1335 1.7017 0.6027 1.7600 -206 1336 1.7567 0.6100 1.7600 -206 1337 1.8172 0.6176 1.7600 -206 1338 1.8810 0.6287 1.7600 -206 1339 1.9526 0.6409 1.7600 -206 1340 2.0195 0.6501 1.7600 -206 1341 2.0821 0.6458 1.7600 -206 1342 2.1381 0.6288 1.7600 -206 1343 2.1864 0.6086 1.7600 -206 1344 2.2338 0.5882 1.7600 -206 1345 2.2823 0.5650 1.7600 -206 1346 2.3310 0.5397 1.7600 -206 1347 2.3815 0.5106 1.7600 -206 1348 2.4313 0.4813 1.7600 -206 1349 2.4801 0.4613 1.7600 -206 1350 2.5277 0.4474 1.7600 -206 1351 2.5753 0.4415 1.7600 -206 1352 2.6195 0.4392 1.7600 -206 1353 2.6660 0.4406 1.7600 -206 1354 2.7109 0.4411 1.7600 -206 1355 2.7598 0.4466 1.7600 -206 1356 2.8128 0.4568 1.7600 -206 1357 2.8721 0.4677 1.7600 -206 1358 2.9336 0.4817 1.7600 -206 1359 2.9912 0.4919 1.7600 -206 1360 3.0417 0.4943 1.7600 -206 1361 3.0877 0.4886 1.7600 -206 1362 3.1282 0.4788 1.7600 -206 1363 3.1688 0.4651 1.7600 -206 1364 3.2083 0.4496 1.7600 -206 1365 3.2434 0.4370 1.7600 -206 1366 3.2770 0.4188 1.7600 -206 1367 3.3132 0.4029 1.7600 -206 1368 3.3537 0.3901 1.7600 -206 1369 3.3990 0.3847 1.7600 -206 1370 3.4468 0.3872 1.7600 -206 1371 3.4955 0.3919 1.7600 -206 1372 3.5422 0.3995 1.7600 -206 1373 3.5939 0.4099 1.7600 -206 1374 3.6473 0.4239 1.7600 -206 1375 3.7055 0.4417 1.7600 -206 1376 3.7726 0.4599 1.7600 -206 1377 3.8487 0.4759 1.7600 -206 1378 3.9220 0.4866 1.7600 -206 1379 3.9897 0.4917 1.7600 -206 1380 4.0529 0.4913 1.7600 -206 1381 4.1096 0.4904 1.7600 -206 1382 4.1637 0.4910 1.7600 -206 1383 4.2161 0.4906 1.7600 -206 1384 4.2732 0.4854 1.7600 -206 1385 4.3352 0.4772 1.7600 -206 1386 4.3996 0.4696 1.7600 -206 1387 4.4611 0.4722 1.7600 -206 1388 4.5197 0.4817 1.7600 -206 1389 4.5792 0.4945 1.7600 -206 1390 4.6362 0.5148 1.7600 -206 1391 4.6922 0.5402 1.7600 -206 1392 4.7477 0.5703 1.7600 -206 1393 4.8140 0.6031 1.7600 -206 1394 4.8807 0.6314 1.7600 -206 1395 4.9579 0.6470 1.7600 -206 1396 5.0367 0.6515 1.7600 -206 1397 5.1106 0.6484 1.7600 -206 1398 5.1747 0.6472 1.7600 -206 1399 5.2369 0.6446 1.7600 -206 1400 5.2951 0.6393 1.7600 -206 1401 5.3587 0.6273 1.7600 -206 1402 5.4279 0.6166 1.7600 -206 1403 5.4998 0.6139 1.7600 -206 1404 5.5686 0.6164 1.7600 -206 1405 5.6339 0.6240 1.7600 -206 1406 5.6943 0.6339 1.7600 -206 1407 5.7510 0.6448 1.7600 -206 1408 5.8072 0.6574 1.7600 -206 1409 5.8653 0.6744 1.7600 -206 1410 5.9252 0.6904 1.7600 -207 1129 -7.8176 2.1804 1.7600 -207 1130 -7.7726 2.1618 1.7600 -207 1131 -7.7344 2.1488 1.7600 -207 1132 -7.6986 2.1405 1.7600 -207 1133 -7.6600 2.1377 1.7600 -207 1134 -7.6227 2.1418 1.7600 -207 1135 -7.5840 2.1503 1.7600 -207 1136 -7.5417 2.1610 1.7600 -207 1137 -7.4955 2.1726 1.7600 -207 1138 -7.4470 2.1862 1.7600 -207 1139 -7.3963 2.2037 1.7600 -207 1140 -7.3445 2.2273 1.7600 -207 1141 -7.2951 2.2546 1.7600 -207 1142 -7.2509 2.2804 1.7600 -207 1143 -7.2079 2.3001 1.7600 -207 1144 -7.1634 2.3131 1.7600 -207 1145 -7.1179 2.3200 1.7600 -207 1146 -7.0717 2.3225 1.7600 -207 1147 -7.0240 2.3201 1.7600 -207 1148 -6.9732 2.3136 1.7600 -207 1149 -6.9197 2.3020 1.7600 -207 1150 -6.8657 2.2833 1.7600 -207 1151 -6.8128 2.2553 1.7600 -207 1152 -6.7595 2.2204 1.7600 -207 1153 -6.7101 2.1834 1.7600 -207 1154 -6.6657 2.1490 1.7600 -207 1155 -6.6259 2.1196 1.7600 -207 1156 -6.5888 2.1063 1.7600 -207 1157 -6.5463 2.0961 1.7600 -207 1158 -6.5069 2.0943 1.7600 -207 1159 -6.4692 2.0948 1.7600 -207 1160 -6.4342 2.0881 1.7600 -207 1161 -6.3955 2.0858 1.7600 -207 1162 -6.3533 2.0888 1.7600 -207 1163 -6.3049 2.0929 1.7600 -207 1164 -6.2589 2.1048 1.7600 -207 1165 -6.2158 2.1164 1.7600 -207 1166 -6.1697 2.1243 1.7600 -207 1167 -6.1296 2.1317 1.7600 -207 1168 -6.0870 2.1397 1.7600 -207 1169 -6.0440 2.1466 1.7600 -207 1170 -5.9987 2.1508 1.7600 -207 1171 -5.9592 2.1470 1.7600 -207 1172 -5.9202 2.1350 1.7600 -207 1173 -5.8807 2.1219 1.7600 -207 1174 -5.8399 2.1079 1.7600 -207 1175 -5.8018 2.0887 1.7600 -207 1176 -5.7671 2.0653 1.7600 -207 1177 -5.7335 2.0359 1.7600 -207 1178 -5.7006 2.0053 1.7600 -207 1179 -5.6731 1.9715 1.7600 -207 1180 -5.6449 1.9378 1.7600 -207 1181 -5.6198 1.9068 1.7600 -207 1182 -5.5957 1.8846 1.7600 -207 1183 -5.5713 1.8696 1.7600 -207 1184 -5.5491 1.8615 1.7600 -207 1185 -5.5243 1.8580 1.7600 -207 1186 -5.4981 1.8577 1.7600 -207 1187 -5.4669 1.8586 1.7600 -207 1188 -5.4323 1.8601 1.7600 -207 1189 -5.3921 1.8677 1.7600 -207 1190 -5.3499 1.8786 1.7600 -207 1191 -5.3044 1.8896 1.7600 -207 1192 -5.2568 1.9030 1.7600 -207 1193 -5.2127 1.9142 1.7600 -207 1194 -5.1691 1.9231 1.7600 -207 1195 -5.1279 1.9277 1.7600 -207 1196 -5.0897 1.9277 1.7600 -207 1197 -5.0537 1.9226 1.7600 -207 1198 -5.0241 1.9157 1.7600 -207 1199 -4.9999 1.9088 1.7600 -207 1200 -4.9773 1.9030 1.7600 -207 1201 -4.9541 1.8973 1.7600 -207 1202 -4.9296 1.8865 1.7600 -207 1203 -4.9097 1.8705 1.7600 -207 1204 -4.8920 1.8484 1.7600 -207 1205 -4.8746 1.8205 1.7600 -207 1206 -4.8600 1.7861 1.7600 -207 1207 -4.8529 1.7499 1.7600 -207 1208 -4.8528 1.7129 1.7600 -207 1209 -4.8522 1.6743 1.7600 -207 1210 -4.8481 1.6336 1.7600 -207 1211 -4.8343 1.5968 1.7600 -207 1212 -4.8117 1.5673 1.7600 -207 1213 -4.7885 1.5489 1.7600 -207 1214 -4.7643 1.5376 1.7600 -207 1215 -4.7383 1.5318 1.7600 -207 1216 -4.7105 1.5333 1.7600 -207 1217 -4.6810 1.5431 1.7600 -207 1218 -4.6475 1.5631 1.7600 -207 1219 -4.6119 1.5926 1.7600 -207 1220 -4.5767 1.6252 1.7600 -207 1221 -4.5397 1.6592 1.7600 -207 1222 -4.4978 1.6873 1.7600 -207 1223 -4.4526 1.7085 1.7600 -207 1224 -4.4072 1.7190 1.7600 -207 1225 -4.3671 1.7210 1.7600 -207 1226 -4.3304 1.7176 1.7600 -207 1227 -4.2939 1.7053 1.7600 -207 1228 -4.2560 1.6810 1.7600 -207 1229 -4.2213 1.6465 1.7600 -207 1230 -4.1900 1.6047 1.7600 -207 1231 -4.1578 1.5623 1.7600 -207 1232 -4.1266 1.5256 1.7600 -207 1233 -4.0978 1.4901 1.7600 -207 1234 -4.0696 1.4560 1.7600 -207 1235 -4.0377 1.4284 1.7600 -207 1236 -4.0029 1.4107 1.7600 -207 1237 -3.9704 1.3986 1.7600 -207 1238 -3.9422 1.3911 1.7600 -207 1239 -3.9110 1.3910 1.7600 -207 1240 -3.8762 1.4025 1.7600 -207 1241 -3.8448 1.4238 1.7600 -207 1242 -3.8150 1.4510 1.7600 -207 1243 -3.7836 1.4841 1.7600 -207 1244 -3.7495 1.5108 1.7600 -207 1245 -3.7124 1.5340 1.7600 -207 1246 -3.6696 1.5415 1.7600 -207 1247 -3.6229 1.5430 1.7600 -207 1248 -3.5745 1.5398 1.7600 -207 1249 -3.5239 1.5362 1.7600 -207 1250 -3.4720 1.5272 1.7600 -207 1251 -3.4218 1.5084 1.7600 -207 1252 -3.3798 1.4803 1.7600 -207 1253 -3.3373 1.4451 1.7600 -207 1254 -3.2960 1.4093 1.7600 -207 1255 -3.2633 1.3893 1.7600 -207 1256 -3.2255 1.3810 1.7600 -207 1257 -3.1789 1.3800 1.7600 -207 1258 -3.1329 1.3798 1.7600 -207 1259 -3.0876 1.3839 1.7600 -207 1260 -3.0416 1.3937 1.7600 -207 1261 -2.9959 1.4090 1.7600 -207 1262 -2.9543 1.4390 1.7600 -207 1263 -2.9120 1.4758 1.7600 -207 1264 -2.8667 1.5052 1.7600 -207 1265 -2.8206 1.5299 1.7600 -207 1266 -2.7749 1.5522 1.7600 -207 1267 -2.7255 1.5649 1.7600 -207 1268 -2.6738 1.5704 1.7600 -207 1269 -2.6194 1.5713 1.7600 -207 1270 -2.5666 1.5749 1.7600 -207 1271 -2.5125 1.5709 1.7600 -207 1272 -2.4552 1.5583 1.7600 -207 1273 -2.3974 1.5330 1.7600 -207 1274 -2.3422 1.5033 1.7600 -207 1275 -2.2887 1.4766 1.7600 -207 1276 -2.2387 1.4508 1.7600 -207 1277 -2.1891 1.4327 1.7600 -207 1278 -2.1393 1.4237 1.7600 -207 1279 -2.0902 1.4212 1.7600 -207 1280 -2.0453 1.4209 1.7600 -207 1281 -2.0000 1.4227 1.7600 -207 1282 -1.9513 1.4286 1.7600 -207 1283 -1.9023 1.4415 1.7600 -207 1284 -1.8463 1.4602 1.7600 -207 1285 -1.7989 1.4855 1.7600 -207 1286 -1.7516 1.5165 1.7600 -207 1287 -1.7115 1.5390 1.7600 -207 1288 -1.6648 1.5556 1.7600 -207 1289 -1.6152 1.5612 1.7600 -207 1290 -1.5662 1.5598 1.7600 -207 1291 -1.5160 1.5580 1.7600 -207 1292 -1.4622 1.5546 1.7600 -207 1293 -1.4108 1.5433 1.7600 -207 1294 -1.3635 1.5208 1.7600 -207 1295 -1.3153 1.4931 1.7600 -207 1296 -1.2707 1.4671 1.7600 -207 1297 -1.2324 1.4400 1.7600 -207 1298 -1.1863 1.4300 1.7600 -207 1299 -1.1396 1.4306 1.7600 -207 1300 -1.0892 1.4340 1.7600 -207 1301 -1.0362 1.4429 1.7600 -207 1302 -0.9810 1.4545 1.7600 -207 1303 -0.9303 1.4732 1.7600 -207 1304 -0.8718 1.5055 1.7600 -207 1305 -0.8160 1.5374 1.7600 -207 1306 -0.7644 1.5660 1.7600 -207 1307 -0.7164 1.5875 1.7600 -207 1308 -0.6665 1.5981 1.7600 -207 1309 -0.6142 1.6000 1.7600 -207 1310 -0.5572 1.6002 1.7600 -207 1311 -0.4965 1.5991 1.7600 -207 1312 -0.4379 1.5895 1.7600 -207 1313 -0.3841 1.5682 1.7600 -207 1314 -0.3342 1.5332 1.7600 -207 1315 -0.2843 1.4954 1.7600 -207 1316 -0.2383 1.4633 1.7600 -207 1317 -0.1964 1.4458 1.7600 -207 1318 -0.1523 1.4429 1.7600 -207 1319 -0.1066 1.4442 1.7600 -207 1320 -0.0562 1.4482 1.7600 -207 1321 -0.0008 1.4551 1.7600 -207 1322 0.0545 1.4693 1.7600 -207 1323 0.1116 1.4907 1.7600 -207 1324 0.1687 1.5098 1.7600 -207 1325 0.2293 1.5320 1.7600 -207 1326 0.2895 1.5527 1.7600 -207 1327 0.3482 1.5712 1.7600 -207 1328 0.4066 1.5849 1.7600 -207 1329 0.4637 1.5953 1.7600 -207 1330 0.5237 1.6014 1.7600 -207 1331 0.5842 1.6037 1.7600 -207 1332 0.6475 1.6028 1.7600 -207 1333 0.7110 1.5942 1.7600 -207 1334 0.7718 1.5754 1.7600 -207 1335 0.8333 1.5512 1.7600 -207 1336 0.8929 1.5228 1.7600 -207 1337 0.9406 1.5015 1.7600 -207 1338 0.9850 1.4865 1.7600 -207 1339 1.0290 1.4824 1.7600 -207 1340 1.0751 1.4832 1.7600 -207 1341 1.1252 1.4845 1.7600 -207 1342 1.1804 1.4872 1.7600 -207 1343 1.2388 1.4940 1.7600 -207 1344 1.3007 1.5033 1.7600 -207 1345 1.3661 1.5229 1.7600 -207 1346 1.4316 1.5495 1.7600 -207 1347 1.4954 1.5716 1.7600 -207 1348 1.5534 1.5873 1.7600 -207 1349 1.6126 1.5937 1.7600 -207 1350 1.6701 1.5904 1.7600 -207 1351 1.7315 1.5833 1.7600 -207 1352 1.7940 1.5740 1.7600 -207 1353 1.8572 1.5617 1.7600 -207 1354 1.9216 1.5417 1.7600 -207 1355 1.9844 1.5142 1.7600 -207 1356 2.0474 1.4835 1.7600 -207 1357 2.1084 1.4595 1.7600 -207 1358 2.1646 1.4430 1.7600 -207 1359 2.2184 1.4380 1.7600 -207 1360 2.2725 1.4412 1.7600 -207 1361 2.3291 1.4465 1.7600 -207 1362 2.3864 1.4546 1.7600 -207 1363 2.4452 1.4660 1.7600 -207 1364 2.5016 1.4845 1.7600 -207 1365 2.5606 1.5083 1.7600 -207 1366 2.6214 1.5397 1.7600 -207 1367 2.6820 1.5681 1.7600 -207 1368 2.7356 1.5886 1.7600 -207 1369 2.7894 1.6011 1.7600 -207 1370 2.8458 1.6009 1.7600 -207 1371 2.9070 1.5976 1.7600 -207 1372 2.9703 1.5946 1.7600 -207 1373 3.0363 1.5914 1.7600 -207 1374 3.0995 1.5783 1.7600 -207 1375 3.1616 1.5558 1.7600 -207 1376 3.2289 1.5323 1.7600 -207 1377 3.3020 1.5103 1.7600 -207 1378 3.3627 1.4982 1.7600 -207 1379 3.4218 1.4950 1.7600 -207 1380 3.4762 1.5005 1.7600 -207 1381 3.5341 1.5094 1.7600 -207 1382 3.5946 1.5187 1.7600 -207 1383 3.6544 1.5319 1.7600 -207 1384 3.7148 1.5492 1.7600 -207 1385 3.7826 1.5737 1.7600 -207 1386 3.8487 1.6034 1.7600 -207 1387 3.9110 1.6246 1.7600 -207 1388 3.9740 1.6361 1.7600 -207 1389 4.0341 1.6425 1.7600 -207 1390 4.1010 1.6468 1.7600 -207 1391 4.1631 1.6506 1.7600 -207 1392 4.2266 1.6506 1.7600 -207 1393 4.2932 1.6451 1.7600 -207 1394 4.3656 1.6326 1.7600 -207 1395 4.4420 1.6135 1.7600 -207 1396 4.5237 1.5997 1.7600 -207 1397 4.5966 1.5922 1.7600 -207 1398 4.6643 1.5922 1.7600 -207 1399 4.7313 1.6009 1.7600 -207 1400 4.7947 1.6138 1.7600 -207 1401 4.8577 1.6288 1.7600 -207 1402 4.9174 1.6446 1.7600 -207 1403 4.9802 1.6648 1.7600 -207 1404 5.0461 1.6920 1.7600 -207 1405 5.1181 1.7235 1.7600 -207 1406 5.1925 1.7515 1.7600 -207 1407 5.2632 1.7710 1.7600 -207 1408 5.3382 1.7805 1.7600 -207 1409 5.4159 1.7834 1.7600 -207 1410 5.4852 1.7798 1.7600 -207 1411 5.5529 1.7779 1.7600 -207 1412 5.6169 1.7727 1.7600 -207 1413 5.6776 1.7633 1.7600 -207 1414 5.7421 1.7427 1.7600 -207 1415 5.8235 1.7147 1.7600 -207 1416 5.9054 1.6915 1.7600 -208 1153 -7.8161 2.1884 1.7600 -208 1154 -7.7685 2.2035 1.7600 -208 1155 -7.7089 2.2209 1.7600 -208 1156 -7.6491 2.2425 1.7600 -208 1157 -7.6026 2.2683 1.7600 -208 1158 -7.5710 2.2923 1.7600 -208 1159 -7.5441 2.3099 1.7600 -208 1160 -7.5125 2.3236 1.7600 -208 1161 -7.4752 2.3324 1.7600 -208 1162 -7.4347 2.3377 1.7600 -208 1163 -7.3985 2.3414 1.7600 -208 1164 -7.3694 2.3441 1.7600 -208 1165 -7.3372 2.3451 1.7600 -208 1166 -7.2953 2.3422 1.7600 -208 1167 -7.2433 2.3362 1.7600 -208 1168 -7.1958 2.3199 1.7600 -208 1169 -7.1573 2.3035 1.7600 -208 1170 -7.1164 2.2824 1.7600 -208 1171 -7.0677 2.2628 1.7600 -208 1172 -7.0191 2.2469 1.7600 -208 1173 -6.9774 2.2401 1.7600 -208 1174 -6.9434 2.2321 1.7600 -208 1175 -6.9136 2.2270 1.7600 -208 1176 -6.8853 2.2237 1.7600 -208 1177 -6.8535 2.2188 1.7600 -208 1178 -6.8147 2.2177 1.7600 -208 1179 -6.7741 2.2147 1.7600 -208 1180 -6.7308 2.2152 1.7600 -208 1181 -6.6873 2.2176 1.7600 -208 1182 -6.6392 2.2227 1.7600 -208 1183 -6.5900 2.2326 1.7600 -208 1184 -6.5439 2.2411 1.7600 -208 1185 -6.5058 2.2489 1.7600 -208 1186 -6.4723 2.2511 1.7600 -208 1187 -6.4441 2.2484 1.7600 -208 1188 -6.4177 2.2455 1.7600 -208 1189 -6.3947 2.2459 1.7600 -208 1190 -6.3702 2.2437 1.7600 -208 1191 -6.3387 2.2348 1.7600 -208 1192 -6.3090 2.2208 1.7600 -208 1193 -6.2776 2.2032 1.7600 -208 1194 -6.2451 2.1796 1.7600 -208 1195 -6.2125 2.1528 1.7600 -208 1196 -6.1761 2.1223 1.7600 -208 1197 -6.1438 2.0983 1.7600 -208 1198 -6.1152 2.0777 1.7600 -208 1199 -6.0905 2.0570 1.7600 -208 1200 -6.0644 2.0421 1.7600 -208 1201 -6.0390 2.0272 1.7600 -208 1202 -6.0114 2.0146 1.7600 -208 1203 -5.9798 2.0042 1.7600 -208 1204 -5.9411 1.9972 1.7600 -208 1205 -5.9019 1.9924 1.7600 -208 1206 -5.8552 1.9911 1.7600 -208 1207 -5.8080 1.9910 1.7600 -208 1208 -5.7541 1.9944 1.7600 -208 1209 -5.7063 1.9993 1.7600 -208 1210 -5.6658 2.0031 1.7600 -208 1211 -5.6307 2.0060 1.7600 -208 1212 -5.5951 2.0053 1.7600 -208 1213 -5.5602 2.0048 1.7600 -208 1214 -5.5280 2.0021 1.7600 -208 1215 -5.4974 1.9971 1.7600 -208 1216 -5.4638 1.9907 1.7600 -208 1217 -5.4312 1.9799 1.7600 -208 1218 -5.4022 1.9649 1.7600 -208 1219 -5.3737 1.9449 1.7600 -208 1220 -5.3482 1.9185 1.7600 -208 1221 -5.3209 1.8870 1.7600 -208 1222 -5.2904 1.8571 1.7600 -208 1223 -5.2560 1.8286 1.7600 -208 1224 -5.2218 1.8023 1.7600 -208 1225 -5.1888 1.7792 1.7600 -208 1226 -5.1562 1.7619 1.7600 -208 1227 -5.1238 1.7532 1.7600 -208 1228 -5.0915 1.7487 1.7600 -208 1229 -5.0554 1.7483 1.7600 -208 1230 -5.0168 1.7521 1.7600 -208 1231 -4.9734 1.7643 1.7600 -208 1232 -4.9250 1.7806 1.7600 -208 1233 -4.8772 1.7979 1.7600 -208 1234 -4.8368 1.8051 1.7600 -208 1235 -4.8077 1.8094 1.7600 -208 1236 -4.7773 1.8083 1.7600 -208 1237 -4.7432 1.8052 1.7600 -208 1238 -4.7067 1.7984 1.7600 -208 1239 -4.6672 1.7877 1.7600 -208 1240 -4.6282 1.7696 1.7600 -208 1241 -4.5906 1.7435 1.7600 -208 1242 -4.5494 1.7085 1.7600 -208 1243 -4.5075 1.6662 1.7600 -208 1244 -4.4654 1.6213 1.7600 -208 1245 -4.4317 1.5844 1.7600 -208 1246 -4.4040 1.5523 1.7600 -208 1247 -4.3767 1.5267 1.7600 -208 1248 -4.3511 1.5034 1.7600 -208 1249 -4.3263 1.4850 1.7600 -208 1250 -4.3014 1.4698 1.7600 -208 1251 -4.2705 1.4608 1.7600 -208 1252 -4.2365 1.4580 1.7600 -208 1253 -4.2020 1.4620 1.7600 -208 1254 -4.1656 1.4710 1.7600 -208 1255 -4.1287 1.4868 1.7600 -208 1256 -4.0878 1.5014 1.7600 -208 1257 -4.0486 1.5107 1.7600 -208 1258 -4.0110 1.5102 1.7600 -208 1259 -3.9714 1.5058 1.7600 -208 1260 -3.9289 1.5031 1.7600 -208 1261 -3.8747 1.4991 1.7600 -208 1262 -3.8155 1.4865 1.7600 -208 1263 -3.7527 1.4707 1.7600 -208 1264 -3.6972 1.4488 1.7600 -208 1265 -3.6443 1.4283 1.7600 -208 1266 -3.6008 1.4080 1.7600 -208 1267 -3.5597 1.3932 1.7600 -208 1268 -3.5234 1.3817 1.7600 -208 1269 -3.4922 1.3739 1.7600 -208 1270 -3.4607 1.3660 1.7600 -208 1271 -3.4258 1.3642 1.7600 -208 1272 -3.3874 1.3644 1.7600 -208 1273 -3.3432 1.3667 1.7600 -208 1274 -3.2997 1.3732 1.7600 -208 1275 -3.2575 1.3835 1.7600 -208 1276 -3.2112 1.3983 1.7600 -208 1277 -3.1657 1.4190 1.7600 -208 1278 -3.1234 1.4355 1.7600 -208 1279 -3.0824 1.4474 1.7600 -208 1280 -3.0415 1.4561 1.7600 -208 1281 -3.0015 1.4601 1.7600 -208 1282 -2.9645 1.4634 1.7600 -208 1283 -2.9222 1.4643 1.7600 -208 1284 -2.8779 1.4625 1.7600 -208 1285 -2.8289 1.4547 1.7600 -208 1286 -2.7767 1.4422 1.7600 -208 1287 -2.7195 1.4255 1.7600 -208 1288 -2.6588 1.4064 1.7600 -208 1289 -2.6050 1.3884 1.7600 -208 1290 -2.5568 1.3793 1.7600 -208 1291 -2.5106 1.3751 1.7600 -208 1292 -2.4658 1.3764 1.7600 -208 1293 -2.4217 1.3798 1.7600 -208 1294 -2.3776 1.3840 1.7600 -208 1295 -2.3315 1.3919 1.7600 -208 1296 -2.2819 1.4038 1.7600 -208 1297 -2.2297 1.4200 1.7600 -208 1298 -2.1760 1.4363 1.7600 -208 1299 -2.1222 1.4546 1.7600 -208 1300 -2.0799 1.4732 1.7600 -208 1301 -2.0391 1.4950 1.7600 -208 1302 -1.9962 1.5088 1.7600 -208 1303 -1.9524 1.5098 1.7600 -208 1304 -1.9103 1.5062 1.7600 -208 1305 -1.8742 1.5059 1.7600 -208 1306 -1.8390 1.5025 1.7600 -208 1307 -1.7948 1.4893 1.7600 -208 1308 -1.7366 1.4688 1.7600 -208 1309 -1.6656 1.4456 1.7600 -208 1310 -1.5782 1.4190 1.7600 -208 1311 -1.4908 1.3959 1.7600 -208 1312 -1.4195 1.3982 1.7600 -208 1313 -1.3637 1.4031 1.7600 -208 1314 -1.3215 1.4042 1.7600 -208 1315 -1.2850 1.4088 1.7600 -208 1316 -1.2404 1.4154 1.7600 -208 1317 -1.1884 1.4241 1.7600 -208 1318 -1.1233 1.4372 1.7600 -208 1319 -1.0577 1.4543 1.7600 -208 1320 -0.9988 1.4754 1.7600 -208 1321 -0.9534 1.4908 1.7600 -208 1322 -0.9150 1.4991 1.7600 -208 1323 -0.8834 1.5039 1.7600 -208 1324 -0.8488 1.5066 1.7600 -208 1325 -0.8033 1.5069 1.7600 -208 1326 -0.7428 1.5049 1.7600 -208 1327 -0.6736 1.5000 1.7600 -208 1328 -0.6117 1.4935 1.7600 -208 1329 -0.5528 1.4781 1.7600 -208 1330 -0.4951 1.4617 1.7600 -208 1331 -0.4367 1.4484 1.7600 -208 1332 -0.3797 1.4326 1.7600 -208 1333 -0.3231 1.4239 1.7600 -208 1334 -0.2743 1.4189 1.7600 -208 1335 -0.2310 1.4180 1.7600 -208 1336 -0.1861 1.4174 1.7600 -208 1337 -0.1296 1.4205 1.7600 -208 1338 -0.0658 1.4218 1.7600 -208 1339 -0.0007 1.4271 1.7600 -208 1340 0.0645 1.4371 1.7600 -208 1341 0.1239 1.4499 1.7600 -208 1342 0.1790 1.4654 1.7600 -208 1343 0.2301 1.4759 1.7600 -208 1344 0.2837 1.4788 1.7600 -208 1345 0.3369 1.4753 1.7600 -208 1346 0.3951 1.4739 1.7600 -208 1347 0.4580 1.4683 1.7600 -208 1348 0.5213 1.4632 1.7600 -208 1349 0.5799 1.4541 1.7600 -208 1350 0.6371 1.4427 1.7600 -208 1351 0.6951 1.4253 1.7600 -208 1352 0.7539 1.4027 1.7600 -208 1353 0.8120 1.3933 1.7600 -208 1354 0.8710 1.3932 1.7600 -208 1355 0.9288 1.3958 1.7600 -208 1356 0.9855 1.3979 1.7600 -208 1357 1.0472 1.4041 1.7600 -208 1358 1.1105 1.4165 1.7600 -208 1359 1.1728 1.4373 1.7600 -208 1360 1.2394 1.4596 1.7600 -208 1361 1.3016 1.4808 1.7600 -208 1362 1.3621 1.4949 1.7600 -208 1363 1.4195 1.5011 1.7600 -208 1364 1.4724 1.5070 1.7600 -208 1365 1.5298 1.5132 1.7600 -208 1366 1.5904 1.5152 1.7600 -208 1367 1.6556 1.5140 1.7600 -208 1368 1.7200 1.5062 1.7600 -208 1369 1.7858 1.4918 1.7600 -208 1370 1.8559 1.4714 1.7600 -208 1371 1.9317 1.4545 1.7600 -208 1372 2.0175 1.4445 1.7600 -208 1373 2.1048 1.4466 1.7600 -208 1374 2.1775 1.4568 1.7600 -208 1375 2.2382 1.4660 1.7600 -208 1376 2.2941 1.4742 1.7600 -208 1377 2.3547 1.4845 1.7600 -208 1378 2.4180 1.4997 1.7600 -208 1379 2.4802 1.5122 1.7600 -208 1380 2.5338 1.5204 1.7600 -208 1381 2.5892 1.5183 1.7600 -208 1382 2.6423 1.5143 1.7600 -208 1383 2.7003 1.5057 1.7600 -208 1384 2.7568 1.4949 1.7600 -208 1385 2.8222 1.4820 1.7600 -208 1386 2.8912 1.4654 1.7600 -208 1387 2.9606 1.4478 1.7600 -208 1388 3.0225 1.4310 1.7600 -208 1389 3.0788 1.4241 1.7600 -208 1390 3.1311 1.4231 1.7600 -208 1391 3.1784 1.4252 1.7600 -208 1392 3.2276 1.4298 1.7600 -208 1393 3.2820 1.4345 1.7600 -208 1394 3.3434 1.4419 1.7600 -208 1395 3.4128 1.4556 1.7600 -208 1396 3.4873 1.4756 1.7600 -208 1397 3.5503 1.4961 1.7600 -208 1398 3.6082 1.5074 1.7600 -208 1399 3.6639 1.5098 1.7600 -208 1400 3.7191 1.5085 1.7600 -208 1401 3.7749 1.5069 1.7600 -208 1402 3.8401 1.5076 1.7600 -208 1403 3.9118 1.5069 1.7600 -208 1404 3.9880 1.5025 1.7600 -208 1405 4.0698 1.4932 1.7600 -208 1406 4.1495 1.4808 1.7600 -208 1407 4.2219 1.4707 1.7600 -208 1408 4.2925 1.4765 1.7600 -208 1409 4.3617 1.4880 1.7600 -208 1410 4.4267 1.5037 1.7600 -208 1411 4.4866 1.5193 1.7600 -208 1412 4.5466 1.5326 1.7600 -208 1413 4.6075 1.5462 1.7600 -208 1414 4.6728 1.5635 1.7600 -208 1415 4.7427 1.5820 1.7600 -208 1416 4.8091 1.5960 1.7600 -208 1417 4.8746 1.5981 1.7600 -208 1418 4.9396 1.5930 1.7600 -208 1419 5.0017 1.5861 1.7600 -208 1420 5.0633 1.5794 1.7600 -208 1421 5.1256 1.5730 1.7600 -208 1422 5.1912 1.5657 1.7600 -208 1423 5.2642 1.5548 1.7600 -208 1424 5.3422 1.5405 1.7600 -208 1425 5.4159 1.5282 1.7600 -208 1426 5.4857 1.5241 1.7600 -208 1427 5.5554 1.5281 1.7600 -208 1428 5.6202 1.5359 1.7600 -208 1429 5.6807 1.5426 1.7600 -208 1430 5.7410 1.5476 1.7600 -208 1431 5.8047 1.5520 1.7600 -208 1432 5.8732 1.5593 1.7600 -208 1433 5.9471 1.5713 1.7600 -209 1134 -7.8292 1.6336 1.7600 -209 1135 -7.7903 1.6242 1.7600 -209 1136 -7.7500 1.6155 1.7600 -209 1137 -7.7068 1.6068 1.7600 -209 1138 -7.6636 1.5982 1.7600 -209 1139 -7.6211 1.5915 1.7600 -209 1140 -7.5764 1.5865 1.7600 -209 1141 -7.5291 1.5834 1.7600 -209 1142 -7.4806 1.5813 1.7600 -209 1143 -7.4326 1.5795 1.7600 -209 1144 -7.3859 1.5788 1.7600 -209 1145 -7.3312 1.5665 1.7600 -209 1146 -7.2866 1.5681 1.7600 -209 1147 -7.2444 1.5674 1.7600 -209 1148 -7.2004 1.5679 1.7600 -209 1149 -7.1592 1.5624 1.7600 -209 1150 -7.1177 1.5545 1.7600 -209 1151 -7.0754 1.5448 1.7600 -209 1152 -7.0301 1.5313 1.7600 -209 1153 -6.9821 1.5150 1.7600 -209 1154 -6.9347 1.4966 1.7600 -209 1155 -6.8900 1.4738 1.7600 -209 1156 -6.8481 1.4538 1.7600 -209 1157 -6.8145 1.4368 1.7600 -209 1158 -6.7736 1.4184 1.7600 -209 1159 -6.7315 1.4002 1.7600 -209 1160 -6.6892 1.3828 1.7600 -209 1161 -6.6471 1.3673 1.7600 -209 1162 -6.6059 1.3550 1.7600 -209 1163 -6.5650 1.3459 1.7600 -209 1164 -6.5232 1.3383 1.7600 -209 1165 -6.4816 1.3335 1.7600 -209 1166 -6.4416 1.3338 1.7600 -209 1167 -6.4029 1.3341 1.7600 -209 1168 -6.3659 1.3376 1.7600 -209 1169 -6.3253 1.3384 1.7600 -209 1170 -6.2863 1.3376 1.7600 -209 1171 -6.2462 1.3301 1.7600 -209 1172 -6.2059 1.3210 1.7600 -209 1173 -6.1650 1.3084 1.7600 -209 1174 -6.1234 1.2911 1.7600 -209 1175 -6.0836 1.2747 1.7600 -209 1176 -6.0464 1.2565 1.7600 -209 1177 -6.0080 1.2388 1.7600 -209 1178 -5.9736 1.2210 1.7600 -209 1179 -5.9393 1.2065 1.7600 -209 1180 -5.9040 1.1955 1.7600 -209 1181 -5.8706 1.1844 1.7600 -209 1182 -5.8319 1.1754 1.7600 -209 1183 -5.7923 1.1706 1.7600 -209 1184 -5.7531 1.1669 1.7600 -209 1185 -5.7135 1.1664 1.7600 -209 1186 -5.6679 1.1707 1.7600 -209 1187 -5.6264 1.1776 1.7600 -209 1188 -5.5869 1.1886 1.7600 -209 1189 -5.5465 1.1971 1.7600 -209 1190 -5.5061 1.2078 1.7600 -209 1191 -5.4630 1.2154 1.7600 -209 1192 -5.4170 1.2198 1.7600 -209 1193 -5.3665 1.2207 1.7600 -209 1194 -5.3213 1.2201 1.7600 -209 1195 -5.2774 1.2174 1.7600 -209 1196 -5.2327 1.2136 1.7600 -209 1197 -5.1898 1.2074 1.7600 -209 1198 -5.1482 1.2000 1.7600 -209 1199 -5.1065 1.1914 1.7600 -209 1200 -5.0657 1.1842 1.7600 -209 1201 -5.0256 1.1773 1.7600 -209 1202 -4.9831 1.1714 1.7600 -209 1203 -4.9393 1.1664 1.7600 -209 1204 -4.8932 1.1607 1.7600 -209 1205 -4.8471 1.1563 1.7600 -209 1206 -4.8050 1.1536 1.7600 -209 1207 -4.7625 1.1516 1.7600 -209 1208 -4.7203 1.1527 1.7600 -209 1209 -4.6754 1.1565 1.7600 -209 1210 -4.6344 1.1615 1.7600 -209 1211 -4.5973 1.1684 1.7600 -209 1212 -4.5624 1.1732 1.7600 -209 1213 -4.5308 1.1731 1.7600 -209 1214 -4.4969 1.1703 1.7600 -209 1215 -4.4661 1.1669 1.7600 -209 1216 -4.4323 1.1603 1.7600 -209 1217 -4.3997 1.1532 1.7600 -209 1218 -4.3672 1.1412 1.7600 -209 1219 -4.3371 1.1285 1.7600 -209 1220 -4.3062 1.1116 1.7600 -209 1221 -4.2769 1.0950 1.7600 -209 1222 -4.2492 1.0787 1.7600 -209 1223 -4.2211 1.0689 1.7600 -209 1224 -4.1910 1.0601 1.7600 -209 1225 -4.1579 1.0525 1.7600 -209 1226 -4.1261 1.0464 1.7600 -209 1227 -4.0939 1.0424 1.7600 -209 1228 -4.0609 1.0366 1.7600 -209 1229 -4.0290 1.0333 1.7600 -209 1230 -3.9944 1.0332 1.7600 -209 1231 -3.9592 1.0355 1.7600 -209 1232 -3.9240 1.0415 1.7600 -209 1233 -3.8846 1.0480 1.7600 -209 1234 -3.8467 1.0539 1.7600 -209 1235 -3.8100 1.0588 1.7600 -209 1236 -3.7684 1.0635 1.7600 -209 1237 -3.7238 1.0624 1.7600 -209 1238 -3.6780 1.0608 1.7600 -209 1239 -3.6340 1.0557 1.7600 -209 1240 -3.5961 1.0492 1.7600 -209 1241 -3.5560 1.0393 1.7600 -209 1242 -3.5183 1.0277 1.7600 -209 1243 -3.4823 1.0170 1.7600 -209 1244 -3.4467 1.0090 1.7600 -209 1245 -3.4066 1.0021 1.7600 -209 1246 -3.3635 1.0019 1.7600 -209 1247 -3.3149 1.0038 1.7600 -209 1248 -3.2709 1.0095 1.7600 -209 1249 -3.2288 1.0154 1.7600 -209 1250 -3.1887 1.0222 1.7600 -209 1251 -3.1468 1.0300 1.7600 -209 1252 -3.1036 1.0408 1.7600 -209 1253 -3.0596 1.0546 1.7600 -209 1254 -3.0191 1.0649 1.7600 -209 1255 -2.9765 1.0753 1.7600 -209 1256 -2.9295 1.0837 1.7600 -209 1257 -2.8793 1.0870 1.7600 -209 1258 -2.8299 1.0905 1.7600 -209 1259 -2.7828 1.0911 1.7600 -209 1260 -2.7379 1.0935 1.7600 -209 1261 -2.6925 1.0917 1.7600 -209 1262 -2.6466 1.0901 1.7600 -209 1263 -2.5984 1.0887 1.7600 -209 1264 -2.5468 1.0859 1.7600 -209 1265 -2.4915 1.0843 1.7600 -209 1266 -2.4430 1.0850 1.7600 -209 1267 -2.3993 1.0849 1.7600 -209 1268 -2.3501 1.0885 1.7600 -209 1269 -2.3017 1.0957 1.7600 -209 1270 -2.2576 1.0995 1.7600 -209 1271 -2.2130 1.1045 1.7600 -209 1272 -2.1662 1.1087 1.7600 -209 1273 -2.1221 1.1146 1.7600 -209 1274 -2.0696 1.1228 1.7600 -209 1275 -2.0184 1.1337 1.7600 -209 1276 -1.9657 1.1433 1.7600 -209 1277 -1.9080 1.1502 1.7600 -209 1278 -1.8483 1.1539 1.7600 -209 1279 -1.7871 1.1558 1.7600 -209 1280 -1.7278 1.1553 1.7600 -209 1281 -1.6704 1.1536 1.7600 -209 1282 -1.6157 1.1482 1.7600 -209 1283 -1.5637 1.1419 1.7600 -209 1284 -1.5084 1.1365 1.7600 -209 1285 -1.4589 1.1322 1.7600 -209 1286 -1.4094 1.1311 1.7600 -209 1287 -1.3557 1.1281 1.7600 -209 1288 -1.3010 1.1275 1.7600 -209 1289 -1.2494 1.1307 1.7600 -209 1290 -1.1964 1.1361 1.7600 -209 1291 -1.1430 1.1416 1.7600 -209 1292 -1.0892 1.1454 1.7600 -209 1293 -1.0347 1.1472 1.7600 -209 1294 -0.9799 1.1544 1.7600 -209 1295 -0.9263 1.1593 1.7600 -209 1296 -0.8746 1.1618 1.7600 -209 1297 -0.8198 1.1628 1.7600 -209 1298 -0.7632 1.1605 1.7600 -209 1299 -0.7057 1.1557 1.7600 -209 1300 -0.6479 1.1488 1.7600 -209 1301 -0.5889 1.1409 1.7600 -209 1302 -0.5318 1.1332 1.7600 -209 1303 -0.4733 1.1221 1.7600 -209 1304 -0.4144 1.1097 1.7600 -209 1305 -0.3602 1.0986 1.7600 -209 1306 -0.3072 1.0932 1.7600 -209 1307 -0.2500 1.0909 1.7600 -209 1308 -0.1899 1.0916 1.7600 -209 1309 -0.1305 1.0946 1.7600 -209 1310 -0.0713 1.1008 1.7600 -209 1311 -0.0128 1.1073 1.7600 -209 1312 0.0433 1.1211 1.7600 -209 1313 0.1002 1.1338 1.7600 -209 1314 0.1554 1.1470 1.7600 -209 1315 0.2083 1.1621 1.7600 -209 1316 0.2604 1.1746 1.7600 -209 1317 0.3156 1.1815 1.7600 -209 1318 0.3741 1.1838 1.7600 -209 1319 0.4327 1.1828 1.7600 -209 1320 0.4887 1.1819 1.7600 -209 1321 0.5454 1.1785 1.7600 -209 1322 0.6013 1.1738 1.7600 -209 1323 0.6585 1.1683 1.7600 -209 1324 0.7156 1.1633 1.7600 -209 1325 0.7710 1.1602 1.7600 -209 1326 0.8292 1.1591 1.7600 -209 1327 0.8912 1.1603 1.7600 -209 1328 0.9559 1.1621 1.7600 -209 1329 1.0195 1.1642 1.7600 -209 1330 1.0810 1.1682 1.7600 -209 1331 1.1435 1.1724 1.7600 -209 1332 1.2000 1.1784 1.7600 -209 1333 1.2609 1.1869 1.7600 -209 1334 1.3221 1.1951 1.7600 -209 1335 1.3822 1.2009 1.7600 -209 1336 1.4427 1.2029 1.7600 -209 1337 1.5070 1.2027 1.7600 -209 1338 1.5675 1.1993 1.7600 -209 1339 1.6299 1.1935 1.7600 -209 1340 1.6895 1.1835 1.7600 -209 1341 1.7498 1.1745 1.7600 -209 1342 1.8099 1.1618 1.7600 -209 1343 1.8717 1.1486 1.7600 -209 1344 1.9322 1.1384 1.7600 -209 1345 1.9891 1.1279 1.7600 -209 1346 2.0536 1.1238 1.7600 -209 1347 2.1140 1.1218 1.7600 -209 1348 2.1721 1.1225 1.7600 -209 1349 2.2280 1.1248 1.7600 -209 1350 2.2819 1.1298 1.7600 -209 1351 2.3380 1.1351 1.7600 -209 1352 2.3943 1.1433 1.7600 -209 1353 2.4507 1.1537 1.7600 -209 1354 2.5035 1.1638 1.7600 -209 1355 2.5630 1.1687 1.7600 -209 1356 2.6207 1.1672 1.7600 -209 1357 2.6788 1.1614 1.7600 -209 1358 2.7282 1.1546 1.7600 -209 1359 2.7797 1.1497 1.7600 -209 1360 2.8308 1.1451 1.7600 -209 1361 2.8815 1.1385 1.7600 -209 1362 2.9382 1.1304 1.7600 -209 1363 2.9888 1.1254 1.7600 -209 1364 3.0399 1.1229 1.7600 -209 1365 3.1002 1.1220 1.7600 -209 1366 3.1623 1.1252 1.7600 -209 1367 3.2278 1.1360 1.7600 -209 1368 3.2882 1.1494 1.7600 -209 1369 3.3432 1.1630 1.7600 -209 1370 3.3944 1.1765 1.7600 -209 1371 3.4448 1.1919 1.7600 -209 1372 3.4957 1.2061 1.7600 -209 1373 3.5429 1.2170 1.7600 -209 1374 3.5969 1.2235 1.7600 -209 1375 3.6561 1.2259 1.7600 -209 1376 3.7171 1.2240 1.7600 -209 1377 3.7702 1.2216 1.7600 -209 1378 3.8188 1.2190 1.7600 -209 1379 3.8705 1.2154 1.7600 -209 1380 3.9228 1.2117 1.7600 -209 1381 3.9773 1.2066 1.7600 -209 1382 4.0315 1.2000 1.7600 -209 1383 4.0827 1.1937 1.7600 -209 1384 4.1390 1.1901 1.7600 -209 1385 4.1931 1.1894 1.7600 -209 1386 4.2504 1.1879 1.7600 -209 1387 4.3015 1.1888 1.7600 -209 1388 4.3537 1.1878 1.7600 -209 1389 4.4090 1.1899 1.7600 -209 1390 4.4719 1.1944 1.7600 -209 1391 4.5347 1.1992 1.7600 -209 1392 4.5958 1.2030 1.7600 -209 1393 4.6621 1.2064 1.7600 -209 1394 4.7271 1.2043 1.7600 -209 1395 4.7926 1.1980 1.7600 -209 1396 4.8501 1.1906 1.7600 -209 1397 4.9055 1.1824 1.7600 -209 1398 4.9664 1.1753 1.7600 -209 1399 5.0327 1.1664 1.7600 -209 1400 5.1011 1.1551 1.7600 -209 1401 5.1624 1.1437 1.7600 -209 1402 5.2238 1.1360 1.7600 -209 1403 5.2846 1.1293 1.7600 -209 1404 5.3457 1.1257 1.7600 -209 1405 5.3993 1.1206 1.7600 -209 1406 5.4481 1.1170 1.7600 -209 1407 5.4949 1.1140 1.7600 -209 1408 5.5437 1.1137 1.7600 -209 1409 5.5981 1.1185 1.7600 -209 1410 5.6539 1.1266 1.7600 -209 1411 5.7090 1.1333 1.7600 -209 1412 5.7686 1.1365 1.7600 -209 1413 5.8322 1.1356 1.7600 -209 1414 5.8927 1.1302 1.7600 -209 1415 5.9431 1.1213 1.7600 -210 1159 -7.8005 1.0330 1.7600 -210 1160 -7.7546 1.0217 1.7600 -210 1161 -7.7066 1.0091 1.7600 -210 1162 -7.6561 0.9935 1.7600 -210 1163 -7.6047 0.9740 1.7600 -210 1164 -7.5537 0.9498 1.7600 -210 1165 -7.5045 0.9228 1.7600 -210 1166 -7.4612 0.8962 1.7600 -210 1167 -7.4223 0.8714 1.7600 -210 1168 -7.3818 0.8497 1.7600 -210 1169 -7.3389 0.8300 1.7600 -210 1170 -7.2945 0.8139 1.7600 -210 1171 -7.2493 0.8018 1.7600 -210 1172 -7.2045 0.7917 1.7600 -210 1173 -7.1571 0.7832 1.7600 -210 1174 -7.1089 0.7801 1.7600 -210 1175 -7.0582 0.7786 1.7600 -210 1176 -7.0079 0.7827 1.7600 -210 1177 -6.9627 0.7873 1.7600 -210 1178 -6.9213 0.7911 1.7600 -210 1179 -6.8811 0.7909 1.7600 -210 1180 -6.8429 0.7842 1.7600 -210 1181 -6.8018 0.7744 1.7600 -210 1182 -6.7584 0.7652 1.7600 -210 1183 -6.7198 0.7534 1.7600 -210 1184 -6.6784 0.7405 1.7600 -210 1185 -6.6346 0.7230 1.7600 -210 1186 -6.5899 0.7048 1.7600 -210 1187 -6.5455 0.6833 1.7600 -210 1188 -6.5055 0.6603 1.7600 -210 1189 -6.4710 0.6388 1.7600 -210 1190 -6.4330 0.6184 1.7600 -210 1191 -6.3946 0.6033 1.7600 -210 1192 -6.3560 0.5895 1.7600 -210 1193 -6.3138 0.5818 1.7600 -210 1194 -6.2718 0.5757 1.7600 -210 1195 -6.2288 0.5723 1.7600 -210 1196 -6.1848 0.5723 1.7600 -210 1197 -6.1406 0.5732 1.7600 -210 1198 -6.0969 0.5800 1.7600 -210 1199 -6.0542 0.5863 1.7600 -210 1200 -6.0123 0.5917 1.7600 -210 1201 -5.9733 0.5889 1.7600 -210 1202 -5.9328 0.5866 1.7600 -210 1203 -5.8925 0.5796 1.7600 -210 1204 -5.8478 0.5696 1.7600 -210 1205 -5.8047 0.5565 1.7600 -210 1206 -5.7599 0.5401 1.7600 -210 1207 -5.7152 0.5217 1.7600 -210 1208 -5.6673 0.4990 1.7600 -210 1209 -5.6235 0.4781 1.7600 -210 1210 -5.5815 0.4569 1.7600 -210 1211 -5.5400 0.4370 1.7600 -210 1212 -5.4966 0.4191 1.7600 -210 1213 -5.4533 0.4066 1.7600 -210 1214 -5.4045 0.3959 1.7600 -210 1215 -5.3572 0.3861 1.7600 -210 1216 -5.3092 0.3852 1.7600 -210 1217 -5.2621 0.3871 1.7600 -210 1218 -5.2155 0.3955 1.7600 -210 1219 -5.1691 0.4062 1.7600 -210 1220 -5.1225 0.4173 1.7600 -210 1221 -5.0769 0.4289 1.7600 -210 1222 -5.0350 0.4341 1.7600 -210 1223 -4.9933 0.4356 1.7600 -210 1224 -4.9501 0.4360 1.7600 -210 1225 -4.9052 0.4318 1.7600 -210 1226 -4.8583 0.4266 1.7600 -210 1227 -4.8159 0.4155 1.7600 -210 1228 -4.7690 0.4032 1.7600 -210 1229 -4.7270 0.3871 1.7600 -210 1230 -4.6830 0.3691 1.7600 -210 1231 -4.6426 0.3515 1.7600 -210 1232 -4.6034 0.3353 1.7600 -210 1233 -4.5671 0.3198 1.7600 -210 1234 -4.5293 0.3052 1.7600 -210 1235 -4.4905 0.2935 1.7600 -210 1236 -4.4486 0.2860 1.7600 -210 1237 -4.4044 0.2797 1.7600 -210 1238 -4.3603 0.2780 1.7600 -210 1239 -4.3184 0.2785 1.7600 -210 1240 -4.2725 0.2847 1.7600 -210 1241 -4.2279 0.2936 1.7600 -210 1242 -4.1822 0.3063 1.7600 -210 1243 -4.1326 0.3213 1.7600 -210 1244 -4.0876 0.3348 1.7600 -210 1245 -4.0415 0.3422 1.7600 -210 1246 -3.9967 0.3458 1.7600 -210 1247 -3.9482 0.3476 1.7600 -210 1248 -3.9026 0.3494 1.7600 -210 1249 -3.8545 0.3467 1.7600 -210 1250 -3.8068 0.3421 1.7600 -210 1251 -3.7561 0.3332 1.7600 -210 1252 -3.7047 0.3233 1.7600 -210 1253 -3.6541 0.3083 1.7600 -210 1254 -3.5973 0.2925 1.7600 -210 1255 -3.5477 0.2744 1.7600 -210 1256 -3.4993 0.2634 1.7600 -210 1257 -3.4525 0.2591 1.7600 -210 1258 -3.4047 0.2566 1.7600 -210 1259 -3.3570 0.2553 1.7600 -210 1260 -3.3130 0.2567 1.7600 -210 1261 -3.2697 0.2620 1.7600 -210 1262 -3.2270 0.2734 1.7600 -210 1263 -3.1872 0.2877 1.7600 -210 1264 -3.1457 0.3035 1.7600 -210 1265 -3.1042 0.3143 1.7600 -210 1266 -3.0654 0.3235 1.7600 -210 1267 -3.0266 0.3282 1.7600 -210 1268 -2.9834 0.3296 1.7600 -210 1269 -2.9378 0.3289 1.7600 -210 1270 -2.8934 0.3283 1.7600 -210 1271 -2.8488 0.3252 1.7600 -210 1272 -2.8019 0.3178 1.7600 -210 1273 -2.7525 0.3085 1.7600 -210 1274 -2.7001 0.2999 1.7600 -210 1275 -2.6454 0.2893 1.7600 -210 1276 -2.5947 0.2825 1.7600 -210 1277 -2.5461 0.2826 1.7600 -210 1278 -2.4941 0.2847 1.7600 -210 1279 -2.4429 0.2878 1.7600 -210 1280 -2.3963 0.2942 1.7600 -210 1281 -2.3498 0.3019 1.7600 -210 1282 -2.3052 0.3130 1.7600 -210 1283 -2.2587 0.3257 1.7600 -210 1284 -2.2104 0.3395 1.7600 -210 1285 -2.1590 0.3516 1.7600 -210 1286 -2.1082 0.3601 1.7600 -210 1287 -2.0572 0.3651 1.7600 -210 1288 -2.0038 0.3687 1.7600 -210 1289 -1.9501 0.3702 1.7600 -210 1290 -1.8996 0.3696 1.7600 -210 1291 -1.8453 0.3662 1.7600 -210 1292 -1.7890 0.3601 1.7600 -210 1293 -1.7237 0.3499 1.7600 -210 1294 -1.6662 0.3383 1.7600 -210 1295 -1.6083 0.3252 1.7600 -210 1296 -1.5510 0.3201 1.7600 -210 1297 -1.4925 0.3195 1.7600 -210 1298 -1.4383 0.3216 1.7600 -210 1299 -1.3872 0.3269 1.7600 -210 1300 -1.3339 0.3309 1.7600 -210 1301 -1.2799 0.3363 1.7600 -210 1302 -1.2274 0.3440 1.7600 -210 1303 -1.1752 0.3530 1.7600 -210 1304 -1.1182 0.3586 1.7600 -210 1305 -1.0636 0.3629 1.7600 -210 1306 -1.0042 0.3651 1.7600 -210 1307 -0.9456 0.3651 1.7600 -210 1308 -0.8851 0.3622 1.7600 -210 1309 -0.8241 0.3561 1.7600 -210 1310 -0.7598 0.3442 1.7600 -210 1311 -0.6934 0.3288 1.7600 -210 1312 -0.6257 0.3093 1.7600 -210 1313 -0.5637 0.2929 1.7600 -210 1314 -0.5057 0.2827 1.7600 -210 1315 -0.4473 0.2795 1.7600 -210 1316 -0.3872 0.2817 1.7600 -210 1317 -0.3309 0.2877 1.7600 -210 1318 -0.2737 0.2933 1.7600 -210 1319 -0.2182 0.3046 1.7600 -210 1320 -0.1670 0.3192 1.7600 -210 1321 -0.1181 0.3361 1.7600 -210 1322 -0.0711 0.3506 1.7600 -210 1323 -0.0268 0.3636 1.7600 -210 1324 0.0221 0.3710 1.7600 -210 1325 0.0778 0.3712 1.7600 -210 1326 0.1313 0.3705 1.7600 -210 1327 0.1912 0.3665 1.7600 -210 1328 0.2542 0.3594 1.7600 -210 1329 0.3167 0.3468 1.7600 -210 1330 0.3816 0.3342 1.7600 -210 1331 0.4445 0.3200 1.7600 -210 1332 0.5012 0.3130 1.7600 -210 1333 0.5625 0.3098 1.7600 -210 1334 0.6237 0.3130 1.7600 -210 1335 0.6817 0.3189 1.7600 -210 1336 0.7380 0.3265 1.7600 -210 1337 0.7923 0.3355 1.7600 -210 1338 0.8461 0.3460 1.7600 -210 1339 0.9006 0.3609 1.7600 -210 1340 0.9559 0.3738 1.7600 -210 1341 1.0111 0.3824 1.7600 -210 1342 1.0695 0.3839 1.7600 -210 1343 1.1293 0.3826 1.7600 -210 1344 1.1909 0.3785 1.7600 -210 1345 1.2551 0.3750 1.7600 -210 1346 1.3184 0.3677 1.7600 -210 1347 1.3837 0.3565 1.7600 -210 1348 1.4471 0.3429 1.7600 -210 1349 1.5089 0.3292 1.7600 -210 1350 1.5657 0.3211 1.7600 -210 1351 1.6219 0.3197 1.7600 -210 1352 1.6734 0.3251 1.7600 -210 1353 1.7237 0.3324 1.7600 -210 1354 1.7695 0.3459 1.7600 -210 1355 1.8162 0.3600 1.7600 -210 1356 1.8622 0.3788 1.7600 -210 1357 1.9075 0.4014 1.7600 -210 1358 1.9569 0.4241 1.7600 -210 1359 2.0028 0.4424 1.7600 -210 1360 2.0503 0.4546 1.7600 -210 1361 2.0987 0.4615 1.7600 -210 1362 2.1503 0.4656 1.7600 -210 1363 2.1995 0.4646 1.7600 -210 1364 2.2509 0.4626 1.7600 -210 1365 2.3013 0.4559 1.7600 -210 1366 2.3558 0.4434 1.7600 -210 1367 2.4106 0.4323 1.7600 -210 1368 2.4696 0.4198 1.7600 -210 1369 2.5233 0.4070 1.7600 -210 1370 2.5757 0.4003 1.7600 -210 1371 2.6300 0.3991 1.7600 -210 1372 2.6845 0.3992 1.7600 -210 1373 2.7372 0.4025 1.7600 -210 1374 2.7876 0.4082 1.7600 -210 1375 2.8395 0.4204 1.7600 -210 1376 2.8901 0.4358 1.7600 -210 1377 2.9473 0.4525 1.7600 -210 1378 3.0087 0.4689 1.7600 -210 1379 3.0656 0.4783 1.7600 -210 1380 3.1257 0.4835 1.7600 -210 1381 3.1873 0.4859 1.7600 -210 1382 3.2479 0.4861 1.7600 -210 1383 3.3081 0.4836 1.7600 -210 1384 3.3690 0.4777 1.7600 -210 1385 3.4300 0.4652 1.7600 -210 1386 3.4949 0.4507 1.7600 -210 1387 3.5607 0.4365 1.7600 -210 1388 3.6241 0.4281 1.7600 -210 1389 3.6881 0.4239 1.7600 -210 1390 3.7506 0.4260 1.7600 -210 1391 3.8114 0.4329 1.7600 -210 1392 3.8700 0.4421 1.7600 -210 1393 3.9298 0.4559 1.7600 -210 1394 3.9886 0.4714 1.7600 -210 1395 4.0556 0.4877 1.7600 -210 1396 4.1243 0.4996 1.7600 -210 1397 4.1927 0.5051 1.7600 -210 1398 4.2605 0.5054 1.7600 -210 1399 4.3253 0.5008 1.7600 -210 1400 4.3882 0.4950 1.7600 -210 1401 4.4511 0.4834 1.7600 -210 1402 4.5171 0.4682 1.7600 -210 1403 4.5841 0.4480 1.7600 -210 1404 4.6589 0.4284 1.7600 -210 1405 4.7333 0.4151 1.7600 -210 1406 4.8041 0.4080 1.7600 -210 1407 4.8697 0.4073 1.7600 -210 1408 4.9336 0.4055 1.7600 -210 1409 4.9946 0.4085 1.7600 -210 1410 5.0513 0.4142 1.7600 -210 1411 5.1114 0.4199 1.7600 -210 1412 5.1738 0.4253 1.7600 -210 1413 5.2378 0.4315 1.7600 -210 1414 5.3075 0.4309 1.7600 -210 1415 5.3770 0.4207 1.7600 -210 1416 5.4464 0.4086 1.7600 -210 1417 5.5053 0.3944 1.7600 -210 1418 5.5637 0.3772 1.7600 -210 1419 5.6213 0.3569 1.7600 -210 1420 5.6881 0.3318 1.7600 -210 1421 5.7620 0.3069 1.7600 -210 1422 5.8324 0.2840 1.7600 -210 1423 5.9038 0.2672 1.7600 -211 1160 -7.8013 1.8327 1.7600 -211 1161 -7.7646 1.8415 1.7600 -211 1162 -7.7268 1.8479 1.7600 -211 1163 -7.6882 1.8504 1.7600 -211 1164 -7.6479 1.8498 1.7600 -211 1165 -7.6072 1.8436 1.7600 -211 1166 -7.5667 1.8334 1.7600 -211 1167 -7.5270 1.8237 1.7600 -211 1168 -7.4875 1.8135 1.7600 -211 1169 -7.4503 1.8003 1.7600 -211 1170 -7.4172 1.7817 1.7600 -211 1171 -7.3883 1.7593 1.7600 -211 1172 -7.3617 1.7378 1.7600 -211 1173 -7.3350 1.7196 1.7600 -211 1174 -7.3060 1.7049 1.7600 -211 1175 -7.2757 1.6932 1.7600 -211 1176 -7.2441 1.6844 1.7600 -211 1177 -7.2117 1.6798 1.7600 -211 1178 -7.1786 1.6782 1.7600 -211 1179 -7.1454 1.6771 1.7600 -211 1180 -7.1117 1.6769 1.7600 -211 1181 -7.0767 1.6811 1.7600 -211 1182 -7.0398 1.6912 1.7600 -211 1183 -7.0010 1.7054 1.7600 -211 1184 -6.9614 1.7213 1.7600 -211 1185 -6.9252 1.7359 1.7600 -211 1186 -6.8851 1.7468 1.7600 -211 1187 -6.8455 1.7538 1.7600 -211 1188 -6.8029 1.7568 1.7600 -211 1189 -6.7612 1.7596 1.7600 -211 1190 -6.7131 1.7555 1.7600 -211 1191 -6.6622 1.7476 1.7600 -211 1192 -6.6108 1.7329 1.7600 -211 1193 -6.5575 1.7078 1.7600 -211 1194 -6.5029 1.6833 1.7600 -211 1195 -6.4480 1.6527 1.7600 -211 1196 -6.3946 1.6209 1.7600 -211 1197 -6.3433 1.5895 1.7600 -211 1198 -6.2883 1.5594 1.7600 -211 1199 -6.2378 1.5349 1.7600 -211 1200 -6.1866 1.5164 1.7600 -211 1201 -6.1338 1.4985 1.7600 -211 1202 -6.0808 1.4821 1.7600 -211 1203 -6.0287 1.4706 1.7600 -211 1204 -5.9748 1.4583 1.7600 -211 1205 -5.9198 1.4501 1.7600 -211 1206 -5.8666 1.4423 1.7600 -211 1207 -5.8135 1.4384 1.7600 -211 1208 -5.7630 1.4349 1.7600 -211 1209 -5.7072 1.4314 1.7600 -211 1210 -5.6585 1.4271 1.7600 -211 1211 -5.6071 1.4195 1.7600 -211 1212 -5.5575 1.4083 1.7600 -211 1213 -5.5137 1.4019 1.7600 -211 1214 -5.4691 1.3966 1.7600 -211 1215 -5.4235 1.3882 1.7600 -211 1216 -5.3770 1.3771 1.7600 -211 1217 -5.3348 1.3608 1.7600 -211 1218 -5.2937 1.3354 1.7600 -211 1219 -5.2548 1.3087 1.7600 -211 1220 -5.2175 1.2782 1.7600 -211 1221 -5.1822 1.2458 1.7600 -211 1222 -5.1482 1.2181 1.7600 -211 1223 -5.1167 1.1906 1.7600 -211 1224 -5.0787 1.1681 1.7600 -211 1225 -5.0372 1.1486 1.7600 -211 1226 -5.0000 1.1327 1.7600 -211 1227 -4.9646 1.1205 1.7600 -211 1228 -4.9266 1.1089 1.7600 -211 1229 -4.8861 1.0997 1.7600 -211 1230 -4.8464 1.0915 1.7600 -211 1231 -4.8082 1.0899 1.7600 -211 1232 -4.7706 1.0952 1.7600 -211 1233 -4.7360 1.1023 1.7600 -211 1234 -4.6990 1.1062 1.7600 -211 1235 -4.6626 1.1068 1.7600 -211 1236 -4.6248 1.1049 1.7600 -211 1237 -4.5876 1.0991 1.7600 -211 1238 -4.5560 1.0943 1.7600 -211 1239 -4.5234 1.0925 1.7600 -211 1240 -4.4852 1.0864 1.7600 -211 1241 -4.4461 1.0775 1.7600 -211 1242 -4.4030 1.0634 1.7600 -211 1243 -4.3647 1.0440 1.7600 -211 1244 -4.3329 1.0168 1.7600 -211 1245 -4.3042 0.9908 1.7600 -211 1246 -4.2750 0.9692 1.7600 -211 1247 -4.2464 0.9535 1.7600 -211 1248 -4.2094 0.9423 1.7600 -211 1249 -4.1615 0.9363 1.7600 -211 1250 -4.1192 0.9356 1.7600 -211 1251 -4.0798 0.9364 1.7600 -211 1252 -4.0467 0.9379 1.7600 -211 1253 -4.0142 0.9385 1.7600 -211 1254 -3.9803 0.9415 1.7600 -211 1255 -3.9480 0.9511 1.7600 -211 1256 -3.9189 0.9637 1.7600 -211 1257 -3.8887 0.9784 1.7600 -211 1258 -3.8530 0.9911 1.7600 -211 1259 -3.8156 0.9986 1.7600 -211 1260 -3.7715 1.0047 1.7600 -211 1261 -3.7231 1.0117 1.7600 -211 1262 -3.6711 1.0117 1.7600 -211 1263 -3.6181 1.0065 1.7600 -211 1264 -3.5615 0.9992 1.7600 -211 1265 -3.5071 0.9890 1.7600 -211 1266 -3.4511 0.9725 1.7600 -211 1267 -3.3953 0.9512 1.7600 -211 1268 -3.3364 0.9255 1.7600 -211 1269 -3.2841 0.9045 1.7600 -211 1270 -3.2394 0.8914 1.7600 -211 1271 -3.1875 0.8875 1.7600 -211 1272 -3.1332 0.8910 1.7600 -211 1273 -3.0801 0.8972 1.7600 -211 1274 -3.0252 0.9047 1.7600 -211 1275 -2.9749 0.9179 1.7600 -211 1276 -2.9305 0.9386 1.7600 -211 1277 -2.8886 0.9629 1.7600 -211 1278 -2.8433 0.9939 1.7600 -211 1279 -2.7983 1.0260 1.7600 -211 1280 -2.7551 1.0399 1.7600 -211 1281 -2.7113 1.0489 1.7600 -211 1282 -2.6690 1.0514 1.7600 -211 1283 -2.6264 1.0515 1.7600 -211 1284 -2.5843 1.0524 1.7600 -211 1285 -2.5378 1.0489 1.7600 -211 1286 -2.4927 1.0412 1.7600 -211 1287 -2.4429 1.0315 1.7600 -211 1288 -2.3954 1.0151 1.7600 -211 1289 -2.3428 0.9960 1.7600 -211 1290 -2.2920 0.9779 1.7600 -211 1291 -2.2435 0.9628 1.7600 -211 1292 -2.1942 0.9540 1.7600 -211 1293 -2.1433 0.9500 1.7600 -211 1294 -2.0945 0.9464 1.7600 -211 1295 -2.0495 0.9441 1.7600 -211 1296 -2.0088 0.9430 1.7600 -211 1297 -1.9727 0.9441 1.7600 -211 1298 -1.9359 0.9532 1.7600 -211 1299 -1.8996 0.9706 1.7600 -211 1300 -1.8526 0.9993 1.7600 -211 1301 -1.8066 1.0292 1.7600 -211 1302 -1.7623 1.0492 1.7600 -211 1303 -1.7176 1.0636 1.7600 -211 1304 -1.6729 1.0800 1.7600 -211 1305 -1.6307 1.0950 1.7600 -211 1306 -1.5879 1.1065 1.7600 -211 1307 -1.5453 1.1123 1.7600 -211 1308 -1.4983 1.1129 1.7600 -211 1309 -1.4498 1.1027 1.7600 -211 1310 -1.3969 1.0873 1.7600 -211 1311 -1.3470 1.0704 1.7600 -211 1312 -1.2946 1.0549 1.7600 -211 1313 -1.2473 1.0413 1.7600 -211 1314 -1.2050 1.0365 1.7600 -211 1315 -1.1577 1.0407 1.7600 -211 1316 -1.1044 1.0514 1.7600 -211 1317 -1.0496 1.0607 1.7600 -211 1318 -0.9972 1.0628 1.7600 -211 1319 -0.9431 1.0561 1.7600 -211 1320 -0.8887 1.0488 1.7600 -211 1321 -0.8331 1.0439 1.7600 -211 1322 -0.7756 1.0449 1.7600 -211 1323 -0.7185 1.0482 1.7600 -211 1324 -0.6625 1.0496 1.7600 -211 1325 -0.6095 1.0460 1.7600 -211 1326 -0.5526 1.0353 1.7600 -211 1327 -0.4841 1.0210 1.7600 -211 1328 -0.4170 1.0031 1.7600 -211 1329 -0.3586 0.9853 1.7600 -211 1330 -0.2998 0.9678 1.7600 -211 1331 -0.2422 0.9468 1.7600 -211 1332 -0.1863 0.9200 1.7600 -211 1333 -0.1309 0.8876 1.7600 -211 1334 -0.0863 0.8536 1.7600 -211 1335 -0.0430 0.8288 1.7600 -211 1336 0.0087 0.8214 1.7600 -211 1337 0.0747 0.8241 1.7600 -211 1338 0.1403 0.8322 1.7600 -211 1339 0.2072 0.8394 1.7600 -211 1340 0.2722 0.8450 1.7600 -211 1341 0.3374 0.8500 1.7600 -211 1342 0.4047 0.8591 1.7600 -211 1343 0.4735 0.8730 1.7600 -211 1344 0.5434 0.8918 1.7600 -211 1345 0.6085 0.9092 1.7600 -211 1346 0.6632 0.9169 1.7600 -211 1347 0.7206 0.9196 1.7600 -211 1348 0.7859 0.9168 1.7600 -211 1349 0.8489 0.9127 1.7600 -211 1350 0.9076 0.9111 1.7600 -211 1351 0.9692 0.9095 1.7600 -211 1352 1.0335 0.9080 1.7600 -211 1353 1.0970 0.9025 1.7600 -211 1354 1.1596 0.8890 1.7600 -211 1355 1.2163 0.8745 1.7600 -211 1356 1.2699 0.8626 1.7600 -211 1357 1.3229 0.8580 1.7600 -211 1358 1.3864 0.8602 1.7600 -211 1359 1.4486 0.8700 1.7600 -211 1360 1.5077 0.8781 1.7600 -211 1361 1.5650 0.8840 1.7600 -211 1362 1.6234 0.8880 1.7600 -211 1363 1.6754 0.8922 1.7600 -211 1364 1.7324 0.9027 1.7600 -211 1365 1.7865 0.9135 1.7600 -211 1366 1.8408 0.9276 1.7600 -211 1367 1.8847 0.9372 1.7600 -211 1368 1.9311 0.9419 1.7600 -211 1369 1.9880 0.9387 1.7600 -211 1370 2.0544 0.9300 1.7600 -211 1371 2.1114 0.9245 1.7600 -211 1372 2.1625 0.9175 1.7600 -211 1373 2.2176 0.9088 1.7600 -211 1374 2.2742 0.8902 1.7600 -211 1375 2.3371 0.8715 1.7600 -211 1376 2.4022 0.8613 1.7600 -211 1377 2.4652 0.8573 1.7600 -211 1378 2.5156 0.8606 1.7600 -211 1379 2.5659 0.8682 1.7600 -211 1380 2.6236 0.8806 1.7600 -211 1381 2.6828 0.8954 1.7600 -211 1382 2.7355 0.9133 1.7600 -211 1383 2.7852 0.9304 1.7600 -211 1384 2.8317 0.9472 1.7600 -211 1385 2.8825 0.9658 1.7600 -211 1386 2.9384 0.9888 1.7600 -211 1387 2.9983 1.0157 1.7600 -211 1388 3.0567 1.0300 1.7600 -211 1389 3.1174 1.0406 1.7600 -211 1390 3.1815 1.0522 1.7600 -211 1391 3.2439 1.0590 1.7600 -211 1392 3.3050 1.0587 1.7600 -211 1393 3.3648 1.0530 1.7600 -211 1394 3.4218 1.0417 1.7600 -211 1395 3.4795 1.0267 1.7600 -211 1396 3.5401 1.0065 1.7600 -211 1397 3.6007 0.9898 1.7600 -211 1398 3.6545 0.9754 1.7600 -211 1399 3.7048 0.9643 1.7600 -211 1400 3.7604 0.9587 1.7600 -211 1401 3.8230 0.9571 1.7600 -211 1402 3.8862 0.9560 1.7600 -211 1403 3.9440 0.9554 1.7600 -211 1404 4.0036 0.9567 1.7600 -211 1405 4.0651 0.9582 1.7600 -211 1406 4.1349 0.9637 1.7600 -211 1407 4.2070 0.9719 1.7600 -211 1408 4.2834 0.9813 1.7600 -211 1409 4.3609 0.9864 1.7600 -211 1410 4.4396 0.9859 1.7600 -211 1411 4.5161 0.9769 1.7600 -211 1412 4.5881 0.9693 1.7600 -211 1413 4.6586 0.9604 1.7600 -211 1414 4.7280 0.9527 1.7600 -211 1415 4.7959 0.9378 1.7600 -211 1416 4.8731 0.9220 1.7600 -211 1417 4.9572 0.8985 1.7600 -211 1418 5.0311 0.8880 1.7600 -211 1419 5.1028 0.8863 1.7600 -211 1420 5.1738 0.8902 1.7600 -211 1421 5.2400 0.8960 1.7600 -211 1422 5.3024 0.9007 1.7600 -211 1423 5.3640 0.9061 1.7600 -211 1424 5.4244 0.9139 1.7600 -211 1425 5.4866 0.9264 1.7600 -211 1426 5.5544 0.9439 1.7600 -211 1427 5.6292 0.9644 1.7600 -211 1428 5.7014 0.9824 1.7600 -211 1429 5.7734 0.9920 1.7600 -211 1430 5.8452 0.9928 1.7600 -211 1431 5.9139 0.9897 1.7600 -212 1178 -7.8187 0.9889 1.7600 -212 1179 -7.7778 0.9593 1.7600 -212 1180 -7.7433 0.9262 1.7600 -212 1181 -7.7151 0.8932 1.7600 -212 1182 -7.6881 0.8647 1.7600 -212 1183 -7.6580 0.8420 1.7600 -212 1184 -7.6260 0.8224 1.7600 -212 1185 -7.5910 0.8055 1.7600 -212 1186 -7.5545 0.7919 1.7600 -212 1187 -7.5169 0.7827 1.7600 -212 1188 -7.4774 0.7770 1.7600 -212 1189 -7.4346 0.7751 1.7600 -212 1190 -7.3888 0.7780 1.7600 -212 1191 -7.3423 0.7837 1.7600 -212 1192 -7.2985 0.7913 1.7600 -212 1193 -7.2601 0.8007 1.7600 -212 1194 -7.2239 0.8078 1.7600 -212 1195 -7.1854 0.8100 1.7600 -212 1196 -7.1463 0.8091 1.7600 -212 1197 -7.1051 0.8074 1.7600 -212 1198 -7.0645 0.7998 1.7600 -212 1199 -7.0223 0.7909 1.7600 -212 1200 -6.9726 0.7801 1.7600 -212 1201 -6.9286 0.7671 1.7600 -212 1202 -6.8814 0.7538 1.7600 -212 1203 -6.8357 0.7370 1.7600 -212 1204 -6.7903 0.7205 1.7600 -212 1205 -6.7503 0.7003 1.7600 -212 1206 -6.7097 0.6825 1.7600 -212 1207 -6.6672 0.6684 1.7600 -212 1208 -6.6229 0.6606 1.7600 -212 1209 -6.5761 0.6533 1.7600 -212 1210 -6.5284 0.6470 1.7600 -212 1211 -6.4809 0.6436 1.7600 -212 1212 -6.4323 0.6419 1.7600 -212 1213 -6.3836 0.6427 1.7600 -212 1214 -6.3367 0.6474 1.7600 -212 1215 -6.2898 0.6554 1.7600 -212 1216 -6.2423 0.6663 1.7600 -212 1217 -6.1996 0.6782 1.7600 -212 1218 -6.1632 0.6875 1.7600 -212 1219 -6.1225 0.6919 1.7600 -212 1220 -6.0824 0.6916 1.7600 -212 1221 -6.0382 0.6849 1.7600 -212 1222 -5.9976 0.6789 1.7600 -212 1223 -5.9538 0.6703 1.7600 -212 1224 -5.9096 0.6608 1.7600 -212 1225 -5.8645 0.6486 1.7600 -212 1226 -5.8202 0.6345 1.7600 -212 1227 -5.7791 0.6171 1.7600 -212 1228 -5.7402 0.5953 1.7600 -212 1229 -5.6997 0.5715 1.7600 -212 1230 -5.6648 0.5535 1.7600 -212 1231 -5.6297 0.5363 1.7600 -212 1232 -5.5900 0.5248 1.7600 -212 1233 -5.5505 0.5150 1.7600 -212 1234 -5.5159 0.5087 1.7600 -212 1235 -5.4790 0.5024 1.7600 -212 1236 -5.4372 0.4996 1.7600 -212 1237 -5.3940 0.5000 1.7600 -212 1238 -5.3491 0.5041 1.7600 -212 1239 -5.3005 0.5116 1.7600 -212 1240 -5.2527 0.5205 1.7600 -212 1241 -5.2041 0.5326 1.7600 -212 1242 -5.1613 0.5439 1.7600 -212 1243 -5.1200 0.5468 1.7600 -212 1244 -5.0760 0.5463 1.7600 -212 1245 -5.0346 0.5461 1.7600 -212 1246 -4.9919 0.5434 1.7600 -212 1247 -4.9517 0.5387 1.7600 -212 1248 -4.9072 0.5351 1.7600 -212 1249 -4.8587 0.5298 1.7600 -212 1250 -4.8097 0.5215 1.7600 -212 1251 -4.7580 0.5127 1.7600 -212 1252 -4.7043 0.4991 1.7600 -212 1253 -4.6491 0.4818 1.7600 -212 1254 -4.6014 0.4668 1.7600 -212 1255 -4.5605 0.4554 1.7600 -212 1256 -4.5117 0.4491 1.7600 -212 1257 -4.4654 0.4464 1.7600 -212 1258 -4.4187 0.4454 1.7600 -212 1259 -4.3721 0.4493 1.7600 -212 1260 -4.3255 0.4544 1.7600 -212 1261 -4.2761 0.4614 1.7600 -212 1262 -4.2298 0.4723 1.7600 -212 1263 -4.1817 0.4859 1.7600 -212 1264 -4.1377 0.4994 1.7600 -212 1265 -4.0985 0.5100 1.7600 -212 1266 -4.0561 0.5172 1.7600 -212 1267 -4.0102 0.5189 1.7600 -212 1268 -3.9602 0.5164 1.7600 -212 1269 -3.9127 0.5123 1.7600 -212 1270 -3.8637 0.5076 1.7600 -212 1271 -3.8155 0.5041 1.7600 -212 1272 -3.7684 0.4972 1.7600 -212 1273 -3.7202 0.4864 1.7600 -212 1274 -3.6731 0.4718 1.7600 -212 1275 -3.6217 0.4533 1.7600 -212 1276 -3.5775 0.4344 1.7600 -212 1277 -3.5351 0.4168 1.7600 -212 1278 -3.4878 0.4055 1.7600 -212 1279 -3.4436 0.4003 1.7600 -212 1280 -3.3970 0.3974 1.7600 -212 1281 -3.3526 0.4000 1.7600 -212 1282 -3.3052 0.4056 1.7600 -212 1283 -3.2568 0.4157 1.7600 -212 1284 -3.2086 0.4323 1.7600 -212 1285 -3.1565 0.4521 1.7600 -212 1286 -3.1043 0.4706 1.7600 -212 1287 -3.0518 0.4900 1.7600 -212 1288 -3.0014 0.5051 1.7600 -212 1289 -2.9529 0.5111 1.7600 -212 1290 -2.9014 0.5171 1.7600 -212 1291 -2.8543 0.5180 1.7600 -212 1292 -2.8089 0.5188 1.7600 -212 1293 -2.7643 0.5200 1.7600 -212 1294 -2.7161 0.5166 1.7600 -212 1295 -2.6692 0.5102 1.7600 -212 1296 -2.6208 0.5002 1.7600 -212 1297 -2.5689 0.4855 1.7600 -212 1298 -2.5187 0.4652 1.7600 -212 1299 -2.4739 0.4499 1.7600 -212 1300 -2.4261 0.4380 1.7600 -212 1301 -2.3790 0.4316 1.7600 -212 1302 -2.3358 0.4301 1.7600 -212 1303 -2.2929 0.4299 1.7600 -212 1304 -2.2470 0.4332 1.7600 -212 1305 -2.2002 0.4351 1.7600 -212 1306 -2.1522 0.4422 1.7600 -212 1307 -2.0997 0.4560 1.7600 -212 1308 -2.0442 0.4706 1.7600 -212 1309 -1.9843 0.4815 1.7600 -212 1310 -1.9265 0.4942 1.7600 -212 1311 -1.8723 0.5028 1.7600 -212 1312 -1.8164 0.5050 1.7600 -212 1313 -1.7619 0.5035 1.7600 -212 1314 -1.7101 0.5007 1.7600 -212 1315 -1.6620 0.4973 1.7600 -212 1316 -1.6120 0.4921 1.7600 -212 1317 -1.5610 0.4876 1.7600 -212 1318 -1.5107 0.4808 1.7600 -212 1319 -1.4579 0.4694 1.7600 -212 1320 -1.4019 0.4536 1.7600 -212 1321 -1.3485 0.4364 1.7600 -212 1322 -1.3001 0.4179 1.7600 -212 1323 -1.2533 0.4056 1.7600 -212 1324 -1.2031 0.3988 1.7600 -212 1325 -1.1503 0.3971 1.7600 -212 1326 -1.1008 0.3962 1.7600 -212 1327 -1.0505 0.3972 1.7600 -212 1328 -0.9984 0.4010 1.7600 -212 1329 -0.9445 0.4076 1.7600 -212 1330 -0.8895 0.4168 1.7600 -212 1331 -0.8313 0.4306 1.7600 -212 1332 -0.7716 0.4461 1.7600 -212 1333 -0.7179 0.4603 1.7600 -212 1334 -0.6654 0.4689 1.7600 -212 1335 -0.6089 0.4684 1.7600 -212 1336 -0.5552 0.4623 1.7600 -212 1337 -0.5008 0.4551 1.7600 -212 1338 -0.4439 0.4455 1.7600 -212 1339 -0.3827 0.4389 1.7600 -212 1340 -0.3221 0.4293 1.7600 -212 1341 -0.2614 0.4149 1.7600 -212 1342 -0.1993 0.3945 1.7600 -212 1343 -0.1435 0.3755 1.7600 -212 1344 -0.0935 0.3640 1.7600 -212 1345 -0.0424 0.3596 1.7600 -212 1346 0.0140 0.3598 1.7600 -212 1347 0.0717 0.3634 1.7600 -212 1348 0.1315 0.3667 1.7600 -212 1349 0.1895 0.3732 1.7600 -212 1350 0.2494 0.3900 1.7600 -212 1351 0.3086 0.4107 1.7600 -212 1352 0.3637 0.4358 1.7600 -212 1353 0.4147 0.4570 1.7600 -212 1354 0.4616 0.4767 1.7600 -212 1355 0.5115 0.4916 1.7600 -212 1356 0.5621 0.4996 1.7600 -212 1357 0.6145 0.5062 1.7600 -212 1358 0.6668 0.5117 1.7600 -212 1359 0.7210 0.5186 1.7600 -212 1360 0.7777 0.5238 1.7600 -212 1361 0.8385 0.5250 1.7600 -212 1362 0.8981 0.5207 1.7600 -212 1363 0.9569 0.5162 1.7600 -212 1364 1.0161 0.5083 1.7600 -212 1365 1.0717 0.4996 1.7600 -212 1366 1.1239 0.4969 1.7600 -212 1367 1.1781 0.5025 1.7600 -212 1368 1.2310 0.5114 1.7600 -212 1369 1.2833 0.5196 1.7600 -212 1370 1.3380 0.5292 1.7600 -212 1371 1.3949 0.5432 1.7600 -212 1372 1.4513 0.5601 1.7600 -212 1373 1.5086 0.5815 1.7600 -212 1374 1.5646 0.6013 1.7600 -212 1375 1.6172 0.6181 1.7600 -212 1376 1.6665 0.6311 1.7600 -212 1377 1.7184 0.6399 1.7600 -212 1378 1.7694 0.6426 1.7600 -212 1379 1.8205 0.6427 1.7600 -212 1380 1.8686 0.6410 1.7600 -212 1381 1.9185 0.6395 1.7600 -212 1382 1.9689 0.6325 1.7600 -212 1383 2.0190 0.6189 1.7600 -212 1384 2.0709 0.5996 1.7600 -212 1385 2.1217 0.5772 1.7600 -212 1386 2.1708 0.5521 1.7600 -212 1387 2.2186 0.5325 1.7600 -212 1388 2.2669 0.5187 1.7600 -212 1389 2.3192 0.5105 1.7600 -212 1390 2.3732 0.5053 1.7600 -212 1391 2.4256 0.5043 1.7600 -212 1392 2.4804 0.5030 1.7600 -212 1393 2.5366 0.5067 1.7600 -212 1394 2.5936 0.5142 1.7600 -212 1395 2.6520 0.5263 1.7600 -212 1396 2.7142 0.5384 1.7600 -212 1397 2.7744 0.5494 1.7600 -212 1398 2.8319 0.5579 1.7600 -212 1399 2.8895 0.5565 1.7600 -212 1400 2.9508 0.5526 1.7600 -212 1401 3.0125 0.5424 1.7600 -212 1402 3.0744 0.5311 1.7600 -212 1403 3.1356 0.5201 1.7600 -212 1404 3.1979 0.5074 1.7600 -212 1405 3.2605 0.4904 1.7600 -212 1406 3.3264 0.4703 1.7600 -212 1407 3.3948 0.4447 1.7600 -212 1408 3.4555 0.4219 1.7600 -212 1409 3.5116 0.4041 1.7600 -212 1410 3.5725 0.3937 1.7600 -212 1411 3.6343 0.3892 1.7600 -212 1412 3.6962 0.3885 1.7600 -212 1413 3.7565 0.3922 1.7600 -212 1414 3.8155 0.4005 1.7600 -212 1415 3.8741 0.4132 1.7600 -212 1416 3.9376 0.4308 1.7600 -212 1417 4.0024 0.4475 1.7600 -212 1418 4.0620 0.4610 1.7600 -212 1419 4.1207 0.4677 1.7600 -212 1420 4.1832 0.4684 1.7600 -212 1421 4.2448 0.4621 1.7600 -212 1422 4.3027 0.4518 1.7600 -212 1423 4.3612 0.4441 1.7600 -212 1424 4.4187 0.4347 1.7600 -212 1425 4.4756 0.4228 1.7600 -212 1426 4.5377 0.4066 1.7600 -212 1427 4.6068 0.3870 1.7600 -212 1428 4.6722 0.3660 1.7600 -212 1429 4.7279 0.3532 1.7600 -212 1430 4.7841 0.3483 1.7600 -212 1431 4.8422 0.3467 1.7600 -212 1432 4.8977 0.3473 1.7600 -212 1433 4.9523 0.3493 1.7600 -212 1434 5.0060 0.3550 1.7600 -212 1435 5.0591 0.3638 1.7600 -212 1436 5.1147 0.3766 1.7600 -212 1437 5.1803 0.3935 1.7600 -212 1438 5.2458 0.4083 1.7600 -212 1439 5.3070 0.4216 1.7600 -212 1440 5.3665 0.4284 1.7600 -212 1441 5.4265 0.4278 1.7600 -212 1442 5.4867 0.4243 1.7600 -212 1443 5.5454 0.4189 1.7600 -212 1444 5.6016 0.4163 1.7600 -212 1445 5.6604 0.4114 1.7600 -212 1446 5.7211 0.4032 1.7600 -212 1447 5.7871 0.3884 1.7600 -212 1448 5.8605 0.3703 1.7600 -212 1449 5.9287 0.3551 1.7600 -213 1176 -7.8068 2.0549 1.7600 -213 1177 -7.7705 2.0589 1.7600 -213 1178 -7.7332 2.0617 1.7600 -213 1179 -7.6962 2.0638 1.7600 -213 1180 -7.6558 2.0659 1.7600 -213 1181 -7.6144 2.0691 1.7600 -213 1182 -7.5732 2.0742 1.7600 -213 1183 -7.5342 2.0809 1.7600 -213 1184 -7.4972 2.0873 1.7600 -213 1185 -7.4615 2.0912 1.7600 -213 1186 -7.4264 2.0913 1.7600 -213 1187 -7.3922 2.0898 1.7600 -213 1188 -7.3565 2.0875 1.7600 -213 1189 -7.3186 2.0854 1.7600 -213 1190 -7.2799 2.0832 1.7600 -213 1191 -7.2432 2.0812 1.7600 -213 1192 -7.2068 2.0767 1.7600 -213 1193 -7.1688 2.0691 1.7600 -213 1194 -7.1313 2.0584 1.7600 -213 1195 -7.0950 2.0459 1.7600 -213 1196 -7.0571 2.0313 1.7600 -213 1197 -7.0185 2.0160 1.7600 -213 1198 -6.9803 2.0008 1.7600 -213 1199 -6.9339 1.9775 1.7600 -213 1200 -6.8862 1.9684 1.7600 -213 1201 -6.8311 1.9580 1.7600 -213 1202 -6.7800 1.9493 1.7600 -213 1203 -6.7312 1.9443 1.7600 -213 1204 -6.6805 1.9345 1.7600 -213 1205 -6.6325 1.9307 1.7600 -213 1206 -6.5861 1.9281 1.7600 -213 1207 -6.5401 1.9297 1.7600 -213 1208 -6.4985 1.9346 1.7600 -213 1209 -6.4565 1.9398 1.7600 -213 1210 -6.4201 1.9384 1.7600 -213 1211 -6.3858 1.9372 1.7600 -213 1212 -6.3495 1.9291 1.7600 -213 1213 -6.3133 1.9149 1.7600 -213 1214 -6.2791 1.9012 1.7600 -213 1215 -6.2456 1.8882 1.7600 -213 1216 -6.2104 1.8737 1.7600 -213 1217 -6.1717 1.8554 1.7600 -213 1218 -6.1383 1.8370 1.7600 -213 1219 -6.1022 1.8142 1.7600 -213 1220 -6.0679 1.7872 1.7600 -213 1221 -6.0371 1.7567 1.7600 -213 1222 -6.0034 1.7275 1.7600 -213 1223 -5.9731 1.7058 1.7600 -213 1224 -5.9374 1.6864 1.7600 -213 1225 -5.9044 1.6689 1.7600 -213 1226 -5.8673 1.6566 1.7600 -213 1227 -5.8337 1.6421 1.7600 -213 1228 -5.7996 1.6273 1.7600 -213 1229 -5.7584 1.6143 1.7600 -213 1230 -5.7181 1.6021 1.7600 -213 1231 -5.6758 1.5913 1.7600 -213 1232 -5.6284 1.5837 1.7600 -213 1233 -5.5855 1.5772 1.7600 -213 1234 -5.5405 1.5746 1.7600 -213 1235 -5.4965 1.5682 1.7600 -213 1236 -5.4527 1.5617 1.7600 -213 1237 -5.4073 1.5476 1.7600 -213 1238 -5.3627 1.5330 1.7600 -213 1239 -5.3169 1.5190 1.7600 -213 1240 -5.2724 1.5031 1.7600 -213 1241 -5.2320 1.4893 1.7600 -213 1242 -5.1932 1.4750 1.7600 -213 1243 -5.1591 1.4587 1.7600 -213 1244 -5.1250 1.4397 1.7600 -213 1245 -5.0937 1.4160 1.7600 -213 1246 -5.0642 1.3931 1.7600 -213 1247 -5.0371 1.3717 1.7600 -213 1248 -5.0131 1.3507 1.7600 -213 1249 -4.9879 1.3333 1.7600 -213 1250 -4.9556 1.3181 1.7600 -213 1251 -4.9219 1.3069 1.7600 -213 1252 -4.8897 1.2979 1.7600 -213 1253 -4.8535 1.2907 1.7600 -213 1254 -4.8115 1.2804 1.7600 -213 1255 -4.7660 1.2743 1.7600 -213 1256 -4.7173 1.2695 1.7600 -213 1257 -4.6723 1.2676 1.7600 -213 1258 -4.6277 1.2686 1.7600 -213 1259 -4.5868 1.2697 1.7600 -213 1260 -4.5476 1.2722 1.7600 -213 1261 -4.5158 1.2703 1.7600 -213 1262 -4.4822 1.2661 1.7600 -213 1263 -4.4443 1.2569 1.7600 -213 1264 -4.4059 1.2463 1.7600 -213 1265 -4.3665 1.2349 1.7600 -213 1266 -4.3213 1.2271 1.7600 -213 1267 -4.2750 1.2221 1.7600 -213 1268 -4.2285 1.2156 1.7600 -213 1269 -4.1811 1.2073 1.7600 -213 1270 -4.1348 1.1928 1.7600 -213 1271 -4.0858 1.1784 1.7600 -213 1272 -4.0405 1.1609 1.7600 -213 1273 -3.9971 1.1489 1.7600 -213 1274 -3.9524 1.1410 1.7600 -213 1275 -3.9047 1.1367 1.7600 -213 1276 -3.8548 1.1341 1.7600 -213 1277 -3.8092 1.1289 1.7600 -213 1278 -3.7571 1.1230 1.7600 -213 1279 -3.7066 1.1168 1.7600 -213 1280 -3.6522 1.1135 1.7600 -213 1281 -3.6013 1.1152 1.7600 -213 1282 -3.5456 1.1190 1.7600 -213 1283 -3.4885 1.1256 1.7600 -213 1284 -3.4380 1.1325 1.7600 -213 1285 -3.3966 1.1376 1.7600 -213 1286 -3.3522 1.1347 1.7600 -213 1287 -3.3091 1.1320 1.7600 -213 1288 -3.2702 1.1268 1.7600 -213 1289 -3.2280 1.1227 1.7600 -213 1290 -3.1837 1.1172 1.7600 -213 1291 -3.1410 1.1116 1.7600 -213 1292 -3.0989 1.1039 1.7600 -213 1293 -3.0553 1.0954 1.7600 -213 1294 -3.0134 1.0863 1.7600 -213 1295 -2.9749 1.0768 1.7600 -213 1296 -2.9369 1.0674 1.7600 -213 1297 -2.8925 1.0637 1.7600 -213 1298 -2.8487 1.0616 1.7600 -213 1299 -2.8041 1.0611 1.7600 -213 1300 -2.7566 1.0612 1.7600 -213 1301 -2.7070 1.0645 1.7600 -213 1302 -2.6543 1.0724 1.7600 -213 1303 -2.5974 1.0811 1.7600 -213 1304 -2.5333 1.0922 1.7600 -213 1305 -2.4720 1.1040 1.7600 -213 1306 -2.4179 1.1157 1.7600 -213 1307 -2.3685 1.1196 1.7600 -213 1308 -2.3182 1.1191 1.7600 -213 1309 -2.2724 1.1171 1.7600 -213 1310 -2.2274 1.1152 1.7600 -213 1311 -2.1802 1.1123 1.7600 -213 1312 -2.1284 1.1114 1.7600 -213 1313 -2.0793 1.1080 1.7600 -213 1314 -2.0329 1.1027 1.7600 -213 1315 -1.9870 1.0958 1.7600 -213 1316 -1.9354 1.0866 1.7600 -213 1317 -1.8841 1.0781 1.7600 -213 1318 -1.8375 1.0700 1.7600 -213 1319 -1.7930 1.0684 1.7600 -213 1320 -1.7485 1.0689 1.7600 -213 1321 -1.7056 1.0720 1.7600 -213 1322 -1.6653 1.0735 1.7600 -213 1323 -1.6230 1.0769 1.7600 -213 1324 -1.5736 1.0834 1.7600 -213 1325 -1.5255 1.0923 1.7600 -213 1326 -1.4707 1.1057 1.7600 -213 1327 -1.4140 1.1218 1.7600 -213 1328 -1.3629 1.1378 1.7600 -213 1329 -1.3145 1.1451 1.7600 -213 1330 -1.2602 1.1468 1.7600 -213 1331 -1.2147 1.1444 1.7600 -213 1332 -1.1670 1.1436 1.7600 -213 1333 -1.1152 1.1435 1.7600 -213 1334 -1.0610 1.1427 1.7600 -213 1335 -1.0041 1.1400 1.7600 -213 1336 -0.9442 1.1347 1.7600 -213 1337 -0.8843 1.1239 1.7600 -213 1338 -0.8188 1.1114 1.7600 -213 1339 -0.7606 1.0955 1.7600 -213 1340 -0.7028 1.0869 1.7600 -213 1341 -0.6461 1.0840 1.7600 -213 1342 -0.5923 1.0845 1.7600 -213 1343 -0.5378 1.0855 1.7600 -213 1344 -0.4773 1.0861 1.7600 -213 1345 -0.4097 1.0883 1.7600 -213 1346 -0.3370 1.0962 1.7600 -213 1347 -0.2604 1.1061 1.7600 -213 1348 -0.1866 1.1157 1.7600 -213 1349 -0.1211 1.1236 1.7600 -213 1350 -0.0636 1.1247 1.7600 -213 1351 -0.0109 1.1203 1.7600 -213 1352 0.0444 1.1125 1.7600 -213 1353 0.1026 1.1039 1.7600 -213 1354 0.1659 1.0980 1.7600 -213 1355 0.2308 1.0874 1.7600 -213 1356 0.2996 1.0795 1.7600 -213 1357 0.3705 1.0673 1.7600 -213 1358 0.4432 1.0567 1.7600 -213 1359 0.5102 1.0462 1.7600 -213 1360 0.5749 1.0452 1.7600 -213 1361 0.6364 1.0483 1.7600 -213 1362 0.6934 1.0541 1.7600 -213 1363 0.7536 1.0583 1.7600 -213 1364 0.8178 1.0667 1.7600 -213 1365 0.8859 1.0779 1.7600 -213 1366 0.9541 1.0918 1.7600 -213 1367 1.0182 1.1104 1.7600 -213 1368 1.0871 1.1310 1.7600 -213 1369 1.1555 1.1498 1.7600 -213 1370 1.2178 1.1616 1.7600 -213 1371 1.2802 1.1646 1.7600 -213 1372 1.3373 1.1643 1.7600 -213 1373 1.3938 1.1612 1.7600 -213 1374 1.4525 1.1597 1.7600 -213 1375 1.5127 1.1570 1.7600 -213 1376 1.5701 1.1549 1.7600 -213 1377 1.6307 1.1494 1.7600 -213 1378 1.6923 1.1414 1.7600 -213 1379 1.7518 1.1311 1.7600 -213 1380 1.8011 1.1232 1.7600 -213 1381 1.8527 1.1239 1.7600 -213 1382 1.9049 1.1283 1.7600 -213 1383 1.9535 1.1340 1.7600 -213 1384 2.0022 1.1388 1.7600 -213 1385 2.0563 1.1460 1.7600 -213 1386 2.1114 1.1534 1.7600 -213 1387 2.1675 1.1640 1.7600 -213 1388 2.2251 1.1763 1.7600 -213 1389 2.2804 1.1876 1.7600 -213 1390 2.3336 1.1981 1.7600 -213 1391 2.3813 1.2048 1.7600 -213 1392 2.4305 1.2022 1.7600 -213 1393 2.4754 1.1996 1.7600 -213 1394 2.5193 1.1946 1.7600 -213 1395 2.5695 1.1914 1.7600 -213 1396 2.6218 1.1894 1.7600 -213 1397 2.6773 1.1874 1.7600 -213 1398 2.7288 1.1816 1.7600 -213 1399 2.7807 1.1727 1.7600 -213 1400 2.8365 1.1635 1.7600 -213 1401 2.8907 1.1546 1.7600 -213 1402 2.9436 1.1529 1.7600 -213 1403 2.9978 1.1554 1.7600 -213 1404 3.0499 1.1632 1.7600 -213 1405 3.1011 1.1675 1.7600 -213 1406 3.1526 1.1688 1.7600 -213 1407 3.2078 1.1703 1.7600 -213 1408 3.2666 1.1711 1.7600 -213 1409 3.3274 1.1768 1.7600 -213 1410 3.3912 1.1830 1.7600 -213 1411 3.4599 1.1904 1.7600 -213 1412 3.5205 1.1982 1.7600 -213 1413 3.5813 1.2041 1.7600 -213 1414 3.6451 1.2010 1.7600 -213 1415 3.7007 1.1946 1.7600 -213 1416 3.7566 1.1874 1.7600 -213 1417 3.8157 1.1823 1.7600 -213 1418 3.8773 1.1767 1.7600 -213 1419 3.9408 1.1726 1.7600 -213 1420 4.0121 1.1676 1.7600 -213 1421 4.0873 1.1644 1.7600 -213 1422 4.1623 1.1610 1.7600 -213 1423 4.2308 1.1590 1.7600 -213 1424 4.3028 1.1648 1.7600 -213 1425 4.3729 1.1751 1.7600 -213 1426 4.4355 1.1855 1.7600 -213 1427 4.4948 1.1945 1.7600 -213 1428 4.5571 1.2046 1.7600 -213 1429 4.6183 1.2147 1.7600 -213 1430 4.6834 1.2279 1.7600 -213 1431 4.7522 1.2428 1.7600 -213 1432 4.8294 1.2573 1.7600 -213 1433 4.8990 1.2668 1.7600 -213 1434 4.9686 1.2690 1.7600 -213 1435 5.0404 1.2670 1.7600 -213 1436 5.1054 1.2637 1.7600 -213 1437 5.1691 1.2606 1.7600 -213 1438 5.2348 1.2610 1.7600 -213 1439 5.3011 1.2625 1.7600 -213 1440 5.3751 1.2608 1.7600 -213 1441 5.4516 1.2549 1.7600 -213 1442 5.5286 1.2495 1.7600 -213 1443 5.5948 1.2450 1.7600 -213 1444 5.6643 1.2464 1.7600 -213 1445 5.7325 1.2530 1.7600 -213 1446 5.7939 1.2599 1.7600 -213 1447 5.8534 1.2625 1.7600 -213 1448 5.9149 1.2635 1.7600 -214 1194 -7.8102 1.9554 1.7600 -214 1195 -7.7752 1.9351 1.7600 -214 1196 -7.7403 1.9219 1.7600 -214 1197 -7.7072 1.9167 1.7600 -214 1198 -7.6771 1.9197 1.7600 -214 1199 -7.6491 1.9290 1.7600 -214 1200 -7.6193 1.9418 1.7600 -214 1201 -7.5860 1.9600 1.7600 -214 1202 -7.5508 1.9846 1.7600 -214 1203 -7.5172 2.0163 1.7600 -214 1204 -7.4805 2.0524 1.7600 -214 1205 -7.4410 2.0916 1.7600 -214 1206 -7.4018 2.1237 1.7600 -214 1207 -7.3638 2.1435 1.7600 -214 1208 -7.3260 2.1553 1.7600 -214 1209 -7.2882 2.1610 1.7600 -214 1210 -7.2500 2.1600 1.7600 -214 1211 -7.2108 2.1517 1.7600 -214 1212 -7.1679 2.1369 1.7600 -214 1213 -7.1219 2.1151 1.7600 -214 1214 -7.0752 2.0863 1.7600 -214 1215 -7.0311 2.0548 1.7600 -214 1216 -6.9919 2.0255 1.7600 -214 1217 -6.9554 1.9958 1.7600 -214 1218 -6.9255 1.9762 1.7600 -214 1219 -6.8952 1.9645 1.7600 -214 1220 -6.8658 1.9637 1.7600 -214 1221 -6.8360 1.9633 1.7600 -214 1222 -6.8045 1.9623 1.7600 -214 1223 -6.7674 1.9649 1.7600 -214 1224 -6.7227 1.9712 1.7600 -214 1225 -6.6728 1.9851 1.7600 -214 1226 -6.6203 2.0026 1.7600 -214 1227 -6.5672 2.0240 1.7600 -214 1228 -6.5131 2.0466 1.7600 -214 1229 -6.4572 2.0650 1.7600 -214 1230 -6.4033 2.0796 1.7600 -214 1231 -6.3543 2.0841 1.7600 -214 1232 -6.3088 2.0772 1.7600 -214 1233 -6.2673 2.0671 1.7600 -214 1234 -6.2246 2.0534 1.7600 -214 1235 -6.1829 2.0365 1.7600 -214 1236 -6.1439 2.0132 1.7600 -214 1237 -6.1024 1.9829 1.7600 -214 1238 -6.0643 1.9514 1.7600 -214 1239 -6.0275 1.9186 1.7600 -214 1240 -5.9894 1.8921 1.7600 -214 1241 -5.9538 1.8771 1.7600 -214 1242 -5.9143 1.8718 1.7600 -214 1243 -5.8732 1.8739 1.7600 -214 1244 -5.8269 1.8781 1.7600 -214 1245 -5.7803 1.8850 1.7600 -214 1246 -5.7304 1.8958 1.7600 -214 1247 -5.6703 1.9102 1.7600 -214 1248 -5.6132 1.9335 1.7600 -214 1249 -5.5517 1.9588 1.7600 -214 1250 -5.4904 1.9784 1.7600 -214 1251 -5.4360 1.9817 1.7600 -214 1252 -5.3865 1.9766 1.7600 -214 1253 -5.3376 1.9680 1.7600 -214 1254 -5.2838 1.9544 1.7600 -214 1255 -5.2326 1.9395 1.7600 -214 1256 -5.1866 1.9201 1.7600 -214 1257 -5.1432 1.8958 1.7600 -214 1258 -5.1007 1.8678 1.7600 -214 1259 -5.0597 1.8351 1.7600 -214 1260 -5.0131 1.8007 1.7600 -214 1261 -4.9672 1.7680 1.7600 -214 1262 -4.9274 1.7361 1.7600 -214 1263 -4.8914 1.7109 1.7600 -214 1264 -4.8582 1.6926 1.7600 -214 1265 -4.8217 1.6823 1.7600 -214 1266 -4.7814 1.6754 1.7600 -214 1267 -4.7370 1.6718 1.7600 -214 1268 -4.6876 1.6738 1.7600 -214 1269 -4.6346 1.6803 1.7600 -214 1270 -4.5773 1.6937 1.7600 -214 1271 -4.5196 1.7087 1.7600 -214 1272 -4.4707 1.7214 1.7600 -214 1273 -4.4367 1.7176 1.7600 -214 1274 -4.4065 1.7066 1.7600 -214 1275 -4.3804 1.6915 1.7600 -214 1276 -4.3619 1.6762 1.7600 -214 1277 -4.3416 1.6555 1.7600 -214 1278 -4.3199 1.6310 1.7600 -214 1279 -4.2956 1.6035 1.7600 -214 1280 -4.2739 1.5728 1.7600 -214 1281 -4.2521 1.5405 1.7600 -214 1282 -4.2276 1.5041 1.7600 -214 1283 -4.2018 1.4647 1.7600 -214 1284 -4.1772 1.4286 1.7600 -214 1285 -4.1464 1.3988 1.7600 -214 1286 -4.1123 1.3771 1.7600 -214 1287 -4.0782 1.3668 1.7600 -214 1288 -4.0473 1.3609 1.7600 -214 1289 -4.0133 1.3581 1.7600 -214 1290 -3.9748 1.3635 1.7600 -214 1291 -3.9393 1.3757 1.7600 -214 1292 -3.8955 1.3947 1.7600 -214 1293 -3.8474 1.4121 1.7600 -214 1294 -3.7994 1.4272 1.7600 -214 1295 -3.7494 1.4366 1.7600 -214 1296 -3.7068 1.4380 1.7600 -214 1297 -3.6600 1.4338 1.7600 -214 1298 -3.6185 1.4209 1.7600 -214 1299 -3.5782 1.4024 1.7600 -214 1300 -3.5349 1.3808 1.7600 -214 1301 -3.4907 1.3573 1.7600 -214 1302 -3.4436 1.3309 1.7600 -214 1303 -3.4022 1.3009 1.7600 -214 1304 -3.3633 1.2717 1.7600 -214 1305 -3.3225 1.2530 1.7600 -214 1306 -3.2790 1.2441 1.7600 -214 1307 -3.2373 1.2438 1.7600 -214 1308 -3.1965 1.2496 1.7600 -214 1309 -3.1548 1.2618 1.7600 -214 1310 -3.1111 1.2784 1.7600 -214 1311 -3.0642 1.3022 1.7600 -214 1312 -3.0151 1.3335 1.7600 -214 1313 -2.9660 1.3728 1.7600 -214 1314 -2.9246 1.4067 1.7600 -214 1315 -2.8858 1.4242 1.7600 -214 1316 -2.8418 1.4343 1.7600 -214 1317 -2.8039 1.4391 1.7600 -214 1318 -2.7697 1.4369 1.7600 -214 1319 -2.7261 1.4334 1.7600 -214 1320 -2.6833 1.4207 1.7600 -214 1321 -2.6381 1.3996 1.7600 -214 1322 -2.5915 1.3678 1.7600 -214 1323 -2.5400 1.3378 1.7600 -214 1324 -2.4869 1.3114 1.7600 -214 1325 -2.4399 1.2935 1.7600 -214 1326 -2.3943 1.2828 1.7600 -214 1327 -2.3583 1.2820 1.7600 -214 1328 -2.3232 1.2865 1.7600 -214 1329 -2.2902 1.2950 1.7600 -214 1330 -2.2570 1.3055 1.7600 -214 1331 -2.2182 1.3173 1.7600 -214 1332 -2.1728 1.3357 1.7600 -214 1333 -2.1213 1.3583 1.7600 -214 1334 -2.0671 1.3813 1.7600 -214 1335 -2.0136 1.4010 1.7600 -214 1336 -1.9635 1.4117 1.7600 -214 1337 -1.9115 1.4133 1.7600 -214 1338 -1.8610 1.4055 1.7600 -214 1339 -1.8110 1.3933 1.7600 -214 1340 -1.7622 1.3820 1.7600 -214 1341 -1.7112 1.3680 1.7600 -214 1342 -1.6600 1.3499 1.7600 -214 1343 -1.6049 1.3295 1.7600 -214 1344 -1.5442 1.3082 1.7600 -214 1345 -1.4833 1.2909 1.7600 -214 1346 -1.4261 1.2826 1.7600 -214 1347 -1.3699 1.2843 1.7600 -214 1348 -1.3181 1.2931 1.7600 -214 1349 -1.2660 1.3038 1.7600 -214 1350 -1.2146 1.3151 1.7600 -214 1351 -1.1611 1.3276 1.7600 -214 1352 -1.1047 1.3446 1.7600 -214 1353 -1.0455 1.3677 1.7600 -214 1354 -0.9817 1.3960 1.7600 -214 1355 -0.9200 1.4212 1.7600 -214 1356 -0.8672 1.4404 1.7600 -214 1357 -0.8109 1.4461 1.7600 -214 1358 -0.7578 1.4453 1.7600 -214 1359 -0.7076 1.4433 1.7600 -214 1360 -0.6546 1.4400 1.7600 -214 1361 -0.5958 1.4329 1.7600 -214 1362 -0.5327 1.4218 1.7600 -214 1363 -0.4616 1.4036 1.7600 -214 1364 -0.3952 1.3920 1.7600 -214 1365 -0.3287 1.3760 1.7600 -214 1366 -0.2611 1.3679 1.7600 -214 1367 -0.1952 1.3709 1.7600 -214 1368 -0.1314 1.3777 1.7600 -214 1369 -0.0669 1.3903 1.7600 -214 1370 0.0024 1.4043 1.7600 -214 1371 0.0773 1.4198 1.7600 -214 1372 0.1546 1.4359 1.7600 -214 1373 0.2364 1.4574 1.7600 -214 1374 0.3137 1.4797 1.7600 -214 1375 0.3828 1.4969 1.7600 -214 1376 0.4414 1.5002 1.7600 -214 1377 0.4958 1.4954 1.7600 -214 1378 0.5486 1.4860 1.7600 -214 1379 0.6028 1.4755 1.7600 -214 1380 0.6605 1.4656 1.7600 -214 1381 0.7237 1.4518 1.7600 -214 1382 0.7855 1.4343 1.7600 -214 1383 0.8504 1.4127 1.7600 -214 1384 0.9171 1.3893 1.7600 -214 1385 0.9796 1.3680 1.7600 -214 1386 1.0393 1.3603 1.7600 -214 1387 1.0962 1.3641 1.7600 -214 1388 1.1498 1.3750 1.7600 -214 1389 1.2064 1.3898 1.7600 -214 1390 1.2673 1.4064 1.7600 -214 1391 1.3308 1.4250 1.7600 -214 1392 1.3973 1.4497 1.7600 -214 1393 1.4644 1.4789 1.7600 -214 1394 1.5161 1.5017 1.7600 -214 1395 1.5552 1.5112 1.7600 -214 1396 1.5935 1.5141 1.7600 -214 1397 1.6344 1.5095 1.7600 -214 1398 1.6738 1.5026 1.7600 -214 1399 1.7163 1.4899 1.7600 -214 1400 1.7595 1.4737 1.7600 -214 1401 1.8070 1.4550 1.7600 -214 1402 1.8523 1.4347 1.7600 -214 1403 1.9046 1.4146 1.7600 -214 1404 1.9557 1.3953 1.7600 -214 1405 2.0066 1.3766 1.7600 -214 1406 2.0578 1.3680 1.7600 -214 1407 2.1122 1.3662 1.7600 -214 1408 2.1671 1.3696 1.7600 -214 1409 2.2231 1.3735 1.7600 -214 1410 2.2800 1.3804 1.7600 -214 1411 2.3408 1.3924 1.7600 -214 1412 2.4012 1.4100 1.7600 -214 1413 2.4642 1.4293 1.7600 -214 1414 2.5298 1.4422 1.7600 -214 1415 2.5889 1.4458 1.7600 -214 1416 2.6547 1.4420 1.7600 -214 1417 2.7170 1.4328 1.7600 -214 1418 2.7818 1.4181 1.7600 -214 1419 2.8440 1.4006 1.7600 -214 1420 2.9067 1.3787 1.7600 -214 1421 2.9678 1.3554 1.7600 -214 1422 3.0308 1.3332 1.7600 -214 1423 3.0915 1.3181 1.7600 -214 1424 3.1458 1.3155 1.7600 -214 1425 3.2008 1.3204 1.7600 -214 1426 3.2548 1.3283 1.7600 -214 1427 3.3083 1.3388 1.7600 -214 1428 3.3628 1.3519 1.7600 -214 1429 3.4189 1.3704 1.7600 -214 1430 3.4797 1.3970 1.7600 -214 1431 3.5452 1.4259 1.7600 -214 1432 3.6120 1.4478 1.7600 -214 1433 3.6789 1.4575 1.7600 -214 1434 3.7456 1.4622 1.7600 -214 1435 3.8097 1.4611 1.7600 -214 1436 3.8729 1.4561 1.7600 -214 1437 3.9340 1.4488 1.7600 -214 1438 4.0017 1.4346 1.7600 -214 1439 4.0713 1.4159 1.7600 -214 1440 4.1458 1.3995 1.7600 -214 1441 4.2152 1.3874 1.7600 -214 1442 4.2833 1.3837 1.7600 -214 1443 4.3508 1.3924 1.7600 -214 1444 4.4130 1.4057 1.7600 -214 1445 4.4719 1.4230 1.7600 -214 1446 4.5276 1.4399 1.7600 -214 1447 4.5871 1.4628 1.7600 -214 1448 4.6520 1.4933 1.7600 -214 1449 4.7239 1.5268 1.7600 -214 1450 4.7966 1.5579 1.7600 -214 1451 4.8664 1.5746 1.7600 -214 1452 4.9346 1.5815 1.7600 -214 1453 5.0021 1.5826 1.7600 -214 1454 5.0637 1.5811 1.7600 -214 1455 5.1257 1.5803 1.7600 -214 1456 5.1874 1.5748 1.7600 -214 1457 5.2483 1.5669 1.7600 -214 1458 5.3138 1.5494 1.7600 -214 1459 5.3861 1.5362 1.7600 -214 1460 5.4544 1.5298 1.7600 -214 1461 5.5224 1.5303 1.7600 -214 1462 5.5938 1.5398 1.7600 -214 1463 5.6553 1.5529 1.7600 -214 1464 5.7095 1.5683 1.7600 -214 1465 5.7642 1.5857 1.7600 -214 1466 5.8209 1.6058 1.7600 -214 1467 5.8841 1.6292 1.7600 -215 1208 -7.8082 0.8342 1.7600 -215 1209 -7.7655 0.8295 1.7600 -215 1210 -7.7224 0.8265 1.7600 -215 1211 -7.6803 0.8269 1.7600 -215 1212 -7.6376 0.8330 1.7600 -215 1213 -7.5942 0.8429 1.7600 -215 1214 -7.5549 0.8526 1.7600 -215 1215 -7.5201 0.8586 1.7600 -215 1216 -7.4875 0.8630 1.7600 -215 1217 -7.4509 0.8659 1.7600 -215 1218 -7.4125 0.8672 1.7600 -215 1219 -7.3737 0.8654 1.7600 -215 1220 -7.3351 0.8601 1.7600 -215 1221 -7.2938 0.8506 1.7600 -215 1222 -7.2518 0.8388 1.7600 -215 1223 -7.2091 0.8232 1.7600 -215 1224 -7.1662 0.8029 1.7600 -215 1225 -7.1238 0.7773 1.7600 -215 1226 -7.0849 0.7477 1.7600 -215 1227 -7.0510 0.7162 1.7600 -215 1228 -7.0179 0.6850 1.7600 -215 1229 -6.9797 0.6586 1.7600 -215 1230 -6.9376 0.6381 1.7600 -215 1231 -6.8966 0.6229 1.7600 -215 1232 -6.8537 0.6134 1.7600 -215 1233 -6.8091 0.6074 1.7600 -215 1234 -6.7606 0.6052 1.7600 -215 1235 -6.7129 0.6041 1.7600 -215 1236 -6.6642 0.6065 1.7600 -215 1237 -6.6144 0.6129 1.7600 -215 1238 -6.5686 0.6251 1.7600 -215 1239 -6.5260 0.6376 1.7600 -215 1240 -6.4828 0.6516 1.7600 -215 1241 -6.4406 0.6578 1.7600 -215 1242 -6.3973 0.6582 1.7600 -215 1243 -6.3555 0.6548 1.7600 -215 1244 -6.3130 0.6483 1.7600 -215 1245 -6.2678 0.6400 1.7600 -215 1246 -6.2221 0.6286 1.7600 -215 1247 -6.1774 0.6144 1.7600 -215 1248 -6.1306 0.5989 1.7600 -215 1249 -6.0838 0.5805 1.7600 -215 1250 -6.0407 0.5577 1.7600 -215 1251 -6.0032 0.5333 1.7600 -215 1252 -5.9682 0.5056 1.7600 -215 1253 -5.9250 0.4811 1.7600 -215 1254 -5.8805 0.4576 1.7600 -215 1255 -5.8356 0.4437 1.7600 -215 1256 -5.7899 0.4370 1.7600 -215 1257 -5.7494 0.4386 1.7600 -215 1258 -5.7088 0.4439 1.7600 -215 1259 -5.6647 0.4513 1.7600 -215 1260 -5.6209 0.4615 1.7600 -215 1261 -5.5793 0.4739 1.7600 -215 1262 -5.5360 0.4926 1.7600 -215 1263 -5.4930 0.5177 1.7600 -215 1264 -5.4519 0.5498 1.7600 -215 1265 -5.4096 0.5779 1.7600 -215 1266 -5.3655 0.5983 1.7600 -215 1267 -5.3202 0.6125 1.7600 -215 1268 -5.2728 0.6246 1.7600 -215 1269 -5.2204 0.6281 1.7600 -215 1270 -5.1702 0.6283 1.7600 -215 1271 -5.1198 0.6242 1.7600 -215 1272 -5.0672 0.6176 1.7600 -215 1273 -5.0142 0.6089 1.7600 -215 1274 -4.9599 0.5972 1.7600 -215 1275 -4.9050 0.5832 1.7600 -215 1276 -4.8524 0.5651 1.7600 -215 1277 -4.7980 0.5438 1.7600 -215 1278 -4.7457 0.5280 1.7600 -215 1279 -4.6993 0.5184 1.7600 -215 1280 -4.6528 0.5154 1.7600 -215 1281 -4.6080 0.5161 1.7600 -215 1282 -4.5637 0.5243 1.7600 -215 1283 -4.5183 0.5340 1.7600 -215 1284 -4.4720 0.5460 1.7600 -215 1285 -4.4246 0.5579 1.7600 -215 1286 -4.3754 0.5710 1.7600 -215 1287 -4.3257 0.5890 1.7600 -215 1288 -4.2754 0.6086 1.7600 -215 1289 -4.2256 0.6298 1.7600 -215 1290 -4.1769 0.6478 1.7600 -215 1291 -4.1305 0.6614 1.7600 -215 1292 -4.0819 0.6684 1.7600 -215 1293 -4.0304 0.6725 1.7600 -215 1294 -3.9787 0.6725 1.7600 -215 1295 -3.9268 0.6707 1.7600 -215 1296 -3.8730 0.6680 1.7600 -215 1297 -3.8164 0.6634 1.7600 -215 1298 -3.7616 0.6549 1.7600 -215 1299 -3.7095 0.6397 1.7600 -215 1300 -3.6553 0.6223 1.7600 -215 1301 -3.6030 0.6050 1.7600 -215 1302 -3.5545 0.5924 1.7600 -215 1303 -3.5044 0.5906 1.7600 -215 1304 -3.4552 0.5960 1.7600 -215 1305 -3.4058 0.6050 1.7600 -215 1306 -3.3571 0.6152 1.7600 -215 1307 -3.3057 0.6248 1.7600 -215 1308 -3.2552 0.6364 1.7600 -215 1309 -3.2054 0.6468 1.7600 -215 1310 -3.1562 0.6620 1.7600 -215 1311 -3.1058 0.6775 1.7600 -215 1312 -3.0534 0.6918 1.7600 -215 1313 -3.0034 0.7049 1.7600 -215 1314 -2.9564 0.7128 1.7600 -215 1315 -2.9050 0.7161 1.7600 -215 1316 -2.8498 0.7136 1.7600 -215 1317 -2.7973 0.7110 1.7600 -215 1318 -2.7455 0.7065 1.7600 -215 1319 -2.6922 0.6996 1.7600 -215 1320 -2.6372 0.6884 1.7600 -215 1321 -2.5832 0.6722 1.7600 -215 1322 -2.5271 0.6493 1.7600 -215 1323 -2.4684 0.6270 1.7600 -215 1324 -2.4104 0.6065 1.7600 -215 1325 -2.3574 0.5987 1.7600 -215 1326 -2.3023 0.5956 1.7600 -215 1327 -2.2469 0.5993 1.7600 -215 1328 -2.1925 0.6058 1.7600 -215 1329 -2.1384 0.6149 1.7600 -215 1330 -2.0871 0.6216 1.7600 -215 1331 -2.0333 0.6342 1.7600 -215 1332 -1.9788 0.6450 1.7600 -215 1333 -1.9168 0.6600 1.7600 -215 1334 -1.8520 0.6721 1.7600 -215 1335 -1.7878 0.6828 1.7600 -215 1336 -1.7309 0.6872 1.7600 -215 1337 -1.6708 0.6846 1.7600 -215 1338 -1.6174 0.6781 1.7600 -215 1339 -1.5663 0.6701 1.7600 -215 1340 -1.5120 0.6615 1.7600 -215 1341 -1.4581 0.6516 1.7600 -215 1342 -1.4036 0.6391 1.7600 -215 1343 -1.3499 0.6195 1.7600 -215 1344 -1.2926 0.6014 1.7600 -215 1345 -1.2372 0.5819 1.7600 -215 1346 -1.1817 0.5633 1.7600 -215 1347 -1.1291 0.5525 1.7600 -215 1348 -1.0750 0.5527 1.7600 -215 1349 -1.0215 0.5575 1.7600 -215 1350 -0.9679 0.5669 1.7600 -215 1351 -0.9148 0.5777 1.7600 -215 1352 -0.8601 0.5888 1.7600 -215 1353 -0.8040 0.5973 1.7600 -215 1354 -0.7462 0.6059 1.7600 -215 1355 -0.6833 0.6126 1.7600 -215 1356 -0.6197 0.6159 1.7600 -215 1357 -0.5603 0.6134 1.7600 -215 1358 -0.5014 0.6072 1.7600 -215 1359 -0.4429 0.5991 1.7600 -215 1360 -0.3863 0.5904 1.7600 -215 1361 -0.3320 0.5808 1.7600 -215 1362 -0.2766 0.5713 1.7600 -215 1363 -0.2208 0.5587 1.7600 -215 1364 -0.1663 0.5445 1.7600 -215 1365 -0.1102 0.5267 1.7600 -215 1366 -0.0475 0.5049 1.7600 -215 1367 0.0116 0.4882 1.7600 -215 1368 0.0649 0.4757 1.7600 -215 1369 0.1201 0.4747 1.7600 -215 1370 0.1708 0.4788 1.7600 -215 1371 0.2165 0.4895 1.7600 -215 1372 0.2668 0.5007 1.7600 -215 1373 0.3192 0.5118 1.7600 -215 1374 0.3761 0.5221 1.7600 -215 1375 0.4323 0.5362 1.7600 -215 1376 0.4906 0.5568 1.7600 -215 1377 0.5521 0.5783 1.7600 -215 1378 0.6104 0.5957 1.7600 -215 1379 0.6639 0.6091 1.7600 -215 1380 0.7198 0.6147 1.7600 -215 1381 0.7720 0.6183 1.7600 -215 1382 0.8214 0.6237 1.7600 -215 1383 0.8752 0.6280 1.7600 -215 1384 0.9322 0.6321 1.7600 -215 1385 0.9926 0.6306 1.7600 -215 1386 1.0548 0.6277 1.7600 -215 1387 1.1229 0.6164 1.7600 -215 1388 1.1893 0.6050 1.7600 -215 1389 1.2571 0.5926 1.7600 -215 1390 1.3148 0.5874 1.7600 -215 1391 1.3725 0.5882 1.7600 -215 1392 1.4248 0.5936 1.7600 -215 1393 1.4781 0.5946 1.7600 -215 1394 1.5322 0.5978 1.7600 -215 1395 1.5904 0.6007 1.7600 -215 1396 1.6496 0.6044 1.7600 -215 1397 1.7099 0.6129 1.7600 -215 1398 1.7719 0.6242 1.7600 -215 1399 1.8325 0.6382 1.7600 -215 1400 1.8964 0.6550 1.7600 -215 1401 1.9582 0.6654 1.7600 -215 1402 2.0169 0.6707 1.7600 -215 1403 2.0722 0.6734 1.7600 -215 1404 2.1294 0.6781 1.7600 -215 1405 2.1842 0.6862 1.7600 -215 1406 2.2459 0.6944 1.7600 -215 1407 2.3022 0.6985 1.7600 -215 1408 2.3604 0.7001 1.7600 -215 1409 2.4208 0.6957 1.7600 -215 1410 2.4812 0.6833 1.7600 -215 1411 2.5482 0.6681 1.7600 -215 1412 2.6129 0.6547 1.7600 -215 1413 2.6774 0.6457 1.7600 -215 1414 2.7359 0.6456 1.7600 -215 1415 2.7907 0.6501 1.7600 -215 1416 2.8434 0.6556 1.7600 -215 1417 2.8972 0.6599 1.7600 -215 1418 2.9558 0.6621 1.7600 -215 1419 3.0127 0.6655 1.7600 -215 1420 3.0726 0.6712 1.7600 -215 1421 3.1327 0.6783 1.7600 -215 1422 3.1960 0.6862 1.7600 -215 1423 3.2597 0.6947 1.7600 -215 1424 3.3174 0.7008 1.7600 -215 1425 3.3746 0.7018 1.7600 -215 1426 3.4315 0.6970 1.7600 -215 1427 3.4863 0.6886 1.7600 -215 1428 3.5406 0.6798 1.7600 -215 1429 3.5951 0.6702 1.7600 -215 1430 3.6527 0.6601 1.7600 -215 1431 3.7089 0.6440 1.7600 -215 1432 3.7670 0.6212 1.7600 -215 1433 3.8330 0.5944 1.7600 -215 1434 3.8987 0.5640 1.7600 -215 1435 3.9652 0.5370 1.7600 -215 1436 4.0265 0.5232 1.7600 -215 1437 4.0882 0.5207 1.7600 -215 1438 4.1459 0.5241 1.7600 -215 1439 4.1998 0.5286 1.7600 -215 1440 4.2546 0.5368 1.7600 -215 1441 4.3070 0.5425 1.7600 -215 1442 4.3623 0.5511 1.7600 -215 1443 4.4208 0.5625 1.7600 -215 1444 4.4812 0.5783 1.7600 -215 1445 4.5435 0.5972 1.7600 -215 1446 4.6047 0.6185 1.7600 -215 1447 4.6677 0.6337 1.7600 -215 1448 4.7372 0.6386 1.7600 -215 1449 4.8055 0.6316 1.7600 -215 1450 4.8704 0.6214 1.7600 -215 1451 4.9305 0.6098 1.7600 -215 1452 4.9906 0.5960 1.7600 -215 1453 5.0503 0.5797 1.7600 -215 1454 5.1123 0.5602 1.7600 -215 1455 5.1804 0.5393 1.7600 -215 1456 5.2558 0.5163 1.7600 -215 1457 5.3259 0.4829 1.7600 -215 1458 5.3931 0.4474 1.7600 -215 1459 5.4566 0.4320 1.7600 -215 1460 5.5232 0.4348 1.7600 -215 1461 5.5874 0.4514 1.7600 -215 1462 5.6468 0.4732 1.7600 -215 1463 5.7034 0.4947 1.7600 -215 1464 5.7567 0.5118 1.7600 -215 1465 5.8083 0.5247 1.7600 -215 1466 5.8622 0.5325 1.7600 -215 1467 5.9274 0.5381 1.7600 -216 654 -7.8230 2.0414 1.7600 -216 655 -7.7743 2.0294 1.7600 -216 656 -7.7307 2.0210 1.7600 -216 657 -7.6887 2.0194 1.7600 -216 658 -7.6430 2.0239 1.7600 -216 659 -7.5946 2.0316 1.7600 -216 660 -7.5457 2.0413 1.7600 -216 661 -7.4956 2.0514 1.7600 -216 662 -7.4418 2.0619 1.7600 -216 663 -7.3885 2.0725 1.7600 -216 664 -7.3390 2.0851 1.7600 -216 665 -7.2928 2.1002 1.7600 -216 666 -7.2493 2.1170 1.7600 -216 667 -7.2066 2.1343 1.7600 -216 668 -7.1642 2.1510 1.7600 -216 669 -7.1200 2.1631 1.7600 -216 670 -7.0720 2.1678 1.7600 -216 671 -7.0259 2.1647 1.7600 -216 672 -6.9849 2.1556 1.7600 -216 673 -6.9478 2.1455 1.7600 -216 674 -6.9125 2.1349 1.7600 -216 675 -6.8792 2.1231 1.7600 -216 676 -6.8458 2.1122 1.7600 -216 677 -6.8095 2.1017 1.7600 -216 678 -6.7744 2.0926 1.7600 -216 679 -6.7407 2.0866 1.7600 -216 680 -6.7071 2.0796 1.7600 -216 681 -6.6707 2.0727 1.7600 -216 682 -6.6327 2.0657 1.7600 -216 683 -6.5926 2.0577 1.7600 -216 684 -6.5512 2.0496 1.7600 -216 685 -6.5070 2.0420 1.7600 -216 686 -6.4592 2.0350 1.7600 -216 687 -6.4109 2.0284 1.7600 -216 688 -6.3629 2.0230 1.7600 -216 689 -6.3165 2.0157 1.7600 -216 690 -6.2702 2.0077 1.7600 -216 691 -6.2255 1.9970 1.7600 -216 692 -6.1826 1.9843 1.7600 -216 693 -6.1383 1.9719 1.7600 -216 694 -6.0914 1.9598 1.7600 -216 695 -6.0434 1.9445 1.7600 -216 696 -5.9934 1.9199 1.7600 -216 697 -5.9359 1.8862 1.7600 -216 698 -5.8721 1.8526 1.7600 -216 699 -5.8083 1.8232 1.7600 -216 700 -5.7482 1.8027 1.7600 -216 701 -5.6905 1.7905 1.7600 -216 702 -5.6309 1.7752 1.7600 -216 703 -5.5738 1.7580 1.7600 -216 704 -5.5245 1.7444 1.7600 -216 705 -5.4762 1.7314 1.7600 -216 706 -5.4227 1.7189 1.7600 -216 707 -5.3671 1.7085 1.7600 -216 708 -5.3150 1.7024 1.7600 -216 709 -5.2649 1.6991 1.7600 -216 710 -5.2155 1.6982 1.7600 -216 711 -5.1638 1.6970 1.7600 -216 712 -5.1059 1.6890 1.7600 -216 713 -5.0475 1.6759 1.7600 -216 714 -4.9956 1.6618 1.7600 -216 715 -4.9453 1.6477 1.7600 -216 716 -4.8937 1.6337 1.7600 -216 717 -4.8430 1.6190 1.7600 -216 718 -4.7947 1.6036 1.7600 -216 719 -4.7471 1.5869 1.7600 -216 720 -4.7039 1.5732 1.7600 -216 721 -4.6674 1.5668 1.7600 -216 722 -4.6310 1.5641 1.7600 -216 723 -4.5938 1.5615 1.7600 -216 724 -4.5572 1.5590 1.7600 -216 725 -4.5177 1.5561 1.7600 -216 726 -4.4740 1.5540 1.7600 -216 727 -4.4305 1.5536 1.7600 -216 728 -4.3893 1.5560 1.7600 -216 729 -4.3486 1.5658 1.7600 -216 730 -4.3086 1.5821 1.7600 -216 731 -4.2685 1.5887 1.7600 -216 732 -4.2277 1.5843 1.7600 -216 733 -4.1903 1.5750 1.7600 -216 734 -4.1547 1.5660 1.7600 -216 735 -4.1189 1.5537 1.7600 -216 736 -4.0815 1.5358 1.7600 -216 737 -4.0432 1.5136 1.7600 -216 738 -4.0057 1.4881 1.7600 -216 739 -3.9677 1.4593 1.7600 -216 740 -3.9254 1.4260 1.7600 -216 741 -3.8821 1.3970 1.7600 -216 742 -3.8409 1.3798 1.7600 -216 743 -3.7933 1.3693 1.7600 -216 744 -3.7370 1.3649 1.7600 -216 745 -3.6791 1.3693 1.7600 -216 746 -3.6253 1.3798 1.7600 -216 747 -3.5745 1.3925 1.7600 -216 748 -3.5235 1.4077 1.7600 -216 749 -3.4707 1.4281 1.7600 -216 750 -3.4102 1.4441 1.7600 -216 751 -3.3531 1.4595 1.7600 -216 752 -3.3041 1.4789 1.7600 -216 753 -3.2496 1.4923 1.7600 -216 754 -3.1891 1.5023 1.7600 -216 755 -3.1250 1.5109 1.7600 -216 756 -3.0636 1.5178 1.7600 -216 757 -3.0069 1.5209 1.7600 -216 758 -2.9504 1.5214 1.7600 -216 759 -2.8917 1.5155 1.7600 -216 760 -2.8264 1.5039 1.7600 -216 761 -2.7586 1.4882 1.7600 -216 762 -2.6946 1.4774 1.7600 -216 763 -2.6311 1.4782 1.7600 -216 764 -2.5695 1.4849 1.7600 -216 765 -2.5093 1.4961 1.7600 -216 766 -2.4499 1.5010 1.7600 -216 767 -2.3875 1.5045 1.7600 -216 768 -2.3219 1.5079 1.7600 -216 769 -2.2520 1.5118 1.7600 -216 770 -2.1766 1.5167 1.7600 -216 771 -2.1040 1.5219 1.7600 -216 772 -2.0387 1.5206 1.7600 -216 773 -1.9743 1.5113 1.7600 -216 774 -1.9149 1.4969 1.7600 -216 775 -1.8573 1.4770 1.7600 -216 776 -1.7988 1.4632 1.7600 -216 777 -1.7402 1.4486 1.7600 -216 778 -1.6767 1.4304 1.7600 -216 779 -1.6143 1.4179 1.7600 -216 780 -1.5491 1.4001 1.7600 -216 781 -1.4851 1.3929 1.7600 -216 782 -1.4233 1.3960 1.7600 -216 783 -1.3598 1.4144 1.7600 -216 784 -1.2950 1.4335 1.7600 -216 785 -1.2369 1.4525 1.7600 -216 786 -1.1763 1.4607 1.7600 -216 787 -1.1184 1.4695 1.7600 -216 788 -1.0581 1.4899 1.7600 -216 789 -0.9953 1.5065 1.7600 -216 790 -0.9377 1.5198 1.7600 -216 791 -0.8850 1.5271 1.7600 -216 792 -0.8315 1.5259 1.7600 -216 793 -0.7815 1.5159 1.7600 -216 794 -0.7356 1.5022 1.7600 -216 795 -0.6927 1.4923 1.7600 -216 796 -0.6471 1.4850 1.7600 -216 797 -0.6011 1.4737 1.7600 -216 798 -0.5511 1.4631 1.7600 -216 799 -0.4960 1.4521 1.7600 -216 800 -0.4443 1.4371 1.7600 -216 801 -0.3917 1.4251 1.7600 -216 802 -0.3332 1.4199 1.7600 -216 803 -0.2676 1.4216 1.7600 -216 804 -0.2067 1.4241 1.7600 -216 805 -0.1508 1.4294 1.7600 -216 806 -0.0920 1.4360 1.7600 -216 807 -0.0229 1.4459 1.7600 -216 808 0.0495 1.4549 1.7600 -216 809 0.1146 1.4676 1.7600 -216 810 0.1783 1.4787 1.7600 -216 811 0.2369 1.4847 1.7600 -216 812 0.2950 1.4878 1.7600 -216 813 0.3552 1.4869 1.7600 -216 814 0.4157 1.4807 1.7600 -216 815 0.4724 1.4739 1.7600 -216 816 0.5344 1.4663 1.7600 -216 817 0.5933 1.4598 1.7600 -216 818 0.6529 1.4518 1.7600 -216 819 0.7126 1.4419 1.7600 -216 820 0.7697 1.4295 1.7600 -216 821 0.8275 1.4188 1.7600 -216 822 0.8835 1.4111 1.7600 -216 823 0.9429 1.4100 1.7600 -216 824 1.0054 1.4123 1.7600 -216 825 1.0619 1.4184 1.7600 -216 826 1.1196 1.4229 1.7600 -216 827 1.1743 1.4321 1.7600 -216 828 1.2327 1.4433 1.7600 -216 829 1.2956 1.4555 1.7600 -216 830 1.3629 1.4701 1.7600 -216 831 1.4249 1.4844 1.7600 -216 832 1.4822 1.4966 1.7600 -216 833 1.5409 1.5042 1.7600 -216 834 1.5976 1.5068 1.7600 -216 835 1.6479 1.5039 1.7600 -216 836 1.6994 1.5008 1.7600 -216 837 1.7525 1.4982 1.7600 -216 838 1.8034 1.4954 1.7600 -216 839 1.8583 1.4885 1.7600 -216 840 1.9189 1.4832 1.7600 -216 841 1.9789 1.4763 1.7600 -216 842 2.0386 1.4757 1.7600 -216 843 2.0943 1.4789 1.7600 -216 844 2.1566 1.4874 1.7600 -216 845 2.2160 1.4951 1.7600 -216 846 2.2787 1.5020 1.7600 -216 847 2.3385 1.5123 1.7600 -216 848 2.3941 1.5278 1.7600 -216 849 2.4510 1.5452 1.7600 -216 850 2.5091 1.5576 1.7600 -216 851 2.5690 1.5703 1.7600 -216 852 2.6345 1.5758 1.7600 -216 853 2.7040 1.5788 1.7600 -216 854 2.7681 1.5750 1.7600 -216 855 2.8293 1.5677 1.7600 -216 856 2.8919 1.5620 1.7600 -216 857 2.9479 1.5571 1.7600 -216 858 3.0002 1.5468 1.7600 -216 859 3.0622 1.5351 1.7600 -216 860 3.1294 1.5209 1.7600 -216 861 3.1971 1.5132 1.7600 -216 862 3.2633 1.5109 1.7600 -216 863 3.3298 1.5129 1.7600 -216 864 3.3958 1.5175 1.7600 -216 865 3.4611 1.5225 1.7600 -216 866 3.5248 1.5258 1.7600 -216 867 3.5914 1.5304 1.7600 -216 868 3.6591 1.5375 1.7600 -216 869 3.7301 1.5439 1.7600 -216 870 3.7988 1.5513 1.7600 -216 871 3.8655 1.5584 1.7600 -216 872 3.9300 1.5773 1.7600 -216 873 3.9943 1.6030 1.7600 -216 874 4.0560 1.6191 1.7600 -216 875 4.1178 1.6337 1.7600 -216 876 4.1785 1.6475 1.7600 -216 877 4.2427 1.6648 1.7600 -216 878 4.3095 1.6864 1.7600 -216 879 4.3837 1.7060 1.7600 -216 880 4.4526 1.7280 1.7600 -216 881 4.5256 1.7554 1.7600 -216 882 4.5945 1.7804 1.7600 -216 883 4.6596 1.8083 1.7600 -216 884 4.7240 1.8361 1.7600 -216 885 4.7919 1.8629 1.7600 -216 886 4.8727 1.8984 1.7600 -216 887 4.9578 1.9359 1.7600 -216 888 5.0365 1.9665 1.7600 -216 889 5.1189 1.9846 1.7600 -216 890 5.1982 1.9908 1.7600 -216 891 5.2702 1.9922 1.7600 -216 892 5.3372 1.9926 1.7600 -216 893 5.3994 2.0012 1.7600 -216 894 5.4625 2.0118 1.7600 -216 895 5.5367 2.0176 1.7600 -216 896 5.6194 2.0224 1.7600 -216 897 5.7015 2.0310 1.7600 -216 898 5.7824 2.0432 1.7600 -216 899 5.8635 2.0598 1.7600 -216 900 5.9423 2.0793 1.7600 -217 328 -7.8109 2.0289 1.7600 -217 329 -7.7399 2.0096 1.7600 -217 330 -7.6757 1.9890 1.7600 -217 331 -7.6237 1.9656 1.7600 -217 332 -7.5543 1.9576 1.7600 -217 333 -7.4919 1.9496 1.7600 -217 334 -7.4316 1.9456 1.7600 -217 335 -7.3709 1.9424 1.7600 -217 336 -7.3068 1.9399 1.7600 -217 337 -7.2394 1.9374 1.7600 -217 338 -7.1712 1.9365 1.7600 -217 339 -7.1036 1.9379 1.7600 -217 340 -7.0147 1.9294 1.7600 -217 341 -6.9547 1.9387 1.7600 -217 342 -6.8995 1.9523 1.7600 -217 343 -6.8424 1.9637 1.7600 -217 344 -6.7845 1.9707 1.7600 -217 345 -6.7253 1.9741 1.7600 -217 346 -6.6668 1.9753 1.7600 -217 347 -6.6254 1.9990 1.7600 -217 348 -6.5609 1.9936 1.7600 -217 349 -6.4849 1.9729 1.7600 -217 350 -6.4230 1.9585 1.7600 -217 351 -6.3679 1.9420 1.7600 -217 352 -6.3172 1.9235 1.7600 -217 353 -6.2677 1.9049 1.7600 -217 354 -6.2193 1.8889 1.7600 -217 355 -6.1713 1.8770 1.7600 -217 356 -6.1224 1.8660 1.7600 -217 357 -6.0718 1.8563 1.7600 -217 358 -6.0212 1.8465 1.7600 -217 359 -5.9853 1.8469 1.7600 -217 360 -5.9345 1.8389 1.7600 -217 361 -5.8832 1.8334 1.7600 -217 362 -5.8316 1.8329 1.7600 -217 363 -5.7715 1.8315 1.7600 -217 364 -5.7197 1.8353 1.7600 -217 365 -5.6690 1.8376 1.7600 -217 366 -5.6220 1.8377 1.7600 -217 367 -5.5780 1.8373 1.7600 -217 368 -5.5347 1.8346 1.7600 -217 369 -5.4892 1.8296 1.7600 -217 370 -5.4403 1.8221 1.7600 -217 371 -5.3889 1.8102 1.7600 -217 372 -5.3348 1.7921 1.7600 -217 373 -5.2790 1.7688 1.7600 -217 374 -5.2230 1.7432 1.7600 -217 375 -5.1670 1.7173 1.7600 -217 376 -5.1095 1.6927 1.7600 -217 377 -5.0501 1.6718 1.7600 -217 378 -4.9896 1.6561 1.7600 -217 379 -4.9286 1.6438 1.7600 -217 380 -4.8665 1.6327 1.7600 -217 381 -4.8026 1.6223 1.7600 -217 382 -4.7373 1.6136 1.7600 -217 383 -4.6709 1.6072 1.7600 -217 384 -4.6029 1.6036 1.7600 -217 385 -4.5275 1.6038 1.7600 -217 386 -4.4555 1.5967 1.7600 -217 387 -4.3886 1.6010 1.7600 -217 388 -4.3227 1.6035 1.7600 -217 389 -4.2574 1.6024 1.7600 -217 390 -4.1930 1.5961 1.7600 -217 391 -4.1289 1.5865 1.7600 -217 392 -4.0642 1.5749 1.7600 -217 393 -3.9978 1.5637 1.7600 -217 394 -3.9296 1.5521 1.7600 -217 395 -3.8611 1.5399 1.7600 -217 396 -3.7929 1.5263 1.7600 -217 397 -3.7311 1.5246 1.7600 -217 398 -3.6628 1.5127 1.7600 -217 399 -3.5947 1.5005 1.7600 -217 400 -3.5270 1.5016 1.7600 -217 401 -3.4596 1.5000 1.7600 -217 402 -3.3905 1.4962 1.7600 -217 403 -3.3259 1.4962 1.7600 -217 404 -3.2622 1.4956 1.7600 -217 405 -3.1994 1.4979 1.7600 -217 406 -3.1310 1.5032 1.7600 -217 407 -3.0653 1.5090 1.7600 -217 408 -3.0026 1.5126 1.7600 -217 409 -2.9398 1.5126 1.7600 -217 410 -2.8770 1.5112 1.7600 -217 411 -2.8171 1.5090 1.7600 -217 412 -2.7588 1.5059 1.7600 -217 413 -2.7000 1.5017 1.7600 -217 414 -2.6393 1.4965 1.7600 -217 415 -2.5768 1.4902 1.7600 -217 416 -2.5113 1.4824 1.7600 -217 417 -2.4394 1.4738 1.7600 -217 418 -2.3713 1.4620 1.7600 -217 419 -2.3099 1.4563 1.7600 -217 420 -2.2406 1.4601 1.7600 -217 421 -2.1676 1.4699 1.7600 -217 422 -2.1000 1.4828 1.7600 -217 423 -2.0323 1.5021 1.7600 -217 424 -1.9645 1.5212 1.7600 -217 425 -1.8968 1.5402 1.7600 -217 426 -1.8226 1.5614 1.7600 -217 427 -1.7528 1.5812 1.7600 -217 428 -1.6912 1.5946 1.7600 -217 429 -1.6334 1.6012 1.7600 -217 430 -1.5757 1.6019 1.7600 -217 431 -1.5176 1.5999 1.7600 -217 432 -1.4616 1.5953 1.7600 -217 433 -1.4051 1.5872 1.7600 -217 434 -1.3470 1.5766 1.7600 -217 435 -1.2874 1.5635 1.7600 -217 436 -1.2265 1.5474 1.7600 -217 437 -1.1639 1.5293 1.7600 -217 438 -1.0964 1.5090 1.7600 -217 439 -1.0375 1.4971 1.7600 -217 440 -0.9713 1.4905 1.7600 -217 441 -0.9105 1.4864 1.7600 -217 442 -0.8505 1.4852 1.7600 -217 443 -0.7915 1.4861 1.7600 -217 444 -0.7327 1.4878 1.7600 -217 445 -0.6727 1.4912 1.7600 -217 446 -0.6107 1.4938 1.7600 -217 447 -0.5498 1.5027 1.7600 -217 448 -0.4923 1.5122 1.7600 -217 449 -0.4358 1.5182 1.7600 -217 450 -0.3796 1.5207 1.7600 -217 451 -0.3248 1.5221 1.7600 -217 452 -0.2712 1.5215 1.7600 -217 453 -0.2151 1.5178 1.7600 -217 454 -0.1562 1.5102 1.7600 -217 455 -0.0967 1.4994 1.7600 -217 456 -0.0435 1.4815 1.7600 -217 457 0.0186 1.4572 1.7600 -217 458 0.0806 1.4395 1.7600 -217 459 0.1397 1.4272 1.7600 -217 460 0.2002 1.4141 1.7600 -217 461 0.2653 1.4052 1.7600 -217 462 0.3284 1.4015 1.7600 -217 463 0.3924 1.4014 1.7600 -217 464 0.4574 1.4027 1.7600 -217 465 0.5224 1.4082 1.7600 -217 466 0.5888 1.4145 1.7600 -217 467 0.6538 1.4246 1.7600 -217 468 0.7196 1.4363 1.7600 -217 469 0.7839 1.4526 1.7600 -217 470 0.8449 1.4645 1.7600 -217 471 0.9051 1.4712 1.7600 -217 472 0.9655 1.4735 1.7600 -217 473 1.0262 1.4706 1.7600 -217 474 1.0859 1.4643 1.7600 -217 475 1.1466 1.4552 1.7600 -217 476 1.2080 1.4478 1.7600 -217 477 1.2691 1.4379 1.7600 -217 478 1.3309 1.4265 1.7600 -217 479 1.3922 1.4117 1.7600 -217 480 1.4504 1.3960 1.7600 -217 481 1.5107 1.3820 1.7600 -217 482 1.5715 1.3751 1.7600 -217 483 1.6325 1.3732 1.7600 -217 484 1.6925 1.3730 1.7600 -217 485 1.7536 1.3742 1.7600 -217 486 1.8169 1.3777 1.7600 -217 487 1.8803 1.3845 1.7600 -217 488 1.9434 1.3960 1.7600 -217 489 2.0085 1.4081 1.7600 -217 490 2.0755 1.4218 1.7600 -217 491 2.1391 1.4357 1.7600 -217 492 2.1989 1.4465 1.7600 -217 493 2.2631 1.4533 1.7600 -217 494 2.3239 1.4575 1.7600 -217 495 2.3847 1.4573 1.7600 -217 496 2.4477 1.4544 1.7600 -217 497 2.5114 1.4531 1.7600 -217 498 2.5776 1.4487 1.7600 -217 499 2.6430 1.4449 1.7600 -217 500 2.7139 1.4380 1.7600 -217 501 2.7875 1.4307 1.7600 -217 502 2.8584 1.4256 1.7600 -217 503 2.9276 1.4258 1.7600 -217 504 2.9985 1.4304 1.7600 -217 505 3.0660 1.4388 1.7600 -217 506 3.1368 1.4483 1.7600 -217 507 3.2087 1.4578 1.7600 -217 508 3.2766 1.4695 1.7600 -217 509 3.3477 1.4802 1.7600 -217 510 3.4217 1.4932 1.7600 -217 511 3.4973 1.5129 1.7600 -217 512 3.5687 1.5334 1.7600 -217 513 3.6396 1.5506 1.7600 -217 514 3.7108 1.5630 1.7600 -217 515 3.7778 1.5720 1.7600 -217 516 3.8406 1.5787 1.7600 -217 517 3.9034 1.5826 1.7600 -217 518 3.9634 1.5851 1.7600 -217 519 4.0249 1.5859 1.7600 -217 520 4.0929 1.5805 1.7600 -217 521 4.1683 1.5723 1.7600 -217 522 4.2452 1.5623 1.7600 -217 523 4.3213 1.5520 1.7600 -217 524 4.3952 1.5481 1.7600 -217 525 4.4719 1.5467 1.7600 -217 526 4.5520 1.5450 1.7600 -217 527 4.6280 1.5415 1.7600 -217 528 4.7066 1.5390 1.7600 -217 529 4.7819 1.5357 1.7600 -217 530 4.8647 1.5336 1.7600 -217 531 4.9530 1.5347 1.7600 -217 532 5.0520 1.5364 1.7600 -217 533 5.1478 1.5359 1.7600 -217 534 5.2434 1.5260 1.7600 -217 535 5.3331 1.5101 1.7600 -217 536 5.4163 1.4892 1.7600 -217 537 5.4916 1.4686 1.7600 -217 538 5.5685 1.4465 1.7600 -217 539 5.6413 1.4233 1.7600 -217 540 5.7049 1.4006 1.7600 -217 541 5.7706 1.3791 1.7600 -217 542 5.8411 1.3609 1.7600 -217 543 5.9101 1.3496 1.7600 -218 426 -7.7269 0.9935 1.7600 -218 427 -7.6595 0.9708 1.7600 -218 428 -7.5983 0.9488 1.7600 -218 429 -7.5428 0.9312 1.7600 -218 430 -7.4904 0.9225 1.7600 -218 431 -7.4378 0.9180 1.7600 -218 432 -7.3802 0.9139 1.7600 -218 433 -7.3155 0.9114 1.7600 -218 434 -7.2458 0.9142 1.7600 -218 435 -7.1735 0.9198 1.7600 -218 436 -7.1040 0.9281 1.7600 -218 437 -7.0398 0.9387 1.7600 -218 438 -6.9959 0.9464 1.7600 -218 439 -6.9253 0.9387 1.7600 -218 440 -6.8709 0.9331 1.7600 -218 441 -6.8129 0.9254 1.7600 -218 442 -6.7513 0.9185 1.7600 -218 443 -6.6883 0.9106 1.7600 -218 444 -6.6241 0.9008 1.7600 -218 445 -6.5692 0.8869 1.7600 -218 446 -6.4900 0.8697 1.7600 -218 447 -6.4420 0.8577 1.7600 -218 448 -6.3735 0.8321 1.7600 -218 449 -6.3002 0.8067 1.7600 -218 450 -6.2406 0.8014 1.7600 -218 451 -6.1793 0.7997 1.7600 -218 452 -6.1170 0.7985 1.7600 -218 453 -6.0833 0.8132 1.7600 -218 454 -6.0181 0.8135 1.7600 -218 455 -5.9558 0.8160 1.7600 -218 456 -5.8982 0.8170 1.7600 -218 457 -5.8452 0.8167 1.7600 -218 458 -5.7962 0.8144 1.7600 -218 459 -5.7482 0.8075 1.7600 -218 460 -5.7012 0.7987 1.7600 -218 461 -5.6558 0.7882 1.7600 -218 462 -5.6113 0.7744 1.7600 -218 463 -5.5684 0.7577 1.7600 -218 464 -5.5294 0.7381 1.7600 -218 465 -5.4778 0.7249 1.7600 -218 466 -5.4467 0.7000 1.7600 -218 467 -5.4151 0.6822 1.7600 -218 468 -5.3905 0.6637 1.7600 -218 469 -5.3597 0.6452 1.7600 -218 470 -5.3162 0.6337 1.7600 -218 471 -5.2462 0.6267 1.7600 -218 472 -5.1953 0.6232 1.7600 -218 473 -5.1434 0.6241 1.7600 -218 474 -5.0921 0.6295 1.7600 -218 475 -5.0434 0.6358 1.7600 -218 476 -4.9978 0.6368 1.7600 -218 477 -4.9543 0.6294 1.7600 -218 478 -4.9093 0.6157 1.7600 -218 479 -4.8622 0.5994 1.7600 -218 480 -4.8139 0.5806 1.7600 -218 481 -4.7651 0.5583 1.7600 -218 482 -4.7180 0.5328 1.7600 -218 483 -4.6747 0.5082 1.7600 -218 484 -4.6324 0.4878 1.7600 -218 485 -4.5885 0.4722 1.7600 -218 486 -4.5410 0.4598 1.7600 -218 487 -4.5012 0.4432 1.7600 -218 488 -4.4614 0.4247 1.7600 -218 489 -4.4061 0.4189 1.7600 -218 490 -4.3509 0.4242 1.7600 -218 491 -4.2964 0.4364 1.7600 -218 492 -4.2431 0.4510 1.7600 -218 493 -4.1930 0.4618 1.7600 -218 494 -4.1417 0.4711 1.7600 -218 495 -4.0914 0.4714 1.7600 -218 496 -4.0495 0.4716 1.7600 -218 497 -3.9999 0.4717 1.7600 -218 498 -3.9503 0.4722 1.7600 -218 499 -3.8988 0.4690 1.7600 -218 500 -3.8465 0.4613 1.7600 -218 501 -3.7914 0.4500 1.7600 -218 502 -3.7333 0.4308 1.7600 -218 503 -3.6780 0.4129 1.7600 -218 504 -3.6205 0.3939 1.7600 -218 505 -3.5663 0.3852 1.7600 -218 506 -3.5122 0.3861 1.7600 -218 507 -3.4572 0.3903 1.7600 -218 508 -3.4004 0.3949 1.7600 -218 509 -3.3417 0.4032 1.7600 -218 510 -3.2820 0.4169 1.7600 -218 511 -3.2239 0.4342 1.7600 -218 512 -3.1654 0.4500 1.7600 -218 513 -3.1063 0.4616 1.7600 -218 514 -3.0422 0.4679 1.7600 -218 515 -2.9828 0.4625 1.7600 -218 516 -2.9254 0.4532 1.7600 -218 517 -2.8690 0.4439 1.7600 -218 518 -2.8133 0.4329 1.7600 -218 519 -2.7581 0.4207 1.7600 -218 520 -2.7028 0.4020 1.7600 -218 521 -2.6442 0.3790 1.7600 -218 522 -2.5816 0.3545 1.7600 -218 523 -2.5184 0.3339 1.7600 -218 524 -2.4546 0.3230 1.7600 -218 525 -2.3887 0.3220 1.7600 -218 526 -2.3232 0.3263 1.7600 -218 527 -2.2605 0.3317 1.7600 -218 528 -2.2000 0.3401 1.7600 -218 529 -2.1379 0.3544 1.7600 -218 530 -2.0725 0.3736 1.7600 -218 531 -1.9996 0.3930 1.7600 -218 532 -1.9269 0.4097 1.7600 -218 533 -1.8543 0.4133 1.7600 -218 534 -1.7855 0.4078 1.7600 -218 535 -1.7215 0.3992 1.7600 -218 536 -1.6586 0.3891 1.7600 -218 537 -1.5954 0.3787 1.7600 -218 538 -1.5333 0.3652 1.7600 -218 539 -1.4719 0.3475 1.7600 -218 540 -1.4085 0.3269 1.7600 -218 541 -1.3425 0.3055 1.7600 -218 542 -1.2751 0.2875 1.7600 -218 543 -1.2104 0.2792 1.7600 -218 544 -1.1482 0.2789 1.7600 -218 545 -1.0846 0.2813 1.7600 -218 546 -1.0172 0.2852 1.7600 -218 547 -0.9468 0.2931 1.7600 -218 548 -0.8771 0.3077 1.7600 -218 549 -0.8062 0.3280 1.7600 -218 550 -0.7334 0.3487 1.7600 -218 551 -0.6624 0.3651 1.7600 -218 552 -0.5969 0.3697 1.7600 -218 553 -0.5342 0.3654 1.7600 -218 554 -0.4708 0.3585 1.7600 -218 555 -0.4070 0.3519 1.7600 -218 556 -0.3437 0.3456 1.7600 -218 557 -0.2789 0.3374 1.7600 -218 558 -0.2130 0.3273 1.7600 -218 559 -0.1469 0.3151 1.7600 -218 560 -0.0825 0.3020 1.7600 -218 561 -0.0186 0.2911 1.7600 -218 562 0.0441 0.2896 1.7600 -218 563 0.1067 0.2983 1.7600 -218 564 0.1697 0.3112 1.7600 -218 565 0.2309 0.3248 1.7600 -218 566 0.2947 0.3402 1.7600 -218 567 0.3592 0.3573 1.7600 -218 568 0.4208 0.3806 1.7600 -218 569 0.4799 0.4075 1.7600 -218 570 0.5382 0.4272 1.7600 -218 571 0.5947 0.4333 1.7600 -218 572 0.6499 0.4306 1.7600 -218 573 0.7066 0.4248 1.7600 -218 574 0.7664 0.4189 1.7600 -218 575 0.8277 0.4112 1.7600 -218 576 0.8888 0.3999 1.7600 -218 577 0.9499 0.3863 1.7600 -218 578 1.0123 0.3724 1.7600 -218 579 1.0746 0.3566 1.7600 -218 580 1.1354 0.3404 1.7600 -218 581 1.1962 0.3275 1.7600 -218 582 1.2576 0.3249 1.7600 -218 583 1.3199 0.3299 1.7600 -218 584 1.3824 0.3363 1.7600 -218 585 1.4456 0.3446 1.7600 -218 586 1.5103 0.3580 1.7600 -218 587 1.5740 0.3791 1.7600 -218 588 1.6365 0.4041 1.7600 -218 589 1.6980 0.4237 1.7600 -218 590 1.7580 0.4356 1.7600 -218 591 1.8155 0.4366 1.7600 -218 592 1.8710 0.4298 1.7600 -218 593 1.9264 0.4216 1.7600 -218 594 1.9824 0.4141 1.7600 -218 595 2.0394 0.4063 1.7600 -218 596 2.0961 0.3963 1.7600 -218 597 2.1532 0.3844 1.7600 -218 598 2.2124 0.3685 1.7600 -218 599 2.2732 0.3485 1.7600 -218 600 2.3334 0.3299 1.7600 -218 601 2.3929 0.3214 1.7600 -218 602 2.4535 0.3238 1.7600 -218 603 2.5161 0.3367 1.7600 -218 604 2.5757 0.3415 1.7600 -218 605 2.6360 0.3479 1.7600 -218 606 2.6983 0.3586 1.7600 -218 607 2.7627 0.3725 1.7600 -218 608 2.8284 0.3841 1.7600 -218 609 2.8939 0.3927 1.7600 -218 610 2.9586 0.3966 1.7600 -218 611 3.0218 0.3925 1.7600 -218 612 3.0824 0.3826 1.7600 -218 613 3.1411 0.3718 1.7600 -218 614 3.1989 0.3617 1.7600 -218 615 3.2556 0.3511 1.7600 -218 616 3.3114 0.3391 1.7600 -218 617 3.3691 0.3272 1.7600 -218 618 3.4316 0.3144 1.7600 -218 619 3.4966 0.3012 1.7600 -218 620 3.5607 0.2939 1.7600 -218 621 3.6233 0.2968 1.7600 -218 622 3.6849 0.3039 1.7600 -218 623 3.7445 0.3104 1.7600 -218 624 3.7974 0.3161 1.7600 -218 625 3.8530 0.3233 1.7600 -218 626 3.9105 0.3342 1.7600 -218 627 3.9724 0.3480 1.7600 -218 628 4.0360 0.3624 1.7600 -218 629 4.0973 0.3733 1.7600 -218 630 4.1570 0.3745 1.7600 -218 631 4.2130 0.3684 1.7600 -218 632 4.2679 0.3589 1.7600 -218 633 4.3220 0.3483 1.7600 -218 634 4.3759 0.3372 1.7600 -218 635 4.4287 0.3204 1.7600 -218 636 4.4820 0.2995 1.7600 -218 637 4.5408 0.2752 1.7600 -218 638 4.6062 0.2478 1.7600 -218 639 4.6737 0.2201 1.7600 -218 640 4.7391 0.1975 1.7600 -218 641 4.8030 0.1841 1.7600 -218 642 4.8661 0.1789 1.7600 -218 643 4.9278 0.1770 1.7600 -218 644 4.9768 0.1835 1.7600 -218 645 5.0252 0.1961 1.7600 -218 646 5.0762 0.2094 1.7600 -218 647 5.1323 0.2237 1.7600 -218 648 5.1929 0.2364 1.7600 -218 649 5.2536 0.2440 1.7600 -218 650 5.3165 0.2441 1.7600 -218 651 5.3786 0.2383 1.7600 -218 652 5.4389 0.2320 1.7600 -218 653 5.4914 0.2230 1.7600 -218 654 5.5441 0.2140 1.7600 -218 655 5.5990 0.2049 1.7600 -218 656 5.6594 0.1942 1.7600 -218 657 5.7262 0.1815 1.7600 -218 658 5.7958 0.1701 1.7600 -218 659 5.8641 0.1655 1.7600 -218 660 5.9306 0.1677 1.7600 -219 535 -7.6863 2.2171 1.7600 -219 536 -7.6390 2.2102 1.7600 -219 537 -7.5922 2.2055 1.7600 -219 538 -7.5436 2.2022 1.7600 -219 539 -7.4923 2.1989 1.7600 -219 540 -7.4389 2.1961 1.7600 -219 541 -7.3834 2.1940 1.7600 -219 542 -7.3264 2.1944 1.7600 -219 543 -7.2681 2.1971 1.7600 -219 544 -7.2097 2.2004 1.7600 -219 545 -7.1515 2.2014 1.7600 -219 546 -7.0957 2.1988 1.7600 -219 547 -7.0424 2.1939 1.7600 -219 548 -6.9899 2.1863 1.7600 -219 549 -6.9383 2.1762 1.7600 -219 550 -6.8871 2.1643 1.7600 -219 551 -6.8362 2.1516 1.7600 -219 552 -6.7863 2.1378 1.7600 -219 553 -6.7368 2.1220 1.7600 -219 554 -6.6888 2.1045 1.7600 -219 555 -6.6437 2.0868 1.7600 -219 556 -6.6007 2.0714 1.7600 -219 557 -6.5681 2.0663 1.7600 -219 558 -6.5377 2.0470 1.7600 -219 559 -6.4931 2.0310 1.7600 -219 560 -6.4578 2.0126 1.7600 -219 561 -6.3970 2.0084 1.7600 -219 562 -6.3453 1.9966 1.7600 -219 563 -6.2913 1.9871 1.7600 -219 564 -6.2382 1.9812 1.7600 -219 565 -6.1863 1.9777 1.7600 -219 566 -6.1347 1.9723 1.7600 -219 567 -6.0847 1.9656 1.7600 -219 568 -6.0372 1.9576 1.7600 -219 569 -5.9922 1.9471 1.7600 -219 570 -5.9475 1.9349 1.7600 -219 571 -5.9031 1.9215 1.7600 -219 572 -5.8596 1.9068 1.7600 -219 573 -5.8173 1.8917 1.7600 -219 574 -5.7803 1.8664 1.7600 -219 575 -5.7311 1.8574 1.7600 -219 576 -5.6923 1.8368 1.7600 -219 577 -5.6572 1.8152 1.7600 -219 578 -5.6248 1.7955 1.7600 -219 579 -5.5923 1.7721 1.7600 -219 580 -5.5672 1.7570 1.7600 -219 581 -5.5217 1.7259 1.7600 -219 582 -5.4896 1.7054 1.7600 -219 583 -5.4670 1.6941 1.7600 -219 584 -5.4293 1.6757 1.7600 -219 585 -5.3924 1.6640 1.7600 -219 586 -5.3555 1.6514 1.7600 -219 587 -5.3140 1.6486 1.7600 -219 588 -5.2691 1.6460 1.7600 -219 589 -5.2232 1.6418 1.7600 -219 590 -5.1770 1.6355 1.7600 -219 591 -5.1271 1.6291 1.7600 -219 592 -5.0781 1.6172 1.7600 -219 593 -5.0246 1.6026 1.7600 -219 594 -4.9703 1.5864 1.7600 -219 595 -4.9096 1.5690 1.7600 -219 596 -4.8545 1.5511 1.7600 -219 597 -4.7993 1.5332 1.7600 -219 598 -4.7441 1.5152 1.7600 -219 599 -4.6861 1.4991 1.7600 -219 600 -4.6189 1.4852 1.7600 -219 601 -4.5645 1.4803 1.7600 -219 602 -4.5079 1.4709 1.7600 -219 603 -4.4496 1.4627 1.7600 -219 604 -4.3904 1.4563 1.7600 -219 605 -4.3298 1.4528 1.7600 -219 606 -4.2679 1.4526 1.7600 -219 607 -4.2043 1.4547 1.7600 -219 608 -4.1416 1.4575 1.7600 -219 609 -4.0764 1.4579 1.7600 -219 610 -4.0083 1.4559 1.7600 -219 611 -3.9431 1.4520 1.7600 -219 612 -3.8798 1.4481 1.7600 -219 613 -3.8163 1.4453 1.7600 -219 614 -3.7534 1.4433 1.7600 -219 615 -3.6802 1.4447 1.7600 -219 616 -3.6189 1.4388 1.7600 -219 617 -3.5572 1.4347 1.7600 -219 618 -3.4996 1.4323 1.7600 -219 619 -3.4431 1.4337 1.7600 -219 620 -3.3837 1.4344 1.7600 -219 621 -3.3298 1.4399 1.7600 -219 622 -3.2755 1.4460 1.7600 -219 623 -3.2235 1.4546 1.7600 -219 624 -3.1682 1.4615 1.7600 -219 625 -3.1083 1.4691 1.7600 -219 626 -3.0442 1.4809 1.7600 -219 627 -2.9828 1.4874 1.7600 -219 628 -2.9211 1.5005 1.7600 -219 629 -2.8550 1.5109 1.7600 -219 630 -2.7886 1.5185 1.7600 -219 631 -2.7249 1.5207 1.7600 -219 632 -2.6644 1.5188 1.7600 -219 633 -2.6055 1.5149 1.7600 -219 634 -2.5453 1.5096 1.7600 -219 635 -2.4796 1.5002 1.7600 -219 636 -2.4082 1.4861 1.7600 -219 637 -2.3292 1.4733 1.7600 -219 638 -2.2293 1.4632 1.7600 -219 639 -2.1312 1.4588 1.7600 -219 640 -2.0559 1.4601 1.7600 -219 641 -1.9858 1.4644 1.7600 -219 642 -1.9137 1.4719 1.7600 -219 643 -1.8416 1.4834 1.7600 -219 644 -1.7661 1.4976 1.7600 -219 645 -1.6945 1.5112 1.7600 -219 646 -1.6246 1.5203 1.7600 -219 647 -1.5498 1.5231 1.7600 -219 648 -1.4777 1.5205 1.7600 -219 649 -1.4181 1.5153 1.7600 -219 650 -1.3702 1.5093 1.7600 -219 651 -1.3227 1.4971 1.7600 -219 652 -1.2777 1.4824 1.7600 -219 653 -1.2250 1.4591 1.7600 -219 654 -1.1676 1.4270 1.7600 -219 655 -1.1166 1.3965 1.7600 -219 656 -1.0619 1.3814 1.7600 -219 657 -1.0064 1.3727 1.7600 -219 658 -0.9513 1.3680 1.7600 -219 659 -0.8927 1.3644 1.7600 -219 660 -0.8319 1.3635 1.7600 -219 661 -0.7692 1.3640 1.7600 -219 662 -0.7070 1.3680 1.7600 -219 663 -0.6444 1.3730 1.7600 -219 664 -0.5826 1.3748 1.7600 -219 665 -0.5221 1.3727 1.7600 -219 666 -0.4603 1.3704 1.7600 -219 667 -0.3952 1.3689 1.7600 -219 668 -0.3273 1.3677 1.7600 -219 669 -0.2599 1.3684 1.7600 -219 670 -0.1961 1.3719 1.7600 -219 671 -0.1323 1.3750 1.7600 -219 672 -0.0696 1.3798 1.7600 -219 673 -0.0083 1.3884 1.7600 -219 674 0.0542 1.3985 1.7600 -219 675 0.1205 1.4062 1.7600 -219 676 0.1856 1.4144 1.7600 -219 677 0.2482 1.4247 1.7600 -219 678 0.3061 1.4388 1.7600 -219 679 0.3637 1.4558 1.7600 -219 680 0.4244 1.4720 1.7600 -219 681 0.4852 1.4859 1.7600 -219 682 0.5453 1.4954 1.7600 -219 683 0.6058 1.4984 1.7600 -219 684 0.6680 1.4945 1.7600 -219 685 0.7302 1.4871 1.7600 -219 686 0.7900 1.4775 1.7600 -219 687 0.8481 1.4641 1.7600 -219 688 0.9062 1.4466 1.7600 -219 689 0.9627 1.4304 1.7600 -219 690 1.0306 1.4248 1.7600 -219 691 1.0857 1.4193 1.7600 -219 692 1.1480 1.4200 1.7600 -219 693 1.2076 1.4166 1.7600 -219 694 1.2652 1.4150 1.7600 -219 695 1.3201 1.4155 1.7600 -219 696 1.3779 1.4174 1.7600 -219 697 1.4385 1.4302 1.7600 -219 698 1.4985 1.4421 1.7600 -219 699 1.5668 1.4615 1.7600 -219 700 1.6268 1.4615 1.7600 -219 701 1.6877 1.4616 1.7600 -219 702 1.7482 1.4594 1.7600 -219 703 1.8095 1.4562 1.7600 -219 704 1.8727 1.4515 1.7600 -219 705 1.9349 1.4438 1.7600 -219 706 1.9941 1.4325 1.7600 -219 707 2.0538 1.4234 1.7600 -219 708 2.1115 1.4288 1.7600 -219 709 2.1712 1.4258 1.7600 -219 710 2.2302 1.4252 1.7600 -219 711 2.2901 1.4264 1.7600 -219 712 2.3522 1.4308 1.7600 -219 713 2.4146 1.4394 1.7600 -219 714 2.4777 1.4509 1.7600 -219 715 2.5417 1.4642 1.7600 -219 716 2.6051 1.4766 1.7600 -219 717 2.6681 1.4855 1.7600 -219 718 2.7310 1.4888 1.7600 -219 719 2.7940 1.4885 1.7600 -219 720 2.8570 1.4871 1.7600 -219 721 2.9181 1.4849 1.7600 -219 722 2.9786 1.4807 1.7600 -219 723 3.0410 1.4722 1.7600 -219 724 3.1052 1.4597 1.7600 -219 725 3.1680 1.4487 1.7600 -219 726 3.2298 1.4434 1.7600 -219 727 3.2930 1.4421 1.7600 -219 728 3.3561 1.4426 1.7600 -219 729 3.4168 1.4446 1.7600 -219 730 3.4750 1.4465 1.7600 -219 731 3.5352 1.4477 1.7600 -219 732 3.6020 1.4506 1.7600 -219 733 3.6748 1.4570 1.7600 -219 734 3.7467 1.4651 1.7600 -219 735 3.8189 1.4739 1.7600 -219 736 3.8936 1.4827 1.7600 -219 737 3.9644 1.4891 1.7600 -219 738 4.0316 1.4929 1.7600 -219 739 4.0964 1.4951 1.7600 -219 740 4.1639 1.4981 1.7600 -219 741 4.2354 1.5018 1.7600 -219 742 4.3118 1.4997 1.7600 -219 743 4.3846 1.4980 1.7600 -219 744 4.4580 1.4965 1.7600 -219 745 4.5309 1.4991 1.7600 -219 746 4.6005 1.5052 1.7600 -219 747 4.6664 1.5095 1.7600 -219 748 4.7314 1.5084 1.7600 -219 749 4.7955 1.5041 1.7600 -219 750 4.8601 1.5016 1.7600 -219 751 4.9298 1.5039 1.7600 -219 752 5.0015 1.5089 1.7600 -219 753 5.0736 1.5137 1.7600 -219 754 5.1468 1.5145 1.7600 -219 755 5.2167 1.5116 1.7600 -219 756 5.2813 1.5063 1.7600 -219 757 5.3430 1.5002 1.7600 -219 758 5.4079 1.4943 1.7600 -219 759 5.4817 1.4884 1.7600 -219 760 5.5661 1.4829 1.7600 -219 761 5.6455 1.4780 1.7600 -219 762 5.7229 1.4747 1.7600 -219 763 5.8016 1.4748 1.7600 -219 764 5.8793 1.4783 1.7600 -219 765 5.9511 1.4831 1.7600 -220 949 -7.6958 1.6255 1.7600 -220 950 -7.6339 1.6322 1.7600 -220 951 -7.5717 1.6575 1.7600 -220 952 -7.5217 1.6868 1.7600 -220 953 -7.5048 1.6888 1.7600 -220 954 -7.4443 1.6956 1.7600 -220 955 -7.3930 1.6972 1.7600 -220 956 -7.3375 1.6905 1.7600 -220 957 -7.2693 1.6760 1.7600 -220 958 -7.2121 1.6627 1.7600 -220 959 -7.1521 1.6439 1.7600 -220 960 -7.1212 1.6059 1.7600 -220 961 -7.0592 1.5941 1.7600 -220 962 -6.9994 1.5716 1.7600 -220 963 -6.9536 1.5508 1.7600 -220 964 -6.9064 1.5324 1.7600 -220 965 -6.8583 1.5147 1.7600 -220 966 -6.8101 1.4989 1.7600 -220 967 -6.7595 1.4867 1.7600 -220 968 -6.7057 1.4793 1.7600 -220 969 -6.6520 1.4774 1.7600 -220 970 -6.6006 1.4806 1.7600 -220 971 -6.5460 1.4882 1.7600 -220 972 -6.5024 1.4935 1.7600 -220 973 -6.4575 1.4962 1.7600 -220 974 -6.4118 1.4936 1.7600 -220 975 -6.3658 1.4877 1.7600 -220 976 -6.3204 1.4771 1.7600 -220 977 -6.2749 1.4608 1.7600 -220 978 -6.2288 1.4398 1.7600 -220 979 -6.1833 1.4163 1.7600 -220 980 -6.1402 1.3929 1.7600 -220 981 -6.1020 1.3715 1.7600 -220 982 -6.0651 1.3537 1.7600 -220 983 -6.0275 1.3386 1.7600 -220 984 -5.9904 1.3285 1.7600 -220 985 -5.9551 1.3223 1.7600 -220 986 -5.9187 1.3161 1.7600 -220 987 -5.8798 1.3109 1.7600 -220 988 -5.8390 1.3099 1.7600 -220 989 -5.7969 1.3132 1.7600 -220 990 -5.7530 1.3202 1.7600 -220 991 -5.7074 1.3296 1.7600 -220 992 -5.6677 1.3471 1.7600 -220 993 -5.6252 1.3529 1.7600 -220 994 -5.5819 1.3660 1.7600 -220 995 -5.5393 1.3724 1.7600 -220 996 -5.4957 1.3796 1.7600 -220 997 -5.4592 1.3807 1.7600 -220 998 -5.4226 1.3763 1.7600 -220 999 -5.3840 1.3673 1.7600 -220 1000 -5.3448 1.3534 1.7600 -220 1001 -5.3053 1.3341 1.7600 -220 1002 -5.2669 1.3116 1.7600 -220 1003 -5.2301 1.2821 1.7600 -220 1004 -5.1949 1.2654 1.7600 -220 1005 -5.1620 1.2507 1.7600 -220 1006 -5.1308 1.2402 1.7600 -220 1007 -5.1006 1.2274 1.7600 -220 1008 -5.0704 1.2147 1.7600 -220 1009 -5.0409 1.2055 1.7600 -220 1010 -5.0125 1.2005 1.7600 -220 1011 -4.9840 1.1994 1.7600 -220 1012 -4.9546 1.2021 1.7600 -220 1013 -4.9240 1.2072 1.7600 -220 1014 -4.8922 1.2137 1.7600 -220 1015 -4.8592 1.2244 1.7600 -220 1016 -4.8209 1.2310 1.7600 -220 1017 -4.7847 1.2372 1.7600 -220 1018 -4.7486 1.2412 1.7600 -220 1019 -4.7104 1.2375 1.7600 -220 1020 -4.6664 1.2317 1.7600 -220 1021 -4.6264 1.2227 1.7600 -220 1022 -4.5869 1.2100 1.7600 -220 1023 -4.5468 1.1946 1.7600 -220 1024 -4.5065 1.1764 1.7600 -220 1025 -4.4672 1.1569 1.7600 -220 1026 -4.4290 1.1390 1.7600 -220 1027 -4.3926 1.1265 1.7600 -220 1028 -4.3551 1.1183 1.7600 -220 1029 -4.3145 1.1143 1.7600 -220 1030 -4.2711 1.1147 1.7600 -220 1031 -4.2276 1.1182 1.7600 -220 1032 -4.1829 1.1256 1.7600 -220 1033 -4.1373 1.1391 1.7600 -220 1034 -4.0910 1.1555 1.7600 -220 1035 -4.0443 1.1717 1.7600 -220 1036 -3.9989 1.1861 1.7600 -220 1037 -3.9568 1.1967 1.7600 -220 1038 -3.9155 1.2028 1.7600 -220 1039 -3.8741 1.2032 1.7600 -220 1040 -3.8358 1.1988 1.7600 -220 1041 -3.7994 1.1881 1.7600 -220 1042 -3.7621 1.1727 1.7600 -220 1043 -3.7233 1.1569 1.7600 -220 1044 -3.6839 1.1401 1.7600 -220 1045 -3.6434 1.1229 1.7600 -220 1046 -3.6029 1.1080 1.7600 -220 1047 -3.5635 1.0959 1.7600 -220 1048 -3.5229 1.0876 1.7600 -220 1049 -3.4827 1.0851 1.7600 -220 1050 -3.4448 1.0859 1.7600 -220 1051 -3.4084 1.0903 1.7600 -220 1052 -3.3727 1.1005 1.7600 -220 1053 -3.3384 1.1172 1.7600 -220 1054 -3.3045 1.1369 1.7600 -220 1055 -3.2692 1.1582 1.7600 -220 1056 -3.2333 1.1800 1.7600 -220 1057 -3.1977 1.1997 1.7600 -220 1058 -3.1594 1.2154 1.7600 -220 1059 -3.1172 1.2247 1.7600 -220 1060 -3.0741 1.2292 1.7600 -220 1061 -3.0315 1.2294 1.7600 -220 1062 -2.9881 1.2257 1.7600 -220 1063 -2.9423 1.2173 1.7600 -220 1064 -2.8939 1.2037 1.7600 -220 1065 -2.8434 1.1890 1.7600 -220 1066 -2.7916 1.1764 1.7600 -220 1067 -2.7393 1.1686 1.7600 -220 1068 -2.6864 1.1642 1.7600 -220 1069 -2.6323 1.1631 1.7600 -220 1070 -2.5800 1.1652 1.7600 -220 1071 -2.5297 1.1695 1.7600 -220 1072 -2.4808 1.1776 1.7600 -220 1073 -2.4322 1.1904 1.7600 -220 1074 -2.3822 1.2078 1.7600 -220 1075 -2.3289 1.2271 1.7600 -220 1076 -2.2797 1.2414 1.7600 -220 1077 -2.2322 1.2490 1.7600 -220 1078 -2.1819 1.2509 1.7600 -220 1079 -2.1297 1.2510 1.7600 -220 1080 -2.0772 1.2500 1.7600 -220 1081 -2.0252 1.2454 1.7600 -220 1082 -1.9705 1.2350 1.7600 -220 1083 -1.9145 1.2193 1.7600 -220 1084 -1.8559 1.2019 1.7600 -220 1085 -1.8000 1.1877 1.7600 -220 1086 -1.7451 1.1776 1.7600 -220 1087 -1.6884 1.1704 1.7600 -220 1088 -1.6324 1.1661 1.7600 -220 1089 -1.5784 1.1628 1.7600 -220 1090 -1.5255 1.1621 1.7600 -220 1091 -1.4729 1.1660 1.7600 -220 1092 -1.4188 1.1748 1.7600 -220 1093 -1.3658 1.1843 1.7600 -220 1094 -1.3179 1.1916 1.7600 -220 1095 -1.2719 1.1957 1.7600 -220 1096 -1.2256 1.1962 1.7600 -220 1097 -1.1811 1.1936 1.7600 -220 1098 -1.1364 1.1884 1.7600 -220 1099 -1.0877 1.1800 1.7600 -220 1100 -1.0338 1.1693 1.7600 -220 1101 -0.9756 1.1560 1.7600 -220 1102 -0.9144 1.1388 1.7600 -220 1103 -0.8550 1.1219 1.7600 -220 1104 -0.7988 1.1090 1.7600 -220 1105 -0.7443 1.1001 1.7600 -220 1106 -0.6908 1.0939 1.7600 -220 1107 -0.6348 1.0880 1.7600 -220 1108 -0.5767 1.0827 1.7600 -220 1109 -0.5204 1.0809 1.7600 -220 1110 -0.4680 1.0838 1.7600 -220 1111 -0.4165 1.0889 1.7600 -220 1112 -0.3661 1.0947 1.7600 -220 1113 -0.3168 1.0972 1.7600 -220 1114 -0.2674 1.0971 1.7600 -220 1115 -0.2158 1.0951 1.7600 -220 1116 -0.1604 1.0906 1.7600 -220 1117 -0.1018 1.0845 1.7600 -220 1118 -0.0420 1.0749 1.7600 -220 1119 0.0182 1.0636 1.7600 -220 1120 0.0781 1.0527 1.7600 -220 1121 0.1365 1.0436 1.7600 -220 1122 0.1902 1.0365 1.7600 -220 1123 0.2432 1.0353 1.7600 -220 1124 0.2982 1.0371 1.7600 -220 1125 0.3547 1.0404 1.7600 -220 1126 0.4110 1.0476 1.7600 -220 1127 0.4676 1.0593 1.7600 -220 1128 0.5240 1.0734 1.7600 -220 1129 0.5783 1.0843 1.7600 -220 1130 0.6293 1.0920 1.7600 -220 1131 0.6796 1.0982 1.7600 -220 1132 0.7298 1.1043 1.7600 -220 1133 0.7824 1.1113 1.7600 -220 1134 0.8337 1.1142 1.7600 -220 1135 0.8917 1.1121 1.7600 -220 1136 0.9511 1.1058 1.7600 -220 1137 1.0107 1.0952 1.7600 -220 1138 1.0691 1.0832 1.7600 -220 1139 1.1303 1.0707 1.7600 -220 1140 1.1896 1.0627 1.7600 -220 1141 1.2499 1.0559 1.7600 -220 1142 1.3078 1.0525 1.7600 -220 1143 1.3663 1.0551 1.7600 -220 1144 1.4232 1.0598 1.7600 -220 1145 1.4773 1.0714 1.7600 -220 1146 1.5333 1.0864 1.7600 -220 1147 1.5877 1.1036 1.7600 -220 1148 1.6439 1.1169 1.7600 -220 1149 1.6968 1.1262 1.7600 -220 1150 1.7537 1.1279 1.7600 -220 1151 1.8089 1.1248 1.7600 -220 1152 1.8634 1.1175 1.7600 -220 1153 1.9222 1.1051 1.7600 -220 1154 1.9846 1.0883 1.7600 -220 1155 2.0459 1.0663 1.7600 -220 1156 2.1030 1.0499 1.7600 -220 1157 2.1506 1.0404 1.7600 -220 1158 2.1971 1.0389 1.7600 -220 1159 2.2493 1.0377 1.7600 -220 1160 2.3010 1.0373 1.7600 -220 1161 2.3545 1.0418 1.7600 -220 1162 2.4100 1.0519 1.7600 -220 1163 2.4645 1.0669 1.7600 -220 1164 2.5228 1.0847 1.7600 -220 1165 2.5771 1.0996 1.7600 -220 1166 2.6261 1.1142 1.7600 -220 1167 2.6783 1.1230 1.7600 -220 1168 2.7288 1.1310 1.7600 -220 1169 2.7774 1.1362 1.7600 -220 1170 2.8248 1.1370 1.7600 -220 1171 2.8739 1.1341 1.7600 -220 1172 2.9251 1.1285 1.7600 -220 1173 2.9810 1.1230 1.7600 -220 1174 3.0347 1.1213 1.7600 -220 1175 3.0860 1.1225 1.7600 -220 1176 3.1385 1.1290 1.7600 -220 1177 3.1885 1.1391 1.7600 -220 1178 3.2385 1.1498 1.7600 -220 1179 3.2918 1.1641 1.7600 -220 1180 3.3460 1.1800 1.7600 -220 1181 3.4019 1.1970 1.7600 -220 1182 3.4509 1.2092 1.7600 -220 1183 3.4934 1.2192 1.7600 -220 1184 3.5341 1.2236 1.7600 -220 1185 3.5806 1.2264 1.7600 -220 1186 3.6276 1.2266 1.7600 -220 1187 3.6762 1.2241 1.7600 -220 1188 3.7243 1.2158 1.7600 -220 1189 3.7765 1.2001 1.7600 -220 1190 3.8320 1.1814 1.7600 -220 1191 3.8892 1.1605 1.7600 -220 1192 3.9447 1.1465 1.7600 -220 1193 4.0016 1.1371 1.7600 -220 1194 4.0555 1.1320 1.7600 -220 1195 4.1105 1.1287 1.7600 -220 1196 4.1663 1.1252 1.7600 -220 1197 4.2241 1.1285 1.7600 -220 1198 4.2835 1.1359 1.7600 -220 1199 4.3494 1.1467 1.7600 -220 1200 4.4318 1.1580 1.7600 -220 1201 4.5227 1.1667 1.7600 -220 1202 4.6055 1.1711 1.7600 -220 1203 4.6714 1.1699 1.7600 -220 1204 4.7306 1.1668 1.7600 -220 1205 4.7852 1.1605 1.7600 -220 1206 4.8429 1.1514 1.7600 -220 1207 4.8996 1.1370 1.7600 -220 1208 4.9601 1.1200 1.7600 -220 1209 5.0330 1.1036 1.7600 -220 1210 5.0981 1.0957 1.7600 -220 1211 5.1576 1.0924 1.7600 -220 1212 5.2152 1.0951 1.7600 -220 1213 5.2726 1.0999 1.7600 -220 1214 5.3254 1.1075 1.7600 -220 1215 5.3719 1.1198 1.7600 -220 1216 5.4194 1.1404 1.7600 -220 1217 5.4713 1.1639 1.7600 -220 1218 5.5363 1.1855 1.7600 -220 1219 5.5994 1.2013 1.7600 -220 1220 5.6566 1.2083 1.7600 -220 1221 5.7122 1.2151 1.7600 -220 1222 5.7550 1.2175 1.7600 -220 1223 5.7960 1.2177 1.7600 -220 1224 5.8438 1.2135 1.7600 -220 1225 5.8993 1.2066 1.7600 diff --git a/Utest/testGetBasename.cpp b/Utest/testGetBasename.cpp index 990a4d485130f90538ddb85dd46b7b41e0516cb7..9e099e20eea7b2bc37162654c460ffcaebc95f3f 100644 --- a/Utest/testGetBasename.cpp +++ b/Utest/testGetBasename.cpp @@ -1,7 +1,7 @@ #include<cstdlib> #include "../Analysis.h" -OutputHandler* Log; +extern OutputHandler* Log; int testGetBasename() { diff --git a/Utest/testGetFilename.cpp b/Utest/testGetFilename.cpp index 36a34565b40ecc80711c4b9f5bb371686c586b84..2aa0d99f0b723247205ded7e482e3836ae3ddaa7 100644 --- a/Utest/testGetFilename.cpp +++ b/Utest/testGetFilename.cpp @@ -1,7 +1,7 @@ #include<cstdlib> #include "../Analysis.h" -OutputHandler* Log; +extern OutputHandler* Log; int testGetFilename() { diff --git a/VoronoiDiagram.cpp b/VoronoiDiagram.cpp deleted file mode 100644 index e9e85a0ce9b7cf69b84309e157bb4f3c35dbd528..0000000000000000000000000000000000000000 --- a/VoronoiDiagram.cpp +++ /dev/null @@ -1,502 +0,0 @@ -/** - * \file VoronoiDiagram.cpp - * \date Oct 10, 2014 - * \version v0.6 - * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. - * - * \section License - * This file is part of JuPedSim. - * - * JuPedSim is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * any later version. - * - * JuPedSim 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 Lesser General Public License - * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. - * - * \section Description - * The VoronoiDiagram class define functions used to calculate Voronoi diagrams - * from trajectories. - * - * - **/ - - - - -#include <iostream> -#include "VoronoiDiagram.h" - - -using namespace std; -using namespace boost::geometry; - -VoronoiDiagram::VoronoiDiagram() -{ -} - -VoronoiDiagram::~VoronoiDiagram() -{ -} - -// Traversing Voronoi edges using cell iterator. -std::vector<polygon_2d> VoronoiDiagram::getVoronoiPolygons(double *XInFrame, double *YInFrame, - double *VInFrame, int *IdInFrame, int numPedsInFrame, double Bound_Max) -{ - int XInFrame_temp[numPedsInFrame]; - int YInFrame_temp[numPedsInFrame]; - double VInFrame_temp[numPedsInFrame]; - int IdInFrame_temp[numPedsInFrame]; - - for (int i = 0; i < numPedsInFrame; i++) - { - points.push_back(point_type2((int) (XInFrame[i] + 0.5), (int) (YInFrame[i] + 0.5))); - XInFrame_temp[i] = (int) (XInFrame[i] + 0.5); - YInFrame_temp[i] = (int) (YInFrame[i] + 0.5); - VInFrame_temp[i] = VInFrame[i]; - IdInFrame_temp[i] = IdInFrame[i]; - } - - VD voronoidiagram; - construct_voronoi(points.begin(), points.end(), &voronoidiagram); - - int Ncell = 0; - std::vector<polygon_2d> polygons; - - double Bd_Box_minX = -Bound_Max; - double Bd_Box_minY = -Bound_Max; - double Bd_Box_maxX = Bound_Max; - double Bd_Box_maxY = Bound_Max; - polygon_2d boundingbox; - boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(-Bound_Max, -Bound_Max)); - boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(-Bound_Max, Bound_Max)); - boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(Bound_Max, Bound_Max)); - boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(Bound_Max, -Bound_Max)); - boost::geometry::correct(boundingbox); - - for (voronoi_diagram<double>::const_cell_iterator it = voronoidiagram.cells().begin(); - it != voronoidiagram.cells().end(); ++it) - { - polygon_2d poly; - vector<point_type2> polypts; - point_type2 pt_s; - point_type2 pt_e; - const voronoi_diagram<double>::cell_type& cell = *it; - const voronoi_diagram<double>::edge_type* edge = cell.incident_edge(); - point_type2 pt_temp; - point_type2 thispoint = retrieve_point(*it); - for (int k = 0; k < numPedsInFrame; k++) - { - if (XInFrame_temp[k] == thispoint.x() && YInFrame_temp[k] == thispoint.y()) - { - VInFrame[Ncell] = VInFrame_temp[k]; - IdInFrame[Ncell] = IdInFrame_temp[k]; - break; - } - } - XInFrame[Ncell] = thispoint.x(); - YInFrame[Ncell] = thispoint.y(); - int NumVertex = 0; - int index_end = 0; - bool infinite_s = false; - bool infinite_e = false; - // This is convenient way to iterate edges around Voronoi cell. - - do - { - if (edge->vertex0()) - { - if(edge->vertex1()) - { - if(fabs(edge->vertex0()->x()) < Bound_Max && (fabs(edge->vertex0()->y()) < Bound_Max) - &&fabs(edge->vertex1()->x()) < Bound_Max && (fabs(edge->vertex1()->y()) < Bound_Max)) - { - polypts.push_back(point_type2(edge->vertex0()->x(), edge->vertex0()->y())); - pt_temp = point_type2(edge->vertex0()->x(), edge->vertex0()->y()); - NumVertex++; - } - else if((fabs(edge->vertex0()->x()) > Bound_Max || (fabs(edge->vertex0()->y()) > Bound_Max)) - &&fabs(edge->vertex1()->x()) < Bound_Max && (fabs(edge->vertex1()->y()) < Bound_Max)) - { - pt_s = getIntersectionPoint(point_2d(edge->vertex0()->x(), edge->vertex0()->y()), point_2d(edge->vertex1()->x(), edge->vertex1()->y()), boundingbox); - polypts.push_back(point_type2(pt_s.x(), pt_s.y())); - NumVertex++; - infinite_s = true; - } - else if((fabs(edge->vertex0()->x()) < Bound_Max && (fabs(edge->vertex0()->y()) < Bound_Max)) - &&(fabs(edge->vertex1()->x()) > Bound_Max || (fabs(edge->vertex1()->y()) > Bound_Max))) - { - polypts.push_back(point_type2(edge->vertex0()->x(), edge->vertex0()->y())); - pt_e = getIntersectionPoint(point_2d(edge->vertex0()->x(), edge->vertex0()->y()), point_2d(edge->vertex1()->x(), edge->vertex1()->y()), boundingbox); - polypts.push_back(point_type2(pt_e.x(), pt_e.y())); - NumVertex+=2; - index_end = NumVertex; - infinite_e = true; - } - } - else - { - if(fabs(edge->vertex0()->x()) < Bound_Max && (fabs(edge->vertex0()->y()) < Bound_Max)) - { - polypts.push_back(point_type2(edge->vertex0()->x(), edge->vertex0()->y())); - pt_e = clip_infinite_edge(*edge, Bd_Box_minX, Bd_Box_minY, Bd_Box_maxX, - Bd_Box_maxY); - polypts.push_back(point_type2(pt_e.x(), pt_e.y())); - NumVertex+=2; - index_end = NumVertex; - infinite_e = true; - } - } - } - else - { - if(edge->vertex1()&&fabs(edge->vertex1()->x()) < Bound_Max && (fabs(edge->vertex1()->y()) < Bound_Max)) - { - pt_s = clip_infinite_edge(*edge, Bd_Box_minX, Bd_Box_minY, Bd_Box_maxX, - Bd_Box_maxY); - polypts.push_back(point_type2(pt_s.x(), pt_s.y())); - NumVertex++; - infinite_s = true; - } - } - edge = edge->next(); - - } while (edge != cell.incident_edge()); - Ncell++; - - if (infinite_s && infinite_e) - { - vector<point_type2> vertexes = add_bounding_points(pt_s, pt_e, pt_temp, - Bd_Box_minX, Bd_Box_minY, Bd_Box_maxX, Bd_Box_maxY); - - if (!vertexes.empty()) - { - polypts.reserve(polypts.size() + vertexes.size()); - polypts.insert(polypts.begin() + index_end, vertexes.begin(), - vertexes.end()); - } - } - for (int i = 0; i < (int) polypts.size(); i++) - { - boost::geometry::append(poly, point_2d(polypts[i].x(), polypts[i].y())); - } - - boost::geometry::correct(poly); - polygons.push_back(poly); - } - - return polygons; -} - -point_type2 VoronoiDiagram::retrieve_point(const cell_type& cell) -{ - source_index_type index = cell.source_index(); - return points[index]; -} - -point_type2 VoronoiDiagram::clip_infinite_edge(const edge_type& edge, double minX, double minY, - double maxX, double maxY) -{ - const cell_type& cell1 = *edge.cell(); - const cell_type& cell2 = *edge.twin()->cell(); - point_type2 origin, direction, pt; - // Infinite edges could not be created by two segment sites. - - if (cell1.contains_point() && cell2.contains_point()) - { - point_type2 p1 = retrieve_point(cell1); - point_type2 p2 = retrieve_point(cell2); - origin.x((p1.x() + p2.x()) * 0.5); - origin.y((p1.y() + p2.y()) * 0.5); - direction.x(p1.y() - p2.y()); - direction.y(p2.x() - p1.x()); - } - else - { - cout<<"A cell cannot find its center point!"<<endl; - exit(0); - } - - double side = maxX - minX; - double koef = side / (std::max)(fabs(direction.x()), fabs(direction.y())); - if (edge.vertex0() == NULL) - { - pt.x(origin.x() - direction.x() * koef); - pt.y(origin.y() - direction.y() * koef); - } - else if (edge.vertex1() == NULL) - { - pt.x(origin.x() + direction.x() * koef); - pt.y(origin.y() + direction.y() * koef); - } - - polygon_2d boundingbox; - boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(minX, minY)); - boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(minX, maxY)); - boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(maxX, maxY)); - boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(maxX, minY)); - boost::geometry::correct(boundingbox); - - pt = getIntersectionPoint(point_2d(pt.x(), pt.y()), point_2d(origin.x(), origin.y()), boundingbox); - return pt; - -} - -double VoronoiDiagram::area_triangle(const point_type2& tri_p1, const point_type2& tri_p2, const point_type2& tri_p3) -{ - double x = tri_p2.x() - tri_p1.x(); - double y = tri_p2.y() - tri_p1.y(); - - double x2 = tri_p3.x() - tri_p1.x(); - double y2 = tri_p3.y() - tri_p1.y(); - - return abs(x * y2 - x2 * y) / 2.; -} - -bool VoronoiDiagram::point_inside_triangle(const point_type2& pt, const point_type2& tri_p1, const point_type2& tri_p2, const point_type2& tri_p3) -{ - double s = area_triangle(tri_p1, tri_p2, tri_p3); - double ss = area_triangle(pt, tri_p1, tri_p2); - double ss2 = area_triangle(pt, tri_p2, tri_p3); - double ss3 = area_triangle(pt, tri_p1, tri_p3); - - if (ss + ss2 + ss3 - s > 1e-6) - { - return false; - } - return true; -} - -vector<point_type2> VoronoiDiagram::add_bounding_points(const point_type2& pt1, const point_type2& pt2, const point_type2& pt, - double minX, double minY, double maxX, double maxY) -{ - - vector<point_type2> bounding_vertex; - if (fabs(pt1.x() - pt2.x()) > J_EPS && fabs(pt1.y() - pt2.y()) > J_EPS) - { - if ((fabs(pt1.y() - maxY) < J_EPS && fabs(pt2.x() - maxX) < J_EPS) - || (fabs(pt2.y() - maxY) < J_EPS && fabs(pt1.x() - maxX) < J_EPS)) - { - point_type2 vertex(maxX, maxY); - if (point_inside_triangle(pt, vertex, pt1, pt2)) - { - bounding_vertex.push_back(point_type2(minX, maxY)); - bounding_vertex.push_back(point_type2(minX, minY)); - bounding_vertex.push_back(point_type2(maxX, minY)); - } - else - { - bounding_vertex.push_back(point_type2(maxX, maxY)); - } - } - else if ((fabs(pt1.y() - maxY) < J_EPS && fabs(pt2.x() - minX) < J_EPS) - || (fabs(pt2.y() - maxY) < J_EPS && fabs(pt1.x() - minX) < J_EPS)) - { - point_type2 vertex(minX, maxY); - if (point_inside_triangle(pt, vertex, pt1, pt2)) - { - bounding_vertex.push_back(point_type2(minX, minY)); - bounding_vertex.push_back(point_type2(maxX, minY)); - bounding_vertex.push_back(point_type2(maxX, maxY)); - } - else - { - bounding_vertex.push_back(point_type2(minX, maxY)); - } - } - else if ((fabs(pt1.y() - minY) < J_EPS && fabs(pt2.x() - minX) < J_EPS) - || (fabs(pt2.y() - minY) < J_EPS && fabs(pt1.x() - minX) < J_EPS)) - { - point_type2 vertex(minX, minY); - if (point_inside_triangle(pt, vertex, pt1, pt2)) - { - bounding_vertex.push_back(point_type2(maxX, minY)); - bounding_vertex.push_back(point_type2(maxX, maxY)); - bounding_vertex.push_back(point_type2(minX, maxY)); - } - else - { - bounding_vertex.push_back(point_type2(minX, minY)); - } - } - else if ((fabs(pt1.y() - minY) < J_EPS && fabs(pt2.x() - maxX) < J_EPS) - || (fabs(pt2.y() - minY) < J_EPS && fabs(pt1.x() - maxX) < J_EPS)) - { - point_type2 vertex(minX, minY); - if (point_inside_triangle(pt, vertex, pt1, pt2)) - { - bounding_vertex.push_back(point_type2(maxX, maxY)); - bounding_vertex.push_back(point_type2(minX, maxY)); - bounding_vertex.push_back(point_type2(minX, minY)); - } - else - { - bounding_vertex.push_back(point_type2(maxX, minY)); - } - } - else if ((fabs(pt1.y() - minY) < J_EPS && fabs(pt2.y() - maxY) < J_EPS) - || (fabs(pt2.y() - minY) < J_EPS && fabs(pt1.y() - maxY) < J_EPS)) - { - if (fabs(pt1.x() - pt2.x()) < J_EPS) - { - if (pt1.x() < pt.x()) - { - bounding_vertex.push_back(point_type2(minX, maxY)); - bounding_vertex.push_back(point_type2(minX, minY)); - } - else - { - bounding_vertex.push_back(point_type2(maxX, minY)); - bounding_vertex.push_back(point_type2(maxX, maxY)); - } - } - else - { - double tempx = pt1.x() - + (pt2.x() - pt1.x()) * (pt.y() - pt1.y()) / (pt2.y() - pt1.y()); - if (tempx < pt.x()) - { - bounding_vertex.push_back(point_type2(minX, maxY)); - bounding_vertex.push_back(point_type2(minX, minY)); - } - else - { - bounding_vertex.push_back(point_type2(maxX, minY)); - bounding_vertex.push_back(point_type2(maxX, maxY)); - } - } - } - else if ((fabs(pt1.x() - minX) < J_EPS && fabs(pt2.x() - maxX) < J_EPS) - || (fabs(pt2.x() - minX) < J_EPS && fabs(pt1.x() - maxX) < J_EPS)) - { - if (fabs(pt1.y() - pt2.y()) < J_EPS) - { - if (pt1.y() < pt.y()) - { - bounding_vertex.push_back(point_type2(minX, minY)); - bounding_vertex.push_back(point_type2(maxX, minY)); - } - else - { - bounding_vertex.push_back(point_type2(maxX, maxY)); - bounding_vertex.push_back(point_type2(minX, maxY)); - } - } - else - { - double tempy = pt1.y() - + (pt2.y() - pt1.y()) * (pt.x() - pt1.x()) / (pt2.x() - pt1.x()); - if (tempy < pt.y()) - { - bounding_vertex.push_back(point_type2(minX, minY)); - bounding_vertex.push_back(point_type2(maxX, minY)); - } - else - { - bounding_vertex.push_back(point_type2(maxX, maxY)); - bounding_vertex.push_back(point_type2(minX, maxY)); - } - } - } - } - return bounding_vertex; -} - - -//-----------In getIntersectionPoint() the edges of the square is vertical or horizontal segment-------------- -point_type2 VoronoiDiagram::getIntersectionPoint(const point_2d& pt0, const point_2d& pt1, const polygon_2d& square) -{ - vector<point_2d> pt; - segment edge0(pt0, pt1); - vector<point_2d> const& points = square.outer(); - for (vector<point_2d>::size_type i = 1; i < points.size(); ++i) - { - segment edge1(points[i], points[i-1]); - if(intersects(edge0, edge1)) - { - intersection(edge0, edge1, pt); - break; - } - } - if(pt.empty()) - { - segment edge1(points[3], points[0]); - intersection(edge0, edge1, pt); - } - point_type2 interpts(pt[0].x(), pt[0].y()); - return interpts; -} - -std::vector<polygon_2d> VoronoiDiagram::cutPolygonsWithGeometry(const std::vector<polygon_2d>& polygon, - const polygon_2d& Geometry, double* xs, double* ys) -{ - vector<polygon_2d> intersetionpolygons; - int temp = 0; - for (const auto & polygon_iterator:polygon) - { - polygon_list v; - intersection(Geometry, polygon_iterator, v); - - BOOST_FOREACH(auto & it, v) - { - if (within(point_2d(xs[temp], ys[temp]), it)) - { - //check and remove duplicates - //dispatch::unique (it); - polygon_2d simplified; - simplify(it,simplified,J_EPS); - - correct(simplified); - intersetionpolygons.push_back(simplified); - } - } - - temp++; - } - return intersetionpolygons; -} - - -std::vector<polygon_2d> VoronoiDiagram::cutPolygonsWithCircle(const std::vector<polygon_2d>& polygon, - double* xs, double* ys, double radius, int edges) -{ - std::vector<polygon_2d> intersetionpolygons; - int temp = 0; - for (const auto & polygon_iterator:polygon) - { - polygon_2d circle; - { - for (int angle = 0; angle <=edges; angle++) - { - double ptx= xs[temp] + radius * cos(angle * 2*PI / edges); - double pty= ys[temp] + radius * sin(angle * 2*PI / edges); - append(circle, make<point_2d>(ptx, pty)); - } - } - correct(circle); - - polygon_list v; - intersection(circle, polygon_iterator, v); - BOOST_FOREACH(auto & it, v) - { - if (within(point_2d(xs[temp], ys[temp]), it)) - { - //check and remove duplicates - //dispatch::unique (it); - polygon_2d simplified; - simplify(it,simplified,J_EPS); - correct(simplified); - intersetionpolygons.push_back(simplified); - } - } - temp++; - } - return intersetionpolygons; -} - diff --git a/demos/T-Junction/geometry_KO-240-050-240.xml b/demos/T-Junction/geometry_KO-240-050-240.xml index 205093119898a22a41e15d174d744889fca797e9..cb6ab53956821d0a12eb1cbf87eb407718339fda 100644 --- a/demos/T-Junction/geometry_KO-240-050-240.xml +++ b/demos/T-Junction/geometry_KO-240-050-240.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<geometry version ="0.5" caption="second life" unit="m"> +<geometry version ="0.5" caption="second life" unit="m" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:noNamespaceSchemaLocation="http://xsd.jupedsim.org/0.6/jps_geoemtry.xsd"> <rooms> <room id="0" caption="hall" zpos="0.00"> <subroom id="0" closed="0" class="subroom"> diff --git a/demos/T-Junction/ini_KO-240-050-240.xml b/demos/T-Junction/ini_KO-240-050-240.xml index 3b4cd2beb70d5af4b06d137ac873fd84c5951e14..5df5f58e1b828dc0ebda125b27db1978134d8b7e 100644 --- a/demos/T-Junction/ini_KO-240-050-240.xml +++ b/demos/T-Junction/ini_KO-240-050-240.xml @@ -1,7 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" ?> -<?xml version="1.0" encoding="UTF-8"?> - -<JPSreport project="JPS-Project" version="0.4"> +<JPSreport project="JPS-Project" version="0.6" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:noNamespaceSchemaLocation="http://xsd.jupedsim.org/0.6/jps_report.xsd"> <!-- geometry file --> <geometry file = "./geometry_KO-240-050-240.xml" /> <!-- trajectories file and format --> diff --git a/demos/bottleneck/geo_AO_300.xml b/demos/bottleneck/geo_AO_300.xml index 1abedc63a1912d27e5a52c821c58adf4b1797169..bd7cb4be0c476b86194fefaa95321b9029d11eae 100644 --- a/demos/bottleneck/geo_AO_300.xml +++ b/demos/bottleneck/geo_AO_300.xml @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<geometry version ="0.5" caption="second life" gridSizeX="20" gridSizeY="20" unit="m"> +<geometry version ="0.5" caption="second life" gridSizeX="20" gridSizeY="20" unit="m" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:noNamespaceSchemaLocation="http://xsd.jupedsim.org/0.6/jps_geoemtry.xsd"> <rooms> - <room id="0" caption="hall" zpos="0.00"> + <room id="0" caption="hall"> <subroom id="0" closed="0" class="subroom"> <polygon caption="wall"> <vertex px="4.00" py="6.25"/> diff --git a/demos/bottleneck/input_AO_240.xml b/demos/bottleneck/input_AO_240.xml new file mode 100644 index 0000000000000000000000000000000000000000..5dd0507a6cb4811161ff284578167a61582c238d --- /dev/null +++ b/demos/bottleneck/input_AO_240.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="UTF-8"?> +<JPSreport project="JPS-Project" version="0.6" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:noNamespaceSchemaLocation="http://xsd.jupedsim.org/0.6/jps_report.xsd" > + <!-- geometry file --> + <geometry file = "geo_AO_240.xml" /> + <!-- trajectories file and format --> + <!-- either a file name or a path location. In the latter case all files in the directory will be used--> + <trajectories format="xml" unit="m"> + <file name="AO_240.xml" /> + <path location="./" /> + </trajectories> + <!-- all files in the directories will be used --> + + <measurementAreas unit="m"> + <area_B id="1" type="BoundingBox"> + <vertex x="2.10" y="0.53" /> + <vertex x="2.10" y="-0.53" /> + <vertex x="-0.30" y="-0.53" /> + <vertex x="-0.30" y="0.53" /> + <Length_in_movement_direction distance="1.0"/> + </area_B> + <area_B id="2" type="BoundingBox"> + <vertex x="2.10" y="-0.53" /> + <vertex x="2.10" y="-1.53" /> + <vertex x="-0.30" y="-1.53" /> + <vertex x="-0.30" y="-0.53" /> + </area_B> + <area_L id="3" type="Line"> + <start x="-2.25" y="0.00" /> + <end x="4.00" y="0.00" /> + </area_L> + <area_L id="4" type="Line"> + <start x="-2.25" y="0.50" /> + <end x="4.00" y="0.50" /> + </area_L> + </measurementAreas> + + <velocity> + <useXComponent>true</useXComponent> + <useYComponent>true</useYComponent> + + <!-- half of the time interval that used to calculate instantaneous velocity + of ped i [fr] here v_i = (X(t+deltaF) - X(t+deltaF))/(2*deltaF). X is location. --> + <halfFrameNumberToUse>5</halfFrameNumberToUse> + </velocity> + + <!-- Method A (Zhang2011a) Flow and Vel --> + <method_A enabled="true"> + <!-- Time interval used to count the flow [fr] --> + <timeInterval unit="frame"> + 16 + </timeInterval> + <!-- The coordinate of the line used to calculate the flow and velocity --> + <measurementArea id="3" /> + </method_A> + + <!-- Method B (Zhang2011a) Vel and Dens based on Tin and Tout --> + <method_B enabled="false"> + <measurementArea id="1" /> + <measurementArea id="2" /> + </method_B> + + <!-- Method C (Zhang2011a) Classical density and Vel --> + <method_C enabled="false"> + <measurementArea id="1" /> + <measurementArea id="2" /> + </method_C> + + <!-- Method D (Zhang2011a) Voronoi density and Vel --> + <method_D enabled="false" outputGraph="true" individualFDdata="false"> + <measurementArea id="1" /> + <measurementArea id="2" /> + <cutByCircle enabled="false" radius= "1" edges = "6"/> + <getProfile enabled="false" scale_x="0.10" scale_y="0.10"/> + </method_D> +</JPSreport> + diff --git a/demos/bottleneck/input_AO_300.xml b/demos/bottleneck/input_AO_300.xml index 147c3a1f3896107de0499768ce94f87704bc7a68..2b9d437a154deac800fb0054ef626e240d4a6a13 100644 --- a/demos/bottleneck/input_AO_300.xml +++ b/demos/bottleneck/input_AO_300.xml @@ -1,23 +1,24 @@ <?xml version="1.0" encoding="UTF-8"?> -<JPSreport project="JPS-Project" version="0.5" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" -xsi:noNamespaceSchemaLocation="../../xsd/jps_report.xsd"> + +<JPSreport project="JPS-Project" version="0.6" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" +xsi:noNamespaceSchemaLocation="http://xsd.jupedsim.org/0.6/jps_report.xsd" > <!-- geometry file --> - <geometry1 file = "geo_AO_300.xml" /> + <geometry file = "geo_AO_300.xml" /> <!-- trajectories file and format --> <!-- either a file name or a path location. In the latter case all files in the directory will be used--> <trajectories format="txt" unit="m"> <file name="AO_300.txt" /> - <path location="" /> + <path location="./" /> </trajectories> <!-- all files in the directories will be used --> <measurementAreas unit="m"> <area_B id="1" type="BoundingBox"> - <p1 x="2.40" y="0.53" /> - <p2 x="2.40" y="-0.53" /> - <p3 x="-0.60" y="-0.53" /> - <p4 x="-0.60" y="0.53" /> - <movingDirection start="p1" end="p2" /> + <vertex x="2.40" y="0.53" /> + <vertex x="2.40" y="-0.53" /> + <vertex x="-0.60" y="-0.53" /> + <vertex x="-0.60" y="0.53" /> + <Length_in_movement_direction distance="1.06" /> </area_B> <area_L id="2" type="Line"> <start x="-2.25" y="0.00" /> diff --git a/general/ArgumentParser.cpp b/general/ArgumentParser.cpp index 4345e489a6915e5b3990f61c891744ecce63d541..b3eec6805f0687f053a9b9ac6d24560723e2e3d7 100644 --- a/general/ArgumentParser.cpp +++ b/general/ArgumentParser.cpp @@ -2,7 +2,7 @@ * \file ArgumentParser.cpp * \date Oct 10, 2014 * \version v0.6 - * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. * * \section License * This file is part of JuPedSim. @@ -48,12 +48,12 @@ using namespace std; -void ArgumentParser::Usage() +void ArgumentParser::Usage(const std::string file) { - Log->Write("Usage: \n"); - Log->Write("\tJPSreport.exe --inifile=input.xml\n"); - /* + Log->Write("Usage: \n"); + Log->Write("\t%s input.xml\n",file.c_str()); + /* fprintf(stderr, "Usage: program options\n\n" "With the following options (default values in parenthesis):\n\n" @@ -61,15 +61,13 @@ void ArgumentParser::Usage() " [-I/--input path <filepath>] path of the input file(./Inputfiles/)\n" " [-O/--output path <filepath>] path of the input file(./Outputfiles/)\n" " [-g/--geometry <string>] path to the geometry file (./Inputfiles/geo.xml)\n" - " [-m/--measurment area <int>] type of measurement area(1)\n" + " [-m/--measurement area <int>] type of measurement area(1)\n" " 1: Bounding box\n" " 2: Line\n" " [-b/--bounding box <double>] p1.x p1.y p2.x p2.y p3.x p3.y p4.x p4.y (in clockwise)\n" " [-d/--moving direction <double>] p1.x p1.y p2.x p2.y \n" " [-l/--line <double>] p1.x p1.y p2.x p2.y \n" - - fprintf(stderr, "-c --> set cutbycircle=true (false)\n"); fprintf(stderr, "-a --> set fieldAnalysis=true (false)\n"); fprintf(stderr, "-g --> set IsOutputGraph=true (false)\n"); @@ -95,549 +93,564 @@ void ArgumentParser::Usage() fprintf(stderr, "-p fps (10)\n"); fprintf(stderr, "-G cor_x cor_y length width (corridor)\n"); - - " [-n/--number <filepath>] file with the pedestrian distribution in room(./Inputfiles/persons.xml)\n" - " [-t/--tmax <double>] maximal simulation time (500)\n" - " [-d/--dt <double>] time step (0.001)\n" - " [--fps <double>] framerate (1.0 fps)\n" - " [-s/--solver <int>] type of solver, if needed (euler)\n" - " 1: euler\n" - " 2: verlet\n" - " 3: leapfrog\n" - " [-g/--geometry <string>] path to the geometry file (./Inputfiles/geo.xml)\n" - " [-e/--exitstrategy <int>] strategy how the direction to the exit is computed (3).\n" - " 1: Middlepoint of the exit line\n" - " 2: Shortest distance point of the exit line\n" - " 3: Shortest distance point of the exit line, but exit is 20 cm shorter\n" - " [-l/--linkedcells [<double>]] use of linked-cells with optional cell size (default cellsize = 2.2m)\n" - " [-R/--routing <int> [<string>]] routing strategy (1):\n" - " 1: local shortest path\n" - " 2: global shortest path\n" - " 3: quickest path\n" - " [-v/--v0mu <double>] mu for normal distribution of v0, desired velocity (1.24)\n" - " [-V/--v0sigma <double>] sigma for normal distribution of v0, desired velocity (0.26)\n" - " [-a/--ataumu <double>] mu for normal distribution of a_tau, factor for velocity 1st axis (0.53)\n" - " [-A/--atausigma <double>] sigma for normal distribution of a_tau, factor for velocity 1st axis (0.001)\n" - " [-z/--aminmu <double>] mu for normal distribution of a_min, minimal size 1st axis (0.18)\n" - " [-Z/--aminsigma <double>] sigma for normal distribution of a_min, minimal size 1st axis (0.001)\n" - " [-b/--bmaxmu <double>] mu for normal distribution of b_max, maximal size 2nd axis (0.25)\n" - " [-B/--bmaxsigma <double>] sigma for normal distribution of b_max, maximal size 2nd axis (0.001)\n" - " [-y/--bminmu <double>] mu for normal distribution of b_min, minimal size 2nd axis (0.2)\n" - " [-Y/--bminsigma <double>] sigma for normal distribution of b_min, minimal size 2nd axis (0.001)\n" - " [-c/--taumu <double>] mu for normal distribution of tau, reaction time (0.5)\n" - " [-C/--tausigma <double>] sigma for normal distribution of tau, reaction time (0.001)\n" - " [-x/--nuped <double>] strength of forces between pedestrians, factor (0.3)\n" - " [-X/--nuwall <double>] strength of wall forces, factor (0.2)\n" - " [-i/--intpwidthped <double>] interpolation width of pedestrian forces (0.1)\n" - " [-I/--intpwidthwall <double>] interpolation width of wall forces (0.1)\n" - " [-m/--maxfped <double>] interpolation parameter of pedestrian forces (3)\n" - " [-M/--maxfwall <double>] interpolation parameter of wall forces (3)\n" - " [-f/--disteffmaxped <double>] maximal effective distance to pedestrians (2)\n" - " [-F/--disteffmaxwall <double>] maximal effective distance to walls (2)\n" - " [--pathway <filepath>] file for saving pedestrians path\n" - " [-L/--log <int>] log output (0):\n" - " 0: no output\n" - " 1: log output to stdout\n" - " 2: log output to file ./outputfiles/log.txt\n" - " [-T/--output-file <string>] file to write the trajectories ( no trajectories are written if omited0):\n" - " [-P/--streaming-port <int>] stream the ouput to the specified address/port\n" - " [-O/--streaming-ip <string>] stream the ouput to the specified address/port\n" - " [-h/--help] this manual output\n" - "\n"); - - - */ - exit(EXIT_SUCCESS); + */ + exit(EXIT_SUCCESS); } ArgumentParser::ArgumentParser() { - // Default parameter values - _geometryFileName = "geo.xml"; - - _areaIDforMethodA=-1; - _areaIDforMethodB=-1; - _areaIDforMethodC=-1; - _areaIDforMethodD=-1; - - _vComponent = 'B'; - _isMethodA = false; - _timeIntervalA = 160; - _delatTVInst = 5; - _isMethodB = false; - _isMethodC =false; - _isMethodD = false; - _isCutByCircle = false; - _isOutputGraph= false; - _isIndividualFD = false; - _isGetProfile =false; - _steadyStart =100; - _steadyEnd = 1000; - _scaleX = 10; - _scaleY = 10; - _errorLogFile="./Logfile.dat"; - _log=1; //no output wanted - _trajectoriesLocation="./"; - _trajectoriesFilename=""; - _projectRootDir=""; - _fileFormat=FORMAT_XML_PLAIN; - _cutRadius =1.0; - _circleEdges=6; -} - - -void ArgumentParser::ParseArgs(int argc, char **argv) -{ - int c; - int option_index = 0; - - static struct option long_options[] = { - {"help", 0, 0, 'h'}, - {"inifile", optional_argument, 0, 'q'}, - {0, 0, 0, 0} - }; - - if(argc==1) { - Usage(); - } - while ((c = getopt_long_only(argc, argv, - "q:h", - long_options, &option_index)) != -1) { - - switch (c) { - - case 'q': { - string inifile="input.xml"; - if (optarg) - inifile=optarg; - Log->Write("INFO: \t Loading initialization file <"+inifile+">"); - ParseIniFile(inifile); - } - break; - - case 'h': - Usage(); - break; - default: { - Log->Write("ERROR: \tin ArgumentParser::ParseArgs() " - "wrong program options!!!\n"); - Usage(); - } - } - } + // Default parameter values + _geometryFileName = "geo.xml"; + + _vComponent = 'B'; + _isMethodA = false; + _timeIntervalA = 160; + _delatTVInst = 5; + _isMethodB = false; + _isMethodC =false; + _isMethodD = false; + _isCutByCircle = false; + _isOutputGraph= false; + _isIndividualFD = false; + _isGetProfile =false; + _steadyStart =100; + _steadyEnd = 1000; + _scaleX = 10; + _scaleY = 10; + _errorLogFile="./Logfile.dat"; + _log=1; //no output wanted + _trajectoriesLocation="./"; + _trajectoriesFilename=""; + _projectRootDir="./"; + _fileFormat=FORMAT_XML_PLAIN; + _cutRadius =50; + _circleEdges=6; +} + + + + bool ArgumentParser::ParseArgs(int argc, char **argv) +{ + //special case of the default configuration ini.xml + if (argc == 1) + { + Log->Write( + "INFO: \tTrying to load the default configuration from the file <ini.xml>"); + if(ParseIniFile("ini.xml")==false) + { + Usage(argv[0]); + } + return true; + } + + string argument = argv[1]; + if (argument == "-h" || argument == "--help") + { + Usage(argv[0]); + return false; + } + else if(argument == "-v" || argument == "--version") + { + fprintf(stderr,"You are actually using JuPedsim (jpsreport) version %s \n\n",JPS_VERSION); + return false; + } + + // other special case where a single configuration file is submitted + //check if inifile options are given + if (argc == 2) + { + string prefix1 = "--ini="; + string prefix2 = "--inifile="; + + if (!argument.compare(0, prefix2.size(), prefix2)) { + argument.erase(0, prefix2.size()); + } else if (!argument.compare(0, prefix1.size(), prefix1)) { + argument.erase(0, prefix1.size()); + } + return ParseIniFile(argument); + } + + //more than one argument was supplied + Usage(argv[0]); + return false; } const vector<string>& ArgumentParser::GetTrajectoriesFiles() const { - return _trajectoriesFiles; + return _trajectoriesFiles; } const string& ArgumentParser::ArgumentParser::GetProjectRootDir() const { - return _projectRootDir; + return _projectRootDir; } -void ArgumentParser::ParseIniFile(string inifile) +bool ArgumentParser::ParseIniFile(const string& inifile) { - Log->Write("INFO: \tParsing the ini file"); + Log->Write("INFO: \tParsing the ini file <%s>",inifile.c_str()); - //extract and set the project root dir - size_t found = inifile.find_last_of("/\\"); - if (found != string::npos) - _projectRootDir = inifile.substr(0, found) + "/"; + //extract and set the project root dir + size_t found = inifile.find_last_of("/\\"); + if (found != string::npos) + _projectRootDir = inifile.substr(0, found) + "/"; - TiXmlDocument doc(inifile); - if (!doc.LoadFile()) { - Log->Write("ERROR: \t%s", doc.ErrorDesc()); - Log->Write("ERROR: \t could not parse the ini file"); - exit(EXIT_FAILURE); - } + TiXmlDocument doc(inifile); + if (!doc.LoadFile()) { + Log->Write("ERROR: \t%s", doc.ErrorDesc()); + Log->Write("ERROR: \tCould not parse the ini file"); + return false; + } - TiXmlElement* xMainNode = doc.RootElement(); - if( ! xMainNode ) { - Log->Write("ERROR:\tRoot element does not exist"); - exit(EXIT_FAILURE); - } + TiXmlElement* xMainNode = doc.RootElement(); + if( ! xMainNode ) { + Log->Write("ERROR:\tRoot element does not exist"); + return false; + } - if( xMainNode->ValueStr () != "JPSreport" ) { - Log->Write("ERROR:\tRoot element value is not 'JPSreport'."); - exit(EXIT_FAILURE); - } + if( xMainNode->ValueStr () != "JPSreport" ) + { + Log->Write("ERROR:\tRoot element value is not 'JPSreport'."); + return false; + } - //geometry - if(xMainNode->FirstChild("geometry")) { - _geometryFileName=_projectRootDir+xMainNode->FirstChildElement("geometry")->Attribute("file"); - Log->Write("INFO: \tgeometry <"+_geometryFileName+">"); - } + //geometry + if(xMainNode->FirstChild("geometry")) + { + _geometryFileName=_projectRootDir+xMainNode->FirstChildElement("geometry")->Attribute("file"); + Log->Write("INFO: \tGeometry File is: <"+_geometryFileName+">"); + } //trajectories TiXmlNode* xTrajectories = xMainNode->FirstChild("trajectories"); if (xTrajectories) { //add the extension point - string fmt = "."+string (xmltoa( - xMainNode->FirstChildElement("trajectories")->Attribute( - "format"))); - cout<<"The trajectory is "<<fmt<<endl; - if (fmt == ".xml") { + string fmt = "."+string (xmltoa(xMainNode->FirstChildElement("trajectories")->Attribute("format"))); + Log->Write("INFO: \tFormat of the trajectory file is: <%s>", fmt.c_str()); + if (fmt == ".xml") + { _fileFormat = FORMAT_XML_PLAIN; - } else if (fmt == ".txt") { + } + else if (fmt == ".txt") + { _fileFormat = FORMAT_PLAIN; - + } + else + { + Log->Write("Error: \tthe given trajectory format is not supported. Supply '.xml' or '.txt' format!"); + return false; } - - string unit = xmltoa( - xMainNode->FirstChildElement("trajectories")->Attribute( - "unit"), "m"); - if (unit != "m") { - Log->Write( - "WARNING: \tonly <m> unit is supported. Convert your units."); - exit(EXIT_FAILURE); + string unit = xmltoa(xMainNode->FirstChildElement("trajectories")->Attribute("unit"), "m"); + if (unit != "m") + { + Log->Write("WARNING: \tonly <m> unit is supported. Convert your units."); + return false; } //a file descriptor was given for (TiXmlElement* xFile = xTrajectories->FirstChildElement("file"); - xFile; xFile = xFile->NextSiblingElement("file")) { + xFile; xFile = xFile->NextSiblingElement("file")) + { //collect all the files given _trajectoriesFilename = + xFile->Attribute("name"); _trajectoriesFiles.push_back(_trajectoriesFilename); + + //check if the given file match the format + if(boost::algorithm::ends_with(_trajectoriesFilename,fmt)) + { + Log->Write("INFO: \tInput trajectory file is\t<"+ (_trajectoriesFilename)+">"); + } + else + { + Log->Write("ERROR: \tWrong file extension\t<%s> for file <%s>",fmt.c_str(),_trajectoriesFilename.c_str()); + return false; + } + } + + if (xTrajectories->FirstChildElement("path")) + { + _trajectoriesLocation = xTrajectories->FirstChildElement("path")->Attribute("location"); + if(_trajectoriesLocation.empty()) + _trajectoriesLocation="./"; + + + //hack to find if it is an absolute path + // ignore the project root in this case + if ( (boost::algorithm::contains(_trajectoriesLocation,":")==false) && //windows + (boost::algorithm::starts_with(_trajectoriesLocation,"/") ==false)) //linux + // &&() osx + { + _trajectoriesLocation=_projectRootDir+_trajectoriesLocation; + } + + // in the case no file was specified, collect all xml files in the specified directory + if(_trajectoriesFiles.empty()) + { + DIR *dir; + struct dirent *ent; + if ((dir = opendir (_trajectoriesLocation.c_str())) != NULL) + { + /* print all the files and directories within directory */ + while ((ent = readdir (dir)) != NULL) + { + string filename=ent->d_name; + + if (boost::algorithm::ends_with(filename, fmt)) + //if (filename.find(fmt)!=std::string::npos) + { + //_trajectoriesFiles.push_back(_projectRootDir+filename); + _trajectoriesFiles.push_back(filename); + Log->Write("INFO: \tInput trajectory file is\t<"+ (filename)+">"); + } + } + closedir (dir); + } + else + { + /* could not open directory */ + Log->Write("ERROR: \tcould not open the directory <"+_trajectoriesLocation+">"); + return false; + } + } + } + Log->Write("INFO: \tInput directory for loading trajectory is:\t<"+ (_trajectoriesLocation)+">"); + } + + //measurement area + if(xMainNode->FirstChild("measurementAreas")) { + + string unit = xMainNode->FirstChildElement("measurementAreas")->Attribute("unit"); + if(unit!="m") + { + Log->Write("WARNING: \tonly <m> unit is supported. Convert your units."); + return false; } - if (xTrajectories->FirstChildElement("path")) { - _trajectoriesLocation =_projectRootDir+ - xTrajectories->FirstChildElement("path")->Attribute( - "location"); - - // in the case no file was specified, collect all xml files in the specified directory - if(_trajectoriesFiles.empty()) { - - DIR *dir; - struct dirent *ent; - if ((dir = opendir (_trajectoriesLocation.c_str())) != NULL) { - /* print all the files and directories within directory */ - while ((ent = readdir (dir)) != NULL) { - string filename=ent->d_name; - //if (filename.find(".xml")!=std::string::npos) - if (filename.find(fmt)!=std::string::npos) - { - _trajectoriesFiles.push_back(_projectRootDir+filename); - } + for(TiXmlNode* xMeasurementArea_B=xMainNode->FirstChild("measurementAreas")->FirstChild("area_B"); + xMeasurementArea_B; xMeasurementArea_B=xMeasurementArea_B->NextSibling("area_B")) + { + MeasurementArea_B* areaB = new MeasurementArea_B(); + areaB->_id=xmltoi(xMeasurementArea_B->ToElement()->Attribute("id")); + areaB->_type=xMeasurementArea_B->ToElement()->Attribute("type"); + + polygon_2d poly; + Log->Write("INFO: \tMeasure area id < %d> with type <%s>",areaB->_id, areaB->_type.c_str()); + for(TiXmlElement* xVertex=xMeasurementArea_B->FirstChildElement("vertex"); xVertex; xVertex=xVertex->NextSiblingElement("vertex") ) + { + double box_px = xmltof(xVertex->Attribute("x"))*M2CM; + double box_py = xmltof(xVertex->Attribute("y"))*M2CM; + boost::geometry::append(poly, boost::geometry::make<point_2d>(box_px, box_py)); + Log->Write("\t\tMeasure area points < %.3f, %.3f>",box_px*CMtoM,box_py*CMtoM); + } + correct(poly); // in the case the Polygone is not closed + areaB->_poly=poly; + + TiXmlElement* xLength=xMeasurementArea_B->FirstChildElement("Length_in_movement_direction"); + if(xLength) + { + areaB->_length=xmltof(xLength->Attribute("distance")); + } + _measurementAreas[areaB->_id]=areaB; + } + + + for(TiXmlNode* xMeasurementArea_L=xMainNode->FirstChild("measurementAreas")->FirstChild("area_L"); + xMeasurementArea_L; xMeasurementArea_L=xMeasurementArea_L->NextSibling("area_L")) + { + MeasurementArea_L* areaL = new MeasurementArea_L(); + areaL->_id=xmltoi(xMeasurementArea_L->ToElement()->Attribute("id")); + areaL->_type=xMeasurementArea_L->ToElement()->Attribute("type"); + Log->Write("INFO: \tMeasure area id <%d> with type <%s>",areaL->_id,areaL->_type.c_str()); + areaL->_lineStartX = xmltof(xMeasurementArea_L->FirstChildElement("start")->Attribute("x"))*M2CM; + areaL->_lineStartY =xmltof(xMeasurementArea_L->FirstChildElement("start")->Attribute("y"))*M2CM; + areaL->_lineEndX = xmltof(xMeasurementArea_L->FirstChildElement("end")->Attribute("x"))*M2CM; + areaL->_lineEndY =xmltof(xMeasurementArea_L->FirstChildElement("end")->Attribute("y"))*M2CM; + + _measurementAreas[areaL->_id]=areaL; + Log->Write("\t\tMeasurement line starts from <%f, %f> to <%f, %f>",areaL->_lineStartX*CMtoM,areaL->_lineStartY*CMtoM,areaL->_lineEndX*CMtoM,areaL->_lineEndY*CMtoM); + } + } + + //instantaneous velocity + TiXmlNode* xVelocity=xMainNode->FirstChild("velocity"); + if(xVelocity) { + string UseXComponent = xVelocity->FirstChildElement("useXComponent")->GetText(); + string UseYComponent = xVelocity->FirstChildElement("useYComponent")->GetText(); + string HalfFrameNumberToUse = xVelocity->FirstChildElement("halfFrameNumberToUse")->GetText(); + + _delatTVInst = atof(HalfFrameNumberToUse.c_str()); + if(UseXComponent == "true"&&UseYComponent == "false") + { + _vComponent = 'X'; + Log->Write("INFO: \tOnly x-component coordinates will be used in velocity calculation within 2* <"+HalfFrameNumberToUse+" frames>" ); + } + else if(UseXComponent == "false"&&UseYComponent == "true") + { + _vComponent = 'Y'; + Log->Write("INFO: \tOnly y-component coordinates will be used in velocity calculation within 2* <"+HalfFrameNumberToUse+" frames>" ); + } + else if(UseXComponent == "true"&&UseYComponent == "true") + { + _vComponent = 'B'; // both components + Log->Write("INFO: \tBoth x and y-component of coordinates will be used in velocity calculation within 2* <"+HalfFrameNumberToUse+" frames>" ); + } + else + { + Log->Write("Error: \tType of velocity is not selected, please check it !!! " ); + return false; + } + } + + // method A + TiXmlElement* xMethod_A=xMainNode->FirstChildElement("method_A"); + if(xMethod_A) + { + if(string(xMethod_A->Attribute("enabled"))=="true") + { + _isMethodA = true; + Log->Write("INFO: \tMethod A is selected" ); + _timeIntervalA = xmltoi(xMethod_A->FirstChildElement("timeInterval")->GetText()); + Log->Write("INFO: \ttime interval used in Method A is <%d> frame",_timeIntervalA); + for(TiXmlElement* xMeasurementArea=xMainNode->FirstChildElement("method_A")->FirstChildElement("measurementArea"); + xMeasurementArea; xMeasurementArea = xMeasurementArea->NextSiblingElement("measurementArea")) + { + _areaIDforMethodA.push_back(xmltoi(xMeasurementArea->Attribute("id"))); + Log->Write("INFO: \tMeasurement area id <%d> will be used for analysis", xmltoi(xMeasurementArea->Attribute("id"))); + } + } + } + // method B + TiXmlElement* xMethod_B=xMainNode->FirstChildElement("method_B"); + if(xMethod_B) + + if(string(xMethod_B->Attribute("enabled"))=="true") + { + _isMethodB = true; + Log->Write("INFO: \tMethod B is selected" ); + for(TiXmlElement* xMeasurementArea=xMainNode->FirstChildElement("method_B")->FirstChildElement("measurementArea"); + xMeasurementArea; xMeasurementArea = xMeasurementArea->NextSiblingElement("measurementArea")) + { + _areaIDforMethodB.push_back(xmltoi(xMeasurementArea->Attribute("id"))); + Log->Write("INFO: \tMeasurement area id <%d> will be used for analysis", xmltoi(xMeasurementArea->Attribute("id"))); + } + } + // method C + TiXmlElement* xMethod_C=xMainNode->FirstChildElement("method_C"); + if(xMethod_C) + if(string(xMethod_C->Attribute("enabled"))=="true") + { + _isMethodC = true; + Log->Write("INFO: \tMethod C is selected" ); + for(TiXmlElement* xMeasurementArea=xMainNode->FirstChildElement("method_C")->FirstChildElement("measurementArea"); + xMeasurementArea; xMeasurementArea = xMeasurementArea->NextSiblingElement("measurementArea")) + { + _areaIDforMethodC.push_back(xmltoi(xMeasurementArea->Attribute("id"))); + Log->Write("INFO: \tMeasurement area id <%d> will be used for analysis", xmltoi(xMeasurementArea->Attribute("id"))); + } + } + // method D + TiXmlElement* xMethod_D=xMainNode->FirstChildElement("method_D"); + if(xMethod_D) { + if(string(xMethod_D->Attribute("enabled"))=="true") + { + _isMethodD = true; + Log->Write("INFO: \tMethod D is selected" ); + _isOutputGraph = (string(xMethod_D->Attribute("outputGraph")) == "true"); + if(_isOutputGraph) + { + Log->Write("INFO: \tVoronoi graph is asked to output" ); + } + _isIndividualFD = (string(xMethod_D->Attribute("individualFDdata")) == "true"); + if(_isIndividualFD) + { + Log->Write("INFO: \tIndividual fundamental diagram data will be calculated" ); + } + for(TiXmlElement* xMeasurementArea=xMainNode->FirstChildElement("method_D")->FirstChildElement("measurementArea"); + xMeasurementArea; xMeasurementArea = xMeasurementArea->NextSiblingElement("measurementArea")) + { + _areaIDforMethodD.push_back(xmltoi(xMeasurementArea->Attribute("id"))); + Log->Write("INFO: \tMeasurement area id <%d> will be used for analysis", xmltoi(xMeasurementArea->Attribute("id"))); + } + if ( xMethod_D->FirstChildElement("cutByCircle")) + { + if ( string(xMethod_D->FirstChildElement("cutByCircle")->Attribute("enabled"))=="true") + { + _isCutByCircle=true; + _cutRadius=xmltof(xMethod_D->FirstChildElement("cutByCircle")->Attribute("radius"))*M2CM; + _circleEdges=xmltoi(xMethod_D->FirstChildElement("cutByCircle")->Attribute("edges")); + Log->Write("INFO: \tEach Voronoi cell will be cut by a circle with the radius of < %f > m!!", _cutRadius*CMtoM); + Log->Write("INFO: \tThe circle is discretized to a polygon with < %d> edges!!", _circleEdges); } - closedir (dir); - } else { - /* could not open directory */ - Log->Write("ERROR: \tcould not open the directory <"+_trajectoriesLocation+">"); - exit( EXIT_FAILURE); - } - } - } - - Log->Write("INFO: \tinput file <"+ (_trajectoriesFilename)+">"); - Log->Write("INFO: \tinput dir <"+ (_trajectoriesLocation)+">"); - } - - //measurement area - if(xMainNode->FirstChild("measurementAreas")) { - - string unit = xMainNode->FirstChildElement("measurementAreas")->Attribute("unit"); - - if(unit!="m") { - Log->Write("WARNING: \tonly <m> unit is supported. Convert your units."); - exit(EXIT_FAILURE); - } - - TiXmlNode* xMeasurementArea_B=xMainNode->FirstChild("measurementAreas")->FirstChild("area_B"); - if(xMeasurementArea_B) { - - MeasurementArea_B* areaB = new MeasurementArea_B(); - areaB->_id=xmltoi(xMeasurementArea_B->ToElement()->Attribute("id")); - areaB->_type=xMeasurementArea_B->ToElement()->Attribute("type"); - - polygon_2d poly; - for(TiXmlElement* xVertex=xMeasurementArea_B->FirstChildElement("vertex"); xVertex; xVertex=xVertex->NextSiblingElement("vertex") ) - { - double box_px = xmltof(xVertex->Attribute("x"))*M2CM; - double box_py = xmltof(xVertex->Attribute("y"))*M2CM; - boost::geometry::append(poly, boost::geometry::make<point_2d>(box_px, box_py)); - Log->Write("INFO: \tmeasure area points < %.3f, %.3f>",box_px,box_py); - } - correct(poly); // in the case the Polygone is not closed - areaB->_poly=poly; - - TiXmlElement* xLength=xMeasurementArea_B->FirstChildElement("Length_in_movement_direction"); - if(xLength) - { - areaB->_length=xmltof(xLength->Attribute("distance")); - } - - Log->Write("INFO: \tmeasure area id < %d>",areaB->_id); - Log->Write("INFO: \tmeasure area type <"+areaB->_type+">"); - Log->Write("INFO: \tlength of measurement area is: < %f>", areaB->_length); - //add the area to the collection - _measurementAreas[areaB->_id]=areaB; - } - - TiXmlNode* xMeasurementArea_L=xMainNode->FirstChild("measurementAreas")->FirstChild("area_L"); - if(xMeasurementArea_L) { - MeasurementArea_L* areaL = new MeasurementArea_L(); - areaL->_id=xmltoi(xMeasurementArea_L->ToElement()->Attribute("id")); - areaL->_type=xMeasurementArea_L->ToElement()->Attribute("type"); - - areaL->_lineStartX = xmltof(xMeasurementArea_L->FirstChildElement("start")->Attribute("x"))*M2CM; - areaL->_lineStartY =xmltof(xMeasurementArea_L->FirstChildElement("start")->Attribute("y"))*M2CM; - areaL->_lineEndX = xmltof(xMeasurementArea_L->FirstChildElement("end")->Attribute("x"))*M2CM; - areaL->_lineEndY =xmltof(xMeasurementArea_L->FirstChildElement("end")->Attribute("y"))*M2CM; - - _measurementAreas[areaL->_id]=areaL; - Log->Write("INFO: \tmeasure area id <%d> with \ttype <%s>",areaL->_id,areaL->_type.c_str()); - Log->Write("INFO: \treference line starts from <%f, %f> to <%f, %f>",areaL->_lineStartX,areaL->_lineStartY,areaL->_lineEndX,areaL->_lineEndY); - } - } - - //instantaneous velocity - TiXmlNode* xVelocity=xMainNode->FirstChild("velocity"); - if(xVelocity) { - string UseXComponent = xVelocity->FirstChildElement("useXComponent")->GetText(); - string UseYComponent = xVelocity->FirstChildElement("useYComponent")->GetText(); - string HalfFrameNumberToUse = xVelocity->FirstChildElement("halfFrameNumberToUse")->GetText(); - - _delatTVInst = atof(HalfFrameNumberToUse.c_str()); - if(UseXComponent == "true"&&UseYComponent == "false") { - _vComponent = 'X'; - Log->Write("INFO: \tonly x-component coordinates will be used in velocity calculation within 2* <"+HalfFrameNumberToUse+" frames>" ); - } else if(UseXComponent == "false"&&UseYComponent == "true") { - _vComponent = 'Y'; - Log->Write("INFO: \tonly y-component coordinates will be used in velocity calculation within 2* <"+HalfFrameNumberToUse+" frames>" ); - } else if(UseXComponent == "true"&&UseYComponent == "true") { - _vComponent = 'B'; // both components - Log->Write("INFO: \tx and y-component of coordinates will be used in velocity calculation within 2* <"+HalfFrameNumberToUse+" frames>" ); - } else { - Log->Write("INFO: \ttype of velocity is not selected, please check it !!! " ); - exit(EXIT_FAILURE) ; - } - } - - // method A - TiXmlElement* xMethod_A=xMainNode->FirstChildElement("method_A"); - if(xMethod_A) { - if(string(xMethod_A->Attribute("enabled"))=="true") { - _timeIntervalA = xmltoi(xMethod_A->FirstChildElement("timeInterval")->GetText()); - _areaIDforMethodA = xmltoi(xMethod_A->FirstChildElement("measurementArea")->Attribute("id")); - _isMethodA = true; - Log->Write("INFO: \tMethod A is selected" ); - Log->Write("INFO: \ttime interval used in Method A is < %d>",_timeIntervalA); - } - } - // method B - TiXmlElement* xMethod_B=xMainNode->FirstChildElement("method_B"); - if(xMethod_B) - if(string(xMethod_B->Attribute("enabled"))=="true") { - _isMethodB = true; - _areaIDforMethodB = xmltoi(xMethod_B->FirstChildElement("measurementArea")->Attribute("id")); - Log->Write("INFO: \tMethod B is selected" ); - } - // method C - TiXmlElement* xMethod_C=xMainNode->FirstChildElement("method_C"); - if(xMethod_C) - if(string(xMethod_C->Attribute("enabled"))=="true") { - _isMethodC = true; - _areaIDforMethodC = xmltoi(xMethod_C->FirstChildElement("measurementArea")->Attribute("id")); - Log->Write("INFO: \tMethod C is selected" ); - } - // method D - TiXmlElement* xMethod_D=xMainNode->FirstChildElement("method_D"); - if(xMethod_D) { - if(string(xMethod_D->Attribute("enabled"))=="true") - { - _isMethodD = true; - _isOutputGraph = (string(xMethod_D->Attribute("outputGraph")) == "true"); - if(_isOutputGraph) { - Log->Write("INFO: \tVoronoi graph is asked to output!" ); - } - _isIndividualFD = (string(xMethod_D->Attribute("individualFDdata")) == "true"); - _areaIDforMethodD = xmltoi(xMethod_D->FirstChildElement("measurementArea")->Attribute("id")); - - if ( xMethod_D->FirstChildElement("cutByCircle")) - { - if ( string(xMethod_D->FirstChildElement("cutByCircle")->Attribute("enabled"))=="true") - { - _isCutByCircle=true; - _cutRadius=xmltof(xMethod_D->FirstChildElement("cutByCircle")->Attribute("radius")); - _circleEdges=xmltof(xMethod_D->FirstChildElement("cutByCircle")->Attribute("edges")); - Log->Write("INFO: \tEach Voronoi cell will be cut by a circle with the radius of < %f > m!!", _cutRadius); - Log->Write("INFO: \tThe circle is discretized to a polygon with < %d> edges!!", _circleEdges); - } - } - - if ( xMethod_D->FirstChildElement("steadyState")) - { - _steadyStart =xmltof(xMethod_D->FirstChildElement("steadyState")->Attribute("start")); - _steadyEnd =xmltof(xMethod_D->FirstChildElement("steadyState")->Attribute("end")); - Log->Write("INFO: \tthe steady state is from <%f> to <%f> frames", _steadyStart, _steadyEnd); - } - - if(xMethod_D->FirstChildElement("getProfile")) - if ( string(xMethod_D->FirstChildElement("getProfile")->Attribute("enabled"))=="true") { - _isGetProfile = true; - _scaleX =xmltof(xMethod_D->FirstChildElement("getProfile")->Attribute("scale_x")); - _scaleY =xmltof(xMethod_D->FirstChildElement("getProfile")->Attribute("scale_y")); - Log->Write("INFO: \tprofiles will be calculated" ); - Log->Write("INFO: \tthe scale of the discretized cell in x, y direction are: < %f >m and < %f >m ",_scaleX, _scaleY); - } - - Log->Write("INFO: \tMethod D is selected" ); - } - } - - Log->Write("INFO: \tdone parsing ini"); + } + + if ( xMethod_D->FirstChildElement("steadyState")) + { + _steadyStart =xmltof(xMethod_D->FirstChildElement("steadyState")->Attribute("start")); + _steadyEnd =xmltof(xMethod_D->FirstChildElement("steadyState")->Attribute("end")); + Log->Write("INFO: \tthe steady state is from <%f> to <%f> frames", _steadyStart, _steadyEnd); + } + + if(xMethod_D->FirstChildElement("getProfile")) + if ( string(xMethod_D->FirstChildElement("getProfile")->Attribute("enabled"))=="true") + { + _isGetProfile = true; + _scaleX =xmltof(xMethod_D->FirstChildElement("getProfile")->Attribute("scale_x"))*M2CM; + _scaleY =xmltof(xMethod_D->FirstChildElement("getProfile")->Attribute("scale_y"))*M2CM; + Log->Write("INFO: \tProfiles will be calculated" ); + Log->Write("INFO: \tThe scale of the discretized cell in x, y direction are: < %f >m and < %f >m ",_scaleX*CMtoM, _scaleY*CMtoM); + } + } + } + Log->Write("INFO: \tFinish parsing inifile"); + return true; } const string& ArgumentParser::GetErrorLogFile() const { - return _errorLogFile; + return _errorLogFile; } int ArgumentParser::GetLog() const { - return _log; + return _log; } const string& ArgumentParser::GetGeometryFilename() const { - return _geometryFileName; + return _geometryFileName; } const FileFormat& ArgumentParser::GetFileFormat() const { - return _fileFormat; + return _fileFormat; } const string& ArgumentParser::GetTrajectoriesLocation() const { - return _trajectoriesLocation; + return _trajectoriesLocation; } const string& ArgumentParser::GetTrajectoriesFilename() const { - return _trajectoriesFilename; + return _trajectoriesFilename; } char ArgumentParser::GetVComponent() const { - return _vComponent; + return _vComponent; } int ArgumentParser::GetDelatT_Vins() const { - return _delatTVInst; + return _delatTVInst; } bool ArgumentParser::GetIsMethodA() const { - return _isMethodA; + return _isMethodA; } int ArgumentParser::GetTimeIntervalA() const { - return _timeIntervalA; + return _timeIntervalA; } bool ArgumentParser::GetIsMethodB() const { - return _isMethodB; + return _isMethodB; } bool ArgumentParser::GetIsMethodC() const { - return _isMethodC; + return _isMethodC; } bool ArgumentParser::GetIsMethodD() const { - return _isMethodD; + return _isMethodD; } bool ArgumentParser::GetIsCutByCircle() const { - return _isCutByCircle; + return _isCutByCircle; } double ArgumentParser::GetCutRadius() const { - return _cutRadius; + return _cutRadius; } int ArgumentParser::GetCircleEdges() const { - return _circleEdges; + return _circleEdges; } bool ArgumentParser::GetIsOutputGraph() const { - return _isOutputGraph; + return _isOutputGraph; } bool ArgumentParser::GetIsIndividualFD() const { - return _isIndividualFD; + return _isIndividualFD; } bool ArgumentParser::GetIsGetProfile() const { - return _isGetProfile; + return _isGetProfile; } double ArgumentParser::GetSteadyStart() const { - return _steadyStart; + return _steadyStart; } double ArgumentParser::GetSteadyEnd() const { - return _steadyEnd; + return _steadyEnd; } float ArgumentParser::GetScaleX() const { - return _scaleX; + return _scaleX; } float ArgumentParser::GetScaleY() const { - return _scaleY; + return _scaleY; } -int ArgumentParser::GetAreaIDforMethodA() const +vector<int> ArgumentParser::GetAreaIDforMethodA() const { - return _areaIDforMethodA; + return _areaIDforMethodA; } -int ArgumentParser::GetAreaIDforMethodB() const +vector<int> ArgumentParser::GetAreaIDforMethodB() const { - return _areaIDforMethodB; + return _areaIDforMethodB; } -int ArgumentParser::GetAreaIDforMethodC() const +vector<int> ArgumentParser::GetAreaIDforMethodC() const { - return _areaIDforMethodC; + return _areaIDforMethodC; } -int ArgumentParser::GetAreaIDforMethodD() const +vector<int> ArgumentParser::GetAreaIDforMethodD() const { - return _areaIDforMethodD; + return _areaIDforMethodD; } MeasurementArea* ArgumentParser::GetMeasurementArea(int id) { - if (_measurementAreas.count(id) == 0) - return NULL; - return _measurementAreas[id]; + if (_measurementAreas.count(id) == 0) + return NULL; + return _measurementAreas[id]; } diff --git a/general/ArgumentParser.h b/general/ArgumentParser.h index ec8b6c069d7282f545e3ac1dabe874a736ef6d52..54395c3ee0cd135963b81560f329089276e60042 100644 --- a/general/ArgumentParser.h +++ b/general/ArgumentParser.h @@ -31,7 +31,7 @@ #include <string> #include <vector> #include "Macros.h" -#include "../MeasurementArea.h" +#include "../methods/MeasurementArea.h" #include <boost/geometry/geometry.hpp> #include <boost/geometry/geometries/point_xy.hpp> @@ -41,9 +41,6 @@ using namespace boost::geometry; typedef model::d2::point_xy<double, cs::cartesian> point_2d; typedef model::polygon<point_2d> polygon_2d; -//using std::string; -//using std::vector; -//using std::map; class OutputHandler; extern OutputHandler* Log; @@ -74,16 +71,16 @@ private: double _steadyEnd; int _delatTVInst; int _timeIntervalA; - int _areaIDforMethodA; - int _areaIDforMethodB; - int _areaIDforMethodC; - int _areaIDforMethodD; + std::vector<int> _areaIDforMethodA; + std::vector<int> _areaIDforMethodB; + std::vector<int> _areaIDforMethodC; + std::vector<int> _areaIDforMethodD; float _scaleX; float _scaleY; int _log; std::map <int, MeasurementArea*> _measurementAreas; - void Usage(); + void Usage(const std::string file); public: // Konstruktor @@ -111,10 +108,10 @@ public: bool GetIsMethodB() const; bool GetIsMethodC() const; bool GetIsMethodD() const; - int GetAreaIDforMethodA() const; - int GetAreaIDforMethodB() const; - int GetAreaIDforMethodC() const; - int GetAreaIDforMethodD() const; + std::vector<int> GetAreaIDforMethodA() const; + std::vector<int> GetAreaIDforMethodB() const; + std::vector<int> GetAreaIDforMethodC() const; + std::vector<int> GetAreaIDforMethodD() const; bool GetIsCutByCircle() const; double GetCutRadius() const; int GetCircleEdges() const; @@ -126,7 +123,7 @@ public: float GetScaleX() const; float GetScaleY() const; int GetLog() const; - void ParseArgs(int argc, char **argv); + bool ParseArgs(int argc, char **argv); MeasurementArea* GetMeasurementArea(int id); @@ -134,7 +131,7 @@ public: * parse the initialization file * @param inifile */ - void ParseIniFile(std::string inifile); + bool ParseIniFile(const std::string& inifile); }; #endif /*ARGPARSER_H_*/ diff --git a/general/Macros.h b/general/Macros.h index 2830e3a4fa869b6818edf70e2ae25670f2dab560..044163b68cebe6a27846dd029a46c8c57adaea5d 100644 --- a/general/Macros.h +++ b/general/Macros.h @@ -1,8 +1,8 @@ /** * \file Macros.h * \date Jun 16, 2010 - * \version v0.5 - * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. + * \version v0.6 + * \copyright <2009-2015> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License * This file is part of JuPedSim. @@ -25,26 +25,30 @@ * * **/ - + #ifndef _MACROS_H #define _MACROS_H #include <cstdlib> #include <vector> +#include <map> #include <string.h> #include <algorithm> +#include <sstream> + -#define _USE_MATH_DEFINES -#include <math.h> +#ifndef M_PI #define M_PI 3.14159265358979323846 +#endif +#define _isnan(x) std::isnan(x) // should be true only when using this file in the simulation core //#define _SIMULATOR 1 -#define JPS_VERSION "0.5" -#define JPS_VERSION_MINOR 5 +#define JPS_VERSION "0.6" +#define JPS_VERSION_MINOR 6 #define JPS_VERSION_MAJOR 0 // disable openmp in debug mode @@ -56,14 +60,10 @@ #define J_EPS 0.001 #define J_EPS_EVENT 0.00001 //zum pruefen des aktuellen Zeitschrittes auf events #define J_EPS_DIST 0.05// [m] -#define J_EPS_INFO_DIST 2.0 /// [m] abstand für Informationsaustausch (GraphRouter) + #define J_EPS_GOAL 0.005 /// [m] Abstand zum Ziel, damit Fußgänger immer zu einem Raum gehört #define J_TOLERANZ 0.03 /// [m] Toleranz beim erstellen der Linien #define J_EPS_V 0.1 /// [m/s] wenn v<EPS_V wird mit 0 gerechnet -#define J_EPS_Pass 1E-10; // - -//TODO: why the limitation ? -#define NR_PEDS 5000 // routing macros #define J_QUEUE_VEL_THRESHOLD_NEW_ROOM 0.7 // [m/s] maximum speed to be considered in a queue while looking for a reference in a new room @@ -71,8 +71,6 @@ #define CBA_THRESHOLD 0.15 #define OBSTRUCTION 4 - -// Lenght of array // Length of array #define CLENGTH 1000 @@ -87,78 +85,188 @@ enum RoomState { - ROOM_CLEAN=0, - ROOM_SMOKED=1 + ROOM_CLEAN=0, + ROOM_SMOKED=1 +}; + +enum AgentType { + MALE=0, + FEMALE, + CHILD, + ELDERLY }; enum FileFormat { - FORMAT_XML_PLAIN, - FORMAT_XML_BIN, - FORMAT_PLAIN, - FORMAT_VTK, - FORMAT_XML_PLAIN_WITH_MESH + FORMAT_XML_PLAIN, + FORMAT_XML_BIN, + FORMAT_PLAIN, + FORMAT_VTK, + FORMAT_XML_PLAIN_WITH_MESH }; enum RoutingStrategy { - ROUTING_LOCAL_SHORTEST=1, - ROUTING_GLOBAL_SHORTEST, - ROUTING_QUICKEST, - ROUTING_DYNAMIC, - ROUTING_FROM_FILE, - ROUTING_NAV_MESH, - ROUTING_DUMMY, - ROUTING_SAFEST, - ROUTING_COGNITIVEMAP, - ROUTING_UNDEFINED =-1 + ROUTING_LOCAL_SHORTEST=1, + ROUTING_GLOBAL_SHORTEST, + ROUTING_QUICKEST, + ROUTING_FROM_FILE, + ROUTING_NAV_MESH, + ROUTING_DUMMY, + ROUTING_SAFEST, + ROUTING_COGNITIVEMAP, + ROUTING_UNDEFINED =-1 }; enum OperativModels { MODEL_GFCM=1, - MODEL_GOMPERTZ + MODEL_GOMPERTZ, +// MODEL_ORCA, +// MODEL_CFM, +// MODEL_VELO +// MODEL_GNM }; +enum AgentColorMode { + BY_VELOCITY=1, + BY_KNOWLEDGE, + BY_ROUTE, + BY_SPOTLIGHT +}; //global functions for convenience -inline char xmltob(const char * t,char v=0) +inline char xmltob(const char * t, char v = 0) { - if (t&&(*t)) return (char)atoi(t); - return v; + if (t && (*t)) return (char) atoi(t); + return v; } -inline int xmltoi(const char * t,int v=0) +inline int xmltoi(const char * t, int v = 0) { - if (t&&(*t)) return atoi(t); - return v; + if (t && (*t)) return atoi(t); + return v; } -inline long xmltol(const char * t,long v=0) +inline long xmltol(const char * t, long v = 0) { - if (t&&(*t)) return atol(t); - return v; + if (t && (*t)) return atol(t); + return v; } -inline double xmltof(const char * t,double v=0.0) +inline double xmltof(const char * t, double v = 0.0) { - if (t&&(*t)) return atof(t); - return v; + if (t && (*t)) return atof(t); + return v; } -inline const char * xmltoa(const char * t, const char * v="") +inline const char * xmltoa(const char * t, const char * v = "") { - if (t) return t; - return v; + if (t) return t; + return v; } -inline char xmltoc(const char * t,const char v='\0') +inline char xmltoc(const char * t, const char v = '\0') { - if (t&&(*t)) return *t; - return v; + if (t && (*t)) return *t; + return v; } +/** + * @return true if the element is present in the vector + */ template<typename A> -bool IsElementInVector(const std::vector<A> &vec, A& el) +inline bool IsElementInVector(const std::vector<A> &vec, A& el) { + typename std::vector<A>::const_iterator it; + it = std::find (vec.begin(), vec.end(), el); + if(it==vec.end()) { + return false; + } else { + return true; + } +} + +/** + * Implementation of a map with a default value. + * @return the default value if the element was not found in the map + */ +template <typename K, typename V> +inline V GetWithDef(const std::map <K,V> & m, const K & key, const V & defval ) { + typename std::map<K,V>::const_iterator it = m.find( key ); + if ( it == m.end() ) { + return defval; + } else { + return it->second; + } +} + +inline std::string concatenate(std::string const& name, int i) { + std::stringstream s; + s << name << i; + return s.str(); +} + +//************************************************************** +//useful colors attributes for debugging +//************************************************************** + +//Text attributes +#define OFF 0 //All attributes off +#define BRIGHT 1 //Bold on +// 4 Underscore (on monochrome display adapter only) +#define BLINK 5 //Blink on +// 7 Reverse video on +// 8 Concealed on + +// Foreground colors +#define BLACK 30 +#define CYAN 36 +#define WHITE 37 +#define RED 31 +#define GREEN 32 +#define YELLOW 33 +#define BLUE 34 +#define MAGENTA 35 + +// Background colors +#define BG_BLACK 40 +#define BG_RED 41 +#define BG_GREEN 42 +#define BG_YELLOW 43 +#define BG_BLUE 44 +#define BG_CYAN 47 +#define BG_WHITE 47 + +// Special caracters +#define HOME printf("\033[1;1H"); // cursor up left +#define CLEAR printf(" \033[2J"); //clear screen +#define RED_LINE printf("%c[%d;%d;%dm\n",0x1B, BRIGHT,RED,BG_BLACK); +#define GREEN_LINE printf("\t%c[%d;%d;%dm",0x1B, BRIGHT,GREEN,BG_BLACK); +#define BLUE_LINE printf("\t%c[%d;%d;%dm",0x1B, BRIGHT,BLUE,BG_BLACK); +#define MAGENTA_LINE printf("\t%c[%d;%d;%dm",0x1B, BRIGHT,MAGENTA,BG_BLACK); +#define YELLOW_LINE printf("\t%c[%d;%d;%dm",0x1B, BRIGHT,YELLOW,BG_BLACK); +#define OFF_LINE printf("%c[%dm\n", 0x1B, OFF); + + +//************************************************************** +//useful macros for debugging +//************************************************************** +#ifdef TRACE_LOGGING + +inline void _printDebugLine(const std::string& fileName, int lineNumber) { - typename std::vector<A>::const_iterator it; - it = std::find (vec.begin(), vec.end(), el); - if(it==vec.end()) { - return false; - } else { - return true; - } +unsigned found = fileName.find_last_of("/\\"); +std::cerr << "["<< lineNumber << "]: ---"<< fileName.substr(found+1)<< " ---"<<std::endl; } + +#define dtrace(...) \ + (_printDebugLine(__FILE__, __LINE__), \ + fprintf(stderr, __VA_ARGS__), \ + (void) fprintf(stderr, "\n")) + +#define derror(...) \ + (_printDebugLine(__FILE__, __LINE__), \ + fprintf(stderr, "ERROR: "), \ + fprintf(stderr, __VA_ARGS__) \ + ) +#else + +#define dtrace(...) ((void) 0) +#define derror(...) \ + (fprintf(stderr, __VA_ARGS__) \ + ) +#endif /* TRACE_LOGGING */ + #endif /* _MACROS_H */ diff --git a/geometry/Building.cpp b/geometry/Building.cpp index 6b5b1ffd8fc3384214c1dad6872628e0358c6e30..37ce0987b4568f09aebf49e5f325c9c245c1cc4b 100644 --- a/geometry/Building.cpp +++ b/geometry/Building.cpp @@ -1,7 +1,7 @@ /** * \file Building.cpp * \date Oct 1, 2014 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -34,8 +34,9 @@ #ifdef _SIMULATOR #include "../pedestrian/Pedestrian.h" #include "../mpi/LCGrid.h" -#include "../routing/RoutingEngine.h" #include "../routing/SafestPathRouter.h" +#include "../routing/RoutingEngine.h" +#include "../pedestrian/PedDistributor.h" #endif //#undef _OPENMP @@ -49,58 +50,73 @@ using namespace std; -/************************************************************ - Konstruktoren - ************************************************************/ - Building::Building() { _caption = "no_caption"; _projectFilename = ""; _geometryFilename= ""; - _rooms = vector<Room*>(); - _routingEngine = NULL; - _linkedCellGrid = NULL; + _routingEngine = nullptr; + _linkedCellGrid = nullptr; _savePathway = false; } +#ifdef _SIMULATOR +Building::Building(const std::string& filename, const std::string& rootDir, RoutingEngine& engine, PedDistributor& distributor, double linkedCellSize) +:_projectFilename(filename), _projectRootDir(rootDir), _routingEngine(&engine) +{ + _caption = "no_caption"; + _savePathway = false; + _linkedCellGrid = nullptr; + + //todo: what happens if any of these methods failed (return false)? throw exception ? + this->LoadGeometry(); + this->LoadRoutingInfo(filename); + this->AddSurroundingRoom(); + this->InitGeometry(); + this->LoadTrafficInfo(); + distributor.Distribute(this); + this->InitGrid(linkedCellSize); + _routingEngine->Init(this); + this->SanityCheck(); +} +#endif Building::~Building() { - for (int i = 0; i < GetNumberOfRooms(); i++) - delete _rooms[i]; + // + // for (int i = 0; i < GetNumberOfRooms(); i++) + // delete _rooms[i]; #ifdef _SIMULATOR - for(unsigned int p=0;p<_allPedestians.size();p++) - { - //delete _allPedestians[p]; - } - _allPedestians.clear(); - delete _routingEngine; - delete _linkedCellGrid; + for(unsigned int p=0;p<_allPedestians.size();p++) + { + //delete _allPedestians[p]; + } + _allPedestians.clear(); + delete _linkedCellGrid; #endif - if (_pathWayStream.is_open()) - _pathWayStream.close(); - - - for (map<int, Crossing*>::const_iterator iter = _crossings.begin(); - iter != _crossings.end(); ++iter) { - delete iter->second; - } - for (map<int, Transition*>::const_iterator iter = _transitions.begin(); - iter != _transitions.end(); ++iter) { - delete iter->second; - } - for (map<int, Hline*>::const_iterator iter = _hLines.begin(); - iter != _hLines.end(); ++iter) { - delete iter->second; - } - for (map<int, Goal*>::const_iterator iter = _goals.begin(); - iter != _goals.end(); ++iter) { - delete iter->second; - } + if (_pathWayStream.is_open()) + _pathWayStream.close(); + + + for (map<int, Crossing*>::const_iterator iter = _crossings.begin(); + iter != _crossings.end(); ++iter) { + delete iter->second; + } + for (map<int, Transition*>::const_iterator iter = _transitions.begin(); + iter != _transitions.end(); ++iter) { + delete iter->second; + } + for (map<int, Hline*>::const_iterator iter = _hLines.begin(); + iter != _hLines.end(); ++iter) { + delete iter->second; + } + for (map<int, Goal*>::const_iterator iter = _goals.begin(); + iter != _goals.end(); ++iter) { + delete iter->second; + } } /************************************************************ @@ -116,17 +132,6 @@ void Building::SetRoutingEngine(RoutingEngine* r) _routingEngine = r; } -void Building::SetRoom(Room* room, int index) -{ - if ((index >= 0) && (index < (int) _rooms.size())) { - _rooms[index] = room; - } else { - Log->Write("ERROR: \tWrong Index in CBuilding::SetRoom()"); - exit(EXIT_FAILURE); - } -} - - /************************************************************* Getter-Funktionen ************************************************************/ @@ -151,24 +156,25 @@ int Building::GetNumberOfGoals() const return _transitions.size() + _hLines.size() + _crossings.size(); } -const vector<Room*>& Building::GetAllRooms() const +const std::map<int, std::unique_ptr<Room> >& Building::GetAllRooms() const { return _rooms; } Room* Building::GetRoom(int index) const { - if ((index >= 0) && (index < (int) _rooms.size())) { - return _rooms[index]; - } else { + //todo: obsolete since the check is done by .at() + if(_rooms.count(index)==0) + { Log->Write("ERROR: Wrong 'index' in CBuiling::GetRoom() Room ID: %d size: %d",index, _rooms.size()); Log->Write("\tControl your rooms ID and make sure they are in the order 0, 1, 2,.. "); - exit(EXIT_FAILURE); + return nullptr; } + //return _rooms[index]; + return _rooms.at(index).get(); } - LCGrid* Building::GetGrid() const { return _linkedCellGrid; @@ -176,7 +182,7 @@ LCGrid* Building::GetGrid() const void Building::AddRoom(Room* room) { - _rooms.push_back(room); + _rooms[room->GetID()]=std::unique_ptr<Room>(room); } void Building::AddSurroundingRoom() @@ -189,17 +195,17 @@ void Building::AddSurroundingRoom() double y_max = -FLT_MAX; //finding the bounding of the grid // and collect the pedestrians - for (unsigned int r = 0; r < _rooms.size(); r++) { - Room* room = _rooms[r]; - for (int j = 0; j < room->GetNumberOfSubRooms(); j++) { - SubRoom* sub = room->GetSubRoom(j); - const vector<Wall>& allWalls = sub->GetAllWalls(); - - for (unsigned int a = 0; a < allWalls.size(); a++) { - double x1 = allWalls[a].GetPoint1().GetX(); - double y1 = allWalls[a].GetPoint1().GetY(); - double x2 = allWalls[a].GetPoint2().GetX(); - double y2 = allWalls[a].GetPoint2().GetY(); + + for(auto&& itr_room: _rooms) + { + for(auto&& itr_subroom: itr_room.second->GetAllSubRooms()) + { + for (auto&& wall:itr_subroom.second->GetAllWalls()) + { + double x1 = wall.GetPoint1().GetX(); + double y1 = wall.GetPoint1().GetY(); + double x2 = wall.GetPoint2().GetX(); + double y2 = wall.GetPoint2().GetY(); double xmax = (x1 > x2) ? x1 : x2; double xmin = (x1 > x2) ? x2 : x1; @@ -214,16 +220,14 @@ void Building::AddSurroundingRoom() } } - for (map<int, Goal*>::const_iterator itr = _goals.begin(); - itr != _goals.end(); ++itr) { - - const vector<Wall>& allWalls = itr->second->GetAllWalls(); - - for (unsigned int a = 0; a < allWalls.size(); a++) { - double x1 = allWalls[a].GetPoint1().GetX(); - double y1 = allWalls[a].GetPoint1().GetY(); - double x2 = allWalls[a].GetPoint2().GetX(); - double y2 = allWalls[a].GetPoint2().GetY(); + for(auto&& itr_goal:_goals) + { + for(auto&& wall: itr_goal.second->GetAllWalls()) + { + double x1 = wall.GetPoint1().GetX(); + double y1 = wall.GetPoint1().GetY(); + double x2 = wall.GetPoint2().GetX(); + double y2 = wall.GetPoint2().GetY(); double xmax = (x1 > x2) ? x1 : x2; double xmin = (x1 > x2) ? x2 : x1; @@ -236,7 +240,6 @@ void Building::AddSurroundingRoom() y_min = (ymin <= y_min) ? ymin : y_min; } } - //make the grid slightly larger. x_min = x_min - 10.0; x_max = x_max + 10.0; @@ -259,44 +262,45 @@ void Building::AddSurroundingRoom() } -void Building::InitGeometry() +bool Building::InitGeometry() { Log->Write("INFO: \tInit Geometry"); - for (int i = 0; i < GetNumberOfRooms(); i++) { - Room* room = GetRoom(i); - // Polygone berechnen - for (int j = 0; j < room->GetNumberOfSubRooms(); j++) { - SubRoom* s = room->GetSubRoom(j); - // Alle Übergänge in diesem Raum bestimmen - // Übergänge müssen zu Wänden ergänzt werden + + for(auto&& itr_room: _rooms) + { + for(auto&& itr_subroom: itr_room.second->GetAllSubRooms()) + { + //create a close polyline out of everything vector<Line*> goals = vector<Line*>(); - // crossings - const vector<Crossing*>& crossings = s->GetAllCrossings(); - for (unsigned int i = 0; i < crossings.size(); i++) { - goals.push_back(crossings[i]); + // collect all crossings + for(auto&& cros:itr_subroom.second->GetAllCrossings()) + { + goals.push_back(cros); } - - // and transitions - const vector<Transition*>& transitions = s->GetAllTransitions(); - for (unsigned int i = 0; i < transitions.size(); i++) { - goals.push_back(transitions[i]); + //collect all transitions + for(auto&& trans:itr_subroom.second->GetAllTransitions()) + { + goals.push_back(trans); } - // initialize the poly - s->ConvertLineToPoly(goals); - s->CalculateArea(); - goals.clear(); + if(! itr_subroom.second->ConvertLineToPoly(goals)) + return false; + itr_subroom.second->CalculateArea(); //do the same for the obstacles that are closed - const vector<Obstacle*>& obstacles = s->GetAllObstacles(); - for (unsigned int obs = 0; obs < obstacles.size(); ++obs) { - if (obstacles[obs]->GetClosed() == 1) - obstacles[obs]->ConvertLineToPoly(); + for(auto&& obst:itr_subroom.second->GetAllObstacles()) + { + if (obst->GetClosed() == 1) + if(!obst->ConvertLineToPoly()) + return false; } } } + Log->Write("INFO: \tInit Geometry successful!!!\n"); + + return true; } @@ -324,7 +328,7 @@ const std::string& Building::GetGeometryFilename() const return _geometryFilename; } -void Building::LoadGeometry(const std::string &geometryfile) +bool Building::LoadGeometry(const std::string &geometryfile) { //get the geometry filename from the project file string geoFilenameWithPath= _projectRootDir + geometryfile; @@ -335,7 +339,7 @@ void Building::LoadGeometry(const std::string &geometryfile) if (!doc.LoadFile()) { Log->Write("ERROR: \t%s", doc.ErrorDesc()); Log->Write("\t could not parse the project file"); - exit(EXIT_FAILURE); + return false; } Log->Write("INFO: \tParsing the geometry file"); @@ -352,31 +356,32 @@ void Building::LoadGeometry(const std::string &geometryfile) if (!docGeo.LoadFile()) { Log->Write("ERROR: \t%s", docGeo.ErrorDesc()); Log->Write("\t could not parse the geometry file"); - exit(EXIT_FAILURE); + return false; } TiXmlElement* xRootNode = docGeo.RootElement(); if( ! xRootNode ) { Log->Write("ERROR:\tRoot element does not exist"); - exit(EXIT_FAILURE); + return false; } if( xRootNode->ValueStr () != "geometry" ) { Log->Write("ERROR:\tRoot element value is not 'geometry'."); - exit(EXIT_FAILURE); + return false; } if(xRootNode->Attribute("unit")) if(string(xRootNode->Attribute("unit")) != "m") { - Log->Write("ERROR:\tOnly the unit m (meters) is supported for the geometry. \n\tYou supplied [%s]",xRootNode->Attribute("unit")); - exit(EXIT_FAILURE); + Log->Write("ERROR:\tOnly the unit m (meters) is supported. \n\tYou supplied [%s]",xRootNode->Attribute("unit")); + return false; } + double version = xmltof(xRootNode->Attribute("version"), -1); - if (version != 0.5) { // @todo version number is hard coded + if (version > std::stod(JPS_VERSION)) { Log->Write(" \tWrong geometry version!"); Log->Write(" \tOnly version >= %s supported",JPS_VERSION); Log->Write(" \tPlease update the version of your geometry file to %s",JPS_VERSION); - exit(EXIT_FAILURE); + return false; } _caption = xmltoa(xRootNode->Attribute("caption"), "virtual building"); @@ -387,13 +392,14 @@ void Building::LoadGeometry(const std::string &geometryfile) TiXmlNode* xRoomsNode = xRootNode->FirstChild("rooms"); if (!xRoomsNode) { Log->Write("ERROR: \tThe geometry should have at least one room and one subroom"); - exit(EXIT_FAILURE); + return false; } for(TiXmlElement* xRoom = xRoomsNode->FirstChildElement("room"); xRoom; xRoom = xRoom->NextSiblingElement("room")) { Room* room = new Room(); + //make_unique<Song> string room_id = xmltoa(xRoom->Attribute("id"), "-1"); room->SetID(xmltoi(room_id.c_str(), -1)); @@ -416,13 +422,16 @@ void Building::LoadGeometry(const std::string &geometryfile) string subroom_id = xmltoa(xSubRoom->Attribute("id"), "-1"); - string closed = xmltoa(xSubRoom->Attribute("closed"), "0"); + string SubroomClosed = xmltoa(xSubRoom->Attribute("closed"), "0"); string type = xmltoa(xSubRoom->Attribute("class"),"subroom"); //get the equation of the plane if any double A_x = xmltof(xSubRoom->Attribute("A_x"), 0.0); double B_y = xmltof(xSubRoom->Attribute("B_y"), 0.0); + + // assume either the old "C_z" or the new "C" double C_z = xmltof(xSubRoom->Attribute("C_z"), 0.0); + C_z = xmltof(xSubRoom->Attribute("C"), C_z); SubRoom* subroom = NULL; @@ -430,7 +439,7 @@ void Building::LoadGeometry(const std::string &geometryfile) if(xSubRoom->FirstChildElement("up")==NULL) { Log->Write("ERROR:\t the attribute <up> and <down> are missing for the stair"); Log->Write("ERROR:\t check your geometry file"); - exit(EXIT_FAILURE); + return false; } double up_x = xmltof( xSubRoom->FirstChildElement("up")->Attribute("px"), 0.0); double up_y = xmltof( xSubRoom->FirstChildElement("up")->Attribute("py"), 0.0); @@ -476,13 +485,13 @@ void Building::LoadGeometry(const std::string &geometryfile) int id = xmltof(xObstacle->Attribute("id"), -1); int height = xmltof(xObstacle->Attribute("height"), 0); - double closed = xmltof(xObstacle->Attribute("closed"), 0); - string caption = xmltoa(xObstacle->Attribute("caption"),"-1"); + double ObstClosed = xmltof(xObstacle->Attribute("closed"), 0); + string ObstCaption = xmltoa(xObstacle->Attribute("caption"),"-1"); Obstacle* obstacle = new Obstacle(); obstacle->SetId(id); - obstacle->SetCaption(caption); - obstacle->SetClosed(closed); + obstacle->SetCaption(ObstCaption); + obstacle->SetClosed(ObstClosed); obstacle->SetHeight(height); //looking for polygons (walls) @@ -585,12 +594,12 @@ void Building::LoadGeometry(const std::string &geometryfile) subroom->AddTransition(t); } if (room2_id != -1 && subroom2_id != -1) { - Room* room = _rooms[room2_id]; + auto&& room = _rooms[room2_id]; SubRoom* subroom = room->GetSubRoom(subroom2_id); //subroom->AddGoalID(t->GetUniqueID()); //MPI room->AddTransitionID(t->GetUniqueID()); - t->SetRoom2(room); + t->SetRoom2(room.get()); t->SetSubRoom2(subroom); //new implementation @@ -600,8 +609,10 @@ void Building::LoadGeometry(const std::string &geometryfile) AddTransition(t); } - Log->Write("INFO: \tLoading building file successful!!!\n"); + + //everything went fine + return true; } @@ -631,9 +642,10 @@ void Building::WriteToErrorLog() const Room* Building::GetRoom(string caption) const { - for (unsigned int r = 0; r < _rooms.size(); r++) { - if (_rooms[r]->GetCaption() == caption) - return _rooms[r]; + for(const auto& it: _rooms) + { + if(it.second->GetCaption()==caption) + return it.second.get(); } Log->Write("ERROR: Room not found with caption " + caption); //return NULL; @@ -645,8 +657,8 @@ void Building::AddCrossing(Crossing* line) if (_crossings.count(line->GetID()) != 0) { char tmp[CLENGTH]; sprintf(tmp, - "ERROR: Duplicate index for crossing found [%d] in Routing::AddCrossing()", - line->GetID()); + "ERROR: Duplicate index for crossing found [%d] in Routing::AddCrossing()", + line->GetID()); Log->Write(tmp); exit(EXIT_FAILURE); } @@ -658,8 +670,8 @@ void Building::AddTransition(Transition* line) if (_transitions.count(line->GetID()) != 0) { char tmp[CLENGTH]; sprintf(tmp, - "ERROR: Duplicate index for transition found [%d] in Routing::AddTransition()", - line->GetID()); + "ERROR: Duplicate index for transition found [%d] in Routing::AddTransition()", + line->GetID()); Log->Write(tmp); exit(EXIT_FAILURE); } @@ -672,12 +684,12 @@ void Building::AddHline(Hline* line) // check if the lines are identical Hline* ori= _hLines[line->GetID()]; if(ori->operator ==(*line)) { - Log->Write("INFO: Skipping identical hlines with ID [%d]",line->GetID()); + Log->Write("INFO: \tSkipping identical hlines with ID [%d]",line->GetID()); return; } else { Log->Write( - "ERROR: Duplicate index for hlines found [%d] in Routing::AddHline(). You have [%d] hlines", - line->GetID(), _hLines.size()); + "ERROR: Duplicate index for hlines found [%d] in Routing::AddHline(). You have [%d] hlines", + line->GetID(), _hLines.size()); exit(EXIT_FAILURE); } } @@ -688,8 +700,8 @@ void Building::AddGoal(Goal* goal) { if (_goals.count(goal->GetId()) != 0) { Log->Write( - "ERROR: Duplicate index for goal found [%d] in Routing::AddGoal()", - goal->GetId()); + "ERROR: Duplicate index for goal found [%d] in Routing::AddGoal()", + goal->GetId()); exit(EXIT_FAILURE); } _goals[goal->GetId()] = goal; @@ -737,8 +749,8 @@ Transition* Building::GetTransition(int ID) return NULL; else { Log->Write( - "ERROR: I could not find any transition with the 'ID' [%d]. You have defined [%d] transitions", - ID, _transitions.size()); + "ERROR: I could not find any transition with the 'ID' [%d]. You have defined [%d] transitions", + ID, _transitions.size()); exit(EXIT_FAILURE); } } @@ -753,8 +765,8 @@ Goal* Building::GetFinalGoal(int ID) return NULL; else { Log->Write( - "ERROR: I could not find any goal with the 'ID' [%d]. You have defined [%d] goals", - ID, _goals.size()); + "ERROR: I could not find any goal with the 'ID' [%d]. You have defined [%d] goals", + ID, _goals.size()); exit(EXIT_FAILURE); } } @@ -762,11 +774,11 @@ Goal* Building::GetFinalGoal(int ID) Crossing* Building::GetTransOrCrossByName(string caption) const { - { //eventually map<int, Transition*>::const_iterator itr; - for(itr = _transitions.begin(); itr != _transitions.end(); ++itr) { + for(itr = _transitions.begin(); itr != _transitions.end(); ++itr) + { if (itr->second->GetCaption() == caption) return itr->second; } @@ -774,7 +786,8 @@ Crossing* Building::GetTransOrCrossByName(string caption) const { //finally the crossings map<int, Crossing*>::const_iterator itr; - for(itr = _crossings.begin(); itr != _crossings.end(); ++itr) { + for(itr = _crossings.begin(); itr != _crossings.end(); ++itr) + { if (itr->second->GetCaption() == caption) return itr->second; } @@ -789,7 +802,8 @@ Hline* Building::GetTransOrCrossByUID(int id) const { //eventually transitions map<int, Transition*>::const_iterator itr; - for(itr = _transitions.begin(); itr != _transitions.end(); ++itr) { + for(itr = _transitions.begin(); itr != _transitions.end(); ++itr) + { if (itr->second->GetUniqueID()== id) return itr->second; } @@ -797,29 +811,32 @@ Hline* Building::GetTransOrCrossByUID(int id) const { //then the crossings map<int, Crossing*>::const_iterator itr; - for(itr = _crossings.begin(); itr != _crossings.end(); ++itr) { + for(itr = _crossings.begin(); itr != _crossings.end(); ++itr) + { if (itr->second->GetUniqueID() == id) return itr->second; } } { //finally the hlines - for(auto itr = _hLines.begin(); itr != _hLines.end(); ++itr) { + for(auto itr = _hLines.begin(); itr != _hLines.end(); ++itr) + { if (itr->second->GetUniqueID() == id) return itr->second; } } - Log->Write("WARNING: No Transition or Crossing or hline with ID %d: " ,id); + Log->Write("ERROR: No Transition or Crossing or hline with ID %d: " ,id); return NULL; } SubRoom* Building::GetSubRoomByUID( int uid) { - for (unsigned int i = 0; i < _rooms.size(); i++) { - Room* room = _rooms[i]; - for (int j = 0; j < room->GetNumberOfSubRooms(); j++) { - SubRoom* sub = room->GetSubRoom(j); - if (sub->GetUID()==uid) return sub;; + for(auto&& itr_room: _rooms) + { + for(auto&& itr_subroom: itr_room.second->GetAllSubRooms()) + { + if(itr_subroom.second->GetUID()==uid) + return itr_subroom.second.get(); } } Log->Write("ERROR:\t No subroom exits with the unique id %d",uid); @@ -828,11 +845,12 @@ SubRoom* Building::GetSubRoomByUID( int uid) bool Building::IsVisible(Line* l1, Line* l2, bool considerHlines) { - for (unsigned int i = 0; i < _rooms.size(); i++) { - Room* room = _rooms[i]; - for (int j = 0; j < room->GetNumberOfSubRooms(); j++) { - SubRoom* sub = room->GetSubRoom(j); - if(sub->IsVisible(l1,l2,considerHlines)==false) return false; + + for(auto&& itr_room: _rooms) + { + for(auto&& itr_subroom: itr_room.second->GetAllSubRooms()) + { + if(itr_subroom.second->IsVisible(l1,l2,considerHlines)==false) return false; } } return true; @@ -840,129 +858,37 @@ bool Building::IsVisible(Line* l1, Line* l2, bool considerHlines) bool Building::IsVisible(const Point& p1, const Point& p2, bool considerHlines) { - for (unsigned int i = 0; i < _rooms.size(); i++) { - Room* room = _rooms[i]; - for (int j = 0; j < room->GetNumberOfSubRooms(); j++) { - SubRoom* sub = room->GetSubRoom(j); - if(sub->IsVisible(p1,p2,considerHlines)==false) return false; + for(auto&& itr_room: _rooms) + { + for(auto&& itr_subroom: itr_room.second->GetAllSubRooms()) + { + if(itr_subroom.second->IsVisible(p1,p2,considerHlines)==false) return false; } } + return true; } -void Building::SanityCheck() +bool Building::SanityCheck() { Log->Write("INFO: \tChecking the geometry for artifacts"); - for (unsigned int i = 0; i < _rooms.size(); i++) { - Room* room = _rooms[i]; - - for (int j = 0; j < room->GetNumberOfSubRooms(); j++) { - SubRoom* sub = room->GetSubRoom(j); - sub->SanityCheck(); - } - } - Log->Write("INFO: \t...Done!!!\n"); -} + bool status = true; -#ifdef _SIMULATOR - - -void Building::Update() -{ - //pedestrians to be deleted - //you should better create this in the constructor and allocate it once. - vector<Pedestrian*> pedsToReposition; - pedsToReposition.reserve(100); - vector<Pedestrian*> pedsToRemove; - pedsToRemove.reserve(100); - - for(unsigned int p=0;p<_allPedestians.size();p++) + for(auto&& itr_room: _rooms) { - Pedestrian* ped = _allPedestians[p]; - Room* room = GetRoom(ped->GetRoomID()); - SubRoom* sub = room->GetSubRoom(ped->GetSubRoomID()); - - //set the new room if needed - if ((ped->GetFinalDestination() == FINAL_DEST_OUT) - && (GetRoom(ped->GetRoomID())->GetCaption() == "outside")) + for(auto&& itr_subroom: itr_room.second->GetAllSubRooms()) { - pedsToRemove.push_back(ped); - } else if ((ped->GetFinalDestination() != FINAL_DEST_OUT) - && (_goals[ped->GetFinalDestination()]->Contains( - ped->GetPos()))) { - pedsToRemove.push_back(ped); - } else if (!sub->IsInSubRoom(ped)) { - pedsToReposition.push_back(ped); - } - } - - - // reset that pedestrians who left their room not via the intended exit - for (unsigned int p = 0; p < pedsToReposition.size(); p++) { - Pedestrian* ped = pedsToReposition[p]; - bool assigned = false; - for (int i = 0; i < GetNumberOfRooms(); i++) { - Room* room = GetRoom(i); - //if(room->GetCaption()=="outside") continue; - for (int j = 0; j < room->GetNumberOfSubRooms(); j++) { - SubRoom* sub = room->GetSubRoom(j); - SubRoom* old_sub= _rooms[ped->GetRoomID()]->GetSubRoom(ped->GetSubRoomID()); - if ((sub->IsInSubRoom(ped->GetPos())) && (sub->IsDirectlyConnectedWith(old_sub))) { - ped->SetRoomID(room->GetID(), room->GetCaption()); - ped->SetSubRoomID(sub->GetSubRoomID()); - ped->ClearMentalMap(); // reset the destination - //ped->FindRoute(); - assigned = true; - break; - } - } - if (assigned == true) - break; // stop the loop - } - if (assigned == false) { - pedsToRemove.push_back(ped); + if (!itr_subroom.second->SanityCheck()) + status = false; } } - // remove the pedestrians that have left the facility - for (unsigned int p = 0; p < pedsToRemove.size(); p++) - { - DeletePedestrian(pedsToRemove[p]); - } + Log->Write("INFO: \t...Done!!!\n"); + return status; +} - // find the new goals, the parallel way - //FIXME temporary fix for the safest path router - if (dynamic_cast<SafestPathRouter*>(_routingEngine->GetRouter(1))) - { - SafestPathRouter* spr = dynamic_cast<SafestPathRouter*>(_routingEngine->GetRouter(1)); - spr->ComputeAndUpdateDestinations(_allPedestians); - } - else - { - unsigned int nSize = _allPedestians.size(); - int nThreads = omp_get_max_threads(); - int partSize = nSize / nThreads; - -#pragma omp parallel default(shared) num_threads(nThreads) - { - const int threadID = omp_get_thread_num(); - int start = threadID * partSize; - int end = (threadID + 1) * partSize - 1; - if ((threadID == nThreads - 1)) - end = nSize - 1; - - for (int p = start; p <= end; ++p) { - if (_allPedestians[p]->FindRoute() == -1) { - //a destination could not be found for that pedestrian - Log->Write("\tINFO: \tCould not found a route for pedestrian %d",_allPedestians[p]->GetID()); - DeletePedestrian(_allPedestians[p]); - //exit(EXIT_FAILURE); - } - } - } - } -} +#ifdef _SIMULATOR void Building::UpdateGrid() @@ -980,17 +906,16 @@ void Building::InitGrid(double cellSize) //finding the bounding of the grid // and collect the pedestrians - for (unsigned int r = 0; r < _rooms.size(); r++) { - Room* room = _rooms[r]; - for (int j = 0; j < room->GetNumberOfSubRooms(); j++) { - SubRoom* sub = room->GetSubRoom(j); - const vector<Wall>& allWalls = sub->GetAllWalls(); - - for (unsigned int a = 0; a < allWalls.size(); a++) { - double x1 = allWalls[a].GetPoint1().GetX(); - double y1 = allWalls[a].GetPoint1().GetY(); - double x2 = allWalls[a].GetPoint2().GetX(); - double y2 = allWalls[a].GetPoint2().GetY(); + for(auto&& itr_room: _rooms) + { + for(auto&& itr_subroom: itr_room.second->GetAllSubRooms()) + { + for (auto&& wall:itr_subroom.second->GetAllWalls()) + { + double x1 = wall.GetPoint1().GetX(); + double y1 = wall.GetPoint1().GetY(); + double x2 = wall.GetPoint2().GetX(); + double y2 = wall.GetPoint2().GetY(); double xmax = (x1 > x2) ? x1 : x2; double xmin = (x1 > x2) ? x2 : x1; @@ -1034,25 +959,25 @@ void Building::InitGrid(double cellSize) Log->Write("INFO: \tDone with Initializing the grid "); } -void Building::LoadRoutingInfo(const string &filename) +bool Building::LoadRoutingInfo(const string &filename) { Log->Write("INFO:\tLoading extra routing information"); if (filename == "") { Log->Write("INFO:\t No file supplied !"); Log->Write("INFO:\t done with loading extra routing information"); - return; + return true; } TiXmlDocument docRouting(filename); if (!docRouting.LoadFile()) { Log->Write("ERROR: \t%s", docRouting.ErrorDesc()); Log->Write("ERROR: \t could not parse the routing file"); - exit(EXIT_FAILURE); + return false; } TiXmlElement* xRootNode = docRouting.RootElement(); if( ! xRootNode ) { Log->Write("ERROR:\tRoot element does not exist"); - exit(EXIT_FAILURE); + return false; } //load goals and routes @@ -1077,7 +1002,7 @@ void Building::LoadRoutingInfo(const string &filename) xPolyVertices = xPolyVertices->NextSiblingElement("polygon")) { for (TiXmlElement* xVertex = xPolyVertices->FirstChildElement( - "vertex"); + "vertex"); xVertex && xVertex != xPolyVertices->LastChild("vertex"); xVertex = xVertex->NextSiblingElement("vertex")) { @@ -1089,7 +1014,9 @@ void Building::LoadRoutingInfo(const string &filename) } } - goal->ConvertLineToPoly(); + if(!goal->ConvertLineToPoly()) + return false; + AddGoal(goal); _routingEngine->AddFinalDestinationID(goal->GetId()); } @@ -1104,7 +1031,7 @@ void Building::LoadRoutingInfo(const string &filename) double id = xmltof(trip->Attribute("id"), -1); if (id == -1) { Log->Write("ERROR:\t id missing for trip"); - exit(EXIT_FAILURE); + return false; } string sTrip = trip->FirstChild()->ValueStr(); vector<string> vTrip; @@ -1119,9 +1046,10 @@ void Building::LoadRoutingInfo(const string &filename) _routingEngine->AddTrip(vTrip); } Log->Write("INFO:\tdone with loading extra routing information"); + return true; } -void Building::LoadTrafficInfo() +bool Building::LoadTrafficInfo() { Log->Write("INFO:\tLoading the traffic info file"); @@ -1131,14 +1059,13 @@ void Building::LoadTrafficInfo() if (!doc.LoadFile()) { Log->Write("ERROR: \t%s", doc.ErrorDesc()); Log->Write("ERROR: \t could not parse the project file"); - exit(EXIT_FAILURE); + return false; } TiXmlNode* xRootNode = doc.RootElement()->FirstChild("traffic_constraints"); if( ! xRootNode ) { Log->Write("WARNING:\tcould not find any traffic information"); - return; - //exit(EXIT_FAILURE); + return true; } //processing the rooms node @@ -1172,6 +1099,7 @@ void Building::LoadTrafficInfo() } } Log->Write("INFO:\tDone with loading traffic info file"); + return true; } @@ -1239,7 +1167,7 @@ void Building::AddPedestrian(Pedestrian* ped) _allPedestians.push_back(ped); } -void Building::GetPedestrians(int room, int subroom, std::vector<Pedestrian*>& peds) +void Building::GetPedestrians(int room, int subroom, std::vector<Pedestrian*>& peds) const { for(unsigned int p = 0;p<_allPedestians.size();p++){ Pedestrian* ped=_allPedestians[p]; @@ -1281,7 +1209,7 @@ void Building::InitSavePedPathway(const string &filename) void Building::StringExplode(string str, string separator, - vector<string>* results) + vector<string>* results) { size_t found; found = str.find_first_of(separator); @@ -1310,11 +1238,6 @@ Pedestrian* Building::GetPedestrian(int pedID) const return NULL; } -int Building::GetNumberOfPedestrians() const -{ - return _allPedestians.size(); -} - Transition* Building::GetTransitionByUID(int uid) const { //eventually @@ -1327,4 +1250,133 @@ Transition* Building::GetTransitionByUID(int uid) const } +bool Building::SaveGeometry(const std::string &filename) +{ + std::stringstream geometry; + + //write the header + geometry<< "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>"<<endl; + geometry<< "<geometry version=\"0.5\" caption=\"second life\" unit=\"m\"\n " + " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n " + " xsi:noNamespaceSchemaLocation=\"http://134.94.2.137/jps_geoemtry.xsd\">"<<endl<<endl; + + //write the rooms + geometry<<"<rooms>"<<endl; + for (auto&& itroom : _rooms) + { + auto&& room=itroom.second; + geometry<<"\t<room id =\""<<room->GetID()<<"\" caption =\""<<room->GetCaption()<<"\">"<<endl; + for(auto&& itr_sub : room->GetAllSubRooms()) + { + auto&& sub=itr_sub.second; + const double* plane=sub->GetPlaneEquation(); + geometry<<"\t\t<subroom id =\""<<sub->GetSubRoomID() + <<"\" closed=\""<<sub->GetClosed() + <<"\" class=\""<<sub->GetType() + <<"\" A_x=\""<<plane[0] + <<"\" B_y=\""<<plane[1] + <<"\" C_z=\""<<plane[2]<<"\">"<<endl; + + + for (auto&& wall : sub->GetAllWalls()) + { + const Point& p1=wall.GetPoint1(); + const Point& p2=wall.GetPoint2(); + + geometry<<"\t\t\t<polygon caption=\"wall\" type=\""<<wall.GetType()<<"\">"<<endl + <<"\t\t\t\t<vertex px=\""<<p1._x<<"\" py=\""<<p1._y<<"\"/>"<<endl + <<"\t\t\t\t<vertex px=\""<<p2._x<<"\" py=\""<<p2._y<<"\"/>"<<endl + <<"\t\t\t</polygon>"<<endl; + } + + if(sub->GetType()=="stair") + { + const Point& up = ((Stair*)sub.get())->GetUp(); + const Point& down = ((Stair*)sub.get())->GetDown(); + geometry<<"\t\t\t<up px=\""<<up._x<<"\" py=\""<<up._y<<"\"/>"<<endl; + geometry<<"\t\t\t<down px=\""<<down._x<<"\" py=\""<<down._y<<"\"/>"<<endl; + } + + geometry<<"\t\t</subroom>"<<endl; + } + + //write the crossings + geometry<<"\t\t<crossings>"<<endl; + for (auto const& mapcross : _crossings) + { + Crossing* cross=mapcross.second; + + //only write the crossings in this rooms + if(cross->GetRoom1()->GetID()!=room->GetID()) continue; + + const Point& p1=cross->GetPoint1(); + const Point& p2=cross->GetPoint2(); + + geometry<<"\t<crossing id =\""<<cross->GetID() + <<"\" subroom1_id=\""<<cross->GetSubRoom1()->GetSubRoomID() + <<"\" subroom2_id=\""<<cross->GetSubRoom2()->GetSubRoomID()<<"\">"<<endl; + + geometry<<"\t\t<vertex px=\""<<p1._x<<"\" py=\""<<p1._y<<"\"/>"<<endl + <<"\t\t<vertex px=\""<<p2._x<<"\" py=\""<<p2._y<<"\"/>"<<endl + <<"\t</crossing>"<<endl; + } + geometry<<"\t\t</crossings>"<<endl; + geometry<<"\t</room>"<<endl; + } + + geometry<<"</rooms>"<<endl; + + //write the transitions + geometry<<"<transitions>"<<endl; + + for (auto const& maptrans : _transitions) + { + Transition* trans=maptrans.second; + const Point& p1=trans->GetPoint1(); + const Point& p2=trans->GetPoint2(); + int room2_id=-1; + int subroom2_id=-1; + if(trans->GetRoom2()) + { + room2_id=trans->GetRoom2()->GetID(); + subroom2_id=trans->GetSubRoom2()->GetSubRoomID(); + } + + geometry<<"\t<transition id =\""<<trans->GetID() + <<"\" caption=\""<<trans->GetCaption() + <<"\" type=\""<<trans->GetType() + <<"\" room1_id=\""<<trans->GetRoom1()->GetID() + <<"\" subroom1_id=\""<<trans->GetSubRoom1()->GetSubRoomID() + <<"\" room2_id=\""<<room2_id + <<"\" subroom2_id=\""<<subroom2_id<<"\">"<<endl; + + geometry<<"\t\t<vertex px=\""<<p1._x<<"\" py=\""<<p1._y<<"\"/>"<<endl + <<"\t\t<vertex px=\""<<p2._x<<"\" py=\""<<p2._y<<"\"/>"<<endl + <<"\t</transition>"<<endl; + + } + + geometry<<"</transitions>"<<endl; + geometry<<"</geometry>"<<endl; + //write the routing file + + //cout<<endl<<geometry.str()<<endl; + + ofstream geofile (filename); + if(geofile.is_open()) + { + geofile<<geometry.str(); + Log->Write("INFO:\tfile saved to %s",filename.c_str()); + } + else + { + Log->Write("ERROR:\tunable to save the geometry to %s",filename.c_str()); + return false; + } + + return true; +} + #endif // _SIMULATOR + + diff --git a/geometry/Building.h b/geometry/Building.h index 1fc9cfd55037b066ffad4ad440e97d8a1de710aa..d1983a5048e3a18d17616fef49c2d0a577908715 100644 --- a/geometry/Building.h +++ b/geometry/Building.h @@ -1,7 +1,7 @@ /** * \file Building.h * \date Oct 1, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -34,6 +34,7 @@ #include <fstream> #include <cfloat> #include <map> +#include <memory> #include "Room.h" #include "NavLine.h" @@ -47,20 +48,20 @@ class Pedestrian; class Transition; class LCGrid; class ForceModel; +class PedDistributor; - -class Building { +class Building +{ private: - std::string _caption; std::string _projectFilename; std::string _projectRootDir; std::string _geometryFilename; RoutingEngine* _routingEngine; LCGrid* _linkedCellGrid; - std::vector<Room*> _rooms; std::vector<Pedestrian*> _allPedestians; + std::map<int, std::unique_ptr<Room> > _rooms; std::map<int, Crossing*> _crossings; std::map<int, Transition*> _transitions; std::map<int, Hline*> _hLines; @@ -73,24 +74,22 @@ private: public: /// constructor Building(); + Building(const std::string&, const std::string&, RoutingEngine&, PedDistributor&, double); /// destructor virtual ~Building(); - void SetCaption(const std::string& s); void SetRoutingEngine(RoutingEngine* r); - void SetRoom(Room* room, int index); /// delete the ped from the ped vector void DeletePedestrian(Pedestrian* &ped); /// delete the ped from the simulation void AddPedestrian(Pedestrian* ped); - void GetPedestrians(int room, int subroom, std::vector<Pedestrian*>& peds); - + void GetPedestrians(int room, int subroom, std::vector<Pedestrian*>& peds) const; std::string GetCaption() const; RoutingEngine* GetRoutingEngine() const; - const std::vector<Room*>& GetAllRooms() const; + const std::map<int, std::unique_ptr<Room> >& GetAllRooms() const; const std::vector<Pedestrian*>& GetAllPedestrians() const; Pedestrian* GetPedestrian( int pedID) const; int GetNumberOfRooms() const; @@ -111,7 +110,6 @@ public: */ Hline* GetHline(int id); - /** * return the subroom with the corresponding unique identifier * @param uid ,the unique identifier @@ -133,21 +131,18 @@ public: */ bool IsVisible(const Point& p1, const Point& p2, bool considerHlines=false); - /** * @return a crossing or a transition matching the given caption. * Return NULL if none is found */ Crossing* GetTransOrCrossByName(std::string caption) const; - /** * @return a crossing or a transition or a hline matching the given uid. * Return NULL if none is found */ Hline* GetTransOrCrossByUID(int uid) const; - /** * @return the transition matching the uid */ @@ -156,20 +151,17 @@ public: //TOD0: rename later to GetGoal Goal* GetFinalGoal(int id); - int GetNumberOfPedestrians() const; - /** * @return the linked-cell grid used for spatial query */ LCGrid* GetGrid() const; // convenience methods - void InitGeometry(); + bool InitGeometry(); void InitGrid(double cellSize); //void InitRoomsAndSubroomsMap(); void InitSavePedPathway(const std::string &filename); void AddRoom(Room* room); - void Update(); void UpdateGrid(); void AddSurroundingRoom(); // add a final room (outside or world), that encompasses the complete geometry @@ -195,17 +187,25 @@ public: * * @param filename, the geometry file */ - void LoadGeometry(const std::string &geometryfile=""); + bool LoadGeometry(const std::string &geometryfile=""); + + /** + * Write the geometry to the given file. + * That will be useful in the geometry editor. + * @param filename the relative location of the file + * @return true if everything went fine. + */ + bool SaveGeometry(const std::string &filename); - void LoadTrafficInfo(); - void LoadRoutingInfo(const std::string &filename); + bool LoadTrafficInfo(); + bool LoadRoutingInfo(const std::string &filename); void WriteToErrorLog() const; /** * Check the scenario for possible errors and * output user specific informations. */ - void SanityCheck(); + bool SanityCheck(); private: diff --git a/geometry/Crossing.cpp b/geometry/Crossing.cpp index c75a29d035512c0934333a9f9c43a5e4181a3384..f4ce45a108009cbdf2a99601c5527ad0442b35b2 100644 --- a/geometry/Crossing.cpp +++ b/geometry/Crossing.cpp @@ -1,7 +1,7 @@ /** * \file Crossing.cpp * \date Nov 16, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -39,58 +39,28 @@ Crossing::Crossing() _room1 = NULL; _subRoom1 = NULL; _subRoom2 = NULL; - _caption = ""; } Crossing::~Crossing() { } - void Crossing::SetID(int ID) { _id = ID; } -void Crossing::SetRoom1(Room* r) -{ - _room1 = r; -} - -void Crossing::SetSubRoom1(SubRoom* r1) -{ - _subRoom1 = r1; -} - void Crossing::SetSubRoom2(SubRoom* r2) { _subRoom2 = r2; } -void Crossing::SetCaption(string s) -{ - _caption = s; -} // Getter-Funktionen int Crossing::GetID() const { return _id; } -string Crossing::GetCaption() const -{ - return _caption; -} -Room* Crossing::GetRoom1() const -{ - return _room1; -} - - -SubRoom* Crossing::GetSubRoom1() const -{ - return _subRoom1; -} SubRoom* Crossing::GetSubRoom2() const { @@ -115,13 +85,6 @@ bool Crossing::IsTransition() const return false; } - -bool Crossing::IsInRoom(int roomID) const -{ - return _room1->GetID() == roomID; -} - - bool Crossing::IsInSubRoom(int subroomID) const { bool r1, r2; @@ -154,7 +117,6 @@ SubRoom* Crossing::GetOtherSubRoom(int roomID, int subroomID) const // Ausgabe - void Crossing::WriteToErrorLog() const { string s; @@ -169,7 +131,7 @@ void Crossing::WriteToErrorLog() const } // TraVisTo Ausgabe -string Crossing::WriteElement() const +string Crossing::GetDescription() const { //return ""; string geometry; diff --git a/geometry/Crossing.h b/geometry/Crossing.h index 77d066fc24461087b0d417fb3f89ec38020e79dd..a2802b32be74fe270f57c5118ebc0e3c55e8cc10 100644 --- a/geometry/Crossing.h +++ b/geometry/Crossing.h @@ -1,7 +1,7 @@ /** * \file Crossing.h * \date Nov 16, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -38,11 +38,10 @@ class SubRoom; class Crossing : public Hline { private: - /// ? unique between crossings and transitions ? + /// TODO ? unique between crossings and transitions ? int _id; /// only one room needed, since a crossing only separates 2 subrooms Room* _room1; - std::string _caption; SubRoom* _subRoom1; SubRoom* _subRoom2; @@ -60,41 +59,11 @@ public: */ int GetID () const; - /** - * Set/Get the first room - */ - void SetRoom1(Room* r); - - /** - * Set/Get the crossing caption - */ - void SetCaption(std::string s); - - /** - * Set/Get the first subroom - */ - void SetSubRoom1(SubRoom* r1); - /** * Set/Get the second subroom */ void SetSubRoom2(SubRoom* r2); - /** - * Set/Get the crossing caption - */ - std::string GetCaption() const; - - /** - * Set/Get the first room - */ - Room* GetRoom1() const; - - /** - * Set/Get the first subroom - */ - SubRoom* GetSubRoom1() const; - /** * Set/Get the second subroom */ @@ -105,7 +74,6 @@ public: */ bool IsInSubRoom(int subroomID) const; - /** * @return true if the crossing is open = passable */ @@ -123,11 +91,6 @@ public: */ virtual bool IsTransition() const; - /** - * @return true if the crossing/transintion/hline is associated with the room - */ - virtual bool IsInRoom(int roomID) const; - /** * @return the other subroom not matching the data */ @@ -141,7 +104,7 @@ public: /** * @return a nicely formatted string representation of the object */ - virtual std::string WriteElement() const; + virtual std::string GetDescription() const; }; #endif /* _CROSSING_H */ diff --git a/geometry/Goal.cpp b/geometry/Goal.cpp index d352c255c9d05df363cc2529e8741632e5fad959..ff6c2705b03062d4478569e2fdcf2e99163f0fe5 100644 --- a/geometry/Goal.cpp +++ b/geometry/Goal.cpp @@ -1,7 +1,7 @@ /** * \file Goal.cpp * \date Spe 12, 2013 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -182,9 +182,8 @@ bool Goal::Contains(const Point& ped) const return false; } -void Goal::ConvertLineToPoly() +bool Goal::ConvertLineToPoly() { - vector<Line*> copy; vector<Point> tmpPoly; Point point; @@ -219,11 +218,11 @@ void Goal::ConvertLineToPoly() char tmp[CLENGTH]; sprintf(tmp, "ERROR: \tGoal::ConvertLineToPoly(): ID %d !!!\n", _id); Log->Write(tmp); - exit(0); + return false; } _poly = tmpPoly; - ComputeControid(); + return true; } const Point& Goal::GetCentroid() const diff --git a/geometry/Goal.h b/geometry/Goal.h index 3f239a570368db0b277b29009e9e734bbb4ffa82..cdd335e8105d71dec242538267508c33dd5914ba 100644 --- a/geometry/Goal.h +++ b/geometry/Goal.h @@ -1,7 +1,7 @@ /** * \file Goal.h * \date Sep 12, 2013 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -90,7 +90,7 @@ public: /** * Create the obstacles polygonal structure from the walls */ - void ConvertLineToPoly(); + bool ConvertLineToPoly(); /** * @return the Goal as a polygon diff --git a/geometry/Hline.cpp b/geometry/Hline.cpp index a88a5dd69b7ce564da5ed932a00257f09f7fb9e6..795d685220ade115fd8db8e96b888f361cc89718 100644 --- a/geometry/Hline.cpp +++ b/geometry/Hline.cpp @@ -1,7 +1,7 @@ /** * \file Hline.cpp * \date Aug 1, 2012 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -106,12 +106,11 @@ void Hline::WriteToErrorLog() const } // TraVisTo Ausgabe - -string Hline::WriteElement() const +string Hline::GetDescription() const { string geometry; char tmp[CLENGTH] = ""; - sprintf(tmp,"\t\t<hline ID=\"%d\" color = \"250\" caption=\"%d_%d\">\n",GetUniqueID(),GetID(),GetUniqueID()); + sprintf(tmp,"\t\t<hline ID=\"%d\" color = \"250\" caption=\"h_%d_%d\">\n",GetUniqueID(),GetID(),GetUniqueID()); geometry.append(tmp); //geometry.append("\t\t<door color=\"250\">\n"); sprintf(tmp, "\t\t\t<point xPos=\"%.2f\" yPos=\"%.2f\" zPos=\"%.2f\"/>\n", @@ -127,5 +126,3 @@ string Hline::WriteElement() const geometry.append("\t\t</hline>\n"); return geometry; } - - diff --git a/geometry/Hline.h b/geometry/Hline.h index fb42a23e0bcdfb2371a3e32d07da0de9d54ad10b..e2c2b8cf0a11bbf54020720cc41a027fde020272 100644 --- a/geometry/Hline.h +++ b/geometry/Hline.h @@ -1,7 +1,7 @@ /** * \file Hline.h * \date Aug 1, 2012 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -68,7 +68,6 @@ public: */ void SetSubRoom1(SubRoom* r); - /** * Set/Get the id of the line */ @@ -77,7 +76,7 @@ public: /** * Set/Get the line caption */ - std::string GetCaption() const; + virtual std::string GetCaption() const; /** * Set/Get the Room containing this line @@ -89,16 +88,15 @@ public: */ SubRoom* GetSubRoom1() const; - /** * @return true if the line is in the given subroom */ - bool IsInSubRoom(int subroomID) const; + virtual bool IsInSubRoom(int subroomID) const; /** * @return true if the line is in the given room */ - bool IsInRoom(int roomID) const; + virtual bool IsInRoom(int roomID) const; /** * Debug output @@ -108,7 +106,7 @@ public: /** * @return a nicely formatted string representation of the object */ - virtual std::string WriteElement() const; + virtual std::string GetDescription() const; }; #endif /* HLINE_H_ */ diff --git a/geometry/Line.cpp b/geometry/Line.cpp index b987e90f326e22a6209fefbd6399dcf679178283..e6383fdd0cf04d3b814348a9a8f9d1f30f751772 100644 --- a/geometry/Line.cpp +++ b/geometry/Line.cpp @@ -1,7 +1,7 @@ /** * \file Line.cpp * \date Sep 30, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -306,12 +306,12 @@ bool Line::operator==(const Line& l) const } /* Zwei Linien sind ungleich, wenn ihre beiden Punkte - * ungleich sind + * ungleich sind. * */ bool Line::operator!=(const Line& l) const { - return ((_point1 != l.GetPoint1() && _point2 != l.GetPoint2()) && - (_point2 != l.GetPoint1() && _point1 != l.GetPoint2())); + return (! this->operator ==(l) ); + } double Line::Length() const @@ -324,53 +324,59 @@ double Line::LengthSquare() const return (_point1 - _point2).NormSquare(); } +bool Line::IntersectionWith(const Point &p1, const Point &p2) const +{ + double deltaACy = _point1.GetY() - p1.GetY(); + double deltaDCx = p2.GetX() - p1.GetX(); + double deltaACx = _point1.GetX() - p1.GetX(); + double deltaDCy = p2.GetY() - p1.GetY(); + double deltaBAx = _point2.GetX() - _point1.GetX(); + double deltaBAy = _point2.GetY() - _point1.GetY(); + double denominator = deltaBAx * deltaDCy - deltaBAy * deltaDCx; + double numerator = deltaACy * deltaDCx - deltaACx * deltaDCy; + + double r = numerator / denominator; + if (r < 0.0 || r > 1.0) { + return false; + } + + double s = (deltaACy * deltaBAx - deltaACx * deltaBAy) / denominator; + if (s < 0.0 || s > 1.0) { + return false; + } + + if (denominator == 0.0) { + + // the lines are superposed + if (numerator == 0.0) { + + // the segment are superposed + if(IsInLineSegment(p1) || + IsInLineSegment(p2) ) return true; + else return false; + + } else { // the lines are just parallel and do not share a common point + + return false; + } + } + + return true; + +} + bool Line::IntersectionWith(const Line& l) const { + return this->IntersectionWith(l._point1, l._point2); +} - //if(ShareCommonPointWith(l)) return true; - - double deltaACy = _point1.GetY() - l.GetPoint1().GetY(); - double deltaDCx = l.GetPoint2().GetX() - l.GetPoint1().GetX(); - double deltaACx = _point1.GetX() - l.GetPoint1().GetX(); - double deltaDCy = l.GetPoint2().GetY() - l.GetPoint1().GetY(); - double deltaBAx = _point2.GetX() - _point1.GetX(); - double deltaBAy = _point2.GetY() - _point1.GetY(); - - double denominator = deltaBAx * deltaDCy - deltaBAy * deltaDCx; - double numerator = deltaACy * deltaDCx - deltaACx * deltaDCy; - - // the lines are parallel - if (denominator == 0.0) { - - // the lines are superposed - if (numerator == 0.0) { - - // the segment are superposed - if(IsInLineSegment(l.GetPoint1()) || - IsInLineSegment(l.GetPoint2()) ) return true; - else return false; - - } else { // the lines are just parallel and do not share a common point - - return false; - } - } - - // the lines intersect - double r = numerator / denominator; - if (r < 0.0 || r > 1.0) { - return false; - } - - double s = (deltaACy * deltaBAx - deltaACx * deltaBAy) / denominator; - if (s < 0.0 || s > 1.0) { - return false; - } +Line Line::enlarge(double d) const +{ + const Point& p1 = _point1; + const Point& p2 = _point2; + Point diff = (p1 - p2).Normalized() * d; - //Point PointF = Point ((float) (_point1._x + r * deltaBAx), (float) (_point1._y + r * deltaBAy)); - //cout<< l.toString() << " intersects with " << toString() <<endl; - //cout<<" at point " << PointF.toString()<<endl; - return true; + return Line(p1 + diff, p2 - diff); } bool Line::IsHorizontal() @@ -515,7 +521,7 @@ std::string Line::toString() const //insteed of a boolian double Line::GetIntersectionDistance(const Line & l) const { - +#define DEBUG 0 double deltaACy = _point1.GetY() - l.GetPoint1().GetY(); double deltaDCx = l.GetPoint2().GetX() - l.GetPoint1().GetX(); double deltaACx = _point1.GetX() - l.GetPoint1().GetX(); @@ -555,152 +561,79 @@ double Line::GetIntersectionDistance(const Line & l) const } Point PointF = Point ((float) (_point1._x + r * deltaBAx), (float) (_point1._y + r * deltaBAy)); + if(!IsInLineSegment(PointF)) //is point on the line? + return infinity; double dist = (_point1-PointF).NormSquare(); - //cout<< " MC Line.cpp 516" << l.toString() << " intersects with " << toString() <<endl; - //cout<<" at point " << PointF.toString()<<endl; - //cout << "distance is "<< sqrt(dist)<< "... return "<< dist<<endl; +#if DEBUG + printf("Enter GetIntersection\n"); + cout<< "\t" << l.toString() << " intersects with " << toString() <<endl; + cout<<"\t at point " << PointF.toString()<<endl; + cout << "\t\t --> distance is "<< sqrt(dist)<< "... return "<< dist<<endl; + printf("Leave GetIntersection\n"); +#endif return dist; } -//sign of the angle depends on the direction of the wall (l). -//the second point of l should be the nearest to the goal. -//the goal in the intended use case is the second point of -//the calling line -// -double Line::GetAngle(const Line & l) const -{ - const double pi= atan(1)*4; - double ax = _point1.GetX(); - double ay = _point1.GetY(); - double bx = _point2.GetX(); - double by = _point2.GetY(); - //printf("ax=%f, ay=%f --- bx=%f, by=%f\n", ax, ay, bx, by); - double diff_x1 = bx - ax; - double diff_y1 = by - ay; - // printf("diff_x1=%f, diff_y1=%f\n", diff_x1, diff_y1); - double cx =l.GetPoint1().GetX(); - double cy =l.GetPoint1().GetY(); - double dx =l.GetPoint2().GetX(); - double dy =l.GetPoint2().GetY(); - //printf("cx=%f, cy=%f --- dx=%f, dy=%f\n", cx, cy, dx, dy); - - double diff_x2 = dx - cx; - double diff_y2 = dy - cy; - // printf("diff_x2=%f, diff_y2=%f\n", diff_x2, diff_y2); - - double atanA = atan2( diff_y1, diff_x1 ); - double atanB = atan2( diff_y2, diff_x2); - -// printf("atanA %f atanB %f\n", atanA*180/pi, atanB*180/pi); - double angle = atanA - atanB; - - - double absAngle= fabs(angle); - double sign = (angle <0)? -1.0 : 1.0; - - - // if (angle>pi) - // printf( "NORMALIZE --> %.2f\n", (2*pi-angle)*180/pi); - angle = (angle>pi)? -(2*pi-absAngle): angle; - //printf("angle=%.2f, absAngle=%.2f, sign=%.1f\n", angle*180/pi, absAngle, sign); - - absAngle= fabs(angle); - double tmp = (absAngle<pi/2)? (-angle) : (pi-absAngle)*sign; - - //printf("tmp=%.2f exp=%.2f\n", tmp, (pi-absAngle)*sign); - - // 3pi/4 ----> pi/4 (sign=1) - // -3pi/4 ----> -pi/4 (sign=-1) - // pi/4 ----> -pi/4 - // -pi/4 ----> pi/4 - - return tmp; +// calculates the angles QPF and QPL +// return the snagle of the point (F or L) which is nearer to the Goal +//the calling line: P->Q, Q is the crossing point +// +// o P +// / +// / +// F / L +// o --------x---------------o +// / Q +// / +// o Goal +double Line::GetDeviationAngle(const Line & l) const +{ + // const double PI = 3.14159258; +#define DEBUG 0 + Point P = _point1; + Point Goal = _point2; - // double distPoint2ToGoalSq = (dx-bx)*(dx-bx) + (dy-by)*(dy-by); - // double distPoint1ToGoalSq = (cx-bx)*(cx-bx) + (cy-by)*(cy-by); - // if(distPoint1ToGoalSq < distPoint2ToGoalSq) //invert the line - // { - // double tx = dx, ty = dy; - // dx = cx; dy = cy; - // cx = tx; cy = ty; - // } + Point L = l._point1; + Point R = l._point2; + + double dist_Goal_L = (Goal-L).NormSquare(); + double dist_Goal_R = (Goal-R).NormSquare(); + + double angle, angleL, angleR; + // we don't need to calculate both angles, but for debugging purposes we do it. + angleL = atan((Goal-P).CrossP(L-P)/(Goal-P).ScalarP(L-P)); + angleR = atan((Goal-P).CrossP(R-P)/(Goal-P).ScalarP(R-P)); - // double dotp = (bx-ax)*(dx-cx)+(by-ay)*(dy-cy); - // double len, len1; + angle = (dist_Goal_L<dist_Goal_R)?angleL:angleR; +#if DEBUG + printf("Enter GetAngel()\n"); + printf("\tP=[%f,%f]\n",P.GetX(), P.GetY()); + printf("\tGoal=[%f,%f]\n",Goal.GetX(), Goal.GetY()); + printf("\tL=[%f,%f]\n",L.GetX(), L.GetY()); + printf("\tR=[%f,%f]\n",R.GetX(), R.GetY()); + printf("\t\tdist_Goal_L=%f\n",dist_Goal_L); + printf("\t\tdist_Goal_R=%f\n",dist_Goal_R); + printf("\t\t --> angleL=%f\n",angleL); + printf("\t\t --> angleR=%f\n",angleR); + printf("\t\t --> angle=%f\n",angle); + printf("Leave GetAngel()\n"); +#endif + return angle; +} - // len = l.Length(); - // if (len < J_EPS) - // return 0; - // len1 = this->Length(); - // if (len1 < J_EPS) - // return 0; - // double angle = acos( dotp / (len * len1) ); - // double crossp = (bx-ax)*(dy-cy) - (by-ay)*(dx-cx); - // double sign = (crossp <0)? -1.0 : 1.0; - // angle = (angle<pi/2)?angle:pi-angle; - // return angle*sign; -} -// get the angle that is needed to turn a line, so that it -// doen not intersect the nearest Wall in subroom -// double Line::GetAngle(SubRoom * subroom) const{ -// double dist; -// int inear = -1; -// int iObs = -1; -// double minDist = 20001; -// //============================ WALLS =========================== -// const vector<Wall>& walls = subroom->GetAllWalls(); -// for (int i = 0; i < subroom->GetNumberOfWalls(); i++) { -// dist = tmpDirection.GetIntersectionDistance(walls[i]); -// printf("Check wall %d. Dist = %f (%f)\n", i, dist, minDist); -// if (dist < minDist) -// { -// inear = i; -// minDist = dist; -// } -// }//walls -// //============================ WALLS =========================== -// //============================ OBST =========================== -// const vector<Obstacle*>& obstacles = subroom->GetAllObstacles(); -// for(unsigned int obs=0; obs<obstacles.size(); ++obs){ -// const vector<Wall>& owalls = obstacles[obs]->GetAllWalls(); -// for (unsigned int i = 0; i < owalls.size(); i++) { -// dist = tmpDirection.GetIntersectionDistance(owalls[i]); -// printf("Check OBS:obs=%d, i=%d Dist = %f (%f)\n", obs, i, dist, minDist); -// if (dist < minDist) -// { -// inear = i; -// minDist = dist; -// iObs = obs; -// } -// }//walls of obstacle -// }// obstacles -// //============================ OBST =========================== -// //------------------------------------------------------------------------ - -// double angle = 0; -// if (inear >= 0) -// if(iObs >= 0) -// { -// const vector<Wall>& owalls = obstacles[iObs]->GetAllWalls(); -// angle = tmpDirection.GetAngle(owalls[inear]); -// } -// else -// angle = tmpDirection.GetAngle(walls[inear]); -// return angle -// } diff --git a/geometry/Line.h b/geometry/Line.h index 6c9577fbe245e9a05234aca23faf546b3d3f68f4..8467c13cf6b476046793916d05922e970bd4f580 100644 --- a/geometry/Line.h +++ b/geometry/Line.h @@ -1,7 +1,7 @@ /** * \file Line.h * \date Sep 30, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -164,7 +164,8 @@ public: * @return true if both segments intersect */ bool IntersectionWith(const Line& l) const; // check two segments for intersections - + bool IntersectionWith(const Point& p1, const Point&p2) const; + /** * @return the distance squared between the first point and the intersection * point with line l. This is exactly the same function @@ -233,10 +234,21 @@ public: /** * @return the angle between two lines */ - double GetAngle(const Line& l) const; + double GetDeviationAngle(const Line& l) const; // double GetAngle(SubRoom s) const; + Line enlarge(double d) const; }; #endif /* _LINE_H */ + + + + + + + + + + diff --git a/geometry/NavLine.cpp b/geometry/NavLine.cpp index 1e3dfb7c9704a1768466738e4075a6922d440f98..bc5d4982052301ddd275324fdf9458cd089a7c81 100644 --- a/geometry/NavLine.cpp +++ b/geometry/NavLine.cpp @@ -1,7 +1,7 @@ /** * \file NavLine.cpp * \date Aug 30, 2012 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License diff --git a/geometry/NavLine.h b/geometry/NavLine.h index 5db0e19e9694cf2a4c8a52b3d0c0be947cd0d26a..0b3c7dc993de26f97d7828776fd1177f299ff54c 100644 --- a/geometry/NavLine.h +++ b/geometry/NavLine.h @@ -1,7 +1,7 @@ /** * \file NavLine.h * \date Aug 30, 2012 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License diff --git a/geometry/Obstacle.cpp b/geometry/Obstacle.cpp index 59b6ecf8010dda17315b6bf5ff8ad2ddea96442a..7daa9ae11e7874d13040d40def5aceb54ee184e6 100644 --- a/geometry/Obstacle.cpp +++ b/geometry/Obstacle.cpp @@ -1,7 +1,7 @@ /** * \file Obstacle.cpp * \date Jul 31, 2012 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -209,15 +209,16 @@ bool Obstacle::Contains(const Point& ped) const return false; } -void Obstacle::ConvertLineToPoly() +bool Obstacle::ConvertLineToPoly() { - - if(_isClosed==0.0) { + if(_isClosed==0.0) + { char tmp[CLENGTH]; sprintf(tmp, "INFO: \tObstacle [%d] is not closed. Not converting to polyline.\n", _id); Log->Write(tmp); - return; + return true; } + vector<Line*> copy; vector<Point> tmpPoly; Point point; @@ -252,9 +253,10 @@ void Obstacle::ConvertLineToPoly() char tmp[CLENGTH]; sprintf(tmp, "ERROR: \tObstacle::ConvertLineToPoly(): ID %d !!!\n", _id); Log->Write(tmp); - exit(0); + return false; } _poly = tmpPoly; + return true; } const Point Obstacle::GetCentroid() const @@ -298,6 +300,22 @@ const Point Obstacle::GetCentroid() const return Point (px,py); } +bool Obstacle::IsClockwise() const +{ + if(_poly.size()<3) { + Log->Write("ERROR:\tYou need at least 3 vertices to check for orientation. Subroom ID [%d]"); + return false; + //exit(EXIT_FAILURE); + } + + Point vecAB= _poly[1]-_poly[0]; + Point vecBC= _poly[2]-_poly[1]; + + double det=vecAB.Det(vecBC); + if(fabs(det)<J_EPS) det=0.0; + + return ( det<=0.0 ); +} bool Obstacle::IntersectWithLine(const Line& line) const { diff --git a/geometry/Obstacle.h b/geometry/Obstacle.h index 9dcbb3cda876386d0d49f8cc118d601c3c8e37c2..fdc9fee3e00ba1e8cf0032b93a9f8164efb3065a 100644 --- a/geometry/Obstacle.h +++ b/geometry/Obstacle.h @@ -1,7 +1,7 @@ /** * \file Obstacle.h * \date Jul 31, 2012 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -112,7 +112,7 @@ public: /** * Create the obstacles polygonal structure from the walls */ - void ConvertLineToPoly(); + bool ConvertLineToPoly(); /** * @return the obstacle as a polygon @@ -135,6 +135,11 @@ public: */ std::string Write(); + /** + * @return true if the polygon is clockwise oriented + */ + bool IsClockwise() const; + private: int WhichQuad(const Point& vertex, const Point& hitPos) const; diff --git a/geometry/Point.cpp b/geometry/Point.cpp index 00f425cfa910888d609ac65fb07cf98ed36295aa..c8fa246b403cee18c43d67dd6cdec724f47fd1e1 100644 --- a/geometry/Point.cpp +++ b/geometry/Point.cpp @@ -1,7 +1,7 @@ /** * \file Point.cpp * \date Sep 30, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -125,6 +125,15 @@ double Point::ScalarP(const Point& v) const return _x * v._x + _y * v._y; } +// since we have only 2D vectors (may be changed in the future), this function returns a scalar +// (basically the third component of the vector (0,0,z) ) +double Point::CrossP(const Point& p) const +{ + return _x*p.GetY() - _y*p.GetX(); +} + + + /// determinant of the square matrix formed by the vectors [ this, v] double Point::Det(const Point& v) const { @@ -268,6 +277,16 @@ const Point operator*(const Point& p, double f) return Point(p._x * f, p._y * f); } + +// Assignment +Point& Point::operator+=(const Point& p) +{ + _x += p._x; + _y += p._y; + return *this; +} + + // divition with scalar const Point operator/(const Point& p, double f) { diff --git a/geometry/Point.h b/geometry/Point.h index 92578237d3cabb9a2d31d0f4eb928d3718ca9165..df332e2eb7148fa1402b361a50fd9a375d2ec540 100644 --- a/geometry/Point.h +++ b/geometry/Point.h @@ -1,7 +1,7 @@ /** * \file Point.h * \date Sep 30, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -77,6 +77,7 @@ public: Point NormalizedMolified() const; /// dot product double ScalarP(const Point& v) const; + double CrossP(const Point& p) const; /// determinant of the square matrix formed by the vectors [ this, v] double Det(const Point& v) const; /// translation and rotation in Ellipse coordinate system @@ -96,7 +97,8 @@ public: bool operator==(const Point& p) const; /// not equal bool operator!=(const Point& p) const; - + /// Assignement + Point& operator+=(const Point& p); /// nice formating of the point std::string toString() const; }; diff --git a/geometry/Room.cpp b/geometry/Room.cpp index 75729b721eeabc1a54468d50bccbd6e570f2cb6f..62e3897cb723050b6e60a9d1b935018806123c66 100644 --- a/geometry/Room.cpp +++ b/geometry/Room.cpp @@ -1,7 +1,7 @@ /** * \file Room.cpp * \date Sep 30, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -31,6 +31,7 @@ #include "../IO/OutputHandler.h" #include <sstream> +#include <memory> using namespace std; @@ -42,9 +43,9 @@ Room::Room() { _id = -1; _state=ROOM_CLEAN; //smoke-free + _egressTime=0; _caption = "no room caption"; _zPos = -1.0; - _subRooms = vector<SubRoom* > (); _outputFile=NULL; } @@ -53,15 +54,15 @@ Room::Room(const Room& orig) _id = orig.GetID(); _caption = orig.GetCaption(); _zPos = orig.GetZPos(); - _subRooms = orig.GetAllSubRooms(); _state=orig.GetState(); + _egressTime=orig.GetEgressTime(); _outputFile=orig.GetOutputHandler(); } Room::~Room() { - for (unsigned int i = 0; i < _subRooms.size(); i++) - delete _subRooms[i]; + //for (unsigned int i = 0; i < _subRooms.size(); i++) + //delete _subRooms[i]; } /************************************************************* @@ -72,7 +73,7 @@ void Room::SetID(int ID) _id = ID; } -void Room::SetCaption(string s) +void Room::SetCaption(const string& s) { _caption = s; } @@ -82,16 +83,6 @@ void Room::SetZPos(double z) _zPos = z; } -void Room::SetSubRoom(SubRoom* subroom, int index) -{ - if ((index >= 0) && (index < GetNumberOfSubRooms())) { - _subRooms[index] = subroom; - } else { - Log->Write("ERROR: Wrong Index in Room::SetSubRoom()"); - exit(0); - } -} - void Room::SetState(RoomState state) { _state=state; @@ -106,7 +97,7 @@ int Room::GetID() const return _id; } -string Room::GetCaption() const +const string& Room::GetCaption() const { return _caption; } @@ -117,27 +108,35 @@ double Room::GetZPos() const return _zPos; } +double Room::GetEgressTime() const +{ + return _egressTime; +} + +void Room::SetEgressTime(double time) +{ + _egressTime=time; +} + int Room::GetNumberOfSubRooms() const { return _subRooms.size(); } -const vector<SubRoom*>& Room::GetAllSubRooms() const +const std::map<int, std::unique_ptr<SubRoom> >& Room::GetAllSubRooms() const { return _subRooms; } SubRoom* Room::GetSubRoom(int index) const { - if ((index >= 0) && (index < (int) _subRooms.size())) - return _subRooms[index]; - else { - char tmp[CLENGTH]; - sprintf(tmp,"ERROR: Room::GetSubRoom() No subroom id [%d] present in room id [%d] ",index,_id); - Log->Write(tmp); - return NULL; - //exit(EXIT_FAILURE); + //todo: the check is done in _subRooms.at(index); + if(_subRooms.count(index)==0) + { + Log->Write("ERROR: Room::GetSubRoom() No subroom id [%d] present in room id [%d] ",index,_id); + return nullptr; } + return _subRooms.at(index).get(); } @@ -145,7 +144,7 @@ SubRoom* Room::GetSubRoom(int index) const #endif // _SIMULATOR -RoomState Room::GetState() const +const RoomState& Room::GetState() const { return _state; } @@ -157,17 +156,8 @@ RoomState Room::GetState() const ************************************************************/ void Room::AddSubRoom(SubRoom* r) { - _subRooms.push_back(r); -} - -void Room::DeleteSubRoom(int index) -{ - if ((index >= 0) && (index < (int) _subRooms.size())) - _subRooms.erase(_subRooms.begin() + index); - else { - Log->Write("ERROR: Wrong Index in Room::DeleteSubRoom()"); - exit(0); - } + //_subRooms.push_back(r); + _subRooms[r->GetSubRoomID()]=std::unique_ptr<SubRoom>(r); } /************************************************************* @@ -184,8 +174,8 @@ void Room::WriteToErrorLog() const Log->Write(s); // SubRooms for (int i = 0; i < GetNumberOfSubRooms(); i++) { - SubRoom* s = GetSubRoom(i); - s->WriteToErrorLog(); + SubRoom*sub = GetSubRoom(i); + sub->WriteToErrorLog(); } } diff --git a/geometry/Room.h b/geometry/Room.h index e4336f000fd8845e4af42514e37ff592bf504904..99884f0e42de12a92723979d1d346f072ba5e49a 100644 --- a/geometry/Room.h +++ b/geometry/Room.h @@ -1,7 +1,7 @@ /** * \file Room.h * \date Sep 30, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -30,6 +30,7 @@ #include <string> #include <algorithm> +#include <memory> #include "../general/Macros.h" //forward declarations @@ -52,17 +53,19 @@ private: /// room elevation double _zPos; /// all subrooms/partitions of the room - std::vector<SubRoom*> _subRooms; + std::map<int, std::unique_ptr<SubRoom> > _subRooms; /// all transitions ids std::vector<int> _transitionsIDs; /// needed if the trajectories for this room are to be write in a special way OutputHandler* _outputFile; + /// egress time for this room + double _egressTime; public: Room(); Room(const Room& orig); - virtual ~Room(); + virtual ~Room(); /** * Set/Get the id of the room which is also used as index @@ -72,18 +75,13 @@ public: /** * Set/Get the caption of the room */ - void SetCaption(std::string s); + void SetCaption(const std::string& s); /** * Set/Get the elevation of the room */ void SetZPos(double z); - /** - * Add a SubRoom at the given index - */ - void SetSubRoom(SubRoom* subroom, int index); - /** * Set/Get the state of the room as defined in the macro.h file */ @@ -97,13 +95,23 @@ public: /** * Set/Get the caption of the room */ - std::string GetCaption() const; + const std::string& GetCaption() const; /** * Set/Get the elevation of the room */ double GetZPos() const; + /** + * Set/Get the egress time for this room + */ + double GetEgressTime() const; + + /** + * Set/Get the egress time for this room + */ + void SetEgressTime(double time); + /** * @return the number of subrooms */ @@ -112,7 +120,7 @@ public: /** * @return a vector containing all subrooms */ - const std::vector<SubRoom*>& GetAllSubRooms() const; + const std::map<int, std::unique_ptr<SubRoom> >& GetAllSubRooms() const; /** * @return a vector containing all transitions Ids @@ -127,18 +135,13 @@ public: /** * @return the state for this room */ - RoomState GetState()const; + const RoomState& GetState()const; /** * Push a new subroom in the vector */ void AddSubRoom(SubRoom* r); - /** - * Delete the subroom at the specified index - */ - void DeleteSubRoom(int index); - /** * Add a new transition id */ diff --git a/geometry/SubRoom.cpp b/geometry/SubRoom.cpp index e0cf7ee9228105a36f1e0917ee4aa6c6207dea8e..e0f4a32ecc6521c77c57454f3e73d61378440be9 100644 --- a/geometry/SubRoom.cpp +++ b/geometry/SubRoom.cpp @@ -1,7 +1,7 @@ /** * \file SubRoom.cpp * \date Oct 8, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -82,7 +82,6 @@ SubRoom::~SubRoom() _obstacles.clear(); } -// Setter -Funktionen void SubRoom::SetSubRoomID(int ID) { @@ -127,7 +126,7 @@ int SubRoom::GetRoomID() const int SubRoom::GetNumberOfWalls() const { - return _walls.size(); + return (int)_walls.size(); } const vector<Wall>& SubRoom::GetAllWalls() const @@ -157,7 +156,7 @@ const vector<Obstacle*>& SubRoom::GetAllObstacles() const int SubRoom::GetNumberOfGoalIDs() const { - return _goalIDs.size(); + return (int)_goalIDs.size(); } const vector<int>& SubRoom::GetAllGoalIDs() const @@ -166,8 +165,6 @@ const vector<int>& SubRoom::GetAllGoalIDs() const } -// Sonstiges - void SubRoom::AddWall(const Wall& w) { _walls.push_back(w); @@ -202,7 +199,7 @@ void SubRoom::AddHline(Hline* line) { for(unsigned int i=0;i<_hlines.size();i++){ if (line->GetID()==_hlines[i]->GetID()){ - Log->Write("INFO:\tskipping duplicate hline [%d] in subroom [%d]",_id,line->GetID()); + Log->Write("INFO:\tskipping duplicate hline [%d] with id [%d]",_id,line->GetID()); return; } } @@ -266,7 +263,6 @@ void SubRoom::CalculateArea() Point SubRoom::GetCentroid() const { - double px=0,py=0; double signedArea = 0.0; double x0 = 0.0; // Current vertex X @@ -275,6 +271,7 @@ Point SubRoom::GetCentroid() const double y1 = 0.0; // Next vertex Y double a = 0.0; // Partial signed area + if(_poly.size()==0) return Point(0,0); // For all vertices except last unsigned int i=0; for (i=0; i<_poly.size()-1; ++i) { @@ -305,46 +302,110 @@ Point SubRoom::GetCentroid() const return Point(px,py); } -bool SubRoom::IsVisible(const Point& p1, const Point& p2, bool considerHlines) -{ - // generate certain connection lines - // connecting p1 with p2 - Line cl = Line(p1,p2); - Line L1=cl, L2; - bool temp = true; - //check intersection with Walls - for(unsigned int i = 0; i < _walls.size(); i++) { - if(temp && cl.IntersectionWith(_walls[i])){ - L2 = _walls[i]; - // fprintf (stdout, "INTERSECTION WALL L1_P1(%.2f, %.2f), L1_P2(%.2f, %.2f), L2_P1(%.2f, %.2f) L2_P2(%.2f, %.2f)\n", L1.GetPoint1().GetX(),L1.GetPoint1().GetY(),L1.GetPoint2().GetX(),L1.GetPoint2().GetY(), L2.GetPoint1().GetX(),L2.GetPoint1().GetY(),L2.GetPoint2().GetX(),L2.GetPoint2().GetY()); - temp = false; +std::vector<Wall> SubRoom::GetVisibleWalls(const Point & position){ +#define DEBUG 0 + std::vector<Wall> visible_walls; + bool wall_is_vis; + Point nearest_point; +#if DEBUG + printf("\n---------------------------\nEnter GetVisiblewalls\n"); +#endif + for (auto w:_walls){ + // nearest_point = w.ShortestPoint(position); + wall_is_vis = IsVisible(w, position); + if(wall_is_vis){ +#if DEBUG + printf(" GetVisibleWalls: Wall (%f, %f)--(%f, %f)\n",w.GetPoint1().GetX(), w.GetPoint1().GetY(),w.GetPoint2().GetX(), w.GetPoint2().GetY() ); + printf(" GetVisibleWalls: Ped position (%f, %f)\n",position.GetX(), position.GetY()); + printf(" GetVisibleWalls: wall is visible? = %d\n",wall_is_vis); +#endif + visible_walls.push_back(w); + } + } +#if DEBUG + printf("Leave GetVisiblewalls with %d visible walls\n------------------------------\n",visible_walls.size()); + #endif + return visible_walls; +} + +// like ped_is_visible() but here we can exclude checking intersection +// with the same wall. This function should check if <position> can see the <Wall> +bool SubRoom::IsVisible(const Line &wall, const Point &position) +{ + // printf("\tEnter wall_is_visible\n"); + // printf(" \t Wall (%f, %f)--(%f, %f)\n",wall.GetPoint1().GetX(), wall.GetPoint1().GetY(),wall.GetPoint2().GetX(), wall.GetPoint2().GetY() ); + + bool wall_is_vis = true; + // Point nearest_point = wall.ShortestPoint(position); + // in cases where nearest_point is endPoint of Wall, the wall becomes visible even if it is not.. + // try with the center. If it is not visible then the wall is definitly not. + Point nearest_point = wall.GetCentre(); + // printf("\t\t center of wall %f, %f\n",nearest_point.GetX(), nearest_point.GetY()); + Line ped_wall = Line(position, nearest_point); + for (auto w:_walls){ + if(w == wall) //ignore wall + continue; + if(wall_is_vis && ped_wall.IntersectionWith(w)){ + // fprintf (stdout, "\t\t Wall_is_visible: INTERSECTION WALL L1_P1(%.2f, %.2f), L1_P2(%.2f, %.2f), WALL(%.2f, %.2f)---(%.2f, %.2f)\n", ped_wall.GetPoint1().GetX(),ped_wall.GetPoint1().GetY(), ped_wall.GetPoint2().GetX(), ped_wall.GetPoint2().GetY(), w.GetPoint1().GetX(),w.GetPoint1().GetY(),w.GetPoint2().GetX(),w.GetPoint2().GetY()); + wall_is_vis = false; } } - //check intersection with obstacles for(unsigned int i = 0; i < _obstacles.size(); i++) { Obstacle * obs = _obstacles[i]; for(unsigned int k = 0; k<obs->GetAllWalls().size(); k++) { const Wall& w = obs->GetAllWalls()[k]; - if(temp && cl.IntersectionWith(w)){ - L2 = w; - // fprintf (stdout, "INTERSECTION OBS; L1_P1(%.2f, %.2f), L1_P2(%.2f, %.2f), L2_P1(%.2f, %.2f) L2_P2(%.2f, %.2f)\n", L1.GetPoint1().GetX(),L1.GetPoint1().GetY(),L1.GetPoint2().GetX(),L1.GetPoint2().GetY(), L2.GetPoint1().GetX(),L2.GetPoint1().GetY(),L2.GetPoint2().GetX(),L2.GetPoint2().GetY()); - temp = false; + if(wall_is_vis && ped_wall.IntersectionWith(w)){ + // fprintf (stdout, "\t\t Wall_is_visible INTERSECTION OBS; L1_P1(%.2f, %.2f), L1_P2(%.2f, %.2f), L2_P1(%.2f, %.2f) L2_P2(%.2f, %.2f)\n", w.GetPoint1().GetX(), w.GetPoint1().GetY(), w.GetPoint2().GetX(), w.GetPoint2().GetY(), ped_wall.GetPoint1().GetX(), ped_wall.GetPoint1().GetY(), ped_wall.GetPoint2().GetX(), ped_wall.GetPoint2().GetY()); + wall_is_vis = false; } } } + // printf("\tLeave wall_is_visible with %d\n", wall_is_vis); + return wall_is_vis; +} + +// p1 and p2 are supposed to be pedestrian's positions. This function does not work properly +// for visibility checks with walls, since the line connecting the pedestrian's position +// with the nearest point on the wall IS intersecting with the wall. +bool SubRoom::IsVisible(const Point& p1, const Point& p2, bool considerHlines) +{ + // printf("\t\tEnter ped_is_visible\n"); + // generate certain connection lines + // connecting p1 with p2 + //Line cl(p1,p2); + //Line L2; + bool temp = true; + //check intersection with Walls + for(const auto& wall : _walls) { + if (wall.IntersectionWith(p1, p2)) { + return false; + } + } + + // printf("\t\t -- ped_is_visible; check obstacles\n"); + //check intersection with obstacles + for ( const auto obstacle : _obstacles) { + for ( const auto& wall : obstacle->GetAllWalls()) { + if (wall.IntersectionWith(p1, p2)) { + return false; + } + } + } + // check intersection with other hlines in room if(considerHlines) for(unsigned int i = 0; i < _hlines.size(); i++) { if(_hlines[i]->IsInLineSegment(p1)|| _hlines[i]->IsInLineSegment(p2)) continue; - if(temp && cl.IntersectionWith(*(Line*)_hlines[i])) + if(temp && (Line*)_hlines[i]->IntersectionWith(p1, p2)) temp = false; } + // printf("\t\tLeave ped_is_visible with %d\n",temp); return temp; } @@ -393,9 +454,6 @@ bool SubRoom::IsVisible(Line* l1, Line* l2, bool considerHlines) return temp[0] || temp[1] || temp[2] || temp[3] || temp[4]; } - - - // this is the case if they share a transition or crossing bool SubRoom::IsDirectlyConnectedWith(const SubRoom* sub) const { @@ -436,7 +494,7 @@ void SubRoom::SetPlanEquation(double A, double B, double C) _cosAngleWithHorizontalPlane= (1.0/sqrt(A*A+B*B+1)); } -const double* SubRoom::GetPlanEquation() const +const double* SubRoom::GetPlaneEquation() const { return _planeEquation; } @@ -465,7 +523,7 @@ void SubRoom::CheckObstacles() } } -void SubRoom::SanityCheck() +bool SubRoom::SanityCheck() { if(_obstacles.size()==0) { if((IsConvex()==false) && (_hlines.size()==0)) { @@ -482,13 +540,13 @@ void SubRoom::SanityCheck() // everything is fine } } - + return true; } ///http://stackoverflow.com/questions/471962/how-do-determine-if-a-polygon-is-complex-convex-nonconvex bool SubRoom::IsConvex() { - unsigned int hsize=_poly.size(); + unsigned int hsize=(unsigned int)_poly.size(); unsigned int pos=0; unsigned int neg=0; @@ -622,7 +680,7 @@ void NormalSubRoom::WriteToErrorLog() const } } -void NormalSubRoom::ConvertLineToPoly(vector<Line*> goals) +bool NormalSubRoom::ConvertLineToPoly(vector<Line*> goals) { vector<Line*> copy; vector<Point> tmpPoly; @@ -664,9 +722,10 @@ void NormalSubRoom::ConvertLineToPoly(vector<Line*> goals) Log->Write(tmp); sprintf(tmp, "ERROR: \tDistance between the points: %lf !!!\n", (tmpPoly[0] - point).Norm()); Log->Write(tmp); - exit(EXIT_FAILURE); + return false; } _poly = tmpPoly; + return true; } @@ -699,7 +758,7 @@ bool NormalSubRoom::IsInSubRoom(const Point& ped) const ///////////////////////////////////////////////////////////// edge = first = 0; - quad = WhichQuad(_poly[edge], ped); + quad = (short) WhichQuad(_poly[edge], ped); total = 0; // COUNT OF ABSOLUTE SECTORS CROSSED /* LOOP THROUGH THE VERTICES IN A SECTOR */ do { @@ -724,6 +783,7 @@ bool NormalSubRoom::IsInSubRoom(const Point& ped) const case -3: // MOVING BACK 3 IS LIKE MOVING FORWARD 1 delta = 1; break; + default:break; } /* ADD IN THE DELTA */ total += delta; @@ -866,11 +926,10 @@ const Point* Stair::CheckCorner(const Point** otherPoint, const Point** aktPoint return rueck; } -void Stair::ConvertLineToPoly(vector<Line*> goals) +bool Stair::ConvertLineToPoly(vector<Line*> goals) { //return NormalSubRoom::ConvertLineToPoly(goals); - vector<Line*> copy; vector<Point> orgPoly = vector<Point > (); const Point* aktPoint; @@ -924,7 +983,7 @@ void Stair::ConvertLineToPoly(vector<Line*> goals) sprintf(tmp, "ERROR: \tStair::ConvertLineToPoly(): SubRoom %d Room %d Anfangspunkt ungleich Endpunkt!!!\n" "\t(%f, %f) != (%f, %f)\n", GetSubRoomID(), GetRoomID(), x1, y1, x2, y2); Log->Write(tmp); - exit(EXIT_FAILURE); + return false; } if (orgPoly.size() != 4) { @@ -932,15 +991,15 @@ void Stair::ConvertLineToPoly(vector<Line*> goals) sprintf(tmp, "ERROR: \tStair::ConvertLineToPoly(): Stair %d Room %d ist kein Viereck!!!\n" "Anzahl Ecken: %d\n", GetSubRoomID(), (int)GetRoomID(), (int)orgPoly.size()); Log->Write(tmp); - exit(EXIT_FAILURE); + return false; } vector<Point> neuPoly = (orgPoly); // ganz kleine Treppen (nur eine Stufe) nicht if ((neuPoly[0] - neuPoly[1]).Norm() > 0.9 && (neuPoly[1] - neuPoly[2]).Norm() > 0.9) { for (int i1 = 0; i1 < (int) orgPoly.size(); i1++) { - int i2 = (i1 + 1) % orgPoly.size(); - int i3 = (i2 + 1) % orgPoly.size(); - int i4 = (i3 + 1) % orgPoly.size(); + unsigned long i2 = (i1 + 1) % orgPoly.size(); + unsigned long i3 = (i2 + 1) % orgPoly.size(); + unsigned long i4 = (i3 + 1) % orgPoly.size(); Point p1 = neuPoly[i1]; Point p2 = neuPoly[i2]; Point p3 = neuPoly[i3]; @@ -957,6 +1016,8 @@ void Stair::ConvertLineToPoly(vector<Line*> goals) } } _poly = neuPoly; + + return true; } bool Stair::IsInSubRoom(const Point& ped) const diff --git a/geometry/SubRoom.h b/geometry/SubRoom.h index 276d94518c17021218bd4736f9647b3251bdbe98..01b2f5c7b10f7c09df0541f352cb9c49d8fc4cb9 100644 --- a/geometry/SubRoom.h +++ b/geometry/SubRoom.h @@ -1,7 +1,7 @@ /** * \file SubRoom.h * \date Oct 8, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -123,6 +123,11 @@ public: */ const std::vector<Wall>& GetAllWalls() const; + /** + * @return visible walls from position of pedestrians (considering the direction of motion) + */ + std::vector<Wall> GetVisibleWalls(const Point & position); + /** * @return a reference to the wall at position index */ @@ -194,7 +199,7 @@ public: * @return the three coefficients of the plane equation. * defined by: Z = Ax + By + C */ - const double * GetPlanEquation () const; + const double * GetPlaneEquation () const; /** * @return the elevation of a 2Dimensional point using the plane equation. @@ -237,7 +242,7 @@ public: * Check the subroom for possible errors and * output user specific informations. */ - void SanityCheck(); + bool SanityCheck(); //navigation void AddCrossing(Crossing* line); @@ -273,7 +278,7 @@ public: /** * @return true if the two segments are visible from each other. * Alls walls and transitions and crossings are used in this check. - * The use of hlines is optional, because they are not real, can can be considered transparent + * The use of hlines is optional, because they are not real and can be considered transparent */ bool IsVisible(Line* l1, Line* l2, bool considerHlines=false); @@ -284,6 +289,12 @@ public: */ bool IsVisible(const Point& p1, const Point& p2, bool considerHlines=false); + /** + * @return true if the two points are visible from each other. + * Alls walls and transitions and crossings are used in this check. + * The use of hlines is optional, because they are not real, can be considered transparent + */ + bool IsVisible(const Line &wall, const Point &p2); // virtual functions virtual std::string WriteSubRoom() const = 0; @@ -291,7 +302,7 @@ public: virtual std::string WritePolyLine() const=0; /// convert all walls and transitions(doors) into a polygon representing the subroom - virtual void ConvertLineToPoly(std::vector<Line*> goals) = 0; + virtual bool ConvertLineToPoly(std::vector<Line*> goals) = 0; ///check whether the pedestrians is still in the subroom virtual bool IsInSubRoom(const Point& ped) const = 0; @@ -327,7 +338,7 @@ public: std::string WritePolyLine() const; void WriteToErrorLog() const; - void ConvertLineToPoly(std::vector<Line*> goals); + bool ConvertLineToPoly(std::vector<Line*> goals); bool IsInSubRoom(const Point& ped) const; }; @@ -362,7 +373,7 @@ public: std::string WriteSubRoom() const; std::string WritePolyLine() const; virtual void WriteToErrorLog() const; - virtual void ConvertLineToPoly(std::vector<Line*> goals); + virtual bool ConvertLineToPoly(std::vector<Line*> goals); bool IsInSubRoom(const Point& ped) const; }; diff --git a/geometry/Transition.cpp b/geometry/Transition.cpp index f27e39ed9bcf0060d4370806ac73518b1359dd8c..1d285afeee5e385238e5ade2cabddd522f442a79 100644 --- a/geometry/Transition.cpp +++ b/geometry/Transition.cpp @@ -1,7 +1,7 @@ /** * \file Transition.cpp * \date Nov 16, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -178,7 +178,7 @@ void Transition::WriteToErrorLog() const } // TraVisTo Ausgabe -string Transition::WriteElement() const +string Transition::GetDescription() const { string geometry; char tmp[CLENGTH] = ""; diff --git a/geometry/Transition.h b/geometry/Transition.h index 0ee3e76c50713bb244dd668cc6699d57a603a3a3..a19854540e69e1743b7b762f45a93e48f7889c16 100644 --- a/geometry/Transition.h +++ b/geometry/Transition.h @@ -1,7 +1,7 @@ /** * \file Transition.h * \date Nov 16, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -113,7 +113,7 @@ public: virtual void WriteToErrorLog() const; - virtual std::string WriteElement() const; // TraVisTo Ausgabe + virtual std::string GetDescription() const; // TraVisTo Ausgabe }; #endif /* _TRANSITION_H */ diff --git a/geometry/Wall.cpp b/geometry/Wall.cpp index eda1d810c15cc5823e3e16971bb119459c2c8901..fa5ba4dd8b3f151af5cedf8bcce0421ccf3a1f67 100644 --- a/geometry/Wall.cpp +++ b/geometry/Wall.cpp @@ -1,7 +1,7 @@ /** * \file Wall.cpp * \date Nov 16, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -38,13 +38,13 @@ Wall::Wall() : Line() { } -Wall::Wall(const Point& p1, const Point& p2) : Line(p1, p2) +Wall::Wall(const Point& p1, const Point& p2, const std::string& type) : Line(p1, p2), _type(type) { - } Wall::Wall(const Wall& orig) : Line(orig) { + _type=orig.GetType(); } void Wall::WriteToErrorLog() const @@ -71,3 +71,13 @@ string Wall::Write() const geometry.append("\t\t</wall>\n"); return geometry; } + +const std::string& Wall::GetType() const +{ + return _type; +} + +void Wall::SetType(const std::string& type) +{ + _type=type; +} diff --git a/geometry/Wall.h b/geometry/Wall.h index e289541adb4c69805938fac792cbfd1f0db43a1d..6babac37e0b971c037748e87e688352a2fc517f7 100644 --- a/geometry/Wall.h +++ b/geometry/Wall.h @@ -1,7 +1,7 @@ /** * \file Wall.h * \date Nov 16, 2010 - * \version v0.5 + * \version v0.6 * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. * * \section License @@ -35,9 +35,19 @@ class Wall : public Line { public: Wall(); - Wall(const Point& p1, const Point& p2); + Wall(const Point& p1, const Point& p2, const std::string& type="internal"); Wall(const Wall& orig); + /** + * set/get the wall type. Values are external and internal + */ + const std::string& GetType() const; + + /** + * set/get the wall type. Values are external and internal + */ + void SetType(const std::string& type); + /** * Debug output from the object */ @@ -47,6 +57,9 @@ public: * @return a nicely formated string of the object */ virtual std::string Write() const; + +private: + std::string _type; }; diff --git a/main.cpp b/main.cpp index 50daa672e106849add75fbeedbc3eb06cc327bfc..88bf627ba5eea6aca8e734731daa2f9730fbb2df 100644 --- a/main.cpp +++ b/main.cpp @@ -45,24 +45,33 @@ int main(int argc, char **argv) // Parsing the arguments ArgumentParser* args = new ArgumentParser(); - args->ParseArgs(argc, argv); - // get the number of file to analyse - const vector<string>& files = args->GetTrajectoriesFiles(); - const string& path = args->GetTrajectoriesLocation(); - //path=""; - // create and initialize the analysis engine - for (unsigned int i = 0; i < files.size(); i++) + if(args->ParseArgs(argc, argv)) { - const string& file = files[i]; - Analysis analysis = Analysis(); - analysis.InitArgs(args); - Log->Write("INFO: \tStart Analysis for the file: " + file); - analysis.RunAnalysis(file, path); - Log->Write("INFO: \tEnd Analysis for the file: " + file); - } + // get the number of file to analyse + const vector<string>& files = args->GetTrajectoriesFiles(); + const string& path = args->GetTrajectoriesLocation(); + //path=""; + // create and initialize the analysis engine + for (unsigned int i = 0; i < files.size(); i++) + { + const string& file = files[i]; + Analysis analysis = Analysis(); + Log->Write("\nINFO: \tStart Analysis for the file: %s",file.c_str()); + Log->Write("**********************************************************************"); + analysis.InitArgs(args); + analysis.RunAnalysis(file, path); + Log->Write("**********************************************************************"); + Log->Write("INFO: \tEnd Analysis for the file: %s\n",file.c_str()); + } + } + else + { + //Log->Write("INFO:\tFail to parse the ini file"); + Log->Write("INFO:\tFinishing..."); + } //do the last cleaning delete args; delete Log; diff --git a/MeasurementArea.h b/methods/MeasurementArea.h similarity index 90% rename from MeasurementArea.h rename to methods/MeasurementArea.h index d9ba3aa103e4e656180ad3561e543da7d8dabb62..7e8f349487e8e4d609df1a618220874869dd8760 100644 --- a/MeasurementArea.h +++ b/methods/MeasurementArea.h @@ -2,7 +2,7 @@ * \file MeasurementArea.cpp * \date Oct 10, 2014 * \version v0.6 - * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. * * \section License * This file is part of JuPedSim. @@ -21,7 +21,6 @@ * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. * * \section Description - * In this file some data types used in the project are defined. * * **/ @@ -54,7 +53,7 @@ class MeasurementArea_B: public MeasurementArea { public: polygon_2d _poly; - double _length; + double _length = -1.0; }; class MeasurementArea_L: public MeasurementArea diff --git a/methods/Method_A.cpp b/methods/Method_A.cpp new file mode 100644 index 0000000000000000000000000000000000000000..8a504b61b0d615de87abaa18e8b9e3fa8349a514 --- /dev/null +++ b/methods/Method_A.cpp @@ -0,0 +1,199 @@ +/** + * \file Method_A.cpp + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * In this file functions related to method A are defined. + * + * + **/ + +#include "Method_A.h" +#include "../Analysis.h" +#include <iostream> + +using std::string; +using std::vector; +using std::ofstream; + +Method_A::Method_A() +{ + _classicFlow = 0; + _vDeltaT = 0; + _xCor = NULL; + _yCor = NULL; + _firstFrame = NULL; + _passLine = NULL; + _deltaT = 100; + _areaForMethod_A = NULL; +} + +Method_A::~Method_A() +{ + +} + +bool Method_A::Process (const PedData& peddata) +{ + _trajName = peddata.GetTrajName(); + _projectRootDir = peddata.GetProjectRootDir(); + _peds_t = peddata.GetPedsFrame(); + _xCor = peddata.GetXCor(); + _yCor = peddata.GetYCor(); + _firstFrame = peddata.GetFirstFrame(); + _measureAreaId = boost::lexical_cast<string>(_areaForMethod_A->_id); + _passLine = new bool[peddata.GetNumPeds()]; + string outputRhoV; + outputRhoV.append("#Frame\t Cumulative pedestrians\n"); + for(int i=0; i<peddata.GetNumPeds(); i++) + { + _passLine[i] = false; + } + Log->Write("------------------------Analyzing with Method A-----------------------------"); + for(int frameNr = 0; frameNr < peddata.GetNumFrames(); frameNr++ ) + { + int frid = frameNr + peddata.GetMinFrame(); + if(!(frid%100)) + { + Log->Write("frame ID = %d",frid); + } + vector<int> ids=_peds_t[frameNr]; + const vector<double> XInFrame = peddata.GetXInFrame(frameNr, ids); + const vector<double> YInFrame = peddata.GetYInFrame(frameNr, ids); + const vector<double> VInFrame = peddata.GetVInFrame(frameNr, ids); + GetAccumFlowVelocity(frameNr, ids, VInFrame); + char tmp[30]; + sprintf(tmp, "%d\t%d\n", frid, _classicFlow); + outputRhoV.append(tmp); + } + FlowRate_Velocity(peddata.GetFps(), _accumPedsPassLine,_accumVPassLine); + WriteFile_N_t(outputRhoV); + delete []_passLine; + return true; +} + +void Method_A::WriteFile_N_t(string data) +{ + string fN_t= _projectRootDir+"./Output/Fundamental_Diagram/FlowVelocity/Flow_NT_"+_trajName+"_id_"+_measureAreaId+".dat"; + ofstream file(fN_t); + file<<data; +} + +void Method_A::GetAccumFlowVelocity(int frame, const vector<int>& ids, const vector<double>& VInFrame) +{ + for(unsigned int i=0; i<ids.size();i++) + { + int id = ids[i]; + bool IspassLine=false; + if(frame >_firstFrame[id]&&!_passLine[id]) + { + IspassLine = IsPassLine(_areaForMethod_A->_lineStartX, + _areaForMethod_A->_lineStartY, + _areaForMethod_A->_lineEndX, + _areaForMethod_A->_lineEndY, _xCor[id][frame - 1], + _yCor[id][frame - 1], _xCor[id][frame], _yCor[id][frame]); + } + if(IspassLine==true) + { + _passLine[id] = true; + _classicFlow++; + _vDeltaT+=VInFrame[i]; + } + } + _accumPedsPassLine.push_back(_classicFlow); + _accumVPassLine.push_back(_vDeltaT); +} + +bool Method_A::IsPassLine(double Line_startX,double Line_startY, double Line_endX, double Line_endY,double pt1_X, double pt1_Y,double pt2_X, double pt2_Y) +{ + point_2d Line_pt0(Line_startX, Line_startY); + point_2d Line_pt1(Line_endX, Line_endY); + segment edge0(Line_pt0, Line_pt1); + + point_2d Traj_pt0(pt1_X, pt1_Y); + point_2d Traj_pt1(pt2_X, pt2_Y); + segment edge1(Traj_pt0, Traj_pt1); + + return(intersects(edge0, edge1)); +} + +void Method_A::FlowRate_Velocity(int fps, const vector<int>& AccumPeds, const vector<double>& AccumVelocity) +{ + + FILE *fFD_FlowVelocity; + string fdFlowVelocity = _projectRootDir+"./Output/Fundamental_Diagram/FlowVelocity/FDFlowVelocity_"+_trajName+"_id_"+_measureAreaId+".dat"; + if((fFD_FlowVelocity=Analysis::CreateFile(fdFlowVelocity))==NULL) { + Log->Write("cannot open the file to write the Flow-Velocity data\n"); + exit(0); + } + fprintf(fFD_FlowVelocity,"#Flow rate(1/s) Mean velocity(m/s)\n"); + int TotalTime=AccumPeds.size(); // the total Frame of in the data file + int TotalPeds=AccumPeds[TotalTime-1]; //the total pedestrians in the data file + if(TotalPeds>0) + { + int firstPassT=-1; // the first time that there are pedestrians pass the line + int *pedspassT=new int[TotalPeds+1]; // the time for certain pedestrian passing the line + for(int i=0; i<=TotalPeds; i++) + { + pedspassT[i]=-1; + } + + for(int ix=0; ix<TotalTime; ix++) + { + if(AccumPeds[ix]>0 && firstPassT<0) + { + firstPassT=ix; + } + if(pedspassT[AccumPeds[ix]]<0) + { + pedspassT[AccumPeds[ix]]=ix; + } + } + for(int i=firstPassT+_deltaT; i<TotalTime; i+=_deltaT) { + int N1 = AccumPeds[i-_deltaT]; // the total number of pedestrians pass the line at this time + int N2 = AccumPeds[i]; + int t_N1 = pedspassT[N1]; + int t_N2 = pedspassT[N2]; + if(N1!=N2) + { + double flow_rate=fps*(N2-N1)*1.00/(t_N2-t_N1); + double MeanV=(AccumVelocity[i]-AccumVelocity[i-_deltaT])/(AccumPeds[i]-AccumPeds[i-_deltaT]); + fprintf(fFD_FlowVelocity,"%.3f\t%.3f\n",flow_rate,MeanV); + } + } + fclose(fFD_FlowVelocity); + delete []pedspassT; + } + else + { + Log->Write("INFO:\tNo person passing the reference line given by Method A!\n"); + } +} + +void Method_A::SetMeasurementArea (MeasurementArea_L* area) +{ + _areaForMethod_A = area; +} + +void Method_A::SetTimeInterval(const int& deltaT) +{ + _deltaT = deltaT; +} diff --git a/methods/Method_A.h b/methods/Method_A.h new file mode 100644 index 0000000000000000000000000000000000000000..aeeedebd1373d4b53d441cb27136b01fa87b3227 --- /dev/null +++ b/methods/Method_A.h @@ -0,0 +1,91 @@ +/** + * \file Method_A.h + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * + * + **/ + +#ifndef METHOD_A_H_ +#define METHOD_A_H_ + +#include <string> +#include "MeasurementArea.h" +#include "PedData.h" +#include <vector> +#include "general/Macros.h" +#include "tinyxml/tinyxml.h" +#include "IO/OutputHandler.h" + +using namespace boost::geometry; +typedef boost::geometry::model::segment<boost::geometry::model::d2::point_xy<double> > segment; + + +class Method_A +{ +public: + Method_A(); + virtual ~Method_A(); + void SetMeasurementArea (MeasurementArea_L* area); + void SetTimeInterval(const int& deltaT); + bool Process (const PedData& peddata); + +private: + std::string _trajName; + std::string _measureAreaId; + MeasurementArea_L* _areaForMethod_A; + std::string _projectRootDir; + + std::vector<int> _accumPedsPassLine; // the accumulative pedestrians pass a line with time + std::vector<double> _accumVPassLine; // the accumulative instantaneous velocity of the pedestrians pass a line + std::map<int , std::vector<int> > _peds_t; + + double** _xCor; + double** _yCor; + int* _firstFrame; + + bool *_passLine; + int _classicFlow; // the number of pedestrians pass a line in a certain time + double _vDeltaT; // define this is to measure cumulative velocity each pedestrian pass a measure line each time step to calculate the <v>delat T=sum<vi>/N + int _deltaT; + /** + * Calculate the Flow rate during a certain time interval DeltaT and the mean velocity passing a line. + * Note: here the time interval in calculating the flow rate is modified. + * it is the actual time between the first person and last person + * passing the line in DeltaT. + * + * @param DeltaT + * @param fps + * @param AccumPeds + * @param AccumVelocity + * @param ofile + */ + void WriteFile_N_t(std::string data); + + void FlowRate_Velocity(int fps, const std::vector<int>& AccumPeds, const std::vector<double>& AccumVelocity); + + bool IsPassLine(double Line_startX,double Line_startY, double Line_endX, double Line_endY,double pt1_X, double pt1_Y,double pt2_X, double pt2_Y); + + void GetAccumFlowVelocity(int frame, const std::vector<int>& ids, const std::vector<double>& VInFrame); +}; + +#endif /* METHOD_A_H_ */ diff --git a/methods/Method_B.cpp b/methods/Method_B.cpp new file mode 100644 index 0000000000000000000000000000000000000000..cc97b7b150bb46d65b1d467446ca00272c8c2a59 --- /dev/null +++ b/methods/Method_B.cpp @@ -0,0 +1,150 @@ +/** + * \file Method_B.cpp + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * In this file functions related to method B are defined. + * + * + **/ + +#include "Method_B.h" + +using std::string; +using std::vector; + + +Method_B::Method_B() +{ + _xCor = NULL; + _yCor = NULL; + _tIn = NULL; + _tOut = NULL; + _DensityPerFrame = NULL; + _fps = 10; + _NumPeds =0; + _areaForMethod_B = NULL; +} + +Method_B::~Method_B() +{ + +} + +bool Method_B::Process (const PedData& peddata) +{ + _trajName = peddata.GetTrajName(); + _projectRootDir = peddata.GetProjectRootDir(); + _fps =peddata.GetFps(); + _peds_t = peddata.GetPedsFrame(); + _NumPeds = peddata.GetNumPeds(); + _xCor = peddata.GetXCor(); + _yCor = peddata.GetYCor(); + _measureAreaId = boost::lexical_cast<string>(_areaForMethod_B->_id); + _tIn = new int[_NumPeds]; // Record the time of each pedestrian entering measurement area + _tOut = new int[_NumPeds]; + for (int i=0; i<_NumPeds; i++) + { + _tIn[i] = 0; + _tOut[i] = 0; + } + GetTinTout(peddata.GetNumFrames()); + Log->Write("------------------------Analyzing with Method B-----------------------------"); + if(_areaForMethod_B->_length<0) + { + Log->Write("Error:\tThe measurement area length for method B is not assigned!"); + exit(0); + } + else + { + GetFundamentalTinTout(_DensityPerFrame,_areaForMethod_B->_length); + } + delete []_tIn; + delete []_tOut; + return true; +} + +void Method_B::GetTinTout(int numFrames) +{ + bool* IsinMeasurezone = new bool[_NumPeds]; + for (int i=0; i<_NumPeds; i++) + { + IsinMeasurezone[i] = false; + } + _DensityPerFrame = new double[numFrames]; + Method_C method_C; + for(int frameNr = 0; frameNr < numFrames; frameNr++ ) + { + vector<int> ids=_peds_t[frameNr]; + int pedsinMeasureArea=0; + for(unsigned int i=0; i< ids.size(); i++) + { + int ID = ids[i]; + int x = _xCor[ID][frameNr]; + int y = _yCor[ID][frameNr]; + if(within(make<point_2d>( (x), (y)), _areaForMethod_B->_poly)) + { + pedsinMeasureArea++; + } + if(within(make<point_2d>( (x), (y)), _areaForMethod_B->_poly)&&!(IsinMeasurezone[ID])) { + _tIn[ID]=frameNr; + IsinMeasurezone[ID] = true; + } + if((!within(make<point_2d>( (x), (y)), _areaForMethod_B->_poly))&&IsinMeasurezone[ID]) { + _tOut[ID]=frameNr; + IsinMeasurezone[ID] = false; + } + } + _DensityPerFrame[frameNr] = pedsinMeasureArea/(area(_areaForMethod_B->_poly)*CMtoM*CMtoM); + } + delete []IsinMeasurezone; +} + +void Method_B::GetFundamentalTinTout(double *DensityPerFrame,double LengthMeasurementarea) +{ + + FILE *fFD_TinTout; + Log->Write("---------Fundamental diagram from Method B will be calculated!------------------"); + string fdTinTout=_projectRootDir+"./Output/Fundamental_Diagram/TinTout/FDTinTout_"+_trajName+"_id_"+_measureAreaId+".dat";; + if((fFD_TinTout=Analysis::CreateFile(fdTinTout))==NULL) + { + Log->Write("cannot open the file to write the TinTout data\n"); + exit(0); + } + fprintf(fFD_TinTout,"#person Index\t density_i(m^(-2))\t velocity_i(m/s)\n"); + for(int i=0; i<_NumPeds; i++) + { + double velocity_temp=_fps*CMtoM*LengthMeasurementarea/(_tOut[i]-_tIn[i]); + double density_temp=0; + for(int j=_tIn[i]; j<_tOut[i]; j++) + { + density_temp+=DensityPerFrame[j]; + } + density_temp/=(_tOut[i]-_tIn[i]); + fprintf(fFD_TinTout,"%d\t%f\t%f\n",i+1,density_temp,velocity_temp); + } + fclose(fFD_TinTout); +} + +void Method_B::SetMeasurementArea (MeasurementArea_B* area) +{ + _areaForMethod_B = area; +} diff --git a/methods/Method_B.h b/methods/Method_B.h new file mode 100644 index 0000000000000000000000000000000000000000..7f562c90b8fa0a12a2201ebdc75876fb20459080 --- /dev/null +++ b/methods/Method_B.h @@ -0,0 +1,61 @@ +/** + * \file Method_B.h + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * + * + **/ + +#ifndef METHOD_B_H_ +#define METHOD_B_H_ + +#include "PedData.h" +#include "MeasurementArea.h" +#include "Method_C.h" +#include "Analysis.h" + +class Method_B +{ +public: + Method_B(); + virtual ~Method_B(); + bool Process (const PedData& peddata); + void SetMeasurementArea (MeasurementArea_B* area); + +private: + std::string _trajName; + std::string _projectRootDir; + std::string _measureAreaId; + std::map<int , std::vector<int> > _peds_t; + MeasurementArea_B* _areaForMethod_B; + int _NumPeds; + int _fps; + double** _xCor; + double** _yCor; + int *_tIn; //the time for each pedestrian enter the measurement area + int *_tOut; //the time for each pedestrian exit the measurement area + double *_DensityPerFrame; // the measured density in each frame + void GetTinTout(int numFrames); + void GetFundamentalTinTout(double *DensityPerFrame,double LengthMeasurementarea); +}; + +#endif /* METHOD_B_H_ */ diff --git a/methods/Method_C.cpp b/methods/Method_C.cpp new file mode 100644 index 0000000000000000000000000000000000000000..6e00ddce047679691b5313e2cbdd53a02ffc02b7 --- /dev/null +++ b/methods/Method_C.cpp @@ -0,0 +1,130 @@ +/** + * \file Method_C.cpp + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * In this file functions related to method C are defined. + * + * + **/ + +#include "Method_C.h" + + +using std::string; +using std::vector; + + +Method_C::Method_C() +{ + _minFrame = 0; + _fClassicRhoV = NULL; + _areaForMethod_C = NULL; +} + +Method_C::~Method_C() +{ + +} + +bool Method_C::Process (const PedData& peddata) +{ + _peds_t = peddata.GetPedsFrame(); + _minFrame = peddata.GetMinFrame(); + _trajName = peddata.GetTrajName(); + _projectRootDir = peddata.GetProjectRootDir(); + _measureAreaId = boost::lexical_cast<string>(_areaForMethod_C->_id); + OpenFileMethodC(); + Log->Write("------------------------Analyzing with Method C-----------------------------"); + for(int frameNr = 0; frameNr < peddata.GetNumFrames(); frameNr++ ) + { + int frid = frameNr + _minFrame; + if(!(frid%100)) + { + Log->Write("frame ID = %d",frid); + } + vector<int> ids=_peds_t[frameNr]; + const vector<double> XInFrame = peddata.GetXInFrame(frameNr, ids); + const vector<double> YInFrame = peddata.GetYInFrame(frameNr, ids); + const vector<double> VInFrame = peddata.GetVInFrame(frameNr, ids); + OutputClassicalResults(frameNr, ids.size(),XInFrame,YInFrame,VInFrame); + } + fclose(_fClassicRhoV); + return true; +} + +void Method_C::OpenFileMethodC() +{ + string results_C= _projectRootDir+"./Output/Fundamental_Diagram/Classical_Voronoi/rho_v_Classic_"+_trajName+"_id_"+_measureAreaId+".dat"; + if((_fClassicRhoV=Analysis::CreateFile(results_C))==NULL) { + Log->Write("Warning:\tcannot open file %s to write classical density and velocity\n", results_C.c_str()); + exit(EXIT_FAILURE); + } + fprintf(_fClassicRhoV,"#Frame \tclassical density(m^(-2))\t classical velocity(m/s)\n"); +} + +void Method_C::OutputClassicalResults(int frmNr, int numPedsInFrame,const vector<double>& XInFrame,const vector<double>& YInFrame,const vector<double>& VInFrame) const +{ + int frmId = frmNr+ _minFrame; + double ClassicDensity = GetClassicalDensity(XInFrame, YInFrame, numPedsInFrame, _areaForMethod_C->_poly); + double ClassicVelocity = GetClassicalVelocity(XInFrame, YInFrame, VInFrame, numPedsInFrame); + fprintf(_fClassicRhoV,"%d\t%.3f\t%.3f\n", frmId, ClassicDensity,ClassicVelocity); +} + +double Method_C::GetClassicalDensity(const vector<double>& xs, const vector<double>& ys, int pednum, polygon_2d measurearea ) const +{ + int pedsinMeasureArea=0; + for(int i=0; i<pednum; i++) { + if(within(make<point_2d>(xs[i], ys[i]), measurearea)) { + pedsinMeasureArea++; + } + } + + return pedsinMeasureArea/(area(_areaForMethod_C->_poly)*CMtoM*CMtoM); +} + +double Method_C::GetClassicalVelocity(const vector<double>& xs, const vector<double>& ys, const vector<double>& VInFrame, int pednum) const +{ + int pedsinMeasureArea=0; + double velocity = 0; + for(int i=0; i<pednum; i++) + { + if(within(make<point_2d>(xs[i], ys[i]), _areaForMethod_C->_poly)) + { + velocity+=VInFrame[i]; + pedsinMeasureArea++; + } + } + if(pedsinMeasureArea!=0) + { + velocity /= (1.0*pedsinMeasureArea); + } else { + velocity = 0; + } + return velocity; + +} + +void Method_C::SetMeasurementArea (MeasurementArea_B* area) +{ + _areaForMethod_C = area; +} + diff --git a/methods/Method_C.h b/methods/Method_C.h new file mode 100644 index 0000000000000000000000000000000000000000..24c7c290a872d892e8cf48d39ca3bab0c5466b62 --- /dev/null +++ b/methods/Method_C.h @@ -0,0 +1,57 @@ +/** + * \file Method_C.h + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * + * + **/ + +#ifndef METHOD_C_H_ +#define METHOD_C_H_ + +#include "PedData.h" +#include "Analysis.h" + +class Method_C +{ +public: + Method_C(); + virtual ~Method_C(); + bool Process (const PedData& peddata); + void SetMeasurementArea (MeasurementArea_B* area); + +private: + std::map<int , std::vector<int> > _peds_t; + int _minFrame; + std::string _measureAreaId; + MeasurementArea_B* _areaForMethod_C; + std::string _trajName; + std::string _projectRootDir; + FILE *_fClassicRhoV; + void OpenFileMethodC(); + void OutputClassicalResults(int frmNr, int numPedsInFrame, const std::vector<double>& XInFrame,const std::vector<double>& YInFrame, const std::vector<double>& VInFrame) const; + double GetClassicalVelocity(const std::vector<double>& xs, const std::vector<double>& ys, const std::vector<double>& VInFrame, int pednum) const; + double GetClassicalDensity(const std::vector<double>& xs, const std::vector<double>& ys, int pednum, polygon_2d measurearea) const; + +}; + +#endif /* METHOD_C_H_ */ diff --git a/methods/Method_D.cpp b/methods/Method_D.cpp new file mode 100644 index 0000000000000000000000000000000000000000..bdd1762c030aba31a346b362a4fd4b38363bfd5f --- /dev/null +++ b/methods/Method_D.cpp @@ -0,0 +1,466 @@ +/** + * \file Method_D.cpp + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * In this file functions related to method D are defined. + * + * + **/ + +#include "Method_D.h" +#include <cmath> + +//using std::string; +//using std::vector; +//using std::ofstream; +using namespace std; + + +Method_D::Method_D() +{ + _scaleX = 10; + _scaleY = 10; + _outputVoronoiCellData = false; + _getProfile = false; + _geoMinX = 0; + _geoMinY = 0; + _geoMaxX = 0; + _geoMaxY = 0; + _cutByCircle = false; + _cutRadius = -1; + _circleEdges = -1; + _fIndividualFD = NULL; + _calcIndividualFD = false; + _fVoronoiRhoV = NULL; + _areaForMethod_D = NULL; +} + +Method_D::~Method_D() +{ + +} + +bool Method_D::Process (const PedData& peddata) +{ + if(false==IsPedInGeometry(peddata.GetNumFrames(), peddata.GetNumPeds(), peddata.GetXCor(), peddata.GetYCor(), peddata.GetFirstFrame(), peddata.GetLastFrame())) + { + return false; + } + _peds_t = peddata.GetPedsFrame(); + _trajName = peddata.GetTrajName(); + _projectRootDir = peddata.GetProjectRootDir(); + _measureAreaId = boost::lexical_cast<string>(_areaForMethod_D->_id); + int minFrame = peddata.GetMinFrame(); + OpenFileMethodD(); + if(_calcIndividualFD) + { + OpenFileIndividualFD(); + } + Log->Write("------------------------Analyzing with Method D-----------------------------"); + for(int frameNr = 0; frameNr < peddata.GetNumFrames(); frameNr++ ) + { + int frid = frameNr + minFrame; + if(!(frid%100)) + { + Log->Write("frame ID = %d",frid); + } + vector<int> ids=_peds_t[frameNr]; + int NumPeds = ids.size(); + vector<int> IdInFrame = peddata.GetIdInFrame(ids); + vector<double> XInFrame = peddata.GetXInFrame(frameNr, ids); + vector<double> YInFrame = peddata.GetYInFrame(frameNr, ids); + vector<double> VInFrame = peddata.GetVInFrame(frameNr, ids); + if(NumPeds>2) + { + vector<polygon_2d> polygons = GetPolygons(ids, XInFrame, YInFrame, VInFrame, IdInFrame); + OutputVoronoiResults(polygons, frid, VInFrame); + if(_calcIndividualFD) + { + // if(i>beginstationary&&i<endstationary) + { + GetIndividualFD(polygons,VInFrame, IdInFrame, _areaForMethod_D->_poly, frid); + } + } + if(_getProfile) + { // field analysis + GetProfiles(boost::lexical_cast<string>(frid), polygons, VInFrame); + } + if(_outputVoronoiCellData) + { // output the Voronoi polygons of a frame + OutputVoroGraph(boost::lexical_cast<string>(frid), polygons, NumPeds, XInFrame, YInFrame,VInFrame); + } + } + else + { + //Log->Write("INFO: \tThe number of the pedestrians is less than 2 !!"); + } + } + fclose(_fVoronoiRhoV); + if(_calcIndividualFD) + { + fclose(_fIndividualFD); + } + return true; +} + +bool Method_D::OpenFileMethodD() +{ + string results_V= _projectRootDir+"./Output/Fundamental_Diagram/Classical_Voronoi/rho_v_Voronoi_"+_trajName+"_id_"+_measureAreaId+".dat"; + if((_fVoronoiRhoV=Analysis::CreateFile(results_V))==NULL) + { + Log->Write("cannot open the file to write Voronoi density and velocity\n"); + return false; + } + else + { + fprintf(_fVoronoiRhoV,"#Frame \t Voronoi density(m^(-2))\t Voronoi velocity(m/s)\n"); + return true; + } +} + +bool Method_D::OpenFileIndividualFD() +{ + string Individualfundment=_projectRootDir+"./Output/Fundamental_Diagram/Individual_FD/IndividualFD"+_trajName+"_id_"+_measureAreaId+".dat"; + if((_fIndividualFD=Analysis::CreateFile(Individualfundment))==NULL) + { + Log->Write("cannot open the file individual\n"); + return false; + } + else + { + fprintf(_fIndividualFD,"#Frame \t PedId \t Individual density(m^(-2))\t Individual velocity(m/s)\n"); + return true; + } +} + +vector<polygon_2d> Method_D::GetPolygons(vector<int> ids, vector<double>& XInFrame, vector<double>& YInFrame, vector<double>& VInFrame, vector<int>& IdInFrame) +{ + VoronoiDiagram vd; + int NrInFrm = ids.size(); + double boundpoint =10*max(max(fabs(_geoMinX),fabs(_geoMinY)), max(fabs(_geoMaxX), fabs(_geoMaxY))); + vector<polygon_2d> polygons = vd.getVoronoiPolygons(XInFrame, YInFrame, VInFrame,IdInFrame, NrInFrm,boundpoint); + if(_cutByCircle) + { + polygons = vd.cutPolygonsWithCircle(polygons, XInFrame, YInFrame, _cutRadius,_circleEdges); + } + polygons = vd.cutPolygonsWithGeometry(polygons, _geoPoly, XInFrame, YInFrame); + +/* for(auto && p:polygons) + { + ReducePrecision(p); + }*/ + return polygons; +} +/** + * Output the Voronoi density and velocity in the corresponding file + */ +void Method_D::OutputVoronoiResults(const vector<polygon_2d>& polygons, int frid, const vector<double>& VInFrame) +{ + double VoronoiVelocity = GetVoronoiVelocity(polygons,VInFrame,_areaForMethod_D->_poly); + double VoronoiDensity=GetVoronoiDensity(polygons, _areaForMethod_D->_poly); + fprintf(_fVoronoiRhoV,"%d\t%.3f\t%.3f\n",frid,VoronoiDensity, VoronoiVelocity); +} + + +double Method_D::GetVoronoiDensity(const vector<polygon_2d>& polygon, const polygon_2d & measureArea) +{ + double density=0; + for (const auto & polygon_iterator:polygon) + { + polygon_list v; + intersection(measureArea, polygon_iterator, v); + if(!v.empty()) + { + density+=area(v[0])/area(polygon_iterator); + if((area(v[0]) - area(polygon_iterator))>J_EPS) + { + std::cout<<"----------------------Now calculating density!!!-----------------\n "; + std::cout<<"measure area: \t"<<std::setprecision(16)<<dsv(measureArea)<<"\n"; + std::cout<<"Original polygon:\t"<<std::setprecision(16)<<dsv(polygon_iterator)<<"\n"; + std::cout<<"intersected polygon: \t"<<std::setprecision(16)<<dsv(v[0])<<"\n"; + std::cout<<"this is a wrong result in density calculation\t "<<area(v[0])<<'\t'<<area(polygon_iterator)<<"\n"; + //exit(EXIT_FAILURE); + } + } + } + density = density/(area(measureArea)*CMtoM*CMtoM); + return density; + +} + +double Method_D::GetVoronoiDensity2(const vector<polygon_2d>& polygon, double* XInFrame, double* YInFrame, const polygon_2d& measureArea) +{ + double area_i=0; + int pedsinMeasureArea=0; + int temp=0; + + for(vector<polygon_2d>::const_iterator polygon_iterator = polygon.begin(); polygon_iterator!=polygon.end();polygon_iterator++) + { + if(within(make<point_2d>(XInFrame[temp], YInFrame[temp]), measureArea)) + { + area_i += (area(*polygon_iterator)*CMtoM*CMtoM); + pedsinMeasureArea++; + } + temp++; + } + if(area_i==0) + { + return 0; + } + return pedsinMeasureArea/area_i; +} + +/* + * calculate the voronoi velocity according to voronoi cell of each pedestrian and their instantaneous velocity "Velocity". + * input: voronoi cell and velocity of each pedestrian and the measurement area + * output: the voronoi velocity in the measurement area + */ +double Method_D::GetVoronoiVelocity(const vector<polygon_2d>& polygon, const vector<double>& Velocity, const polygon_2d & measureArea) +{ + double meanV=0; + int temp=0; + for (auto && polygon_iterator:polygon) + { + polygon_list v; + intersection(measureArea, polygon_iterator, v); + if(!v.empty()) + { + meanV+=(Velocity[temp]*area(v[0])/area(measureArea)); + if((area(v[0]) - area(polygon_iterator))>J_EPS) + { + std::cout<<"this is a wrong result in calculating velocity\t"<<area(v[0])<<'\t'<<area(polygon_iterator)<<std::endl; + } + } + temp++; + } + return meanV; +} + +void Method_D::GetProfiles(const string& frameId, const vector<polygon_2d>& polygons, const vector<double>& velocity) +{ + string voronoiLocation=_projectRootDir+"./Output/Fundamental_Diagram/Classical_Voronoi/field/"; + + string Prfvelocity=voronoiLocation+"/velocity/Prf_v_"+_trajName+"_id_"+_measureAreaId+"_"+frameId+".dat"; + string Prfdensity=voronoiLocation+"/density/Prf_d_"+_trajName+"_id_"+_measureAreaId+"_"+frameId+".dat"; + + FILE *Prf_velocity; + if((Prf_velocity=Analysis::CreateFile(Prfvelocity))==NULL) { + Log->Write("cannot open the file <%s> to write the field data\n",Prfvelocity.c_str()); + exit(0); + } + FILE *Prf_density; + if((Prf_density=Analysis::CreateFile(Prfdensity))==NULL) { + Log->Write("cannot open the file to write the field density\n"); + exit(0); + } + + int NRow = (int)ceil((_geoMaxY-_geoMinY)/_scaleY); // the number of rows that the geometry will be discretized for field analysis + int NColumn = (int)ceil((_geoMaxX-_geoMinX)/_scaleX); //the number of columns that the geometry will be discretized for field analysis + for(int row_i=0; row_i<NRow; row_i++) { // + for(int colum_j=0; colum_j<NColumn; colum_j++) { + polygon_2d measurezoneXY; + { + const double coor[][2] = { + {_geoMinX+colum_j*_scaleX,_geoMaxY-row_i*_scaleY}, {_geoMinX+colum_j*_scaleX+_scaleX,_geoMaxY-row_i*_scaleY}, {_geoMinX+colum_j*_scaleX+_scaleX, _geoMaxY-row_i*_scaleY-_scaleY}, + {_geoMinX+colum_j*_scaleX, _geoMaxY-row_i*_scaleY-_scaleY}, + {_geoMinX+colum_j*_scaleX,_geoMaxY-row_i*_scaleY} // closing point is opening point + }; + assign_points(measurezoneXY, coor); + } + correct(measurezoneXY); // Polygons should be closed, and directed clockwise. If you're not sure if that is the case, call this function + double densityXY=GetVoronoiDensity(polygons,measurezoneXY); + fprintf(Prf_density,"%.3f\t",densityXY); + double velocityXY = GetVoronoiVelocity(polygons,velocity,measurezoneXY); + fprintf(Prf_velocity,"%.3f\t",velocityXY); + } + fprintf(Prf_density,"\n"); + fprintf(Prf_velocity,"\n"); + } + fclose(Prf_velocity); + fclose(Prf_density); +} + +void Method_D::OutputVoroGraph(const string & frameId, vector<polygon_2d>& polygons, int numPedsInFrame, vector<double>& XInFrame, vector<double>& YInFrame,const vector<double>& VInFrame) +{ + string voronoiLocation=_projectRootDir+"./Output/Fundamental_Diagram/Classical_Voronoi/VoronoiCell/"; + +#if defined(_WIN32) + mkdir(voronoiLocation.c_str()); +#else + mkdir(voronoiLocation.c_str(), 0777); +#endif + + + string polygon=voronoiLocation+"/polygon"+_trajName+"_id_"+_measureAreaId+"_"+frameId+".dat"; + ofstream polys (polygon.c_str()); + if(polys.is_open()) + { + //for(vector<polygon_2d> polygon_iterator=polygons.begin(); polygon_iterator!=polygons.end(); polygon_iterator++) + for(auto && poly:polygons) + { + for(auto&& point:poly.outer()) + { + point.x(point.x()*CMtoM); + point.y(point.y()*CMtoM); + } + polys << dsv(poly) << endl; + } + } + else + { + Log->Write("ERROR:\tcannot create the file <%s>",polygon.c_str()); + exit(EXIT_FAILURE); + } + + string v_individual=voronoiLocation+"/speed"+_trajName+"_id_"+_measureAreaId+"_"+frameId+".dat"; + ofstream velo (v_individual.c_str()); + if(velo.is_open()) + { + for(int pts=0; pts<numPedsInFrame; pts++) + { + velo << fabs(VInFrame[pts]) << endl; + } + } + else + { + Log->Write("ERROR:\tcannot create the file <%s>",v_individual.c_str()); + exit(EXIT_FAILURE); + } + + + string point=voronoiLocation+"/points"+_trajName+"_id_"+_measureAreaId+"_"+frameId+".dat"; + ofstream points (point.c_str()); + if( points.is_open()) + { + for(int pts=0; pts<numPedsInFrame; pts++) + { + points << XInFrame[pts]*CMtoM << "\t" << YInFrame[pts]*CMtoM << endl; + } + } + else + { + Log->Write("ERROR:\tcannot create the file <%s>",point.c_str()); + exit(EXIT_FAILURE); + } + string parameters_rho="python ./scripts/_Plot_cell_rho.py -f \""+ voronoiLocation + "\" -n "+ _trajName+"_id_"+_measureAreaId+"_"+frameId+ + " -x1 "+boost::lexical_cast<std::string>(_geoMinX*CMtoM)+" -x2 "+boost::lexical_cast<std::string>(_geoMaxX*CMtoM)+" -y1 "+ + boost::lexical_cast<std::string>(_geoMinY*CMtoM)+" -y2 "+boost::lexical_cast<std::string>(_geoMaxY*CMtoM); + string parameters_v="python ./scripts/_Plot_cell_v.py -f \""+ voronoiLocation + "\" -n "+ _trajName+"_id_"+_measureAreaId+"_"+frameId+ + " -x1 "+boost::lexical_cast<std::string>(_geoMinX*CMtoM)+" -x2 "+boost::lexical_cast<std::string>(_geoMaxX*CMtoM)+" -y1 "+ + boost::lexical_cast<std::string>(_geoMinY*CMtoM)+" -y2 "+boost::lexical_cast<std::string>(_geoMaxY*CMtoM); + Log->Write("INFO:\t%s",parameters_rho.c_str()); + system(parameters_rho.c_str()); + system(parameters_v.c_str()); + points.close(); + polys.close(); + velo.close(); +} + + +void Method_D::GetIndividualFD(const vector<polygon_2d>& polygon, const vector<double>& Velocity, const vector<int>& Id, const polygon_2d& measureArea, int frid) +{ + double uniquedensity=0; + double uniquevelocity=0; + int uniqueId=0; + int temp=0; + for (const auto & polygon_iterator:polygon) + { + polygon_list v; + intersection(measureArea, polygon_iterator, v); + if(!v.empty()) { + uniquedensity=1.0/(area(polygon_iterator)*CMtoM*CMtoM); + uniquevelocity=Velocity[temp]; + uniqueId=Id[temp]; + fprintf(_fIndividualFD,"%d\t%d\t%.3f\t%.3f\n",frid, uniqueId, uniquedensity,uniquevelocity); + } + temp++; + } +} + +void Method_D::SetCalculateIndividualFD(bool individualFD) +{ + _calcIndividualFD = individualFD; +} + +void Method_D::Setcutbycircle(double radius,int edges) +{ + _cutByCircle=true; + _cutRadius = radius; + _circleEdges = edges; +} + +void Method_D::SetGeometryPolygon(polygon_2d geometryPolygon) +{ + _geoPoly = geometryPolygon; +} + +void Method_D::SetGeometryBoundaries(double minX, double minY, double maxX, double maxY) +{ + _geoMinX = minX; + _geoMinY = minY; + _geoMaxX = maxX; + _geoMaxY = maxY; +} + +void Method_D::SetScale(double x, double y) +{ + _scaleX = x; + _scaleY = y; +} + +void Method_D::SetCalculateProfiles(bool calcProfile) +{ + _getProfile =calcProfile; +} + +void Method_D::SetOutputVoronoiCellData(bool outputCellData) +{ + _outputVoronoiCellData = outputCellData; +} + +void Method_D::SetMeasurementArea (MeasurementArea_B* area) +{ + _areaForMethod_D = area; +} + +void Method_D::ReducePrecision(polygon_2d& polygon) +{ + for(auto&& point:polygon.outer()) + { + point.x(round(point.x() * 100.0) / 100.0); + point.y(round(point.y() * 100.0) / 100.0); + } +} + +bool Method_D::IsPedInGeometry(int frames, int peds, double **Xcor, double **Ycor, int *firstFrame, int *lastFrame) +{ + for(int i=0; i<peds; i++) + for(int j =0; j<frames; j++) + { + if (j>firstFrame[i] && j< lastFrame[i] && (false==within(point_2d(round(Xcor[i][j]), round(Ycor[i][j])), _geoPoly))) + { + Log->Write("Error:\tPedestrian at the position <x=%.4f, y=%.4f> is outside geometry. Please check the geometry or trajectory file!", Xcor[i][j]*CMtoM, Ycor[i][j]*CMtoM ); + return false; + } + } + return true; +} diff --git a/methods/Method_D.h b/methods/Method_D.h new file mode 100644 index 0000000000000000000000000000000000000000..7c1db75a1aa17b7e12436b21d724db8300a086db --- /dev/null +++ b/methods/Method_D.h @@ -0,0 +1,106 @@ +/** + * \file Method_D.h + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * + * + **/ + +#ifndef METHOD_D_H_ +#define METHOD_D_H_ +#include <vector> +#include "PedData.h" +#include "Analysis.h" +#include "VoronoiDiagram.h" + + +#ifdef __linux__ +#include <sys/stat.h> +#include <dirent.h> +#elif __APPLE__ +#include <sys/stat.h> +#include <dirent.h> +#else +#include <direct.h> +#endif + + + +class Method_D +{ +public: + Method_D(); + virtual ~Method_D(); + bool Process (const PedData& peddata); + void SetCalculateIndividualFD(bool individualFD); + void Setcutbycircle(double radius,int edges); + void SetGeometryPolygon(polygon_2d geometryPolygon); + void SetGeometryBoundaries(double minX, double minY, double maxX, double maxY); + void SetScale(double x, double y); + void SetCalculateProfiles(bool calcProfile); + void SetOutputVoronoiCellData(bool outputCellData); + void SetMeasurementArea (MeasurementArea_B* area); + +private: + std::map<int , std::vector<int> > _peds_t; + std::string _measureAreaId; + MeasurementArea_B* _areaForMethod_D; + std::string _trajName; + std::string _projectRootDir; + bool _calcIndividualFD; + bool _getProfile; + bool _outputVoronoiCellData; + bool _cutByCircle; //Adjust whether cut each original voronoi cell by a circle + double _cutRadius; + int _circleEdges; + polygon_2d _geoPoly; + double _geoMinX; // LOWest vertex of the geometry (x coordinate) + double _geoMinY; // LOWest vertex of the geometry (y coordinate) + double _geoMaxX; // Highest vertex of the geometry + double _geoMaxY; + FILE* _fVoronoiRhoV; + FILE* _fIndividualFD; + double _scaleX; // the size of the grid + double _scaleY; + bool OpenFileMethodD(); + bool OpenFileIndividualFD(); + + std::vector<polygon_2d> GetPolygons(std::vector<int> ids, std::vector<double>& XInFrame, std::vector<double>& YInFrame, + std::vector<double>& VInFrame, std::vector<int>& IdInFrame); + void OutputVoronoiResults(const std::vector<polygon_2d>& polygons, int frid, const std::vector<double>& VInFrame); + double GetVoronoiDensity(const std::vector<polygon_2d>& polygon, const polygon_2d & measureArea); + double GetVoronoiDensity2(const std::vector<polygon_2d>& polygon, double* XInFrame, double* YInFrame, const polygon_2d& measureArea); + double GetVoronoiVelocity(const std::vector<polygon_2d>& polygon, const std::vector<double>& Velocity, const polygon_2d & measureArea); + void GetProfiles(const std::string& frameId, const std::vector<polygon_2d>& polygons, const std::vector<double>& velocity); + void OutputVoroGraph(const std::string & frameId, std::vector<polygon_2d>& polygons, int numPedsInFrame,std::vector<double>& XInFrame, + std::vector<double>& YInFrame,const std::vector<double>& VInFrame); + void GetIndividualFD(const std::vector<polygon_2d>& polygon, const std::vector<double>& Velocity, const std::vector<int>& Id, const polygon_2d& measureArea, int frid); + + /** + * Reduce the precision of the points to two digits + * @param polygon + */ + void ReducePrecision(polygon_2d& polygon); + bool IsPedInGeometry(int frames, int peds, double **Xcor, double **Ycor, int *firstFrame, int *lastFrame); //check whether all the pedestrians are in the geometry +}; + +#endif /* METHOD_D_H_ */ diff --git a/methods/PedData.cpp b/methods/PedData.cpp new file mode 100644 index 0000000000000000000000000000000000000000..46377286c3b8f8202d5491f4e58b3a5a0fb3ec0b --- /dev/null +++ b/methods/PedData.cpp @@ -0,0 +1,467 @@ +/** + * \file PedData.cpp + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * In this file functions related to reading data from files are defined. + * + * + **/ + +#include "PedData.h" +#include <cmath> + +using std::string; +using std::map; +using std::vector; +using std::ifstream; + + +PedData::PedData() +{ +} + +PedData::~PedData() +{ + +} + +bool PedData::ReadData(const string& projectRootDir, const string& path, const string& filename, const FileFormat& trajformat, int deltaF, char vComponent) +{ + _minID = INT_MAX; + _minFrame = INT_MAX; + _deltaF = deltaF; + _vComponent = vComponent; + _projectRootDir = projectRootDir; + _trajName = filename; + + string fullTrajectoriesPathName= path+"./"+_trajName; + Log->Write("INFO:\tthe name of the trajectory is: <%s>",_trajName.c_str()); + + bool result=true; + if(trajformat == FORMAT_XML_PLAIN) + { + TiXmlDocument docGeo(fullTrajectoriesPathName); + if (!docGeo.LoadFile()) { + Log->Write("ERROR: \t%s", docGeo.ErrorDesc()); + Log->Write("ERROR: \t could not parse the trajectories file <%s>",fullTrajectoriesPathName.c_str()); + return false; + } + TiXmlElement* xRootNode = docGeo.RootElement(); + result=InitializeVariables(xRootNode); //initialize some global variables + } + + else if(trajformat == FORMAT_PLAIN) + { + result=InitializeVariables(fullTrajectoriesPathName); + } + return result; +} + +bool PedData::InitializeVariables(const string& filename) +{ + vector<double> xs; + vector<double> ys; + vector<int> _IdsTXT; // the Id data from txt format trajectory data + vector<int> _FramesTXT; // the Frame data from txt format trajectory data + //string fullTrajectoriesPathName= _projectRootDir+"./"+_trajName; + ifstream fdata; + fdata.open(filename.c_str()); + if (fdata.is_open() == false) + { + Log->Write("ERROR: \t could not parse the trajectories file <%s>",filename.c_str()); + return false; + } + else + { + string line; + int lineNr=1; + while ( getline(fdata,line) ) + { + //looking for the framerate which is suppposed to be at the second position + if(line[0] == '#') + { + std::vector<std::string> strs; + boost::split(strs, line , boost::is_any_of(":"),boost::token_compress_on); + + if(strs[0]=="#framerate" && strs.size()==2) + { + _fps= atof(strs[1].c_str()); + Log->Write("INFO:\tFrame rate fps: <%d>", _fps); + } + + } + else if ( line[0] != '#' && !(line.empty()) ) + { + + std::vector<std::string> strs; + boost::split(strs, line , boost::is_any_of("\t "),boost::token_compress_on); + + if(strs.size() <4) + { + Log->Write("ERROR:\t There is an error in the file at line %d", lineNr); + return false; + } + + _IdsTXT.push_back(atoi(strs[0].c_str())); + _FramesTXT.push_back(atoi(strs[1].c_str())); + xs.push_back(atof(strs[2].c_str())); + ys.push_back(atof(strs[3].c_str())); + } + lineNr++; + } + } + fdata.close(); + + _minID = *min_element(_IdsTXT.begin(),_IdsTXT.end()); + _minFrame = *min_element(_FramesTXT.begin(),_FramesTXT.end()); + + //Total number of frames + _numFrames = *max_element(_FramesTXT.begin(),_FramesTXT.end()) - _minFrame+1; + + //Total number of agents + _numPeds = *max_element(_IdsTXT.begin(),_IdsTXT.end()) - _minID+1; + vector<int> Ids_temp=_IdsTXT; + sort (Ids_temp.begin(), Ids_temp.end()); + Ids_temp.erase(unique(Ids_temp.begin(), Ids_temp.end()), Ids_temp.end()); + if((unsigned)_numPeds!=Ids_temp.size()) + { + Log->Write("Error:\tThe index of ped ID is not continuous. Please modify the trajectory file!"); + return false; + } + CreateGlobalVariables(_numPeds, _numFrames); + + std::vector<int> firstFrameIndex; //The first frame index of each pedestrian + std::vector<int> lastFrameIndex; //The last frame index of each pedestrian + int prevValue = _IdsTXT[0] - 1; + for (size_t i = 0; i < _IdsTXT.size(); i++) + { + if (prevValue != _IdsTXT[i]) + { + firstFrameIndex.push_back(i); + prevValue = _IdsTXT[i]; + } + } + for (size_t i = 1; i < firstFrameIndex.size(); i++) + { + lastFrameIndex.push_back(firstFrameIndex[i] - 1); + } + lastFrameIndex.push_back(_IdsTXT.size() - 1); + for (unsigned int i = 0; i < firstFrameIndex.size(); i++) + { + _firstFrame[i] = _FramesTXT[firstFrameIndex[i]] - _minFrame; + _lastFrame[i] = _FramesTXT[lastFrameIndex[i]] - _minFrame; + } + + for(unsigned int i = 0; i < _IdsTXT.size(); i++) + { + int ID = _IdsTXT[i] - _minID; + int frm = _FramesTXT[i] - _minFrame; + double x = xs[i]*M2CM; + double y = ys[i]*M2CM; + _xCor[ID][frm] = x; + _yCor[ID][frm] = y; + } + + //save the data for each frame + for (unsigned int i = 0; i < _FramesTXT.size(); i++ ) + { + int id = _IdsTXT[i]-_minID; + int t =_FramesTXT[i]- _minFrame; + _peds_t[t].push_back(id); + } + + return true; +} + +// initialize the global variables variables +bool PedData::InitializeVariables(TiXmlElement* xRootNode) +{ + if( ! xRootNode ) { + Log->Write("ERROR:\tRoot element does not exist"); + return false; + } + if( xRootNode->ValueStr () != "trajectories" ) { + Log->Write("ERROR:\tRoot element value is not 'geometry'."); + return false; + } + + //counting the number of frames + int frames = 0; + for(TiXmlElement* xFrame = xRootNode->FirstChildElement("frame"); xFrame; + xFrame = xFrame->NextSiblingElement("frame")) { + frames++; + } + _numFrames = frames; + Log->Write("INFO:\tnum Frames = %d",_numFrames); + + //Number of agents + + TiXmlNode* xHeader = xRootNode->FirstChild("header"); // header + if(xHeader->FirstChild("agents")) { + _numPeds=atoi(xHeader->FirstChild("agents")->FirstChild()->Value()); + Log->Write("INFO:\tmax num of peds N=%d", _numPeds); + } + + //framerate + if(xHeader->FirstChild("frameRate")) { + _fps=atoi(xHeader->FirstChild("frameRate")->FirstChild()->Value()); + Log->Write("INFO:\tFrame rate fps: <%d>", _fps); + } + + CreateGlobalVariables(_numPeds, _numFrames); + + //processing the frames node + TiXmlNode* xFramesNode = xRootNode->FirstChild("frame"); + if (!xFramesNode) { + Log->Write("ERROR: \tThe geometry should have at least one frame"); + return false; + } + + // obtaining the minimum id and minimum frame + for(TiXmlElement* xFrame = xRootNode->FirstChildElement("frame"); xFrame; + xFrame = xFrame->NextSiblingElement("frame")) + { + int frm = atoi(xFrame->Attribute("ID")); + if(frm < _minFrame) + { + _minFrame = frm; + } + for(TiXmlElement* xAgent = xFrame->FirstChildElement("agent"); xAgent; + xAgent = xAgent->NextSiblingElement("agent")) + { + int id= atoi(xAgent->Attribute("ID")); + if(id < _minID) + { + _minID = id; + } + } + } + int frameNr=0; + for(TiXmlElement* xFrame = xRootNode->FirstChildElement("frame"); xFrame; + xFrame = xFrame->NextSiblingElement("frame")) { + + //todo: can be parallelized with OpenMP + for(TiXmlElement* xAgent = xFrame->FirstChildElement("agent"); xAgent; + xAgent = xAgent->NextSiblingElement("agent")) { + + //get agent id, x, y + double x= atof(xAgent->Attribute("x")); + double y= atof(xAgent->Attribute("y")); + int ID= atoi(xAgent->Attribute("ID"))-_minID; + + _peds_t[frameNr].push_back(ID); + _xCor[ID][frameNr] = x*M2CM; + _yCor[ID][frameNr] = y*M2CM; + if(frameNr < _firstFrame[ID]) + { + _firstFrame[ID] = frameNr; + } + if(frameNr > _lastFrame[ID]) + { + _lastFrame[ID] = frameNr; + } + } + frameNr++; + } + return true; +} + +vector<double> PedData::GetVInFrame(int frame, const vector<int>& ids) const +{ + vector<double> VInFrame; + for(unsigned int i=0; i<ids.size();i++) + { + int id = ids[i]; + int Tpast = frame - _deltaF; + int Tfuture = frame + _deltaF; + double v = GetInstantaneousVelocity(frame, Tpast, Tfuture, id, _firstFrame, _lastFrame, _xCor, _yCor); + VInFrame.push_back(v); + } + return VInFrame; +} + +vector<double> PedData::GetXInFrame(int frame, const vector<int>& ids) const +{ + vector<double> XInFrame; + for(int id:ids) + { + XInFrame.push_back(_xCor[id][frame]); + } + return XInFrame; +} + +vector<double> PedData::GetYInFrame(int frame, const vector<int>& ids) const +{ + vector<double> YInFrame; + for(unsigned int i=0; i<ids.size();i++) + { + int id = ids[i]; + YInFrame.push_back(_yCor[id][frame]); + } + return YInFrame; +} + +vector<int> PedData::GetIdInFrame(const vector<int>& ids) const +{ + vector<int> IdInFrame; + for(int id:ids) + { + id = id +_minID; + IdInFrame.push_back(id); + } + return IdInFrame; +} + +double PedData::GetInstantaneousVelocity(int Tnow,int Tpast, int Tfuture, int ID, int *Tfirst, int *Tlast, double **Xcor, double **Ycor) const +{ + + double v=0.0; + + if(_vComponent == 'X') + { + if((Tpast >=Tfirst[ID])&&(Tfuture <= Tlast[ID])) + { + v = _fps*CMtoM*(Xcor[ID][Tfuture] - Xcor[ID][Tpast])/(2.0 * _deltaF); //one dimensional velocity + } + else if((Tpast <Tfirst[ID])&&(Tfuture <= Tlast[ID])) + { + v = _fps*CMtoM*(Xcor[ID][Tfuture] - Xcor[ID][Tnow])/(_deltaF); //one dimensional velocity + } + else if((Tpast >=Tfirst[ID])&&(Tfuture > Tlast[ID])) + { + v = _fps*CMtoM*(Xcor[ID][Tnow] - Xcor[ID][Tpast])/( _deltaF); //one dimensional velocity + } + } + if(_vComponent == 'Y') + { + if((Tpast >=Tfirst[ID])&&(Tfuture <= Tlast[ID])) + { + v = _fps*CMtoM*(Ycor[ID][Tfuture] - Ycor[ID][Tpast])/(2.0 * _deltaF); //one dimensional velocity + } + else if((Tpast <Tfirst[ID])&&(Tfuture <= Tlast[ID])) + { + v = _fps*CMtoM*(Ycor[ID][Tfuture] - Ycor[ID][Tnow])/(_deltaF); //one dimensional velocity + } + else if((Tpast >=Tfirst[ID])&&(Tfuture > Tlast[ID])) + { + v = _fps*CMtoM*(Ycor[ID][Tnow] - Ycor[ID][Tpast])/( _deltaF); //one dimensional velocity + } + } + if(_vComponent == 'B') + { + if((Tpast >=Tfirst[ID])&&(Tfuture <= Tlast[ID])) + { + v = _fps*CMtoM*sqrt(pow((Xcor[ID][Tfuture] - Xcor[ID][Tpast]),2)+pow((Ycor[ID][Tfuture] - Ycor[ID][Tpast]),2))/(2.0 * _deltaF); //two dimensional velocity + } + else if((Tpast <Tfirst[ID])&&(Tfuture <= Tlast[ID])) + { + v = _fps*CMtoM*sqrt(pow((Xcor[ID][Tfuture] - Xcor[ID][Tnow]),2)+pow((Ycor[ID][Tfuture] - Ycor[ID][Tnow]),2))/(_deltaF); + } + else if((Tpast >=Tfirst[ID])&&(Tfuture > Tlast[ID])) + { + v = _fps*CMtoM*sqrt(pow((Xcor[ID][Tnow] - Xcor[ID][Tpast]),2)+pow((Ycor[ID][Tnow] - Ycor[ID][Tpast]),2))/(_deltaF); //two dimensional velocity + } + } + + return fabs(v); +} + +void PedData::CreateGlobalVariables(int numPeds, int numFrames) +{ + _xCor = new double* [numPeds]; + _yCor = new double* [numPeds]; + for (int i=0; i<numPeds; i++) { + _xCor[i] = new double [numFrames]; + _yCor[i] = new double [numFrames]; + } + _firstFrame = new int[numPeds]; // Record the first frame of each pedestrian + _lastFrame = new int[numPeds]; // Record the last frame of each pedestrian + + for(int i = 0; i <numPeds; i++) { + for (int j = 0; j < numFrames; j++) { + _xCor[i][j] = 0; + _yCor[i][j] = 0; + } + _firstFrame[i] = INT_MAX; + _lastFrame[i] = INT_MIN; + } + +} + + +int PedData::GetMinFrame() const +{ + return _minFrame; +} + +int PedData::GetMinID() const +{ + return _minID; +} + +int PedData::GetNumFrames() const +{ + return _numFrames; +} + +int PedData::GetNumPeds() const +{ + return _numPeds; +} + +int PedData::GetFps() const +{ + return _fps; +} + +string PedData::GetTrajName() const +{ + return _trajName; +} + +map<int , vector<int> > PedData::GetPedsFrame() const +{ + return _peds_t; +} + +double** PedData::GetXCor() const +{ + return _xCor; +} +double** PedData::GetYCor() const +{ + return _yCor; +} + +int* PedData::GetFirstFrame() const +{ + return _firstFrame; +} +int* PedData::GetLastFrame() const +{ + return _lastFrame; +} + +string PedData::GetProjectRootDir() const +{ + return _projectRootDir; +} diff --git a/methods/PedData.h b/methods/PedData.h new file mode 100644 index 0000000000000000000000000000000000000000..fbcf5d37da6170c4185d4b2a2244d54cba9a6306 --- /dev/null +++ b/methods/PedData.h @@ -0,0 +1,99 @@ +/** + * \file PedData.h + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * In this file functions related to method A are defined. + * + * + **/ + +#ifndef PEDDATA_H_ +#define PEDDATA_H_ + +#include <string> +#include <vector> +#include <map> +#include "general/Macros.h" +#include "tinyxml/tinyxml.h" +#include "IO/OutputHandler.h" +#include <algorithm> // std::min_element, std::max_element +#include <boost/algorithm/string.hpp> + + +extern OutputHandler* Log; + +#define CMtoM 0.0001 +#define M2CM 10000 + +class PedData +{ +public: + PedData(); + virtual ~PedData(); + int GetMinFrame() const; + int GetMinID() const; + int GetNumFrames() const; + int GetNumPeds() const; + int GetFps() const; + std::string GetTrajName() const; + std::string GetProjectRootDir() const; + std::map<int , std::vector<int>> GetPedsFrame() const; + double** GetXCor() const; + double** GetYCor() const; + int* GetFirstFrame() const; + int* GetLastFrame() const; + std::vector<int> GetIdInFrame(const std::vector<int>& ids) const; + std::vector<double> GetXInFrame(int frame, const std::vector<int>& ids) const; + std::vector<double> GetYInFrame(int frame, const std::vector<int>& ids) const; + std::vector<double> GetVInFrame(int frame, const std::vector<int>& ids) const; + bool ReadData(const std::string& projectRootDir, const std::string& path, const std::string& filename, const FileFormat& _trajformat, int deltaF, char vComponent); + + +private: + bool InitializeVariables(const std::string& filename); + bool InitializeVariables(TiXmlElement* xRootNode); + void CreateGlobalVariables(int numPeds, int numFrames); + double GetInstantaneousVelocity(int Tnow,int Tpast, int Tfuture, int ID, int *Tfirst, int *Tlast, double **Xcor, double **Ycor) const; + + +private: + + std::string _trajName=""; + std::string _projectRootDir=""; + int _minFrame=0; + int _minID=1; + int _numFrames=0; // total number of frames + int _numPeds=0; // total number of pedestrians + int _fps=16; + std::map<int , std::vector<int>> _peds_t; + + int _deltaF=5; + char _vComponent='X'; + + int *_firstFrame=NULL; // Record the first frame of each pedestrian + int *_lastFrame=NULL; // Record the last frame of each pedestrian + double **_xCor=NULL; + double **_yCor=NULL; + +}; + +#endif /* PEDDATA_H_ */ diff --git a/methods/VoronoiDiagram.cpp b/methods/VoronoiDiagram.cpp new file mode 100644 index 0000000000000000000000000000000000000000..dec9ff1558aa6d836f62ba45ab895d5cf6aa5d4f --- /dev/null +++ b/methods/VoronoiDiagram.cpp @@ -0,0 +1,499 @@ +/** + * \file VoronoiDiagram.cpp + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum Jülich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * The VoronoiDiagram class define functions used to calculate Voronoi diagrams + * from trajectories. + * + * + **/ + + + + +#include <iostream> +#include "VoronoiDiagram.h" + + +using namespace std; +using namespace boost::geometry; + +VoronoiDiagram::VoronoiDiagram() +{ +} + +VoronoiDiagram::~VoronoiDiagram() +{ +} + +// Traversing Voronoi edges using cell iterator. +vector<polygon_2d> VoronoiDiagram::getVoronoiPolygons(vector<double>& XInFrame, vector<double>& YInFrame, + vector<double>& VInFrame, vector<int>& IdInFrame, const int numPedsInFrame, const double Bound_Max) +{ + int XInFrame_temp[numPedsInFrame]; + int YInFrame_temp[numPedsInFrame]; + double VInFrame_temp[numPedsInFrame]; + int IdInFrame_temp[numPedsInFrame]; + + for (int i = 0; i < numPedsInFrame; i++) + { + points.push_back(point_type2(round(XInFrame[i]), round(YInFrame[i]))); + XInFrame_temp[i] = round(XInFrame[i]); + YInFrame_temp[i] = round(YInFrame[i]); + VInFrame_temp[i] = VInFrame[i]; + IdInFrame_temp[i] = IdInFrame[i]; + } + + VD voronoidiagram; + construct_voronoi(points.begin(), points.end(), &voronoidiagram); + int Ncell = 0; + std::vector<polygon_2d> polygons; + + double Bd_Box_minX = -Bound_Max; + double Bd_Box_minY = -Bound_Max; + double Bd_Box_maxX = Bound_Max; + double Bd_Box_maxY = Bound_Max; + polygon_2d boundingbox; + boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(-Bound_Max, -Bound_Max)); + boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(-Bound_Max, Bound_Max)); + boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(Bound_Max, Bound_Max)); + boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(Bound_Max, -Bound_Max)); + boost::geometry::correct(boundingbox); + + for (voronoi_diagram<double>::const_cell_iterator it = voronoidiagram.cells().begin(); + it != voronoidiagram.cells().end(); ++it) + { + polygon_2d poly; + vector<point_type2> polypts; + point_type2 pt_s; + point_type2 pt_e; + const voronoi_diagram<double>::cell_type& cell = *it; + const voronoi_diagram<double>::edge_type* edge = cell.incident_edge(); + point_type2 pt_temp; + point_type2 thispoint = retrieve_point(*it); + for (int k = 0; k < numPedsInFrame; k++) + { + if (XInFrame_temp[k] == thispoint.x() && YInFrame_temp[k] == thispoint.y()) + { + VInFrame[Ncell] = VInFrame_temp[k]; + IdInFrame[Ncell] = IdInFrame_temp[k]; + break; + } + } + XInFrame[Ncell] = thispoint.x(); + YInFrame[Ncell] = thispoint.y(); + int NumVertex = 0; + int index_end = 0; + bool infinite_s = false; + bool infinite_e = false; + // This is convenient way to iterate edges around Voronoi cell. + + do + { + if (edge->vertex0()) + { + if(edge->vertex1()) + { + if(fabs(edge->vertex0()->x()) < Bound_Max && (fabs(edge->vertex0()->y()) < Bound_Max) + &&fabs(edge->vertex1()->x()) < Bound_Max && (fabs(edge->vertex1()->y()) < Bound_Max)) + { + polypts.push_back(point_type2(edge->vertex0()->x(), edge->vertex0()->y())); + pt_temp = point_type2(edge->vertex0()->x(), edge->vertex0()->y()); + NumVertex++; + } + else if((fabs(edge->vertex0()->x()) > Bound_Max || (fabs(edge->vertex0()->y()) > Bound_Max)) + &&fabs(edge->vertex1()->x()) < Bound_Max && (fabs(edge->vertex1()->y()) < Bound_Max)) + { + pt_s = getIntersectionPoint(point_2d(edge->vertex0()->x(), edge->vertex0()->y()), point_2d(edge->vertex1()->x(), edge->vertex1()->y()), boundingbox); + polypts.push_back(point_type2(pt_s.x(), pt_s.y())); + NumVertex++; + infinite_s = true; + } + else if((fabs(edge->vertex0()->x()) < Bound_Max && (fabs(edge->vertex0()->y()) < Bound_Max)) + &&(fabs(edge->vertex1()->x()) > Bound_Max || (fabs(edge->vertex1()->y()) > Bound_Max))) + { + polypts.push_back(point_type2(edge->vertex0()->x(), edge->vertex0()->y())); + pt_e = getIntersectionPoint(point_2d(edge->vertex0()->x(), edge->vertex0()->y()), point_2d(edge->vertex1()->x(), edge->vertex1()->y()), boundingbox); + polypts.push_back(point_type2(pt_e.x(), pt_e.y())); + NumVertex+=2; + index_end = NumVertex; + infinite_e = true; + } + } + else + { + if(fabs(edge->vertex0()->x()) < Bound_Max && (fabs(edge->vertex0()->y()) < Bound_Max)) + { + polypts.push_back(point_type2(edge->vertex0()->x(), edge->vertex0()->y())); + pt_e = clip_infinite_edge(*edge, Bd_Box_minX, Bd_Box_minY, Bd_Box_maxX, + Bd_Box_maxY); + polypts.push_back(point_type2(pt_e.x(), pt_e.y())); + NumVertex+=2; + index_end = NumVertex; + infinite_e = true; + } + } + } + else + { + if(edge->vertex1()&&fabs(edge->vertex1()->x()) < Bound_Max && (fabs(edge->vertex1()->y()) < Bound_Max)) + { + pt_s = clip_infinite_edge(*edge, Bd_Box_minX, Bd_Box_minY, Bd_Box_maxX, + Bd_Box_maxY); + polypts.push_back(point_type2(pt_s.x(), pt_s.y())); + NumVertex++; + infinite_s = true; + } + } + edge = edge->next(); + + } while (edge != cell.incident_edge()); + Ncell++; + + if (infinite_s && infinite_e) + { + vector<point_type2> vertexes = add_bounding_points(pt_s, pt_e, pt_temp, + Bd_Box_minX, Bd_Box_minY, Bd_Box_maxX, Bd_Box_maxY); + + if (!vertexes.empty()) + { + polypts.reserve(polypts.size() + vertexes.size()); + polypts.insert(polypts.begin() + index_end, vertexes.begin(), + vertexes.end()); + } + } + for (int i = 0; i < (int) polypts.size(); i++) + { + boost::geometry::append(poly, point_2d(polypts[i].x(), polypts[i].y())); + } + + boost::geometry::correct(poly); + polygons.push_back(poly); + } + return polygons; +} + +point_type2 VoronoiDiagram::retrieve_point(const cell_type& cell) +{ + source_index_type index = cell.source_index(); + return points[index]; +} + +point_type2 VoronoiDiagram::clip_infinite_edge(const edge_type& edge, double minX, double minY, + double maxX, double maxY) +{ + const cell_type& cell1 = *edge.cell(); + const cell_type& cell2 = *edge.twin()->cell(); + point_type2 origin, direction, pt; + // Infinite edges could not be created by two segment sites. + + if (cell1.contains_point() && cell2.contains_point()) + { + point_type2 p1 = retrieve_point(cell1); + point_type2 p2 = retrieve_point(cell2); + origin.x((p1.x() + p2.x()) * 0.5); + origin.y((p1.y() + p2.y()) * 0.5); + direction.x(p1.y() - p2.y()); + direction.y(p2.x() - p1.x()); + } + else + { + cout<<"A cell cannot find its center point!"<<endl; + exit(0); + } + + double side = maxX - minX; + double koef = side / (std::max)(fabs(direction.x()), fabs(direction.y())); + if (edge.vertex0() == NULL) + { + pt.x(origin.x() - direction.x() * koef); + pt.y(origin.y() - direction.y() * koef); + } + else if (edge.vertex1() == NULL) + { + pt.x(origin.x() + direction.x() * koef); + pt.y(origin.y() + direction.y() * koef); + } + + polygon_2d boundingbox; + boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(minX, minY)); + boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(minX, maxY)); + boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(maxX, maxY)); + boost::geometry::append(boundingbox, boost::geometry::make<point_2d>(maxX, minY)); + boost::geometry::correct(boundingbox); + + pt = getIntersectionPoint(point_2d(pt.x(), pt.y()), point_2d(origin.x(), origin.y()), boundingbox); + return pt; + +} + +double VoronoiDiagram::area_triangle(const point_type2& tri_p1, const point_type2& tri_p2, const point_type2& tri_p3) +{ + double x = tri_p2.x() - tri_p1.x(); + double y = tri_p2.y() - tri_p1.y(); + + double x2 = tri_p3.x() - tri_p1.x(); + double y2 = tri_p3.y() - tri_p1.y(); + + return abs(x * y2 - x2 * y) / 2.; +} + +bool VoronoiDiagram::point_inside_triangle(const point_type2& pt, const point_type2& tri_p1, const point_type2& tri_p2, const point_type2& tri_p3) +{ + double s = area_triangle(tri_p1, tri_p2, tri_p3); + double ss = area_triangle(pt, tri_p1, tri_p2); + double ss2 = area_triangle(pt, tri_p2, tri_p3); + double ss3 = area_triangle(pt, tri_p1, tri_p3); + + if (ss + ss2 + ss3 - s > 1e-6) + { + return false; + } + return true; +} + +vector<point_type2> VoronoiDiagram::add_bounding_points(const point_type2& pt1, const point_type2& pt2, const point_type2& pt, + double minX, double minY, double maxX, double maxY) +{ + vector<point_type2> bounding_vertex; + if (fabs(pt1.x() - pt2.x()) > J_EPS && fabs(pt1.y() - pt2.y()) > J_EPS) + { + if ((fabs(pt1.y() - maxY) < J_EPS && fabs(pt2.x() - maxX) < J_EPS) + || (fabs(pt2.y() - maxY) < J_EPS && fabs(pt1.x() - maxX) < J_EPS)) + { + point_type2 vertex(maxX, maxY); + if (point_inside_triangle(pt, vertex, pt1, pt2)) + { + bounding_vertex.push_back(point_type2(minX, maxY)); + bounding_vertex.push_back(point_type2(minX, minY)); + bounding_vertex.push_back(point_type2(maxX, minY)); + } + else + { + bounding_vertex.push_back(point_type2(maxX, maxY)); + } + } + else if ((fabs(pt1.y() - maxY) < J_EPS && fabs(pt2.x() - minX) < J_EPS) + || (fabs(pt2.y() - maxY) < J_EPS && fabs(pt1.x() - minX) < J_EPS)) + { + point_type2 vertex(minX, maxY); + if (point_inside_triangle(pt, vertex, pt1, pt2)) + { + bounding_vertex.push_back(point_type2(minX, minY)); + bounding_vertex.push_back(point_type2(maxX, minY)); + bounding_vertex.push_back(point_type2(maxX, maxY)); + } + else + { + bounding_vertex.push_back(point_type2(minX, maxY)); + } + } + else if ((fabs(pt1.y() - minY) < J_EPS && fabs(pt2.x() - minX) < J_EPS) + || (fabs(pt2.y() - minY) < J_EPS && fabs(pt1.x() - minX) < J_EPS)) + { + point_type2 vertex(minX, minY); + if (point_inside_triangle(pt, vertex, pt1, pt2)) + { + bounding_vertex.push_back(point_type2(maxX, minY)); + bounding_vertex.push_back(point_type2(maxX, maxY)); + bounding_vertex.push_back(point_type2(minX, maxY)); + } + else + { + bounding_vertex.push_back(point_type2(minX, minY)); + } + } + else if ((fabs(pt1.y() - minY) < J_EPS && fabs(pt2.x() - maxX) < J_EPS) + || (fabs(pt2.y() - minY) < J_EPS && fabs(pt1.x() - maxX) < J_EPS)) + { + point_type2 vertex(maxX, minY); + if (point_inside_triangle(pt, vertex, pt1, pt2)) + { + bounding_vertex.push_back(point_type2(maxX, maxY)); + bounding_vertex.push_back(point_type2(minX, maxY)); + bounding_vertex.push_back(point_type2(minX, minY)); + } + else + { + bounding_vertex.push_back(point_type2(maxX, minY)); + } + } + else if ((fabs(pt1.y() - minY) < J_EPS && fabs(pt2.y() - maxY) < J_EPS) + || (fabs(pt2.y() - minY) < J_EPS && fabs(pt1.y() - maxY) < J_EPS)) + { + if (fabs(pt1.x() - pt2.x()) < J_EPS) + { + if (pt1.x() < pt.x()) + { + bounding_vertex.push_back(point_type2(minX, maxY)); + bounding_vertex.push_back(point_type2(minX, minY)); + } + else + { + bounding_vertex.push_back(point_type2(maxX, minY)); + bounding_vertex.push_back(point_type2(maxX, maxY)); + } + } + else + { + double tempx = pt1.x() + + (pt2.x() - pt1.x()) * (pt.y() - pt1.y()) / (pt2.y() - pt1.y()); + if (tempx < pt.x()) + { + bounding_vertex.push_back(point_type2(minX, maxY)); + bounding_vertex.push_back(point_type2(minX, minY)); + } + else + { + bounding_vertex.push_back(point_type2(maxX, minY)); + bounding_vertex.push_back(point_type2(maxX, maxY)); + } + } + } + else if ((fabs(pt1.x() - minX) < J_EPS && fabs(pt2.x() - maxX) < J_EPS) + || (fabs(pt2.x() - minX) < J_EPS && fabs(pt1.x() - maxX) < J_EPS)) + { + if (fabs(pt1.y() - pt2.y()) < J_EPS) + { + if (pt1.y() < pt.y()) + { + bounding_vertex.push_back(point_type2(minX, minY)); + bounding_vertex.push_back(point_type2(maxX, minY)); + } + else + { + bounding_vertex.push_back(point_type2(maxX, maxY)); + bounding_vertex.push_back(point_type2(minX, maxY)); + } + } + else + { + double tempy = pt1.y() + + (pt2.y() - pt1.y()) * (pt.x() - pt1.x()) / (pt2.x() - pt1.x()); + if (tempy < pt.y()) + { + bounding_vertex.push_back(point_type2(minX, minY)); + bounding_vertex.push_back(point_type2(maxX, minY)); + } + else + { + bounding_vertex.push_back(point_type2(maxX, maxY)); + bounding_vertex.push_back(point_type2(minX, maxY)); + } + } + } + } + return bounding_vertex; +} + + +//-----------In getIntersectionPoint() the edges of the square is vertical or horizontal segment-------------- + point_type2 VoronoiDiagram::getIntersectionPoint(const point_2d& pt0, const point_2d& pt1, const polygon_2d& square) +{ + vector<point_2d> pt; + segment edge0(pt0, pt1); + vector<point_2d> const& points = square.outer(); + for (vector<point_2d>::size_type i = 1; i < points.size(); ++i) + { + segment edge1(points[i], points[i-1]); + if(intersects(edge0, edge1)) + { + intersection(edge0, edge1, pt); + break; + } + } + if(pt.empty()) + { + segment edge1(points[3], points[0]); + intersection(edge0, edge1, pt); + } + point_type2 interpts(pt[0].x(), pt[0].y()); + return interpts; +} + +std::vector<polygon_2d> VoronoiDiagram::cutPolygonsWithGeometry(const std::vector<polygon_2d>& polygon, + const polygon_2d& Geometry, const vector<double>& xs, const vector<double>& ys) +{ + vector<polygon_2d> intersetionpolygons; + int temp = 0; + for (const auto & polygon_iterator:polygon) + { + polygon_list v; + intersection(Geometry, polygon_iterator, v); + + BOOST_FOREACH(auto & it, v) + { + if (within(point_2d(xs[temp], ys[temp]), it)) + { + //check and remove duplicates + //dispatch::unique (it); + polygon_2d simplified; + simplify(it,simplified,J_EPS); + + correct(simplified); + intersetionpolygons.push_back(simplified); + } + } + + temp++; + } + return intersetionpolygons; +} + + +std::vector<polygon_2d> VoronoiDiagram::cutPolygonsWithCircle(const std::vector<polygon_2d>& polygon, + const vector<double>& xs, const vector<double>& ys, double radius, int edges) +{ + std::vector<polygon_2d> intersetionpolygons; + int temp = 0; + for (const auto & polygon_iterator:polygon) + { + polygon_2d circle; + { + for (int angle = 0; angle <=edges; angle++) + { + double ptx= xs[temp] + radius * cos(angle * 2*PI / edges); + double pty= ys[temp] + radius * sin(angle * 2*PI / edges); + append(circle, make<point_2d>(ptx, pty)); + } + } + correct(circle); + + polygon_list v; + intersection(circle, polygon_iterator, v); + BOOST_FOREACH(auto & it, v) + { + if (within(point_2d(xs[temp], ys[temp]), it)) + { + //check and remove duplicates + //dispatch::unique (it); + polygon_2d simplified; + simplify(it,simplified,J_EPS); + correct(simplified); + intersetionpolygons.push_back(simplified); + } + } + temp++; + } + return intersetionpolygons; +} + diff --git a/VoronoiDiagram.h b/methods/VoronoiDiagram.h similarity index 85% rename from VoronoiDiagram.h rename to methods/VoronoiDiagram.h index fbcc1444ebfc151868f436f05cda9c03b7aee0aa..eef482a858c832aac1b7be793695a1f5dbcac2fb 100644 --- a/VoronoiDiagram.h +++ b/methods/VoronoiDiagram.h @@ -1,83 +1,88 @@ -/** - * \file VoronoiDiagram.h - * \date Oct 10, 2014 - * \version v0.6 - * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. - * - * \section License - * This file is part of JuPedSim. - * - * JuPedSim is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * any later version. - * - * JuPedSim 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 Lesser General Public License - * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. - * - * \section Description - * The VoronoiDiagram class define functions used to calculate Voronoi diagrams - * from trajectories. - * - * - **/ - -#ifndef VORONOIDIAGRAM_H_ -#define VORONOIDIAGRAM_H_ - -#include <vector> -#include <iostream> -#include <math.h> - -#define PI 3.14159265 - -#include <boost/polygon/voronoi.hpp> -using boost::polygon::voronoi_builder; -using boost::polygon::voronoi_diagram; - -#include <boost/geometry.hpp> -#include <boost/geometry/geometry.hpp> -#include <boost/geometry/geometries/point_xy.hpp> -#include <boost/geometry/geometries/polygon.hpp> -#include <boost/geometry/geometries/adapted/c_array.hpp> -#include <boost/geometry/geometries/ring.hpp> -#include <boost/geometry/algorithms/intersection.hpp> -#include <boost/geometry/algorithms/within.hpp> -#include <boost/foreach.hpp> -#include "general/Macros.h" - -typedef boost::geometry::model::d2::point_xy<double, boost::geometry::cs::cartesian> point_2d; -typedef boost::geometry::model::polygon<point_2d> polygon_2d; -typedef std::vector<polygon_2d > polygon_list; -typedef boost::geometry::model::segment<boost::geometry::model::d2::point_xy<double> > segment; - -typedef boost::polygon::point_data<double> point_type2; -typedef double coordinate_type; -typedef boost::polygon::voronoi_diagram<double> VD; -typedef VD::edge_type edge_type; -typedef VD::cell_type cell_type; -typedef VD::cell_type::source_index_type source_index_type; - -class VoronoiDiagram { -private: - std::vector<point_type2> points; - point_type2 retrieve_point(const cell_type& cell); - point_type2 clip_infinite_edge( const edge_type& edge, double minX, double minY, double maxX, double maxY); - double area_triangle(const point_type2& tri_p1, const point_type2& tri_p2, const point_type2& tri_p3); - bool point_inside_triangle(const point_type2& pt, const point_type2& tri_p1, const point_type2& tri_p2, const point_type2& tri_p3); - std::vector<point_type2> add_bounding_points(const point_type2& pt1, const point_type2& pt2, const point_type2& pt, double minX, double minY, double maxX, double maxY); - point_type2 getIntersectionPoint(const point_2d& pt0, const point_2d& pt1, const polygon_2d& square); -public: - VoronoiDiagram(); - virtual ~VoronoiDiagram(); - std::vector<polygon_2d> getVoronoiPolygons(double *XInFrame, double *YInFrame, double *VInFrame,int *IdInFrame, int numPedsInFrame, double Bound_Max); - std::vector<polygon_2d> cutPolygonsWithGeometry(const std::vector<polygon_2d>& polygon, const polygon_2d& Geometry, double* xs, double* ys); - std::vector<polygon_2d> cutPolygonsWithCircle(const std::vector<polygon_2d>& polygon, double* xs, double* ys, double radius, int edges); -}; - -#endif /* VORONOIDIAGRAM_H_ */ +/** + * \file VoronoiDiagram.h + * \date Oct 10, 2014 + * \version v0.6 + * \copyright <2009-2014> Forschungszentrum J��lich GmbH. All rights reserved. + * + * \section License + * This file is part of JuPedSim. + * + * JuPedSim is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * JuPedSim 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 Lesser General Public License + * along with JuPedSim. If not, see <http://www.gnu.org/licenses/>. + * + * \section Description + * The VoronoiDiagram class define functions used to calculate Voronoi diagrams + * from trajectories. + * + * + **/ + +#ifndef VORONOIDIAGRAM_H_ +#define VORONOIDIAGRAM_H_ + +#include <vector> +#include <iostream> +#include <math.h> + +#define PI 3.14159265 + +#include <boost/polygon/voronoi.hpp> +using boost::polygon::voronoi_builder; +using boost::polygon::voronoi_diagram; + +#include <boost/geometry.hpp> +#include <boost/geometry/geometry.hpp> +#include <boost/geometry/geometries/point_xy.hpp> +#include <boost/geometry/geometries/polygon.hpp> +#include <boost/geometry/geometries/adapted/c_array.hpp> +#include <boost/geometry/geometries/ring.hpp> +#include <boost/geometry/algorithms/intersection.hpp> +#include <boost/geometry/algorithms/within.hpp> +#include <boost/foreach.hpp> +#include "general/Macros.h" + +typedef boost::geometry::model::d2::point_xy<double, boost::geometry::cs::cartesian> point_2d; +typedef boost::geometry::model::polygon<point_2d> polygon_2d; +typedef std::vector<polygon_2d > polygon_list; +typedef boost::geometry::model::segment<boost::geometry::model::d2::point_xy<double> > segment; + +typedef boost::polygon::point_data<double> point_type2; +typedef double coordinate_type; +typedef boost::polygon::voronoi_diagram<double> VD; +typedef VD::edge_type edge_type; +typedef VD::cell_type cell_type; +typedef VD::cell_type::source_index_type source_index_type; + +class VoronoiDiagram +{ +private: + std::vector<point_type2> points; + point_type2 retrieve_point(const cell_type& cell); + point_type2 clip_infinite_edge( const edge_type& edge, double minX, double minY, double maxX, double maxY); + double area_triangle(const point_type2& tri_p1, const point_type2& tri_p2, const point_type2& tri_p3); + bool point_inside_triangle(const point_type2& pt, const point_type2& tri_p1, const point_type2& tri_p2, const point_type2& tri_p3); + std::vector<point_type2> add_bounding_points(const point_type2& pt1, const point_type2& pt2, const point_type2& pt, double minX, + double minY, double maxX, double maxY); + point_type2 getIntersectionPoint(const point_2d& pt0, const point_2d& pt1, const polygon_2d& square); + +public: + VoronoiDiagram(); + virtual ~VoronoiDiagram(); + + std::vector<polygon_2d> getVoronoiPolygons(std::vector<double>& XInFrame, std::vector<double>& YInFrame, std::vector<double>& VInFrame, + std::vector<int>& IdInFrame, const int numPedsInFrame, const double Bound_Max); + std::vector<polygon_2d> cutPolygonsWithGeometry(const std::vector<polygon_2d>& polygon, const polygon_2d& Geometry, const std::vector<double>& xs, const std::vector<double>& ys); + std::vector<polygon_2d> cutPolygonsWithCircle(const std::vector<polygon_2d>& polygon, const std::vector<double>& xs, const std::vector<double>& ys, double radius, int edges); +}; + +#endif /* VORONOIDIAGRAM_H_ */ diff --git a/scripts/_Plot_cell_rho.py b/scripts/_Plot_cell_rho.py index d735030246f299961592cb2ad1bc9bbd01a8ec85..f55b74441d49be7d1da1b6074155d0c8ebec90da 100644 --- a/scripts/_Plot_cell_rho.py +++ b/scripts/_Plot_cell_rho.py @@ -6,13 +6,33 @@ from Polygon import * import matplotlib.cm as cm import pylab from mpl_toolkits.axes_grid1 import make_axes_locatable +import argparse +import sys -rho_max = 5.0 -t_start = 700 -t_end = 701 -for i in range(t_start,t_end): - fig = plt.figure(figsize=(16, 12), dpi=100) +def getParserArgs(): + parser = argparse.ArgumentParser(description='Combine French data to one file') + parser.add_argument("-f", "--filepath", default="./", help='give the path of source file') + parser.add_argument("-n", "--namefile", help='give the name of the source file') + parser.add_argument("-x1", "--geominx", type=float, help='give the minmum x of the geometry') + parser.add_argument("-x2", "--geomaxx", type=float, help='give the maxmum x of the geometry') + parser.add_argument("-y1", "--geominy", type=float, help='give the minmum y of the geometry') + parser.add_argument("-y2", "--geomaxy", type=float, help='give the maxmum y of the geometry') + args = parser.parse_args() + return args + + +if __name__ == '__main__': + rho_max = 8.0 + args = getParserArgs() + filepath = args.filepath + sys.path.append(filepath) + namefile = args.namefile + geominX = args.geominx + geomaxX = args.geomaxx + geominY = args.geominy + geomaxY = args.geomaxy + fig = plt.figure(figsize=(16*(geomaxX-geominX)/(geomaxY-geominY)+2, 16), dpi=100) ax1 = fig.add_subplot(111,aspect='equal') plt.rc("font", size=30) plt.rc('pdf',fonttype = 42) @@ -24,10 +44,10 @@ for i in range(t_start,t_end): tick.set_markersize(6) ax1.set_aspect("equal") density=array([]) - polys = open("./polygonko-240-240-240_"+str(i)+".dat").readlines() + polys = open("%s/polygon%s.dat"%(filepath,namefile)).readlines() for poly in polys: exec("p = %s"%poly) - p=tuple(tuple(i/100.0 for i in inner) for inner in p) + #p=tuple(tuple(i/100.0 for i in inner) for inner in p) xx=1.0/Polygon(p).area() if xx>rho_max: xx=rho_max @@ -42,28 +62,25 @@ for i in range(t_start,t_end): sm.set_clim(vmin=0,vmax=5) for poly in polys: exec("p = %s"%poly) - p=tuple(tuple(i/100.0 for i in inner) for inner in p) + #p=tuple(tuple(i/100.0 for i in inner) for inner in p) xx=1.0/Polygon(p).area() #print xx if xx>rho_max: xx=rho_max ax1.add_patch(pgon(p,facecolor=sm.to_rgba(xx), edgecolor='white',linewidth=2)) - points = loadtxt("./pointsko-240-240-240_"+str(i)+"_left.dat") - ax1.plot(points[:,0]/100.,points[:,1]/100.,"bo",markersize = 20,markeredgewidth=2) - points = loadtxt("./pointsko-240-240-240_"+str(i)+"_right.dat") - ax1.plot(points[:,0]/100.,points[:,1]/100.,"ro",markersize = 20,markeredgewidth=2) - ax1.set_xlim(-4.50,4.00) - ax1.set_ylim(-2.60,4.00) + points = loadtxt("%s/points%s.dat"%(filepath,namefile)) + ax1.plot(points[:,0],points[:,1],"bo",markersize = 20,markeredgewidth=2) + ax1.set_xlim(geominX,geomaxX) + ax1.set_ylim(geominY,geomaxY) plt.xlabel("x [m]") plt.ylabel("y [m]") #print density + plt.title("%s"%namefile) divider = make_axes_locatable(ax1) cax = divider.append_axes("right", size="2.5%", pad=0.2) cb=fig.colorbar(sm,ax=ax1,cax=cax,format='%.1f') cb.set_label('Density [$m^{-2}$]') - #plt.title('Frame '+ str(i)) - plt.savefig(str(i)+".pdf") + plt.savefig("%s/rho_%s.png"%(filepath,namefile)) plt.close() -# plt.show() diff --git a/scripts/_Plot_cell_v.py b/scripts/_Plot_cell_v.py index 0b31ca202d97284217348e7878a1ff9be039f66d..a9851d75c66e52ad67e703b010be2b0348144ddc 100644 --- a/scripts/_Plot_cell_v.py +++ b/scripts/_Plot_cell_v.py @@ -6,12 +6,32 @@ import matplotlib.cm as cm import pylab from mpl_toolkits.axes_grid1 import make_axes_locatable import matplotlib +import argparse +import sys -t_start = 700 -t_end = 701 -for i in range(t_start,t_end): - fig = plt.figure(figsize=(16, 12), dpi=300) +def getParserArgs(): + parser = argparse.ArgumentParser(description='Combine French data to one file') + parser.add_argument("-f", "--filepath", default="./", help='give the path of source file') + parser.add_argument("-n", "--namefile", help='give the name of the source file') + parser.add_argument("-x1", "--geominx", type=float, help='give the minmum x of the geometry') + parser.add_argument("-x2", "--geomaxx", type=float, help='give the maxmum x of the geometry') + parser.add_argument("-y1", "--geominy", type=float, help='give the minmum y of the geometry') + parser.add_argument("-y2", "--geomaxy", type=float, help='give the maxmum y of the geometry') + args = parser.parse_args() + return args + + +if __name__ == '__main__': + args = getParserArgs() + filepath = args.filepath + sys.path.append(filepath) + namefile = args.namefile + geominX = args.geominx + geomaxX = args.geomaxx + geominY = args.geominy + geomaxY = args.geomaxy + fig = plt.figure(figsize=(16*(geomaxX-geominX)/(geomaxY-geominY)+2, 16), dpi=100) ax1 = fig.add_subplot(111,aspect='equal') plt.rc("font", size=30) ax1.set_yticks([int(1.00*j) for j in range(-2,5)]) @@ -22,9 +42,8 @@ for i in range(t_start,t_end): tick.set_markersize(6) ax1.set_aspect("equal") velocity=array([]) - polysfile = open("./polygonko-240-240-240_"+str(i)+".dat") - polys=polysfile.readlines() - velocity=loadtxt("./speedko-240-240-240_"+str(i)+".dat") + polys = open("%s/polygon%s.dat"%(filepath,namefile)).readlines() + velocity=loadtxt("%s/speed%s.dat"%(filepath,namefile)) sm = cm.ScalarMappable(cmap=cm.jet) sm.set_array(velocity) sm.autoscale_None() @@ -32,30 +51,23 @@ for i in range(t_start,t_end): index=0 for poly in polys: exec("p = %s"%poly) - p=tuple(tuple(i/100.0 for i in inner) for inner in p) + #p=tuple(tuple(i/100.0 for i in inner) for inner in p) xx = velocity[index] index += 1 ax1.add_patch(pgon(p,facecolor=sm.to_rgba(xx), edgecolor='white',linewidth=2)) - points = loadtxt("./pointsko-240-240-240_"+str(i)+"_left.dat") - ax1.plot(points[:,0]/100.,points[:,1]/100.,"bo",markersize = 20,markeredgewidth=2) - points = loadtxt("./pointsko-240-240-240_"+str(i)+"_right.dat") - ax1.plot(points[:,0]/100.,points[:,1]/100.,"ro",markersize = 20,markeredgewidth=2) - ax1.set_xlim(-4.50,4.00) - ax1.set_ylim(-2.60,4.00) + points = loadtxt("%s/points%s.dat"%(filepath,namefile)) + ax1.plot(points[:,0],points[:,1],"bo",markersize = 20,markeredgewidth=2) + ax1.set_xlim(geominX,geomaxX) + ax1.set_ylim(geominY,geomaxY) plt.xlabel("x [m]") plt.ylabel("y [m]") - #print density + plt.title("%s"%namefile) divider = make_axes_locatable(ax1) cax = divider.append_axes("right", size="2.5%", pad=0.2) cb=fig.colorbar(sm,ax=ax1,cax=cax,format='%.1f') cb.set_label('Velocity [$m/s$]') - #plt.title('Frame '+ str(i)) - #plt.xlabel('X [cm]') - #plt.ylabel('Y [cm]') - plt.savefig(str(i)+"_v.png") - plt.gcf().clear() - polysfile.close() -# plt.show() + plt.savefig("%s/v_%s.png"%(filepath,namefile)) + plt.close() diff --git a/scripts/txt2xml.py b/scripts/txt2xml.py index ee7109ccc5eacd42439e053e5056c10ef216209a..72ade1f256d40e1b6576a7dc8a25b499e4ac5a0c 100644 --- a/scripts/txt2xml.py +++ b/scripts/txt2xml.py @@ -72,8 +72,10 @@ for inputfile in files: continue logging.info("|----> inputfile=%s"%inputfile) logging.info("<----| outputfile=%s"%outputfile) - + Ntemp = len(data[:,0]) Nagents = max(data[:,0]) - min(data[:,0]) + 1 + if(Ntemp!=Nagents): + Nagents=Ntemp out = open(outputfile, "w") write_header(out, Nagents, fps) # Todo: write geometry data------------------------------------------------------ @@ -99,7 +101,7 @@ for inputfile in files: write_frames(out, frames, data, mTocm) - out.write("</trajectoriesDataset>") + out.write("</trajectories>") diff --git a/scripts/txt2xml_lib.py b/scripts/txt2xml_lib.py index 354aa506346d08fb68c573c12290d43f94f3c69f..42a28d9f27e513395880a3c8fe8346e23aed6357 100644 --- a/scripts/txt2xml_lib.py +++ b/scripts/txt2xml_lib.py @@ -230,7 +230,7 @@ def getSpeed(data, agent, frame, fps=16, df=10, cm=0.01): #======================================================================================================== def write_header(out, Nagents, fps): out.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>") - out.write("<trajectoriesDataset>") + out.write("<trajectories>") # write header out.write("<header formatVersion = \"1.0\">") out.write("\t<agents>%d</agents>"%Nagents) @@ -253,16 +253,26 @@ def write_geometry(out, walls): def write_frames(out, frames, data, mTocm ): + extract_id = unique(data[:,0]) + if len(extract_id) != (max(data[:,0])-min(data[:,0])+1): + data1 = array([[0, 0, 0, 0]]) + id = 1 + for i in extract_id: + data_id = data[ data[:,0] == i ] + data_id[:,0] = id + data1 = append(data1, data_id, axis=0) + id = id + 1 + data = delete(data1, (0), axis=0) for frame in frames: # if frame%100 == 0: # logging.info("++ frame:\t %d"%frame) d = data [ data[:,1] == frame ] # get data framewise #================== begin write frame ============== - out.write("<frame ID=\"%d\">"%frame) + out.write("<frame ID=\"%d\">\n"%frame) for (agent, x, y) in zip(d[:,0].astype(int), d[:,2], d[:,3]): - text = "\t<agent ID=\"%d\" \txPos=\"%.2f\"\tyPos=\"%.2f\"\tradiusA=\"%.2f\"\tradiusB=\"%.2f\"\t ellipseOrientation=\"%.2f\"\tellipseColor=\"%d\"/>"%(agent, x*mTocm, y*mTocm, 20, 20, 0, 200) + text = "\t<agent ID=\"%d\" \tx=\"%.2f\"\ty=\"%.2f\"\trA=\"%.2f\"\trB=\"%.2f\"\t eO=\"%.2f\"\teC=\"%d\"/>\n"%(agent, x*mTocm, y*mTocm, 20, 20, 0, 200) out.write(text) out.write("</frame>\n") diff --git a/xsd/jps_report.xsd b/xsd/jps_report.xsd index cf428f8f5a2d95ad48ded860563285e6af00b0be..aa1c5e7b27dcb6b3da2b276977b261a1f1df3188 100644 --- a/xsd/jps_report.xsd +++ b/xsd/jps_report.xsd @@ -1,180 +1,252 @@ -<?xml version="1.0" encoding="UTF-8"?> - <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> - <!-- XML Schema Generated from XML Document on Thu Dec 11 2014 15:35:09 GMT+0100 (CET) --> - <!-- with XmlGrid.net Free Online Service http://xmlgrid.net --> - <xs:element name="JPSreport"> - <xs:complexType> - <xs:sequence> - <xs:element name="geometry"> - <xs:complexType> - <xs:attribute name="file" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="trajectories"> - <xs:complexType> - <xs:sequence> - <xs:element name="file"> - <xs:complexType> - <xs:attribute name="name" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="path"> - <xs:complexType> - <xs:attribute name="location" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="format" type="xs:string"></xs:attribute> - <xs:attribute name="unit" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="measurementAreas"> - <xs:complexType> - <xs:sequence> - <xs:element name="area_B"> - <xs:complexType> - <xs:sequence> - <xs:element name="p1"> - <xs:complexType> - <xs:attribute name="x" type="xs:double"></xs:attribute> - <xs:attribute name="y" type="xs:double"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="p2"> - <xs:complexType> - <xs:attribute name="x" type="xs:double"></xs:attribute> - <xs:attribute name="y" type="xs:double"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="p3"> - <xs:complexType> - <xs:attribute name="x" type="xs:double"></xs:attribute> - <xs:attribute name="y" type="xs:double"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="p4"> - <xs:complexType> - <xs:attribute name="x" type="xs:double"></xs:attribute> - <xs:attribute name="y" type="xs:double"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="movingDirection"> - <xs:complexType> - <xs:attribute name="start" type="xs:string"></xs:attribute> - <xs:attribute name="end" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="id" type="xs:int"></xs:attribute> - <xs:attribute name="type" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="area_L"> - <xs:complexType> - <xs:sequence> - <xs:element name="start"> - <xs:complexType> - <xs:attribute name="x" type="xs:double"></xs:attribute> - <xs:attribute name="y" type="xs:int"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="end"> - <xs:complexType> - <xs:attribute name="x" type="xs:int"></xs:attribute> - <xs:attribute name="y" type="xs:int"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="id" type="xs:int"></xs:attribute> - <xs:attribute name="type" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="unit" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="velocity"> - <xs:complexType> - <xs:sequence> - <xs:element name="useXComponent" type="xs:string"></xs:element> - <xs:element name="useYComponent" type="xs:string"></xs:element> - <xs:element name="halfFrameNumberToUse" type="xs:int"></xs:element> - </xs:sequence> - </xs:complexType> - </xs:element> - <xs:element name="method_A"> - <xs:complexType> - <xs:sequence> - <xs:element name="timeInterval" type="xs:int"> - <xs:complexType> - <xs:attribute name="unit" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="measurementArea"> - <xs:complexType> - <xs:attribute name="id" type="xs:int"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="enabled" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="method_B"> - <xs:complexType> - <xs:sequence> - <xs:element name="measurementArea"> - <xs:complexType> - <xs:attribute name="id" type="xs:int"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="enabled" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="method_C"> - <xs:complexType> - <xs:sequence> - <xs:element name="measurementArea"> - <xs:complexType> - <xs:attribute name="id" type="xs:int"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="enabled" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="method_D"> - <xs:complexType> - <xs:sequence> - <xs:element name="measurementArea"> - <xs:complexType> - <xs:attribute name="id" type="xs:int"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="cutByCircle"> - <xs:complexType> - <xs:attribute name="enabled" type="xs:string"></xs:attribute> - <xs:attribute name="radius" type="xs:int"></xs:attribute> - <xs:attribute name="edges" type="xs:int"></xs:attribute> - </xs:complexType> - </xs:element> - <xs:element name="getProfile"> - <xs:complexType> - <xs:attribute name="enabled" type="xs:string"></xs:attribute> - <xs:attribute name="scale_x" type="xs:double"></xs:attribute> - <xs:attribute name="scale_y" type="xs:double"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="enabled" type="xs:string"></xs:attribute> - <xs:attribute name="outputGraph" type="xs:string"></xs:attribute> - <xs:attribute name="individualFDdata" type="xs:string"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:sequence> - <xs:attribute name="project" type="xs:string"></xs:attribute> - <xs:attribute name="version" type="xs:double"></xs:attribute> - </xs:complexType> - </xs:element> - </xs:schema> -� \ No newline at end of file +<?xml version="1.0" encoding="UTF-8"?> +<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> + <xs:element name="JPSreport"> + <xs:complexType> + <xs:all> + <xs:element name="geometry"> + <xs:annotation> + <xs:documentation>geometry file</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:string" name="file" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + <xs:element name="trajectories"> + <xs:annotation> + <xs:documentation>trajectories file and format either a file name or a path location. In the latter case all files in the directory will be used</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:element name="file" maxOccurs="unbounded" minOccurs="0"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:string" name="name" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + <xs:element name="path"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:string" name="location" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute type="xs:string" name="format" use="required"/> + <xs:attribute type="xs:string" name="unit" use="required"/> + </xs:complexType> + </xs:element> + <xs:element name="measurementAreas"> + <xs:annotation> + <xs:documentation>all files in the directories will be used</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:element name="area_B" maxOccurs="unbounded" minOccurs="1"> + <xs:complexType> + <xs:sequence> + <xs:element name="vertex" maxOccurs="unbounded" minOccurs="4"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:float" name="x" use="required"/> + <xs:attribute type="xs:float" name="y" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + <xs:element name="Length_in_movement_direction" maxOccurs="1" minOccurs="0"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:float" name="distance" use="optional"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute type="xs:int" name="id" use="required"/> + <xs:attribute type="xs:string" name="type" use="optional"/> + </xs:complexType> + </xs:element> + <xs:element name="area_L" maxOccurs="unbounded" minOccurs="1"> + <xs:complexType> + <xs:sequence> + <xs:element name="start"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:float" name="x" use="required"/> + <xs:attribute type="xs:float" name="y" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + <xs:element name="end"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:float" name="x" use="required"/> + <xs:attribute type="xs:float" name="y" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute type="xs:int" name="id" use="required"/> + <xs:attribute type="xs:string" name="type" use="optional"/> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute type="xs:string" name="unit" use="required"/> + </xs:complexType> + </xs:element> + <xs:element name="velocity"> + <xs:complexType> + <xs:sequence> + <xs:element type="xs:string" name="useXComponent"/> + <xs:element type="xs:string" name="useYComponent"/> + <xs:element type="xs:int" name="halfFrameNumberToUse"> + <xs:annotation> + <xs:documentation>half of the time interval that used to calculate instantaneous velocity + of ped i [fr] here v_i = (X(t+deltaF) - X(t+deltaF))/(2*deltaF). X is location.</xs:documentation> + </xs:annotation> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="method_A"> + <xs:annotation> + <xs:documentation>Method A (Zhang2011a) Flow and Vel</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:element name="timeInterval" > + <xs:annotation> + <xs:documentation>Time interval used to count the flow [fr]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:int" > + <xs:attribute type="xs:string" name="unit" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + <xs:element name="measurementArea" maxOccurs="unbounded" minOccurs="1"> + <xs:annotation> + <xs:documentation>The coordinate of the line used to calculate the flow and velocity</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:int" name="id" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute type="xs:string" name="enabled"/> + </xs:complexType> + </xs:element> + <xs:element name="method_B"> + <xs:annotation> + <xs:documentation>Method B (Zhang2011a) Vel and Dens based on Tin and Tout</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:element name="measurementArea" maxOccurs="unbounded" minOccurs="1"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:int" name="id" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute type="xs:string" name="enabled"/> + </xs:complexType> + </xs:element> + <xs:element name="method_C"> + <xs:annotation> + <xs:documentation>Method C (Zhang2011a) Classical density and Vel</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:element name="measurementArea" maxOccurs="unbounded" minOccurs="1"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:int" name="id" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute type="xs:string" name="enabled"/> + </xs:complexType> + </xs:element> + <xs:element name="method_D"> + <xs:annotation> + <xs:documentation>Method D (Zhang2011a) Voronoi density and Vel</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:element name="measurementArea" maxOccurs="unbounded" minOccurs="1"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:int" name="id" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + <xs:element name="cutByCircle"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:string" name="enabled" use="required"/> + <xs:attribute type="xs:double" name="radius" use="required"/> + <xs:attribute type="xs:int" name="edges" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + <xs:element name="getProfile"> + <xs:complexType> + <xs:simpleContent> + <xs:extension base="xs:string"> + <xs:attribute type="xs:string" name="enabled" use="required"/> + <xs:attribute type="xs:float" name="scale_x" use="required"/> + <xs:attribute type="xs:float" name="scale_y" use="required"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:attribute type="xs:string" name="enabled" use="required"/> + <xs:attribute type="xs:string" name="outputGraph" use="required"/> + <xs:attribute type="xs:string" name="individualFDdata" use="required"/> + </xs:complexType> + </xs:element> + </xs:all> + <xs:attribute type="xs:string" name="project" use="required"/> + <xs:attribute name="version" use="required"> + <xs:simpleType> + <xs:restriction base="xs:float"> + <xs:enumeration value="0.6" /> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:complexType> + </xs:element> +</xs:schema> \ No newline at end of file