Browse Source

新增matlab分支

adam_zhuo 3 years ago
parent
commit
12cc5354cf

+ 0 - 121
Arduino UNOR3/JY901/JY901.cpp

@@ -1,121 +0,0 @@
-#include "JY901.h"
-#include "string.h"
-
-CJY901 ::CJY901 ()
-{
-	ucDevAddr =0x50;
-}
-void CJY901::StartIIC()
-{
-	ucDevAddr = 0x50;
-	Wire.begin();
-}
-void CJY901::StartIIC(unsigned char ucAddr)
-{
-	ucDevAddr = ucAddr;
-	Wire.begin();
-}
-void CJY901 ::CopeSerialData(unsigned char ucData)
-{
-	static unsigned char ucRxBuffer[250];
-	static unsigned char ucRxCnt = 0;	
-	
-	ucRxBuffer[ucRxCnt++]=ucData;
-	if (ucRxBuffer[0]!=0x55) 
-	{
-		ucRxCnt=0;
-		return;
-	}
-	if (ucRxCnt<11) {return;}
-	else
-	{
-		switch(ucRxBuffer[1])
-		{
-			case 0x50:	memcpy(&stcTime,&ucRxBuffer[2],8);break;
-			case 0x51:	memcpy(&stcAcc,&ucRxBuffer[2],8);break;
-			case 0x52:	memcpy(&stcGyro,&ucRxBuffer[2],8);break;
-			case 0x53:	memcpy(&stcAngle,&ucRxBuffer[2],8);break;
-			case 0x54:	memcpy(&stcMag,&ucRxBuffer[2],8);break;
-			case 0x55:	memcpy(&stcDStatus,&ucRxBuffer[2],8);break;
-			case 0x56:	memcpy(&stcPress,&ucRxBuffer[2],8);break;
-			case 0x57:	memcpy(&stcLonLat,&ucRxBuffer[2],8);break;
-			case 0x58:	memcpy(&stcGPSV,&ucRxBuffer[2],8);break;
-		}
-		ucRxCnt=0;
-	}
-}
-void CJY901::readRegisters(unsigned char deviceAddr,unsigned char addressToRead, unsigned char bytesToRead, char * dest)
-{
-  Wire.beginTransmission(deviceAddr);
-  Wire.write(addressToRead);
-  Wire.endTransmission(false); //endTransmission but keep the connection active
-
-  Wire.requestFrom(deviceAddr, bytesToRead); //Ask for bytes, once done, bus is released by default
-
-  while(Wire.available() < bytesToRead); //Hang out until we get the # of bytes we expect
-
-  for(int x = 0 ; x < bytesToRead ; x++)
-    dest[x] = Wire.read();    
-}
-void CJY901::writeRegister(unsigned char deviceAddr,unsigned char addressToWrite,unsigned char bytesToRead, char *dataToWrite)
-{
-  Wire.beginTransmission(deviceAddr);
-  Wire.write(addressToWrite);
-  for(int i = 0 ; i < bytesToRead ; i++)
-  Wire.write(dataToWrite[i]);
-  Wire.endTransmission(); //Stop transmitting
-}
-
-short CJY901::ReadWord(unsigned char ucAddr)
-{
-	short sResult;
-	readRegisters(ucDevAddr, ucAddr, 2, (char *)&sResult);
-	return sResult;
-}
-void CJY901::WriteWord(unsigned char ucAddr,short sData)
-{	
-	writeRegister(ucDevAddr, ucAddr, 2, (char *)&sData);
-}
-void CJY901::ReadData(unsigned char ucAddr,unsigned char ucLength,char chrData[])
-{
-	readRegisters(ucDevAddr, ucAddr, ucLength, chrData);
-}
-
-void CJY901::GetTime()
-{
-	readRegisters(ucDevAddr, 0x30, 8, (char*)&stcTime);	
-}
-void CJY901::GetAcc()
-{
-	readRegisters(ucDevAddr, AX, 6, (char *)&stcAcc);
-}
-void CJY901::GetGyro()
-{
-	readRegisters(ucDevAddr, GX, 6, (char *)&stcGyro);
-}
-
-void CJY901::GetAngle()
-{
-	readRegisters(ucDevAddr, Roll, 6, (char *)&stcAngle);
-}
-void CJY901::GetMag()
-{
-	readRegisters(ucDevAddr, HX, 6, (char *)&stcMag);
-}
-void CJY901::GetPress()
-{
-	readRegisters(ucDevAddr, PressureL, 8, (char *)&stcPress);
-}
-void CJY901::GetDStatus()
-{
-	readRegisters(ucDevAddr, D0Status, 8, (char *)&stcDStatus);
-}
-void CJY901::GetLonLat()
-{
-	readRegisters(ucDevAddr, LonL, 8, (char *)&stcLonLat);
-}
-void CJY901::GetGPSV()
-{
-	readRegisters(ucDevAddr, GPSHeight, 8, (char *)&stcGPSV);
-}
-CJY901 JY901 = CJY901();

+ 0 - 166
Arduino UNOR3/JY901/JY901.h

@@ -1,166 +0,0 @@
-#ifndef JY901_h
-#define JY901_h
-
-#define SAVE 			0x00
-#define CALSW 		0x01
-#define RSW 			0x02
-#define RRATE			0x03
-#define BAUD 			0x04
-#define AXOFFSET	0x05
-#define AYOFFSET	0x06
-#define AZOFFSET	0x07
-#define GXOFFSET	0x08
-#define GYOFFSET	0x09
-#define GZOFFSET	0x0a
-#define HXOFFSET	0x0b
-#define HYOFFSET	0x0c
-#define HZOFFSET	0x0d
-#define D0MODE		0x0e
-#define D1MODE		0x0f
-#define D2MODE		0x10
-#define D3MODE		0x11
-#define D0PWMH		0x12
-#define D1PWMH		0x13
-#define D2PWMH		0x14
-#define D3PWMH		0x15
-#define D0PWMT		0x16
-#define D1PWMT		0x17
-#define D2PWMT		0x18
-#define D3PWMT		0x19
-#define IICADDR		0x1a
-#define LEDOFF 		0x1b
-#define GPSBAUD		0x1c
-
-#define YYMM				0x30
-#define DDHH				0x31
-#define MMSS				0x32
-#define MS					0x33
-#define AX					0x34
-#define AY					0x35
-#define AZ					0x36
-#define GX					0x37
-#define GY					0x38
-#define GZ					0x39
-#define HX					0x3a
-#define HY					0x3b
-#define HZ					0x3c			
-#define Roll				0x3d
-#define Pitch				0x3e
-#define Yaw					0x3f
-#define TEMP				0x40
-#define D0Status		0x41
-#define D1Status		0x42
-#define D2Status		0x43
-#define D3Status		0x44
-#define PressureL		0x45
-#define PressureH		0x46
-#define HeightL			0x47
-#define HeightH			0x48
-#define LonL				0x49
-#define LonH				0x4a
-#define LatL				0x4b
-#define LatH				0x4c
-#define GPSHeight   0x4d
-#define GPSYAW      0x4e
-#define GPSVL				0x4f
-#define GPSVH				0x50
-      
-#define DIO_MODE_AIN 0
-#define DIO_MODE_DIN 1
-#define DIO_MODE_DOH 2
-#define DIO_MODE_DOL 3
-#define DIO_MODE_DOPWM 4
-#define DIO_MODE_GPS 5		
-
-struct STime
-{
-	unsigned char ucYear;
-	unsigned char ucMonth;
-	unsigned char ucDay;
-	unsigned char ucHour;
-	unsigned char ucMinute;
-	unsigned char ucSecond;
-	unsigned short usMiliSecond;
-};
-struct SAcc
-{
-	short a[3];
-	short T;
-};
-struct SGyro
-{
-	short w[3];
-	short T;
-};
-struct SAngle
-{
-	short Angle[3];
-	short T;
-};
-struct SMag
-{
-	short h[3];
-	short T;
-};
-
-struct SDStatus
-{
-	short sDStatus[4];
-};
-
-struct SPress
-{
-	long lPressure;
-	long lAltitude;
-};
-
-struct SLonLat
-{
-	long lLon;
-	long lLat;
-};
-
-struct SGPSV
-{
-	short sGPSHeight;
-	short sGPSYaw;
-	long lGPSVelocity;
-};
-class CJY901 
-{
-  public: 
-	struct STime		stcTime;
-	struct SAcc 		stcAcc;
-	struct SGyro 		stcGyro;
-	struct SAngle 		stcAngle;
-	struct SMag 		stcMag;
-	struct SDStatus 	stcDStatus;
-	struct SPress 		stcPress;
-	struct SLonLat 		stcLonLat;
-	struct SGPSV 		stcGPSV;
-	
-    CJY901 (); 
-	void StartIIC();
-	void StartIIC(unsigned char ucAddr);
-    void CopeSerialData(unsigned char ucData);
-	short ReadWord(unsigned char ucAddr);
-	void WriteWord(unsigned char ucAddr,short sData);
-	void ReadData(unsigned char ucAddr,unsigned char ucLength,char chrData[]);
-	void GetTime();
-	void GetAcc();
-	void GetGyro();
-	void GetAngle();
-	void GetMag();
-	void GetPress();
-	void GetDStatus();
-	void GetLonLat();
-	void GetGPSV();
-	
-  private: 
-	unsigned char ucDevAddr; 
-	void readRegisters(unsigned char deviceAddr,unsigned char addressToRead, unsigned char bytesToRead, char * dest);
-	void writeRegister(unsigned char deviceAddr,unsigned char addressToWrite,unsigned char bytesToRead, char *dataToWrite);
-};
-extern CJY901 JY901;
-#include <Wire.h>
-#endif

+ 0 - 52
Arduino UNOR3/JY901/examples/JY901IIC/JY901IIC.ino

@@ -1,52 +0,0 @@
-#include <Wire.h>
-#include <JY901.h>
-/*
-Test on Uno R3.
-JY901    UnoR3
-SDA <---> SDA
-SCL <---> SCL
-*/
-void setup() 
-{
-  Serial.begin(9600);
-  JY901.StartIIC();
-} 
-
-void loop() 
-{
-  //print received data. Data was received in serialEvent;
-  JY901.GetTime();
-  Serial.print("Time:20");Serial.print(JY901.stcTime.ucYear);Serial.print("-");Serial.print(JY901.stcTime.ucMonth);Serial.print("-");Serial.print(JY901.stcTime.ucDay);
-  Serial.print(" ");Serial.print(JY901.stcTime.ucHour);Serial.print(":");Serial.print(JY901.stcTime.ucMinute);Serial.print(":");Serial.println((float)JY901.stcTime.ucSecond+(float)JY901.stcTime.usMiliSecond/1000);
-            
-  JY901.GetAcc();
-  Serial.print("Acc:");Serial.print((float)JY901.stcAcc.a[0]/32768*16);Serial.print(" ");Serial.print((float)JY901.stcAcc.a[1]/32768*16);Serial.print(" ");Serial.println((float)JY901.stcAcc.a[2]/32768*16);
-  
-  JY901.GetGyro();  
-  Serial.print("Gyro:");Serial.print((float)JY901.stcGyro.w[0]/32768*2000);Serial.print(" ");Serial.print((float)JY901.stcGyro.w[1]/32768*2000);Serial.print(" ");Serial.println((float)JY901.stcGyro.w[2]/32768*2000);
-  
-  JY901.GetAngle();
-  Serial.print("Angle:");Serial.print((float)JY901.stcAngle.Angle[0]/32768*180);Serial.print(" ");Serial.print((float)JY901.stcAngle.Angle[1]/32768*180);Serial.print(" ");Serial.println((float)JY901.stcAngle.Angle[2]/32768*180);
-  
-  JY901.GetMag();
-  Serial.print("Mag:");Serial.print(JY901.stcMag.h[0]);Serial.print(" ");Serial.print(JY901.stcMag.h[1]);Serial.print(" ");Serial.println(JY901.stcMag.h[2]);
-  
-JY901.GetPress();
-  Serial.print("Pressure:");Serial.print(JY901.stcPress.lPressure);Serial.print(" ");Serial.println((float)JY901.stcPress.lAltitude/100);
-  
-JY901.GetDStatus();
-  Serial.print("DStatus:");Serial.print(JY901.stcDStatus.sDStatus[0]);Serial.print(" ");Serial.print(JY901.stcDStatus.sDStatus[1]);Serial.print(" ");Serial.print(JY901.stcDStatus.sDStatus[2]);Serial.print(" ");Serial.println(JY901.stcDStatus.sDStatus[3]);
-  
-JY901.GetLonLat();
-  Serial.print("Longitude:");Serial.print(JY901.stcLonLat.lLon/10000000);Serial.print("Deg");Serial.print((double)(JY901.stcLonLat.lLon % 10000000)/1e5);Serial.print("m Lattitude:");
-  Serial.print(JY901.stcLonLat.lLat/10000000);Serial.print("Deg");Serial.print((double)(JY901.stcLonLat.lLat % 10000000)/1e5);Serial.println("m");
-  
-JY901.GetGPSV();
-  Serial.print("GPSHeight:");Serial.print((float)JY901.stcGPSV.sGPSHeight/10);Serial.print("m GPSYaw:");Serial.print((float)JY901.stcGPSV.sGPSYaw/10);Serial.print("Deg GPSV:");Serial.print((float)JY901.stcGPSV.lGPSVelocity/1000);Serial.println("km/h");
-  
-  Serial.println("");
-  delay(500);
-}
-
-
-

+ 0 - 54
Arduino UNOR3/JY901/examples/JY901Serial/JY901Serial.ino

@@ -1,54 +0,0 @@
-#include <Wire.h>
-#include <JY901.h>
-/*
-Test on Uno R3.
-JY901   UnoR3
-TX <---> 0(Rx)
-*/
-void setup() 
-{
-  Serial.begin(9600);
-}
-
-void loop() 
-{
-  //print received data. Data was received in serialEvent;
-  Serial.print("Time:20");Serial.print(JY901.stcTime.ucYear);Serial.print("-");Serial.print(JY901.stcTime.ucMonth);Serial.print("-");Serial.print(JY901.stcTime.ucDay);
-  Serial.print(" ");Serial.print(JY901.stcTime.ucHour);Serial.print(":");Serial.print(JY901.stcTime.ucMinute);Serial.print(":");Serial.println((float)JY901.stcTime.ucSecond+(float)JY901.stcTime.usMiliSecond/1000);
-               
-  Serial.print("Acc:");Serial.print((float)JY901.stcAcc.a[0]/32768*16);Serial.print(" ");Serial.print((float)JY901.stcAcc.a[1]/32768*16);Serial.print(" ");Serial.println((float)JY901.stcAcc.a[2]/32768*16);
-  
-  Serial.print("Gyro:");Serial.print((float)JY901.stcGyro.w[0]/32768*2000);Serial.print(" ");Serial.print((float)JY901.stcGyro.w[1]/32768*2000);Serial.print(" ");Serial.println((float)JY901.stcGyro.w[2]/32768*2000);
-  
-  Serial.print("Angle:");Serial.print((float)JY901.stcAngle.Angle[0]/32768*180);Serial.print(" ");Serial.print((float)JY901.stcAngle.Angle[1]/32768*180);Serial.print(" ");Serial.println((float)JY901.stcAngle.Angle[2]/32768*180);
-  
-  Serial.print("Mag:");Serial.print(JY901.stcMag.h[0]);Serial.print(" ");Serial.print(JY901.stcMag.h[1]);Serial.print(" ");Serial.println(JY901.stcMag.h[2]);
-  
-  Serial.print("Pressure:");Serial.print(JY901.stcPress.lPressure);Serial.print(" ");Serial.println((float)JY901.stcPress.lAltitude/100);
-  
-  Serial.print("DStatus:");Serial.print(JY901.stcDStatus.sDStatus[0]);Serial.print(" ");Serial.print(JY901.stcDStatus.sDStatus[1]);Serial.print(" ");Serial.print(JY901.stcDStatus.sDStatus[2]);Serial.print(" ");Serial.println(JY901.stcDStatus.sDStatus[3]);
-  
-  Serial.print("Longitude:");Serial.print(JY901.stcLonLat.lLon/10000000);Serial.print("Deg");Serial.print((double)(JY901.stcLonLat.lLon % 10000000)/1e5);Serial.print("m Lattitude:");
-  Serial.print(JY901.stcLonLat.lLat/10000000);Serial.print("Deg");Serial.print((double)(JY901.stcLonLat.lLat % 10000000)/1e5);Serial.println("m");
-  
-  Serial.print("GPSHeight:");Serial.print((float)JY901.stcGPSV.sGPSHeight/10);Serial.print("m GPSYaw:");Serial.print((float)JY901.stcGPSV.sGPSYaw/10);Serial.print("Deg GPSV:");Serial.print((float)JY901.stcGPSV.lGPSVelocity/1000);Serial.println("km/h");
-  
-  Serial.println("");
-  delay(500);
-}
-
-/*
-  SerialEvent occurs whenever a new data comes in the
- hardware serial RX.  This routine is run between each
- time loop() runs, so using delay inside loop can delay
- response.  Multiple bytes of data may be available.
- */
-void serialEvent() 
-{
-  while (Serial.available()) 
-  {
-    JY901.CopeSerialData(Serial.read()); //Call JY901 data cope function
-  }
-}
-
-

+ 0 - 124
Arduino UNOR3/JY901/keywords.txt

@@ -1,124 +0,0 @@
-JY901	KEYWORD1
-CopeSerialData	KEYWORD2
-StartIIC	KEYWORD2
-CopeSerialData	KEYWORD2
-ReadWord	KEYWORD2
-WriteWord	KEYWORD2
-ReadData	KEYWORD2
-GetTime		KEYWORD2
-GetAcc		KEYWORD2
-GetGyro		KEYWORD2
-GetAngle	KEYWORD2
-GetMag		KEYWORD2
-GetPress	KEYWORD2
-GetDStatus	KEYWORD2
-GetLonLat	KEYWORD2
-GetGPSV		KEYWORD2
-stcTime	LITERAL1
-ucYear	LITERAL1
-ucMonth	LITERAL1
-ucDay	LITERAL1
-ucHour	LITERAL1
-ucMinute	LITERAL1
-ucSecond	LITERAL1
-usMiliSecond	LITERAL1
-
-stcAcc	LITERAL1
-a	LITERAL1
-T	LITERAL1
-
-stcGyro	LITERAL1
-w	LITERAL1
-
-stcAngle	LITERAL1
-Angle	LITERAL1
-
-stcMag	LITERAL1
-h	LITERAL1
-
-stcDStatus	LITERAL1
-sDStatus	LITERAL1
-
-stcPress	LITERAL1
-lPressure	LITERAL1
-lAltitude	LITERAL1
-
-stcLonLat	LITERAL1
-lLon	LITERAL1
-lLat	LITERAL1
-
-stcGPSV	LITERAL1
-sGPSHeight	LITERAL1
-sGPSYaw	LITERAL1
-lGPSVelocity	LITERAL1
-
-SAVE	LITERAL1
-CALSW	LITERAL1
-RSW	LITERAL1
-RRATE	LITERAL1
-BAUD	LITERAL1
-AXOFFSET	LITERAL1
-AYOFFSET	LITERAL1
-AZOFFSET	LITERAL1
-GXOFFSET	LITERAL1
-GYOFFSET	LITERAL1
-GZOFFSET	LITERAL1
-HXOFFSET	LITERAL1
-HYOFFSET	LITERAL1
-HZOFFSET	LITERAL1
-D0MODE	LITERAL1
-D1MODE	LITERAL1
-D2MODE	LITERAL1
-D3MODE	LITERAL1
-D0PWMH	LITERAL1
-D1PWMH	LITERAL1
-D2PWMH	LITERAL1
-D3PWMH	LITERAL1
-D0PWMT	LITERAL1
-D1PWMT	LITERAL1
-D2PWMT	LITERAL1
-D3PWMT	LITERAL1
-IICADDR	LITERAL1
-LEDOFF	LITERAL1
-GPSBAUD	LITERAL1
-
-YYMM	LITERAL1
-DDHH	LITERAL1
-MMSS	LITERAL1
-MS	LITERAL1
-AX	LITERAL1
-AY	LITERAL1
-AZ	LITERAL1
-GX	LITERAL1
-GY	LITERAL1
-GZ	LITERAL1
-HX	LITERAL1
-HY	LITERAL1
-HZ	LITERAL1
-Roll	LITERAL1
-Pitch	LITERAL1
-Yaw	LITERAL1
-TEMP	LITERAL1
-D0Status	LITERAL1
-D1Status	LITERAL1
-D2Status	LITERAL1
-D3Status	LITERAL1
-PressureL	LITERAL1
-PressureH	LITERAL1
-HeightL	LITERAL1
-HeightH	LITERAL1
-LonL	LITERAL1
-LonH	LITERAL1
-LatL	LITERAL1
-LatH	LITERAL1
-GPSHeight	LITERAL1
-GPSYAW	LITERAL1
-GPSVL	LITERAL1
-GPSVH	LITERAL1
-
-DIO_MODE_AIN	LITERAL1
-DIO_MODE_DIN	LITERAL1
-DIO_MODE_DOH	LITERAL1
-DIO_MODE_DOL	LITERAL1
-DIO_MODE_DOPWM	LITERAL1
-DIO_MODE_GPS	LITERAL1

+ 0 - 123
JY901SerialMega2560/JY901.cpp

@@ -1,123 +0,0 @@
-#include "JY901.h"
-#include "string.h"
-
-CJY901 ::CJY901 ()
-{
-	ucDevAddr =0x50;
-}
-void CJY901::StartIIC()
-{
-	ucDevAddr = 0x50;
-	Wire.begin();
-}
-void CJY901::StartIIC(unsigned char ucAddr)
-{
-	ucDevAddr = ucAddr;
-	Wire.begin();
-}
-void CJY901 ::CopeSerialData(unsigned char ucData)
-{
-	static unsigned char ucRxBuffer[250];
-	static unsigned char ucRxCnt = 0;	
-	
-	ucRxBuffer[ucRxCnt++]=ucData;
-	if (ucRxBuffer[0]!=0x55) 
-	{
-		ucRxCnt=0;
-		return;
-	}
-	if (ucRxCnt<11) {return;}
-	else
-	{
-		switch(ucRxBuffer[1])
-		{
-			case 0x50:	memcpy(&stcTime,&ucRxBuffer[2],8);break;
-			case 0x51:	memcpy(&stcAcc,&ucRxBuffer[2],8);break;
-			case 0x52:	memcpy(&stcGyro,&ucRxBuffer[2],8);break;
-			case 0x53:	memcpy(&stcAngle,&ucRxBuffer[2],8);break;
-			case 0x54:	memcpy(&stcMag,&ucRxBuffer[2],8);break;
-			case 0x55:	memcpy(&stcDStatus,&ucRxBuffer[2],8);break;
-			case 0x56:	memcpy(&stcPress,&ucRxBuffer[2],8);break;
-			case 0x57:	memcpy(&stcLonLat,&ucRxBuffer[2],8);break;
-			case 0x58:	memcpy(&stcGPSV,&ucRxBuffer[2],8);break;
-			case 0x59:	memcpy(&stcQuater,&ucRxBuffer[2],8);break;
-			case 0x5a:	memcpy(&stcSN,&ucRxBuffer[2],8);break;
-		}
-		ucRxCnt=0;
-	}
-}
-void CJY901::readRegisters(unsigned char deviceAddr,unsigned char addressToRead, unsigned char bytesToRead, char * dest)
-{
-  Wire.beginTransmission(deviceAddr);
-  Wire.write(addressToRead);
-  Wire.endTransmission(false); //endTransmission but keep the connection active
-
-  Wire.requestFrom(deviceAddr, bytesToRead); //Ask for bytes, once done, bus is released by default
-
-  while(Wire.available() < bytesToRead); //Hang out until we get the # of bytes we expect
-
-  for(int x = 0 ; x < bytesToRead ; x++)
-    dest[x] = Wire.read();    
-}
-void CJY901::writeRegister(unsigned char deviceAddr,unsigned char addressToWrite,unsigned char bytesToRead, char *dataToWrite)
-{
-  Wire.beginTransmission(deviceAddr);
-  Wire.write(addressToWrite);
-  for(int i = 0 ; i < bytesToRead ; i++)
-  Wire.write(dataToWrite[i]);
-  Wire.endTransmission(); //Stop transmitting
-}
-
-short CJY901::ReadWord(unsigned char ucAddr)
-{
-	short sResult;
-	readRegisters(ucDevAddr, ucAddr, 2, (char *)&sResult);
-	return sResult;
-}
-void CJY901::WriteWord(unsigned char ucAddr,short sData)
-{	
-	writeRegister(ucDevAddr, ucAddr, 2, (char *)&sData);
-}
-void CJY901::ReadData(unsigned char ucAddr,unsigned char ucLength,char chrData[])
-{
-	readRegisters(ucDevAddr, ucAddr, ucLength, chrData);
-}
-
-void CJY901::GetTime()
-{
-	readRegisters(ucDevAddr, 0x30, 8, (char*)&stcTime);	
-}
-void CJY901::GetAcc()
-{
-	readRegisters(ucDevAddr, AX, 6, (char *)&stcAcc);
-}
-void CJY901::GetGyro()
-{
-	readRegisters(ucDevAddr, GX, 6, (char *)&stcGyro);
-}
-
-void CJY901::GetAngle()
-{
-	readRegisters(ucDevAddr, Roll, 6, (char *)&stcAngle);
-}
-void CJY901::GetMag()
-{
-	readRegisters(ucDevAddr, HX, 6, (char *)&stcMag);
-}
-void CJY901::GetPress()
-{
-	readRegisters(ucDevAddr, PressureL, 8, (char *)&stcPress);
-}
-void CJY901::GetDStatus()
-{
-	readRegisters(ucDevAddr, D0Status, 8, (char *)&stcDStatus);
-}
-void CJY901::GetLonLat()
-{
-	readRegisters(ucDevAddr, LonL, 8, (char *)&stcLonLat);
-}
-void CJY901::GetGPSV()
-{
-	readRegisters(ucDevAddr, GPSHeight, 8, (char *)&stcGPSV);
-}
-CJY901 JY901 = CJY901();

+ 0 - 182
JY901SerialMega2560/JY901.h

@@ -1,182 +0,0 @@
-#ifndef JY901_h
-#define JY901_h
-
-#define SAVE 			0x00
-#define CALSW 		0x01
-#define RSW 			0x02
-#define RRATE			0x03
-#define BAUD 			0x04
-#define AXOFFSET	0x05
-#define AYOFFSET	0x06
-#define AZOFFSET	0x07
-#define GXOFFSET	0x08
-#define GYOFFSET	0x09
-#define GZOFFSET	0x0a
-#define HXOFFSET	0x0b
-#define HYOFFSET	0x0c
-#define HZOFFSET	0x0d
-#define D0MODE		0x0e
-#define D1MODE		0x0f
-#define D2MODE		0x10
-#define D3MODE		0x11
-#define D0PWMH		0x12
-#define D1PWMH		0x13
-#define D2PWMH		0x14
-#define D3PWMH		0x15
-#define D0PWMT		0x16
-#define D1PWMT		0x17
-#define D2PWMT		0x18
-#define D3PWMT		0x19
-#define IICADDR		0x1a
-#define LEDOFF 		0x1b
-#define GPSBAUD		0x1c
-
-#define YYMM				0x30
-#define DDHH				0x31
-#define MMSS				0x32
-#define MS					0x33
-#define AX					0x34
-#define AY					0x35
-#define AZ					0x36
-#define GX					0x37
-#define GY					0x38
-#define GZ					0x39
-#define HX					0x3a
-#define HY					0x3b
-#define HZ					0x3c			
-#define Roll				0x3d
-#define Pitch				0x3e
-#define Yaw					0x3f
-#define TEMP				0x40
-#define D0Status		0x41
-#define D1Status		0x42
-#define D2Status		0x43
-#define D3Status		0x44
-#define PressureL		0x45
-#define PressureH		0x46
-#define HeightL			0x47
-#define HeightH			0x48
-#define LonL				0x49
-#define LonH				0x4a
-#define LatL				0x4b
-#define LatH				0x4c
-#define GPSHeight   0x4d
-#define GPSYAW      0x4e
-#define GPSVL				0x4f
-#define GPSVH				0x50
-      
-#define DIO_MODE_AIN 0
-#define DIO_MODE_DIN 1
-#define DIO_MODE_DOH 2
-#define DIO_MODE_DOL 3
-#define DIO_MODE_DOPWM 4
-#define DIO_MODE_GPS 5		
-
-struct STime
-{
-	unsigned char ucYear;
-	unsigned char ucMonth;
-	unsigned char ucDay;
-	unsigned char ucHour;
-	unsigned char ucMinute;
-	unsigned char ucSecond;
-	unsigned short usMiliSecond;
-};
-struct SAcc
-{
-	short a[3];
-	short T;
-};
-struct SGyro
-{
-	short w[3];
-	short T;
-};
-struct SAngle
-{
-	short Angle[3];
-	short T;
-};
-struct SMag
-{
-	short h[3];
-	short T;
-};
-
-struct SDStatus
-{
-	short sDStatus[4];
-};
-
-struct SPress
-{
-	long lPressure;
-	long lAltitude;
-};
-
-struct SLonLat
-{
-	long lLon;
-	long lLat;
-};
-
-struct SGPSV
-{
-	short sGPSHeight;
-	short sGPSYaw;
-	long lGPSVelocity;
-};
-struct SQuater
-{
-	short q0;
-	short q1;
-	short q2;
-	short q3;
-};
-struct SSN
-{
-	short sSVNum;
-	short sPDOP;
-	short sHDOP;
-	short sVDOP;
-};
-class CJY901 
-{
-  public: 
-	struct STime		stcTime;
-	struct SAcc 		stcAcc;
-	struct SGyro 		stcGyro;
-	struct SAngle 		stcAngle;
-	struct SMag 		stcMag;
-	struct SDStatus 	stcDStatus;
-	struct SPress 		stcPress;
-	struct SLonLat 		stcLonLat;
-	struct SGPSV 		stcGPSV;
-	struct SQuater		stcQuater;
-	struct SSN 		stcSN;
-	
-    CJY901 (); 
-	void StartIIC();
-	void StartIIC(unsigned char ucAddr);
-    void CopeSerialData(unsigned char ucData);
-	short ReadWord(unsigned char ucAddr);
-	void WriteWord(unsigned char ucAddr,short sData);
-	void ReadData(unsigned char ucAddr,unsigned char ucLength,char chrData[]);
-	void GetTime();
-	void GetAcc();
-	void GetGyro();
-	void GetAngle();
-	void GetMag();
-	void GetPress();
-	void GetDStatus();
-	void GetLonLat();
-	void GetGPSV();
-	
-  private: 
-	unsigned char ucDevAddr; 
-	void readRegisters(unsigned char deviceAddr,unsigned char addressToRead, unsigned char bytesToRead, char * dest);
-	void writeRegister(unsigned char deviceAddr,unsigned char addressToWrite,unsigned char bytesToRead, char *dataToWrite);
-};
-extern CJY901 JY901;
-#include <Wire.h>
-#endif

+ 0 - 47
JY901SerialMega2560/examples/JY901SerialMega2560/JY901Serial/JY901Serial.ino

@@ -1,47 +0,0 @@
-#include <Wire.h>
-#include <JY901.h>
-/*
-Test on mega2560.
-JY901   mega2560
-TX <---> 0(Rx)
-*/
-void setup() 
-{
-  Serial.begin(9600);  
-  Serial1.begin(9600);
-}
-
-void loop() 
-{
-  //print received data. Data was received in serialEvent;
-  Serial.print("Time:20");Serial.print(JY901.stcTime.ucYear);Serial.print("-");Serial.print(JY901.stcTime.ucMonth);Serial.print("-");Serial.print(JY901.stcTime.ucDay);
-  Serial.print(" ");Serial.print(JY901.stcTime.ucHour);Serial.print(":");Serial.print(JY901.stcTime.ucMinute);Serial.print(":");Serial.println((float)JY901.stcTime.ucSecond+(float)JY901.stcTime.usMiliSecond/1000);
-               
-  Serial.print("Acc:");Serial.print((float)JY901.stcAcc.a[0]/32768*16);Serial.print(" ");Serial.print((float)JY901.stcAcc.a[1]/32768*16);Serial.print(" ");Serial.println((float)JY901.stcAcc.a[2]/32768*16);
-  
-  Serial.print("Gyro:");Serial.print((float)JY901.stcGyro.w[0]/32768*2000);Serial.print(" ");Serial.print((float)JY901.stcGyro.w[1]/32768*2000);Serial.print(" ");Serial.println((float)JY901.stcGyro.w[2]/32768*2000);
-  
-  Serial.print("Angle:");Serial.print((float)JY901.stcAngle.Angle[0]/32768*180);Serial.print(" ");Serial.print((float)JY901.stcAngle.Angle[1]/32768*180);Serial.print(" ");Serial.println((float)JY901.stcAngle.Angle[2]/32768*180);
-  
-  Serial.print("Mag:");Serial.print(JY901.stcMag.h[0]);Serial.print(" ");Serial.print(JY901.stcMag.h[1]);Serial.print(" ");Serial.println(JY901.stcMag.h[2]);
-  
-  Serial.print("Pressure:");Serial.print(JY901.stcPress.lPressure);Serial.print(" ");Serial.println((float)JY901.stcPress.lAltitude/100);
-  
-  Serial.print("DStatus:");Serial.print(JY901.stcDStatus.sDStatus[0]);Serial.print(" ");Serial.print(JY901.stcDStatus.sDStatus[1]);Serial.print(" ");Serial.print(JY901.stcDStatus.sDStatus[2]);Serial.print(" ");Serial.println(JY901.stcDStatus.sDStatus[3]);
-  
-  Serial.print("Longitude:");Serial.print(JY901.stcLonLat.lLon/10000000);Serial.print("Deg");Serial.print((double)(JY901.stcLonLat.lLon % 10000000)/1e5);Serial.print("m Lattitude:");
-  Serial.print(JY901.stcLonLat.lLat/10000000);Serial.print("Deg");Serial.print((double)(JY901.stcLonLat.lLat % 10000000)/1e5);Serial.println("m");
-  
-  Serial.print("GPSHeight:");Serial.print((float)JY901.stcGPSV.sGPSHeight/10);Serial.print("m GPSYaw:");Serial.print((float)JY901.stcGPSV.sGPSYaw/10);Serial.print("Deg GPSV:");Serial.print((float)JY901.stcGPSV.lGPSVelocity/1000);Serial.println("km/h");
-  
-  Serial.print("SN:");Serial.print(JY901.stcSN.sSVNum);Serial.print(" PDOP:");Serial.print((float)JY901.stcSN.sPDOP/100);Serial.print(" HDOP:");Serial.print((float)JY901.stcSN.sHDOP/100);Serial.print(" VDOP:");Serial.println((float)JY901.stcSN.sVDOP/100);
-  
-  Serial.println("");
-  delay(500);
-
-  while (Serial1.available()) 
-  {
-    JY901.CopeSerialData(Serial1.read()); //Call JY901 data cope function
-  }
-
-}

+ 0 - 130
JY901SerialMega2560/keywords.txt

@@ -1,130 +0,0 @@
-JY901	KEYWORD1
-CopeSerialData	KEYWORD2
-StartIIC	KEYWORD2
-CopeSerialData	KEYWORD2
-ReadWord	KEYWORD2
-WriteWord	KEYWORD2
-ReadData	KEYWORD2
-GetTime		KEYWORD2
-GetAcc		KEYWORD2
-GetGyro		KEYWORD2
-GetAngle	KEYWORD2
-GetMag		KEYWORD2
-GetPress	KEYWORD2
-GetDStatus	KEYWORD2
-GetLonLat	KEYWORD2
-GetGPSV		KEYWORD2
-stcTime	LITERAL1
-ucYear	LITERAL1
-ucMonth	LITERAL1
-ucDay	LITERAL1
-ucHour	LITERAL1
-ucMinute	LITERAL1
-ucSecond	LITERAL1
-usMiliSecond	LITERAL1
-
-stcAcc	LITERAL1
-a	LITERAL1
-T	LITERAL1
-
-stcGyro	LITERAL1
-w	LITERAL1
-
-stcAngle	LITERAL1
-Angle	LITERAL1
-
-stcMag	LITERAL1
-h	LITERAL1
-
-stcDStatus	LITERAL1
-sDStatus	LITERAL1
-
-stcPress	LITERAL1
-lPressure	LITERAL1
-lAltitude	LITERAL1
-
-stcLonLat	LITERAL1
-lLon	LITERAL1
-lLat	LITERAL1
-
-stcGPSV	LITERAL1
-sGPSHeight	LITERAL1
-sGPSYaw	LITERAL1
-lGPSVelocity	LITERAL1
-
-stcSN	LITERAL1
-sSVNum	LITERAL1
-sPDOP	LITERAL1
-sHDOP	LITERAL1
-sVDOP	LITERAL1
-
-SAVE	LITERAL1
-CALSW	LITERAL1
-RSW	LITERAL1
-RRATE	LITERAL1
-BAUD	LITERAL1
-AXOFFSET	LITERAL1
-AYOFFSET	LITERAL1
-AZOFFSET	LITERAL1
-GXOFFSET	LITERAL1
-GYOFFSET	LITERAL1
-GZOFFSET	LITERAL1
-HXOFFSET	LITERAL1
-HYOFFSET	LITERAL1
-HZOFFSET	LITERAL1
-D0MODE	LITERAL1
-D1MODE	LITERAL1
-D2MODE	LITERAL1
-D3MODE	LITERAL1
-D0PWMH	LITERAL1
-D1PWMH	LITERAL1
-D2PWMH	LITERAL1
-D3PWMH	LITERAL1
-D0PWMT	LITERAL1
-D1PWMT	LITERAL1
-D2PWMT	LITERAL1
-D3PWMT	LITERAL1
-IICADDR	LITERAL1
-LEDOFF	LITERAL1
-GPSBAUD	LITERAL1
-
-YYMM	LITERAL1
-DDHH	LITERAL1
-MMSS	LITERAL1
-MS	LITERAL1
-AX	LITERAL1
-AY	LITERAL1
-AZ	LITERAL1
-GX	LITERAL1
-GY	LITERAL1
-GZ	LITERAL1
-HX	LITERAL1
-HY	LITERAL1
-HZ	LITERAL1
-Roll	LITERAL1
-Pitch	LITERAL1
-Yaw	LITERAL1
-TEMP	LITERAL1
-D0Status	LITERAL1
-D1Status	LITERAL1
-D2Status	LITERAL1
-D3Status	LITERAL1
-PressureL	LITERAL1
-PressureH	LITERAL1
-HeightL	LITERAL1
-HeightH	LITERAL1
-LonL	LITERAL1
-LonH	LITERAL1
-LatL	LITERAL1
-LatH	LITERAL1
-GPSHeight	LITERAL1
-GPSYAW	LITERAL1
-GPSVL	LITERAL1
-GPSVH	LITERAL1
-
-DIO_MODE_AIN	LITERAL1
-DIO_MODE_DIN	LITERAL1
-DIO_MODE_DOH	LITERAL1
-DIO_MODE_DOL	LITERAL1
-DIO_MODE_DOPWM	LITERAL1
-DIO_MODE_GPS	LITERAL1

+ 52 - 0
Matlab串口实时读取/JYReceive.m

@@ -0,0 +1,52 @@
+clear all;
+close all;
+instrreset;
+disp('Press Ctrl+C to stop collecting data!')
+s=serial('com19','baudrate',115200) ;fopen(s) ;%Open Com Port   请将COM19换成电脑识别到的COM口,波特率115000换成传感器对应的波特率
+f = 20;%DataFrequce
+t=0;
+cnt = 1;
+aa=[0 0 0];
+ww=[0 0 0];
+AA = [0 0 0];
+tt = 0;
+a=[0 0 0]';
+w=[0 0 0]';
+A=[0 0 0]';
+while(1)
+    Head = fread(s,2,'uint8');
+    if (Head(1)~=uint8(85))
+        continue;
+    end   
+    Head(2)
+    switch(Head(2))
+        case 81 
+            a = fread(s,3,'int16')/32768*16 ;
+        case 82 
+            w = fread(s,3,'int16')/32768*2000 ;   
+        case 83 
+            A = fread(s,3,'int16')/32768*180;
+            aa=[aa;a'];
+            ww = [ww;w'];
+            AA = [AA;A'];
+            tt = [tt;t];
+            if (cnt>(f/5)) %Plot in low frequce, 
+                subplot(3,1,1);plot(tt,aa);title(['Acceleration = ' num2str(a') 'm2/s']);ylabel('m2/s');
+                subplot(3,1,2);plot(tt,ww);title(['Gyro = ' num2str(w') '°/s']);ylabel('°/s');
+                subplot(3,1,3);plot(tt,AA);title(['Angle = ' num2str(A') '°']);ylabel('°');              
+                cnt=0;
+                drawnow;
+                if (size(aa,1)>5*f)%clear history data
+                    aa = aa(f:5*f,:);
+                    ww = ww(f:5*f,:);
+                    AA = AA(f:5*f,:);
+                    tt = tt(f:5*f,:);
+                end
+            end
+            cnt=cnt+1;
+            t=t+0.01;
+    end 
+        
+            End = fread(s,3,'uint8');
+end
+fclose(s);

+ 1007 - 0
Matlab导入记录文件/Data200320042405.tsv

@@ -0,0 +1,1007 @@
+StartTime: 2020-03-20 16:20:22.093
+Time(s)	ax(g)	ay(g)	az(g)	wx(deg/s)	wy(deg/s)	wz(deg/s)	AngleX(deg)	AngleY(deg)	AngleZ(deg)	T(°)	hx	hy	hz 
+223.925	-1.2285	1.3833	0.2910	6.7139	-4.1504	-11.8408	76.7944	40.5176	-95.9491	39.1600	-25	-291	127 
+223.935	-1.2285	1.3833	0.2910	6.7139	-4.1504	-11.8408	76.8054	40.5725	-96.1084	39.1800	-25	-291	126 
+223.935	-1.2285	1.3833	0.2910	6.7139	-4.1504	-11.8408	76.8109	40.6219	-96.2622	39.1800	-26	-291	126 
+223.945	-1.2285	1.3833	0.2910	6.7139	-4.1504	-11.8408	76.8219	40.6769	-96.4215	39.1600	-25	-291	126 
+223.945	-1.2285	1.3833	0.2910	6.7139	-4.1504	-11.8408	76.8274	40.7318	-96.5753	39.1600	-25	-291	125 
+223.955	-1.2285	1.3833	0.2910	6.7139	-4.1504	-11.8408	76.8384	40.7813	-96.7291	39.1700	-26	-290	125 
+223.955	-1.2285	1.3833	0.2910	6.7139	-4.1504	-11.8408	76.8439	40.8362	-96.8829	39.1700	-27	-290	125 
+223.955	-1.2534	1.3599	0.3472	-3.7842	-16.6016	-14.7095	76.7395	40.8911	-97.1246	39.1500	-27	-290	125 
+223.967	-1.2534	1.3599	0.3472	-3.7842	-16.6016	-14.7095	76.6351	40.9460	-97.3663	39.1500	-27	-290	124 
+223.967	-1.2534	1.3599	0.3472	-3.7842	-16.6016	-14.7095	76.5308	41.0010	-97.6080	39.1800	-26	-291	123 
+223.977	-1.2534	1.3599	0.3472	-3.7842	-16.6016	-14.7095	76.4264	41.0559	-97.8497	39.1800	-25	-291	123 
+223.977	-1.2534	1.3599	0.3472	-3.7842	-16.6016	-14.7095	76.3220	41.1108	-98.0914	39.1400	-27	-291	123 
+223.987	-1.2534	1.3599	0.3472	-3.7842	-16.6016	-14.7095	76.2122	41.1658	-98.3276	39.1400	-28	-292	122 
+223.987	-1.2534	1.3599	0.3472	-3.7842	-16.6016	-14.7095	76.1078	41.2152	-98.5693	39.1400	-28	-291	122 
+223.997	-1.2534	1.3599	0.3472	-3.7842	-16.6016	-14.7095	76.0034	41.2701	-98.8055	39.1100	-28	-291	122 
+223.997	-1.2754	1.3325	0.3843	-14.2822	-24.9634	-13.9160	75.8057	41.3141	-99.0967	39.1100	-28	-291	123 
+223.997	-1.2754	1.3325	0.3843	-14.2822	-24.9634	-13.9160	75.6134	41.3525	-99.3933	39.1300	-27	-291	124 
+224.007	-1.2754	1.3325	0.3843	-14.2822	-24.9634	-13.9160	75.4156	41.3965	-99.6844	39.1300	-27	-291	124 
+224.007	-1.2754	1.3325	0.3843	-14.2822	-24.9634	-13.9160	75.2179	41.4349	-99.9811	39.1800	-27	-292	124 
+224.017	-1.2754	1.3325	0.3843	-14.2822	-24.9634	-13.9160	75.0256	41.4734	-100.2722	39.1800	-27	-292	124 
+224.017	-1.2754	1.3325	0.3843	-14.2822	-24.9634	-13.9160	74.8279	41.5118	-100.5634	39.1900	-27	-293	125 
+224.027	-1.2754	1.3325	0.3843	-14.2822	-24.9634	-13.9160	74.6356	41.5503	-100.8545	39.1900	-26	-292	124 
+224.027	-1.2754	1.3325	0.3843	-14.2822	-24.9634	-13.9160	74.4379	41.5887	-101.1456	39.1400	-25	-291	123 
+224.042	-1.2896	1.3062	0.4194	-21.7285	-26.6113	-10.3149	74.2017	41.6052	-101.4423	39.1400	-26	-291	123 
+224.042	-1.2896	1.3062	0.4194	-21.7285	-26.6113	-10.3149	73.9655	41.6272	-101.7389	39.1400	-27	-291	122 
+224.042	-1.2896	1.3062	0.4194	-21.7285	-26.6113	-10.3149	73.7238	41.6437	-102.0355	39.1000	-26	-290	121 
+224.052	-1.2896	1.3062	0.4194	-21.7285	-26.6113	-10.3149	73.4875	41.6602	-102.3322	39.1000	-25	-290	121 
+224.052	-1.2896	1.3062	0.4194	-21.7285	-26.6113	-10.3149	73.2513	41.6766	-102.6288	39.1800	-25	-289	121 
+224.062	-1.2896	1.3062	0.4194	-21.7285	-26.6113	-10.3149	73.0151	41.6931	-102.9199	39.1800	-25	-289	121 
+224.062	-1.2896	1.3062	0.4194	-21.7285	-26.6113	-10.3149	72.7789	41.7096	-103.2111	39.1500	-25	-289	121 
+224.072	-1.2896	1.3062	0.4194	-21.7285	-26.6113	-10.3149	72.5482	41.7206	-103.5077	39.1500	-25	-288	120 
+224.072	-1.3076	1.2979	0.4453	-24.8413	-21.7285	-5.8594	72.3230	41.7261	-103.7604	39.1600	-25	-288	120 
+224.072	-1.3076	1.2979	0.4453	-24.8413	-21.7285	-5.8594	72.0978	41.7261	-104.0131	39.1600	-25	-289	120 
+224.082	-1.3076	1.2979	0.4453	-24.8413	-21.7285	-5.8594	71.8726	41.7261	-104.2657	39.2000	-26	-289	119 
+224.082	-1.3076	1.2979	0.4453	-24.8413	-21.7285	-5.8594	71.6473	41.7261	-104.5129	39.2000	-26	-290	118 
+224.092	-1.3076	1.2979	0.4453	-24.8413	-21.7285	-5.8594	71.4221	41.7261	-104.7601	39.2000	-27	-288	117 
+224.092	-1.3076	1.2979	0.4453	-24.8413	-21.7285	-5.8594	71.2024	41.7206	-105.0128	39.1200	-27	-287	116 
+224.102	-1.3076	1.2979	0.4453	-24.8413	-21.7285	-5.8594	70.9772	41.7206	-105.2545	39.1200	-27	-287	116 
+224.102	-1.3164	1.2939	0.4570	-24.7192	-12.8784	-1.4648	70.8014	41.7151	-105.4413	39.1600	-27	-286	116 
+224.112	-1.3164	1.2939	0.4570	-24.7192	-12.8784	-1.4648	70.6256	41.7041	-105.6226	39.1600	-27	-287	116 
+224.112	-1.3164	1.2939	0.4570	-24.7192	-12.8784	-1.4648	70.4443	41.6931	-105.8038	39.1600	-26	-287	116 
+224.112	-1.3164	1.2939	0.4570	-24.7192	-12.8784	-1.4648	70.2686	41.6876	-105.9796	39.1600	-26	-288	115 
+224.122	-1.3164	1.2939	0.4570	-24.7192	-12.8784	-1.4648	70.0928	41.6766	-106.1609	39.1600	-27	-288	115 
+224.122	-1.3164	1.2939	0.4570	-24.7192	-12.8784	-1.4648	69.9170	41.6656	-106.3367	39.1600	-27	-287	113 
+224.132	-1.3164	1.2939	0.4570	-24.7192	-12.8784	-1.4648	69.7412	41.6602	-106.5125	39.1800	-27	-286	112 
+224.132	-1.3164	1.2939	0.4570	-24.7192	-12.8784	-1.4648	69.5709	41.6492	-106.6882	39.1800	-27	-285	111 
+224.142	-1.3198	1.2969	0.4658	-22.6440	-3.1128	2.5024	69.4501	41.6382	-106.7926	39.1800	-27	-284	111 
+224.142	-1.3198	1.2969	0.4658	-22.6440	-3.1128	2.5024	69.3347	41.6272	-106.9025	39.2000	-27	-285	111 
+224.152	-1.3198	1.2969	0.4658	-22.6440	-3.1128	2.5024	69.2194	41.6162	-107.0068	39.2000	-27	-286	111 
+224.152	-1.3198	1.2969	0.4658	-22.6440	-3.1128	2.5024	69.0985	41.6052	-107.1112	39.0900	-28	-286	111 
+224.152	-1.3198	1.2969	0.4658	-22.6440	-3.1128	2.5024	68.9832	41.5887	-107.2101	39.0900	-29	-287	111 
+224.162	-1.3198	1.2969	0.4658	-22.6440	-3.1128	2.5024	68.8678	41.5778	-107.3145	39.1800	-29	-287	110 
+224.162	-1.3198	1.2969	0.4658	-22.6440	-3.1128	2.5024	68.7524	41.5668	-107.4188	39.1800	-29	-287	109 
+224.172	-1.3198	1.2969	0.4658	-22.6440	-3.1128	2.5024	68.6371	41.5558	-107.5177	39.1900	-29	-286	108 
+224.172	-1.3003	1.3047	0.4780	-20.7520	5.9204	6.2256	68.5712	41.5393	-107.5562	39.1900	-29	-285	107 
+224.182	-1.3003	1.3047	0.4780	-20.7520	5.9204	6.2256	68.5107	41.5283	-107.5946	39.1500	-30	-285	108 
+224.182	-1.3003	1.3047	0.4780	-20.7520	5.9204	6.2256	68.4448	41.5118	-107.6276	39.1500	-30	-286	108 
+224.182	-1.3003	1.3047	0.4780	-20.7520	5.9204	6.2256	68.3844	41.5009	-107.6660	39.1500	-30	-285	108 
+224.192	-1.3003	1.3047	0.4780	-20.7520	5.9204	6.2256	68.3185	41.4844	-107.7045	39.1500	-30	-284	108 
+224.192	-1.3003	1.3047	0.4780	-20.7520	5.9204	6.2256	68.2581	41.4679	-107.7429	39.1500	-30	-285	107 
+224.202	-1.3003	1.3047	0.4780	-20.7520	5.9204	6.2256	68.1921	41.4569	-107.7759	39.0700	-30	-285	106 
+224.202	-1.3003	1.3047	0.4780	-20.7520	5.9204	6.2256	68.1317	41.4404	-107.8088	39.0700	-30	-285	104 
+224.212	-1.2793	1.3169	0.4966	-20.0806	13.4888	9.4604	68.1042	41.4240	-107.7924	39.2100	-30	-284	103 
+224.212	-1.2793	1.3169	0.4966	-20.0806	13.4888	9.4604	68.0823	41.4075	-107.7759	39.2100	-29	-284	103 
+224.222	-1.2793	1.3169	0.4966	-20.0806	13.4888	9.4604	68.0548	41.3910	-107.7594	39.1500	-29	-284	103 
+224.222	-1.2793	1.3169	0.4966	-20.0806	13.4888	9.4604	68.0328	41.3745	-107.7429	39.1500	-30	-282	101 
+224.222	-1.2793	1.3169	0.4966	-20.0806	13.4888	9.4604	68.0054	41.3580	-107.7209	39.1300	-31	-281	100 
+224.232	-1.2793	1.3169	0.4966	-20.0806	13.4888	9.4604	67.9834	41.3416	-107.7045	39.1300	-31	-281	99 
+224.232	-1.2793	1.3169	0.4966	-20.0806	13.4888	9.4604	67.9559	41.3251	-107.6825	39.1400	-31	-282	98 
+224.242	-1.2793	1.3169	0.4966	-20.0806	13.4888	9.4604	67.9340	41.3086	-107.6660	39.1400	-31	-282	97 
+224.242	-1.2354	1.3247	0.5195	-20.8130	18.7378	12.0239	67.9230	41.2866	-107.6111	39.1400	-31	-282	96 
+224.253	-1.2354	1.3247	0.5195	-20.8130	18.7378	12.0239	67.9175	41.2646	-107.5562	39.1400	-31	-282	95 
+224.253	-1.2354	1.3247	0.5195	-20.8130	18.7378	12.0239	67.9120	41.2427	-107.5012	39.1400	-31	-281	94 
+224.263	-1.2354	1.3247	0.5195	-20.8130	18.7378	12.0239	67.9065	41.2207	-107.4463	39.1900	-31	-281	94 
+224.263	-1.2354	1.3247	0.5195	-20.8130	18.7378	12.0239	67.9010	41.1987	-107.3914	39.1900	-31	-280	94 
+224.263	-1.2354	1.3247	0.5195	-20.8130	18.7378	12.0239	67.8955	41.1768	-107.3364	39.0800	-30	-279	94 
+224.273	-1.2354	1.3247	0.5195	-20.8130	18.7378	12.0239	67.8845	41.1548	-107.2815	39.0800	-31	-279	93 
+224.273	-1.2354	1.3247	0.5195	-20.8130	18.7378	12.0239	67.8790	41.1328	-107.2266	39.1300	-31	-279	93 
+224.283	-1.1870	1.3311	0.5444	-22.2168	22.8882	13.4888	67.8790	41.1108	-107.1497	39.1300	-31	-278	92 
+224.283	-1.1870	1.3311	0.5444	-22.2168	22.8882	13.4888	67.8845	41.0889	-107.0673	39.1800	-31	-277	91 
+224.294	-1.1870	1.3311	0.5444	-22.2168	22.8882	13.4888	67.8845	41.0614	-106.9904	39.1800	-30	-278	90 
+224.294	-1.1870	1.3311	0.5444	-22.2168	22.8882	13.4888	67.8845	41.0394	-106.9135	39.1800	-29	-278	90 
+224.294	-1.1870	1.3311	0.5444	-22.2168	22.8882	13.4888	67.8845	41.0175	-106.8311	39.1700	-29	-279	90 
+224.304	-1.1870	1.3311	0.5444	-22.2168	22.8882	13.4888	67.8900	40.9900	-106.7542	39.1700	-28	-279	89 
+224.304	-1.1870	1.3311	0.5444	-22.2168	22.8882	13.4888	67.8900	40.9680	-106.6772	39.1400	-28	-279	89 
+224.314	-1.1870	1.3311	0.5444	-22.2168	22.8882	13.4888	67.8900	40.9460	-106.6003	39.1400	-27	-279	89 
+224.314	-1.1675	1.3374	0.5518	-22.6440	28.6865	13.4888	67.9120	40.9296	-106.4905	39.1300	-27	-278	88 
+224.324	-1.1675	1.3374	0.5518	-22.6440	28.6865	13.4888	67.9340	40.9186	-106.3806	39.1300	-28	-278	88 
+224.324	-1.1675	1.3374	0.5518	-22.6440	28.6865	13.4888	67.9504	40.9021	-106.2708	39.1900	-28	-278	88 
+224.334	-1.1675	1.3374	0.5518	-22.6440	28.6865	13.4888	67.9724	40.8911	-106.1609	39.1900	-28	-278	87 
+224.334	-1.1675	1.3374	0.5518	-22.6440	28.6865	13.4888	67.9944	40.8746	-106.0455	39.1400	-28	-277	87 
+224.334	-1.1675	1.3374	0.5518	-22.6440	28.6865	13.4888	68.0109	40.8582	-105.9357	39.1400	-28	-277	86 
+224.344	-1.1675	1.3374	0.5518	-22.6440	28.6865	13.4888	68.0328	40.8472	-105.8258	39.2400	-27	-276	86 
+224.344	-1.1675	1.3374	0.5518	-22.6440	28.6865	13.4888	68.0548	40.8307	-105.7214	39.2400	-26	-275	86 
+224.354	-1.1567	1.3384	0.5601	-20.8740	36.8652	11.4746	68.1097	40.8417	-105.5676	39.2400	-25	-275	86 
+224.354	-1.1567	1.3384	0.5601	-20.8740	36.8652	11.4746	68.1647	40.8527	-105.4193	39.1500	-24	-275	85 
+224.366	-1.1567	1.3384	0.5601	-20.8740	36.8652	11.4746	68.2251	40.8582	-105.2655	39.1500	-25	-276	85 
+224.366	-1.1567	1.3384	0.5601	-20.8740	36.8652	11.4746	68.2800	40.8691	-105.1172	39.1800	-25	-276	85 
+224.376	-1.1567	1.3384	0.5601	-20.8740	36.8652	11.4746	68.3350	40.8801	-104.9634	39.1800	-24	-277	85 
+224.376	-1.1567	1.3384	0.5601	-20.8740	36.8652	11.4746	68.3954	40.8856	-104.8151	39.0900	-24	-277	86 
+224.376	-1.1567	1.3384	0.5601	-20.8740	36.8652	11.4746	68.4503	40.8966	-104.6667	39.0900	-24	-278	85 
+224.386	-1.1567	1.3384	0.5601	-20.8740	36.8652	11.4746	68.5052	40.9021	-104.5184	39.1500	-23	-279	85 
+224.386	-1.1792	1.3354	0.5225	-16.1743	45.3491	7.3242	68.6151	40.9460	-104.3207	39.1500	-22	-278	85 
+224.396	-1.1792	1.3354	0.5225	-16.1743	45.3491	7.3242	68.7305	40.9900	-104.1284	39.1400	-21	-277	85 
+224.396	-1.1792	1.3354	0.5225	-16.1743	45.3491	7.3242	68.8403	41.0339	-103.9362	39.1400	-20	-278	85 
+224.406	-1.1792	1.3354	0.5225	-16.1743	45.3491	7.3242	68.9557	41.0779	-103.7384	39.1400	-19	-278	85 
+224.406	-1.1792	1.3354	0.5225	-16.1743	45.3491	7.3242	69.0656	41.1218	-103.5461	39.1700	-17	-279	85 
+224.406	-1.1792	1.3354	0.5225	-16.1743	45.3491	7.3242	69.1754	41.1603	-103.3539	39.1700	-16	-279	85 
+224.416	-1.1792	1.3354	0.5225	-16.1743	45.3491	7.3242	69.2908	41.2042	-103.1616	39.1800	-16	-278	85 
+224.416	-1.1792	1.3354	0.5225	-16.1743	45.3491	7.3242	69.4006	41.2427	-102.9749	39.1800	-16	-278	85 
+224.426	-1.2310	1.3291	0.4546	-7.9956	52.5513	1.3428	69.5819	41.3306	-102.7386	39.0800	-15	-278	85 
+224.426	-1.2310	1.3291	0.4546	-7.9956	52.5513	1.3428	69.7687	41.4130	-102.5079	39.0800	-15	-278	85 
+224.436	-1.2310	1.3291	0.4546	-7.9956	52.5513	1.3428	69.9500	41.4954	-102.2772	39.1500	-14	-279	86 
+224.436	-1.2310	1.3291	0.4546	-7.9956	52.5513	1.3428	70.1312	41.5778	-102.0410	39.1500	-13	-280	87 
+224.446	-1.2310	1.3291	0.4546	-7.9956	52.5513	1.3428	70.3180	41.6602	-101.8103	39.1800	-13	-280	88 
+224.446	-1.2310	1.3291	0.4546	-7.9956	52.5513	1.3428	70.4993	41.7371	-101.5796	39.1800	-13	-279	89 
+224.446	-1.2310	1.3291	0.4546	-7.9956	52.5513	1.3428	70.6860	41.8195	-101.3489	39.1800	-13	-280	89 
+224.456	-1.2310	1.3291	0.4546	-7.9956	52.5513	1.3428	70.8673	41.8964	-101.1182	39.1800	-12	-280	88 
+224.456	-1.2788	1.3154	0.3652	1.5869	54.6265	-5.0659	71.1145	42.0117	-100.8765	39.1800	-12	-281	88 
+224.466	-1.2788	1.3154	0.3652	1.5869	54.6265	-5.0659	71.3562	42.1216	-100.6293	39.0900	-11	-281	87 
+224.466	-1.2788	1.3154	0.3652	1.5869	54.6265	-5.0659	71.5979	42.2314	-100.3876	39.0900	-11	-281	88 
+224.476	-1.2788	1.3154	0.3652	1.5869	54.6265	-5.0659	71.8451	42.3468	-100.1404	39.1600	-11	-281	88 
+224.476	-1.2788	1.3154	0.3652	1.5869	54.6265	-5.0659	72.0923	42.4512	-99.8932	39.1600	-11	-281	88 
+224.486	-1.2788	1.3154	0.3652	1.5869	54.6265	-5.0659	72.3395	42.5610	-99.6460	39.1700	-11	-280	88 
+224.486	-1.2788	1.3154	0.3652	1.5869	54.6265	-5.0659	72.5812	42.6654	-99.4043	39.1700	-10	-281	88 
+224.486	-1.2788	1.3154	0.3652	1.5869	54.6265	-5.0659	72.8284	42.7753	-99.1571	39.1300	-10	-281	88 
+224.496	-1.3125	1.2988	0.2881	9.5825	49.2554	-10.3760	73.0975	42.8961	-98.9429	39.1300	-9	-282	87 
+224.496	-1.3125	1.2988	0.2881	9.5825	49.2554	-10.3760	73.3667	43.0225	-98.7231	39.2100	-9	-284	87 
+224.506	-1.3125	1.2988	0.2881	9.5825	49.2554	-10.3760	73.6304	43.1433	-98.5089	39.2100	-9	-284	87 
+224.506	-1.3125	1.2988	0.2881	9.5825	49.2554	-10.3760	73.8995	43.2642	-98.2892	39.2100	-10	-284	88 
+224.516	-1.3125	1.2988	0.2881	9.5825	49.2554	-10.3760	74.1687	43.3850	-98.0750	39.1500	-9	-283	88 
+224.516	-1.3125	1.2988	0.2881	9.5825	49.2554	-10.3760	74.4379	43.5004	-97.8552	39.1500	-8	-283	88 
+224.516	-1.3125	1.2988	0.2881	9.5825	49.2554	-10.3760	74.7070	43.6157	-97.6410	39.1300	-8	-283	88 
+224.526	-1.3125	1.2988	0.2881	9.5825	49.2554	-10.3760	74.9762	43.7311	-97.4213	39.1300	-8	-283	88 
+224.526	-1.3530	1.2891	0.2227	14.3433	38.8184	-13.9771	75.2289	43.8519	-97.2675	39.1900	-8	-283	88 
+224.536	-1.3530	1.2891	0.2227	14.3433	38.8184	-13.9771	75.4816	43.9728	-97.1082	39.1900	-8	-283	87 
+224.536	-1.3530	1.2891	0.2227	14.3433	38.8184	-13.9771	75.7288	44.0936	-96.9543	39.1600	-9	-283	89 
+224.546	-1.3530	1.2891	0.2227	14.3433	38.8184	-13.9771	75.9814	44.2090	-96.8005	39.1600	-9	-283	90 
+224.546	-1.3530	1.2891	0.2227	14.3433	38.8184	-13.9771	76.2341	44.3298	-96.6412	39.1400	-9	-284	90 
+224.556	-1.3530	1.2891	0.2227	14.3433	38.8184	-13.9771	76.4868	44.4452	-96.4819	39.1400	-8	-285	90 
+224.556	-1.3530	1.2891	0.2227	14.3433	38.8184	-13.9771	76.7395	44.5605	-96.3281	39.1400	-8	-285	89 
+224.556	-1.3530	1.2891	0.2227	14.3433	38.8184	-13.9771	76.9922	44.6759	-96.1688	39.1500	-7	-286	89 
+224.566	-1.3579	1.2725	0.2153	15.5640	26.0620	-15.9912	77.1899	44.7858	-96.0974	39.1500	-8	-285	89 
+224.566	-1.3579	1.2725	0.2153	15.5640	26.0620	-15.9912	77.3877	44.8956	-96.0260	39.1200	-8	-285	89 
+224.576	-1.3579	1.2725	0.2153	15.5640	26.0620	-15.9912	77.5854	45.0055	-95.9546	39.1200	-7	-285	90 
+224.576	-1.3579	1.2725	0.2153	15.5640	26.0620	-15.9912	77.7832	45.1099	-95.8832	39.1600	-6	-285	91 
+224.586	-1.3579	1.2725	0.2153	15.5640	26.0620	-15.9912	77.9810	45.2197	-95.8118	39.1600	-5	-286	91 
+224.586	-1.3579	1.2725	0.2153	15.5640	26.0620	-15.9912	78.1787	45.3296	-95.7404	39.1800	-5	-286	90 
+224.596	-1.3579	1.2725	0.2153	15.5640	26.0620	-15.9912	78.3765	45.4340	-95.6689	39.1800	-4	-286	91 
+224.596	-1.3579	1.2725	0.2153	15.5640	26.0620	-15.9912	78.5687	45.5383	-95.5975	39.1700	-4	-286	91 
+224.596	-1.3623	1.2627	0.1909	14.8315	14.6484	-16.9067	78.7115	45.6372	-95.6030	39.1700	-2	-286	92 
+224.606	-1.3623	1.2627	0.1909	14.8315	14.6484	-16.9067	78.8489	45.7361	-95.6085	39.1700	-1	-285	92 
+224.606	-1.3623	1.2627	0.1909	14.8315	14.6484	-16.9067	78.9917	45.8350	-95.6085	39.1500	-2	-287	93 
+224.616	-1.3623	1.2627	0.1909	14.8315	14.6484	-16.9067	79.1290	45.9338	-95.6140	39.1500	-2	-288	93 
+224.616	-1.3623	1.2627	0.1909	14.8315	14.6484	-16.9067	79.2664	46.0327	-95.6195	39.2300	-2	-288	94 
+224.626	-1.3623	1.2627	0.1909	14.8315	14.6484	-16.9067	79.4092	46.1316	-95.6250	39.2300	-1	-288	94 
+224.626	-1.3623	1.2627	0.1909	14.8315	14.6484	-16.9067	79.5465	46.2305	-95.6250	39.1300	-1	-288	94 
+224.626	-1.3750	1.2485	0.1948	14.4653	8.2397	-17.4561	79.6509	46.3239	-95.6744	39.1300	-1	-288	94 
+224.636	-1.3750	1.2485	0.1948	14.4653	8.2397	-17.4561	79.7552	46.4172	-95.7239	39.2000	0	-288	94 
+224.636	-1.3750	1.2485	0.1948	14.4653	8.2397	-17.4561	79.8596	46.5161	-95.7733	39.2000	0	-288	94 
+224.646	-1.3750	1.2485	0.1948	14.4653	8.2397	-17.4561	79.9585	46.6095	-95.8228	39.1100	1	-288	93 
+224.646	-1.3750	1.2485	0.1948	14.4653	8.2397	-17.4561	80.0629	46.7029	-95.8722	39.1100	1	-288	93 
+224.657	-1.3750	1.2485	0.1948	14.4653	8.2397	-17.4561	80.1672	46.7963	-95.9161	39.1100	2	-289	92 
+224.657	-1.3750	1.2485	0.1948	14.4653	8.2397	-17.4561	80.2716	46.8951	-95.9601	39.1400	2	-290	92 
+224.667	-1.3750	1.2485	0.1948	14.4653	8.2397	-17.4561	80.3705	46.9885	-96.0095	39.1400	3	-290	93 
+224.667	-1.3945	1.2368	0.1636	15.0757	8.1787	-17.8833	80.4803	47.0819	-96.0535	39.2000	3	-290	94 
+224.667	-1.3945	1.2368	0.1636	15.0757	8.1787	-17.8833	80.5902	47.1808	-96.0919	39.2000	3	-290	94 
+224.677	-1.3945	1.2368	0.1636	15.0757	8.1787	-17.8833	80.7001	47.2797	-96.1359	39.2000	3	-290	94 
+224.677	-1.3945	1.2368	0.1636	15.0757	8.1787	-17.8833	80.8099	47.3730	-96.1743	39.2000	3	-290	95 
+224.687	-1.3945	1.2368	0.1636	15.0757	8.1787	-17.8833	80.9198	47.4719	-96.2183	39.1600	4	-290	95 
+224.687	-1.3945	1.2368	0.1636	15.0757	8.1787	-17.8833	81.0297	47.5653	-96.2567	39.1600	5	-290	95 
+224.697	-1.3945	1.2368	0.1636	15.0757	8.1787	-17.8833	81.1395	47.6587	-96.3007	39.1100	5	-290	96 
+224.697	-1.3945	1.2368	0.1636	15.0757	8.1787	-17.8833	81.2439	47.7576	-96.3391	39.1100	6	-291	95 
+224.707	-1.4136	1.2236	0.1230	17.0898	14.2212	-17.5781	81.4032	47.8564	-96.3281	39.1800	6	-291	95 
+224.707	-1.4136	1.2236	0.1230	17.0898	14.2212	-17.5781	81.5625	47.9553	-96.3116	39.1800	7	-291	96 
+224.707	-1.4136	1.2236	0.1230	17.0898	14.2212	-17.5781	81.7163	48.0542	-96.3007	39.1800	7	-292	97 
+224.717	-1.4136	1.2236	0.1230	17.0898	14.2212	-17.5781	81.8756	48.1531	-96.2897	39.1800	8	-291	96 
+224.717	-1.4136	1.2236	0.1230	17.0898	14.2212	-17.5781	82.0349	48.2520	-96.2732	39.1800	9	-291	96 
+224.727	-1.4136	1.2236	0.1230	17.0898	14.2212	-17.5781	82.1942	48.3508	-96.2622	39.1800	8	-291	97 
+224.727	-1.4136	1.2236	0.1230	17.0898	14.2212	-17.5781	82.3480	48.4442	-96.2512	39.1800	8	-290	98 
+224.737	-1.4136	1.2236	0.1230	17.0898	14.2212	-17.5781	82.5073	48.5431	-96.2347	39.1500	9	-291	98 
+224.737	-1.4365	1.2153	0.0835	19.0430	22.7661	-16.3574	82.7271	48.6420	-96.1523	39.1500	10	-292	98 
+224.737	-1.4365	1.2153	0.0835	19.0430	22.7661	-16.3574	82.9523	48.7354	-96.0645	39.1200	10	-293	99 
+224.747	-1.4365	1.2153	0.0835	19.0430	22.7661	-16.3574	83.1720	48.8342	-95.9766	39.1200	11	-293	99 
+224.747	-1.4365	1.2153	0.0835	19.0430	22.7661	-16.3574	83.3972	48.9276	-95.8887	39.1700	11	-293	98 
+224.757	-1.4365	1.2153	0.0835	19.0430	22.7661	-16.3574	83.6169	49.0265	-95.8008	39.1700	12	-292	97 
+224.757	-1.4365	1.2153	0.0835	19.0430	22.7661	-16.3574	83.8422	49.1199	-95.7129	39.1700	13	-293	98 
+224.767	-1.4365	1.2153	0.0835	19.0430	22.7661	-16.3574	84.0619	49.2133	-95.6195	39.1800	14	-294	98 
+224.767	-1.4365	1.2153	0.0835	19.0430	22.7661	-16.3574	84.2871	49.3066	-95.5316	39.1800	14	-293	98 
+224.777	-1.4556	1.2031	0.0151	20.0806	31.3110	-14.4043	84.5728	49.3945	-95.3613	39.1800	14	-293	98 
+224.777	-1.4556	1.2031	0.0151	20.0806	31.3110	-14.4043	84.8639	49.4824	-95.1910	39.1800	15	-293	98 
+224.777	-1.4556	1.2031	0.0151	20.0806	31.3110	-14.4043	85.1495	49.5703	-95.0208	39.1800	16	-294	98 
+224.787	-1.4556	1.2031	0.0151	20.0806	31.3110	-14.4043	85.4407	49.6527	-94.8505	39.1800	16	-294	99 
+224.787	-1.4556	1.2031	0.0151	20.0806	31.3110	-14.4043	85.7263	49.7406	-94.6802	39.1300	16	-294	100 
+224.797	-1.4556	1.2031	0.0151	20.0806	31.3110	-14.4043	86.0175	49.8230	-94.5099	39.1300	17	-294	101 
+224.797	-1.4556	1.2031	0.0151	20.0806	31.3110	-14.4043	86.3086	49.9054	-94.3396	39.1800	18	-293	102 
+224.807	-1.4556	1.2031	0.0151	20.0806	31.3110	-14.4043	86.5942	49.9878	-94.1693	39.1800	18	-294	102 
+224.807	-1.4565	1.1890	-0.0566	20.9351	39.6118	-11.8408	86.9513	50.0592	-93.9221	39.1800	18	-294	103 
+224.817	-1.4565	1.1890	-0.0566	20.9351	39.6118	-11.8408	87.3029	50.1251	-93.6749	39.1100	19	-295	104 
+224.817	-1.4565	1.1890	-0.0566	20.9351	39.6118	-11.8408	87.6599	50.1965	-93.4277	39.1100	19	-295	105 
+224.817	-1.4565	1.1890	-0.0566	20.9351	39.6118	-11.8408	88.0115	50.2625	-93.1805	39.1500	20	-294	105 
+224.827	-1.4565	1.1890	-0.0566	20.9351	39.6118	-11.8408	88.3685	50.3284	-92.9333	39.1500	20	-293	106 
+224.827	-1.4565	1.1890	-0.0566	20.9351	39.6118	-11.8408	88.7201	50.3888	-92.6807	39.0900	21	-294	106 
+224.837	-1.4565	1.1890	-0.0566	20.9351	39.6118	-11.8408	89.0771	50.4547	-92.4335	39.0900	22	-295	106 
+224.837	-1.4565	1.1890	-0.0566	20.9351	39.6118	-11.8408	89.4287	50.5151	-92.1863	39.2300	23	-295	106 
+224.847	-1.4438	1.1714	-0.1592	21.8506	50.6592	-8.3618	89.8682	50.5591	-91.8347	39.2300	23	-294	106 
+224.847	-1.4438	1.1714	-0.1592	21.8506	50.6592	-8.3618	90.3076	50.5975	-91.4777	39.1100	23	-295	107 
+224.847	-1.4438	1.1714	-0.1592	21.8506	50.6592	-8.3618	90.7471	50.6360	-91.1261	39.1100	24	-295	107 
+224.861	-1.4438	1.1714	-0.1592	21.8506	50.6592	-8.3618	91.1865	50.6689	-90.7745	39.1600	24	-295	107 
+224.861	-1.4438	1.1714	-0.1592	21.8506	50.6592	-8.3618	91.6260	50.7019	-90.4175	39.1600	24	-294	108 
+224.871	-1.4438	1.1714	-0.1592	21.8506	50.6592	-8.3618	92.0599	50.7349	-90.0714	39.1600	25	-294	109 
+224.871	-1.4438	1.1714	-0.1592	21.8506	50.6592	-8.3618	92.4994	50.7678	-89.7198	39.1400	25	-295	109 
+224.881	-1.4438	1.1714	-0.1592	21.8506	50.6592	-8.3618	92.9333	50.7953	-89.3683	39.1400	26	-295	109 
+224.881	-1.3750	1.1440	-0.2969	23.8647	71.4111	-3.2349	93.5266	50.7843	-88.8300	39.1300	27	-295	109 
+224.891	-1.3750	1.1440	-0.2969	23.8647	71.4111	-3.2349	94.1144	50.7678	-88.2971	39.1300	27	-295	109 
+224.891	-1.3750	1.1440	-0.2969	23.8647	71.4111	-3.2349	94.6967	50.7513	-87.7588	39.1700	27	-296	108 
+224.891	-1.3750	1.1440	-0.2969	23.8647	71.4111	-3.2349	95.2844	50.7349	-87.2260	39.1700	27	-296	109 
+224.901	-1.3750	1.1440	-0.2969	23.8647	71.4111	-3.2349	95.8612	50.7074	-86.6986	39.1800	27	-297	110 
+224.901	-1.3750	1.1440	-0.2969	23.8647	71.4111	-3.2349	96.4435	50.6799	-86.1713	39.1800	28	-297	109 
+224.911	-1.3750	1.1440	-0.2969	23.8647	71.4111	-3.2349	97.0203	50.6470	-85.6439	39.1900	29	-297	109 
+224.911	-1.3750	1.1440	-0.2969	23.8647	71.4111	-3.2349	97.5916	50.6140	-85.1221	39.1900	30	-297	110 
+224.921	-1.2212	1.1411	-0.4790	26.9775	103.3936	3.2349	98.3936	50.5096	-84.3256	39.1900	30	-298	111 
+224.921	-1.2212	1.1411	-0.4790	26.9775	103.3936	3.2349	99.1846	50.3943	-83.5291	39.2400	32	-298	111 
+224.931	-1.2212	1.1411	-0.4790	26.9775	103.3936	3.2349	99.9756	50.2789	-82.7435	39.2400	34	-298	112 
+224.931	-1.2212	1.1411	-0.4790	26.9775	103.3936	3.2349	100.7556	50.1526	-81.9635	39.1800	35	-298	112 
+224.931	-1.2212	1.1411	-0.4790	26.9775	103.3936	3.2349	101.5247	50.0153	-81.1945	39.1800	36	-298	112 
+224.941	-1.2212	1.1411	-0.4790	26.9775	103.3936	3.2349	102.2882	49.8779	-80.4309	39.1800	38	-297	112 
+224.941	-1.2212	1.1411	-0.4790	26.9775	103.3936	3.2349	103.0463	49.7296	-79.6729	39.1800	39	-297	113 
+224.951	-1.2212	1.1411	-0.4790	26.9775	103.3936	3.2349	103.7988	49.5813	-78.9258	39.0900	40	-297	113 
+224.951	-1.1279	1.1382	-0.6509	29.2358	139.2212	7.0801	104.7711	49.3506	-77.8821	39.0900	41	-297	113 
+224.961	-1.1279	1.1382	-0.6509	29.2358	139.2212	7.0801	105.7324	49.1089	-76.8549	39.1500	43	-297	113 
+224.961	-1.1279	1.1382	-0.6509	29.2358	139.2212	7.0801	106.6772	48.8562	-75.8441	39.1500	45	-297	113 
+224.961	-1.1279	1.1382	-0.6509	29.2358	139.2212	7.0801	107.6111	48.5925	-74.8389	39.1500	47	-298	113 
+224.971	-1.1279	1.1382	-0.6509	29.2358	139.2212	7.0801	108.5284	48.3234	-73.8556	39.2100	48	-298	113 
+224.971	-1.1279	1.1382	-0.6509	29.2358	139.2212	7.0801	109.4293	48.0377	-72.8833	39.2100	50	-299	114 
+224.981	-1.1279	1.1382	-0.6509	29.2358	139.2212	7.0801	110.3192	47.7466	-71.9275	39.1600	52	-299	115 
+224.981	-1.1279	1.1382	-0.6509	29.2358	139.2212	7.0801	111.1926	47.4500	-70.9882	39.1600	53	-299	116 
+224.991	-1.0347	1.1382	-0.8242	29.9683	168.3350	3.8452	112.2308	47.0929	-69.8071	39.1500	54	-299	116 
+224.991	-1.0347	1.1382	-0.8242	29.9683	168.3350	3.8452	113.2471	46.7194	-68.6481	39.1500	55	-299	117 
+225.001	-1.0347	1.1382	-0.8242	29.9683	168.3350	3.8452	114.2413	46.3348	-67.5110	39.1800	56	-300	119 
+225.001	-1.0347	1.1382	-0.8242	29.9683	168.3350	3.8452	115.2191	45.9393	-66.3959	39.1800	57	-300	118 
+225.001	-1.0347	1.1382	-0.8242	29.9683	168.3350	3.8452	116.1694	45.5273	-65.2972	39.1800	58	-301	118 
+225.011	-1.0347	1.1382	-0.8242	29.9683	168.3350	3.8452	117.1033	45.1099	-64.2261	39.1800	60	-301	120 
+225.011	-1.0347	1.1382	-0.8242	29.9683	168.3350	3.8452	118.0151	44.6814	-63.1714	39.1500	62	-301	121 
+225.021	-1.0347	1.1382	-0.8242	29.9683	168.3350	3.8452	118.9050	44.2365	-62.1387	39.1500	62	-301	122 
+225.021	-1.0234	1.1255	-0.9673	30.3345	180.0537	-6.2866	119.8663	43.7970	-60.9906	39.1500	63	-301	123 
+225.031	-1.0234	1.1255	-0.9673	30.3345	180.0537	-6.2866	120.8112	43.3466	-59.8590	39.1800	63	-301	123 
+225.031	-1.0234	1.1255	-0.9673	30.3345	180.0537	-6.2866	121.7285	42.8851	-58.7549	39.1800	64	-301	123 
+225.041	-1.0234	1.1255	-0.9673	30.3345	180.0537	-6.2866	122.6239	42.4072	-57.6672	39.0800	65	-301	125 
+225.041	-1.0234	1.1255	-0.9673	30.3345	180.0537	-6.2866	123.4973	41.9238	-56.6071	39.0800	66	-301	126 
+225.041	-1.0234	1.1255	-0.9673	30.3345	180.0537	-6.2866	124.3542	41.4294	-55.5634	39.0800	67	-301	128 
+225.057	-1.0234	1.1255	-0.9673	30.3345	180.0537	-6.2866	125.1837	40.9186	-54.5471	39.0800	68	-302	130 
+225.057	-1.0234	1.1255	-0.9673	30.3345	180.0537	-6.2866	125.9967	40.4077	-53.5529	39.1500	69	-302	133 
+225.067	-1.0396	1.0762	-1.0601	32.4707	176.3306	-20.1416	126.8372	39.9463	-52.5201	39.1500	70	-302	135 
+225.067	-1.0396	1.0762	-1.0601	32.4707	176.3306	-20.1416	127.6556	39.4794	-51.5094	39.1800	71	-303	137 
+225.077	-1.0396	1.0762	-1.0601	32.4707	176.3306	-20.1416	128.4521	39.0015	-50.5206	39.1800	72	-303	140 
+225.077	-1.0396	1.0762	-1.0601	32.4707	176.3306	-20.1416	129.2377	38.5181	-49.5483	39.1800	72	-303	142 
+225.077	-1.0396	1.0762	-1.0601	32.4707	176.3306	-20.1416	129.9957	38.0237	-48.5980	39.1500	73	-303	145 
+225.087	-1.0396	1.0762	-1.0601	32.4707	176.3306	-20.1416	130.7428	37.5183	-47.6697	39.1500	72	-304	148 
+225.087	-1.0396	1.0762	-1.0601	32.4707	176.3306	-20.1416	131.4734	37.0074	-46.7578	39.1400	72	-304	151 
+225.097	-1.0396	1.0762	-1.0601	32.4707	176.3306	-20.1416	132.1820	36.4911	-45.8679	39.1400	73	-305	155 
+225.097	-0.9331	0.9961	-1.2363	40.5884	176.7578	-31.3110	132.9675	35.9912	-44.8956	39.1000	73	-306	159 
+225.107	-0.9331	0.9961	-1.2363	40.5884	176.7578	-31.3110	133.7311	35.4858	-43.9508	39.1000	73	-306	164 
+225.107	-0.9331	0.9961	-1.2363	40.5884	176.7578	-31.3110	134.4836	34.9695	-43.0170	39.1400	73	-305	168 
+225.117	-0.9331	0.9961	-1.2363	40.5884	176.7578	-31.3110	135.2142	34.4476	-42.1106	39.1400	72	-305	171 
+225.117	-0.9331	0.9961	-1.2363	40.5884	176.7578	-31.3110	135.9283	33.9148	-41.2207	39.1800	71	-304	174 
+225.117	-0.9331	0.9961	-1.2363	40.5884	176.7578	-31.3110	136.6315	33.3765	-40.3473	39.1800	71	-303	177 
+225.127	-0.9331	0.9961	-1.2363	40.5884	176.7578	-31.3110	137.3126	32.8271	-39.4958	39.1800	70	-302	180 
+225.127	-0.9331	0.9961	-1.2363	40.5884	176.7578	-31.3110	137.9773	32.2723	-38.6609	39.1500	69	-302	183 
+225.137	-0.7002	0.8882	-1.4272	56.8237	200.6836	-34.0576	138.7903	31.6132	-37.6721	39.1500	68	-301	186 
+225.137	-0.7002	0.8882	-1.4272	56.8237	200.6836	-34.0576	139.5813	30.9430	-36.7053	39.1200	66	-301	188 
+225.147	-0.7002	0.8882	-1.4272	56.8237	200.6836	-34.0576	140.3503	30.2673	-35.7605	39.1200	64	-301	190 
+225.147	-0.7002	0.8882	-1.4272	56.8237	200.6836	-34.0576	141.1029	29.5807	-34.8376	39.0800	62	-300	191 
+225.157	-0.7002	0.8882	-1.4272	56.8237	200.6836	-34.0576	141.8335	28.8831	-33.9368	39.0800	60	-299	192 
+225.157	-0.7002	0.8882	-1.4272	56.8237	200.6836	-34.0576	142.5421	28.1799	-33.0579	39.1400	57	-299	192 
+225.157	-0.7002	0.8882	-1.4272	56.8237	200.6836	-34.0576	143.2343	27.4658	-32.2009	39.1400	54	-299	193 
+225.167	-0.3301	0.7686	-1.5527	73.9136	263.5498	-27.6489	144.1022	26.4496	-31.1023	39.1800	49	-299	192 
+225.167	-0.3301	0.7686	-1.5527	73.9136	263.5498	-27.6489	144.9371	25.4224	-30.0421	39.1800	45	-299	191 
+225.177	-0.3301	0.7686	-1.5527	73.9136	263.5498	-27.6489	145.7391	24.3787	-29.0149	39.1600	40	-299	192 
+225.177	-0.3301	0.7686	-1.5527	73.9136	263.5498	-27.6489	146.5137	23.3295	-28.0151	39.1600	36	-299	192 
+225.187	-0.3301	0.7686	-1.5527	73.9136	263.5498	-27.6489	147.2607	22.2693	-27.0483	39.1600	30	-298	192 
+225.187	-0.3301	0.7686	-1.5527	73.9136	263.5498	-27.6489	147.9803	21.2036	-26.1145	39.2300	26	-298	192 
+225.187	-0.3301	0.7686	-1.5527	73.9136	263.5498	-27.6489	148.6780	20.1270	-25.2026	39.2300	21	-298	192 
+225.197	-0.3301	0.7686	-1.5527	73.9136	263.5498	-27.6489	149.3427	19.0448	-24.3182	39.1400	17	-297	193 
+225.197	0.2749	0.6206	-1.5347	84.6558	369.7510	-11.5967	150.1447	17.4133	-23.1592	39.1400	14	-298	194 
+225.207	0.2749	0.6206	-1.5347	84.6558	369.7510	-11.5967	150.9027	15.7654	-22.0331	39.1500	11	-298	194 
+225.207	0.2749	0.6206	-1.5347	84.6558	369.7510	-11.5967	151.6168	14.1119	-20.9454	39.1500	9	-297	194 
+225.217	0.2749	0.6206	-1.5347	84.6558	369.7510	-11.5967	152.2980	12.4530	-19.8907	39.1800	7	-296	194 
+225.217	0.2749	0.6206	-1.5347	84.6558	369.7510	-11.5967	152.9352	10.7831	-18.8635	39.1800	5	-296	195 
+225.227	0.2749	0.6206	-1.5347	84.6558	369.7510	-11.5967	153.5449	9.1132	-17.8693	39.1400	3	-297	195 
+225.227	0.2749	0.6206	-1.5347	84.6558	369.7510	-11.5967	154.1217	7.4323	-16.8970	39.1400	2	-296	195 
+225.227	0.2749	0.6206	-1.5347	84.6558	369.7510	-11.5967	154.6600	5.7513	-15.9521	39.1400	1	-296	196 
+225.237	0.8813	0.5049	-1.3940	84.7168	476.3184	10.2539	155.2203	3.4827	-14.8425	39.1600	0	-296	196 
+225.237	0.8813	0.5049	-1.3940	84.7168	476.3184	10.2539	155.7312	1.2140	-13.7604	39.1600	0	-296	195 
+225.247	0.8813	0.5049	-1.3940	84.7168	476.3184	10.2539	156.2036	-1.0492	-12.7002	39.1800	0	-296	193 
+225.247	0.8813	0.5049	-1.3940	84.7168	476.3184	10.2539	156.6376	-3.3234	-11.6620	39.1800	0	-296	192 
+225.262	0.8813	0.5049	-1.3940	84.7168	476.3184	10.2539	157.0276	-5.5975	-10.6458	39.1600	-2	-296	191 
+225.262	0.8813	0.5049	-1.3940	84.7168	476.3184	10.2539	157.3792	-7.8772	-9.6405	39.1600	-3	-296	190 
+225.272	0.8813	0.5049	-1.3940	84.7168	476.3184	10.2539	157.6923	-10.1514	-8.6517	39.2100	-4	-297	189 
+225.272	0.8813	0.5049	-1.3940	84.7168	476.3184	10.2539	157.9724	-12.4255	-7.6685	39.2100	-5	-298	188 
+225.272	1.5132	0.4023	-1.0146	70.0684	533.6304	29.6631	158.1702	-15.0568	-6.6467	39.2500	-6	-297	187 
+225.282	1.5132	0.4023	-1.0146	70.0684	533.6304	29.6631	158.3240	-17.6880	-5.6305	39.2500	-7	-297	187 
+225.282	1.5132	0.4023	-1.0146	70.0684	533.6304	29.6631	158.4283	-20.3082	-4.6088	39.2500	-7	-298	186 
+225.292	1.5132	0.4023	-1.0146	70.0684	533.6304	29.6631	158.4888	-22.9285	-3.5760	39.1800	-6	-298	185 
+225.292	1.5132	0.4023	-1.0146	70.0684	533.6304	29.6631	158.4998	-25.5432	-2.5323	39.1800	-7	-298	184 
+225.302	1.5132	0.4023	-1.0146	70.0684	533.6304	29.6631	158.4613	-28.1525	-1.4722	39.1900	-8	-298	183 
+225.302	1.5132	0.4023	-1.0146	70.0684	533.6304	29.6631	158.3679	-30.7507	-0.3845	39.1900	-8	-298	183 
+225.302	1.5132	0.4023	-1.0146	70.0684	533.6304	29.6631	158.2141	-33.3380	0.7306	39.1800	-9	-298	182 
+225.312	1.9512	0.3516	-0.6777	46.0815	522.1558	40.8325	157.9504	-35.9308	1.7963	39.1800	-8	-298	182 
+225.312	1.9512	0.3516	-0.6777	46.0815	522.1558	40.8325	157.6154	-38.5071	2.9169	39.1600	-8	-297	181 
+225.322	1.9512	0.3516	-0.6777	46.0815	522.1558	40.8325	157.2034	-41.0724	4.0869	39.1600	-9	-297	180 
+225.322	1.9512	0.3516	-0.6777	46.0815	522.1558	40.8325	156.7145	-43.6212	5.3284	39.2100	-10	-298	180 
+225.332	1.9512	0.3516	-0.6777	46.0815	522.1558	40.8325	156.1212	-46.1591	6.6467	39.2100	-10	-298	179 
+225.332	1.9512	0.3516	-0.6777	46.0815	522.1558	40.8325	155.4181	-48.6804	8.0640	39.2100	-11	-298	177 
+225.342	1.9512	0.3516	-0.6777	46.0815	522.1558	40.8325	154.5886	-51.1798	9.5966	39.2200	-12	-297	176 
+225.342	1.9512	0.3516	-0.6777	46.0815	522.1558	40.8325	153.5999	-53.6627	11.2720	39.2200	-12	-297	176 
+225.342	2.2061	0.3359	-0.3252	21.6675	437.7441	39.6729	152.5891	-55.7721	12.7881	39.1500	-12	-297	174 
+225.352	2.2061	0.3359	-0.3252	21.6675	437.7441	39.6729	151.4191	-57.8595	14.4470	39.1500	-12	-297	173 
+225.352	2.2061	0.3359	-0.3252	21.6675	437.7441	39.6729	150.0677	-59.9194	16.2927	39.1800	-12	-297	173 
+225.362	2.2061	0.3359	-0.3252	21.6675	437.7441	39.6729	148.4912	-61.9519	18.3472	39.1800	-12	-297	173 
+225.362	2.2061	0.3359	-0.3252	21.6675	437.7441	39.6729	146.6510	-63.9459	20.6708	39.1700	-12	-296	172 
+225.372	2.2061	0.3359	-0.3252	21.6675	437.7441	39.6729	144.4812	-65.9015	23.3075	39.1700	-12	-296	171 
+225.372	2.2061	0.3359	-0.3252	21.6675	437.7441	39.6729	141.9159	-67.8021	26.3452	39.1900	-12	-295	168 
+225.384	2.2061	0.3359	-0.3252	21.6675	437.7441	39.6729	138.8507	-69.6423	29.8718	39.1900	-12	-295	166 
+225.384	2.2524	0.3525	-0.0151	0.9155	320.8618	28.7476	136.1096	-70.9607	32.9041	39.1800	-13	-296	164 
+225.384	2.2524	0.3525	-0.0151	0.9155	320.8618	28.7476	132.9675	-72.2296	36.3373	39.1800	-13	-296	163 
+225.394	2.2524	0.3525	-0.0151	0.9155	320.8618	28.7476	129.3585	-73.4271	40.2429	39.1800	-14	-296	162 
+225.394	2.2524	0.3525	-0.0151	0.9155	320.8618	28.7476	125.2002	-74.5367	44.6869	39.1300	-14	-295	161 
+225.404	2.2524	0.3525	-0.0151	0.9155	320.8618	28.7476	120.4266	-75.5530	49.7406	39.1300	-15	-295	159 
+225.404	2.2524	0.3525	-0.0151	0.9155	320.8618	28.7476	114.9884	-76.4484	55.4645	39.1500	-16	-295	157 
+225.414	2.2524	0.3525	-0.0151	0.9155	320.8618	28.7476	108.8525	-77.1954	61.8805	39.1500	-16	-295	157 
+225.414	2.2524	0.3525	-0.0151	0.9155	320.8618	28.7476	102.0575	-77.7722	68.9557	39.1900	-16	-295	156 
+225.414	2.2080	0.3701	0.2632	-11.7188	224.3652	16.4795	96.8060	-78.0579	74.3774	39.1900	-16	-294	155 
+225.424	2.2080	0.3701	0.2632	-11.7188	224.3652	16.4795	91.3568	-78.2336	79.9915	39.0600	-16	-293	154 
+225.424	2.2080	0.3701	0.2632	-11.7188	224.3652	16.4795	85.8142	-78.2996	85.7043	39.0600	-16	-294	153 
+225.434	2.2080	0.3701	0.2632	-11.7188	224.3652	16.4795	80.2771	-78.2556	91.4063	39.1400	-16	-295	152 
+225.434	2.2080	0.3701	0.2632	-11.7188	224.3652	16.4795	74.8444	-78.1018	96.9983	39.1400	-15	-294	150 
+225.444	2.2080	0.3701	0.2632	-11.7188	224.3652	16.4795	69.6149	-77.8436	102.3871	39.1400	-14	-294	148 
+225.444	2.2080	0.3701	0.2632	-11.7188	224.3652	16.4795	64.6600	-77.4866	107.5067	39.1400	-15	-293	147 
+225.454	2.2080	0.3701	0.2632	-11.7188	224.3652	16.4795	60.0293	-77.0416	112.3022	39.1400	-16	-292	147 
+225.454	2.0996	0.3853	0.5225	-15.7471	165.6494	8.3618	56.7499	-76.6406	115.6915	39.2400	-17	-292	145 
+225.454	2.0996	0.3853	0.5225	-15.7471	165.6494	8.3618	53.6847	-76.2012	118.8666	39.2400	-17	-292	144 
+225.469	2.0996	0.3853	0.5225	-15.7471	165.6494	8.3618	50.8228	-75.7233	121.8329	39.2100	-17	-292	144 
+225.469	2.0996	0.3853	0.5225	-15.7471	165.6494	8.3618	48.1586	-75.2179	124.6014	39.2100	-17	-292	143 
+225.479	2.0996	0.3853	0.5225	-15.7471	165.6494	8.3618	45.6866	-74.6796	127.1777	39.2100	-16	-292	142 
+225.479	2.0996	0.3853	0.5225	-15.7471	165.6494	8.3618	43.3960	-74.1193	129.5782	39.2100	-16	-292	140 
+225.489	2.0996	0.3853	0.5225	-15.7471	165.6494	8.3618	41.2701	-73.5315	131.8085	39.1600	-16	-292	140 
+225.489	2.0996	0.3853	0.5225	-15.7471	165.6494	8.3618	39.2981	-72.9272	133.8849	39.1600	-16	-292	140 
+225.499	1.9624	0.3833	0.7588	-14.1602	141.9678	5.9204	37.6831	-72.3779	135.5988	39.1600	-15	-292	139 
+225.499	1.9624	0.3833	0.7588	-14.1602	141.9678	5.9204	36.1670	-71.8176	137.2137	39.1700	-15	-293	139 
+225.499	1.9624	0.3833	0.7588	-14.1602	141.9678	5.9204	34.7498	-71.2463	138.7299	39.1700	-16	-293	138 
+225.509	1.9624	0.3833	0.7588	-14.1602	141.9678	5.9204	33.4204	-70.6696	140.1526	39.2100	-17	-293	136 
+225.509	1.9624	0.3833	0.7588	-14.1602	141.9678	5.9204	32.1735	-70.0763	141.4929	39.2100	-18	-293	136 
+225.519	1.9624	0.3833	0.7588	-14.1602	141.9678	5.9204	31.0034	-69.4830	142.7618	39.2000	-20	-293	135 
+225.519	1.9624	0.3833	0.7588	-14.1602	141.9678	5.9204	29.9048	-68.8788	143.9594	39.2000	-20	-292	134 
+225.529	1.9624	0.3833	0.7588	-14.1602	141.9678	5.9204	28.8721	-68.2745	145.0854	39.1500	-21	-292	133 
+225.529	1.8188	0.3613	1.0005	-9.3994	142.7002	8.0566	27.8503	-67.6428	146.2280	39.1500	-20	-292	133 
+225.529	1.8188	0.3613	1.0005	-9.3994	142.7002	8.0566	26.8890	-67.0111	147.3047	39.2300	-20	-291	133 
+225.539	1.8188	0.3613	1.0005	-9.3994	142.7002	8.0566	25.9827	-66.3739	148.3264	39.2300	-20	-291	132 
+225.539	1.8188	0.3613	1.0005	-9.3994	142.7002	8.0566	25.1312	-65.7367	149.2987	39.1800	-21	-291	132 
+225.549	1.8188	0.3613	1.0005	-9.3994	142.7002	8.0566	24.3237	-65.0885	150.2216	39.1800	-21	-291	131 
+225.549	1.8188	0.3613	1.0005	-9.3994	142.7002	8.0566	23.5602	-64.4403	151.1005	39.1800	-22	-291	131 
+225.559	1.8188	0.3613	1.0005	-9.3994	142.7002	8.0566	22.8406	-63.7921	151.9354	39.2100	-22	-291	130 
+225.559	1.8188	0.3613	1.0005	-9.3994	142.7002	8.0566	22.1594	-63.1384	152.7374	39.2100	-22	-291	129 
+225.569	1.6802	0.3330	1.1914	-4.0283	149.7192	12.6953	21.4453	-62.4463	153.5944	39.1900	-22	-290	128 
+225.569	1.6802	0.3330	1.1914	-4.0283	149.7192	12.6953	20.7751	-61.7487	154.4183	39.1900	-22	-290	127 
+225.569	1.6802	0.3330	1.1914	-4.0283	149.7192	12.6953	20.1324	-61.0510	155.1984	39.2200	-20	-290	126 
+225.579	1.6802	0.3330	1.1914	-4.0283	149.7192	12.6953	19.5337	-60.3479	155.9509	39.2200	-19	-290	125 
+225.579	1.6802	0.3330	1.1914	-4.0283	149.7192	12.6953	18.9569	-59.6503	156.6650	39.2000	-19	-290	125 
+225.589	1.6802	0.3330	1.1914	-4.0283	149.7192	12.6953	18.4186	-58.9471	157.3517	39.2000	-20	-290	125 
+225.589	1.6802	0.3330	1.1914	-4.0283	149.7192	12.6953	17.9022	-58.2440	158.0109	39.1800	-20	-290	124 
+225.599	1.6802	0.3330	1.1914	-4.0283	149.7192	12.6953	17.4133	-57.5354	158.6481	39.1800	-20	-290	122 
+225.599	1.5713	0.3018	1.3809	0.7935	151.8555	17.8223	16.9080	-56.8158	159.3237	39.1800	-20	-290	122 
+225.609	1.5713	0.3018	1.3809	0.7935	151.8555	17.8223	16.4301	-56.0907	159.9719	39.1600	-19	-291	122 
+225.609	1.5713	0.3018	1.3809	0.7935	151.8555	17.8223	15.9741	-55.3656	160.5981	39.1600	-20	-290	121 
+225.609	1.5713	0.3018	1.3809	0.7935	151.8555	17.8223	15.5457	-54.6460	161.2024	39.1900	-20	-290	120 
+225.619	1.5713	0.3018	1.3809	0.7935	151.8555	17.8223	15.1337	-53.9209	161.7792	39.1900	-20	-290	120 
+225.619	1.5713	0.3018	1.3809	0.7935	151.8555	17.8223	14.7382	-53.1958	162.3450	39.1600	-20	-290	119 
+225.629	1.5713	0.3018	1.3809	0.7935	151.8555	17.8223	14.3646	-52.4707	162.8888	39.1600	-20	-291	119 
+225.629	1.5713	0.3018	1.3809	0.7935	151.8555	17.8223	14.0131	-51.7456	163.4161	39.1600	-20	-292	119 
+225.639	1.4648	0.2754	1.5137	5.4932	149.2310	22.2778	13.6615	-51.0260	163.9600	39.1600	-19	-292	119 
+225.639	1.4648	0.2754	1.5137	5.4932	149.2310	22.2778	13.3264	-50.3119	164.4928	39.1800	-19	-293	119 
+225.639	1.4648	0.2754	1.5137	5.4932	149.2310	22.2778	13.0078	-49.5923	165.0037	39.1800	-20	-293	119 
+225.649	1.4648	0.2754	1.5137	5.4932	149.2310	22.2778	12.7057	-48.8727	165.5035	39.1800	-20	-293	119 
+225.649	1.4648	0.2754	1.5137	5.4932	149.2310	22.2778	12.4146	-48.1586	165.9924	39.1400	-20	-292	119 
+225.659	1.4648	0.2754	1.5137	5.4932	149.2310	22.2778	12.1344	-47.4445	166.4648	39.1400	-20	-292	119 
+225.659	1.4648	0.2754	1.5137	5.4932	149.2310	22.2778	11.8707	-46.7303	166.9263	39.2100	-19	-291	118 
+225.670	1.4648	0.2754	1.5137	5.4932	149.2310	22.2778	11.6180	-46.0107	167.3767	39.2100	-19	-291	117 
+225.670	1.3613	0.2666	1.6089	10.1318	142.2729	24.7803	11.3928	-45.3241	167.8271	39.2300	-18	-291	118 
+225.680	1.3613	0.2666	1.6089	10.1318	142.2729	24.7803	11.1731	-44.6375	168.2666	39.2300	-18	-291	118 
+225.680	1.3613	0.2666	1.6089	10.1318	142.2729	24.7803	10.9589	-43.9508	168.6951	39.0900	-18	-291	116 
+225.680	1.3613	0.2666	1.6089	10.1318	142.2729	24.7803	10.7611	-43.2697	169.1125	39.0900	-18	-290	115 
+225.690	1.3613	0.2666	1.6089	10.1318	142.2729	24.7803	10.5688	-42.5830	169.5245	39.1300	-17	-289	115 
+225.690	1.3613	0.2666	1.6089	10.1318	142.2729	24.7803	10.3876	-41.9019	169.9255	39.1300	-17	-288	115 
+225.700	1.3613	0.2666	1.6089	10.1318	142.2729	24.7803	10.2173	-41.2207	170.3156	39.1700	-17	-289	114 
+225.700	1.2490	0.2593	1.6929	13.9771	133.9111	25.3906	10.0690	-40.5725	170.7001	39.1700	-17	-290	114 
+225.710	1.2490	0.2593	1.6929	13.9771	133.9111	25.3906	9.9261	-39.9243	171.0736	39.1700	-17	-290	113 
+225.710	1.2490	0.2593	1.6929	13.9771	133.9111	25.3906	9.7943	-39.2761	171.4417	39.2100	-16	-290	112 
+225.720	1.2490	0.2593	1.6929	13.9771	133.9111	25.3906	9.6680	-38.6279	171.8042	39.2100	-16	-291	112 
+225.720	1.2490	0.2593	1.6929	13.9771	133.9111	25.3906	9.5471	-37.9852	172.1558	39.1700	-16	-292	111 
+225.720	1.2490	0.2593	1.6929	13.9771	133.9111	25.3906	9.4318	-37.3425	172.5073	39.1700	-16	-292	111 
+225.730	1.2490	0.2593	1.6929	13.9771	133.9111	25.3906	9.3219	-36.6998	172.8479	39.1400	-15	-292	110 
+225.730	1.2490	0.2593	1.6929	13.9771	133.9111	25.3906	9.2175	-36.0626	173.1885	39.1400	-16	-292	110 
+225.740	1.1362	0.2637	1.7524	16.6016	128.2349	24.7192	9.1351	-35.4419	173.5126	39.1900	-16	-292	109 
+225.740	1.1362	0.2637	1.7524	16.6016	128.2349	24.7192	9.0582	-34.8212	173.8312	39.1900	-16	-291	109 
+225.750	1.1362	0.2637	1.7524	16.6016	128.2349	24.7192	8.9868	-34.2004	174.1498	39.1400	-16	-291	108 
+225.750	1.1362	0.2637	1.7524	16.6016	128.2349	24.7192	8.9209	-33.5852	174.4574	39.1400	-15	-291	108 
+225.750	1.1362	0.2637	1.7524	16.6016	128.2349	24.7192	8.8550	-32.9700	174.7650	39.1400	-15	-291	107 
+225.760	1.1362	0.2637	1.7524	16.6016	128.2349	24.7192	8.7946	-32.3547	175.0671	39.1900	-14	-291	107 
+225.760	1.1362	0.2637	1.7524	16.6016	128.2349	24.7192	8.7396	-31.7450	175.3638	39.1900	-13	-292	107 
+225.770	1.1362	0.2637	1.7524	16.6016	128.2349	24.7192	8.6902	-31.1353	175.6604	39.1900	-13	-291	108 
+225.770	1.0068	0.2661	1.8354	18.4937	126.8311	22.5830	8.6572	-30.5200	175.9351	39.1900	-12	-291	108 
+225.780	1.0068	0.2661	1.8354	18.4937	126.8311	22.5830	8.6298	-29.9048	176.2097	39.1800	-11	-291	108 
+225.780	1.0068	0.2661	1.8354	18.4937	126.8311	22.5830	8.6023	-29.2896	176.4844	39.1800	-9	-292	109 
+225.791	1.0068	0.2661	1.8354	18.4937	126.8311	22.5830	8.5803	-28.6798	176.7480	39.2100	-8	-292	108 
+225.791	1.0068	0.2661	1.8354	18.4937	126.8311	22.5830	8.5583	-28.0701	177.0117	39.2100	-7	-292	108 
+225.791	1.0068	0.2661	1.8354	18.4937	126.8311	22.5830	8.5419	-27.4658	177.2754	39.1800	-6	-293	108 
+225.801	1.0068	0.2661	1.8354	18.4937	126.8311	22.5830	8.5309	-26.8616	177.5336	39.1800	-5	-293	108 
+225.801	1.0068	0.2661	1.8354	18.4937	126.8311	22.5830	8.5199	-26.2573	177.7863	39.1800	-5	-293	108 
+225.811	0.8589	0.2900	1.8882	20.7520	129.2114	18.3105	8.5309	-25.6256	178.0170	39.2000	-4	-292	108 
+225.811	0.8589	0.2900	1.8882	20.7520	129.2114	18.3105	8.5474	-24.9994	178.2477	39.2000	-3	-291	108 
+225.821	0.8589	0.2900	1.8882	20.7520	129.2114	18.3105	8.5638	-24.3732	178.4729	39.2200	-3	-290	108 
+225.821	0.8589	0.2900	1.8882	20.7520	129.2114	18.3105	8.5858	-23.7469	178.6981	39.2200	-3	-291	108 
+225.831	0.8589	0.2900	1.8882	20.7520	129.2114	18.3105	8.6078	-23.1262	178.9178	39.2000	-3	-291	109 
+225.831	0.8589	0.2900	1.8882	20.7520	129.2114	18.3105	8.6353	-22.5055	179.1431	39.2000	-2	-292	109 
+225.831	0.8589	0.2900	1.8882	20.7520	129.2114	18.3105	8.6627	-21.8903	179.3628	39.2300	-1	-293	110 
+225.841	0.8589	0.2900	1.8882	20.7520	129.2114	18.3105	8.6957	-21.2750	179.5770	39.2300	0	-293	109 
+225.841	0.6865	0.3228	1.9624	24.0479	130.6763	11.4136	8.7561	-20.6323	179.7583	39.1800	0	-293	109 
+225.851	0.6865	0.3228	1.9624	24.0479	130.6763	11.4136	8.8220	-19.9896	179.9341	39.1800	0	-294	109 
+225.851	0.6865	0.3228	1.9624	24.0479	130.6763	11.4136	8.8824	-19.3524	-179.8792	39.1900	0	-294	109 
+225.867	0.6865	0.3228	1.9624	24.0479	130.6763	11.4136	8.9539	-18.7207	-179.7034	39.1900	1	-293	109 
+225.867	0.6865	0.3228	1.9624	24.0479	130.6763	11.4136	9.0198	-18.0835	-179.5276	39.1900	1	-292	109 
+225.867	0.6865	0.3228	1.9624	24.0479	130.6763	11.4136	9.0912	-17.4518	-179.3518	39.2100	1	-292	109 
+225.877	0.6865	0.3228	1.9624	24.0479	130.6763	11.4136	9.1626	-16.8256	-179.1760	39.2100	2	-293	108 
+225.877	0.6865	0.3228	1.9624	24.0479	130.6763	11.4136	9.2340	-16.1993	-179.0057	39.1000	2	-294	108 
+225.887	0.5093	0.3726	1.9746	27.7100	127.1362	3.4180	9.3439	-15.5676	-178.8794	39.1000	2	-294	108 
+225.887	0.5093	0.3726	1.9746	27.7100	127.1362	3.4180	9.4537	-14.9414	-178.7476	39.1700	2	-295	108 
+225.897	0.5093	0.3726	1.9746	27.7100	127.1362	3.4180	9.5636	-14.3152	-178.6212	39.1700	2	-295	108 
+225.897	0.5093	0.3726	1.9746	27.7100	127.1362	3.4180	9.6735	-13.6945	-178.4949	39.1500	3	-296	109 
+225.907	0.5093	0.3726	1.9746	27.7100	127.1362	3.4180	9.7833	-13.0737	-178.3685	39.1500	4	-297	110 
+225.907	0.5093	0.3726	1.9746	27.7100	127.1362	3.4180	9.8987	-12.4585	-178.2367	39.2200	5	-297	109 
+225.907	0.5093	0.3726	1.9746	27.7100	127.1362	3.4180	10.0140	-11.8378	-178.1104	39.2200	5	-297	109 
+225.917	0.5093	0.3726	1.9746	27.7100	127.1362	3.4180	10.1239	-11.2280	-177.9840	39.2200	5	-297	110 
+225.917	0.3384	0.4268	2.0020	30.9448	118.0420	-3.1128	10.2667	-10.6403	-177.8961	39.1800	6	-296	111 
+225.927	0.3384	0.4268	2.0020	30.9448	118.0420	-3.1128	10.4095	-10.0525	-177.8082	39.1800	6	-296	111 
+225.927	0.3384	0.4268	2.0020	30.9448	118.0420	-3.1128	10.5524	-9.4702	-177.7203	39.1500	7	-295	111 
+225.937	0.3384	0.4268	2.0020	30.9448	118.0420	-3.1128	10.7007	-8.8879	-177.6324	39.1500	7	-296	111 
+225.937	0.3384	0.4268	2.0020	30.9448	118.0420	-3.1128	10.8435	-8.3112	-177.5446	39.2400	7	-296	112 
+225.947	0.3384	0.4268	2.0020	30.9448	118.0420	-3.1128	10.9863	-7.7344	-177.4567	39.2400	7	-296	112 
+225.947	0.3384	0.4268	2.0020	30.9448	118.0420	-3.1128	11.1292	-7.1576	-177.3633	39.2300	7	-296	113 
+225.947	0.3384	0.4268	2.0020	30.9448	118.0420	-3.1128	11.2775	-6.5808	-177.2699	39.2300	7	-295	114 
+225.957	0.2134	0.4712	2.0039	31.8604	106.0181	-6.2866	11.4313	-6.0590	-177.2095	39.1100	8	-295	115 
+225.957	0.2134	0.4712	2.0039	31.8604	106.0181	-6.2866	11.5906	-5.5316	-177.1436	39.1100	9	-296	114 
+225.967	0.2134	0.4712	2.0039	31.8604	106.0181	-6.2866	11.7444	-5.0098	-177.0776	39.1100	9	-297	114 
+225.967	0.2134	0.4712	2.0039	31.8604	106.0181	-6.2866	11.9037	-4.4879	-177.0117	39.2000	10	-297	114 
+225.977	0.2134	0.4712	2.0039	31.8604	106.0181	-6.2866	12.0575	-3.9716	-176.9458	39.2000	10	-297	114 
+225.977	0.2134	0.4712	2.0039	31.8604	106.0181	-6.2866	12.2168	-3.4552	-176.8744	39.1900	10	-298	114 
+225.977	0.2134	0.4712	2.0039	31.8604	106.0181	-6.2866	12.3706	-2.9388	-176.8030	39.1900	10	-298	115 
+225.987	0.2134	0.4712	2.0039	31.8604	106.0181	-6.2866	12.5299	-2.4225	-176.7371	39.2400	12	-299	115 
+225.987	0.0972	0.5088	1.9966	30.5786	96.0693	-5.7373	12.6837	-1.9501	-176.6766	39.2400	13	-299	115 
+225.997	0.0972	0.5088	1.9966	30.5786	96.0693	-5.7373	12.8375	-1.4777	-176.6107	39.1800	13	-299	115 
+225.997	0.0972	0.5088	1.9966	30.5786	96.0693	-5.7373	12.9913	-1.0107	-176.5503	39.1800	14	-299	115 
+226.007	0.0972	0.5088	1.9966	30.5786	96.0693	-5.7373	13.1506	-0.5438	-176.4844	39.2200	15	-299	114 
+226.007	0.0972	0.5088	1.9966	30.5786	96.0693	-5.7373	13.3044	-0.0769	-176.4240	39.2200	16	-299	114 
+226.017	0.0972	0.5088	1.9966	30.5786	96.0693	-5.7373	13.4583	0.3845	-176.3580	39.2000	17	-299	114 
+226.017	0.0972	0.5088	1.9966	30.5786	96.0693	-5.7373	13.6121	0.8459	-176.2921	39.2000	18	-299	115 
+226.017	0.0972	0.5088	1.9966	30.5786	96.0693	-5.7373	13.7714	1.3074	-176.2262	39.2000	18	-299	114 
+226.027	-0.0137	0.5410	1.9946	28.6255	92.8955	-3.6621	13.9197	1.7578	-176.1548	39.2300	18	-298	114 
+226.027	-0.0137	0.5410	1.9946	28.6255	92.8955	-3.6621	14.0680	2.2083	-176.0834	39.2300	18	-299	114 
+226.037	-0.0137	0.5410	1.9946	28.6255	92.8955	-3.6621	14.2163	2.6532	-176.0120	39.1500	19	-299	114 
+226.037	-0.0137	0.5410	1.9946	28.6255	92.8955	-3.6621	14.3701	3.1036	-175.9351	39.1500	20	-299	114 
+226.047	-0.0137	0.5410	1.9946	28.6255	92.8955	-3.6621	14.5184	3.5431	-175.8636	39.1300	21	-299	115 
+226.047	-0.0137	0.5410	1.9946	28.6255	92.8955	-3.6621	14.6667	3.9880	-175.7867	39.1300	21	-300	115 
+226.057	-0.0137	0.5410	1.9946	28.6255	92.8955	-3.6621	14.8206	4.4330	-175.7098	39.2300	20	-301	115 
+226.057	-0.0137	0.5410	1.9946	28.6255	92.8955	-3.6621	14.9689	4.8724	-175.6329	39.2300	20	-300	115 
+226.057	-0.1519	0.5762	1.9531	27.2217	97.1069	-2.0752	15.1227	5.3394	-175.5396	39.1400	20	-300	115 
+226.071	-0.1519	0.5762	1.9531	27.2217	97.1069	-2.0752	15.2710	5.8063	-175.4462	39.1400	22	-299	115 
+226.071	-0.1519	0.5762	1.9531	27.2217	97.1069	-2.0752	15.4248	6.2677	-175.3583	39.1400	23	-299	114 
+226.081	-0.1519	0.5762	1.9531	27.2217	97.1069	-2.0752	15.5731	6.7346	-175.2649	39.2500	23	-299	115 
+226.081	-0.1519	0.5762	1.9531	27.2217	97.1069	-2.0752	15.7269	7.1960	-175.1715	39.2500	24	-299	115 
+226.091	-0.1519	0.5762	1.9531	27.2217	97.1069	-2.0752	15.8807	7.6520	-175.0781	39.1600	24	-299	116 
+226.091	-0.1519	0.5762	1.9531	27.2217	97.1069	-2.0752	16.0345	8.1134	-174.9792	39.1600	24	-299	117 
+226.091	-0.1519	0.5762	1.9531	27.2217	97.1069	-2.0752	16.1884	8.5693	-174.8859	39.1200	25	-299	118 
+226.101	-0.2871	0.6030	1.9204	26.7944	104.0649	-1.6479	16.3422	9.0692	-174.7760	39.1200	26	-299	119 
+226.101	-0.2871	0.6030	1.9204	26.7944	104.0649	-1.6479	16.5015	9.5636	-174.6661	39.1600	25	-300	119 
+226.111	-0.2871	0.6030	1.9204	26.7944	104.0649	-1.6479	16.6663	10.0580	-174.5563	39.1600	25	-301	119 
+226.111	-0.2871	0.6030	1.9204	26.7944	104.0649	-1.6479	16.8256	10.5524	-174.4409	39.1800	25	-300	119 
+226.121	-0.2871	0.6030	1.9204	26.7944	104.0649	-1.6479	16.9849	11.0413	-174.3256	39.1800	24	-300	119 
+226.121	-0.2871	0.6030	1.9204	26.7944	104.0649	-1.6479	17.1497	11.5302	-174.2102	39.1800	25	-300	120 
+226.131	-0.2871	0.6030	1.9204	26.7944	104.0649	-1.6479	17.3145	12.0190	-174.0948	39.1800	25	-300	120 
+226.131	-0.2871	0.6030	1.9204	26.7944	104.0649	-1.6479	17.4792	12.5079	-173.9795	39.1800	27	-301	122 
+226.131	-0.4351	0.6348	1.8755	26.1841	109.3140	-2.1973	17.6495	13.0298	-173.8531	39.1800	28	-301	123 
+226.141	-0.4351	0.6348	1.8755	26.1841	109.3140	-2.1973	17.8143	13.5461	-173.7323	39.1800	28	-301	123 
+226.141	-0.4351	0.6348	1.8755	26.1841	109.3140	-2.1973	17.9901	14.0680	-173.6060	39.1900	28	-301	123 
+226.151	-0.4351	0.6348	1.8755	26.1841	109.3140	-2.1973	18.1604	14.5844	-173.4796	39.1900	29	-301	123 
+226.151	-0.4351	0.6348	1.8755	26.1841	109.3140	-2.1973	18.3362	15.0952	-173.3478	39.2400	30	-300	123 
+226.161	-0.4351	0.6348	1.8755	26.1841	109.3140	-2.1973	18.5120	15.6116	-173.2214	39.2400	30	-301	123 
+226.161	-0.4351	0.6348	1.8755	26.1841	109.3140	-2.1973	18.6877	16.1224	-173.0896	39.2000	30	-302	123 
+226.171	-0.4351	0.6348	1.8755	26.1841	109.3140	-2.1973	18.8635	16.6278	-172.9523	39.2000	31	-302	123 
+226.171	-0.5820	0.6616	1.8052	25.5127	110.6567	-3.4790	19.0448	17.1552	-172.8204	39.2000	31	-303	123 
+226.171	-0.5820	0.6616	1.8052	25.5127	110.6567	-3.4790	19.2261	17.6825	-172.6886	39.2000	31	-303	123 
+226.181	-0.5820	0.6616	1.8052	25.5127	110.6567	-3.4790	19.4073	18.2043	-172.5513	39.2000	31	-303	123 
+226.181	-0.5820	0.6616	1.8052	25.5127	110.6567	-3.4790	19.5941	18.7262	-172.4139	39.1900	31	-302	122 
+226.191	-0.5820	0.6616	1.8052	25.5127	110.6567	-3.4790	19.7809	19.2480	-172.2766	39.1900	32	-301	123 
+226.191	-0.5820	0.6616	1.8052	25.5127	110.6567	-3.4790	19.9677	19.7644	-172.1393	39.2100	32	-301	123 
+226.201	-0.5820	0.6616	1.8052	25.5127	110.6567	-3.4790	20.1544	20.2808	-171.9965	39.2100	32	-302	124 
+226.201	-0.5820	0.6616	1.8052	25.5127	110.6567	-3.4790	20.3467	20.7916	-171.8536	39.1600	33	-302	124 
+226.201	-0.7056	0.6851	1.7632	23.9868	105.7739	-4.8218	20.5334	21.2915	-171.7218	39.1600	33	-303	125 
+226.211	-0.7056	0.6851	1.7632	23.9868	105.7739	-4.8218	20.7147	21.7914	-171.5900	39.1600	33	-303	125 
+226.211	-0.7056	0.6851	1.7632	23.9868	105.7739	-4.8218	20.9015	22.2913	-171.4526	39.1600	33	-302	126 
+226.221	-0.7056	0.6851	1.7632	23.9868	105.7739	-4.8218	21.0938	22.7856	-171.3153	39.2800	33	-302	127 
+226.221	-0.7056	0.6851	1.7632	23.9868	105.7739	-4.8218	21.2805	23.2800	-171.1780	39.2800	33	-302	128 
+226.231	-0.7056	0.6851	1.7632	23.9868	105.7739	-4.8218	21.4728	23.7689	-171.0352	39.2800	32	-301	128 
+226.231	-0.7056	0.6851	1.7632	23.9868	105.7739	-4.8218	21.6705	24.2578	-170.8923	39.2200	33	-301	127 
+226.241	-0.8184	0.7061	1.7134	20.6299	94.5435	-5.3101	21.8408	24.7083	-170.7715	39.2200	34	-302	127 
+226.241	-0.8184	0.7061	1.7134	20.6299	94.5435	-5.3101	22.0166	25.1477	-170.6506	39.1700	34	-302	127 
+226.241	-0.8184	0.7061	1.7134	20.6299	94.5435	-5.3101	22.1924	25.5927	-170.5243	39.1700	34	-303	127 
+226.251	-0.8184	0.7061	1.7134	20.6299	94.5435	-5.3101	22.3682	26.0321	-170.4034	39.1400	35	-303	128 
+226.251	-0.8184	0.7061	1.7134	20.6299	94.5435	-5.3101	22.5494	26.4716	-170.2771	39.1400	35	-303	128 
+226.261	-0.8184	0.7061	1.7134	20.6299	94.5435	-5.3101	22.7252	26.9110	-170.1453	39.1500	35	-302	127 
+226.261	-0.8184	0.7061	1.7134	20.6299	94.5435	-5.3101	22.9065	27.3450	-170.0134	39.1500	36	-302	126 
+226.271	-0.8184	0.7061	1.7134	20.6299	94.5435	-5.3101	23.0933	27.7789	-169.8816	39.1900	36	-302	126 
+226.271	-0.8779	0.7139	1.6831	16.2964	78.0029	-4.6387	23.2416	28.1415	-169.7827	39.1900	36	-303	126 
+226.281	-0.8779	0.7139	1.6831	16.2964	78.0029	-4.6387	23.3899	28.4985	-169.6783	39.1900	36	-304	126 
+226.281	-0.8779	0.7139	1.6831	16.2964	78.0029	-4.6387	23.5437	28.8556	-169.5740	39.1900	37	-304	126 
+226.281	-0.8779	0.7139	1.6831	16.2964	78.0029	-4.6387	23.6975	29.2126	-169.4696	39.1900	37	-304	126 
+226.291	-0.8779	0.7139	1.6831	16.2964	78.0029	-4.6387	23.8513	29.5697	-169.3652	39.2200	38	-304	126 
+226.291	-0.8779	0.7139	1.6831	16.2964	78.0029	-4.6387	24.0051	29.9213	-169.2554	39.2200	38	-303	126 
+226.301	-0.8779	0.7139	1.6831	16.2964	78.0029	-4.6387	24.1589	30.2728	-169.1455	39.1800	39	-303	127 
+226.301	-0.8779	0.7139	1.6831	16.2964	78.0029	-4.6387	24.3182	30.6244	-169.0411	39.1800	39	-303	127 
+226.311	-0.9116	0.7178	1.6519	11.7798	58.4717	-3.0518	24.4336	30.8881	-168.9642	39.1900	39	-302	126 
+226.311	-0.9116	0.7178	1.6519	11.7798	58.4717	-3.0518	24.5544	31.1462	-168.8928	39.1900	39	-303	126 
+226.311	-0.9116	0.7178	1.6519	11.7798	58.4717	-3.0518	24.6698	31.4044	-168.8159	39.1300	39	-303	126 
+226.321	-0.9116	0.7178	1.6519	11.7798	58.4717	-3.0518	24.7906	31.6626	-168.7445	39.1300	39	-303	126 
+226.321	-0.9116	0.7178	1.6519	11.7798	58.4717	-3.0518	24.9115	31.9208	-168.6676	39.1300	40	-303	127 
+226.331	-0.9116	0.7178	1.6519	11.7798	58.4717	-3.0518	25.0269	32.1790	-168.5907	39.1700	40	-303	128 
+226.331	-0.9116	0.7178	1.6519	11.7798	58.4717	-3.0518	25.1477	32.4316	-168.5138	39.1700	40	-303	128 
+226.341	-0.9116	0.7178	1.6519	11.7798	58.4717	-3.0518	25.2686	32.6843	-168.4369	39.2400	40	-303	128 
+226.341	-0.9116	0.7134	1.6343	8.3008	42.1143	-1.4038	25.3564	32.8601	-168.3929	39.2400	40	-303	128 
+226.351	-0.9116	0.7134	1.6343	8.3008	42.1143	-1.4038	25.4443	33.0414	-168.3490	39.2500	40	-302	128 
+226.351	-0.9116	0.7134	1.6343	8.3008	42.1143	-1.4038	25.5322	33.2172	-168.3051	39.2500	41	-301	127 
+226.351	-0.9116	0.7134	1.6343	8.3008	42.1143	-1.4038	25.6201	33.3875	-168.2556	39.1600	39	-302	128 
+226.361	-0.9116	0.7134	1.6343	8.3008	42.1143	-1.4038	25.7080	33.5632	-168.2062	39.1600	38	-302	129 
+226.361	-0.9116	0.7134	1.6343	8.3008	42.1143	-1.4038	25.7959	33.7390	-168.1622	39.1700	40	-303	129 
+226.371	-0.9116	0.7134	1.6343	8.3008	42.1143	-1.4038	25.8838	33.9093	-168.1183	39.1700	42	-303	130 
+226.371	-0.9116	0.7134	1.6343	8.3008	42.1143	-1.4038	25.9717	34.0851	-168.0688	39.2200	43	-304	131 
+226.381	-0.9526	0.7168	1.5898	7.6904	38.2690	-0.9155	26.0541	34.2444	-168.0304	39.2200	44	-305	131 
+226.381	-0.9526	0.7168	1.5898	7.6904	38.2690	-0.9155	26.1365	34.3982	-167.9919	39.2200	44	-305	131 
+226.392	-0.9526	0.7168	1.5898	7.6904	38.2690	-0.9155	26.2189	34.5575	-167.9480	39.1600	45	-305	131 
+226.392	-0.9526	0.7168	1.5898	7.6904	38.2690	-0.9155	26.3068	34.7113	-167.9095	39.1600	46	-305	132 
+226.392	-0.9526	0.7168	1.5898	7.6904	38.2690	-0.9155	26.3892	34.8706	-167.8711	39.2100	47	-305	133 
+226.402	-0.9526	0.7168	1.5898	7.6904	38.2690	-0.9155	26.4771	35.0244	-167.8326	39.2100	48	-305	134 
+226.402	-0.9526	0.7168	1.5898	7.6904	38.2690	-0.9155	26.5594	35.1782	-167.7942	39.2300	49	-305	135 
+226.412	-0.9526	0.7168	1.5898	7.6904	38.2690	-0.9155	26.6418	35.3320	-167.7557	39.2300	49	-304	136 
+226.412	-1.0156	0.7266	1.5063	11.1084	52.2461	-1.8311	26.7737	35.5573	-167.6788	39.2200	49	-303	137 
+226.422	-1.0156	0.7266	1.5063	11.1084	52.2461	-1.8311	26.9000	35.7825	-167.6019	39.2200	50	-304	137 
+226.422	-1.0156	0.7266	1.5063	11.1084	52.2461	-1.8311	27.0264	36.0077	-167.5250	39.1800	51	-304	137 
+226.422	-1.0156	0.7266	1.5063	11.1084	52.2461	-1.8311	27.1582	36.2274	-167.4481	39.1800	51	-305	138 
+226.432	-1.0156	0.7266	1.5063	11.1084	52.2461	-1.8311	27.2845	36.4526	-167.3712	39.1800	51	-305	139 
+226.432	-1.0156	0.7266	1.5063	11.1084	52.2461	-1.8311	27.4164	36.6724	-167.2888	39.1500	50	-306	140 
+226.442	-1.0156	0.7266	1.5063	11.1084	52.2461	-1.8311	27.5482	36.8921	-167.2119	39.1500	50	-307	141 
+226.442	-1.0156	0.7266	1.5063	11.1084	52.2461	-1.8311	27.6801	37.1118	-167.1295	39.1700	49	-307	142 
+226.452	-1.1309	0.7412	1.4106	17.4561	79.1626	-3.7842	27.8888	37.4634	-166.9757	39.1700	49	-307	142 
+226.452	-1.1309	0.7412	1.4106	17.4561	79.1626	-3.7842	28.1085	37.8149	-166.8164	39.2000	50	-306	143 
+226.462	-1.1309	0.7412	1.4106	17.4561	79.1626	-3.7842	28.3228	38.1665	-166.6571	39.2000	50	-306	143 
+226.462	-1.1309	0.7412	1.4106	17.4561	79.1626	-3.7842	28.5425	38.5126	-166.4978	39.1000	50	-306	143 
+226.462	-1.1309	0.7412	1.4106	17.4561	79.1626	-3.7842	28.7622	38.8586	-166.3330	39.1000	50	-306	143 
+226.484	-1.1309	0.7412	1.4106	17.4561	79.1626	-3.7842	28.9874	39.2047	-166.1682	39.2200	52	-307	145 
+226.484	-1.1309	0.7412	1.4106	17.4561	79.1626	-3.7842	29.2072	39.5453	-166.0034	39.2200	53	-308	146 
+226.494	-1.1309	0.7412	1.4106	17.4561	79.1626	-3.7842	29.4379	39.8859	-165.8331	39.2200	53	-308	146 
+226.494	-1.2842	0.7642	1.2417	24.8413	109.8633	-6.5308	29.7729	40.3857	-165.5640	39.2000	54	-307	146 
+226.504	-1.2842	0.7642	1.2417	24.8413	109.8633	-6.5308	30.1135	40.8801	-165.2948	39.2000	55	-308	148 
+226.504	-1.2842	0.7642	1.2417	24.8413	109.8633	-6.5308	30.4541	41.3690	-165.0201	39.1000	56	-308	149 
+226.514	-1.2842	0.7642	1.2417	24.8413	109.8633	-6.5308	30.8057	41.8579	-164.7400	39.1000	56	-308	149 
+226.514	-1.2842	0.7642	1.2417	24.8413	109.8633	-6.5308	31.1627	42.3413	-164.4543	39.1900	56	-307	150 
+226.514	-1.2842	0.7642	1.2417	24.8413	109.8633	-6.5308	31.5198	42.8247	-164.1577	39.1900	57	-308	150 
+226.524	-1.2842	0.7642	1.2417	24.8413	109.8633	-6.5308	31.8878	43.3026	-163.8611	39.1800	58	-308	150 
+226.524	-1.2842	0.7642	1.2417	24.8413	109.8633	-6.5308	32.2614	43.7750	-163.5590	39.1800	59	-307	150 
+226.534	-1.4014	0.7793	1.0913	31.0669	132.8125	-9.2773	32.7283	44.3683	-163.1689	39.1800	59	-306	150 
+226.534	-1.4014	0.7793	1.0913	31.0669	132.8125	-9.2773	33.2117	44.9506	-162.7679	39.1800	60	-306	150 
+226.544	-1.4014	0.7793	1.0913	31.0669	132.8125	-9.2773	33.7061	45.5328	-162.3560	39.1800	60	-307	150 
+226.544	-1.4014	0.7793	1.0913	31.0669	132.8125	-9.2773	34.2059	46.1096	-161.9330	39.1800	61	-307	151 
+226.544	-1.4014	0.7793	1.0913	31.0669	132.8125	-9.2773	34.7168	46.6809	-161.4990	39.1800	61	-306	151 
+226.554	-1.4014	0.7793	1.0913	31.0669	132.8125	-9.2773	35.2386	47.2522	-161.0596	39.1200	62	-306	152 
+226.554	-1.4014	0.7793	1.0913	31.0669	132.8125	-9.2773	35.7715	47.8125	-160.6036	39.1200	63	-305	153 
+226.564	-1.4014	0.7793	1.0913	31.0669	132.8125	-9.2773	36.3208	48.3728	-160.1367	39.1500	64	-306	154 
+226.564	-1.5269	0.7944	0.9448	33.5693	140.9302	-11.4136	36.9250	48.9771	-159.6204	39.1500	64	-306	154 
+226.574	-1.5269	0.7944	0.9448	33.5693	140.9302	-11.4136	37.5403	49.5758	-159.0875	39.2000	64	-306	155 
+226.574	-1.5269	0.7944	0.9448	33.5693	140.9302	-11.4136	38.1775	50.1691	-158.5437	39.2000	65	-306	156 
+226.584	-1.5269	0.7944	0.9448	33.5693	140.9302	-11.4136	38.8257	50.7568	-157.9779	39.1400	64	-306	157 
+226.584	-1.5269	0.7944	0.9448	33.5693	140.9302	-11.4136	39.4904	51.3391	-157.4011	39.1400	64	-306	158 
+226.584	-1.5269	0.7944	0.9448	33.5693	140.9302	-11.4136	40.1715	51.9104	-156.8024	39.2500	63	-307	160 
+226.595	-1.5269	0.7944	0.9448	33.5693	140.9302	-11.4136	40.8691	52.4817	-156.1871	39.2500	63	-307	161 
+226.595	-1.5269	0.7944	0.9448	33.5693	140.9302	-11.4136	41.5833	53.0420	-155.5609	39.2500	63	-307	163 
+226.605	-1.5967	0.8086	0.7695	33.9355	138.0005	-13.0615	42.3193	53.6023	-154.9127	39.1600	63	-307	164 
+226.605	-1.5967	0.8086	0.7695	33.9355	138.0005	-13.0615	43.0774	54.1571	-154.2535	39.1600	64	-306	165 
+226.615	-1.5967	0.8086	0.7695	33.9355	138.0005	-13.0615	43.8519	54.7009	-153.5724	39.1700	64	-305	166 
+226.615	-1.5967	0.8086	0.7695	33.9355	138.0005	-13.0615	44.6484	55.2393	-152.8693	39.1700	64	-306	166 
+226.625	-1.5967	0.8086	0.7695	33.9355	138.0005	-13.0615	45.4614	55.7721	-152.1442	39.2400	65	-306	167 
+226.625	-1.5967	0.8086	0.7695	33.9355	138.0005	-13.0615	46.3019	56.2939	-151.4026	39.2400	65	-306	167 
+226.625	-1.5967	0.8086	0.7695	33.9355	138.0005	-13.0615	47.1588	56.8103	-150.6335	39.2200	65	-306	167 
+226.635	-1.5967	0.8086	0.7695	33.9355	138.0005	-13.0615	48.0377	57.3212	-149.8480	39.2200	66	-306	168 
+226.635	-1.6768	0.8193	0.6245	33.6914	127.1973	-13.9771	48.8947	57.7936	-149.0900	39.1800	67	-305	169 
+226.645	-1.6768	0.8193	0.6245	33.6914	127.1973	-13.9771	49.7736	58.2605	-148.3154	39.1800	66	-305	169 
+226.645	-1.6768	0.8193	0.6245	33.6914	127.1973	-13.9771	50.6744	58.7219	-147.5189	39.1800	66	-305	168 
+226.655	-1.6768	0.8193	0.6245	33.6914	127.1973	-13.9771	51.5918	59.1724	-146.7004	39.1500	67	-305	168 
+226.655	-1.6768	0.8193	0.6245	33.6914	127.1973	-13.9771	52.5366	59.6118	-145.8600	39.1500	67	-306	168 
+226.655	-1.6768	0.8193	0.6245	33.6914	127.1973	-13.9771	53.5034	60.0458	-144.9921	39.1900	66	-305	168 
+226.665	-1.6768	0.8193	0.6245	33.6914	127.1973	-13.9771	54.4922	60.4742	-144.1022	39.1900	65	-305	168 
+226.665	-1.6768	0.8193	0.6245	33.6914	127.1973	-13.9771	55.5029	60.8862	-143.1848	39.1800	64	-305	167 
+226.681	-1.7192	0.8325	0.4756	31.0059	107.6660	-12.8784	56.4148	61.2433	-142.3828	39.1800	63	-305	167 
+226.681	-1.7192	0.8325	0.4756	31.0059	107.6660	-12.8784	57.3376	61.5839	-141.5588	39.2200	63	-305	166 
+226.691	-1.7192	0.8325	0.4756	31.0059	107.6660	-12.8784	58.2825	61.9244	-140.7184	39.2200	62	-305	166 
+226.691	-1.7192	0.8325	0.4756	31.0059	107.6660	-12.8784	59.2493	62.2540	-139.8560	39.1900	61	-305	165 
+226.701	-1.7192	0.8325	0.4756	31.0059	107.6660	-12.8784	60.2271	62.5781	-138.9716	39.1900	61	-306	165 
+226.701	-1.7192	0.8325	0.4756	31.0059	107.6660	-12.8784	61.2268	62.8912	-138.0707	39.1600	59	-306	164 
+226.701	-1.7192	0.8325	0.4756	31.0059	107.6660	-12.8784	62.2485	63.1934	-137.1478	39.1600	58	-306	163 
+226.711	-1.7192	0.8325	0.4756	31.0059	107.6660	-12.8784	63.2867	63.4900	-136.2085	39.1600	58	-307	162 
+226.711	-1.7671	0.8398	0.3711	24.4141	75.1953	-8.3008	64.0558	63.6932	-135.5328	39.1300	58	-307	160 
+226.721	-1.7671	0.8398	0.3711	24.4141	75.1953	-8.3008	64.8303	63.8855	-134.8462	39.1300	56	-307	159 
+226.721	-1.7671	0.8398	0.3711	24.4141	75.1953	-8.3008	65.6213	64.0778	-134.1486	39.1300	55	-306	158 
+226.731	-1.7671	0.8398	0.3711	24.4141	75.1953	-8.3008	66.4124	64.2645	-133.4454	39.1300	53	-306	157 
+226.731	-1.7671	0.8398	0.3711	24.4141	75.1953	-8.3008	67.2144	64.4458	-132.7313	39.1500	52	-305	156 
+226.741	-1.7671	0.8398	0.3711	24.4141	75.1953	-8.3008	68.0273	64.6161	-132.0062	39.1500	51	-306	155 
+226.741	-1.7671	0.8398	0.3711	24.4141	75.1953	-8.3008	68.8458	64.7919	-131.2756	39.2500	50	-306	154 
+226.741	-1.7671	0.8398	0.3711	24.4141	75.1953	-8.3008	69.6753	64.9567	-130.5341	39.2500	47	-305	153 
+226.751	-1.7349	0.8491	0.4106	10.0708	20.2637	1.0376	69.9115	64.9731	-130.3638	39.1700	44	-304	152 
+226.751	-1.7349	0.8491	0.4106	10.0708	20.2637	1.0376	70.1477	64.9951	-130.1990	39.1700	43	-305	152 
+226.761	-1.7349	0.8491	0.4106	10.0708	20.2637	1.0376	70.3784	65.0171	-130.0287	39.1700	43	-305	151 
+226.761	-1.7349	0.8491	0.4106	10.0708	20.2637	1.0376	70.6146	65.0336	-129.8584	39.2400	41	-304	149 
+226.771	-1.7349	0.8491	0.4106	10.0708	20.2637	1.0376	70.8508	65.0555	-129.6881	39.2400	40	-304	148 
+226.771	-1.7349	0.8491	0.4106	10.0708	20.2637	1.0376	71.0815	65.0720	-129.5178	39.1900	37	-304	147 
+226.771	-1.7349	0.8491	0.4106	10.0708	20.2637	1.0376	71.3177	65.0940	-129.3420	39.1900	35	-304	146 
+226.781	-1.5796	0.8447	0.5386	-13.8550	-69.3970	15.3198	70.5432	64.8907	-130.1495	39.1900	33	-303	144 
+226.781	-1.5796	0.8447	0.5386	-13.8550	-69.3970	15.3198	69.7852	64.6820	-130.9406	39.1900	32	-303	143 
+226.791	-1.5796	0.8447	0.5386	-13.8550	-69.3970	15.3198	69.0436	64.4733	-131.7151	39.1600	29	-302	141 
+226.791	-1.5796	0.8447	0.5386	-13.8550	-69.3970	15.3198	68.3130	64.2590	-132.4731	39.1600	27	-302	139 
+226.801	-1.5796	0.8447	0.5386	-13.8550	-69.3970	15.3198	67.5989	64.0393	-133.2202	39.1700	24	-301	139 
+226.801	-1.5796	0.8447	0.5386	-13.8550	-69.3970	15.3198	66.8958	63.8196	-133.9453	39.1700	21	-299	138 
+226.811	-1.5796	0.8447	0.5386	-13.8550	-69.3970	15.3198	66.2091	63.5944	-134.6594	39.1700	19	-300	138 
+226.811	-1.5796	0.8447	0.5386	-13.8550	-69.3970	15.3198	65.5334	63.3691	-135.3625	39.1900	16	-300	138 
+226.811	-1.0952	0.7920	0.8242	-45.7764	-204.5288	31.1890	63.5120	62.7429	-137.3895	39.1900	13	-301	137 
+226.821	-1.0952	0.7920	0.8242	-45.7764	-204.5288	31.1890	61.5839	62.0892	-139.3231	39.1800	10	-301	137 
+226.821	-1.0952	0.7920	0.8242	-45.7764	-204.5288	31.1890	59.7546	61.4081	-141.1633	39.1800	9	-301	135 
+226.831	-1.0952	0.7920	0.8242	-45.7764	-204.5288	31.1890	58.0078	60.7050	-142.9102	39.1700	8	-301	134 
+226.831	-1.0952	0.7920	0.8242	-45.7764	-204.5288	31.1890	56.3544	59.9799	-144.5691	39.1700	6	-300	133 
+226.841	-1.0952	0.7920	0.8242	-45.7764	-204.5288	31.1890	54.7778	59.2273	-146.1456	39.1600	5	-299	132 
+226.841	-1.0952	0.7920	0.8242	-45.7764	-204.5288	31.1890	53.2837	58.4637	-147.6398	39.1600	3	-300	132 
+226.851	-1.0952	0.7920	0.8242	-45.7764	-204.5288	31.1890	51.8665	57.6782	-149.0625	39.2400	2	-301	132 
+226.851	-0.5352	0.7148	1.1758	-80.3833	-365.4175	42.4805	49.3726	56.2665	-151.5509	39.2400	2	-301	132 
+226.851	-0.5352	0.7148	1.1758	-80.3833	-365.4175	42.4805	47.0929	54.8053	-153.8306	39.2400	1	-301	132 
+226.861	-0.5352	0.7148	1.1758	-80.3833	-365.4175	42.4805	44.9890	53.2947	-155.9290	39.2000	1	-300	134 
+226.861	-0.5352	0.7148	1.1758	-80.3833	-365.4175	42.4805	43.0554	51.7511	-157.8571	39.2000	1	-300	135 
+226.871	-0.5352	0.7148	1.1758	-80.3833	-365.4175	42.4805	41.2756	50.1746	-159.6368	39.2400	1	-299	135 
+226.871	-0.5352	0.7148	1.1758	-80.3833	-365.4175	42.4805	39.6277	48.5706	-161.2848	39.2400	0	-299	135 
+226.881	-0.5352	0.7148	1.1758	-80.3833	-365.4175	42.4805	38.1061	46.9391	-162.8064	39.1300	0	-299	135 
+226.881	-0.5352	0.7148	1.1758	-80.3833	-365.4175	42.4805	36.6943	45.2911	-164.2126	39.1300	-1	-300	135 
+226.881	0.2358	0.6128	1.4385	-106.3843	-506.1646	44.1895	34.8267	42.9620	-166.1023	39.1600	-2	-300	136 
+226.891	0.2358	0.6128	1.4385	-106.3843	-506.1646	44.1895	33.1348	40.6055	-167.8162	39.1600	-2	-300	137 
+226.891	0.2358	0.6128	1.4385	-106.3843	-506.1646	44.1895	31.5912	38.2159	-169.3817	39.1800	-4	-300	138 
+226.901	0.2358	0.6128	1.4385	-106.3843	-506.1646	44.1895	30.1849	35.7990	-170.8099	39.1800	-5	-301	140 
+226.901	0.2358	0.6128	1.4385	-106.3843	-506.1646	44.1895	28.8940	33.3710	-172.1228	39.1700	-7	-300	140 
+226.911	0.2358	0.6128	1.4385	-106.3843	-506.1646	44.1895	27.7075	30.9210	-173.3368	39.1700	-8	-299	141 
+226.911	0.2358	0.6128	1.4385	-106.3843	-506.1646	44.1895	26.6089	28.4601	-174.4574	39.1700	-8	-299	141 
+226.921	0.2358	0.6128	1.4385	-106.3843	-506.1646	44.1895	25.5927	25.9882	-175.4956	39.1300	-9	-298	142 
+226.921	0.9092	0.5093	1.6216	-116.7603	-589.1113	36.0718	24.4940	23.0933	-176.6931	39.1300	-10	-298	142 
+226.921	0.9092	0.5093	1.6216	-116.7603	-589.1113	36.0718	23.4833	20.1874	-177.8027	39.1800	-10	-298	142 
+226.931	0.9092	0.5093	1.6216	-116.7603	-589.1113	36.0718	22.5549	17.2760	-178.8354	39.1800	-10	-297	142 
+226.931	0.9092	0.5093	1.6216	-116.7603	-589.1113	36.0718	21.6925	14.3536	-179.8022	39.2000	-11	-297	143 
+226.941	0.9092	0.5093	1.6216	-116.7603	-589.1113	36.0718	20.9015	11.4258	179.2804	39.2000	-12	-297	143 
+226.941	0.9092	0.5093	1.6216	-116.7603	-589.1113	36.0718	20.1599	8.4979	178.4235	39.2200	-13	-297	143 
+226.951	0.9092	0.5093	1.6216	-116.7603	-589.1113	36.0718	19.4788	5.5646	177.6105	39.2200	-13	-297	143 
+226.951	0.9092	0.5093	1.6216	-116.7603	-589.1113	36.0718	18.8361	2.6367	176.8414	39.1900	-14	-297	144 
+226.961	1.4458	0.4438	1.6060	-110.8398	-588.0127	20.9351	18.2703	-0.3021	176.0339	39.1900	-13	-297	144 
+226.961	1.4458	0.4438	1.6060	-110.8398	-588.0127	20.9351	17.7484	-3.2410	175.2594	39.1900	-12	-297	145 
+226.961	1.4458	0.4438	1.6060	-110.8398	-588.0127	20.9351	17.2650	-6.1743	174.5123	39.1600	-13	-298	144 
+226.971	1.4458	0.4438	1.6060	-110.8398	-588.0127	20.9351	16.8201	-9.1132	173.7817	39.1600	-13	-298	144 
+226.971	1.4458	0.4438	1.6060	-110.8398	-588.0127	20.9351	16.4136	-12.0465	173.0731	39.2300	-13	-298	144 
+226.981	1.4458	0.4438	1.6060	-110.8398	-588.0127	20.9351	16.0400	-14.9744	172.3755	39.2300	-12	-298	145 
+226.981	1.4458	0.4438	1.6060	-110.8398	-588.0127	20.9351	15.7050	-17.8967	171.6888	39.1800	-12	-297	145 
+226.991	1.4458	0.4438	1.6060	-110.8398	-588.0127	20.9351	15.4028	-20.8191	171.0077	39.1800	-12	-297	145 
+226.991	1.7847	0.4038	1.4468	-91.2476	-510.4370	4.5166	15.2271	-23.3624	170.3540	39.2000	-12	-297	145 
+226.991	1.7847	0.4038	1.4468	-91.2476	-510.4370	4.5166	15.0787	-25.9003	169.6948	39.2000	-12	-297	145 
+227.001	1.7847	0.4038	1.4468	-91.2476	-510.4370	4.5166	14.9634	-28.4326	169.0302	39.1600	-12	-298	145 
+227.001	1.7847	0.4038	1.4468	-91.2476	-510.4370	4.5166	14.8865	-30.9595	168.3545	39.1600	-12	-298	146 
+227.011	1.7847	0.4038	1.4468	-91.2476	-510.4370	4.5166	14.8425	-33.4808	167.6678	39.1600	-13	-298	145 
+227.011	1.7847	0.4038	1.4468	-91.2476	-510.4370	4.5166	14.8315	-35.9967	166.9592	39.1800	-13	-297	145 
+227.021	1.7847	0.4038	1.4468	-91.2476	-510.4370	4.5166	14.8700	-38.5016	166.2286	39.1800	-13	-298	145 
+227.021	1.7847	0.4038	1.4468	-91.2476	-510.4370	4.5166	14.9469	-40.9955	165.4706	39.2100	-14	-299	145 
+227.031	1.9814	0.3877	1.2202	-66.8945	-396.7285	-8.0566	15.1282	-42.9456	164.7894	39.2100	-13	-298	146 
+227.031	1.9814	0.3877	1.2202	-66.8945	-396.7285	-8.0566	15.3534	-44.8846	164.0808	39.2100	-13	-298	146 
+227.031	1.9814	0.3877	1.2202	-66.8945	-396.7285	-8.0566	15.6171	-46.8127	163.3337	39.2100	-13	-298	146 
+227.041	1.9814	0.3877	1.2202	-66.8945	-396.7285	-8.0566	15.9302	-48.7354	162.5427	39.2300	-14	-298	147 
+227.041	1.9814	0.3877	1.2202	-66.8945	-396.7285	-8.0566	16.3037	-50.6470	161.7078	39.2300	-14	-297	147 
+227.051	1.9814	0.3877	1.2202	-66.8945	-396.7285	-8.0566	16.7377	-52.5476	160.8179	39.1800	-14	-296	147 
+227.051	1.9814	0.3877	1.2202	-66.8945	-396.7285	-8.0566	17.2430	-54.4427	159.8621	39.1800	-14	-296	147 
+227.061	1.9814	0.3877	1.2202	-66.8945	-396.7285	-8.0566	17.8308	-56.3269	158.8293	39.1900	-15	-297	147 
+227.061	2.0503	0.3789	1.0078	-45.0439	-276.2451	-13.7939	18.3801	-57.6288	157.9999	39.1900	-15	-297	147 
+227.071	2.0503	0.3789	1.0078	-45.0439	-276.2451	-13.7939	18.9844	-58.9252	157.1155	39.1900	-15	-297	147 
+227.071	2.0503	0.3789	1.0078	-45.0439	-276.2451	-13.7939	19.6545	-60.2106	156.1761	39.2000	-15	-297	148 
+227.071	2.0503	0.3789	1.0078	-45.0439	-276.2451	-13.7939	20.3961	-61.4850	155.1599	39.2000	-15	-297	148 
+227.083	2.0503	0.3789	1.0078	-45.0439	-276.2451	-13.7939	21.2146	-62.7539	154.0723	39.1400	-16	-297	148 
+227.083	2.0503	0.3789	1.0078	-45.0439	-276.2451	-13.7939	22.1265	-64.0063	152.8912	39.1400	-16	-297	148 
+227.094	2.0503	0.3789	1.0078	-45.0439	-276.2451	-13.7939	23.1482	-65.2478	151.6113	39.2300	-17	-297	148 
+227.094	2.0503	0.3789	1.0078	-45.0439	-276.2451	-13.7939	24.2798	-66.4728	150.2161	39.2300	-17	-297	148 
+227.104	2.0425	0.3770	0.8228	-26.1230	-164.9780	-12.9395	25.0873	-67.1924	149.2932	39.2300	-16	-298	149 
+227.104	2.0425	0.3770	0.8228	-26.1230	-164.9780	-12.9395	25.9497	-67.9065	148.3154	39.2300	-15	-298	150 
+227.104	2.0425	0.3770	0.8228	-26.1230	-164.9780	-12.9395	26.8726	-68.6096	147.2772	39.2200	-16	-299	150 
+227.114	2.0425	0.3770	0.8228	-26.1230	-164.9780	-12.9395	27.8613	-69.3018	146.1786	39.2200	-17	-299	151 
+227.114	2.0425	0.3770	0.8228	-26.1230	-164.9780	-12.9395	28.9160	-69.9884	145.0140	39.2200	-18	-299	151 
+227.124	2.0425	0.3770	0.8228	-26.1230	-164.9780	-12.9395	30.0476	-70.6641	143.7726	39.1700	-19	-299	152 
+227.124	2.0425	0.3770	0.8228	-26.1230	-164.9780	-12.9395	31.2671	-71.3287	142.4487	39.1700	-18	-299	153 
+227.134	2.0425	0.3770	0.8228	-26.1230	-164.9780	-12.9395	32.5690	-71.9824	141.0315	39.1500	-17	-299	154 
+227.134	2.0137	0.3774	0.7026	-10.3149	-77.8198	-8.1787	33.2501	-72.2736	140.3613	39.1500	-17	-299	154 
+227.144	2.0137	0.3774	0.7026	-10.3149	-77.8198	-8.1787	33.9587	-72.5647	139.6692	39.2400	-17	-299	154 
+227.144	2.0137	0.3774	0.7026	-10.3149	-77.8198	-8.1787	34.6838	-72.8558	138.9551	39.2400	-17	-298	155 
+227.144	2.0137	0.3774	0.7026	-10.3149	-77.8198	-8.1787	35.4309	-73.1415	138.2190	39.1500	-17	-298	155 
+227.154	2.0137	0.3774	0.7026	-10.3149	-77.8198	-8.1787	36.2054	-73.4216	137.4609	39.1500	-16	-299	155 
+227.154	2.0137	0.3774	0.7026	-10.3149	-77.8198	-8.1787	37.0020	-73.6963	136.6754	39.1600	-15	-299	155 
+227.164	2.0137	0.3774	0.7026	-10.3149	-77.8198	-8.1787	37.8259	-73.9655	135.8679	39.1600	-15	-298	156 
+227.164	2.0137	0.3774	0.7026	-10.3149	-77.8198	-8.1787	38.6719	-74.2346	135.0330	39.1600	-15	-298	157 
+227.174	1.9795	0.3750	0.6255	1.1597	-21.6064	-2.2583	38.9081	-74.3005	134.8956	39.2100	-16	-297	157 
+227.174	1.9795	0.3750	0.6255	1.1597	-21.6064	-2.2583	39.1388	-74.3719	134.7583	39.2100	-16	-297	157 
+227.184	1.9795	0.3750	0.6255	1.1597	-21.6064	-2.2583	39.3750	-74.4379	134.6210	39.2000	-16	-298	157 
+227.184	1.9795	0.3750	0.6255	1.1597	-21.6064	-2.2583	39.6167	-74.5038	134.4836	39.2000	-17	-299	157 
+227.184	1.9795	0.3750	0.6255	1.1597	-21.6064	-2.2583	39.8529	-74.5697	134.3408	39.1800	-17	-300	158 
+227.194	1.9795	0.3750	0.6255	1.1597	-21.6064	-2.2583	40.0946	-74.6301	134.1980	39.1800	-17	-300	158 
+227.194	1.9795	0.3750	0.6255	1.1597	-21.6064	-2.2583	40.3308	-74.6960	134.0552	39.2100	-17	-300	158 
+227.204	1.9795	0.3750	0.6255	1.1597	-21.6064	-2.2583	40.5725	-74.7620	133.9124	39.2100	-17	-299	159 
+227.204	1.9453	0.3750	0.5825	8.1787	4.6997	2.0142	40.4901	-74.7400	134.1431	39.1300	-16	-298	159 
+227.214	1.9453	0.3750	0.5825	8.1787	4.6997	2.0142	40.4022	-74.7180	134.3738	39.1300	-15	-297	159 
+227.214	1.9453	0.3750	0.5825	8.1787	4.6997	2.0142	40.3198	-74.7015	134.6045	39.1600	-16	-298	160 
+227.214	1.9453	0.3750	0.5825	8.1787	4.6997	2.0142	40.2374	-74.6796	134.8352	39.1600	-16	-298	161 
+227.224	1.9453	0.3750	0.5825	8.1787	4.6997	2.0142	40.1495	-74.6576	135.0604	39.1600	-16	-297	161 
+227.224	1.9453	0.3750	0.5825	8.1787	4.6997	2.0142	40.0671	-74.6356	135.2911	39.1900	-15	-297	161 
+227.234	1.9453	0.3750	0.5825	8.1787	4.6997	2.0142	39.9847	-74.6136	135.5164	39.1900	-15	-297	161 
+227.234	1.9453	0.3750	0.5825	8.1787	4.6997	2.0142	39.9078	-74.5917	135.7416	39.2000	-16	-297	161 
+227.244	1.9136	0.3838	0.5347	11.3525	8.1787	3.8452	39.7870	-74.5642	136.0217	39.2000	-16	-297	161 
+227.244	1.9136	0.3838	0.5347	11.3525	8.1787	3.8452	39.6716	-74.5367	136.3019	39.1700	-16	-298	161 
+227.255	1.9136	0.3838	0.5347	11.3525	8.1787	3.8452	39.5563	-74.5093	136.5765	39.1700	-16	-298	162 
+227.255	1.9136	0.3838	0.5347	11.3525	8.1787	3.8452	39.4409	-74.4818	136.8567	39.2100	-16	-298	163 
+227.255	1.9136	0.3838	0.5347	11.3525	8.1787	3.8452	39.3256	-74.4543	137.1313	39.2100	-17	-298	163 
+227.266	1.9136	0.3838	0.5347	11.3525	8.1787	3.8452	39.2102	-74.4269	137.4060	39.1800	-18	-298	163 
+227.266	1.9136	0.3838	0.5347	11.3525	8.1787	3.8452	39.1003	-74.3994	137.6752	39.1800	-18	-298	163 
+227.276	1.9136	0.3838	0.5347	11.3525	8.1787	3.8452	38.9905	-74.3665	137.9498	39.1800	-19	-299	163 
+227.276	1.9063	0.3877	0.5161	11.8408	1.2207	4.2725	38.9575	-74.3665	138.1366	39.1700	-18	-300	163 
+227.288	1.9063	0.3877	0.5161	11.8408	1.2207	4.2725	38.9301	-74.3719	138.3289	39.1700	-17	-301	163 
+227.288	1.9063	0.3877	0.5161	11.8408	1.2207	4.2725	38.8971	-74.3719	138.5156	39.2200	-17	-301	163 
+227.298	1.9063	0.3877	0.5161	11.8408	1.2207	4.2725	38.8696	-74.3719	138.7024	39.2200	-17	-302	164 
+227.298	1.9063	0.3877	0.5161	11.8408	1.2207	4.2725	38.8367	-74.3719	138.8892	39.1900	-17	-301	165 
+227.298	1.9063	0.3877	0.5161	11.8408	1.2207	4.2725	38.8092	-74.3719	139.0759	39.1900	-17	-300	165 
+227.308	1.9063	0.3877	0.5161	11.8408	1.2207	4.2725	38.7762	-74.3719	139.2627	39.1500	-18	-299	165 
+227.308	1.9199	0.3975	0.4976	10.6201	-6.6528	4.3945	38.8367	-74.4049	139.3561	39.1500	-18	-299	166 
+227.318	1.9199	0.3975	0.4976	10.6201	-6.6528	4.3945	38.8916	-74.4324	139.4495	39.2300	-18	-298	166 
+227.318	1.9199	0.3975	0.4976	10.6201	-6.6528	4.3945	38.9465	-74.4653	139.5374	39.2300	-18	-298	166 
+227.328	1.9199	0.3975	0.4976	10.6201	-6.6528	4.3945	39.0070	-74.4983	139.6252	39.2300	-18	-298	166 
+227.328	1.9199	0.3975	0.4976	10.6201	-6.6528	4.3945	39.0619	-74.5313	139.7186	39.1800	-19	-298	167 
+227.328	1.9199	0.3975	0.4976	10.6201	-6.6528	4.3945	39.1168	-74.5587	139.8065	39.1800	-19	-298	168 
+227.338	1.9199	0.3975	0.4976	10.6201	-6.6528	4.3945	39.1718	-74.5917	139.8999	39.1700	-20	-298	169 
+227.338	1.9199	0.3975	0.4976	10.6201	-6.6528	4.3945	39.2322	-74.6246	139.9878	39.1700	-19	-297	169 
+227.348	1.9355	0.4038	0.4785	9.0332	-12.6953	3.6621	39.3640	-74.6741	139.9933	39.2200	-19	-296	169 
+227.348	1.9355	0.4038	0.4785	9.0332	-12.6953	3.6621	39.5013	-74.7290	139.9933	39.2200	-18	-296	168 
+227.358	1.9355	0.4038	0.4785	9.0332	-12.6953	3.6621	39.6332	-74.7839	139.9878	39.2000	-18	-296	167 
+227.358	1.9355	0.4038	0.4785	9.0332	-12.6953	3.6621	39.7705	-74.8334	139.9878	39.2000	-18	-296	168 
+227.368	1.9355	0.4038	0.4785	9.0332	-12.6953	3.6621	39.9078	-74.8883	139.9878	39.1800	-18	-297	168 
+227.368	1.9355	0.4038	0.4785	9.0332	-12.6953	3.6621	40.0397	-74.9377	139.9823	39.1800	-17	-297	167 
+227.368	1.9355	0.4038	0.4785	9.0332	-12.6953	3.6621	40.1770	-74.9927	139.9768	39.1800	-17	-297	167 
+227.378	1.9355	0.4038	0.4785	9.0332	-12.6953	3.6621	40.3143	-75.0421	139.9768	39.1500	-17	-297	167 
+227.378	1.9790	0.4067	0.4609	7.7515	-17.6392	1.6479	40.5396	-75.1080	139.8724	39.1500	-17	-297	167 
+227.388	1.9790	0.4067	0.4609	7.7515	-17.6392	1.6479	40.7648	-75.1740	139.7681	39.1500	-17	-296	168 
+227.388	1.9790	0.4067	0.4609	7.7515	-17.6392	1.6479	40.9955	-75.2344	139.6582	39.1500	-16	-295	168 
+227.398	1.9790	0.4067	0.4609	7.7515	-17.6392	1.6479	41.2262	-75.3003	139.5538	39.1500	-16	-296	169 
+227.398	1.9790	0.4067	0.4609	7.7515	-17.6392	1.6479	41.4514	-75.3662	139.4440	39.1500	-16	-296	170 
+227.408	1.9790	0.4067	0.4609	7.7515	-17.6392	1.6479	41.6821	-75.4266	139.3396	39.2000	-15	-297	171 
+227.408	1.9790	0.4067	0.4609	7.7515	-17.6392	1.6479	41.9128	-75.4926	139.2297	39.2000	-15	-297	172 
+227.408	1.9790	0.4067	0.4609	7.7515	-17.6392	1.6479	42.1490	-75.5530	139.1144	39.2000	-13	-297	172 
+227.418	2.0010	0.4136	0.4346	6.2256	-24.0479	-2.0142	42.5171	-75.6299	138.8507	39.2000	-12	-297	172 
+227.418	2.0010	0.4136	0.4346	6.2256	-24.0479	-2.0142	42.8961	-75.7068	138.5870	39.2300	-11	-296	172 
+227.428	2.0010	0.4136	0.4346	6.2256	-24.0479	-2.0142	43.2697	-75.7782	138.3179	39.2300	-9	-296	171 
+227.428	2.0010	0.4136	0.4346	6.2256	-24.0479	-2.0142	43.6487	-75.8496	138.0432	39.2300	-9	-297	172 
+227.438	2.0010	0.4136	0.4346	6.2256	-24.0479	-2.0142	44.0332	-75.9265	137.7686	39.1400	-8	-297	173 
+227.438	2.0010	0.4136	0.4346	6.2256	-24.0479	-2.0142	44.4177	-75.9979	137.4884	39.1400	-7	-298	173 
+227.438	2.0010	0.4136	0.4346	6.2256	-24.0479	-2.0142	44.8022	-76.0638	137.2083	39.2700	-6	-298	174 
+227.448	2.0010	0.4136	0.4346	6.2256	-24.0479	-2.0142	45.1923	-76.1353	136.9281	39.2700	-6	-299	174 
+227.448	1.9937	0.4277	0.3892	5.0049	-32.4097	-7.9346	45.7965	-76.2122	136.4117	39.2300	-6	-300	174 
+227.458	1.9937	0.4277	0.3892	5.0049	-32.4097	-7.9346	46.4117	-76.2891	135.8954	39.2300	-5	-300	175 
+227.458	1.9937	0.4277	0.3892	5.0049	-32.4097	-7.9346	47.0270	-76.3660	135.3735	39.2700	-5	-300	175 
+227.468	1.9937	0.4277	0.3892	5.0049	-32.4097	-7.9346	47.6477	-76.4374	134.8407	39.2700	-4	-300	175 
+227.468	1.9937	0.4277	0.3892	5.0049	-32.4097	-7.9346	48.2739	-76.5088	134.3079	39.2200	-4	-301	176 
+227.478	1.9937	0.4277	0.3892	5.0049	-32.4097	-7.9346	48.9056	-76.5802	133.7750	39.2200	-4	-300	177 
+227.478	1.9937	0.4277	0.3892	5.0049	-32.4097	-7.9346	49.5374	-76.6461	133.2312	39.2200	-4	-300	177 
+227.478	1.9937	0.4277	0.3892	5.0049	-32.4097	-7.9346	50.1746	-76.7120	132.6819	39.2100	-3	-300	177 
+227.488	1.9810	0.4478	0.3403	4.5166	-39.1846	-14.3433	51.0315	-76.7725	131.9128	39.2100	-3	-300	177 
+227.488	1.9810	0.4478	0.3403	4.5166	-39.1846	-14.3433	51.8939	-76.8329	131.1328	39.1800	-2	-299	177 
+227.498	1.9810	0.4478	0.3403	4.5166	-39.1846	-14.3433	52.7618	-76.8878	130.3528	39.1800	-2	-299	177 
+227.498	1.9810	0.4478	0.3403	4.5166	-39.1846	-14.3433	53.6298	-76.9373	129.5673	39.1800	-2	-301	177 
+227.508	1.9810	0.4478	0.3403	4.5166	-39.1846	-14.3433	54.5032	-76.9867	128.7708	39.1800	-3	-302	177 
+227.508	1.9810	0.4478	0.3403	4.5166	-39.1846	-14.3433	55.3821	-77.0361	127.9797	39.2200	-3	-302	178 
+227.518	1.9810	0.4478	0.3403	4.5166	-39.1846	-14.3433	56.2665	-77.0746	127.1777	39.2200	-3	-301	178 
+227.518	1.9810	0.4478	0.3403	4.5166	-39.1846	-14.3433	57.1509	-77.1185	126.3757	39.2100	-3	-301	178 
+227.518	1.9399	0.4756	0.2832	4.3335	-42.2974	-18.9819	58.1671	-77.1405	125.4364	39.2100	-3	-301	178 
+227.528	1.9399	0.4756	0.2832	4.3335	-42.2974	-18.9819	59.1888	-77.1625	124.4971	39.2100	-3	-300	178 
+227.528	1.9399	0.4756	0.2832	4.3335	-42.2974	-18.9819	60.2106	-77.1735	123.5522	39.1800	-3	-299	177 
+227.538	1.9399	0.4756	0.2832	4.3335	-42.2974	-18.9819	61.2323	-77.1899	122.6129	39.1800	-3	-299	178 
+227.538	1.9399	0.4756	0.2832	4.3335	-42.2974	-18.9819	62.2485	-77.1954	121.6736	39.1500	-2	-299	179 
+227.548	1.9399	0.4756	0.2832	4.3335	-42.2974	-18.9819	63.2648	-77.2009	120.7343	39.1500	-2	-299	179 
+227.548	1.9399	0.4756	0.2832	4.3335	-42.2974	-18.9819	64.2755	-77.2009	119.8004	39.2300	-1	-299	178 
+227.548	1.9399	0.4756	0.2832	4.3335	-42.2974	-18.9819	65.2863	-77.1954	118.8666	39.2300	-1	-299	178 
+227.558	1.9272	0.5010	0.2305	4.1504	-41.0767	-20.3247	66.3025	-77.1790	117.9272	39.1500	-1	-298	178 
+227.558	1.9272	0.5010	0.2305	4.1504	-41.0767	-20.3247	67.3132	-77.1570	116.9989	39.1500	-2	-299	177 
+227.570	1.9272	0.5010	0.2305	4.1504	-41.0767	-20.3247	68.3130	-77.1350	116.0706	39.1800	-3	-299	177 
+227.570	1.9272	0.5010	0.2305	4.1504	-41.0767	-20.3247	69.3073	-77.1021	115.1532	39.1800	-2	-298	177 
+227.580	1.9272	0.5010	0.2305	4.1504	-41.0767	-20.3247	70.2960	-77.0746	114.2413	39.1800	-2	-298	177 
+227.580	1.9272	0.5010	0.2305	4.1504	-41.0767	-20.3247	71.2738	-77.0361	113.3405	39.1800	-2	-299	178 
+227.590	1.9272	0.5010	0.2305	4.1504	-41.0767	-20.3247	72.2461	-76.9977	112.4396	39.1800	-2	-299	178 
+227.590	1.9272	0.5010	0.2305	4.1504	-41.0767	-20.3247	73.2074	-76.9537	111.5552	39.2000	-1	-300	178 
+227.590	1.9258	0.5239	0.1821	4.0894	-34.2407	-17.5171	74.0259	-76.9098	110.8191	39.2000	-1	-300	178 
+227.600	1.9258	0.5239	0.1821	4.0894	-34.2407	-17.5171	74.8334	-76.8658	110.0940	39.1800	-1	-300	178 
+227.600	1.9258	0.5239	0.1821	4.0894	-34.2407	-17.5171	75.6299	-76.8164	109.3744	39.1800	-1	-300	178 
+227.610	1.9258	0.5239	0.1821	4.0894	-34.2407	-17.5171	76.4209	-76.7670	108.6603	39.1900	-1	-300	179 
+227.610	1.9258	0.5239	0.1821	4.0894	-34.2407	-17.5171	77.2009	-76.7120	107.9572	39.1900	-1	-300	180 
+227.621	1.9258	0.5239	0.1821	4.0894	-34.2407	-17.5171	77.9755	-76.6571	107.2595	39.1800	-1	-299	180 
+227.621	1.9258	0.5239	0.1821	4.0894	-34.2407	-17.5171	78.7390	-76.6022	106.5784	39.1800	-1	-299	181 
+227.631	1.9258	0.5239	0.1821	4.0894	-34.2407	-17.5171	79.4971	-76.5417	105.8972	39.1600	-1	-300	181 
+227.631	1.9233	0.5342	0.1602	3.7842	-24.5972	-12.2681	80.0354	-76.4978	105.4413	39.1600	0	-300	181 
+227.631	1.9233	0.5342	0.1602	3.7842	-24.5972	-12.2681	80.5682	-76.4484	104.9908	39.1600	0	-300	182 
+227.641	1.9233	0.5342	0.1602	3.7842	-24.5972	-12.2681	81.0956	-76.4044	104.5459	39.1600	0	-300	182 
+227.641	1.9233	0.5342	0.1602	3.7842	-24.5972	-12.2681	81.6229	-76.3550	104.1064	39.1600	1	-301	182 
+227.651	1.9233	0.5342	0.1602	3.7842	-24.5972	-12.2681	82.1393	-76.3055	103.6670	39.2200	1	-301	181 
+227.651	1.9233	0.5342	0.1602	3.7842	-24.5972	-12.2681	82.6501	-76.2616	103.2385	39.2200	0	-300	182 
+227.661	1.9233	0.5342	0.1602	3.7842	-24.5972	-12.2681	83.1610	-76.2067	102.8101	39.2500	0	-300	183 
+227.661	1.9233	0.5342	0.1602	3.7842	-24.5972	-12.2681	83.6609	-76.1572	102.3926	39.2500	0	-300	183 
+227.661	1.9355	0.5396	0.1436	3.0518	-15.6860	-6.7749	83.9740	-76.1298	102.1619	39.1300	1	-300	184 
+227.671	1.9355	0.5396	0.1436	3.0518	-15.6860	-6.7749	84.2816	-76.0968	101.9421	39.1300	0	-300	183 
+227.671	1.9355	0.5396	0.1436	3.0518	-15.6860	-6.7749	84.5892	-76.0693	101.7169	39.2200	0	-300	182 
+227.681	1.9355	0.5396	0.1436	3.0518	-15.6860	-6.7749	84.8914	-76.0364	101.4972	39.2200	0	-300	182 
+227.681	1.9355	0.5396	0.1436	3.0518	-15.6860	-6.7749	85.1935	-76.0089	101.2775	39.2200	0	-301	182 
+227.697	1.9355	0.5396	0.1436	3.0518	-15.6860	-6.7749	85.4956	-75.9760	101.0577	39.1500	0	-301	182 
+227.697	1.9355	0.5396	0.1436	3.0518	-15.6860	-6.7749	85.7922	-75.9485	100.8435	39.1500	0	-302	183 
+227.707	1.9355	0.5396	0.1436	3.0518	-15.6860	-6.7749	86.0889	-75.9155	100.6293	39.1600	0	-301	183 
+227.707	1.9458	0.5371	0.1382	2.3804	-9.0332	-2.2583	86.2427	-75.9045	100.5579	39.1600	0	-300	184 
+227.707	1.9458	0.5371	0.1382	2.3804	-9.0332	-2.2583	86.3965	-75.8936	100.4865	39.1500	0	-299	183 
+227.717	1.9458	0.5371	0.1382	2.3804	-9.0332	-2.2583	86.5503	-75.8826	100.4150	39.1500	0	-298	182 
+227.717	1.9458	0.5371	0.1382	2.3804	-9.0332	-2.2583	86.7041	-75.8716	100.3436	39.1600	0	-298	182 
+227.727	1.9458	0.5371	0.1382	2.3804	-9.0332	-2.2583	86.8579	-75.8606	100.2722	39.1600	0	-298	182 
+227.727	1.9458	0.5371	0.1382	2.3804	-9.0332	-2.2583	87.0062	-75.8496	100.2008	39.1700	0	-298	182 
+227.737	1.9458	0.5371	0.1382	2.3804	-9.0332	-2.2583	87.1600	-75.8386	100.1294	39.1700	0	-298	182 
+227.737	1.9458	0.5371	0.1382	2.3804	-9.0332	-2.2583	87.3083	-75.8276	100.0635	39.1800	0	-299	182 
+227.747	1.9536	0.5303	0.1406	1.8921	-5.6152	0.3052	87.3907	-75.8276	100.0635	39.1800	0	-299	182 
+227.747	1.9536	0.5303	0.1406	1.8921	-5.6152	0.3052	87.4677	-75.8276	100.0690	39.1800	0	-299	182 
+227.747	1.9536	0.5303	0.1406	1.8921	-5.6152	0.3052	87.5446	-75.8331	100.0690	39.2300	0	-299	182 
+227.757	1.9536	0.5303	0.1406	1.8921	-5.6152	0.3052	87.6215	-75.8331	100.0745	39.2300	1	-300	183 
+227.757	1.9536	0.5303	0.1406	1.8921	-5.6152	0.3052	87.6984	-75.8331	100.0745	39.2500	2	-300	183 
+227.767	1.9536	0.5303	0.1406	1.8921	-5.6152	0.3052	87.7753	-75.8331	100.0745	39.2500	2	-300	184 
+227.767	1.9536	0.5303	0.1406	1.8921	-5.6152	0.3052	87.8522	-75.8386	100.0800	39.2100	2	-300	184 
+227.777	1.9536	0.5303	0.1406	1.8921	-5.6152	0.3052	87.9236	-75.8386	100.0854	39.2100	2	-301	184 
+227.777	1.9614	0.5273	0.1318	1.7090	-5.5542	1.0376	88.0005	-75.8441	100.0854	39.1300	2	-301	184 
+227.777	1.9614	0.5273	0.1318	1.7090	-5.5542	1.0376	88.0774	-75.8496	100.0854	39.1300	1	-301	184 
+227.787	1.9614	0.5273	0.1318	1.7090	-5.5542	1.0376	88.1543	-75.8551	100.0854	39.2300	1	-301	184 
+227.787	1.9614	0.5273	0.1318	1.7090	-5.5542	1.0376	88.2312	-75.8606	100.0854	39.2300	1	-301	184 
+227.797	1.9614	0.5273	0.1318	1.7090	-5.5542	1.0376	88.3081	-75.8661	100.0854	39.2300	1	-301	185 
+227.797	1.9614	0.5273	0.1318	1.7090	-5.5542	1.0376	88.3850	-75.8716	100.0909	39.1700	1	-300	186 
+227.807	1.9614	0.5273	0.1318	1.7090	-5.5542	1.0376	88.4619	-75.8771	100.0909	39.1700	2	-299	186 
+227.807	1.9614	0.5273	0.1318	1.7090	-5.5542	1.0376	88.5333	-75.8771	100.0964	39.2200	2	-298	187 
+227.817	1.9619	0.5308	0.1157	2.2583	-7.7515	0.4272	88.6652	-75.8826	100.0470	39.2200	1	-298	188 
+227.817	1.9619	0.5308	0.1157	2.2583	-7.7515	0.4272	88.7915	-75.8826	99.9976	39.1900	2	-298	187 
+227.817	1.9619	0.5308	0.1157	2.2583	-7.7515	0.4272	88.9178	-75.8826	99.9481	39.1900	2	-298	187 
+227.827	1.9619	0.5308	0.1157	2.2583	-7.7515	0.4272	89.0442	-75.8881	99.9042	39.1800	1	-298	187 
+227.827	1.9619	0.5308	0.1157	2.2583	-7.7515	0.4272	89.1705	-75.8881	99.8547	39.1800	1	-299	188 
+227.837	1.9619	0.5308	0.1157	2.2583	-7.7515	0.4272	89.2914	-75.8881	99.8108	39.2500	1	-299	187 
+227.837	1.9619	0.5308	0.1157	2.2583	-7.7515	0.4272	89.4177	-75.8881	99.7614	39.2500	1	-299	186 
+227.847	1.9482	0.5376	0.0913	3.4180	-10.5591	-1.0986	89.6100	-75.8826	99.6460	39.2500	1	-299	186 
+227.847	1.9482	0.5376	0.0913	3.4180	-10.5591	-1.0986	89.8077	-75.8771	99.5361	39.2400	2	-299	186 
+227.857	1.9482	0.5376	0.0913	3.4180	-10.5591	-1.0986	90.0000	-75.8661	99.4208	39.2400	2	-300	186 
+227.857	1.9482	0.5376	0.0913	3.4180	-10.5591	-1.0986	90.1923	-75.8606	99.3109	39.2400	3	-300	186 
+227.857	1.9482	0.5376	0.0913	3.4180	-10.5591	-1.0986	90.3790	-75.8551	99.2010	39.2400	2	-300	186 
+227.867	1.9482	0.5376	0.0913	3.4180	-10.5591	-1.0986	90.5713	-75.8441	99.0912	39.1500	2	-300	186 
+227.867	1.9482	0.5376	0.0913	3.4180	-10.5591	-1.0986	90.7581	-75.8386	98.9813	39.1500	2	-300	186 
+227.877	1.9482	0.5376	0.0913	3.4180	-10.5591	-1.0986	90.9503	-75.8276	98.8715	39.1800	2	-300	187 
+227.877	1.9385	0.5474	0.0625	4.5776	-13.1226	-2.8687	91.2030	-75.8112	98.7012	39.1800	3	-301	187 
+227.887	1.9385	0.5474	0.0625	4.5776	-13.1226	-2.8687	91.4502	-75.7892	98.5309	39.2700	4	-302	188 
+227.887	1.9385	0.5474	0.0625	4.5776	-13.1226	-2.8687	91.7029	-75.7727	98.3661	39.2700	5	-302	188 
+227.887	1.9385	0.5474	0.0625	4.5776	-13.1226	-2.8687	91.9501	-75.7507	98.2013	39.2200	5	-302	187 
+227.904	1.9385	0.5474	0.0625	4.5776	-13.1226	-2.8687	92.1973	-75.7343	98.0365	39.2200	4	-302	187 
+227.904	1.9385	0.5474	0.0625	4.5776	-13.1226	-2.8687	92.4445	-75.7123	97.8717	39.2200	4	-301	187 
+227.914	1.9385	0.5474	0.0625	4.5776	-13.1226	-2.8687	92.6862	-75.6958	97.7069	39.1900	3	-301	187 
+227.914	1.9385	0.5474	0.0625	4.5776	-13.1226	-2.8687	92.9333	-75.6738	97.5476	39.1900	3	-301	186 
+227.924	1.9380	0.5557	0.0371	5.0049	-14.7705	-4.0283	93.2135	-75.6464	97.3444	39.2100	4	-301	186 
+227.924	1.9380	0.5557	0.0371	5.0049	-14.7705	-4.0283	93.4937	-75.6189	97.1466	39.2100	5	-301	187 
+227.934	1.9380	0.5557	0.0371	5.0049	-14.7705	-4.0283	93.7738	-75.5914	96.9489	39.1800	5	-301	187 
+227.934	1.9380	0.5557	0.0371	5.0049	-14.7705	-4.0283	94.0485	-75.5640	96.7566	39.1800	5	-302	188 
+227.934	1.9380	0.5557	0.0371	5.0049	-14.7705	-4.0283	94.3231	-75.5310	96.5588	39.1900	5	-302	187 
+227.944	1.9380	0.5557	0.0371	5.0049	-14.7705	-4.0283	94.5978	-75.5035	96.3666	39.1900	5	-302	187 
+227.944	1.9380	0.5557	0.0371	5.0049	-14.7705	-4.0283	94.8724	-75.4761	96.1743	39.2300	5	-302	187 
+227.954	1.9380	0.5557	0.0371	5.0049	-14.7705	-4.0283	95.1416	-75.4486	95.9875	39.2300	4	-302	187 
+227.954	1.9355	0.5581	0.0190	4.3945	-14.8926	-4.2725	95.4163	-75.4156	95.7898	39.2300	4	-302	187 
+227.964	1.9355	0.5581	0.0190	4.3945	-14.8926	-4.2725	95.6854	-75.3827	95.5975	39.2300	4	-302	187 
+227.964	1.9355	0.5581	0.0190	4.3945	-14.8926	-4.2725	95.9546	-75.3552	95.4053	39.2300	5	-301	187 
+227.974	1.9355	0.5581	0.0190	4.3945	-14.8926	-4.2725	96.2183	-75.3223	95.2130	39.2400	5	-301	187 
+227.974	1.9355	0.5581	0.0190	4.3945	-14.8926	-4.2725	96.4874	-75.2893	95.0262	39.2400	5	-300	187 
+227.974	1.9355	0.5581	0.0190	4.3945	-14.8926	-4.2725	96.7511	-75.2563	94.8395	39.1600	5	-299	187 
+227.984	1.9355	0.5581	0.0190	4.3945	-14.8926	-4.2725	97.0093	-75.2234	94.6527	39.1600	6	-300	188 
+227.984	1.9355	0.5581	0.0190	4.3945	-14.8926	-4.2725	97.2729	-75.1959	94.4714	39.2400	7	-301	189 
+227.994	1.9399	0.5576	0.0073	2.8687	-14.2212	-3.9673	97.5146	-75.1630	94.2957	39.2400	7	-300	189 
+227.994	1.9399	0.5576	0.0073	2.8687	-14.2212	-3.9673	97.7563	-75.1300	94.1254	39.2100	7	-300	189 
+228.004	1.9399	0.5576	0.0073	2.8687	-14.2212	-3.9673	97.9926	-75.1025	93.9551	39.2100	6	-301	190 
+228.004	1.9399	0.5576	0.0073	2.8687	-14.2212	-3.9673	98.2343	-75.0696	93.7848	39.2100	6	-301	191 
+228.004	1.9399	0.5576	0.0073	2.8687	-14.2212	-3.9673	98.4705	-75.0366	93.6145	39.2200	6	-301	191 
+228.014	1.9399	0.5576	0.0073	2.8687	-14.2212	-3.9673	98.7012	-75.0092	93.4497	39.2200	6	-301	190 
+228.014	1.9399	0.5576	0.0073	2.8687	-14.2212	-3.9673	98.9374	-74.9762	93.2849	39.2400	6	-302	189 
+228.024	1.9399	0.5576	0.0073	2.8687	-14.2212	-3.9673	99.1681	-74.9432	93.1201	39.2400	6	-303	188 
+228.024	1.9404	0.5586	-0.0015	1.0986	-13.2446	-3.2959	99.3768	-74.9158	92.9718	39.2100	7	-303	188 
+228.034	1.9404	0.5586	-0.0015	1.0986	-13.2446	-3.2959	99.5801	-74.8883	92.8235	39.2100	7	-303	188 
+228.034	1.9404	0.5586	-0.0015	1.0986	-13.2446	-3.2959	99.7888	-74.8608	92.6752	39.2000	7	-302	188 
+228.044	1.9404	0.5586	-0.0015	1.0986	-13.2446	-3.2959	99.9921	-74.8334	92.5269	39.2000	7	-302	188 
+228.044	1.9404	0.5586	-0.0015	1.0986	-13.2446	-3.2959	100.1953	-74.8059	92.3840	39.2100	6	-302	188 
+228.044	1.9404	0.5586	-0.0015	1.0986	-13.2446	-3.2959	100.3931	-74.7784	92.2412	39.2100	6	-302	188 
+228.054	1.9404	0.5586	-0.0015	1.0986	-13.2446	-3.2959	100.5963	-74.7455	92.0984	39.2100	6	-302	188 
+228.054	1.9404	0.5586	-0.0015	1.0986	-13.2446	-3.2959	100.7941	-74.7180	91.9556	39.2200	6	-303	187 
+228.064	1.9409	0.5591	-0.0127	-0.1221	-11.6577	-2.5024	100.9644	-74.6960	91.8347	39.2200	6	-303	188 
+228.064	1.9409	0.5591	-0.0127	-0.1221	-11.6577	-2.5024	101.1292	-74.6741	91.7194	39.2100	6	-303	188 
+228.074	1.9409	0.5591	-0.0127	-0.1221	-11.6577	-2.5024	101.2994	-74.6466	91.6040	39.2100	6	-303	188 
+228.074	1.9409	0.5591	-0.0127	-0.1221	-11.6577	-2.5024	101.4642	-74.6246	91.4886	39.1600	7	-303	189 
+228.084	1.9409	0.5591	-0.0127	-0.1221	-11.6577	-2.5024	101.6290	-74.6027	91.3733	39.1600	7	-302	188 
+228.084	1.9409	0.5591	-0.0127	-0.1221	-11.6577	-2.5024	101.7938	-74.5752	91.2634	39.2300	8	-302	187 
+228.084	1.9409	0.5591	-0.0127	-0.1221	-11.6577	-2.5024	101.9586	-74.5532	91.1481	39.2300	8	-302	186 
+228.098	1.9409	0.5591	-0.0127	-0.1221	-11.6577	-2.5024	102.1179	-74.5313	91.0327	39.2400	8	-302	186 
+228.098	1.9321	0.5615	-0.0210	-0.6714	-9.8267	-1.9531	102.2498	-74.5093	90.9503	39.2400	8	-302	185 
+228.108	1.9321	0.5615	-0.0210	-0.6714	-9.8267	-1.9531	102.3816	-74.4873	90.8679	39.1900	8	-302	186 
+228.108	1.9321	0.5615	-0.0210	-0.6714	-9.8267	-1.9531	102.5079	-74.4708	90.7910	39.1900	7	-302	186 
+228.118	1.9321	0.5615	-0.0210	-0.6714	-9.8267	-1.9531	102.6343	-74.4489	90.7086	39.1900	8	-301	186 
+228.118	1.9321	0.5615	-0.0210	-0.6714	-9.8267	-1.9531	102.7661	-74.4324	90.6262	39.2100	8	-300	187 
+228.118	1.9321	0.5615	-0.0210	-0.6714	-9.8267	-1.9531	102.8925	-74.4104	90.5493	39.2100	8	-299	187 
+228.128	1.9321	0.5615	-0.0210	-0.6714	-9.8267	-1.9531	103.0188	-74.3884	90.4724	39.1900	8	-298	187 
+228.128	1.9321	0.5615	-0.0210	-0.6714	-9.8267	-1.9531	103.1451	-74.3719	90.3955	39.1900	7	-298	187 
+228.138	1.9282	0.5659	-0.0317	-0.7935	-8.1787	-1.4648	103.2440	-74.3555	90.3406	39.2500	6	-299	187 
+228.138	1.9282	0.5659	-0.0317	-0.7935	-8.1787	-1.4648	103.3429	-74.3390	90.2911	39.2500	7	-299	187 
+228.148	1.9282	0.5659	-0.0317	-0.7935	-8.1787	-1.4648	103.4418	-74.3225	90.2417	39.2600	7	-299	187 
+228.148	1.9282	0.5659	-0.0317	-0.7935	-8.1787	-1.4648	103.5406	-74.3060	90.1868	39.2600	7	-299	186 
+228.158	1.9282	0.5659	-0.0317	-0.7935	-8.1787	-1.4648	103.6395	-74.2896	90.1373	39.1800	7	-299	186 
+228.158	1.9282	0.5659	-0.0317	-0.7935	-8.1787	-1.4648	103.7384	-74.2731	90.0879	39.1800	7	-300	187 
+228.158	1.9282	0.5659	-0.0317	-0.7935	-8.1787	-1.4648	103.8373	-74.2566	90.0385	39.1800	7	-300	187 
+228.168	1.9282	0.5659	-0.0317	-0.7935	-8.1787	-1.4648	103.9307	-74.2401	89.9890	39.2100	6	-300	188 
+228.168	1.9341	0.5654	-0.0376	-0.6104	-6.3477	-0.7935	104.0021	-74.2291	89.9670	39.2100	6	-300	189 
+228.178	1.9341	0.5654	-0.0376	-0.6104	-6.3477	-0.7935	104.0735	-74.2181	89.9451	39.1900	7	-300	189 
+228.178	1.9341	0.5654	-0.0376	-0.6104	-6.3477	-0.7935	104.1449	-74.2072	89.9231	39.1900	7	-300	189 
+228.188	1.9341	0.5654	-0.0376	-0.6104	-6.3477	-0.7935	104.2163	-74.1962	89.9066	39.1500	7	-300	189 
+228.188	1.9341	0.5654	-0.0376	-0.6104	-6.3477	-0.7935	104.2822	-74.1852	89.8846	39.1500	7	-300	190 
+228.198	1.9341	0.5654	-0.0376	-0.6104	-6.3477	-0.7935	104.3536	-74.1742	89.8627	39.1100	7	-300	190 
+228.198	1.9341	0.5654	-0.0376	-0.6104	-6.3477	-0.7935	104.4250	-74.1632	89.8462	39.1100	7	-300	189 
+228.198	1.9341	0.5654	-0.0376	-0.6104	-6.3477	-0.7935	104.4910	-74.1522	89.8242	39.2000	7	-300	189 
+228.208	1.9248	0.5630	-0.0327	-0.4272	-4.6997	-0.1221	104.5349	-74.1467	89.8297	39.2000	7	-300	188 
+228.208	1.9248	0.5630	-0.0327	-0.4272	-4.6997	-0.1221	104.5789	-74.1412	89.8407	39.2000	7	-300	187 
+228.218	1.9248	0.5630	-0.0327	-0.4272	-4.6997	-0.1221	104.6228	-74.1357	89.8462	39.2600	6	-300	186 
+228.218	1.9248	0.5630	-0.0327	-0.4272	-4.6997	-0.1221	104.6613	-74.1302	89.8517	39.2600	6	-300	185 
+228.228	1.9248	0.5630	-0.0327	-0.4272	-4.6997	-0.1221	104.7052	-74.1248	89.8572	39.1800	6	-299	185 
+228.228	1.9248	0.5630	-0.0327	-0.4272	-4.6997	-0.1221	104.7491	-74.1193	89.8627	39.1800	6	-300	185 
+228.228	1.9248	0.5630	-0.0327	-0.4272	-4.6997	-0.1221	104.7876	-74.1138	89.8682	39.2700	7	-300	185 
+228.238	1.9248	0.5630	-0.0327	-0.4272	-4.6997	-0.1221	104.8315	-74.1083	89.8737	39.2700	7	-301	186 
+228.238	1.9326	0.5620	-0.0371	-0.0610	-3.2959	0.3662	104.8535	-74.1083	89.9011	39.2000	7	-301	187 
+228.248	1.9326	0.5620	-0.0371	-0.0610	-3.2959	0.3662	104.8810	-74.1028	89.9286	39.2000	7	-300	188 
+228.248	1.9326	0.5620	-0.0371	-0.0610	-3.2959	0.3662	104.9030	-74.1028	89.9615	39.2200	6	-299	188 
+228.258	1.9326	0.5620	-0.0371	-0.0610	-3.2959	0.3662	104.9249	-74.1028	89.9890	39.2200	7	-299	189 
+228.258	1.9326	0.5620	-0.0371	-0.0610	-3.2959	0.3662	104.9524	-74.1028	90.0165	39.1600	7	-299	190 
+228.268	1.9326	0.5620	-0.0371	-0.0610	-3.2959	0.3662	104.9744	-74.1028	90.0439	39.1600	7	-299	191 
+228.268	1.9326	0.5620	-0.0371	-0.0610	-3.2959	0.3662	104.9963	-74.0973	90.0769	39.1600	7	-299	192 
+228.268	1.9326	0.5620	-0.0371	-0.0610	-3.2959	0.3662	105.0183	-74.0973	90.1044	39.2100	7	-300	191 
+228.278	1.9424	0.5581	-0.0347	0.7324	-1.7090	0.9155	105.0238	-74.1028	90.1593	39.2100	6	-300	191 
+228.278	1.9424	0.5581	-0.0347	0.7324	-1.7090	0.9155	105.0238	-74.1083	90.2087	39.2000	5	-300	191 
+228.288	1.9424	0.5581	-0.0347	0.7324	-1.7090	0.9155	105.0293	-74.1083	90.2637	39.2000	5	-300	192 
+228.288	1.9424	0.5581	-0.0347	0.7324	-1.7090	0.9155	105.0293	-74.1138	90.3186	39.2300	5	-299	193 
+228.300	1.9424	0.5581	-0.0347	0.7324	-1.7090	0.9155	105.0348	-74.1193	90.3735	39.2300	6	-299	193 
+228.300	1.9424	0.5581	-0.0347	0.7324	-1.7090	0.9155	105.0348	-74.1248	90.4285	39.2600	6	-300	193 
+228.310	1.9424	0.5581	-0.0347	0.7324	-1.7090	0.9155	105.0403	-74.1248	90.4834	39.2600	6	-300	193 
+228.310	1.9424	0.5581	-0.0347	0.7324	-1.7090	0.9155	105.0403	-74.1302	90.5328	39.1800	7	-300	193 
+228.310	1.9360	0.5596	-0.0396	1.5259	-0.7324	1.0376	105.0348	-74.1357	90.6042	39.1800	8	-300	192 
+228.320	1.9360	0.5596	-0.0396	1.5259	-0.7324	1.0376	105.0238	-74.1412	90.6702	39.1800	7	-300	191 
+228.320	1.9360	0.5596	-0.0396	1.5259	-0.7324	1.0376	105.0183	-74.1467	90.7416	39.2000	6	-300	191 
+228.330	1.9360	0.5596	-0.0396	1.5259	-0.7324	1.0376	105.0073	-74.1522	90.8075	39.2000	6	-300	191 
+228.330	1.9360	0.5596	-0.0396	1.5259	-0.7324	1.0376	105.0018	-74.1577	90.8734	39.2400	6	-299	191 
+228.340	1.9360	0.5596	-0.0396	1.5259	-0.7324	1.0376	104.9908	-74.1632	90.9393	39.2400	5	-300	192 
+228.340	1.9360	0.5596	-0.0396	1.5259	-0.7324	1.0376	104.9854	-74.1687	91.0107	39.2000	5	-300	193 
+228.340	1.9360	0.5596	-0.0396	1.5259	-0.7324	1.0376	104.9744	-74.1742	91.0767	39.2000	6	-299	194 
+228.350	1.9414	0.5630	-0.0537	2.1973	-1.3428	0.4883	104.9854	-74.1742	91.1371	39.1900	6	-299	194 
+228.350	1.9414	0.5630	-0.0537	2.1973	-1.3428	0.4883	104.9908	-74.1742	91.1920	39.1900	7	-300	193 
+228.360	1.9414	0.5630	-0.0537	2.1973	-1.3428	0.4883	104.9963	-74.1797	91.2469	39.2000	7	-300	192 
+228.360	1.9414	0.5630	-0.0537	2.1973	-1.3428	0.4883	105.0018	-74.1797	91.2964	39.2000	7	-300	192 
+228.370	1.9414	0.5630	-0.0537	2.1973	-1.3428	0.4883	105.0128	-74.1797	91.3513	39.2000	6	-300	192 
+228.370	1.9414	0.5630	-0.0537	2.1973	-1.3428	0.4883	105.0183	-74.1797	91.4063	39.2100	6	-301	191 
+228.380	1.9414	0.5630	-0.0537	2.1973	-1.3428	0.4883	105.0238	-74.1797	91.4612	39.2100	5	-302	190 
+228.380	1.9390	0.5659	-0.0635	2.5635	-2.8687	-0.1221	105.0568	-74.1797	91.4886	39.2300	5	-300	191 
+228.380	1.9390	0.5659	-0.0635	2.5635	-2.8687	-0.1221	105.0897	-74.1742	91.5161	39.2300	5	-299	191 
+228.390	1.9390	0.5659	-0.0635	2.5635	-2.8687	-0.1221	105.1282	-74.1687	91.5436	39.2200	5	-299	191 
+228.390	1.9390	0.5659	-0.0635	2.5635	-2.8687	-0.1221	105.1611	-74.1632	91.5710	39.2200	5	-299	190 
+228.400	1.9390	0.5659	-0.0635	2.5635	-2.8687	-0.1221	105.1941	-74.1632	91.5930	39.1900	5	-300	190 
+228.400	1.9390	0.5659	-0.0635	2.5635	-2.8687	-0.1221	105.2271	-74.1577	91.6205	39.1900	5	-300	190 
+228.410	1.9390	0.5659	-0.0635	2.5635	-2.8687	-0.1221	105.2600	-74.1522	91.6479	39.1800	5	-300	191 
+228.410	1.9390	0.5659	-0.0635	2.5635	-2.8687	-0.1221	105.2930	-74.1467	91.6754	39.1800	5	-300	191 
+228.420	1.9307	0.5688	-0.0757	2.2583	-4.8218	-0.7324	105.3589	-74.1357	91.6644	39.2100	6	-299	190 
+228.420	1.9307	0.5688	-0.0757	2.2583	-4.8218	-0.7324	105.4248	-74.1248	91.6589	39.2100	6	-299	190 
+228.420	1.9307	0.5688	-0.0757	2.2583	-4.8218	-0.7324	105.4852	-74.1138	91.6534	39.2100	7	-299	190 
+228.430	1.9307	0.5688	-0.0757	2.2583	-4.8218	-0.7324	105.5511	-74.1083	91.6425	39.2200	7	-300	190 
+228.430	1.9307	0.5688	-0.0757	2.2583	-4.8218	-0.7324	105.6116	-74.0973	91.6370	39.2200	7	-299	190 
+228.440	1.9307	0.5688	-0.0757	2.2583	-4.8218	-0.7324	105.6775	-74.0863	91.6260	39.2500	7	-299	190 
+228.440	1.9307	0.5688	-0.0757	2.2583	-4.8218	-0.7324	105.7434	-74.0753	91.6205	39.2500	7	-299	189

+ 9 - 0
Matlab导入记录文件/DataPlot.m

@@ -0,0 +1,9 @@
+
+newData = importdata('Data200320042405.tsv', '\t', 2);  %请先将文件拷贝到此文件目录,并将Data200320042405.tsv替换成记录保存的文件名
+data=newData.data;
+
+subplot(2,2,1);plot(data(:,1),data(:,2:4));grid on;xlabel('时间/s');ylabel('加速度/g');title('加速度曲线');
+subplot(2,2,2);plot(data(:,1),data(:,5:7));grid on;xlabel('时间/s');ylabel('角速度/°/s');title('角速度曲线');
+subplot(2,2,3);plot(data(:,1),data(:,8:10));grid on;xlabel('时间/s');ylabel('角度/°');title('角度曲线');
+subplot(2,2,4);plot(data(:,1),data(:,11));grid on;xlabel('时间/s');ylabel('温度/°');title('温度曲线');
+