diff --git a/GNSSLogger/app/app.iml b/GNSSLogger/app/app.iml
index af54888..71d78db 100644
--- a/GNSSLogger/app/app.iml
+++ b/GNSSLogger/app/app.iml
@@ -8,12 +8,12 @@
-
+
-
-
+
+
- generateDebugSources
+ generateReleaseSources
@@ -24,40 +24,33 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -84,13 +77,9 @@
+
-
-
-
-
-
@@ -104,11 +93,18 @@
+
+
+
+
+
+
+
@@ -120,29 +116,18 @@
-
-
-
-
-
-
-
-
+
-
-
+
-
-
-
-
+
\ No newline at end of file
diff --git a/GNSSLogger/build.gradle b/GNSSLogger/build.gradle
index a3330d4..74b2ab0 100644
--- a/GNSSLogger/build.gradle
+++ b/GNSSLogger/build.gradle
@@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:2.2.0'
+ classpath 'com.android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
diff --git a/GNSSLogger/local.properties b/GNSSLogger/local.properties
index fd43cc3..ba2792a 100644
--- a/GNSSLogger/local.properties
+++ b/GNSSLogger/local.properties
@@ -1,10 +1,11 @@
## This file is automatically generated by Android Studio.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
-# This file should *NOT* be checked into Version Control Systems,
+# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
-sdk.dir=/media/build/master/prebuilts/fullsdk/linux
\ No newline at end of file
+#Wed Mar 08 14:07:24 GMT 2017
+sdk.dir=C\:\\Utils\\Android\\sdk
diff --git a/opensource/CheckDataFilter.m b/ProcessGNSSMeas/CheckDataFilter.m
similarity index 100%
rename from opensource/CheckDataFilter.m
rename to ProcessGNSSMeas/CheckDataFilter.m
diff --git a/opensource/CheckGpsEphInputs.m b/ProcessGNSSMeas/CheckGpsEphInputs.m
similarity index 100%
rename from opensource/CheckGpsEphInputs.m
rename to ProcessGNSSMeas/CheckGpsEphInputs.m
diff --git a/opensource/ClosestGpsEph.m b/ProcessGNSSMeas/ClosestGpsEph.m
similarity index 100%
rename from opensource/ClosestGpsEph.m
rename to ProcessGNSSMeas/ClosestGpsEph.m
diff --git a/opensource/CompareVersions.m b/ProcessGNSSMeas/CompareVersions.m
similarity index 100%
rename from opensource/CompareVersions.m
rename to ProcessGNSSMeas/CompareVersions.m
diff --git a/opensource/Contents.m b/ProcessGNSSMeas/Contents.m
similarity index 100%
rename from opensource/Contents.m
rename to ProcessGNSSMeas/Contents.m
diff --git a/opensource/DayOfYear.m b/ProcessGNSSMeas/DayOfYear.m
similarity index 100%
rename from opensource/DayOfYear.m
rename to ProcessGNSSMeas/DayOfYear.m
diff --git a/opensource/FlightTimeCorrection.m b/ProcessGNSSMeas/FlightTimeCorrection.m
similarity index 100%
rename from opensource/FlightTimeCorrection.m
rename to ProcessGNSSMeas/FlightTimeCorrection.m
diff --git a/opensource/GetNasaHourlyEphemeris.m b/ProcessGNSSMeas/GetNasaHourlyEphemeris.m
similarity index 100%
rename from opensource/GetNasaHourlyEphemeris.m
rename to ProcessGNSSMeas/GetNasaHourlyEphemeris.m
diff --git a/opensource/GnssThresholds.m b/ProcessGNSSMeas/GnssThresholds.m
similarity index 100%
rename from opensource/GnssThresholds.m
rename to ProcessGNSSMeas/GnssThresholds.m
diff --git a/opensource/Gps2Utc.m b/ProcessGNSSMeas/Gps2Utc.m
similarity index 97%
rename from opensource/Gps2Utc.m
rename to ProcessGNSSMeas/Gps2Utc.m
index e8cc6d7..703d6cd 100644
--- a/opensource/Gps2Utc.m
+++ b/ProcessGNSSMeas/Gps2Utc.m
@@ -1,155 +1,155 @@
-function [utcTime] = Gps2Utc(gpsTime,fctSeconds)
-% [utcTime] = Gps2Utc(gpsTime,[fctSeconds])
-% Convert GPS time (week & seconds), or Full Cycle Time (seconds) to UTC
-%
-% Input: gpsTime, [mx2] matrix [gpsWeek, gpsSeconds],
-% fctSeconds, [optional] Full Cycle Time (seconds)
-%
-% Outputs: utcTime, [mx6] matrix = [year,month,day,hours,minutes,seconds]
-%
-% If fctSeconds is provided, gpsTime is ignored
-%
-% Valid range of inputs:
-% gps times corresponding to 1980/6/1 <= time < 2100/1/1
-% i.e. [0,0] <= gpsTime < [6260, 432000]
-% 0 <= fctSeconds < 3786480000
-%
-% See also: Utc2Gps
-
-% Other functions needed: LeapSeconds.m
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-%Algorithm for handling leap seconds:
-% When a leap second happens, utc time stands still for one second, so
-% gps seconds get further ahead, so we subtract leapSecs to move from gps time
-%
-% 1) convert gpsTime to time = [yyyy,mm,dd,hh,mm,ss] (with no leap seconds)
-% 2) look up leap seconds for time: ls = LeapSeconds(time);
-% This is (usually) the correct leap second value. Unless:
-% If (utcTime=time) and (utcTime=time+ls) straddle a leap second
-% then we need to add 1 to ls
-% So, after step 2) ...
-% 3) convert gpsTime-ls to timeMLs
-% 4) look up leap seconds: ls1 = LeapSeconds(timeMLs);
-% 5) if ls1~=ls, convert (gpsTime-ls1) to UTC Time
-
-%% Check inputs
-if nargin<2 && size(gpsTime,2)~=2
- error('gpsTime must have two columns')
-end
-if nargin<2
- fctSeconds = gpsTime*[GpsConstants.WEEKSEC; 1];
-end
-
-%fct at 2100/1/1 00:00:00, not counting leap seconds:
-fct2100 = [6260, 432000]*[GpsConstants.WEEKSEC; 1];
-if any(fctSeconds<0) || any (fctSeconds >= fct2100)
- error('gpsTime must be in this range: [0,0] <= gpsTime < [6260, 432000]');
-end
-%% Finished checks
-
-%from now on work with fct
-%% Apply algorithm for handling leaps seconds
-% 1) convert gpsTime to time = [yyyy,mm,dd,hh,mm,ss] (with no leap seconds)
-time = Fct2Ymdhms(fctSeconds);
-% 2) look up leap seconds for time: ls = LeapSeconds(time);
-ls = LeapSeconds(time);
-% 3) convert gpsTime-ls to timeMLs
-timeMLs = Fct2Ymdhms(fctSeconds-ls);
-% 4) look up leap seconds: ls1 = LeapSeconds(timeMLs);
-ls1 = LeapSeconds(timeMLs);
-% 5) if ls1~=ls, convert (gpsTime-ls1) to UTC Time
-if all(ls1==ls)
- utcTime = timeMLs;
-else
- utcTime = Fct2Ymdhms(fctSeconds-ls1);
-end
-
-% NOTE:
-% Gps2Utc.m doesn't produce 23:59:60, at a leap second.
-% Instead, as the leap second occurs, the Gps2Utc.m sequence of
-% UTC hh:mm:ss is 23:59:59, 00:00:00, 00:00:00
-% and we keep it like that for code simplicity.
-% Here are a sequence of UTC and GPS times around a leap second:
-% formalUtcTimes = [1981 12 31 23 59 59; 1981 12 31 23 59 60; 1982 1 1 0 0 0];
-% gpsTimes = [103 431999; 103 432000; 103 432001];
-% >> Gps2Utc(gpsTimes)
-% ans =
-% 1981 12 31 23 59 59
-% 1982 1 1 0 0 0
-% 1982 1 1 0 0 0
-
-% If you want to change this you could check LeapSeconds.m to see if you're
-% exactly on the addition of a leap second, and then change the UTC format
-% to include the '60' seconds
-
-end %end of function Gps2Utc
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-function time = Fct2Ymdhms(fctSeconds)
-%Utility function for Gps2Utc
-%Convert GPS full cycle time to [yyyy,mm,dd,hh,mm,ss.s] format
-HOURSEC = 3600; MINSEC = 60;
-monthDays=[31,28,31,30,31,30,31,31,30,31,30,31];%days each month (not leap year)
-
-m=length(fctSeconds);
-days = floor(fctSeconds / GpsConstants.DAYSEC) + 6;%days since 1980/1/1
-years=zeros(m,1)+1980;
-%decrement days by a year at a time, until we have calculated the year:
-leap=ones(m,1); %1980 was a leap year
-while (any(days > (leap+365)))
- I = find(days > (leap+365) );
- days(I) = days(I) - (leap(I) + 365);
- years(I)=years(I)+1;
- leap(I) = (rem(years(I),4) == 0); % leap = 1 on a leap year, 0 otherwise
- % This works from 1901 till 2099, 2100 isn't a leap year (2000 is).
- % Calculate the year, ie time(1)
-end,
-time=zeros(m,6);%initialize matrix
-time(:,1)=years;
-
-%decrement days by a month at a time, until we have calculated the month
-% Calculate the month, ie time(:,2)
-% Loop through m:
-for i=1:m
- month = 1;
- if (rem(years(i),4) == 0) %This works from 1901 till 2099
- monthDays(2)=29; %Make February have 29 days in a leap year
- else
- monthDays(2)=28;
- end
- while (days(i) > monthDays(month))
- days(i) = days(i)-monthDays(month);
- month = month+1;
- end
- time(i,2)=month;
-end
-
-time(:,3) = days;
-
-sinceMidnightSeconds = rem(fctSeconds, GpsConstants.DAYSEC);
-time(:,4) = fix(sinceMidnightSeconds/HOURSEC);
-lastHourSeconds = rem(sinceMidnightSeconds, HOURSEC);
-time(:,5) = fix(lastHourSeconds/MINSEC);
-time(:,6) = rem(lastHourSeconds,MINSEC);
-
-end %end of function Fct2Ymdhms
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function [utcTime] = Gps2Utc(gpsTime,fctSeconds)
+% [utcTime] = Gps2Utc(gpsTime,[fctSeconds])
+% Convert GPS time (week & seconds), or Full Cycle Time (seconds) to UTC
+%
+% Input: gpsTime, [mx2] matrix [gpsWeek, gpsSeconds],
+% fctSeconds, [optional] Full Cycle Time (seconds)
+%
+% Outputs: utcTime, [mx6] matrix = [year,month,day,hours,minutes,seconds]
+%
+% If fctSeconds is provided, gpsTime is ignored
+%
+% Valid range of inputs:
+% gps times corresponding to 1980/6/1 <= time < 2100/1/1
+% i.e. [0,0] <= gpsTime < [6260, 432000]
+% 0 <= fctSeconds < 3786480000
+%
+% See also: Utc2Gps
+
+% Other functions needed: LeapSeconds.m
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+%Algorithm for handling leap seconds:
+% When a leap second happens, utc time stands still for one second, so
+% gps seconds get further ahead, so we subtract leapSecs to move from gps time
+%
+% 1) convert gpsTime to time = [yyyy,mm,dd,hh,mm,ss] (with no leap seconds)
+% 2) look up leap seconds for time: ls = LeapSeconds(time);
+% This is (usually) the correct leap second value. Unless:
+% If (utcTime=time) and (utcTime=time+ls) straddle a leap second
+% then we need to add 1 to ls
+% So, after step 2) ...
+% 3) convert gpsTime-ls to timeMLs
+% 4) look up leap seconds: ls1 = LeapSeconds(timeMLs);
+% 5) if ls1~=ls, convert (gpsTime-ls1) to UTC Time
+
+%% Check inputs
+if nargin<2 && size(gpsTime,2)~=2
+ error('gpsTime must have two columns')
+end
+if nargin<2
+ fctSeconds = gpsTime*[GpsConstants.WEEKSEC; 1];
+end
+
+%fct at 2100/1/1 00:00:00, not counting leap seconds:
+fct2100 = [6260, 432000]*[GpsConstants.WEEKSEC; 1];
+if any(fctSeconds<0) || any (fctSeconds >= fct2100)
+ error('gpsTime must be in this range: [0,0] <= gpsTime < [6260, 432000]');
+end
+%% Finished checks
+
+%from now on work with fct
+%% Apply algorithm for handling leaps seconds
+% 1) convert gpsTime to time = [yyyy,mm,dd,hh,mm,ss] (with no leap seconds)
+time = Fct2Ymdhms(fctSeconds);
+% 2) look up leap seconds for time: ls = LeapSeconds(time);
+ls = LeapSeconds(time);
+% 3) convert gpsTime-ls to timeMLs
+timeMLs = Fct2Ymdhms(fctSeconds-ls);
+% 4) look up leap seconds: ls1 = LeapSeconds(timeMLs);
+ls1 = LeapSeconds(timeMLs);
+% 5) if ls1~=ls, convert (gpsTime-ls1) to UTC Time
+if all(ls1==ls)
+ utcTime = timeMLs;
+else
+ utcTime = Fct2Ymdhms(fctSeconds-ls1);
+end
+
+% NOTE:
+% Gps2Utc.m doesn't produce 23:59:60, at a leap second.
+% Instead, as the leap second occurs, the Gps2Utc.m sequence of
+% UTC hh:mm:ss is 23:59:59, 00:00:00, 00:00:00
+% and we keep it like that for code simplicity.
+% Here are a sequence of UTC and GPS times around a leap second:
+% formalUtcTimes = [1981 12 31 23 59 59; 1981 12 31 23 59 60; 1982 1 1 0 0 0];
+% gpsTimes = [103 431999; 103 432000; 103 432001];
+% >> Gps2Utc(gpsTimes)
+% ans =
+% 1981 12 31 23 59 59
+% 1982 1 1 0 0 0
+% 1982 1 1 0 0 0
+
+% If you want to change this you could check LeapSeconds.m to see if you're
+% exactly on the addition of a leap second, and then change the UTC format
+% to include the '60' seconds
+
+end %end of function Gps2Utc
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+function time = Fct2Ymdhms(fctSeconds)
+%Utility function for Gps2Utc
+%Convert GPS full cycle time to [yyyy,mm,dd,hh,mm,ss.s] format
+HOURSEC = 3600; MINSEC = 60;
+monthDays=[31,28,31,30,31,30,31,31,30,31,30,31];%days each month (not leap year)
+
+m=length(fctSeconds);
+days = floor(fctSeconds / GpsConstants.DAYSEC) + 6;%days since 1980/1/1
+years=zeros(m,1)+1980;
+%decrement days by a year at a time, until we have calculated the year:
+leap=ones(m,1); %1980 was a leap year
+while (any(days > (leap+365)))
+ I = find(days > (leap+365) );
+ days(I) = days(I) - (leap(I) + 365);
+ years(I)=years(I)+1;
+ leap(I) = (rem(years(I),4) == 0); % leap = 1 on a leap year, 0 otherwise
+ % This works from 1901 till 2099, 2100 isn't a leap year (2000 is).
+ % Calculate the year, ie time(1)
+end,
+time=zeros(m,6);%initialize matrix
+time(:,1)=years;
+
+%decrement days by a month at a time, until we have calculated the month
+% Calculate the month, ie time(:,2)
+% Loop through m:
+for i=1:m
+ month = 1;
+ if (rem(years(i),4) == 0) %This works from 1901 till 2099
+ monthDays(2)=29; %Make February have 29 days in a leap year
+ else
+ monthDays(2)=28;
+ end
+ while (days(i) > monthDays(month))
+ days(i) = days(i)-monthDays(month);
+ month = month+1;
+ end
+ time(i,2)=month;
+end
+
+time(:,3) = days;
+
+sinceMidnightSeconds = rem(fctSeconds, GpsConstants.DAYSEC);
+time(:,4) = fix(sinceMidnightSeconds/HOURSEC);
+lastHourSeconds = rem(sinceMidnightSeconds, HOURSEC);
+time(:,5) = fix(lastHourSeconds/MINSEC);
+time(:,6) = rem(lastHourSeconds,MINSEC);
+
+end %end of function Fct2Ymdhms
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/opensource/GpsAdrResiduals.m b/ProcessGNSSMeas/GpsAdrResiduals.m
similarity index 100%
rename from opensource/GpsAdrResiduals.m
rename to ProcessGNSSMeas/GpsAdrResiduals.m
diff --git a/opensource/GpsConstants.m b/ProcessGNSSMeas/GpsConstants.m
similarity index 100%
rename from opensource/GpsConstants.m
rename to ProcessGNSSMeas/GpsConstants.m
diff --git a/opensource/GpsEph2Dtsv.m b/ProcessGNSSMeas/GpsEph2Dtsv.m
similarity index 97%
rename from opensource/GpsEph2Dtsv.m
rename to ProcessGNSSMeas/GpsEph2Dtsv.m
index 379aa05..c990ffa 100644
--- a/opensource/GpsEph2Dtsv.m
+++ b/ProcessGNSSMeas/GpsEph2Dtsv.m
@@ -1,89 +1,89 @@
-function [dtsvS] = GpsEph2Dtsv(gpsEph,tS)
-%[dtsvS] = GpsEph2Dtsv(gpsEph,tS)
-%
-% Calculate satellite clock bias
-% Inputs:
-% gpsEph = vector of GPS ephemeris structures defined in ReadRinexNav
-% tS GPS time of week (secs) at time of transmission, calculate this as:
-% tS = trx - PR/c,
-% where trx = time of reception (receiver clock)
-% PR = pseudorange
-%
-% tS may be a vector, gpsEph is a structure or vector of structures
-% If gpsEph is a vector then t must have the same number of rows as gpsEph
-% tS(i) is interpreted as being associated with gpsEph(i,:)
-% If gpsEph is a single structure then tS may be any length
-%
-% Outputs:
-% dtsvS = sat clock bias (seconds). GPS time = satellite time - dtsvS
-% length(dtsvS) = length(tS)
-%
-% See IS-GPS-200 and RTCM Paper 99-92 SC104-88 for details of data
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-%% Check size of inputs
-if min(size(tS))>1
- error('tS must be a vector or a scalar, not a matrix')
-end
-tS=tS(:)';%make t a row vector, to match [gpsEph.*] vectors below
-pt=length(tS);
-[p]=length(gpsEph);
-if (p>1 && pt~=p),
- error('If gpsEph is a vector tS must be a vector with #rows = length(gpsEph),\n')
-end
-%%
-%%Extract the necessary variables from gpsEph
-TGD = [gpsEph.TGD];
-Toc = [gpsEph.Toc];
-af2 = [gpsEph.af2];
-af1 = [gpsEph.af1];
-af0 = [gpsEph.af0];
-Delta_n = [gpsEph.Delta_n];
-M0 = [gpsEph.M0];
-e = [gpsEph.e];
-Asqrt = [gpsEph.Asqrt];
-Toe = [gpsEph.Toe];
-%%
-%%Calculate dependent variables ------------------------------------------------
-
-tk = tS - Toe; %time since time of applicability
-I = find(tk > 302400.0);
-if any(I), tk(I) = tk(I)-GpsConstants.WEEKSEC; end,
-I = find(tk < -302400.0);
-if (I), tk(I) = tk(I)+GpsConstants.WEEKSEC; end,
-
-A = Asqrt.^2; %semi-major axis of orbit
-n0=sqrt(GpsConstants.mu./(A.^3)); %Computed mean motion (rad/sec)
-n=n0+Delta_n; %Corrected Mean Motion
-Mk=M0+n.*tk; %Mean Anomaly
-Ek=Kepler(Mk,e); %Solve Kepler's equation for eccentric anomaly
-%%
-%%Calculate satellite clock bias (See ICD-GPS-200 20.3.3.3.3.1) ----------------
-dt = tS - Toc;
-I = find(dt > 302400.0);
-if any(I), dt(I) = dt(I)-GpsConstants.WEEKSEC; end,
-I = find(dt < -302400.0);
-if (I), dt(I) = dt(I)+GpsConstants.WEEKSEC; end,
-
-dtsvS = af0 + af1.*dt + af2.*(dt.^2) + ...
- GpsConstants.FREL.*e.*Asqrt.*sin(Ek) -TGD;
-
-end % end of function GpsEph2Dtsv
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function [dtsvS] = GpsEph2Dtsv(gpsEph,tS)
+%[dtsvS] = GpsEph2Dtsv(gpsEph,tS)
+%
+% Calculate satellite clock bias
+% Inputs:
+% gpsEph = vector of GPS ephemeris structures defined in ReadRinexNav
+% tS GPS time of week (secs) at time of transmission, calculate this as:
+% tS = trx - PR/c,
+% where trx = time of reception (receiver clock)
+% PR = pseudorange
+%
+% tS may be a vector, gpsEph is a structure or vector of structures
+% If gpsEph is a vector then t must have the same number of rows as gpsEph
+% tS(i) is interpreted as being associated with gpsEph(i,:)
+% If gpsEph is a single structure then tS may be any length
+%
+% Outputs:
+% dtsvS = sat clock bias (seconds). GPS time = satellite time - dtsvS
+% length(dtsvS) = length(tS)
+%
+% See IS-GPS-200 and RTCM Paper 99-92 SC104-88 for details of data
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+%% Check size of inputs
+if min(size(tS))>1
+ error('tS must be a vector or a scalar, not a matrix')
+end
+tS=tS(:)';%make t a row vector, to match [gpsEph.*] vectors below
+pt=length(tS);
+[p]=length(gpsEph);
+if (p>1 && pt~=p),
+ error('If gpsEph is a vector tS must be a vector with #rows = length(gpsEph),\n')
+end
+%%
+%%Extract the necessary variables from gpsEph
+TGD = [gpsEph.TGD];
+Toc = [gpsEph.Toc];
+af2 = [gpsEph.af2];
+af1 = [gpsEph.af1];
+af0 = [gpsEph.af0];
+Delta_n = [gpsEph.Delta_n];
+M0 = [gpsEph.M0];
+e = [gpsEph.e];
+Asqrt = [gpsEph.Asqrt];
+Toe = [gpsEph.Toe];
+%%
+%%Calculate dependent variables ------------------------------------------------
+
+tk = tS - Toe; %time since time of applicability
+I = find(tk > 302400.0);
+if any(I), tk(I) = tk(I)-GpsConstants.WEEKSEC; end,
+I = find(tk < -302400.0);
+if (I), tk(I) = tk(I)+GpsConstants.WEEKSEC; end,
+
+A = Asqrt.^2; %semi-major axis of orbit
+n0=sqrt(GpsConstants.mu./(A.^3)); %Computed mean motion (rad/sec)
+n=n0+Delta_n; %Corrected Mean Motion
+Mk=M0+n.*tk; %Mean Anomaly
+Ek=Kepler(Mk,e); %Solve Kepler's equation for eccentric anomaly
+%%
+%%Calculate satellite clock bias (See ICD-GPS-200 20.3.3.3.3.1) ----------------
+dt = tS - Toc;
+I = find(dt > 302400.0);
+if any(I), dt(I) = dt(I)-GpsConstants.WEEKSEC; end,
+I = find(dt < -302400.0);
+if (I), dt(I) = dt(I)+GpsConstants.WEEKSEC; end,
+
+dtsvS = af0 + af1.*dt + af2.*(dt.^2) + ...
+ GpsConstants.FREL.*e.*Asqrt.*sin(Ek) -TGD;
+
+end % end of function GpsEph2Dtsv
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/opensource/GpsEph2Pvt.m b/ProcessGNSSMeas/GpsEph2Pvt.m
similarity index 97%
rename from opensource/GpsEph2Pvt.m
rename to ProcessGNSSMeas/GpsEph2Pvt.m
index 563684a..e977350 100644
--- a/opensource/GpsEph2Pvt.m
+++ b/ProcessGNSSMeas/GpsEph2Pvt.m
@@ -1,66 +1,66 @@
-function [xM,dtsvS,vMps,dtsvSDot] = GpsEph2Pvt(gpsEph,gpsTime)
-%[xM,dtsvS,vMps,dtsvSDot] = GpsEph2Pvt(gpsEph,gpsTime)
-%
-% Calculate sv coordinates, in ECEF frame, sv clock bias, and sv velocity
-% Inputs:
-% gpsEph: vector of ephemeris structures, as defined in ReadRinexEph.m
-%
-% gpsTime = [gpsWeek, ttxSec]: GPS time at time of transmission, ttx
-% ttx = trx - PR/c - dtsvS, where trx is time of reception (receiver clock),
-% dtsvS is the satellite clock error (seconds), can be computed in advance
-% using eph2dtsv.m or iterating this function: gps time = sat time - dtsvS
-% gpsWeek, ttxSec must be vectors of length(gpsEph),
-%
-% outputs:
-% xM = [i,j,k] matrix of coordinates of satellites (ecef meters)
-% dtsvS = vector of satellite clock error (seconds)
-% vMps = [i,j,k] matrix of satellite velocity (ecef m/s)
-% dtsvSDot = vector of satellite clock error rate (seconds/second)
-% The row dimension of xM, dtsvS, vMps, dtsvSDot = length(gpsEph)
-%
-% xM and vMps are the satellite positions and velocities
-% at time ttxSec, in terms of ecef coords at the same time
-% Use FlightTimeCorrection.m to get xM & vMps in ecef coord at time of reception
-%
-% functions called: GpsEph2Xyz.m
-%
-% See IS-GPS-200 for details of data
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-vMps = []; dtsvSDot = [];
-
-[xM,dtsvS]=GpsEph2Xyz(gpsEph,gpsTime);
-if isempty(xM)
- return
-end
-
-%compute velocity from delta position & dtsvS at (t+0.5) - (t-0.5)
-%This is better than differentiating, because both the orbital and relativity
-%terms have nonlinearities that are not easily differentiable
-t1 = [gpsTime(:,1), gpsTime(:,2)+0.5]; %time + 0.5 seconds
-[xPlus,dtsvPlus] = GpsEph2Xyz(gpsEph,t1);
-t1 = [gpsTime(:,1), gpsTime(:,2)-0.5]; %time - 0.5 seconds
-[xMinus,dtsvMinus]= GpsEph2Xyz(gpsEph,t1);
-vMps = xPlus - xMinus;
-dtsvSDot = dtsvPlus - dtsvMinus;
-
-end %end of function GpsEph2Pvt
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
-
+function [xM,dtsvS,vMps,dtsvSDot] = GpsEph2Pvt(gpsEph,gpsTime)
+%[xM,dtsvS,vMps,dtsvSDot] = GpsEph2Pvt(gpsEph,gpsTime)
+%
+% Calculate sv coordinates, in ECEF frame, sv clock bias, and sv velocity
+% Inputs:
+% gpsEph: vector of ephemeris structures, as defined in ReadRinexEph.m
+%
+% gpsTime = [gpsWeek, ttxSec]: GPS time at time of transmission, ttx
+% ttx = trx - PR/c - dtsvS, where trx is time of reception (receiver clock),
+% dtsvS is the satellite clock error (seconds), can be computed in advance
+% using eph2dtsv.m or iterating this function: gps time = sat time - dtsvS
+% gpsWeek, ttxSec must be vectors of length(gpsEph),
+%
+% outputs:
+% xM = [i,j,k] matrix of coordinates of satellites (ecef meters)
+% dtsvS = vector of satellite clock error (seconds)
+% vMps = [i,j,k] matrix of satellite velocity (ecef m/s)
+% dtsvSDot = vector of satellite clock error rate (seconds/second)
+% The row dimension of xM, dtsvS, vMps, dtsvSDot = length(gpsEph)
+%
+% xM and vMps are the satellite positions and velocities
+% at time ttxSec, in terms of ecef coords at the same time
+% Use FlightTimeCorrection.m to get xM & vMps in ecef coord at time of reception
+%
+% functions called: GpsEph2Xyz.m
+%
+% See IS-GPS-200 for details of data
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+vMps = []; dtsvSDot = [];
+
+[xM,dtsvS]=GpsEph2Xyz(gpsEph,gpsTime);
+if isempty(xM)
+ return
+end
+
+%compute velocity from delta position & dtsvS at (t+0.5) - (t-0.5)
+%This is better than differentiating, because both the orbital and relativity
+%terms have nonlinearities that are not easily differentiable
+t1 = [gpsTime(:,1), gpsTime(:,2)+0.5]; %time + 0.5 seconds
+[xPlus,dtsvPlus] = GpsEph2Xyz(gpsEph,t1);
+t1 = [gpsTime(:,1), gpsTime(:,2)-0.5]; %time - 0.5 seconds
+[xMinus,dtsvMinus]= GpsEph2Xyz(gpsEph,t1);
+vMps = xPlus - xMinus;
+dtsvSDot = dtsvPlus - dtsvMinus;
+
+end %end of function GpsEph2Pvt
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
+
diff --git a/opensource/GpsEph2Xyz.m b/ProcessGNSSMeas/GpsEph2Xyz.m
similarity index 97%
rename from opensource/GpsEph2Xyz.m
rename to ProcessGNSSMeas/GpsEph2Xyz.m
index 31461d6..afedd87 100644
--- a/opensource/GpsEph2Xyz.m
+++ b/ProcessGNSSMeas/GpsEph2Xyz.m
@@ -1,152 +1,152 @@
-function [xyzM,dtsvS] = GpsEph2Xyz(gpsEph,gpsTime)
-%[xyzM,dtsvS] = GpsEph2Xyz(gpsEph,gpsTime)
-% Calculate sv coordinates, in ECEF frame, at ttx = gpsTime
-%
-% Inputs:
-% gpsEph: vector of GPS ephemeris structures, as defined in ReadRinexNav.m
-%
-% gpsTime = [gpsWeek, ttxSec]: GPS time at time of transmission, ttx
-% ttx = trx - PR/c - dtsvS, where trx is time of reception (receiver clock),
-% dtsvS is the satellite clock error (seconds), can be computed in advance
-% using Eph2Dtsv.m or iterating this function: gps time = sat time - dtsvS
-% gpsWeek, ttxSec must be vectors of length(gpsEph),
-%
-% outputs:
-% xyzM = [i,j,k] matrix of coordinates of satellites (ecef meters)
-% dtsvS = vector of satellite clock error (seconds)
-% The row dimension of xyzM, dtsvS = length(gpsEph)
-%
-% xyzM = sat positions at time ttxSec, in terms of ecef coords at the same time
-% Use FlightTimeCorrection.m to get xyzM & v in ecef coords at time of reception
-%
-% See IS-GPS-200 for details of data
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-xyzM=[]; dtsvS=[];
-
-[bOk,gpsEph,gpsWeek,ttxSec] = CheckGpsEphInputs(gpsEph,gpsTime);
-if ~bOk
- return
-end
-p=length(gpsEph);
-%Now we are done checking and manipulating the inputs
-% the time vectors: gpsWeek, ttxSec are the same length as gpsEph
-%-------------------------------------------------------------------------------
-
-%set fitIntervalSeconds
-fitIntervalHours = [gpsEph.Fit_interval]';
-%Rinex says "Zero if not known", so adjust for zeros
-fitIntervalHours(fitIntervalHours == 0) = 2;
-fitIntervalSeconds = fitIntervalHours*3600;
-
-%Extract variables from gpsEph, into column vectors
-%orbit variable names follow RINEX 2.1 Table A4
-%clock variables af0, af1, af2 follow IS GPS 200
-TGD = [gpsEph.TGD]';
-Toc = [gpsEph.Toc]';
-af2 = [gpsEph.af2]';
-af1 = [gpsEph.af1]';
-af0 = [gpsEph.af0]';
-Crs = [gpsEph.Crs]';
-Delta_n = [gpsEph.Delta_n]';
-M0 = [gpsEph.M0]';
-Cuc = [gpsEph.Cuc]';
-e = [gpsEph.e]';
-Cus = [gpsEph.Cus]';
-Asqrt = [gpsEph.Asqrt]';
-Toe = [gpsEph.Toe]';
-Cic = [gpsEph.Cic]';
-OMEGA = [gpsEph.OMEGA]';
-Cis = [gpsEph.Cis]';
-i0 = [gpsEph.i0]';
-Crc = [gpsEph.Crc]';
-omega = [gpsEph.omega]';
-OMEGA_DOT=[gpsEph.OMEGA_DOT]';
-IDOT = [gpsEph.IDOT]';
-ephGpsWeek = [gpsEph.GPS_Week]';
-
-%Calculate dependent variables -------------------------------------------------
-
-%Time since time of applicability accounting for weeks and therefore rollovers
-%subtract weeks first, to avoid precision errors:
-tk =(gpsWeek-ephGpsWeek)*GpsConstants.WEEKSEC + (ttxSec-Toe);
-
-I = find(abs(tk)>fitIntervalSeconds);
-if ~isempty(I)
- numTimes = length(I);
- fprintf(sprintf('WARNING in GpsEph2Xyz.m, %d times outside fit interval.',...
- numTimes));
-end
-
-A = Asqrt.^2; %semi-major axis of orbit
-n0=sqrt(GpsConstants.mu./(A.^3)); %Computed mean motion (rad/sec)
-n=n0+Delta_n; %Corrected Mean Motion
-h = sqrt(A.*(1-e.^2).*GpsConstants.mu);
-Mk=M0+n.*tk; %Mean Anomaly
-Ek=Kepler(Mk,e); %Solve Kepler's equation for eccentric anomaly
-
-%Calculate satellite clock bias (See ICD-GPS-200 20.3.3.3.3.1)
-%subtract weeks first, to avoid precision errors:
-dt =(gpsWeek-ephGpsWeek)*GpsConstants.WEEKSEC + (ttxSec-Toc);
-
-%Calculate satellite clock bias
-sin_Ek=sin(Ek);
-cos_Ek=cos(Ek);
-dtsvS = af0 + af1.*dt + af2.*(dt.^2) + ...
- GpsConstants.FREL.*e.*Asqrt.*sin_Ek -TGD;
-
-%true anomaly:
-vk=atan2(sqrt(1-e.^2).*sin_Ek./(1-e.*cos_Ek),(cos_Ek-e)./(1-e.*cos_Ek));
-Phik=vk + omega; %Argument of latitude
-
-sin_2Phik=sin(2*Phik);
-cos_2Phik=cos(2*Phik);
-% The next three terms are the second harmonic perturbations
-duk = Cus.*sin_2Phik + Cuc.*cos_2Phik; %Argument of latitude correction
-drk = Crc.*cos_2Phik + Crs.*sin_2Phik; %Radius Correction
-dik = Cic.*cos_2Phik + Cis.*sin_2Phik; %Correction to Inclination
-
-uk = Phik + duk; %Corrected argument of latitude
-rk = A.*((1-e.^2)./(1+e.*cos(vk))) + drk; %Corrected radius
-ik = i0 + IDOT.*tk + dik; %Corrected inclination
-
-sin_uk=sin(uk);
-cos_uk=cos(uk);
-xkp = rk.*cos_uk; % Position in orbital plane
-ykp = rk.*sin_uk; % Position in orbital plane
-
-% Wk = corrected longitude of ascending node,
-Wk = OMEGA + (OMEGA_DOT - GpsConstants.WE).*tk - GpsConstants.WE*[gpsEph.Toe]';
-
-%for dtflight, see FlightTimeCorrection.m
-sin_Wk = sin(Wk);
-cos_Wk = cos(Wk);
-
-xyzM=zeros(p,3);
-% The matrix xyzM contains the ECEF coordinates of position
-sin_ik=sin(ik);
-cos_ik=cos(ik);
-xyzM(:,1)=xkp.*cos_Wk-ykp.*cos_ik.*sin_Wk;
-xyzM(:,2)=xkp.*sin_Wk+ykp.*cos_ik.*cos_Wk;
-xyzM(:,3)=ykp.*sin_ik;
-
-end %end of function GpsEph2Xyz
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
-
+function [xyzM,dtsvS] = GpsEph2Xyz(gpsEph,gpsTime)
+%[xyzM,dtsvS] = GpsEph2Xyz(gpsEph,gpsTime)
+% Calculate sv coordinates, in ECEF frame, at ttx = gpsTime
+%
+% Inputs:
+% gpsEph: vector of GPS ephemeris structures, as defined in ReadRinexNav.m
+%
+% gpsTime = [gpsWeek, ttxSec]: GPS time at time of transmission, ttx
+% ttx = trx - PR/c - dtsvS, where trx is time of reception (receiver clock),
+% dtsvS is the satellite clock error (seconds), can be computed in advance
+% using Eph2Dtsv.m or iterating this function: gps time = sat time - dtsvS
+% gpsWeek, ttxSec must be vectors of length(gpsEph),
+%
+% outputs:
+% xyzM = [i,j,k] matrix of coordinates of satellites (ecef meters)
+% dtsvS = vector of satellite clock error (seconds)
+% The row dimension of xyzM, dtsvS = length(gpsEph)
+%
+% xyzM = sat positions at time ttxSec, in terms of ecef coords at the same time
+% Use FlightTimeCorrection.m to get xyzM & v in ecef coords at time of reception
+%
+% See IS-GPS-200 for details of data
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+xyzM=[]; dtsvS=[];
+
+[bOk,gpsEph,gpsWeek,ttxSec] = CheckGpsEphInputs(gpsEph,gpsTime);
+if ~bOk
+ return
+end
+p=length(gpsEph);
+%Now we are done checking and manipulating the inputs
+% the time vectors: gpsWeek, ttxSec are the same length as gpsEph
+%-------------------------------------------------------------------------------
+
+%set fitIntervalSeconds
+fitIntervalHours = [gpsEph.Fit_interval]';
+%Rinex says "Zero if not known", so adjust for zeros
+fitIntervalHours(fitIntervalHours == 0) = 2;
+fitIntervalSeconds = fitIntervalHours*3600;
+
+%Extract variables from gpsEph, into column vectors
+%orbit variable names follow RINEX 2.1 Table A4
+%clock variables af0, af1, af2 follow IS GPS 200
+TGD = [gpsEph.TGD]';
+Toc = [gpsEph.Toc]';
+af2 = [gpsEph.af2]';
+af1 = [gpsEph.af1]';
+af0 = [gpsEph.af0]';
+Crs = [gpsEph.Crs]';
+Delta_n = [gpsEph.Delta_n]';
+M0 = [gpsEph.M0]';
+Cuc = [gpsEph.Cuc]';
+e = [gpsEph.e]';
+Cus = [gpsEph.Cus]';
+Asqrt = [gpsEph.Asqrt]';
+Toe = [gpsEph.Toe]';
+Cic = [gpsEph.Cic]';
+OMEGA = [gpsEph.OMEGA]';
+Cis = [gpsEph.Cis]';
+i0 = [gpsEph.i0]';
+Crc = [gpsEph.Crc]';
+omega = [gpsEph.omega]';
+OMEGA_DOT=[gpsEph.OMEGA_DOT]';
+IDOT = [gpsEph.IDOT]';
+ephGpsWeek = [gpsEph.GPS_Week]';
+
+%Calculate dependent variables -------------------------------------------------
+
+%Time since time of applicability accounting for weeks and therefore rollovers
+%subtract weeks first, to avoid precision errors:
+tk =(gpsWeek-ephGpsWeek)*GpsConstants.WEEKSEC + (ttxSec-Toe);
+
+I = find(abs(tk)>fitIntervalSeconds);
+if ~isempty(I)
+ numTimes = length(I);
+ fprintf(sprintf('WARNING in GpsEph2Xyz.m, %d times outside fit interval.',...
+ numTimes));
+end
+
+A = Asqrt.^2; %semi-major axis of orbit
+n0=sqrt(GpsConstants.mu./(A.^3)); %Computed mean motion (rad/sec)
+n=n0+Delta_n; %Corrected Mean Motion
+h = sqrt(A.*(1-e.^2).*GpsConstants.mu);
+Mk=M0+n.*tk; %Mean Anomaly
+Ek=Kepler(Mk,e); %Solve Kepler's equation for eccentric anomaly
+
+%Calculate satellite clock bias (See ICD-GPS-200 20.3.3.3.3.1)
+%subtract weeks first, to avoid precision errors:
+dt =(gpsWeek-ephGpsWeek)*GpsConstants.WEEKSEC + (ttxSec-Toc);
+
+%Calculate satellite clock bias
+sin_Ek=sin(Ek);
+cos_Ek=cos(Ek);
+dtsvS = af0 + af1.*dt + af2.*(dt.^2) + ...
+ GpsConstants.FREL.*e.*Asqrt.*sin_Ek -TGD;
+
+%true anomaly:
+vk=atan2(sqrt(1-e.^2).*sin_Ek./(1-e.*cos_Ek),(cos_Ek-e)./(1-e.*cos_Ek));
+Phik=vk + omega; %Argument of latitude
+
+sin_2Phik=sin(2*Phik);
+cos_2Phik=cos(2*Phik);
+% The next three terms are the second harmonic perturbations
+duk = Cus.*sin_2Phik + Cuc.*cos_2Phik; %Argument of latitude correction
+drk = Crc.*cos_2Phik + Crs.*sin_2Phik; %Radius Correction
+dik = Cic.*cos_2Phik + Cis.*sin_2Phik; %Correction to Inclination
+
+uk = Phik + duk; %Corrected argument of latitude
+rk = A.*((1-e.^2)./(1+e.*cos(vk))) + drk; %Corrected radius
+ik = i0 + IDOT.*tk + dik; %Corrected inclination
+
+sin_uk=sin(uk);
+cos_uk=cos(uk);
+xkp = rk.*cos_uk; % Position in orbital plane
+ykp = rk.*sin_uk; % Position in orbital plane
+
+% Wk = corrected longitude of ascending node,
+Wk = OMEGA + (OMEGA_DOT - GpsConstants.WE).*tk - GpsConstants.WE*[gpsEph.Toe]';
+
+%for dtflight, see FlightTimeCorrection.m
+sin_Wk = sin(Wk);
+cos_Wk = cos(Wk);
+
+xyzM=zeros(p,3);
+% The matrix xyzM contains the ECEF coordinates of position
+sin_ik=sin(ik);
+cos_ik=cos(ik);
+xyzM(:,1)=xkp.*cos_Wk-ykp.*cos_ik.*sin_Wk;
+xyzM(:,2)=xkp.*sin_Wk+ykp.*cos_ik.*cos_Wk;
+xyzM(:,3)=ykp.*sin_ik;
+
+end %end of function GpsEph2Xyz
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
+
diff --git a/opensource/GpsWlsPvt.m b/ProcessGNSSMeas/GpsWlsPvt.m
similarity index 100%
rename from opensource/GpsWlsPvt.m
rename to ProcessGNSSMeas/GpsWlsPvt.m
diff --git a/opensource/JulianDay.m b/ProcessGNSSMeas/JulianDay.m
similarity index 96%
rename from opensource/JulianDay.m
rename to ProcessGNSSMeas/JulianDay.m
index 702a106..754c1a0 100644
--- a/opensource/JulianDay.m
+++ b/ProcessGNSSMeas/JulianDay.m
@@ -1,54 +1,54 @@
-function jDays = JulianDay(utcTime)
-% jDays = JulianDay(utcTime);
-%
-% input: utcTime [mx6] matrix [year,month,day,hours,minutes,seconds]
-%
-% output: totalDays in Julian Days [mx1] vector (real number of days)
-%
-% Valid input range: 1900 < year < 2100
-
-%Algorithm from Meeus, (1991) Astronomical Algorithms,
-%see http://www.geoastro.de/elevaz/basics/meeus.htm for online summary
-% valid range 1900/3/1 to 2100/2/28
-% but we limit inputs to 1901 through 2099, because it's simpler
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-% check inputs
-if size(utcTime,2)~=6
- error('utcTime must have 6 columns')
-end
-y = utcTime(:,1);
-m = utcTime(:,2);
-d = utcTime(:,3);
-h = utcTime(:,4) + utcTime(:,5)/60 + utcTime(:,5)/3600;
-
-%check that date is in valid range
-if ( any(y<1901) || any (y>2099) )
- error('utcTime(:,1) not in allowed range: 1900 < year < 2100')
-end
-
-i2 = m<=2; %index into months <=2
-m(i2) = m(i2)+12;
-y(i2) = y(i2)-1;
-
-jDays = floor(365.25*y) + floor(30.6001*(m+1)) - 15 + 1720996.5 + d + h/24;
-
-end %end of function JulianDay
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function jDays = JulianDay(utcTime)
+% jDays = JulianDay(utcTime);
+%
+% input: utcTime [mx6] matrix [year,month,day,hours,minutes,seconds]
+%
+% output: totalDays in Julian Days [mx1] vector (real number of days)
+%
+% Valid input range: 1900 < year < 2100
+
+%Algorithm from Meeus, (1991) Astronomical Algorithms,
+%see http://www.geoastro.de/elevaz/basics/meeus.htm for online summary
+% valid range 1900/3/1 to 2100/2/28
+% but we limit inputs to 1901 through 2099, because it's simpler
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+% check inputs
+if size(utcTime,2)~=6
+ error('utcTime must have 6 columns')
+end
+y = utcTime(:,1);
+m = utcTime(:,2);
+d = utcTime(:,3);
+h = utcTime(:,4) + utcTime(:,5)/60 + utcTime(:,5)/3600;
+
+%check that date is in valid range
+if ( any(y<1901) || any (y>2099) )
+ error('utcTime(:,1) not in allowed range: 1900 < year < 2100')
+end
+
+i2 = m<=2; %index into months <=2
+m(i2) = m(i2)+12;
+y(i2) = y(i2)-1;
+
+jDays = floor(365.25*y) + floor(30.6001*(m+1)) - 15 + 1720996.5 + d + h/24;
+
+end %end of function JulianDay
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/opensource/Kepler.m b/ProcessGNSSMeas/Kepler.m
similarity index 96%
rename from opensource/Kepler.m
rename to ProcessGNSSMeas/Kepler.m
index e312ac5..4889d7a 100644
--- a/opensource/Kepler.m
+++ b/ProcessGNSSMeas/Kepler.m
@@ -1,59 +1,59 @@
-function ek = Kepler(mk,e)
-
-% ek = Kepler(mk,e)
-% Kepler - Solves Kepler's equation for ek through iteration.
-%
-% Inputs: mk: mean anomaly (rad)
-% e: eccentricity
-% Outputs: ek: eccentric anomaly
-%
-% NOTE: mk and e may be a vectors of the same dimensions, or one may be a scalar
-% the output is a vector of the same dimensions as the input vector
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-%Check inputs size
-if min(size(mk))>1
- error('mk must be a vector or a scalar, not a matrix')
-end
-if min(size(e))>1
- error('e must be a vector or a scalar, not a matrix')
-end
-if length(mk)>1 && length(e)>1 && any(size(mk)~=size(e))
- %both are vectors, they must have the same dimensions
- error('If mk and e are both vectors they must have the same dimensions')
-end
-
-err = 1;
-
-ek=mk;
-iterCount = 0;
-maxIterCount = 20;
-while any(abs(err) > 1e-8) && iterCount < maxIterCount
- err = ek - mk - (e.*sin(ek));
- ek = ek - err;
- iterCount = iterCount + 1;
-
- if iterCount == maxIterCount
- fprintf('Failed convergence on Kepler''s equation.\n')
- end
-end
-
-end %end of function Kepler
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function ek = Kepler(mk,e)
+
+% ek = Kepler(mk,e)
+% Kepler - Solves Kepler's equation for ek through iteration.
+%
+% Inputs: mk: mean anomaly (rad)
+% e: eccentricity
+% Outputs: ek: eccentric anomaly
+%
+% NOTE: mk and e may be a vectors of the same dimensions, or one may be a scalar
+% the output is a vector of the same dimensions as the input vector
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+%Check inputs size
+if min(size(mk))>1
+ error('mk must be a vector or a scalar, not a matrix')
+end
+if min(size(e))>1
+ error('e must be a vector or a scalar, not a matrix')
+end
+if length(mk)>1 && length(e)>1 && any(size(mk)~=size(e))
+ %both are vectors, they must have the same dimensions
+ error('If mk and e are both vectors they must have the same dimensions')
+end
+
+err = 1;
+
+ek=mk;
+iterCount = 0;
+maxIterCount = 20;
+while any(abs(err) > 1e-8) && iterCount < maxIterCount
+ err = ek - mk - (e.*sin(ek));
+ ek = ek - err;
+ iterCount = iterCount + 1;
+
+ if iterCount == maxIterCount
+ fprintf('Failed convergence on Kepler''s equation.\n')
+ end
+end
+
+end %end of function Kepler
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/opensource/LICENSE.txt b/ProcessGNSSMeas/LICENSE.txt
similarity index 100%
rename from opensource/LICENSE.txt
rename to ProcessGNSSMeas/LICENSE.txt
diff --git a/opensource/LeapSeconds.m b/ProcessGNSSMeas/LeapSeconds.m
similarity index 97%
rename from opensource/LeapSeconds.m
rename to ProcessGNSSMeas/LeapSeconds.m
index ccbeaa9..3445429 100644
--- a/opensource/LeapSeconds.m
+++ b/ProcessGNSSMeas/LeapSeconds.m
@@ -1,94 +1,94 @@
-function [leapSecs] = LeapSeconds(utcTime)
-% leapSecs = LeapSeconds(utcTime)
-% find the number of leap seconds since the GPS Epoch
-%
-% utcTime: [mx6] matrix
-% utcTime(i,:) = [year,month,day,hours,minutes,seconds]
-% year must be specified using four digits, e.g. 1994
-% year valid range: 1980 <= year <= 2099
-%
-% Output: leapSecs,
-% leapSecs(i) = number of leap seconds between the GPS Epoch and utcTime(i,:)
-%
-% The function looks up the number of leap seconds from a UTC time table
-%
-% LATEST LEAP SECOND IN THE TABLE = 31 Dec 2016.
-% On 1 Jan 2017: GPS-UTC=18s
-% See IERS Bulletin C, https://hpiers.obspm.fr/iers/bul/bulc/bulletinc.dat
-% and http://tycho.usno.navy.mil/leapsec.html
-%
-% Aren't Leap Seconds a pain? Yes, and very costly. Ban the Leap Second:
-% Leap seconds occur on average once every two years.
-% What would happen if we had no leap seconds:
-% 1) Thousand of engineers would NOT spend several weeks each two years fixing
-% or planning for leap second bugs.
-% 2) About seven thousand years from now, solar time would be 1 hour behind UTC
-% and we would need a 1 hour adjustment - similar to daylight savings time.
-% 3) GMT (which is solar time) will lose its significance.
-
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-[m,n] = size(utcTime);
-if n~=6
- error('utcTime input must have 6 columns');
-end
-
-% UTC table contains UTC times (in the form of [year,month,day,hours,mins,secs])
-% At each of these times a leap second had just occurred
-utcTable = [1982 1 1 0 0 0;
- 1982 7 1 0 0 0;
- 1983 7 1 0 0 0;
- 1985 7 1 0 0 0;
- 1988 1 1 0 0 0;
- 1990 1 1 0 0 0;
- 1991 1 1 0 0 0;
- 1992 7 1 0 0 0;
- 1993 7 1 0 0 0;
- 1994 7 1 0 0 0;
- 1996 1 1 0 0 0;
- 1997 7 1 0 0 0;
- 1999 1 1 0 0 0;
- 2006 1 1 0 0 0;
- 2009 1 1 0 0 0;
- 2012 7 1 0 0 0;
- 2015 7 1 0 0 0;
- 2017 1 1 0 0 0
- ];
-%when a new leap second is announced in IERS Bulletin C
-%update the table with the UTC time right after the new leap second
-
-tableJDays = JulianDay(utcTable) - GpsConstants.GPSEPOCHJD; %days since GPS Epoch
-%tableSeconds = tableJDays*GpsConstants.DAYSEC + utcTable(:,4:6)*[3600;60;1];
-%NOTE: JulianDay returns a realed value number, corresponding to days and
-% fractions thereof, so we multiply it by DAYSEC to get the full time in seconds
-tableSeconds = tableJDays*GpsConstants.DAYSEC;
-jDays = JulianDay(utcTime)- GpsConstants.GPSEPOCHJD; %days since GPS Epoch
-%timeSeconds = jDays*GpsConstants.DAYSEC + utcTime(:,4:6)*[3600;60;1];
-timeSeconds = jDays*GpsConstants.DAYSEC;
-% tableSeconds and timeSeconds now contain number of seconds since the GPS epoch
-
-leapSecs=zeros(m,1);
-for i=1:m
- %add up the number of leap seconds that have occured by timeSeconds(i)
- leapSecs(i) = sum(tableSeconds<=timeSeconds(i));
-end
-
-end %end of function LeapSeconds
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function [leapSecs] = LeapSeconds(utcTime)
+% leapSecs = LeapSeconds(utcTime)
+% find the number of leap seconds since the GPS Epoch
+%
+% utcTime: [mx6] matrix
+% utcTime(i,:) = [year,month,day,hours,minutes,seconds]
+% year must be specified using four digits, e.g. 1994
+% year valid range: 1980 <= year <= 2099
+%
+% Output: leapSecs,
+% leapSecs(i) = number of leap seconds between the GPS Epoch and utcTime(i,:)
+%
+% The function looks up the number of leap seconds from a UTC time table
+%
+% LATEST LEAP SECOND IN THE TABLE = 31 Dec 2016.
+% On 1 Jan 2017: GPS-UTC=18s
+% See IERS Bulletin C, https://hpiers.obspm.fr/iers/bul/bulc/bulletinc.dat
+% and http://tycho.usno.navy.mil/leapsec.html
+%
+% Aren't Leap Seconds a pain? Yes, and very costly. Ban the Leap Second:
+% Leap seconds occur on average once every two years.
+% What would happen if we had no leap seconds:
+% 1) Thousand of engineers would NOT spend several weeks each two years fixing
+% or planning for leap second bugs.
+% 2) About seven thousand years from now, solar time would be 1 hour behind UTC
+% and we would need a 1 hour adjustment - similar to daylight savings time.
+% 3) GMT (which is solar time) will lose its significance.
+
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+[m,n] = size(utcTime);
+if n~=6
+ error('utcTime input must have 6 columns');
+end
+
+% UTC table contains UTC times (in the form of [year,month,day,hours,mins,secs])
+% At each of these times a leap second had just occurred
+utcTable = [1982 1 1 0 0 0;
+ 1982 7 1 0 0 0;
+ 1983 7 1 0 0 0;
+ 1985 7 1 0 0 0;
+ 1988 1 1 0 0 0;
+ 1990 1 1 0 0 0;
+ 1991 1 1 0 0 0;
+ 1992 7 1 0 0 0;
+ 1993 7 1 0 0 0;
+ 1994 7 1 0 0 0;
+ 1996 1 1 0 0 0;
+ 1997 7 1 0 0 0;
+ 1999 1 1 0 0 0;
+ 2006 1 1 0 0 0;
+ 2009 1 1 0 0 0;
+ 2012 7 1 0 0 0;
+ 2015 7 1 0 0 0;
+ 2017 1 1 0 0 0
+ ];
+%when a new leap second is announced in IERS Bulletin C
+%update the table with the UTC time right after the new leap second
+
+tableJDays = JulianDay(utcTable) - GpsConstants.GPSEPOCHJD; %days since GPS Epoch
+%tableSeconds = tableJDays*GpsConstants.DAYSEC + utcTable(:,4:6)*[3600;60;1];
+%NOTE: JulianDay returns a realed value number, corresponding to days and
+% fractions thereof, so we multiply it by DAYSEC to get the full time in seconds
+tableSeconds = tableJDays*GpsConstants.DAYSEC;
+jDays = JulianDay(utcTime)- GpsConstants.GPSEPOCHJD; %days since GPS Epoch
+%timeSeconds = jDays*GpsConstants.DAYSEC + utcTime(:,4:6)*[3600;60;1];
+timeSeconds = jDays*GpsConstants.DAYSEC;
+% tableSeconds and timeSeconds now contain number of seconds since the GPS epoch
+
+leapSecs=zeros(m,1);
+for i=1:m
+ %add up the number of leap seconds that have occured by timeSeconds(i)
+ leapSecs(i) = sum(tableSeconds<=timeSeconds(i));
+end
+
+end %end of function LeapSeconds
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/opensource/Lla2Ned.m b/ProcessGNSSMeas/Lla2Ned.m
similarity index 97%
rename from opensource/Lla2Ned.m
rename to ProcessGNSSMeas/Lla2Ned.m
index 917643f..57095ab 100644
--- a/opensource/Lla2Ned.m
+++ b/ProcessGNSSMeas/Lla2Ned.m
@@ -1,62 +1,62 @@
-function [nedM] = Lla2Ned(lla1DegDegM,lla2DegDegM)
-
-% [nedM] = Lla2Ned(lla1DegDegM,lla2DegDegM)
-% function to difference latitude, longitude and altitude
-% and provide an answer in NED coordinates in meters.
-%
-% Inputs: lla1DegDegM: mx3 matrix, [latitude(deg),longitude(deg),altitude(m)]
-% lla2DegDegM: mx3 or 1x3, [latitude(deg),longitude(deg),altitude(m)]
-% Output: nedM = lla1DegDegM - lla2DegDegM in NED coords (meters),
-%
-% Useful rules of thumb for quick conversions:
-% 1e-5 (5th decimal place) of a degree of latitude approx= 1.1 meters
-% 1e-5 of a degree of longitude approx= cos(latitude) * 1.1 meters
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-if nargin<2, error('Two inputs arguments needed'),end
-[m1,n1]=size(lla1DegDegM);
-[m2,n2]=size(lla2DegDegM);
-if m2==1
- lla2DegDegM=ones(m1,1)*lla2DegDegM;
-else
- if m1~=m2,
- error('Second input must have one row or same number of rows as first input')
- end
-end
-if n1~=3 || n2~=3, error('Both input matrices must have 3 columns'),end
-
-[xyz1M] = Lla2Xyz(lla1DegDegM);
-[xyz2M] = Lla2Xyz(lla2DegDegM);
-refXyz = (xyz1M+xyz2M)/2;
-[llaDegDegM] = Xyz2Lla(refXyz);
-northM = zeros(m1,1);
-eastM = zeros(m1,1);
-for i=1:m1
- Ce2n = RotEcef2Ned(llaDegDegM(i,1),llaDegDegM(i,2));
- v = Ce2n*(xyz1M(i,:)-xyz2M(i,:))';
- northM(i)=v(1);
- eastM(i)=v(2);
-end
-downM = -lla1DegDegM(:,3)+lla2DegDegM(:,3);
-
-nedM = [northM,eastM,downM];
-
-end %end of function Lla2Ned
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function [nedM] = Lla2Ned(lla1DegDegM,lla2DegDegM)
+
+% [nedM] = Lla2Ned(lla1DegDegM,lla2DegDegM)
+% function to difference latitude, longitude and altitude
+% and provide an answer in NED coordinates in meters.
+%
+% Inputs: lla1DegDegM: mx3 matrix, [latitude(deg),longitude(deg),altitude(m)]
+% lla2DegDegM: mx3 or 1x3, [latitude(deg),longitude(deg),altitude(m)]
+% Output: nedM = lla1DegDegM - lla2DegDegM in NED coords (meters),
+%
+% Useful rules of thumb for quick conversions:
+% 1e-5 (5th decimal place) of a degree of latitude approx= 1.1 meters
+% 1e-5 of a degree of longitude approx= cos(latitude) * 1.1 meters
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+if nargin<2, error('Two inputs arguments needed'),end
+[m1,n1]=size(lla1DegDegM);
+[m2,n2]=size(lla2DegDegM);
+if m2==1
+ lla2DegDegM=ones(m1,1)*lla2DegDegM;
+else
+ if m1~=m2,
+ error('Second input must have one row or same number of rows as first input')
+ end
+end
+if n1~=3 || n2~=3, error('Both input matrices must have 3 columns'),end
+
+[xyz1M] = Lla2Xyz(lla1DegDegM);
+[xyz2M] = Lla2Xyz(lla2DegDegM);
+refXyz = (xyz1M+xyz2M)/2;
+[llaDegDegM] = Xyz2Lla(refXyz);
+northM = zeros(m1,1);
+eastM = zeros(m1,1);
+for i=1:m1
+ Ce2n = RotEcef2Ned(llaDegDegM(i,1),llaDegDegM(i,2));
+ v = Ce2n*(xyz1M(i,:)-xyz2M(i,:))';
+ northM(i)=v(1);
+ eastM(i)=v(2);
+end
+downM = -lla1DegDegM(:,3)+lla2DegDegM(:,3);
+
+nedM = [northM,eastM,downM];
+
+end %end of function Lla2Ned
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/opensource/Lla2Xyz.m b/ProcessGNSSMeas/Lla2Xyz.m
similarity index 97%
rename from opensource/Lla2Xyz.m
rename to ProcessGNSSMeas/Lla2Xyz.m
index 0e0496e..899ee0d 100644
--- a/opensource/Lla2Xyz.m
+++ b/ProcessGNSSMeas/Lla2Xyz.m
@@ -1,54 +1,54 @@
-function [xyzM] = Lla2Xyz(llaDegDegM)
-% [xyzM] = Lla2Xyz(llaDegDegM)
-% Transform latitude, longitude, altitude to ECEF coordinates.
-%
-% input: llaDegDegM = [mx3] matrix = [latDeg,lonDeg,altM]
-% latitude, longitude are in degrees, altitude in meters
-% output: xyzM = [mx3] matrix of ECEF coordinates in meters
-%
-% See also Xyz2Lla
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-% check inputs
-if size(llaDegDegM,2)~=3
- error('Input llaDegDegM must have three columns');
-end
-
-latDeg = llaDegDegM(:,1); lonDeg = llaDegDegM(:,2); altM = llaDegDegM(:,3);
-%No rotation of longitude, by definition of ECEF
-
-% Compute sines and cosines.
-D2R = pi/180;
-clat = cos(latDeg*D2R);
-clon = cos(lonDeg*D2R);
-slat = sin(latDeg*D2R);
-slon = sin(lonDeg*D2R);
-
-% Compute position vector in ECEF coordinates.
-r0 = GpsConstants.EARTHSEMIMAJOR * ...
- (sqrt(1.0 - GpsConstants.EARTHECCEN2 .* slat .* slat)).^(-1);
-xM = (altM + r0) .* clat .* clon; % x coordinate
-yM = (altM + r0) .* clat .* slon; % y coordinate
-zM = (altM + r0 .* (1.0 - GpsConstants.EARTHECCEN2)).* slat;% z coordinate
-
-[xyzM] = [xM,yM,zM];
-
-end %end of function Lla2Xyz
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function [xyzM] = Lla2Xyz(llaDegDegM)
+% [xyzM] = Lla2Xyz(llaDegDegM)
+% Transform latitude, longitude, altitude to ECEF coordinates.
+%
+% input: llaDegDegM = [mx3] matrix = [latDeg,lonDeg,altM]
+% latitude, longitude are in degrees, altitude in meters
+% output: xyzM = [mx3] matrix of ECEF coordinates in meters
+%
+% See also Xyz2Lla
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+% check inputs
+if size(llaDegDegM,2)~=3
+ error('Input llaDegDegM must have three columns');
+end
+
+latDeg = llaDegDegM(:,1); lonDeg = llaDegDegM(:,2); altM = llaDegDegM(:,3);
+%No rotation of longitude, by definition of ECEF
+
+% Compute sines and cosines.
+D2R = pi/180;
+clat = cos(latDeg*D2R);
+clon = cos(lonDeg*D2R);
+slat = sin(latDeg*D2R);
+slon = sin(lonDeg*D2R);
+
+% Compute position vector in ECEF coordinates.
+r0 = GpsConstants.EARTHSEMIMAJOR * ...
+ (sqrt(1.0 - GpsConstants.EARTHECCEN2 .* slat .* slat)).^(-1);
+xM = (altM + r0) .* clat .* clon; % x coordinate
+yM = (altM + r0) .* clat .* slon; % y coordinate
+zM = (altM + r0 .* (1.0 - GpsConstants.EARTHECCEN2)).* slat;% z coordinate
+
+[xyzM] = [xM,yM,zM];
+
+end %end of function Lla2Xyz
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/opensource/PlotAdr.m b/ProcessGNSSMeas/PlotAdr.m
similarity index 100%
rename from opensource/PlotAdr.m
rename to ProcessGNSSMeas/PlotAdr.m
diff --git a/opensource/PlotAdrResids.m b/ProcessGNSSMeas/PlotAdrResids.m
similarity index 100%
rename from opensource/PlotAdrResids.m
rename to ProcessGNSSMeas/PlotAdrResids.m
diff --git a/opensource/PlotCno.m b/ProcessGNSSMeas/PlotCno.m
similarity index 100%
rename from opensource/PlotCno.m
rename to ProcessGNSSMeas/PlotCno.m
diff --git a/opensource/PlotPseudorangeRates.m b/ProcessGNSSMeas/PlotPseudorangeRates.m
similarity index 100%
rename from opensource/PlotPseudorangeRates.m
rename to ProcessGNSSMeas/PlotPseudorangeRates.m
diff --git a/opensource/PlotPseudoranges.m b/ProcessGNSSMeas/PlotPseudoranges.m
similarity index 100%
rename from opensource/PlotPseudoranges.m
rename to ProcessGNSSMeas/PlotPseudoranges.m
diff --git a/opensource/PlotPvt.m b/ProcessGNSSMeas/PlotPvt.m
similarity index 100%
rename from opensource/PlotPvt.m
rename to ProcessGNSSMeas/PlotPvt.m
diff --git a/opensource/PlotPvtStates.m b/ProcessGNSSMeas/PlotPvtStates.m
similarity index 100%
rename from opensource/PlotPvtStates.m
rename to ProcessGNSSMeas/PlotPvtStates.m
diff --git a/opensource/ProcessAdr.m b/ProcessGNSSMeas/ProcessAdr.m
similarity index 100%
rename from opensource/ProcessAdr.m
rename to ProcessGNSSMeas/ProcessAdr.m
diff --git a/opensource/ProcessGnssMeas.m b/ProcessGNSSMeas/ProcessGnssMeas.m
similarity index 100%
rename from opensource/ProcessGnssMeas.m
rename to ProcessGNSSMeas/ProcessGnssMeas.m
diff --git a/opensource/ProcessGnssMeasScript.m b/ProcessGNSSMeas/ProcessGnssMeasScript.m
similarity index 100%
rename from opensource/ProcessGnssMeasScript.m
rename to ProcessGNSSMeas/ProcessGnssMeasScript.m
diff --git a/opensource/README.md b/ProcessGNSSMeas/README.md
similarity index 100%
rename from opensource/README.md
rename to ProcessGNSSMeas/README.md
diff --git a/opensource/ReadGnssLogger.m b/ProcessGNSSMeas/ReadGnssLogger.m
similarity index 100%
rename from opensource/ReadGnssLogger.m
rename to ProcessGNSSMeas/ReadGnssLogger.m
diff --git a/opensource/ReadRinexNav.m b/ProcessGNSSMeas/ReadRinexNav.m
similarity index 97%
rename from opensource/ReadRinexNav.m
rename to ProcessGNSSMeas/ReadRinexNav.m
index e6035e2..e7e714b 100644
--- a/opensource/ReadRinexNav.m
+++ b/ProcessGNSSMeas/ReadRinexNav.m
@@ -1,257 +1,257 @@
-function [gpsEph,iono] = ReadRinexNav(fileName)
-% [gpsEph,iono] = ReadRinexNav(fileName)
-%
-% Read GPS ephemeris and iono data from an ASCII formatted RINEX 2.10 Nav file.
-% Input:
-% fileName - string containing name of RINEX formatted navigation data file
-% Output:
-% gpsEph: vector of ephemeris data, each element is an ephemeris structure
-% structure order and orbit variable names follow RINEX 2.1 Table A4
-% clock variable names af0, af1, af2 follow IS GPS 200
-% gpsEph(i).PRN % SV PRN number
-% gpsEph(i).Toc % Time of clock (seconds)
-% gpsEph(i).af0 % SV clock bias (seconds)
-% gpsEph(i).af1 % SV clock drift (sec/sec)
-% gpsEph(i).af2 % SV clock drift rate (sec/sec2)
-% gpsEph(i).IODE % Issue of data, ephemeris
-% gpsEph(i).Crs % Sine harmonic correction to orbit radius (meters)
-% gpsEph(i).Delta_n % Mean motion difference from computed value (radians/sec)
-% gpsEph(i).M0 % Mean anomaly at reference time (radians)
-% gpsEph(i).Cuc % Cosine harmonic correction to argument of lat (radians)
-% gpsEph(i).e % Eccentricity (dimensionless)
-% gpsEph(i).Cus % Sine harmonic correction to argument of latitude (radians)
-% gpsEph(i).Asqrt % Square root of semi-major axis (meters^1/2)
-% gpsEph(i).Toe % Reference time of ephemeris (seconds)
-% gpsEph(i).Cic % Sine harmonic correction to angle of inclination (radians)
-% gpsEph(i).OMEGA % Longitude of ascending node at weekly epoch (radians)
-% gpsEph(i).Cis % Sine harmonic correction to angle of inclination (radians)
-% gpsEph(i).i0 % Inclination angle at reference time (radians)
-% gpsEph(i).Crc % Cosine harmonic correction to the orbit radius (meters)
-% gpsEph(i).omega % Argument of perigee (radians)
-% gpsEph(i).OMEGA_DOT% Rate of right ascension (radians/sec)
-% gpsEph(i).IDOT % Rate of inclination angle (radians/sec)
-% gpsEph(i).codeL2 % codes on L2 channel
-% gpsEph(i).GPS_Week % GPS week (to go with Toe), (NOT Mod 1024)
-% gpsEph(i).L2Pdata % L2 P data flag
-% gpsEph(i).accuracy % SV user range accuracy (meters)
-% gpsEph(i).health % Satellite health
-% gpsEph(i).TGD % Group delay (seconds)
-% gpsEph(i).IODC % Issue of Data, Clock
-% gpsEph(i).ttx % Transmission time of message (seconds)
-% gpsEph(i).Fit_interval %fit interval (hours), zero if not known
-%
-% iono: ionospheric parameter structure
-% iono.alpha = [alpha0, alpha1, alpha2, alpha3]
-% iono.beta = [ beta0, beta1, beta2, beta3]
-% if iono data is not present in the Rinex file, iono is returned empty.
-
-fidEph = fopen(fileName);
-[numEph,numHdrLines] = countEph(fidEph);
-
-%Now read from the begining again, looking for iono parameters
-frewind(fidEph);
-iono = readIono(fidEph,numHdrLines);
-
-%initialize ephemeris structure array:
-gpsEph = InitializeGpsEph;
-gpsEph = repmat(gpsEph,1,numEph);
-
-%now read each ephemeris into gpsEph(j)
-%RINEX defines the format in terms of numbers of characters, so that's how we
-%read it, e.g. "gpsEph(j).PRN = str2num(line(1:2));" and so on
-for j = 1:numEph
- line = fgetl(fidEph);
- gpsEph(j).PRN = str2num(line(1:2));
- %NOTE: we use str2num, not str2double, since str2num handles 'D' for exponent
-
- %% get Toc (Rinex gives this as UTC time yy,mm,dd,hh,mm,ss)
- year = str2num(line(3:6));
- %convert year to a 4-digit year, this code is good to the year 2080.
- %From 2080 RINEX 2.1 is ambiguous and shouldnt be used, because is has a
- %2-digit year, and 100 years will have passed since the GPS Epoch.
- if year < 80,
- year = 2000+year;
- else
- year = 1900+year;
- end
- month = str2num(line(7:9));
- day = str2num(line(10:12));
- hour = str2num(line(13:15));
- minute = str2num(line(16:18));
- second = str2num(line(19:22));
- %convert Toc to gpsTime
- gpsTime = Utc2Gps([year,month,day,hour,minute,second]);
- gpsEph(j).Toc = gpsTime(2);
- %% get all other parameters
- gpsEph(j).af0 = str2num(line(23:41));
- gpsEph(j).af1 = str2num(line(42:60));
- gpsEph(j).af2 = str2num(line(61:79));
-
- line = fgetl(fidEph);
- gpsEph(j).IODE = str2num(line(4:22));
- gpsEph(j).Crs = str2num(line(23:41));
- gpsEph(j).Delta_n = str2num(line(42:60));
- gpsEph(j).M0 = str2num(line(61:79));
-
- line = fgetl(fidEph);
- gpsEph(j).Cuc = str2num(line(4:22));
- gpsEph(j).e = str2num(line(23:41));
- gpsEph(j).Cus = str2num(line(42:60));
- gpsEph(j).Asqrt = str2num(line(61:79));
-
- line=fgetl(fidEph);
- gpsEph(j).Toe = str2num(line(4:22));
- gpsEph(j).Cic = str2num(line(23:41));
- gpsEph(j).OMEGA = str2num(line(42:60));
- gpsEph(j).Cis = str2num(line(61:79));
-
- line = fgetl(fidEph);
- gpsEph(j).i0 = str2num(line(4:22));
- gpsEph(j).Crc = str2num(line(23:41));
- gpsEph(j).omega = str2num(line(42:60));
- gpsEph(j).OMEGA_DOT = str2num(line(61:79));
-
- line = fgetl(fidEph);
- gpsEph(j).IDOT = str2num(line(4:22));
- gpsEph(j).codeL2 = str2num(line(23:41));
- gpsEph(j).GPS_Week = str2num(line(42:60));
- gpsEph(j).L2Pdata = str2num(line(61:79));
-
- line = fgetl(fidEph);
- gpsEph(j).accuracy = str2num(line(4:22));
- gpsEph(j).health = str2num(line(23:41));
- gpsEph(j).TGD = str2num(line(42:60));
- gpsEph(j).IODC = str2num(line(61:79));
-
- line = fgetl(fidEph);
- gpsEph(j).ttx = str2num(line(4:22));
- gpsEph(j).Fit_interval = str2num(line(23:41));
-end
-fclose(fidEph);
-
-end %end of function ReadRinexNav
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-function [numEph,numHdrLines] = countEph(fidEph,fileName)
-%utility function for ReadRinexNav
-%Read past the header, and then read to the end, counting ephemerides:
-numHdrLines = 0;
-bFoundHeader = false;
-while ~bFoundHeader %Read past the header
- numHdrLines = numHdrLines+1;
- line = fgetl(fidEph);
- if ~ischar(line), break, end
- k = strfind(line,'END OF HEADER');
- if ~isempty(k),
- bFoundHeader = true;
- break
- end
-end
-if ~bFoundHeader
- error('Error reading file: %s\nExpected RINEX header not found',fileName);
-end
-%Now read to the end of the file
-numEph = -1;
-while 1
- numEph = numEph+1;
- line = fgetl(fidEph);
- if line == -1,
- break;
- elseif length(line)~=79
- %use this opportunity to check line is the right length
- %because in the rest of ReadRinexNav we depend on line being this length
- error('Incorrect line length encountered in RINEX file');
- end
-end;
-%check that we read the expected number of lines:
-if rem(numEph,8)~=0
- error('Number of nav lines in %s should be divisible by 8',fileName);
-end
-numEph = numEph/8; %8 lines per ephemeris
-
-end %end of function countEph
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-function iono = readIono(fidEph,numHdrLines)
-%utility function to read thru the header lines, and find iono parameters
-
-iono = []; %return empty if iono not found
-bIonoAlpha=false; bIonoBeta=false;
-
-for i = 1:numHdrLines,
- line = fgetl(fidEph);
- % Look for iono parameters, and read them in
- if ~isempty(strfind(line,'ION ALPHA')) %line contains iono alpha parameters
- ii = strfind(line,'ION ALPHA');
- iono.alpha=str2num(line(1:ii-1));
- %If we have 4 parameters then we have the complete iono alpha
- bIonoAlpha = (length(iono.alpha)==4);
- end
- if ~isempty(strfind(line,'ION BETA'))%line contains the iono beta parameters
- ii = strfind(line,'ION BETA');
- iono.beta=str2num(line(1:ii-1));
- %If we have 4 parameters then we have the complete iono beta
- bIonoBeta = (length(iono.beta)==4);
- end
-end
-
-if ~(bIonoAlpha && bIonoBeta)
- %if we didn't get both alpha and beta iono correctly, then return empty iono
- iono=[];
-end
-
-end %end of function readIono
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-
-function gpsEph = InitializeGpsEph
-%utility function to initialize the ephemeris structure
-gpsEph.PRN = 0;
-gpsEph.Toc = 0;
-gpsEph.af0 = 0;
-gpsEph.af1 = 0;
-gpsEph.af2 = 0;
-gpsEph.IODE = 0;
-gpsEph.Crs = 0;
-gpsEph.Delta_n = 0;
-gpsEph.M0 = 0;
-gpsEph.Cuc = 0;
-gpsEph.e = 0;
-gpsEph.Cus = 0;
-gpsEph.Asqrt = 0;
-gpsEph.Toe = 0;
-gpsEph.Cic = 0;
-gpsEph.OMEGA = 0;
-gpsEph.Cis = 0;
-gpsEph.i0 = 0;
-gpsEph.Crc = 0;
-gpsEph.omega = 0;
-gpsEph.OMEGA_DOT = 0;
-gpsEph.IDOT = 0;
-gpsEph.codeL2 = 0;
-gpsEph.GPS_Week = 0;
-gpsEph.L2Pdata = 0;
-gpsEph.accuracy = 0;
-gpsEph.health = 0;
-gpsEph.TGD = 0;
-gpsEph.IODC = 0;
-gpsEph.ttx = 0;
-gpsEph.Fit_interval= 0;
-
-end %end of function InitializeEph
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
+function [gpsEph,iono] = ReadRinexNav(fileName)
+% [gpsEph,iono] = ReadRinexNav(fileName)
+%
+% Read GPS ephemeris and iono data from an ASCII formatted RINEX 2.10 Nav file.
+% Input:
+% fileName - string containing name of RINEX formatted navigation data file
+% Output:
+% gpsEph: vector of ephemeris data, each element is an ephemeris structure
+% structure order and orbit variable names follow RINEX 2.1 Table A4
+% clock variable names af0, af1, af2 follow IS GPS 200
+% gpsEph(i).PRN % SV PRN number
+% gpsEph(i).Toc % Time of clock (seconds)
+% gpsEph(i).af0 % SV clock bias (seconds)
+% gpsEph(i).af1 % SV clock drift (sec/sec)
+% gpsEph(i).af2 % SV clock drift rate (sec/sec2)
+% gpsEph(i).IODE % Issue of data, ephemeris
+% gpsEph(i).Crs % Sine harmonic correction to orbit radius (meters)
+% gpsEph(i).Delta_n % Mean motion difference from computed value (radians/sec)
+% gpsEph(i).M0 % Mean anomaly at reference time (radians)
+% gpsEph(i).Cuc % Cosine harmonic correction to argument of lat (radians)
+% gpsEph(i).e % Eccentricity (dimensionless)
+% gpsEph(i).Cus % Sine harmonic correction to argument of latitude (radians)
+% gpsEph(i).Asqrt % Square root of semi-major axis (meters^1/2)
+% gpsEph(i).Toe % Reference time of ephemeris (seconds)
+% gpsEph(i).Cic % Sine harmonic correction to angle of inclination (radians)
+% gpsEph(i).OMEGA % Longitude of ascending node at weekly epoch (radians)
+% gpsEph(i).Cis % Sine harmonic correction to angle of inclination (radians)
+% gpsEph(i).i0 % Inclination angle at reference time (radians)
+% gpsEph(i).Crc % Cosine harmonic correction to the orbit radius (meters)
+% gpsEph(i).omega % Argument of perigee (radians)
+% gpsEph(i).OMEGA_DOT% Rate of right ascension (radians/sec)
+% gpsEph(i).IDOT % Rate of inclination angle (radians/sec)
+% gpsEph(i).codeL2 % codes on L2 channel
+% gpsEph(i).GPS_Week % GPS week (to go with Toe), (NOT Mod 1024)
+% gpsEph(i).L2Pdata % L2 P data flag
+% gpsEph(i).accuracy % SV user range accuracy (meters)
+% gpsEph(i).health % Satellite health
+% gpsEph(i).TGD % Group delay (seconds)
+% gpsEph(i).IODC % Issue of Data, Clock
+% gpsEph(i).ttx % Transmission time of message (seconds)
+% gpsEph(i).Fit_interval %fit interval (hours), zero if not known
+%
+% iono: ionospheric parameter structure
+% iono.alpha = [alpha0, alpha1, alpha2, alpha3]
+% iono.beta = [ beta0, beta1, beta2, beta3]
+% if iono data is not present in the Rinex file, iono is returned empty.
+
+fidEph = fopen(fileName);
+[numEph,numHdrLines] = countEph(fidEph);
+
+%Now read from the begining again, looking for iono parameters
+frewind(fidEph);
+iono = readIono(fidEph,numHdrLines);
+
+%initialize ephemeris structure array:
+gpsEph = InitializeGpsEph;
+gpsEph = repmat(gpsEph,1,numEph);
+
+%now read each ephemeris into gpsEph(j)
+%RINEX defines the format in terms of numbers of characters, so that's how we
+%read it, e.g. "gpsEph(j).PRN = str2num(line(1:2));" and so on
+for j = 1:numEph
+ line = fgetl(fidEph);
+ gpsEph(j).PRN = str2num(line(1:2));
+ %NOTE: we use str2num, not str2double, since str2num handles 'D' for exponent
+
+ %% get Toc (Rinex gives this as UTC time yy,mm,dd,hh,mm,ss)
+ year = str2num(line(3:6));
+ %convert year to a 4-digit year, this code is good to the year 2080.
+ %From 2080 RINEX 2.1 is ambiguous and shouldnt be used, because is has a
+ %2-digit year, and 100 years will have passed since the GPS Epoch.
+ if year < 80,
+ year = 2000+year;
+ else
+ year = 1900+year;
+ end
+ month = str2num(line(7:9));
+ day = str2num(line(10:12));
+ hour = str2num(line(13:15));
+ minute = str2num(line(16:18));
+ second = str2num(line(19:22));
+ %convert Toc to gpsTime
+ gpsTime = Utc2Gps([year,month,day,hour,minute,second]);
+ gpsEph(j).Toc = gpsTime(2);
+ %% get all other parameters
+ gpsEph(j).af0 = str2num(line(23:41));
+ gpsEph(j).af1 = str2num(line(42:60));
+ gpsEph(j).af2 = str2num(line(61:79));
+
+ line = fgetl(fidEph);
+ gpsEph(j).IODE = str2num(line(4:22));
+ gpsEph(j).Crs = str2num(line(23:41));
+ gpsEph(j).Delta_n = str2num(line(42:60));
+ gpsEph(j).M0 = str2num(line(61:79));
+
+ line = fgetl(fidEph);
+ gpsEph(j).Cuc = str2num(line(4:22));
+ gpsEph(j).e = str2num(line(23:41));
+ gpsEph(j).Cus = str2num(line(42:60));
+ gpsEph(j).Asqrt = str2num(line(61:79));
+
+ line=fgetl(fidEph);
+ gpsEph(j).Toe = str2num(line(4:22));
+ gpsEph(j).Cic = str2num(line(23:41));
+ gpsEph(j).OMEGA = str2num(line(42:60));
+ gpsEph(j).Cis = str2num(line(61:79));
+
+ line = fgetl(fidEph);
+ gpsEph(j).i0 = str2num(line(4:22));
+ gpsEph(j).Crc = str2num(line(23:41));
+ gpsEph(j).omega = str2num(line(42:60));
+ gpsEph(j).OMEGA_DOT = str2num(line(61:79));
+
+ line = fgetl(fidEph);
+ gpsEph(j).IDOT = str2num(line(4:22));
+ gpsEph(j).codeL2 = str2num(line(23:41));
+ gpsEph(j).GPS_Week = str2num(line(42:60));
+ gpsEph(j).L2Pdata = str2num(line(61:79));
+
+ line = fgetl(fidEph);
+ gpsEph(j).accuracy = str2num(line(4:22));
+ gpsEph(j).health = str2num(line(23:41));
+ gpsEph(j).TGD = str2num(line(42:60));
+ gpsEph(j).IODC = str2num(line(61:79));
+
+ line = fgetl(fidEph);
+ gpsEph(j).ttx = str2num(line(4:22));
+ gpsEph(j).Fit_interval = str2num(line(23:41));
+end
+fclose(fidEph);
+
+end %end of function ReadRinexNav
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+function [numEph,numHdrLines] = countEph(fidEph,fileName)
+%utility function for ReadRinexNav
+%Read past the header, and then read to the end, counting ephemerides:
+numHdrLines = 0;
+bFoundHeader = false;
+while ~bFoundHeader %Read past the header
+ numHdrLines = numHdrLines+1;
+ line = fgetl(fidEph);
+ if ~ischar(line), break, end
+ k = strfind(line,'END OF HEADER');
+ if ~isempty(k),
+ bFoundHeader = true;
+ break
+ end
+end
+if ~bFoundHeader
+ error('Error reading file: %s\nExpected RINEX header not found',fileName);
+end
+%Now read to the end of the file
+numEph = -1;
+while 1
+ numEph = numEph+1;
+ line = fgetl(fidEph);
+ if line == -1,
+ break;
+ elseif length(line)~=79
+ %use this opportunity to check line is the right length
+ %because in the rest of ReadRinexNav we depend on line being this length
+ error('Incorrect line length encountered in RINEX file');
+ end
+end;
+%check that we read the expected number of lines:
+if rem(numEph,8)~=0
+ error('Number of nav lines in %s should be divisible by 8',fileName);
+end
+numEph = numEph/8; %8 lines per ephemeris
+
+end %end of function countEph
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+function iono = readIono(fidEph,numHdrLines)
+%utility function to read thru the header lines, and find iono parameters
+
+iono = []; %return empty if iono not found
+bIonoAlpha=false; bIonoBeta=false;
+
+for i = 1:numHdrLines,
+ line = fgetl(fidEph);
+ % Look for iono parameters, and read them in
+ if ~isempty(strfind(line,'ION ALPHA')) %line contains iono alpha parameters
+ ii = strfind(line,'ION ALPHA');
+ iono.alpha=str2num(line(1:ii-1));
+ %If we have 4 parameters then we have the complete iono alpha
+ bIonoAlpha = (length(iono.alpha)==4);
+ end
+ if ~isempty(strfind(line,'ION BETA'))%line contains the iono beta parameters
+ ii = strfind(line,'ION BETA');
+ iono.beta=str2num(line(1:ii-1));
+ %If we have 4 parameters then we have the complete iono beta
+ bIonoBeta = (length(iono.beta)==4);
+ end
+end
+
+if ~(bIonoAlpha && bIonoBeta)
+ %if we didn't get both alpha and beta iono correctly, then return empty iono
+ iono=[];
+end
+
+end %end of function readIono
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+
+function gpsEph = InitializeGpsEph
+%utility function to initialize the ephemeris structure
+gpsEph.PRN = 0;
+gpsEph.Toc = 0;
+gpsEph.af0 = 0;
+gpsEph.af1 = 0;
+gpsEph.af2 = 0;
+gpsEph.IODE = 0;
+gpsEph.Crs = 0;
+gpsEph.Delta_n = 0;
+gpsEph.M0 = 0;
+gpsEph.Cuc = 0;
+gpsEph.e = 0;
+gpsEph.Cus = 0;
+gpsEph.Asqrt = 0;
+gpsEph.Toe = 0;
+gpsEph.Cic = 0;
+gpsEph.OMEGA = 0;
+gpsEph.Cis = 0;
+gpsEph.i0 = 0;
+gpsEph.Crc = 0;
+gpsEph.omega = 0;
+gpsEph.OMEGA_DOT = 0;
+gpsEph.IDOT = 0;
+gpsEph.codeL2 = 0;
+gpsEph.GPS_Week = 0;
+gpsEph.L2Pdata = 0;
+gpsEph.accuracy = 0;
+gpsEph.health = 0;
+gpsEph.TGD = 0;
+gpsEph.IODC = 0;
+gpsEph.ttx = 0;
+gpsEph.Fit_interval= 0;
+
+end %end of function InitializeEph
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
diff --git a/opensource/RotEcef2Ned.m b/ProcessGNSSMeas/RotEcef2Ned.m
similarity index 96%
rename from opensource/RotEcef2Ned.m
rename to ProcessGNSSMeas/RotEcef2Ned.m
index 533b0f3..bc8525d 100644
--- a/opensource/RotEcef2Ned.m
+++ b/ProcessGNSSMeas/RotEcef2Ned.m
@@ -1,60 +1,60 @@
-function Re2n = RotEcef2Ned(latDeg, lonDeg)
-% Re2n = RotEcef2Ned(latDeg, lonDeg)
-% Rotation matrix to convert an ECEF vector to
-% North, East, Down coordinates, and vice-versa
-%
-% inputs: latDeg, lonDeg (degrees)
-% output: Re2n, 3x3 unitary rotation matrix =
-% [-sin(lat)*cos(lon), -sin(lat)*sin(lon), cos(lat);
-% -sin(lon), cos(lon), 0 ;
-% -cos(lat)*cos(lon), -cos(lat)*sin(lon),-sin(lat)]
-%
-% Example: vNed = Re2n*vEcef,
-% Re2n'*vNed = vEcef
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-%CHECK INPUTS
-if any(size(latDeg)~=[1,1]) || any(size(lonDeg)~=[1,1])
- error('Inputs latDeg, lonDeg must be scalars')
-end
-
-D2R = pi/180; %degrees to radians scale factor
-latRad=D2R*latDeg(:); lonRad=D2R*lonDeg(:);
-
-clat = cos(latRad);
-slat = sin(latRad);
-clon = cos(lonRad);
-slon = sin(lonRad);
-
-Re2n = zeros(3,3);
-Re2n(1,1) = -slat.*clon;
-Re2n(1,2) = -slat.*slon;
-Re2n(1,3) = clat;
-
-Re2n(2,1) = -slon;
-Re2n(2,2) = clon;
-Re2n(2,3) = 0;
-
-Re2n(3,1) = -clat.*clon;
-Re2n(3,2) = -clat.*slon;
-Re2n(3,3) = -slat;
-
-end %end of function RotEcef2Ned
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function Re2n = RotEcef2Ned(latDeg, lonDeg)
+% Re2n = RotEcef2Ned(latDeg, lonDeg)
+% Rotation matrix to convert an ECEF vector to
+% North, East, Down coordinates, and vice-versa
+%
+% inputs: latDeg, lonDeg (degrees)
+% output: Re2n, 3x3 unitary rotation matrix =
+% [-sin(lat)*cos(lon), -sin(lat)*sin(lon), cos(lat);
+% -sin(lon), cos(lon), 0 ;
+% -cos(lat)*cos(lon), -cos(lat)*sin(lon),-sin(lat)]
+%
+% Example: vNed = Re2n*vEcef,
+% Re2n'*vNed = vEcef
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+%CHECK INPUTS
+if any(size(latDeg)~=[1,1]) || any(size(lonDeg)~=[1,1])
+ error('Inputs latDeg, lonDeg must be scalars')
+end
+
+D2R = pi/180; %degrees to radians scale factor
+latRad=D2R*latDeg(:); lonRad=D2R*lonDeg(:);
+
+clat = cos(latRad);
+slat = sin(latRad);
+clon = cos(lonRad);
+slon = sin(lonRad);
+
+Re2n = zeros(3,3);
+Re2n(1,1) = -slat.*clon;
+Re2n(1,2) = -slat.*slon;
+Re2n(1,3) = clat;
+
+Re2n(2,1) = -slon;
+Re2n(2,2) = clon;
+Re2n(2,3) = 0;
+
+Re2n(3,1) = -clat.*clon;
+Re2n(3,2) = -clat.*slon;
+Re2n(3,3) = -slat;
+
+end %end of function RotEcef2Ned
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/opensource/SetDataFilter.m b/ProcessGNSSMeas/SetDataFilter.m
similarity index 100%
rename from opensource/SetDataFilter.m
rename to ProcessGNSSMeas/SetDataFilter.m
diff --git a/opensource/Utc2Gps.m b/ProcessGNSSMeas/Utc2Gps.m
similarity index 97%
rename from opensource/Utc2Gps.m
rename to ProcessGNSSMeas/Utc2Gps.m
index 3bb2efa..8435bc6 100644
--- a/opensource/Utc2Gps.m
+++ b/ProcessGNSSMeas/Utc2Gps.m
@@ -1,111 +1,111 @@
-function [gpsTime,fctSeconds] = Utc2Gps(utcTime)
-% [gpsTime,fctSeconds] = Utc2Gps(utcTime)
-% Convert the UTC date and time to GPS week & seconds
-%
-% Inputs:
-% utcTime: [mx6] matrix
-% utcTime(i,:) = [year,month,day,hours,minutes,seconds]
-% year must be specified using four digits, e.g. 1994
-% year valid range: 1980 <= year <= 2099
-%
-% Outputs:
-% gpsTime: [mx2] matrix [gpsWeek, gpsSeconds],
-% gpsWeek = number of weeks since GPS epoch
-% gpsSeconds = number of seconds into gpsWeek,
-% fctSeconds: full cycle time = seconds since GPS epoch (1980/01/06 00:00 UTC)
-
-% Other functions needed: JulianDay.m, LeapSeconds.m
-
-%initialize outputs
-gpsTime=[];
-fctSeconds=[];
-
-[bOk]=CheckUtcTimeInputs(utcTime);
-if ~bOk
- return
-end
-
-HOURSEC = 3600; MINSEC = 60;
-daysSinceEpoch = floor(JulianDay(utcTime) - GpsConstants.GPSEPOCHJD);
-
-gpsWeek = fix(daysSinceEpoch/7);
-dayofweek = rem(daysSinceEpoch,7);
-% calculate the number of seconds since Sunday at midnight:
-gpsSeconds = dayofweek*GpsConstants.DAYSEC + utcTime(:,4)*HOURSEC + ...
- utcTime(:,5)*MINSEC + utcTime(:,6);
-gpsWeek = gpsWeek + fix(gpsSeconds/GpsConstants.WEEKSEC);
-gpsSeconds = rem(gpsSeconds,GpsConstants.WEEKSEC);
-
-% now add leapseconds
-leapSecs = LeapSeconds(utcTime);
-fctSeconds = gpsWeek(:)*GpsConstants.WEEKSEC + gpsSeconds(:) + leapSecs(:);
-% when a leap second happens, utc time stands still for one second,
-% so gps seconds get further ahead, so we add leapsecs in going to gps time
-
-gpsWeek = fix(fctSeconds/GpsConstants.WEEKSEC);
-iZ = gpsWeek==0;
-gpsSeconds(iZ) = fctSeconds(iZ); %set gpsSeconds directly, because rem(x,0)=NaN
-gpsSeconds(~iZ) = rem(fctSeconds(~iZ),gpsWeek(~iZ)*GpsConstants.WEEKSEC);
-
-gpsTime=[gpsWeek,gpsSeconds];
-assert(all(fctSeconds==gpsWeek*GpsConstants.WEEKSEC+gpsSeconds),...
- 'Error in computing gpsWeek, gpsSeconds');
-
-end %end of function Utc2Gps
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-function [bOk] = CheckUtcTimeInputs(utcTime)
-%utility function for Utc2Gps
-
-%check inputs
-if size(utcTime,2)~=6
- error('utcTime must have 6 columns')
-end
-
-%check that year, month & day are integers
-x = utcTime(:,1:3);
-if any(any( (x-fix(x)) ~= 0 ))
- error('year,month & day must be integers')
-end
-
-%check that year is in valid range
-if ( any(utcTime(:,1)<1980) || any(utcTime(:,1)>2099) )
- error('year must have values in the range: [1980:2099]')
-end
-
-%check validity of month, day and time
-if (any(utcTime(:,2))<1 || any(utcTime(:,2))>12 )
- error('The month in utcTime must be a number in the set [1:12]')
-end
-if (any(utcTime(:,3)<1) || any(utcTime(:,3)>31))
- error('The day in utcTime must be a number in the set [1:31]')
-end
-if (any(utcTime(:,4)<0) || any(utcTime(:,4)>=24))
- error('The hour in utcTime must be in the range [0,24)')
-end
-if (any(utcTime(:,5)<0) || any(utcTime(:,5)>=60))
- error('The minutes in utcTime must be in the range [0,60)')
-end
-if (any(utcTime(:,6)<0) || any(utcTime(:,6)>60))
- %Note: seconds can equal 60 exactly, on the second a leap second is added
- error('The seconds in utcTime must be in the range [0,60]')
-end
-
-bOk = true;
-
-end %end of function CheckUtcTimeInputs
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
+function [gpsTime,fctSeconds] = Utc2Gps(utcTime)
+% [gpsTime,fctSeconds] = Utc2Gps(utcTime)
+% Convert the UTC date and time to GPS week & seconds
+%
+% Inputs:
+% utcTime: [mx6] matrix
+% utcTime(i,:) = [year,month,day,hours,minutes,seconds]
+% year must be specified using four digits, e.g. 1994
+% year valid range: 1980 <= year <= 2099
+%
+% Outputs:
+% gpsTime: [mx2] matrix [gpsWeek, gpsSeconds],
+% gpsWeek = number of weeks since GPS epoch
+% gpsSeconds = number of seconds into gpsWeek,
+% fctSeconds: full cycle time = seconds since GPS epoch (1980/01/06 00:00 UTC)
+
+% Other functions needed: JulianDay.m, LeapSeconds.m
+
+%initialize outputs
+gpsTime=[];
+fctSeconds=[];
+
+[bOk]=CheckUtcTimeInputs(utcTime);
+if ~bOk
+ return
+end
+
+HOURSEC = 3600; MINSEC = 60;
+daysSinceEpoch = floor(JulianDay(utcTime) - GpsConstants.GPSEPOCHJD);
+
+gpsWeek = fix(daysSinceEpoch/7);
+dayofweek = rem(daysSinceEpoch,7);
+% calculate the number of seconds since Sunday at midnight:
+gpsSeconds = dayofweek*GpsConstants.DAYSEC + utcTime(:,4)*HOURSEC + ...
+ utcTime(:,5)*MINSEC + utcTime(:,6);
+gpsWeek = gpsWeek + fix(gpsSeconds/GpsConstants.WEEKSEC);
+gpsSeconds = rem(gpsSeconds,GpsConstants.WEEKSEC);
+
+% now add leapseconds
+leapSecs = LeapSeconds(utcTime);
+fctSeconds = gpsWeek(:)*GpsConstants.WEEKSEC + gpsSeconds(:) + leapSecs(:);
+% when a leap second happens, utc time stands still for one second,
+% so gps seconds get further ahead, so we add leapsecs in going to gps time
+
+gpsWeek = fix(fctSeconds/GpsConstants.WEEKSEC);
+iZ = gpsWeek==0;
+gpsSeconds(iZ) = fctSeconds(iZ); %set gpsSeconds directly, because rem(x,0)=NaN
+gpsSeconds(~iZ) = rem(fctSeconds(~iZ),gpsWeek(~iZ)*GpsConstants.WEEKSEC);
+
+gpsTime=[gpsWeek,gpsSeconds];
+assert(all(fctSeconds==gpsWeek*GpsConstants.WEEKSEC+gpsSeconds),...
+ 'Error in computing gpsWeek, gpsSeconds');
+
+end %end of function Utc2Gps
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+function [bOk] = CheckUtcTimeInputs(utcTime)
+%utility function for Utc2Gps
+
+%check inputs
+if size(utcTime,2)~=6
+ error('utcTime must have 6 columns')
+end
+
+%check that year, month & day are integers
+x = utcTime(:,1:3);
+if any(any( (x-fix(x)) ~= 0 ))
+ error('year,month & day must be integers')
+end
+
+%check that year is in valid range
+if ( any(utcTime(:,1)<1980) || any(utcTime(:,1)>2099) )
+ error('year must have values in the range: [1980:2099]')
+end
+
+%check validity of month, day and time
+if (any(utcTime(:,2))<1 || any(utcTime(:,2))>12 )
+ error('The month in utcTime must be a number in the set [1:12]')
+end
+if (any(utcTime(:,3)<1) || any(utcTime(:,3)>31))
+ error('The day in utcTime must be a number in the set [1:31]')
+end
+if (any(utcTime(:,4)<0) || any(utcTime(:,4)>=24))
+ error('The hour in utcTime must be in the range [0,24)')
+end
+if (any(utcTime(:,5)<0) || any(utcTime(:,5)>=60))
+ error('The minutes in utcTime must be in the range [0,60)')
+end
+if (any(utcTime(:,6)<0) || any(utcTime(:,6)>60))
+ %Note: seconds can equal 60 exactly, on the second a leap second is added
+ error('The seconds in utcTime must be in the range [0,60]')
+end
+
+bOk = true;
+
+end %end of function CheckUtcTimeInputs
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
diff --git a/opensource/WlsPvt.m b/ProcessGNSSMeas/WlsPvt.m
similarity index 100%
rename from opensource/WlsPvt.m
rename to ProcessGNSSMeas/WlsPvt.m
diff --git a/opensource/Xyz2Lla.m b/ProcessGNSSMeas/Xyz2Lla.m
similarity index 96%
rename from opensource/Xyz2Lla.m
rename to ProcessGNSSMeas/Xyz2Lla.m
index 8018245..48bbffe 100644
--- a/opensource/Xyz2Lla.m
+++ b/ProcessGNSSMeas/Xyz2Lla.m
@@ -1,82 +1,82 @@
-function [llaDegDegM] = Xyz2Lla(xyzM)
-% [llaDegDegM] = Xyz2Lla(xyzM)
-%
-% Transform Earth-Centered-Earth-Fixed x,y,z, coordinates to lat,lon,alt.
-% Input: xyzM = [mx3] matrix of ECEF coordinates in meters
-% Output: llaDegDegM = [mx3] matrix = [latDeg,lonDeg,altM]
-% latitude, longitude are returned in degrees and altitude in meters
-%
-% See also Lla2Xyz
-
-%Author: Frank van Diggelen
-%Open Source code for processing Android GNSS Measurements
-
-% check inputs
-if size(xyzM,2)~=3
- error('Input xyzM must have three columns');
-end
-% algorithm: Hoffman-Wellenhof, Lichtenegger & Collins "GPS Theory & Practice"
-R2D = 180/pi;
-
-%if x and y ecef positions are both zero then lla is undefined
-iZero = ( xyzM(:,1)==0 & xyzM(:,2)==0);
-xyzM(iZero,:) = NaN; %set to NaN, so lla will also be NaN
-
-xM = xyzM(:,1); yM = xyzM(:,2); zM = xyzM(:,3);
-%following algorithm from Hoffman-Wellenhof, et al. "GPS Theory & Practice":
-a = GpsConstants.EARTHSEMIMAJOR;
-a2 = a^2;
-b2 = a2*(1-GpsConstants.EARTHECCEN2);
-b = sqrt(b2);
-e2 = GpsConstants.EARTHECCEN2;
-ep2 = (a2-b2)/b2;
-p=sqrt(xM.^2 + yM.^2);
-
-% two sides and hypotenuse of right angle triangle with one angle = theta:
-s1 = zM*a;
-s2 = p*b;
-h = sqrt(s1.^2 + s2.^2);
-sin_theta = s1./h;
-cos_theta = s2./h;
-%theta = atan(s1./s2);
-
-% two sides and hypotenuse of right angle triangle with one angle = lat:
-s1 = zM+ep2*b*(sin_theta.^3);
-s2 = p-a*e2.*(cos_theta.^3);
-h = sqrt(s1.^2 + s2.^2);
-tan_lat = s1./s2;
-sin_lat = s1./h;
-cos_lat = s2./h;
-latDeg = atan(tan_lat);
-latDeg = latDeg*R2D;
-
-N = a2*((a2*(cos_lat.^2) + b2*(sin_lat.^2)).^(-0.5));
-altM = p./cos_lat - N;
-
-% rotate longitude to where it would be for a fixed point in ECI
-%lonDeg = atan2(yM,xM) - GpsConstants.WE*deltaTime;
-lonDeg = atan2(yM,xM); %since deltaTime = 0 for ECEF
-lonDeg = rem(lonDeg,2*pi)*R2D;
-if (lonDeg>180)
- lonDeg = lonDeg-360;
-end
-llaDegDegM = [latDeg, lonDeg,altM];
-
-end %end of function Xyz2Lla
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-
-% Copyright 2016 Google Inc.
-%
-% Licensed under the Apache License, Version 2.0 (the "License");
-% you may not use this file except in compliance with the License.
-% You may obtain a copy of the License at
-%
-% http://www.apache.org/licenses/LICENSE-2.0
-%
-% Unless required by applicable law or agreed to in writing, software
-% distributed under the License is distributed on an "AS IS" BASIS,
-% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-% See the License for the specific language governing permissions and
-% limitations under the License.
-
+function [llaDegDegM] = Xyz2Lla(xyzM)
+% [llaDegDegM] = Xyz2Lla(xyzM)
+%
+% Transform Earth-Centered-Earth-Fixed x,y,z, coordinates to lat,lon,alt.
+% Input: xyzM = [mx3] matrix of ECEF coordinates in meters
+% Output: llaDegDegM = [mx3] matrix = [latDeg,lonDeg,altM]
+% latitude, longitude are returned in degrees and altitude in meters
+%
+% See also Lla2Xyz
+
+%Author: Frank van Diggelen
+%Open Source code for processing Android GNSS Measurements
+
+% check inputs
+if size(xyzM,2)~=3
+ error('Input xyzM must have three columns');
+end
+% algorithm: Hoffman-Wellenhof, Lichtenegger & Collins "GPS Theory & Practice"
+R2D = 180/pi;
+
+%if x and y ecef positions are both zero then lla is undefined
+iZero = ( xyzM(:,1)==0 & xyzM(:,2)==0);
+xyzM(iZero,:) = NaN; %set to NaN, so lla will also be NaN
+
+xM = xyzM(:,1); yM = xyzM(:,2); zM = xyzM(:,3);
+%following algorithm from Hoffman-Wellenhof, et al. "GPS Theory & Practice":
+a = GpsConstants.EARTHSEMIMAJOR;
+a2 = a^2;
+b2 = a2*(1-GpsConstants.EARTHECCEN2);
+b = sqrt(b2);
+e2 = GpsConstants.EARTHECCEN2;
+ep2 = (a2-b2)/b2;
+p=sqrt(xM.^2 + yM.^2);
+
+% two sides and hypotenuse of right angle triangle with one angle = theta:
+s1 = zM*a;
+s2 = p*b;
+h = sqrt(s1.^2 + s2.^2);
+sin_theta = s1./h;
+cos_theta = s2./h;
+%theta = atan(s1./s2);
+
+% two sides and hypotenuse of right angle triangle with one angle = lat:
+s1 = zM+ep2*b*(sin_theta.^3);
+s2 = p-a*e2.*(cos_theta.^3);
+h = sqrt(s1.^2 + s2.^2);
+tan_lat = s1./s2;
+sin_lat = s1./h;
+cos_lat = s2./h;
+latDeg = atan(tan_lat);
+latDeg = latDeg*R2D;
+
+N = a2*((a2*(cos_lat.^2) + b2*(sin_lat.^2)).^(-0.5));
+altM = p./cos_lat - N;
+
+% rotate longitude to where it would be for a fixed point in ECI
+%lonDeg = atan2(yM,xM) - GpsConstants.WE*deltaTime;
+lonDeg = atan2(yM,xM); %since deltaTime = 0 for ECEF
+lonDeg = rem(lonDeg,2*pi)*R2D;
+if (lonDeg>180)
+ lonDeg = lonDeg-360;
+end
+llaDegDegM = [latDeg, lonDeg,altM];
+
+end %end of function Xyz2Lla
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+
+% Copyright 2016 Google Inc.
+%
+% Licensed under the Apache License, Version 2.0 (the "License");
+% you may not use this file except in compliance with the License.
+% You may obtain a copy of the License at
+%
+% http://www.apache.org/licenses/LICENSE-2.0
+%
+% Unless required by applicable law or agreed to in writing, software
+% distributed under the License is distributed on an "AS IS" BASIS,
+% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+% See the License for the specific language governing permissions and
+% limitations under the License.
+
diff --git a/ProcessGNSSMeas/demoFiles/hour1820.16n b/ProcessGNSSMeas/demoFiles/hour1820.16n
new file mode 100644
index 0000000..2fbd4dc
--- /dev/null
+++ b/ProcessGNSSMeas/demoFiles/hour1820.16n
@@ -0,0 +1,3352 @@
+ 2 NAVIGATION DATA RINEX VERSION / TYPE
+CCRINEXN V1.6.0 UX CDDIS 30-JUN-16 23:39 PGM / RUN BY / DATE
+IGS BROADCAST EPHEMERIS FILE COMMENT
+ 0.4657D-08 0.1490D-07 -0.5960D-07 -0.1192D-06 ION ALPHA
+ 0.8192D+05 0.8192D+05 -0.6554D+05 -0.5243D+06 ION BETA
+ 0.372529029846D-08 0.124344978758D-13 589824 1903 DELTA-UTC: A0,A1,T,W
+ 17 LEAP SECONDS
+ END OF HEADER
+ 1 16 6 30 0 0 0.0 0.252844765782D-04 0.125055521494D-11 0.000000000000D+00
+ 0.290000000000D+02 0.843750000000D+01 0.483341544566D-08-0.306412774440D+01
+ 0.370666384697D-06 0.563281006180D-02 0.695139169693D-05 0.515363659287D+04
+ 0.345600000000D+06-0.111758708954D-06-0.278644844180D+01-0.819563865662D-07
+ 0.964889652190D+00 0.248531250000D+03 0.481395708292D+00-0.806390776376D-08
+ 0.369658248456D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.290000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 0 0 0.0 0.581390224397D-03-0.375166564481D-11 0.000000000000D+00
+ 0.760000000000D+02 0.107187500000D+02 0.532486465913D-08-0.268777884226D+01
+ 0.579282641411D-06 0.157898437465D-01 0.604614615440D-05 0.515358436394D+04
+ 0.345600000000D+06 0.352039933205D-06-0.283268282516D+01-0.162050127983D-06
+ 0.943691771727D+00 0.250281250000D+03-0.210508058618D+01-0.829355974577D-08
+ 0.422160441820D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.200234353542D-07 0.760000000000D+02
+ 0.338418000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 0 0 0.0-0.715949572623D-04-0.318323145621D-11 0.000000000000D+00
+ 0.410000000000D+02-0.402187500000D+02 0.483305839793D-08-0.213917540175D+01
+ -0.213086605072D-05 0.206189462915D-03 0.805594027042D-05 0.515367090607D+04
+ 0.345600000000D+06-0.130385160446D-07-0.174493303510D+01-0.186264514923D-07
+ 0.958918421430D+00 0.222843750000D+03-0.158412131612D+01-0.814855383169D-08
+ -0.484305873183D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.410000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 0 0 0.0-0.258435495198D-03-0.454747350886D-12 0.000000000000D+00
+ 0.480000000000D+02-0.781562500000D+02 0.533129349835D-08 0.125677216309D+00
+ -0.407733023167D-05 0.850135495421D-02 0.606290996075D-05 0.515365654373D+04
+ 0.345600000000D+06-0.372529029846D-08 0.141967575106D+01 0.167638063431D-06
+ 0.983052739818D+00 0.276218750000D+03 0.898939140058D+00-0.817391190481D-08
+ -0.229295265354D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.630000000000D+02-0.195577740669D-07 0.480000000000D+02
+ 0.338400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 0 0 0.0-0.109067186713D-03 0.284217094304D-11 0.000000000000D+00
+ 0.300000000000D+02-0.358750000000D+02 0.512449917025D-08-0.202044872574D+00
+ -0.197999179363D-05 0.454764580354D-02 0.760704278946D-05 0.515354163551D+04
+ 0.345600000000D+06-0.298023223877D-07-0.175728471284D+01 0.894069671631D-07
+ 0.945982255249D+00 0.222937500000D+03 0.455089892824D+00-0.836570560808D-08
+ -0.522164607395D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.300000000000D+02
+ 0.343770000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 0 0 0.0 0.211792066693D-03 0.534328137292D-11 0.000000000000D+00
+ 0.520000000000D+02 0.606250000000D+01 0.491270463387D-08-0.284136135845D+01
+ 0.476837158203D-06 0.377159449272D-03 0.661425292492D-05 0.515371510124D+04
+ 0.345600000000D+06 0.931322574616D-08-0.279487078156D+01 0.139698386192D-06
+ 0.964717049800D+00 0.254968750000D+03-0.132008172188D+01-0.825427239501D-08
+ 0.390730561211D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.520000000000D+02
+ 0.344640000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 0 0 0.0 0.445246696472D-03-0.250111042988D-11 0.000000000000D+00
+ 0.390000000000D+02 0.832187500000D+02 0.447982939633D-08 0.250116083729D+01
+ 0.423006713390D-05 0.967676518485D-02 0.428035855293D-05 0.515364101982D+04
+ 0.345600000000D+06-0.158324837685D-06 0.372231198821D+00-0.689178705216D-07
+ 0.966300660084D+00 0.299468750000D+03-0.266777485949D+01-0.819784151673D-08
+ 0.164292551785D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.390000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 0 0 0.0-0.409055501223D-04-0.147792889038D-11 0.000000000000D+00
+ 0.740000000000D+02-0.493750000000D+02 0.430375069706D-08-0.122665699964D+00
+ -0.271946191788D-05 0.169473339338D-02 0.109523534775D-04 0.515371761513D+04
+ 0.345600000000D+06 0.223517417908D-07 0.243639929134D+01 0.130385160446D-07
+ 0.963745297689D+00 0.167062500000D+03-0.104807693807D+01-0.796211736843D-08
+ 0.362515100209D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.740000000000D+02
+ 0.341460000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 0 0 0.0-0.558621250093D-04-0.773070496507D-11 0.000000000000D+00
+ 0.140000000000D+02-0.328125000000D+02 0.487306012537D-08 0.887038984666D+00
+ -0.158138573170D-05 0.159835279919D-02 0.834837555885D-05 0.515367967224D+04
+ 0.345600000000D+06 0.104308128357D-06-0.174891398044D+01-0.335276126862D-07
+ 0.959151960209D+00 0.215031250000D+03-0.272343081709D+01-0.821141346690D-08
+ -0.562166273625D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.140000000000D+02
+ 0.345090000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 0 0 0.0-0.654094386846D-03-0.170530256582D-11 0.000000000000D+00
+ 0.830000000000D+02 0.107812500000D+02 0.612882671880D-08 0.261685816982D+01
+ 0.428408384323D-06 0.165314649930D-01 0.770017504692D-05 0.515366698456D+04
+ 0.345600000000D+06 0.197440385819D-06 0.311752882006D+01-0.229105353355D-06
+ 0.897377769055D+00 0.193250000000D+03 0.153634413643D+01-0.853856995143D-08
+ 0.442161274935D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.400000000000D+01 0.000000000000D+00-0.121071934700D-07 0.830000000000D+02
+ 0.338400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 0 0 0.0 0.384069979191D-03 0.102318153950D-11 0.000000000000D+00
+ 0.940000000000D+02-0.705000000000D+02 0.385266047877D-08 0.191422934978D+01
+ -0.371038913727D-05 0.612830743194D-02 0.628083944321D-05 0.515370563316D+04
+ 0.345600000000D+06-0.147148966789D-06 0.144921969181D+01-0.931322574616D-08
+ 0.990071772486D+00 0.271625000000D+03 0.771390165417D+00-0.792997317236D-08
+ -0.166435504135D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.940000000000D+02
+ 0.343770000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 0 0 0.0-0.280058011413D-04-0.250111042988D-11 0.000000000000D+00
+ 0.470000000000D+02 0.793437500000D+02 0.394587864740D-08-0.285948450695D+01
+ 0.416114926338D-05 0.422024505679D-02 0.108424574137D-04 0.515368811035D+04
+ 0.345600000000D+06 0.279396772385D-07-0.584387088216D+00-0.186264514923D-07
+ 0.971352626770D+00 0.179281250000D+03 0.200532292230D+01-0.766031908304D-08
+ -0.176435920693D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.470000000000D+02
+ 0.338418000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 0 0 0.0-0.220052897930D-04-0.204636307899D-11 0.000000000000D+00
+ 0.330000000000D+02 0.891875000000D+02 0.426232027451D-08-0.123711042707D+01
+ 0.453181564808D-05 0.881684955675D-02 0.112373381853D-04 0.515403553009D+04
+ 0.345600000000D+06 0.128522515297D-06-0.621629891369D+00 0.232830643654D-06
+ 0.963815380242D+00 0.166406250000D+03-0.196362495574D+01-0.796104604461D-08
+ -0.151792037273D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.330000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 0 0 0.0-0.317368656397D-03-0.159161572810D-11 0.000000000000D+00
+ 0.280000000000D+02 0.668750000000D+02 0.494377735674D-08-0.175114367240D+01
+ 0.344030559063D-05 0.817130343057D-02 0.105313956737D-04 0.515361943626D+04
+ 0.345600000000D+06-0.111758708954D-07-0.758943436035D+00-0.143423676491D-06
+ 0.930570378174D+00 0.162781250000D+03 0.484871847419D+00-0.807140763510D-08
+ -0.151792037033D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.280000000000D+02
+ 0.338400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 0 0 0.0-0.772438943386D-05 0.238742359215D-11 0.000000000000D+00
+ 0.690000000000D+02-0.842187500000D+02 0.388159025524D-08-0.123786169402D+00
+ -0.415928661823D-05 0.871066981927D-02 0.620260834694D-05 0.515378324509D+04
+ 0.345600000000D+06 0.145286321640D-06 0.146801862946D+01 0.521540641785D-07
+ 0.990576863971D+00 0.274531250000D+03 0.396075544902D+00-0.810462330438D-08
+ -0.183221917643D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.690000000000D+02
+ 0.338400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 0 0 0.0-0.203989446163D-03 0.000000000000D+00 0.000000000000D+00
+ 0.370000000000D+02-0.339687500000D+02 0.409874223450D-08-0.967842796640D+00
+ -0.150501728058D-05 0.109772626311D-01 0.104159116745D-04 0.515371793365D+04
+ 0.345600000000D+06-0.428408384323D-07 0.248944856154D+01 0.210478901863D-06
+ 0.976921228828D+00 0.191281250000D+03-0.192708002742D+01-0.787782816758D-08
+ 0.335371119764D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.370000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 0 0 0.0 0.531609635800D-03 0.386535248253D-11 0.000000000000D+00
+ 0.800000000000D+02-0.334687500000D+02 0.580881338896D-08 0.589042504625D+00
+ -0.162795186043D-05 0.172592722811D-01 0.813417136669D-05 0.515369006157D+04
+ 0.345600000000D+06-0.178813934326D-06-0.177912631968D+01 0.745058059692D-07
+ 0.924650865957D+00 0.209812500000D+03-0.187488244326D+01-0.892751472397D-08
+ -0.592881838765D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.121071934700D-07 0.800000000000D+02
+ 0.338400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 0 0 0.0-0.525251030922D-03 0.227373675443D-12 0.000000000000D+00
+ 0.820000000000D+02-0.408125000000D+02 0.405374045442D-08 0.215072150609D+01
+ -0.213459134102D-05 0.107850470813D-01 0.105667859316D-04 0.515363127899D+04
+ 0.345600000000D+06-0.203028321266D-06 0.253813067017D+01-0.221654772759D-06
+ 0.974065791213D+00 0.185281250000D+03 0.804020832592D+00-0.771567876256D-08
+ 0.383587411834D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.820000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 0 0 0.0 0.421398319304D-03 0.227373675443D-11 0.000000000000D+00
+ 0.720000000000D+02-0.350312500000D+02 0.558701843603D-08-0.178834657154D+01
+ -0.180862843990D-05 0.456374289934D-02 0.749528408051D-05 0.515375390053D+04
+ 0.345600000000D+06 0.558793544769D-07-0.183091081235D+01 0.111758708954D-06
+ 0.925946255047D+00 0.216156250000D+03 0.139052659631D+01-0.846785272006D-08
+ -0.431803700643D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.720000000000D+02
+ 0.344640000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 0 0 0.0-0.527155585587D-03-0.102318153950D-11 0.000000000000D+00
+ 0.107000000000D+03-0.406250000000D+00 0.561630537023D-08 0.149516525856D+01
+ -0.404193997383D-06 0.233534701401D-01 0.646896660328D-05 0.515358519554D+04
+ 0.345600000000D+06-0.320374965668D-06-0.282097543409D+01-0.560656189918D-06
+ 0.936907063426D+00 0.248593750000D+03-0.177910819413D+01-0.865857495012D-08
+ 0.389301930274D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.107000000000D+03
+ 0.338418000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 0 0 0.0 0.308414455503D-03-0.898126018001D-11 0.000000000000D+00
+ 0.187000000000D+03-0.380000000000D+02 0.570523764605D-08-0.142955799236D+01
+ -0.195577740669D-05 0.766472541727D-02 0.752881169319D-05 0.515378480148D+04
+ 0.345600000000D+06 0.115483999252D-06-0.177854667058D+01 0.143423676491D-06
+ 0.922564011854D+00 0.211156250000D+03-0.189888838620D+01-0.858071456406D-08
+ -0.489663253583D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.187000000000D+03
+ 0.338610000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 0 0 0.0-0.180182047188D-03-0.159161572810D-11 0.000000000000D+00
+ 0.820000000000D+02 0.654375000000D+02 0.453161733148D-08-0.227898796744D+01
+ 0.325217843056D-05 0.110826848540D-01 0.116974115372D-04 0.515366274643D+04
+ 0.345600000000D+06 0.596046447754D-07-0.700639674238D+00-0.128522515297D-06
+ 0.945829791390D+00 0.143656250000D+03-0.255847282840D+01-0.789854329175D-08
+ -0.535736601294D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.820000000000D+02
+ 0.344970000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 0 0 0.0-0.193654559553D-04-0.568434188608D-12 0.000000000000D+00
+ 0.400000000000D+02 0.738750000000D+02 0.478912805784D-08-0.282476130224D+01
+ 0.388361513615D-05 0.442387221847D-02 0.357627868652D-05 0.515361146927D+04
+ 0.345600000000D+06 0.502914190292D-07 0.324503162939D+00 0.558793544769D-08
+ 0.949389275886D+00 0.305031250000D+03 0.412753965248D+00-0.838820654533D-08
+ 0.192150860998D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.400000000000D+02
+ 0.343740000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 0 0 0.0-0.199439469725D-03-0.704858393874D-11 0.000000000000D+00
+ 0.560000000000D+02-0.697812500000D+02 0.417731685916D-08 0.137613326131D+01
+ -0.378303229809D-05 0.562474690378D-02 0.566430389881D-05 0.515373420525D+04
+ 0.345600000000D+06-0.540167093277D-07 0.139788637332D+01 0.102445483208D-06
+ 0.978281299377D+00 0.277125000000D+03 0.789660711693D+00-0.817819779762D-08
+ -0.238581366443D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.560000000000D+02
+ 0.343770000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 0 0 0.0-0.410020351410D-03-0.105728759081D-10 0.000000000000D+00
+ 0.650000000000D+02-0.851875000000D+02 0.454804658725D-08 0.582785109533D+00
+ -0.434555113316D-05 0.100648787338D-02 0.537559390068D-05 0.515378239441D+04
+ 0.345600000000D+06 0.651925802231D-07 0.138832377815D+01 0.484287738800D-07
+ 0.960243007438D+00 0.275843750000D+03 0.182661752230D+00-0.832998983466D-08
+ -0.205365697163D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.650000000000D+02
+ 0.345300000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 0 0 0.0 0.109130050987D-03 0.432009983342D-11 0.000000000000D+00
+ 0.620000000000D+02-0.475000000000D+02 0.413088635371D-08-0.980750927459D+00
+ -0.244751572609D-05 0.376200419851D-02 0.109393149614D-04 0.515364928627D+04
+ 0.345600000000D+06 0.856816768646D-07 0.243935773302D+01-0.745058059692D-08
+ 0.971838798335D+00 0.171218750000D+03 0.319280873090D+00-0.784211236974D-08
+ 0.394302138552D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.620000000000D+02
+ 0.338400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 0 0 0.0 0.533712096512D-03 0.272848410532D-11 0.000000000000D+00
+ 0.610000000000D+02-0.716562500000D+02 0.395087885568D-08-0.158843446090D+00
+ -0.388361513615D-05 0.197484367527D-01 0.603683292866D-05 0.515362916946D+04
+ 0.345600000000D+06-0.357627868652D-06 0.147293275854D+01 0.912696123123D-07
+ 0.989290887296D+00 0.283250000000D+03-0.161492410519D+01-0.826998733531D-08
+ -0.914323799542D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.111758708954D-07 0.610000000000D+02
+ 0.339090000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 0 0 0.0 0.656144693494D-03-0.568434188608D-12 0.000000000000D+00
+ 0.450000000000D+02-0.232187500000D+02 0.404302555110D-08 0.125980649218D+01
+ -0.141561031342D-05 0.872577307746D-03 0.112373381853D-04 0.515355428696D+04
+ 0.345600000000D+06-0.130385160446D-07 0.249919978682D+01 0.651925802231D-07
+ 0.977911915488D+00 0.176125000000D+03-0.106389773732D+00-0.775175146299D-08
+ 0.393944980818D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.450000000000D+02
+ 0.343770000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 0 0 0.0 0.136506743729D-03 0.250111042988D-11 0.000000000000D+00
+ 0.700000000000D+02 0.731562500000D+02 0.480484299814D-08 0.260764692516D+01
+ 0.382028520107D-05 0.224924681243D-02 0.349991023541D-05 0.515359062958D+04
+ 0.345600000000D+06-0.558793544769D-08 0.415886521972D+00 0.391155481338D-07
+ 0.952066935306D+00 0.307812500000D+03 0.306087803280D+01-0.844213736319D-08
+ 0.108575951196D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.700000000000D+02
+ 0.343170000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 0 0 0.0 0.261378940195D-03-0.193267624127D-11 0.000000000000D+00
+ 0.790000000000D+02 0.742812500000D+02 0.441696990094D-08 0.235614365379D+01
+ 0.392086803913D-05 0.814605015330D-02 0.371411442757D-05 0.515377037811D+04
+ 0.345600000000D+06-0.353902578354D-07 0.381727725681D+00 0.260770320892D-07
+ 0.971111145809D+00 0.315437500000D+03-0.395673858319D+00-0.820284196124D-08
+ 0.657170221019D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.790000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 0 0 0.0-0.360161066055D-04-0.909494701773D-11 0.000000000000D+00
+ 0.105000000000D+03 0.781250000000D+02 0.434410952103D-08-0.617668565221D+00
+ 0.383518636227D-05 0.546455732547D-03 0.114012509584D-04 0.515362732124D+04
+ 0.345600000000D+06 0.465661287308D-07-0.704018210396D+00 0.260770320892D-07
+ 0.959485991220D+00 0.159031250000D+03-0.232532252411D+01-0.796104589523D-08
+ -0.191793703263D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.105000000000D+03
+ 0.338670000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 1 59 28.0 0.531635712832D-03 0.386535248253D-11 0.000000000000D+00
+ 0.230000000000D+02-0.444062500000D+02 0.565166398592D-08 0.163446307751D+01
+ -0.264309346676D-05 0.172597669298D-01 0.781379640102D-05 0.515369319153D+04
+ 0.352768000000D+06-0.234693288803D-06-0.177919087387D+01-0.381842255592D-06
+ 0.924648566250D+00 0.214406250000D+03-0.187479045351D+01-0.855428489173D-08
+ -0.389659088008D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.230000000000D+02
+ 0.350910000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 1 59 28.0-0.410095322877D-03-0.105728759081D-10 0.000000000000D+00
+ 0.100000000000D+01-0.789375000000D+02 0.449804450447D-08 0.162789606751D+01
+ -0.410899519920D-05 0.100702315103D-02 0.537745654583D-05 0.515378341293D+04
+ 0.352768000000D+06 0.000000000000D+00 0.138826449339D+01 0.223517417908D-07
+ 0.960241367507D+00 0.274968750000D+03 0.182997171550D+00-0.830391732006D-08
+ -0.258582199558D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.100000000000D+01
+ 0.350850000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 1 59 44.0 0.581364613026D-03-0.375166564481D-11 0.000000000000D+00
+ 0.700000000000D+01 0.127812500000D+02 0.526914822885D-08-0.163987942345D+01
+ 0.866129994392D-06 0.157896766905D-01 0.609643757343D-05 0.515358434486D+04
+ 0.352784000000D+06 0.260770320892D-06-0.283274290867D+01 0.763684511185D-07
+ 0.943695635294D+00 0.247937500000D+03-0.210507262059D+01-0.827570190154D-08
+ 0.562880575483D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.700000000000D+01
+ 0.345630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 1 59 44.0-0.654094852507D-03-0.147792889038D-11 0.000000000000D+00
+ 0.210000000000D+02 0.167812500000D+02 0.609811115366D-08-0.261848974626D+01
+ 0.745058059692D-06 0.165317491628D-01 0.737793743610D-05 0.515366643143D+04
+ 0.352784000000D+06 0.247731804848D-06 0.311746592921D+01 0.987201929092D-07
+ 0.897381875466D+00 0.195625000000D+03 0.153637016174D+01-0.855464204946D-08
+ 0.702529263164D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.210000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 1 59 44.0-0.525250099599D-03 0.227373675443D-12 0.000000000000D+00
+ 0.100000000000D+01-0.493750000000D+02 0.402695345306D-08-0.308454624355D+01
+ -0.262074172497D-05 0.107864241581D-01 0.108517706394D-04 0.515362855530D+04
+ 0.352784000000D+06 0.000000000000D+00 0.253807597019D+01-0.197440385819D-06
+ 0.974069107648D+00 0.178593750000D+03 0.803973488174D+00-0.758924469393D-08
+ 0.386087510666D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.100000000000D+01
+ 0.350706000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 1 59 44.0-0.527163501829D-03-0.102318153950D-11 0.000000000000D+00
+ 0.200000000000D+01 0.590625000000D+01 0.536165190575D-08 0.254303137112D+01
+ 0.109896063805D-06 0.233528413810D-01 0.570714473724D-05 0.515358732414D+04
+ 0.352784000000D+06 0.221654772759D-06-0.282103452867D+01-0.247731804848D-06
+ 0.936912076846D+00 0.254562500000D+03-0.177906733922D+01-0.808997983728D-08
+ 0.312155859687D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.200000000000D+01
+ 0.346350000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 1 59 44.0 0.308350659907D-03-0.898126018001D-11 0.000000000000D+00
+ 0.110000000000D+02-0.354687500000D+02 0.582345685607D-08-0.381804486455D+00
+ -0.183470547199D-05 0.766483845655D-02 0.774115324020D-05 0.515378451538D+04
+ 0.352784000000D+06-0.502914190292D-07-0.177860952924D+01 0.167638063431D-07
+ 0.922559734282D+00 0.208093750000D+03-0.189885280218D+01-0.879072331177D-08
+ -0.448590114150D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.110000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 2 0 0.0 0.252933241427D-04 0.125055521494D-11 0.000000000000D+00
+ 0.350000000000D+02 0.200000000000D+01 0.488591780380D-08-0.201404620333D+01
+ -0.800937414169D-07 0.563374336343D-02 0.660121440887D-05 0.515363439560D+04
+ 0.352800000000D+06 0.782310962677D-07-0.278650767536D+01-0.931322574615D-07
+ 0.964892526824D+00 0.253812500000D+03 0.481521286643D+00-0.815748264904D-08
+ 0.500735143343D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.350000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 2 0 0.0-0.716177746654D-04-0.318323145621D-11 0.000000000000D+00
+ 0.420000000000D+02-0.362812500000D+02 0.488913222341D-08-0.109418539929D+01
+ -0.196322798729D-05 0.206444761716D-03 0.832974910736D-05 0.515366886520D+04
+ 0.352800000000D+06-0.931322574616D-08-0.174499169080D+01-0.353902578354D-07
+ 0.958914964554D+00 0.215468750000D+03-0.157892533685D+01-0.814462497061D-08
+ -0.480377152494D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.420000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 2 0 0.0-0.258439220488D-03-0.454747350886D-12 0.000000000000D+00
+ 0.490000000000D+02-0.721875000000D+02 0.531665003124D-08 0.117594844812D+01
+ -0.383332371712D-05 0.850120570976D-02 0.580959022045D-05 0.515365558815D+04
+ 0.352800000000D+06-0.912696123123D-07 0.141961747133D+01 0.596046447754D-07
+ 0.983050678567D+00 0.279968750000D+03 0.898864542939D+00-0.814891086342D-08
+ -0.321084803042D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.630000000000D+02-0.195577740669D-07 0.490000000000D+02
+ 0.347700000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 2 0 0.0-0.109046697617D-03 0.284217094304D-11 0.000000000000D+00
+ 0.310000000000D+02-0.425000000000D+02 0.528843457914D-08 0.848322306178D+00
+ -0.194273889065D-05 0.454682158306D-02 0.748038291931D-05 0.515353987694D+04
+ 0.352800000000D+06 0.130385160446D-07-0.175734562582D+01 0.186264514923D-08
+ 0.945978426793D+00 0.225406250000D+03 0.454989859948D+00-0.844070857653D-08
+ -0.472162531295D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.310000000000D+02
+ 0.349740000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 2 0 0.0 0.211830716580D-03 0.534328137292D-11 0.000000000000D+00
+ 0.530000000000D+02 0.946875000000D+01 0.487734601818D-08-0.179279932698D+01
+ 0.594183802605D-06 0.377570046112D-03 0.685453414917D-05 0.515371373939D+04
+ 0.352800000000D+06-0.558793544769D-07-0.279493019067D+01-0.372529029846D-08
+ 0.964720628098D+00 0.250812500000D+03-0.131848490583D+01-0.813962476233D-08
+ 0.462519265784D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.530000000000D+02
+ 0.351540000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 2 0 0.0 0.445228535682D-03-0.250111042988D-11 0.000000000000D+00
+ 0.540000000000D+02 0.851875000000D+02 0.445304262996D-08-0.273182717397D+01
+ 0.428408384323D-05 0.967641663738D-02 0.421889126301D-05 0.515364164734D+04
+ 0.352800000000D+06-0.838190317154D-07 0.372172208112D+00-0.121071934700D-06
+ 0.966301929897D+00 0.301468750000D+03-0.266777183417D+01-0.819284126472D-08
+ 0.185007706314D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.540000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 2 0 0.0-0.409157946706D-04-0.147792889038D-11 0.000000000000D+00
+ 0.860000000000D+02-0.458750000000D+02 0.422946188835D-08 0.927839718694D+00
+ -0.226125121117D-05 0.169422710314D-02 0.113174319267D-04 0.515371630287D+04
+ 0.352800000000D+06 0.149011611938D-07 0.243634192447D+01-0.353902578354D-07
+ 0.963748162082D+00 0.160593750000D+03-0.104843008796D+01-0.791854412486D-08
+ 0.386087510666D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.860000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 2 0 0.0 0.158218201250D-03 0.727595761418D-11 0.000000000000D+00
+ 0.210000000000D+02 0.638437500000D+02 0.439411160381D-08-0.322912394597D+00
+ 0.328570604324D-05 0.532229663804D-03 0.120420008898D-04 0.515356134605D+04
+ 0.352800000000D+06-0.931322574616D-08-0.705637723615D+00-0.111758708954D-07
+ 0.954895860457D+00 0.143000000000D+03 0.239086272284D+01-0.794818821680D-08
+ -0.201079804352D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.210000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 2 0 0.0-0.559180043638D-04-0.773070496507D-11 0.000000000000D+00
+ 0.150000000000D+02-0.290937500000D+02 0.493199115151D-08 0.193791039471D+01
+ -0.147521495819D-05 0.159815303050D-02 0.821240246296D-05 0.515367756271D+04
+ 0.352800000000D+06-0.558793544769D-07-0.174897385914D+01 0.111758708954D-06
+ 0.959148678884D+00 0.222218750000D+03-0.272412094138D+01-0.815212528303D-08
+ -0.390373403476D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.150000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 2 0 0.0 0.384076964110D-03 0.102318153950D-11 0.000000000000D+00
+ 0.960000000000D+02-0.699687500000D+02 0.369872549533D-08 0.296410199054D+01
+ -0.364705920219D-05 0.612647866365D-02 0.543519854546D-05 0.515371033478D+04
+ 0.352800000000D+06-0.242143869400D-07 0.144916305054D+01-0.447034835815D-07
+ 0.990071122951D+00 0.289843750000D+03 0.771671861996D+00-0.781996859022D-08
+ -0.158935191717D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.125728547573D-07 0.960000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 2 0 0.0-0.280234962702D-04-0.250111042988D-11 0.000000000000D+00
+ 0.480000000000D+02 0.726250000000D+02 0.409052747230D-08-0.180937651778D+01
+ 0.366382300854D-05 0.421976193320D-02 0.108107924461D-04 0.515368840408D+04
+ 0.352800000000D+06-0.689178705216D-07-0.584442423093D+00 0.931322574615D-07
+ 0.971350605017D+00 0.175250000000D+03 0.200538245575D+01-0.780068187822D-08
+ -0.211437381492D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.480000000000D+02
+ 0.352230000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 2 0 0.0-0.220197252929D-04-0.204636307899D-11 0.000000000000D+00
+ 0.470000000000D+02 0.850625000000D+02 0.435482425305D-08-0.187070250010D+00
+ 0.449083745480D-05 0.881666271016D-02 0.107157975435D-04 0.515403616905D+04
+ 0.352800000000D+06-0.391155481338D-07-0.621687963365D+00 0.156462192535D-06
+ 0.963813886603D+00 0.175781250000D+03-0.196370782420D+01-0.807319342377D-08
+ -0.144648882349D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.470000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 2 0 0.0-0.317379832268D-03-0.159161572810D-11 0.000000000000D+00
+ 0.370000000000D+02 0.498125000000D+02 0.502199490053D-08-0.700651035259D+00
+ 0.252760946751D-05 0.817204650957D-02 0.104699283838D-04 0.515362392998D+04
+ 0.352800000000D+06 0.167638063431D-06-0.759001155468D+00 0.968575477600D-07
+ 0.930567866344D+00 0.163343750000D+03 0.484594429875D+00-0.830320300459D-08
+ -0.319299014371D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.370000000000D+02
+ 0.351840000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 2 0 0.0-0.770762562752D-05 0.238742359215D-11 0.000000000000D+00
+ 0.700000000000D+02-0.798750000000D+02 0.375265631320D-08 0.926273844829D+00
+ -0.405870378017D-05 0.871116609778D-02 0.641122460365D-05 0.515378443337D+04
+ 0.352800000000D+06-0.633299350738D-07 0.146796168245D+01 0.171363353729D-06
+ 0.990575589769D+00 0.271468750000D+03 0.396123783163D+00-0.795461705601D-08
+ -0.329656588663D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.700000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 2 0 0.0-0.203988980502D-03 0.000000000000D+00 0.000000000000D+00
+ 0.580000000000D+02-0.462812500000D+02 0.408124142866D-08 0.822262642768D-01
+ -0.255554914475D-05 0.109757642494D-01 0.106133520603D-04 0.515371460533D+04
+ 0.352800000000D+06-0.115483999252D-06 0.248939130000D+01 0.949949026108D-07
+ 0.976923515369D+00 0.188250000000D+03-0.192699691612D+01-0.794140221985D-08
+ 0.342514267094D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.580000000000D+02
+ 0.349950000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 2 0 0.0 0.531637575477D-03 0.386535248253D-11 0.000000000000D+00
+ 0.820000000000D+02-0.444062500000D+02 0.565166398592D-08 0.163913047815D+01
+ -0.264309346676D-05 0.172597609926D-01 0.781379640102D-05 0.515369318199D+04
+ 0.352800000000D+06-0.234693288803D-06-0.177919113719D+01-0.381842255592D-06
+ 0.924648567713D+00 0.214406250000D+03-0.187479035842D+01-0.855428489173D-08
+ -0.389659088008D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.121071934700D-07 0.820000000000D+02
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 2 0 0.0-0.525249633938D-03 0.227373675443D-12 0.000000000000D+00
+ 0.105000000000D+03-0.493750000000D+02 0.402695343737D-08-0.308221254543D+01
+ -0.262074172497D-05 0.107864267193D-01 0.108517706394D-04 0.515362856293D+04
+ 0.352800000000D+06 0.000000000000D+00 0.253807588096D+01-0.197440385819D-06
+ 0.974069101796D+00 0.178593750000D+03 0.803973482323D+00-0.758924478816D-08
+ 0.386087523063D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.149011611938D-07 0.105000000000D+03
+ 0.345630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 2 0 0.0 0.421414151788D-03 0.227373675443D-11 0.000000000000D+00
+ 0.730000000000D+02-0.359687500000D+02 0.570523764605D-08-0.738007037550D+00
+ -0.182352960110D-05 0.456384639256D-02 0.711530447006D-05 0.515375560379D+04
+ 0.352800000000D+06-0.143423676491D-06-0.183097278449D+01 0.372529029846D-08
+ 0.925942240800D+00 0.223062500000D+03 0.139032640328D+01-0.869536219674D-08
+ -0.401802450971D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.730000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 2 0 0.0-0.180193688720D-03-0.159161572810D-11 0.000000000000D+00
+ 0.830000000000D+02 0.769062500000D+02 0.463697886307D-08-0.122893695601D+01
+ 0.383146107197D-05 0.110825985903D-01 0.115260481834D-04 0.515365996742D+04
+ 0.352800000000D+06 0.266358256340D-06-0.700696049249D+00-0.875443220139D-07
+ 0.945828887307D+00 0.147468750000D+03-0.255833589634D+01-0.799569019545D-08
+ -0.170721396946D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.830000000000D+02
+ 0.347400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 2 0 0.0-0.193696469069D-04-0.568434188608D-12 0.000000000000D+00
+ 0.420000000000D+02 0.810000000000D+02 0.474876923387D-08-0.177424876648D+01
+ 0.429898500442D-05 0.442273798399D-02 0.418163836002D-05 0.515361470604D+04
+ 0.352800000000D+06-0.130385160446D-07 0.324443380792D+00-0.819563865662D-07
+ 0.949390468164D+00 0.294968750000D+03 0.412460904721D+00-0.836141971527D-08
+ 0.100004165575D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.420000000000D+02
+ 0.345618000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 2 0 0.0-0.199489761144D-03-0.704858393874D-11 0.000000000000D+00
+ 0.710000000000D+02-0.712187500000D+02 0.401230998596D-08 0.242611857017D+01
+ -0.371783971786D-05 0.562392920256D-02 0.521913170815D-05 0.515373625946D+04
+ 0.352800000000D+06-0.335276126862D-07 0.139782758303D+01-0.745058059692D-07
+ 0.978280538660D+00 0.287781250000D+03 0.789816518320D+00-0.801711965950D-08
+ -0.168935608275D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.710000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 2 0 0.0-0.410096719861D-03-0.105728759081D-10 0.000000000000D+00
+ 0.680000000000D+02-0.789375000000D+02 0.449804450447D-08 0.163255709129D+01
+ -0.410899519920D-05 0.100702187046D-02 0.537745654583D-05 0.515378341293D+04
+ 0.352800000000D+06 0.000000000000D+00 0.138826422422D+01 0.223517417908D-07
+ 0.960241373359D+00 0.274968750000D+03 0.183003305565D+00-0.830391732006D-08
+ -0.258582199558D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.680000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 2 0 0.0 0.109160784632D-03 0.432009983342D-11 0.000000000000D+00
+ 0.630000000000D+02-0.412500000000D+02 0.410159941951D-08 0.693037749176D-01
+ -0.204890966415D-05 0.376180058811D-02 0.112503767013D-04 0.515364850998D+04
+ 0.352800000000D+06 0.633299350738D-07 0.243930116344D+01 0.298023223877D-07
+ 0.971841414033D+00 0.169843750000D+03 0.319419796180D+00-0.788175687824D-08
+ 0.383587406527D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.630000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 2 0 0.0 0.533731188625D-03 0.272848410532D-11 0.000000000000D+00
+ 0.620000000000D+02-0.819687500000D+02 0.394409285873D-08 0.891318378462D+00
+ -0.443123281002D-05 0.197487751720D-01 0.586174428463D-05 0.515363036919D+04
+ 0.352800000000D+06-0.223517417908D-06 0.147287402531D+01-0.217929482460D-06
+ 0.989289084981D+00 0.285875000000D+03-0.161488197022D+01-0.830248868912D-08
+ -0.310727228751D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.111758708954D-07 0.620000000000D+02
+ 0.345960000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 2 0 0.0 0.656140502542D-03-0.568434188608D-12 0.000000000000D+00
+ 0.460000000000D+02-0.277187500000D+02 0.395552190622D-08 0.231064113909D+01
+ -0.157020986080D-05 0.872323638760D-03 0.106226652861D-04 0.515355345917D+04
+ 0.352800000000D+06-0.186264514923D-07 0.249914418423D+01 0.111758708954D-07
+ 0.977914569221D+00 0.180468750000D+03-0.106973672614D+00-0.775032283205D-08
+ 0.353586156854D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.460000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 2 0 0.0 0.136524904519D-03 0.250111042988D-11 0.000000000000D+00
+ 0.710000000000D+02 0.789062500000D+02 0.486448833975D-08-0.262515979397D+01
+ 0.406801700592D-05 0.225011503790D-02 0.375695526600D-05 0.515358898926D+04
+ 0.352800000000D+06-0.670552253723D-07 0.415825592897D+00 0.186264514923D-07
+ 0.952067519011D+00 0.302531250000D+03 0.306073432890D+01-0.849035365731D-08
+ 0.113576159474D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.710000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 2 0 0.0 0.261364970356D-03-0.193267624127D-11 0.000000000000D+00
+ 0.810000000000D+02 0.711250000000D+02 0.442339853802D-08-0.287692366810D+01
+ 0.367499887943D-05 0.814553280361D-02 0.362284481525D-05 0.515377131844D+04
+ 0.352800000000D+06-0.391155481338D-07 0.381668670604D+00 0.316649675369D-07
+ 0.971111584684D+00 0.318000000000D+03-0.395670863725D+00-0.820891336276D-08
+ 0.632169189527D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.810000000000D+02
+ 0.345600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 2 0 0.0-0.360817648470D-04-0.909494701773D-11 0.000000000000D+00
+ 0.106000000000D+03 0.742187500000D+02 0.441125517506D-08 0.433584834674D+00
+ 0.391900539398D-05 0.546019524336D-03 0.109374523163D-04 0.515362660599D+04
+ 0.352800000000D+06 0.186264514923D-08-0.704075316866D+00 0.447034835815D-07
+ 0.959484621929D+00 0.167687500000D+03-0.232636833353D+01-0.793711632704D-08
+ -0.217509060125D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00 0.465661287308D-09 0.106000000000D+03
+ 0.345600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 3 59 28.0-0.410171691328D-03-0.105728759081D-10 0.000000000000D+00
+ 0.150000000000D+02-0.685312500000D+02 0.454590364085D-08 0.267944408594D+01
+ -0.358931720257D-05 0.100751104765D-02 0.509619712830D-05 0.515378064346D+04
+ 0.359968000000D+06 0.745058059692D-08 0.138820471564D+01 0.186264514923D-07
+ 0.960239467177D+00 0.281187500000D+03 0.181564373491D+00-0.830713173967D-08
+ -0.263582407837D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.150000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 3 59 44.0-0.525248702616D-03 0.227373675443D-12 0.000000000000D+00
+ 0.200000000000D+01-0.483125000000D+02 0.391516308226D-08-0.203428424861D+01
+ -0.270456075668D-05 0.107856860850D-01 0.107958912849D-04 0.515363032150D+04
+ 0.359984000000D+06 0.143423676491D-06 0.253802030470D+01-0.558793544769D-07
+ 0.974072368493D+00 0.171281250000D+03 0.803916175433D+00-0.763603235711D-08
+ 0.536808074497D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.200000000000D+01
+ 0.354090000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 3 59 44.0 0.421431381255D-03 0.227373675443D-11 0.000000000000D+00
+ 0.130000000000D+02-0.432812500000D+02 0.581881387518D-08 0.309729103517D+00
+ -0.210106372833D-05 0.456248736009D-02 0.688247382641D-05 0.515375293732D+04
+ 0.359984000000D+06-0.242143869400D-07-0.183103600595D+01-0.111758708954D-07
+ 0.925939549030D+00 0.229718750000D+03 0.139039757132D+01-0.875500738573D-08
+ -0.322156273880D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.130000000000D+02
+ 0.355950000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 3 59 44.0 0.533752609044D-03 0.272848410532D-11 0.000000000000D+00
+ 0.400000000000D+01-0.914062500000D+02 0.373586989969D-08 0.193917752753D+01
+ -0.493414700031D-05 0.197494596941D-01 0.559166073799D-05 0.515363088608D+04
+ 0.359984000000D+06 0.335276126862D-06 0.147281567682D+01-0.327825546265D-06
+ 0.989289376102D+00 0.284406250000D+03-0.161487314737D+01-0.778496713227D-08
+ -0.271439877989D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.400000000000D+01
+ 0.354000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 4 0 0.0 0.253026373684D-04 0.125055521494D-11 0.000000000000D+00
+ 0.360000000000D+02 0.378125000000D+01 0.486055960467D-08-0.963924208181D+00
+ 0.281259417534D-06 0.563388539012D-02 0.631436705589D-05 0.515363349915D+04
+ 0.360000000000D+06 0.139698386192D-06-0.278656625498D+01-0.931322574616D-08
+ 0.964895928108D+00 0.257656250000D+03 0.481607116047D+00-0.821034199370D-08
+ 0.464662212189D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.360000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 4 0 0.0 0.581337604672D-03-0.375166564481D-11 0.000000000000D+00
+ 0.800000000000D+01 0.147500000000D+02 0.539701039415D-08-0.587379340856D+00
+ 0.105425715446D-05 0.157891127747D-01 0.709109008312D-05 0.515358179855D+04
+ 0.360000000000D+06-0.819563865662D-07-0.283280373095D+01 0.242143869400D-06
+ 0.943697838449D+00 0.238968750000D+03-0.210499680632D+01-0.865821814244D-08
+ 0.521450271851D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.800000000000D+01
+ 0.352830000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 4 0 0.0-0.716410577297D-04-0.318323145621D-11 0.000000000000D+00
+ 0.430000000000D+02-0.333750000000D+02 0.495484924650D-08-0.424513123133D-01
+ -0.168755650520D-05 0.206487951800D-03 0.829249620438D-05 0.515366925049D+04
+ 0.360000000000D+06 0.115483999252D-06-0.174505102383D+01-0.130385160446D-07
+ 0.958911596917D+00 0.218187500000D+03-0.158047284817D+01-0.820105589261D-08
+ -0.391444876679D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.430000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 4 0 0.0-0.258442480117D-03-0.454747350886D-12 0.000000000000D+00
+ 0.500000000000D+02-0.734687500000D+02 0.519485924388D-08 0.222605953867D+01
+ -0.391528010368D-05 0.850059511140D-02 0.533275306225D-05 0.515365711212D+04
+ 0.360000000000D+06-0.484287738800D-07 0.141955879368D+01-0.137835741043D-06
+ 0.983049391199D+00 0.289406250000D+03 0.898951280815D+00-0.796890336538D-08
+ -0.244653047924D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.630000000000D+02-0.195577740669D-07 0.500000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 4 0 0.0-0.109026674181D-03 0.284217094304D-11 0.000000000000D+00
+ 0.680000000000D+02-0.443125000000D+02 0.532879339421D-08 0.189856277867D+01
+ -0.215880572796D-05 0.454673671629D-02 0.772811472416D-05 0.515354007340D+04
+ 0.360000000000D+06-0.104308128357D-06-0.175740683139D+01 0.558793544769D-07
+ 0.945975436588D+00 0.225468750000D+03 0.455018233244D+00-0.839570685775D-08
+ -0.375015620906D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.680000000000D+02
+ 0.356700000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 4 0 0.0 0.211868900806D-03 0.534328137292D-11 0.000000000000D+00
+ 0.540000000000D+02 0.593750000000D+01 0.483698719422D-08-0.744260106792D+00
+ 0.128522515297D-06 0.377434422262D-03 0.708363950253D-05 0.515371255112D+04
+ 0.360000000000D+06-0.931322574616D-08-0.279498897510D+01-0.409781932831D-07
+ 0.964723935756D+00 0.248156250000D+03-0.131686474747D+01-0.816391148825D-08
+ 0.486805991709D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.540000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 4 0 0.0 0.445210840553D-03-0.250111042988D-11 0.000000000000D+00
+ 0.550000000000D+02 0.791875000000D+02 0.452983154281D-08-0.168176467570D+01
+ 0.401027500629D-05 0.967756996397D-02 0.367127358913D-05 0.515363834763D+04
+ 0.360000000000D+06-0.186264514923D-08 0.372113284698D+00-0.214204192162D-06
+ 0.966303246523D+00 0.312906250000D+03-0.266763295058D+01-0.821784230612D-08
+ 0.144648882349D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.550000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 4 0 0.0-0.409260392189D-04-0.147792889038D-11 0.000000000000D+00
+ 0.930000000000D+02-0.369062500000D+02 0.410088510404D-08 0.197719014012D+01
+ -0.192038714886D-05 0.169420032762D-02 0.111851841211D-04 0.515371883011D+04
+ 0.360000000000D+06 0.558793544769D-08 0.243628547485D+01 0.633299350738D-07
+ 0.963751191785D+00 0.165250000000D+03-0.104762886967D+01-0.783032616451D-08
+ 0.344300055765D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.930000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 4 0 0.0 0.158270355314D-03 0.727595761418D-11 0.000000000000D+00
+ 0.260000000000D+02 0.768437500000D+02 0.449304429619D-08 0.727140581535D+00
+ 0.376999378204D-05 0.530611374415D-03 0.119358301163D-04 0.515355840683D+04
+ 0.360000000000D+06-0.745058059692D-08-0.705694947119D+00 0.000000000000D+00
+ 0.954894356577D+00 0.143531250000D+03 0.239106023141D+01-0.795747431789D-08
+ -0.205722854897D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.260000000000D+02
+ 0.358260000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 4 0 0.0-0.559734180570D-04-0.773070496507D-11 0.000000000000D+00
+ 0.160000000000D+02-0.325312500000D+02 0.487413159857D-08 0.298770011581D+01
+ -0.166520476341D-05 0.159735558555D-02 0.789389014244D-05 0.515367946625D+04
+ 0.360000000000D+06-0.745058059692D-07-0.174903246657D+01 0.130385160446D-07
+ 0.959146205089D+00 0.228656250000D+03-0.272372985657D+01-0.810355183118D-08
+ -0.359657838335D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.160000000000D+02
+ 0.356070000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 4 0 0.0-0.654106028378D-03-0.147792889038D-11 0.000000000000D+00
+ 0.220000000000D+02 0.241562500000D+02 0.613168398068D-08-0.156599168250D+01
+ 0.169873237610D-05 0.165324533591D-01 0.761263072491D-05 0.515366487312D+04
+ 0.360000000000D+06 0.124797224999D-06 0.311740431988D+01 0.419095158577D-06
+ 0.897385643943D+00 0.197718750000D+03 0.153640297207D+01-0.882965350480D-08
+ 0.612882671880D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.220000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 4 0 0.0 0.384084414691D-03 0.102318153950D-11 0.000000000000D+00
+ 0.970000000000D+02-0.793750000000D+02 0.376837125350D-08-0.226905012355D+01
+ -0.406056642532D-05 0.612817634828D-02 0.498257577419D-05 0.515370688248D+04
+ 0.360000000000D+06-0.540167093277D-07 0.144910693154D+01-0.100582838059D-06
+ 0.990069933598D+00 0.299468750000D+03 0.771792346466D+00-0.781318259327D-08
+ -0.197151069276D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.125728547573D-07 0.970000000000D+02
+ 0.353160000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 4 0 0.0-0.280416570604D-04-0.250111042988D-11 0.000000000000D+00
+ 0.490000000000D+02 0.734375000000D+02 0.423981960651D-08-0.759252401407D+00
+ 0.396743416786D-05 0.422028079629D-02 0.111591070890D-04 0.515368833351D+04
+ 0.360000000000D+06 0.130385160446D-07-0.584499829461D+00-0.689178705216D-07
+ 0.971348896329D+00 0.166968750000D+03 0.200542887268D+01-0.794497356793D-08
+ -0.113576162364D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.490000000000D+02
+ 0.352830000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 4 0 0.0-0.220341607928D-04-0.204636307899D-11 0.000000000000D+00
+ 0.480000000000D+02 0.753437500000D+02 0.437732519031D-08 0.862813415299D+00
+ 0.403821468353D-05 0.881655234843D-02 0.109784305096D-04 0.515403639412D+04
+ 0.360000000000D+06-0.135973095894D-06-0.621745498470D+00 0.465661287308D-07
+ 0.963812445628D+00 0.174000000000D+03-0.196363270043D+01-0.804390648956D-08
+ -0.237509893240D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.480000000000D+02
+ 0.352800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 4 0 0.0-0.317391473800D-03-0.159161572810D-11 0.000000000000D+00
+ 0.380000000000D+02 0.410625000000D+02 0.523700371957D-08 0.349520783949D+00
+ 0.233948230743D-05 0.816995336208D-02 0.107940286398D-04 0.515361987495D+04
+ 0.360000000000D+06 0.391155481338D-07-0.759061454025D+00 0.949949026108D-07
+ 0.930565183352D+00 0.151031250000D+03 0.484639650135D+00-0.839427816146D-08
+ -0.321084797639D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.380000000000D+02
+ 0.358380000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 4 0 0.0-0.769086182117D-05 0.238742359215D-11 0.000000000000D+00
+ 0.910000000000D+02-0.727500000000D+02 0.383087384037D-08 0.197654368394D+01
+ -0.382214784622D-05 0.871113908943D-02 0.620260834694D-05 0.515378179932D+04
+ 0.360000000000D+06-0.128522515297D-06 0.146790450430D+01 0.726431608200D-07
+ 0.990573039903D+00 0.278812500000D+03 0.395962557887D+00-0.792711585262D-08
+ -0.349300255387D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.910000000000D+02
+ 0.352830000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 4 0 0.0-0.203988514841D-03 0.000000000000D+00 0.000000000000D+00
+ 0.610000000000D+02-0.555937500000D+02 0.388016162431D-08 0.113223126840D+01
+ -0.290758907795D-05 0.109781342326D-01 0.111479312182D-04 0.515372007179D+04
+ 0.360000000000D+06-0.199303030968D-06 0.248933410429D+01 0.204890966415D-07
+ 0.976925923332D+00 0.170343750000D+03-0.192685163519D+01-0.790640076190D-08
+ 0.347514475373D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.610000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 4 0 0.0 0.531663186848D-03 0.386535248253D-11 0.000000000000D+00
+ 0.240000000000D+02-0.455937500000D+02 0.560809074235D-08 0.268927559032D+01
+ -0.243820250034D-05 0.172597076744D-01 0.710226595402D-05 0.515369408989D+04
+ 0.360000000000D+06 0.745058059692D-07-0.177925121485D+01-0.258907675743D-06
+ 0.924646766861D+00 0.219437500000D+03-0.187475944111D+01-0.829248827257D-08
+ -0.412517182997D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.240000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 4 0 0.0 0.421430449933D-03 0.227373675443D-11 0.000000000000D+00
+ 0.149000000000D+03-0.432812500000D+02 0.581881387518D-08 0.312062242805D+00
+ -0.210106372833D-05 0.456248561386D-02 0.688247382641D-05 0.515375294304D+04
+ 0.360000000000D+06-0.242143869400D-07-0.183103616395D+01-0.111758708954D-07
+ 0.925939541716D+00 0.229718750000D+03 0.139039808919D+01-0.875500738573D-08
+ -0.322156273880D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.149000000000D+03
+ 0.355860000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 4 0 0.0-0.527170486748D-03-0.102318153950D-11 0.000000000000D+00
+ 0.120000000000D+02 0.150625000000D+02 0.528914888571D-08-0.268759337351D+01
+ 0.523403286934D-06 0.233509588288D-01 0.600144267082D-05 0.515359077835D+04
+ 0.360000000000D+06 0.428408384323D-06-0.282109481113D+01 0.106170773506D-06
+ 0.936915020237D+00 0.243750000000D+03-0.177905470546D+01-0.816069706865D-08
+ 0.610382567741D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.120000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 4 0 0.0 0.308286398649D-03-0.898126018001D-11 0.000000000000D+00
+ 0.190000000000D+02-0.348125000000D+02 0.592488965258D-08 0.670689106630D+00
+ -0.172294676304D-05 0.766414531972D-02 0.774301588535D-05 0.515378312683D+04
+ 0.360000000000D+06-0.335276126862D-07-0.177867331540D+01 0.800937414169D-07
+ 0.922556653376D+00 0.213843750000D+03-0.189888950094D+01-0.879822362419D-08
+ -0.390016245742D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.190000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 4 0 0.0-0.180204864591D-03-0.159161572810D-11 0.000000000000D+00
+ 0.840000000000D+02 0.793750000000D+02 0.477484174847D-08-0.178692252758D+00
+ 0.400841236115D-05 0.110838178080D-01 0.109504908323D-04 0.515366246414D+04
+ 0.360000000000D+06 0.465661287308D-07-0.700754416754D+00 0.124797224999D-06
+ 0.945826119466D+00 0.158062500000D+03-0.255839048952D+01-0.829284543030D-08
+ -0.227866634417D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.840000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 4 0 0.0-0.193738378584D-04-0.568434188608D-12 0.000000000000D+00
+ 0.430000000000D+02 0.867812500000D+02 0.489627537809D-08-0.724176103859D+00
+ 0.441260635853D-05 0.442226196174D-02 0.431016087532D-05 0.515361325073D+04
+ 0.360000000000D+06 0.894069671631D-07 0.324383513795D+00 0.763684511185D-07
+ 0.949390383314D+00 0.291906250000D+03 0.412606990257D+00-0.850142554707D-08
+ -0.214294640518D-11 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.430000000000D+02
+ 0.359670000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 4 0 0.0-0.199540052563D-03-0.704858393874D-11 0.000000000000D+00
+ 0.780000000000D+02-0.711250000000D+02 0.399802367659D-08-0.280703045423D+01
+ -0.362657010555D-05 0.562360603362D-02 0.481493771076D-05 0.515373706055D+04
+ 0.360000000000D+06-0.223517417908D-07 0.139777015179D+01-0.298023223877D-07
+ 0.978279410750D+00 0.295906250000D+03 0.789918191126D+00-0.797961809741D-08
+ -0.185007706314D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.780000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 4 0 0.0 0.109191983938D-03 0.432009983342D-11 0.000000000000D+00
+ 0.810000000000D+02-0.367500000000D+02 0.398480884043D-08 0.111952050864D+01
+ -0.202469527721D-05 0.376238487661D-02 0.109467655420D-04 0.515364933014D+04
+ 0.360000000000D+06-0.912696123123D-07 0.243924536921D+01 0.800937414169D-07
+ 0.971844113117D+00 0.174875000000D+03 0.319394809539D+00-0.779068165602D-08
+ 0.281440294547D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.810000000000D+02
+ 0.357090000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 4 0 0.0 0.533750746399D-03 0.272848410532D-11 0.000000000000D+00
+ 0.740000000000D+02-0.914062500000D+02 0.373586989969D-08 0.194151138072D+01
+ -0.493414700031D-05 0.197494592285D-01 0.559166073799D-05 0.515363088989D+04
+ 0.360000000000D+06 0.335276126862D-06 0.147281554662D+01-0.327825546265D-06
+ 0.989289370250D+00 0.284406250000D+03-0.161487325416D+01-0.778496713227D-08
+ -0.271082720255D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.111758708954D-07 0.740000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 4 0 0.0 0.656136777252D-03-0.568434188608D-12 0.000000000000D+00
+ 0.500000000000D+02-0.426562500000D+02 0.378872924435D-08-0.292339803878D+01
+ -0.209920108318D-05 0.870218849741D-03 0.103972852230D-04 0.515355778313D+04
+ 0.360000000000D+06 0.111758708954D-07 0.249908841487D+01-0.279396772385D-07
+ 0.977917344377D+00 0.188531250000D+03-0.105871679832D+00-0.770639243075D-08
+ 0.365015204348D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.500000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 4 0 0.0 0.136543530971D-03 0.250111042988D-11 0.000000000000D+00
+ 0.720000000000D+02 0.748437500000D+02 0.487841749138D-08-0.157527898282D+01
+ 0.381842255592D-05 0.225030351430D-02 0.351294875145D-05 0.515358751297D+04
+ 0.360000000000D+06-0.987201929092D-07 0.415764536548D+00-0.242143869400D-07
+ 0.952068317764D+00 0.307812500000D+03 0.306108881882D+01-0.848785355317D-08
+ 0.903609067516D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.720000000000D+02
+ 0.352800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 4 0 0.0 0.261351000518D-03-0.193267624127D-11 0.000000000000D+00
+ 0.890000000000D+02 0.715937500000D+02 0.448840124564D-08-0.182679959562D+01
+ 0.375881791115D-05 0.814559578430D-02 0.364147126675D-05 0.515377128410D+04
+ 0.360000000000D+06-0.540167093277D-07 0.381609023045D+00-0.689178705216D-07
+ 0.971111776326D+00 0.317031250000D+03-0.395673956334D+00-0.829605984991D-08
+ 0.989326923723D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.890000000000D+02
+ 0.352800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 4 0 0.0-0.361478887498D-04-0.909494701773D-11 0.000000000000D+00
+ 0.107000000000D+03 0.647812500000D+02 0.442554148442D-08 0.148234446834D+01
+ 0.340864062309D-05 0.545877846889D-03 0.111069530249D-04 0.515362767410D+04
+ 0.360000000000D+06-0.316649675369D-07-0.704132465761D+00 0.279396772385D-07
+ 0.959483037588D+00 0.167375000000D+03-0.232491853782D+01-0.792533012181D-08
+ -0.214294640518D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00 0.465661287308D-09 0.107000000000D+03
+ 0.352800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 5 59 44.0-0.409400090575D-04-0.147792889038D-11 0.000000000000D+00
+ 0.200000000000D+01-0.380000000000D+02 0.413195788696D-08 0.302550198334D+01
+ -0.201910734177D-05 0.169547554105D-02 0.106021761894D-04 0.515371596527D+04
+ 0.367184000000D+06-0.223517417908D-07 0.243622987226D+01-0.596046447754D-07
+ 0.963753334960D+00 0.176343750000D+03-0.104812358468D+01-0.781889752943D-08
+ 0.233581154419D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.200000000000D+01
+ 0.361290000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 5 59 44.0 0.384091865271D-03 0.102318153950D-11 0.000000000000D+00
+ 0.200000000000D+01-0.829375000000D+02 0.388301879539D-08-0.122115991087D+01
+ -0.432878732681D-05 0.612823793199D-02 0.495277345181D-05 0.515370762253D+04
+ 0.367184000000D+06 0.249594449997D-06 0.144905156156D+01 0.149011611938D-07
+ 0.990067180386D+00 0.300281250000D+03 0.771723236753D+00-0.800354804653D-08
+ -0.409302758353D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.200000000000D+01
+ 0.366720000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 5 59 44.0 0.421447679400D-03 0.227373675443D-11 0.000000000000D+00
+ 0.140000000000D+02-0.439375000000D+02 0.580988486217D-08 0.135985739360D+01
+ -0.228732824326D-05 0.456254894380D-02 0.693090260029D-05 0.515375309563D+04
+ 0.367184000000D+06-0.931322574615D-07-0.183109925960D+01-0.949949026108D-07
+ 0.925937650163D+00 0.229468750000D+03 0.139041131397D+01-0.867929009870D-08
+ -0.262868092368D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.140000000000D+02
+ 0.365760000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 5 59 44.0 0.533772166818D-03 0.272848410532D-11 0.000000000000D+00
+ 0.500000000000D+01-0.919062500000D+02 0.369372528706D-08 0.298939508926D+01
+ -0.463984906673D-05 0.197491227882D-01 0.590831041336D-05 0.515363100052D+04
+ 0.367184000000D+06 0.230967998505D-06 0.147276164394D+01-0.745058059692D-08
+ 0.989287534288D+00 0.277500000000D+03-0.161488950425D+01-0.757638701550D-08
+ -0.395016454021D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.500000000000D+01
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 5 59 44.0-0.362112186849D-04-0.909494701773D-11 0.000000000000D+00
+ 0.220000000000D+02 0.579062500000D+02 0.443697053192D-08 0.252991008582D+01
+ 0.300630927086D-05 0.546467490494D-03 0.112969428301D-04 0.515362747574D+04
+ 0.367184000000D+06-0.242143869400D-07-0.704189339627D+00-0.204890966415D-07
+ 0.959481735591D+00 0.161437500000D+03-0.232461022491D+01-0.788675708652D-08
+ -0.198579700213D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.220000000000D+02
+ 0.364080000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 6 0 0.0 0.253114849329D-04 0.125055521494D-11 0.000000000000D+00
+ 0.650000000000D+02 0.471875000000D+01 0.480377152494D-08 0.863333087688D-01
+ 0.335276126862D-06 0.563456502277D-02 0.630505383015D-05 0.515363490677D+04
+ 0.367200000000D+06 0.856816768646D-07-0.278662555144D+01 0.409781932831D-07
+ 0.964899019254D+00 0.262718750000D+03 0.481556932105D+00-0.825784397235D-08
+ 0.453233164695D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.650000000000D+02
+ 0.360000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 6 0 0.0 0.581310596317D-03-0.375166564481D-11 0.000000000000D+00
+ 0.180000000000D+02 0.103125000000D+02 0.528879172798D-08 0.462854056964D+00
+ 0.391155481339D-06 0.157885585213D-01 0.695884227753D-05 0.515358072090D+04
+ 0.367200000000D+06-0.232830643654D-06-0.283286572064D+01 0.115483999252D-06
+ 0.943701473800D+00 0.238750000000D+03-0.210498687603D+01-0.863714548606D-08
+ 0.429303596504D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.180000000000D+02
+ 0.365880000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 6 0 0.0-0.716638751328D-04-0.318323145621D-11 0.000000000000D+00
+ 0.440000000000D+02-0.313750000000D+02 0.496770692493D-08 0.100822868221D+01
+ -0.161863863468D-05 0.205644173548D-03 0.804103910923D-05 0.515366775513D+04
+ 0.367200000000D+06-0.186264514923D-07-0.174511046512D+01 0.409781932831D-07
+ 0.958909379133D+00 0.225187500000D+03-0.158096479387D+01-0.814462497061D-08
+ -0.283940398686D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.440000000000D+02
+ 0.360000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 6 0 0.0-0.258446205407D-03-0.454747350886D-12 0.000000000000D+00
+ 0.580000000000D+02-0.726875000000D+02 0.517914430358D-08-0.300701701716D+01
+ -0.371411442757D-05 0.850008742418D-02 0.480934977531D-05 0.515365851021D+04
+ 0.367200000000D+06 0.149011611938D-07 0.141950187885D+01-0.707805156708D-07
+ 0.983047830265D+00 0.298437500000D+03 0.899037181902D+00-0.790461497323D-08
+ -0.258582199558D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.630000000000D+02-0.195577740669D-07 0.580000000000D+02
+ 0.362040000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 6 0 0.0-0.109006185085D-03 0.284217094304D-11 0.000000000000D+00
+ 0.700000000000D+02-0.412187500000D+02 0.529236330532D-08 0.294896534248D+01
+ -0.209361314774D-05 0.454748084303D-02 0.798702239990D-05 0.515353827286D+04
+ 0.367200000000D+06-0.186264514923D-07-0.175746700414D+01-0.856816768646D-07
+ 0.945973562590D+00 0.219250000000D+03 0.454884673212D+00-0.824534345165D-08
+ -0.332871008271D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.700000000000D+02
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 6 0 0.0 0.211907085031D-03 0.534328137292D-11 0.000000000000D+00
+ 0.890000000000D+02 0.609375000000D+01 0.473305429357D-08 0.305592433472D+00
+ 0.182539224625D-06 0.376938260160D-03 0.641867518425D-05 0.515371158409D+04
+ 0.367200000000D+06-0.372529029846D-08-0.279504787365D+01-0.130385160446D-07
+ 0.964727530145D+00 0.251718750000D+03-0.131655784042D+01-0.816498296146D-08
+ 0.508592613495D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.890000000000D+02
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 6 0 0.0 0.445192679763D-03-0.250111042988D-11 0.000000000000D+00
+ 0.610000000000D+02 0.725000000000D+02 0.465447959204D-08-0.631472190620D+00
+ 0.363960862160D-05 0.967788090929D-02 0.358186662197D-05 0.515364008903D+04
+ 0.367200000000D+06 0.165775418282D-06 0.372054432966D+00 0.633299350738D-07
+ 0.966302715484D+00 0.313375000000D+03-0.266772374952D+01-0.846963850873D-08
+ -0.285726187357D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.610000000000D+02
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 6 0 0.0-0.409367494285D-04-0.147792889038D-11 0.000000000000D+00
+ 0.940000000000D+02-0.380000000000D+02 0.413195788696D-08 0.302783137902D+01
+ -0.201910734177D-05 0.169548287522D-02 0.106003135443D-04 0.515371596909D+04
+ 0.367200000000D+06-0.223517417908D-07 0.243622975230D+01-0.596046447754D-07
+ 0.963753329109D+00 0.176343750000D+03-0.104811932174D+01-0.781889752943D-08
+ 0.233581154419D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.940000000000D+02
+ 0.360030000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 6 0 0.0 0.158322975040D-03 0.727595761418D-11 0.000000000000D+00
+ 0.270000000000D+02 0.769375000000D+02 0.454768942952D-08 0.177634591660D+01
+ 0.398978590965D-05 0.531413825229D-03 0.113341957331D-04 0.515355986404D+04
+ 0.367200000000D+06 0.111758708954D-07-0.705752517334D+00-0.465661287308D-07
+ 0.954892788329D+00 0.154000000000D+03 0.239210512357D+01-0.799676166865D-08
+ -0.182507602174D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.270000000000D+02
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 6 0 0.0-0.560288317502D-04-0.773070496507D-11 0.000000000000D+00
+ 0.300000000000D+02-0.415000000000D+02 0.492841957417D-08-0.224567359234D+01
+ -0.225938856602D-05 0.159847806208D-02 0.775232911110D-05 0.515367709160D+04
+ 0.367200000000D+06 0.186264514923D-07-0.174909162405D+01-0.707805156708D-07
+ 0.959143560133D+00 0.230843750000D+03-0.272336047414D+01-0.819105547605D-08
+ -0.285726187357D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.300000000000D+02
+ 0.362670000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 6 0 0.0-0.654116738588D-03-0.147792889038D-11 0.000000000000D+00
+ 0.230000000000D+02 0.208750000000D+02 0.618525764081D-08-0.515807176868D+00
+ 0.109337270260D-05 0.165321475361D-01 0.800192356110D-05 0.515366420364D+04
+ 0.367200000000D+06-0.178813934326D-06 0.311733864363D+01 0.184401869774D-06
+ 0.897389090578D+00 0.198125000000D+03 0.153641713165D+01-0.913966641808D-08
+ 0.670027909352D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.230000000000D+02
+ 0.360000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 6 0 0.0 0.384091399610D-03 0.102318153950D-11 0.000000000000D+00
+ 0.102000000000D+03-0.829375000000D+02 0.388301888618D-08-0.121882655800D+01
+ -0.432878732681D-05 0.612823816482D-02 0.495091080666D-05 0.515370762634D+04
+ 0.367200000000D+06 0.249594449997D-06 0.144905141088D+01 0.149011611938D-07
+ 0.990067187701D+00 0.300281250000D+03 0.771723552744D+00-0.800354766560D-08
+ -0.409302763389D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.125728547573D-07 0.102000000000D+03
+ 0.360018000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 6 0 0.0-0.280593521893D-04-0.250111042988D-11 0.000000000000D+00
+ 0.500000000000D+02 0.815937500000D+02 0.426732060818D-08 0.291084546143D+00
+ 0.428967177868D-05 0.422041956335D-02 0.116135925055D-04 0.515368889809D+04
+ 0.367200000000D+06-0.298023223877D-07-0.584557393825D+00 0.111758708954D-07
+ 0.971348419418D+00 0.161156250000D+03 0.200526116960D+01-0.792854454142D-08
+ -0.357157734196D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.500000000000D+02
+ 0.360960000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 6 0 0.0-0.220485962927D-04-0.204636307899D-11 0.000000000000D+00
+ 0.750000000000D+02 0.658125000000D+02 0.430410785480D-08 0.191268741218D+01
+ 0.327266752720D-05 0.881732092239D-02 0.110827386379D-04 0.515403801346D+04
+ 0.367200000000D+06-0.912696123123D-07-0.621803473913D+00-0.229105353355D-06
+ 0.963812003827D+00 0.168156250000D+03-0.196354960229D+01-0.781246827780D-08
+ -0.136791412197D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.750000000000D+02
+ 0.364200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 6 0 0.0-0.317402649671D-03-0.159161572810D-11 0.000000000000D+00
+ 0.580000000000D+02 0.493750000000D+02 0.517521556850D-08 0.139935422143D+01
+ 0.290013849735D-05 0.817228876986D-02 0.123828649521D-04 0.515362728882D+04
+ 0.367200000000D+06-0.204890966415D-07-0.759121960317D+00 0.163912773132D-06
+ 0.930562885108D+00 0.124406250000D+03 0.485023057557D+00-0.837606318237D-08
+ -0.289297764699D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.580000000000D+02
+ 0.365700000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 6 0 0.0-0.767363235354D-05 0.238742359215D-11 0.000000000000D+00
+ 0.101000000000D+03-0.759375000000D+02 0.374979905133D-08 0.302653585534D+01
+ -0.405311584473D-05 0.870930508245D-02 0.530481338501D-05 0.515378567696D+04
+ 0.367200000000D+06-0.800937414169D-07 0.146784762165D+01-0.409781932831D-07
+ 0.990571104463D+00 0.294031250000D+03 0.396079216826D+00-0.782889753358D-08
+ -0.316441752498D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.101000000000D+03
+ 0.362670000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 6 0 0.0-0.203988514841D-03 0.000000000000D+00 0.000000000000D+00
+ 0.620000000000D+02-0.476250000000D+02 0.372765527181D-08 0.218256617225D+01
+ -0.247545540333D-05 0.109782903455D-01 0.118408352137D-04 0.515371622086D+04
+ 0.367200000000D+06 0.912696123123D-07 0.248927783315D+01-0.193715095520D-06
+ 0.976930238940D+00 0.157781250000D+03-0.192703757061D+01-0.756031491746D-08
+ 0.413231498465D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.620000000000D+02
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 6 0 0.0 0.531691126525D-03 0.386535248253D-11 0.000000000000D+00
+ 0.480000000000D+02-0.488125000000D+02 0.566166447058D-08-0.254373777623D+01
+ -0.256672501564D-05 0.172607465647D-01 0.664591789246D-05 0.515369216919D+04
+ 0.367200000000D+06 0.277534127235D-06-0.177931264863D+01 0.130385160446D-07
+ 0.924644496412D+00 0.226281250000D+03-0.187475338609D+01-0.836213409627D-08
+ -0.155720769612D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.480000000000D+02
+ 0.363570000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 6 0 0.0-0.525247305632D-03 0.227373675443D-12 0.000000000000D+00
+ 0.120000000000D+02-0.317500000000D+02 0.395373611755D-08-0.981966169118D+00
+ -0.132992863655D-05 0.107854058733D-01 0.111255794764D-04 0.515362581253D+04
+ 0.367200000000D+06 0.208616256714D-06 0.253796544820D+01 0.182539224625D-06
+ 0.974075254830D+00 0.166718750000D+03 0.804135794546D+00-0.781639701288D-08
+ 0.432160858377D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.120000000000D+02
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 6 0 0.0-0.527177937329D-03-0.102318153950D-11 0.000000000000D+00
+ 0.130000000000D+02 0.222812500000D+02 0.519485920947D-08-0.163739420797D+01
+ 0.165961682796D-05 0.233514339197D-01 0.609084963798D-05 0.515358890343D+04
+ 0.367200000000D+06 0.379979610443D-06-0.282115340100D+01 0.378116965294D-06
+ 0.936919220275D+00 0.242312500000D+03-0.177901689926D+01-0.827034440931D-08
+ 0.597167704175D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.130000000000D+02
+ 0.360060000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 6 0 0.0 0.308222137392D-03-0.898126018001D-11 0.000000000000D+00
+ 0.420000000000D+02-0.418750000000D+02 0.580702760029D-08 0.172066031149D+01
+ -0.226125121117D-05 0.766428199131D-02 0.743940472603D-05 0.515378528595D+04
+ 0.367200000000D+06-0.104308128357D-06-0.177873691869D+01-0.160187482834D-06
+ 0.922555052944D+00 0.219656250000D+03-0.189873664502D+01-0.858714340328D-08
+ -0.265725354242D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.420000000000D+02
+ 0.360000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 6 0 0.0-0.180216040462D-03-0.159161572810D-11 0.000000000000D+00
+ 0.940000000000D+02 0.703750000000D+02 0.489591822036D-08 0.871560998323D+00
+ 0.394880771637D-05 0.110825196607D-01 0.107958912849D-04 0.515365967751D+04
+ 0.367200000000D+06-0.540167093277D-07-0.700813606420D+00 0.128522515297D-06
+ 0.945824423944D+00 0.164062500000D+03-0.255845332624D+01-0.824498629392D-08
+ -0.291440711104D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.940000000000D+02
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 6 0 0.0-0.193780288100D-04-0.568434188608D-12 0.000000000000D+00
+ 0.560000000000D+02 0.922812500000D+02 0.506521091736D-08 0.325960148886D+00
+ 0.479444861412D-05 0.442237651441D-02 0.405684113502D-05 0.515361331558D+04
+ 0.367200000000D+06-0.223517417908D-07 0.324321619194D+00 0.111758708954D-07
+ 0.949389833257D+00 0.289781250000D+03 0.412692563650D+00-0.863714522126D-08
+ 0.178578870441D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.560000000000D+02
+ 0.361440000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 6 0 0.0-0.199590809643D-03-0.704858393874D-11 0.000000000000D+00
+ 0.840000000000D+02-0.743125000000D+02 0.408052711319D-08-0.175703206835D+01
+ -0.379979610443D-05 0.562470394652D-02 0.439025461674D-05 0.515373458099D+04
+ 0.367200000000D+06 0.100582838059D-06 0.139771342421D+01-0.191852450371D-06
+ 0.978277573325D+00 0.305906250000D+03 0.790059194485D+00-0.801783397497D-08
+ -0.338942689752D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.840000000000D+02
+ 0.360018000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 6 0 0.0-0.410248525441D-03-0.105728759081D-10 0.000000000000D+00
+ 0.270000000000D+02-0.643125000000D+02 0.449018703431D-08-0.254903985216D+01
+ -0.333599746227D-05 0.100541743450D-02 0.435858964920D-05 0.515378456879D+04
+ 0.367200000000D+06-0.558793544769D-08 0.138814460141D+01 0.223517417908D-07
+ 0.960237525884D+00 0.295875000000D+03 0.181644202004D+00-0.831427489435D-08
+ -0.265011038773D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.270000000000D+02
+ 0.363090000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 6 0 0.0 0.109222717583D-03 0.432009983342D-11 0.000000000000D+00
+ 0.910000000000D+02-0.443437500000D+02 0.394159275459D-08 0.216958641111D+01
+ -0.231713056564D-05 0.376186391804D-02 0.107288360596D-04 0.515365030289D+04
+ 0.367200000000D+06-0.521540641785D-07 0.243918948281D+01-0.111758708954D-07
+ 0.971845815953D+00 0.177531250000D+03 0.319520905762D+00-0.779746765297D-08
+ 0.224295057075D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.910000000000D+02
+ 0.362670000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 6 0 0.0 0.656132586300D-03-0.568434188608D-12 0.000000000000D+00
+ 0.510000000000D+02-0.564375000000D+02 0.379765818771D-08-0.187468427930D+01
+ -0.286102294922D-05 0.871761119924D-03 0.107083469629D-04 0.515355394363D+04
+ 0.367200000000D+06-0.186264514923D-07 0.249903340622D+01 0.409781932831D-07
+ 0.977920075645D+00 0.183437500000D+03-0.104337821929D+00-0.764710424687D-08
+ 0.326799326789D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.510000000000D+02
+ 0.362160000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 6 0 0.0 0.136561691761D-03 0.250111042988D-11 0.000000000000D+00
+ 0.730000000000D+02 0.716250000000D+02 0.492949104737D-08-0.525048342599D+00
+ 0.355578958988D-05 0.225059210789D-02 0.342912971973D-05 0.515358775711D+04
+ 0.367200000000D+06 0.279396772385D-07 0.415703834225D+00-0.782310962677D-07
+ 0.952068395299D+00 0.310156250000D+03 0.306109441448D+01-0.854249868650D-08
+ -0.160720980388D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.730000000000D+02
+ 0.360000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 6 0 0.0 0.261337030679D-03-0.193267624127D-11 0.000000000000D+00
+ 0.100000000000D+03 0.763125000000D+02 0.444768526394D-08-0.776481534338D+00
+ 0.400096178055D-05 0.814591615927D-02 0.419095158577D-05 0.515377439308D+04
+ 0.367200000000D+06-0.372529029846D-08 0.381549249675D+00-0.968575477600D-07
+ 0.971112519489D+00 0.306218750000D+03-0.395872225621D+00-0.831141763248D-08
+ 0.914323799542D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.100000000000D+03
+ 0.360000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 6 0 0.0-0.362135469914D-04-0.920863385545D-11 0.000000000000D+00
+ 0.108000000000D+03 0.579062500000D+02 0.443697053192D-08 0.253225185487D+01
+ 0.300630927086D-05 0.546467606910D-03 0.112969428301D-04 0.515362748337D+04
+ 0.367200000000D+06-0.242143869400D-07-0.704189472752D+00-0.204890966415D-07
+ 0.959481722425D+00 0.161437500000D+03-0.232461820513D+01-0.788675708652D-08
+ -0.198579700213D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00 0.465661287308D-09 0.108000000000D+03
+ 0.362670000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 7 59 44.0-0.409507192671D-04-0.147792889038D-11 0.000000000000D+00
+ 0.100000000000D+02-0.522187500000D+02 0.408517016374D-08-0.220692689331D+01
+ -0.265426933765D-05 0.169354630634D-02 0.103116035461D-04 0.515372006226D+04
+ 0.374384000000D+06 0.260770320892D-07 0.243617364647D+01 0.260770320892D-07
+ 0.963754514073D+00 0.183343750000D+03-0.104872909671D+01-0.789604318761D-08
+ 0.181436128972D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.100000000000D+02
+ 0.367200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 7 59 44.0 0.384098850191D-03 0.102318153950D-11 0.000000000000D+00
+ 0.300000000000D+01-0.847187500000D+02 0.403445376548D-08-0.171118921893D+00
+ -0.441074371338D-05 0.612732314039D-02 0.522099435329D-05 0.515370542526D+04
+ 0.374384000000D+06 0.763684511185D-07 0.144899332718D+01 0.109896063805D-06
+ 0.990063460186D+00 0.292218750000D+03 0.771839032571D+00-0.815426822943D-08
+ -0.430017911972D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.300000000000D+01
+ 0.368070000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 7 59 44.0-0.220658257604D-04-0.204636307899D-11 0.000000000000D+00
+ 0.100000000000D+01 0.631875000000D+02 0.434982404477D-08 0.296045189729D+01
+ 0.328943133354D-05 0.881791126449D-02 0.114981085062D-04 0.515403570557D+04
+ 0.374384000000D+06 0.745058059692D-07-0.621859031153D+00-0.180676579475D-06
+ 0.963811354292D+00 0.156062500000D+03-0.196368916322D+01-0.772746473707D-08
+ -0.131791203918D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.100000000000D+01
+ 0.368880000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 7 59 44.0-0.180227216333D-03-0.159161572810D-11 0.000000000000D+00
+ 0.500000000000D+01 0.553750000000D+02 0.482948688180D-08 0.191920789115D+01
+ 0.295974314213D-05 0.110826380551D-01 0.114403665066D-04 0.515366406059D+04
+ 0.374384000000D+06-0.301748514175D-06-0.700873493897D+00 0.391155481338D-07
+ 0.945823092688D+00 0.156093750000D+03-0.255824231494D+01-0.811176645906D-08
+ -0.138220043134D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.500000000000D+01
+ 0.372060000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 7 59 44.0 0.261323060840D-03-0.193267624127D-11 0.000000000000D+00
+ 0.200000000000D+01 0.857500000000D+02 0.457804783693D-08 0.271286593433D+00
+ 0.429525971413D-05 0.814437551890D-02 0.437349081039D-05 0.515377144432D+04
+ 0.374384000000D+06 0.540167093277D-07 0.381489587487D+00-0.391155481338D-07
+ 0.971112803295D+00 0.299937500000D+03-0.395854218563D+00-0.836534845034D-08
+ 0.482162941165D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.200000000000D+01
+ 0.371850000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 7 59 44.0-0.362768769264D-04-0.909494701773D-11 0.000000000000D+00
+ 0.230000000000D+02 0.552187500000D+02 0.449947323844D-08-0.270181228917D+01
+ 0.294856727123D-05 0.546925002709D-03 0.117532908917D-04 0.515362651253D+04
+ 0.374384000000D+06 0.447034835815D-07-0.704246535335D+00-0.577419996262D-07
+ 0.959480272673D+00 0.151468750000D+03-0.232586306503D+01-0.793283039258D-08
+ -0.154292134624D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.230000000000D+02
+ 0.373740000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 8 0 0.0 0.253207981587D-04 0.125055521494D-11 0.000000000000D+00
+ 0.670000000000D+02 0.166562500000D+02 0.465090801470D-08 0.113629104455D+01
+ 0.754371285439D-06 0.563635176513D-02 0.670924782753D-05 0.515363922310D+04
+ 0.374400000000D+06 0.372529029846D-08-0.278668447778D+01 0.800937414169D-07
+ 0.964902182083D+00 0.252093750000D+03 0.481803925342D+00-0.821105630917D-08
+ 0.405016870578D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.670000000000D+02
+ 0.369240000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 8 0 0.0 0.581283587962D-03-0.375166564481D-11 0.000000000000D+00
+ 0.320000000000D+02 0.875000000000D+01 0.517235830663D-08 0.151308095504D+01
+ 0.415369868278D-06 0.157887476962D-01 0.686384737492D-05 0.515358132362D+04
+ 0.374400000000D+06-0.363215804100D-06-0.283292819602D+01-0.949949026108D-07
+ 0.943704801939D+00 0.237312500000D+03-0.210497079856D+01-0.853035532354D-08
+ 0.483591572101D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.320000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 8 0 0.0-0.716866925359D-04-0.318323145621D-11 0.000000000000D+00
+ 0.450000000000D+02-0.346562500000D+02 0.489841832450D-08 0.205108924501D+01
+ -0.177510082722D-05 0.205857795663D-03 0.763311982155D-05 0.515367061424D+04
+ 0.374400000000D+06-0.409781932831D-07-0.174516915739D+01 0.372529029846D-08
+ 0.958907297401D+00 0.235750000000D+03-0.157363890682D+01-0.815998275318D-08
+ -0.275368613065D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.450000000000D+02
+ 0.367200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 8 0 0.0-0.258449465036D-03-0.454747350886D-12 0.000000000000D+00
+ 0.590000000000D+02-0.767812500000D+02 0.525736184737D-08-0.195691072937D+01
+ -0.390037894249D-05 0.850148475729D-02 0.430643558502D-05 0.515365556908D+04
+ 0.374400000000D+06 0.106170773506D-06 0.141944529172D+01-0.165775418282D-06
+ 0.983045792420D+00 0.309625000000D+03 0.899127111865D+00-0.793033033009D-08
+ -0.335728270144D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.630000000000D+02-0.195577740669D-07 0.590000000000D+02
+ 0.367200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 8 0 0.0-0.108985695988D-03 0.284217094304D-11 0.000000000000D+00
+ 0.710000000000D+02-0.346250000000D+02 0.520378818724D-08-0.228388760632D+01
+ -0.210851430893D-05 0.454662763514D-02 0.793486833572D-05 0.515353995132D+04
+ 0.374400000000D+06 0.782310962677D-07-0.175752677604D+01-0.987201929092D-07
+ 0.945971167793D+00 0.219281250000D+03 0.454820933872D+00-0.828748806429D-08
+ -0.278940190407D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.710000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 8 0 0.0 0.211945734918D-03 0.534328137292D-11 0.000000000000D+00
+ 0.900000000000D+02 0.671875000000D+01 0.461983529183D-08 0.135573731304D+01
+ 0.551342964172D-06 0.376875512302D-03 0.657327473164D-05 0.515371150971D+04
+ 0.374400000000D+06 0.279396772385D-07-0.279510665370D+01-0.484287738800D-07
+ 0.964731365917D+00 0.252218750000D+03-0.131654371887D+01-0.812891003030D-08
+ 0.517164399116D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.900000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 8 0 0.0 0.445174984634D-03-0.250111042988D-11 0.000000000000D+00
+ 0.620000000000D+02 0.792500000000D+02 0.473376860903D-08 0.418705600220D+00
+ 0.422447919846D-05 0.967861758545D-02 0.330246984959D-05 0.515364145470D+04
+ 0.374400000000D+06 0.633299350738D-07 0.371993288842D+00 0.987201929092D-07
+ 0.966302343903D+00 0.313781250000D+03-0.266769880237D+01-0.849606818106D-08
+ -0.475019786481D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.620000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 8 0 0.0 0.158375129104D-03 0.727595761418D-11 0.000000000000D+00
+ 0.300000000000D+02 0.679062500000D+02 0.468198073758D-08 0.282958304804D+01
+ 0.360049307346D-05 0.532065518200D-03 0.111013650894D-04 0.515355682182D+04
+ 0.374400000000D+06 0.149011611938D-07-0.705810522036D+00 0.465661287308D-07
+ 0.954891748194D+00 0.165281250000D+03 0.238912113934D+01-0.799819029959D-08
+ -0.105004373854D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.300000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 8 0 0.0-0.560847111046D-04-0.773070496507D-11 0.000000000000D+00
+ 0.970000000000D+02-0.405937500000D+02 0.489091789291D-08-0.119584532481D+01
+ -0.210292637348D-05 0.159865338355D-02 0.733695924282D-05 0.515367597389D+04
+ 0.374400000000D+06 0.279396772385D-07-0.174915073325D+01-0.204890966415D-07
+ 0.959141662729D+00 0.235000000000D+03-0.272300657817D+01-0.819391310358D-08
+ -0.257867893705D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.970000000000D+02
+ 0.368490000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 8 0 0.0-0.654127448797D-03-0.147792889038D-11 0.000000000000D+00
+ 0.240000000000D+02 0.157187500000D+02 0.607239579680D-08 0.534365521555D+00
+ 0.758096575737D-06 0.165340477833D-01 0.851228833198D-05 0.515366790962D+04
+ 0.374400000000D+06-0.232830643654D-06 0.311727408067D+01-0.931322574615D-07
+ 0.897393094584D+00 0.184781250000D+03 0.153644132978D+01-0.912216568910D-08
+ 0.447518640948D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.240000000000D+02
+ 0.367830000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 8 0 0.0-0.280775129795D-04-0.250111042988D-11 0.000000000000D+00
+ 0.510000000000D+02 0.916875000000D+02 0.423410493889D-08 0.134127475862D+01
+ 0.469386577606D-05 0.421951990575D-02 0.114962458611D-04 0.515368761444D+04
+ 0.374400000000D+06 0.707805156708D-07-0.584614275005D+00-0.856816768646D-07
+ 0.971348894866D+00 0.162625000000D+03 0.200524202293D+01-0.778925302508D-08
+ -0.392873507616D-11 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.510000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 8 0 0.0-0.220630317926D-04-0.204636307899D-11 0.000000000000D+00
+ 0.770000000000D+02 0.631875000000D+02 0.434982404477D-08 0.296278464012D+01
+ 0.328943133354D-05 0.881790940184D-02 0.114981085062D-04 0.515403570366D+04
+ 0.374400000000D+06 0.745058059692D-07-0.621859130632D+00-0.180676579475D-06
+ 0.963811354292D+00 0.156062500000D+03-0.196368865705D+01-0.772746473707D-08
+ -0.131791203918D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.770000000000D+02
+ 0.367200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 8 0 0.0-0.317413825542D-03-0.159161572810D-11 0.000000000000D+00
+ 0.590000000000D+02 0.655625000000D+02 0.518735893146D-08 0.244982238103D+01
+ 0.336766242981D-05 0.817330437712D-02 0.126194208860D-04 0.515362300682D+04
+ 0.374400000000D+06-0.175088644028D-06-0.759182624604D+00-0.108033418655D-06
+ 0.930562264831D+00 0.119062500000D+03 0.484770705651D+00-0.813676750045D-08
+ -0.125719522437D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.590000000000D+02
+ 0.371160000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 8 0 0.0-0.765686854720D-05 0.238742359215D-11 0.000000000000D+00
+ 0.102000000000D+03-0.807500000000D+02 0.383944564261D-08-0.220661554777D+01
+ -0.416487455368D-05 0.870976771694D-02 0.496581196785D-05 0.515378442192D+04
+ 0.374400000000D+06-0.372529029846D-08 0.146779062490D+01-0.111758708954D-06
+ 0.990568791589D+00 0.300250000000D+03 0.396152652388D+00-0.789568602987D-08
+ -0.258582199558D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.102000000000D+03
+ 0.367200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 8 0 0.0-0.203988049179D-03 0.000000000000D+00 0.000000000000D+00
+ 0.630000000000D+02-0.419062500000D+02 0.363729436505D-08-0.305052297053D+01
+ -0.211410224438D-05 0.109777264297D-01 0.115688890219D-04 0.515371759605D+04
+ 0.374400000000D+06 0.558793544769D-08 0.248922474238D+01-0.130385160446D-07
+ 0.976933354956D+00 0.162000000000D+03-0.192698603932D+01-0.741495171965D-08
+ 0.315013121561D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.630000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 8 0 0.0 0.531718600541D-03 0.386535248253D-11 0.000000000000D+00
+ 0.490000000000D+02-0.344375000000D+02 0.572166669599D-08-0.149366369457D+01
+ -0.139698386192D-05 0.172616150230D-01 0.675395131111D-05 0.515368840599D+04
+ 0.374400000000D+06 0.296160578728D-06-0.177937255659D+01 0.296160578728D-06
+ 0.924642612173D+00 0.225468750000D+03-0.187464882402D+01-0.853999893025D-08
+ -0.235366948154D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.490000000000D+02
+ 0.367230000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 8 0 0.0-0.525245908648D-03 0.227373675443D-12 0.000000000000D+00
+ 0.300000000000D+02-0.287187500000D+02 0.384587448182D-08 0.682536381923D-01
+ -0.138208270073D-05 0.107858717674D-01 0.114254653454D-04 0.515362672996D+04
+ 0.374400000000D+06 0.111758708954D-07 0.253790898687D+01 0.301748514175D-06
+ 0.974078085576D+00 0.168875000000D+03 0.804121485745D+00-0.784711257802D-08
+ 0.383230248792D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.300000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 8 0 0.0 0.421463511884D-03 0.227373675443D-11 0.000000000000D+00
+ 0.220000000000D+02-0.420625000000D+02 0.571309511620D-08 0.241237114716D+01
+ -0.222958624363D-05 0.456245092209D-02 0.696443021297D-05 0.515375284195D+04
+ 0.374400000000D+06 0.819563865662D-07-0.183116105619D+01-0.502914190292D-07
+ 0.925936517864D+00 0.227843750000D+03 0.139037272512D+01-0.849785396973D-08
+ -0.275368613065D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.220000000000D+02
+ 0.374340000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 8 0 0.0-0.527184922248D-03-0.102318153950D-11 0.000000000000D+00
+ 0.140000000000D+02 0.165000000000D+02 0.539308178636D-08-0.587226653170D+00
+ 0.109523534775D-05 0.233506025979D-01 0.747852027416D-05 0.515358528328D+04
+ 0.374400000000D+06-0.232830643654D-06-0.282121593929D+01 0.275671482086D-06
+ 0.936921063552D+00 0.230875000000D+03-0.177894467061D+01-0.886894085556D-08
+ 0.640740975148D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.140000000000D+02
+ 0.367200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 8 0 0.0 0.308157410473D-03-0.898126018001D-11 0.000000000000D+00
+ 0.430000000000D+02-0.417500000000D+02 0.573345310705D-08 0.277069173153D+01
+ -0.228919088840D-05 0.766406580806D-02 0.707805156708D-05 0.515378654480D+04
+ 0.374400000000D+06 0.298023223877D-07-0.177879818131D+01-0.126659870148D-06
+ 0.922553508102D+00 0.225843750000D+03-0.189864718173D+01-0.849463955012D-08
+ -0.267511142913D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.430000000000D+02
+ 0.370110000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 8 0 0.0-0.180227216333D-03-0.159161572810D-11 0.000000000000D+00
+ 0.980000000000D+02 0.553750000000D+02 0.482948688180D-08 0.192154170630D+01
+ 0.295974314213D-05 0.110826385207D-01 0.114403665066D-04 0.515366406059D+04
+ 0.374400000000D+06-0.301748514175D-06-0.700873627023D+00 0.391155481338D-07
+ 0.945823075133D+00 0.156093750000D+03-0.255824239686D+01-0.811176645906D-08
+ -0.138220043134D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.200234353542D-07 0.980000000000D+02
+ 0.367200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 8 0 0.0-0.193822197616D-04-0.568434188608D-12 0.000000000000D+00
+ 0.570000000000D+02 0.946875000000D+02 0.513985695282D-08 0.137628076149D+01
+ 0.505149364471D-05 0.442239618860D-02 0.402517616749D-05 0.515361271668D+04
+ 0.374400000000D+06 0.186264514923D-08 0.324259013615D+00 0.949949026108D-07
+ 0.949390098046D+00 0.294218750000D+03 0.412593984916D+00-0.864964600676D-08
+ 0.889322758148D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.570000000000D+02
+ 0.370740000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 8 0 0.0-0.199641101062D-03-0.704858393874D-11 0.000000000000D+00
+ 0.850000000000D+02-0.775312500000D+02 0.428910729156D-08-0.706848917380D+00
+ -0.412389636040D-05 0.562452850863D-02 0.432878732681D-05 0.515373488617D+04
+ 0.374400000000D+06 0.875443220139D-07 0.139765555117D+01 0.134110450745D-06
+ 0.978273463988D+00 0.303968750000D+03 0.790016405594D+00-0.829963120452D-08
+ -0.465376515102D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.850000000000D+02
+ 0.372060000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 8 0 0.0-0.410324428230D-03-0.105728759081D-10 0.000000000000D+00
+ 0.280000000000D+02-0.711875000000D+02 0.456411868529D-08-0.150066236050D+01
+ -0.362470746040D-05 0.100624421611D-02 0.383146107197D-05 0.515378092575D+04
+ 0.374400000000D+06-0.558793544769D-07 0.138808526691D+01-0.894069671631D-07
+ 0.960235410505D+00 0.307906250000D+03 0.183380720874D+00-0.829713132311D-08
+ -0.356443418728D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.280000000000D+02
+ 0.367200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 8 0 0.0 0.109253916889D-03 0.432009983342D-11 0.000000000000D+00
+ 0.920000000000D+02-0.538437500000D+02 0.383444543433D-08-0.306363968274D+01
+ -0.274181365967D-05 0.376131711528D-02 0.106412917376D-04 0.515365192604D+04
+ 0.374400000000D+06 0.372529029846D-07 0.243913357886D+01-0.745058059692D-08
+ 0.971847839169D+00 0.181593750000D+03 0.319751179309D+00-0.771103548129D-08
+ 0.224652214809D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.920000000000D+02
+ 0.367200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 8 0 0.0 0.533791724592D-03 0.272848410532D-11 0.000000000000D+00
+ 0.600000000000D+01-0.779375000000D+02 0.377587156592D-08-0.224131095850D+01
+ -0.396370887756D-05 0.197508519050D-01 0.552833080292D-05 0.515362730789D+04
+ 0.374400000000D+06 0.273808836937D-06 0.147270689570D+01 0.875443220139D-07
+ 0.989284846908D+00 0.285625000000D+03-0.161483303708D+01-0.759781647955D-08
+ -0.375015620906D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.600000000000D+01
+ 0.367230000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 8 0 0.0 0.656128861010D-03-0.568434188608D-12 0.000000000000D+00
+ 0.520000000000D+02-0.600312500000D+02 0.374408452758D-08-0.822208924416D+00
+ -0.305473804474D-05 0.872220029123D-03 0.113993883133D-04 0.515355770111D+04
+ 0.374400000000D+06 0.298023223877D-07 0.249897876623D+01-0.521540641785D-07
+ 0.977922095935D+00 0.169500000000D+03-0.106565849090D+00-0.766281918718D-08
+ 0.240009997380D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.520000000000D+02
+ 0.372720000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 8 0 0.0 0.136579852551D-03 0.250111042988D-11 0.000000000000D+00
+ 0.740000000000D+02 0.707187500000D+02 0.499985112101D-08 0.525202506370D+00
+ 0.349618494511D-05 0.225100549869D-02 0.297836959362D-05 0.515358855438D+04
+ 0.374400000000D+06 0.316649675369D-07 0.415642296576D+00-0.335276126862D-07
+ 0.952068183176D+00 0.312812500000D+03 0.306107989795D+01-0.855357057626D-08
+ -0.271439877989D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.740000000000D+02
+ 0.370800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 8 0 0.0 0.261322595179D-03-0.193267624127D-11 0.000000000000D+00
+ 0.106000000000D+03 0.857500000000D+02 0.457804783693D-08 0.273619742961D+00
+ 0.429525971413D-05 0.814437016379D-02 0.437349081039D-05 0.515377145576D+04
+ 0.374400000000D+06 0.540167093277D-07 0.381489457287D+00-0.391155481338D-07
+ 0.971112800369D+00 0.299937500000D+03-0.395853811872D+00-0.836534845034D-08
+ 0.482162941165D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.135041773319D-07 0.106000000000D+03
+ 0.371010000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 9 59 44.0 0.445156358182D-03-0.250111042988D-11 0.000000000000D+00
+ 0.110000000000D+02 0.891250000000D+02 0.474591197200D-08 0.146637586462D+01
+ 0.482238829136D-05 0.968036975246D-02 0.451691448688D-05 0.515364633942D+04
+ 0.381584000000D+06-0.186264514923D-07 0.371931853597D+00 0.253319740295D-06
+ 0.966302194685D+00 0.297812500000D+03-0.266750225933D+01-0.847499587474D-08
+ 0.539308178636D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.110000000000D+02
+ 0.378600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 9 59 44.0-0.220807269216D-04-0.204636307899D-11 0.000000000000D+00
+ 0.160000000000D+02 0.726250000000D+02 0.430732205459D-08-0.227277287116D+01
+ 0.375509262085D-05 0.881618354469D-02 0.120382755995D-04 0.515403874779D+04
+ 0.381584000000D+06 0.137835741043D-06-0.621915749950D+00 0.428408384323D-07
+ 0.963811064634D+00 0.145031250000D+03-0.196369249282D+01-0.774675168458D-08
+ 0.528593453730D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.160000000000D+02
+ 0.375720000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 9 59 44.0-0.764057040214D-05 0.238742359215D-11 0.000000000000D+00
+ 0.200000000000D+02-0.818437500000D+02 0.391373445132D-08-0.115892378432D+01
+ -0.424124300480D-05 0.871016306337D-02 0.461563467979D-05 0.515378297424D+04
+ 0.381584000000D+06 0.219792127609D-06 0.146773451614D+01-0.149011611938D-06
+ 0.990566380700D+00 0.307218750000D+03 0.396236173307D+00-0.798068957061D-08
+ -0.400016662300D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.200000000000D+02
+ 0.381576000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 9 59 44.0-0.180238392204D-03-0.159161572810D-11 0.000000000000D+00
+ 0.600000000000D+01 0.515937500000D+02 0.474734060293D-08 0.296945499504D+01
+ 0.268965959549D-05 0.110840682173D-01 0.119544565678D-04 0.515366124153D+04
+ 0.381584000000D+06-0.707805156708D-07-0.700931148961D+00-0.145286321640D-06
+ 0.945823459881D+00 0.144218750000D+03-0.255830020407D+01-0.785318425950D-08
+ -0.907180644858D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.600000000000D+01
+ 0.378540000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 9 59 44.0 0.261308625341D-03-0.193267624127D-11 0.000000000000D+00
+ 0.240000000000D+02 0.944062500000D+02 0.462090676834D-08 0.132129054133D+01
+ 0.498816370964D-05 0.814484979492D-02 0.401586294174D-05 0.515377336883D+04
+ 0.381584000000D+06 0.633299350738D-07 0.381429588828D+00 0.000000000000D+00
+ 0.971113255336D+00 0.301437500000D+03-0.395736629208D+00-0.832891799973D-08
+ 0.339299838226D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.240000000000D+02
+ 0.381570000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 10 0 0.0 0.253296457231D-04 0.125055521494D-11 0.000000000000D+00
+ 0.690000000000D+02 0.143750000000D+02 0.453804617069D-08 0.218638181809D+01
+ 0.754371285439D-06 0.563657237217D-02 0.692717730999D-05 0.515364036560D+04
+ 0.381600000000D+06-0.162050127983D-06-0.278674400684D+01-0.745058059692D-08
+ 0.964905795491D+00 0.246593750000D+03 0.481915411403D+00-0.810212320024D-08
+ 0.518235872318D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.690000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 10 0 0.0 0.581256579608D-03-0.375166564481D-11 0.000000000000D+00
+ 0.330000000000D+02 0.102500000000D+02 0.490198990184D-08 0.256330554170D+01
+ 0.486150383949D-06 0.157885060180D-01 0.660680234432D-05 0.515358194923D+04
+ 0.381600000000D+06 0.117346644402D-06-0.283298799133D+01-0.212341547012D-06
+ 0.943710665314D+00 0.240031250000D+03-0.210495429538D+01-0.804212070089D-08
+ 0.517878714584D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.330000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 10 0 0.0-0.717099756002D-04-0.318323145621D-11 0.000000000000D+00
+ 0.101000000000D+03-0.401562500000D+02 0.485234497679D-08 0.310341315570D+01
+ -0.236742198467D-05 0.206641852856D-03 0.726617872715D-05 0.515366891670D+04
+ 0.381600000000D+06 0.558793544769D-08-0.174522824465D+01-0.223517417908D-07
+ 0.958905348794D+00 0.239062500000D+03-0.157577683286D+01-0.819069831832D-08
+ -0.245010205658D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.101000000000D+03
+ 0.375720000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 10 0 0.0-0.258453190327D-03-0.454747350886D-12 0.000000000000D+00
+ 0.690000000000D+02-0.785625000000D+02 0.547594238069D-08-0.906701011805D+00
+ -0.414252281189D-05 0.850131188054D-02 0.428408384323D-05 0.515365570259D+04
+ 0.381600000000D+06 0.121071934700D-06 0.141938824377D+01 0.201165676117D-06
+ 0.983041544106D+00 0.307656250000D+03 0.899114511751D+00-0.824284334751D-08
+ -0.488948938114D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.630000000000D+02-0.195577740669D-07 0.690000000000D+02
+ 0.379230000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 10 0 0.0-0.108965206891D-03 0.284217094304D-11 0.000000000000D+00
+ 0.750000000000D+02-0.310312500000D+02 0.511449875369D-08-0.123385131330D+01
+ -0.168196856976D-05 0.454685604200D-02 0.717118382454D-05 0.515353792191D+04
+ 0.381600000000D+06 0.707805156708D-07-0.175758672496D+01-0.745058059692D-08
+ 0.945969473734D+00 0.226125000000D+03 0.455052746408D+00-0.828463080241D-08
+ -0.219294848796D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.750000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 10 0 0.0 0.211983919144D-03 0.534328137292D-11 0.000000000000D+00
+ 0.910000000000D+02 0.136875000000D+02 0.451840249531D-08 0.240349643655D+01
+ 0.802800059319D-06 0.376476091333D-03 0.659190118313D-05 0.515371337128D+04
+ 0.381600000000D+06-0.745058059692D-08-0.279516467888D+01 0.335276126862D-07
+ 0.964735216317D+00 0.253750000000D+03-0.131414530857D+01-0.806176437627D-08
+ 0.475019786481D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.910000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 10 0 0.0 0.445156823844D-03-0.250111042988D-11 0.000000000000D+00
+ 0.670000000000D+02 0.891250000000D+02 0.474591197200D-08 0.146871044196D+01
+ 0.482238829136D-05 0.968037359416D-02 0.451691448688D-05 0.515364633369D+04
+ 0.381600000000D+06-0.186264514923D-07 0.371931697065D+00 0.253319740295D-06
+ 0.966302193222D+00 0.297812500000D+03-0.266750308734D+01-0.847499587474D-08
+ 0.539308178636D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.670000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 10 0 0.0-0.409609638154D-04-0.147792889038D-11 0.000000000000D+00
+ 0.110000000000D+02-0.669375000000D+02 0.410767110099D-08-0.115567554442D+01
+ -0.340491533279D-05 0.169339193963D-02 0.106729567051D-04 0.515371618080D+04
+ 0.381600000000D+06 0.260770320892D-07 0.243611697156D+01 0.894069671631D-07
+ 0.963755943344D+00 0.177531250000D+03-0.104749668040D+01-0.784889836669D-08
+ 0.158935191717D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.110000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 10 0 0.0 0.158427283168D-03 0.727595761418D-11 0.000000000000D+00
+ 0.310000000000D+02 0.550937500000D+02 0.459161983082D-08-0.240355712132D+01
+ 0.299699604511D-05 0.530479475856D-03 0.111944973469D-04 0.515355969429D+04
+ 0.381600000000D+06-0.558793544769D-08-0.705868114195D+00-0.931322574616D-08
+ 0.954891294690D+00 0.164625000000D+03 0.238932788478D+01-0.795033116320D-08
+ -0.771460705863D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.310000000000D+02
+ 0.374400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 10 0 0.0-0.561401247978D-04-0.773070496507D-11 0.000000000000D+00
+ 0.980000000000D+02-0.376562500000D+02 0.485734519273D-08-0.145930448143D+00
+ -0.187195837498D-05 0.159821601119D-02 0.765174627304D-05 0.515367482567D+04
+ 0.381600000000D+06 0.596046447754D-07-0.174920969617D+01-0.931322574616D-08
+ 0.959139873580D+00 0.231656250000D+03-0.272273893584D+01-0.817569745237D-08
+ -0.261439453419D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.980000000000D+02
+ 0.374430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 10 0 0.0-0.654138159007D-03-0.147792889038D-11 0.000000000000D+00
+ 0.270000000000D+02 0.656250000000D+01 0.585595820988D-08 0.158452116528D+01
+ 0.113621354103D-06 0.165349312592D-01 0.845827162266D-05 0.515366980743D+04
+ 0.381600000000D+06 0.167638063431D-07 0.311720843222D+01-0.491738319397D-06
+ 0.897398233816D+00 0.182156250000D+03 0.153648015417D+01-0.871929176493D-08
+ 0.565737850967D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.270000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 10 0 0.0 0.384106300771D-03 0.102318153950D-11 0.000000000000D+00
+ 0.400000000000D+01-0.795937500000D+02 0.400730977768D-08 0.881330055117D+00
+ -0.408105552196D-05 0.612813176122D-02 0.547990202904D-05 0.515370702934D+04
+ 0.381600000000D+06-0.409781932831D-07 0.144893516009D+01 0.108033418655D-06
+ 0.990060189101D+00 0.288781250000D+03 0.771880838381D+00-0.810140888477D-08
+ -0.508949771229D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.400000000000D+01
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 10 0 0.0-0.280952081084D-04-0.250111042988D-11 0.000000000000D+00
+ 0.890000000000D+02 0.856875000000D+02 0.419374611493D-08 0.239157449685D+01
+ 0.431016087532D-05 0.422023585998D-02 0.111553817987D-04 0.515368623352D+04
+ 0.381600000000D+06 0.521540641785D-07-0.584669716675D+00 0.130385160446D-07
+ 0.971348963623D+00 0.169843750000D+03 0.200511200608D+01-0.771567853184D-08
+ -0.446447167745D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.890000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 10 0 0.0-0.317425467074D-03-0.159161572810D-11 0.000000000000D+00
+ 0.600000000000D+02 0.722187500000D+02 0.504413868005D-08-0.278320402159D+01
+ 0.349804759026D-05 0.817145826295D-02 0.121388584375D-04 0.515362650680D+04
+ 0.381600000000D+06-0.577419996262D-07-0.759240959925D+00-0.154599547386D-06
+ 0.930561602129D+00 0.131687500000D+03 0.484826729562D+00-0.809426573009D-08
+ -0.106790162525D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.600000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 10 0 0.0-0.764010474086D-05 0.238742359215D-11 0.000000000000D+00
+ 0.103000000000D+03-0.818437500000D+02 0.391337729359D-08-0.115658975704D+01
+ -0.424124300480D-05 0.871015817393D-02 0.461563467979D-05 0.515378297043D+04
+ 0.381600000000D+06 0.219792127609D-06 0.146773437131D+01-0.149011611938D-06
+ 0.990566382163D+00 0.307218750000D+03 0.396235779782D+00-0.798068957061D-08
+ -0.400373820034D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.107102096081D-07 0.103000000000D+03
+ 0.374400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 10 0 0.0-0.203987583518D-03 0.000000000000D+00 0.000000000000D+00
+ 0.710000000000D+02-0.403750000000D+02 0.380622997333D-08-0.200044370868D+01
+ -0.214204192162D-05 0.109795141034D-01 0.110287219286D-04 0.515371406364D+04
+ 0.381600000000D+06 0.242143869400D-06 0.248917219583D+01-0.115483999252D-06
+ 0.976934864687D+00 0.177125000000D+03-0.192691603576D+01-0.750388399546D-08
+ 0.127862468842D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.710000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 10 0 0.0 0.531746074557D-03 0.386535248253D-11 0.000000000000D+00
+ 0.530000000000D+02-0.322500000000D+02 0.578702685772D-08-0.443496846361D+00
+ -0.160373747349D-05 0.172616981436D-01 0.745244324207D-05 0.515368808746D+04
+ 0.381600000000D+06-0.104308128357D-06-0.177943607357D+01 0.216066837311D-06
+ 0.924639425938D+00 0.223031250000D+03-0.187463411438D+01-0.891465745667D-08
+ -0.206794331659D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.530000000000D+02
+ 0.374430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 10 0 0.0-0.525244511664D-03 0.227373675443D-12 0.000000000000D+00
+ 0.310000000000D+02-0.345000000000D+02 0.389480509141D-08 0.111850102736D+01
+ -0.165775418282D-05 0.107848145999D-01 0.113509595394D-04 0.515362458992D+04
+ 0.381600000000D+06-0.229105353355D-06 0.253785466287D+01-0.558793544769D-07
+ 0.974079728433D+00 0.175500000000D+03 0.804078891422D+00-0.776282335275D-08
+ 0.346443002170D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.310000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 10 0 0.0 0.421479810029D-03 0.227373675443D-11 0.000000000000D+00
+ 0.230000000000D+02-0.365937500000D+02 0.560951937328D-08-0.282074468071D+01
+ -0.216253101826D-05 0.456182775088D-02 0.675953924656D-05 0.515375410080D+04
+ 0.381600000000D+06 0.113621354103D-06-0.183122248558D+01 0.353902578354D-07
+ 0.925934613145D+00 0.226250000000D+03 0.139044353767D+01-0.850392565121D-08
+ -0.223580741607D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.230000000000D+02
+ 0.374820000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 10 0 0.0-0.527191907167D-03-0.102318153950D-11 0.000000000000D+00
+ 0.360000000000D+02 0.108750000000D+02 0.534022244170D-08 0.463003230720D+00
+ 0.627711415291D-06 0.233498519519D-01 0.722333788872D-05 0.515358378983D+04
+ 0.381600000000D+06-0.396743416786D-06-0.282127817329D+01-0.968575477600D-07
+ 0.936924971006D+00 0.233718750000D+03-0.177893365923D+01-0.881501003769D-08
+ 0.341442793892D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.360000000000D+02
+ 0.381000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 10 0 0.0 0.308093149215D-03-0.898126018001D-11 0.000000000000D+00
+ 0.440000000000D+02-0.441562500000D+02 0.566737892622D-08-0.246239455417D+01
+ -0.253692269325D-05 0.766510469839D-02 0.627152621746D-05 0.515378456497D+04
+ 0.381600000000D+06 0.115483999252D-06-0.177886005250D+01-0.186264514923D-07
+ 0.922551917910D+00 0.232843750000D+03-0.189862478006D+01-0.852356932659D-08
+ -0.162149611325D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.440000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 10 0 0.0-0.193864107132D-04-0.568434188608D-12 0.000000000000D+00
+ 0.590000000000D+02 0.962500000000D+02 0.510449833713D-08 0.242657396487D+01
+ 0.494159758091D-05 0.442228477914D-02 0.392459332943D-05 0.515361222458D+04
+ 0.381600000000D+06-0.102445483208D-06 0.324196384629D+00-0.894069671631D-07
+ 0.949391644350D+00 0.297468750000D+03 0.412524300276D+00-0.849213944598D-08
+ 0.200008331150D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00 0.232830643654D-08 0.590000000000D+02
+ 0.376320000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 10 0 0.0-0.199691858143D-03-0.704858393874D-11 0.000000000000D+00
+ 0.860000000000D+02-0.775937500000D+02 0.435839583040D-08 0.343229068800D+00
+ -0.394508242607D-05 0.562432687730D-02 0.449456274509D-05 0.515373438454D+04
+ 0.381600000000D+06 0.931322574616D-08 0.139759564907D+01 0.113621354103D-06
+ 0.978270021742D+00 0.298812500000D+03 0.790081145571D+00-0.831856078716D-08
+ -0.477519890620D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.860000000000D+02
+ 0.379800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 10 0 0.0-0.410400796682D-03-0.105728759081D-10 0.000000000000D+00
+ 0.400000000000D+02-0.789062500000D+02 0.465733685392D-08-0.449739705898D+00
+ -0.422447919846D-05 0.100694398861D-02 0.371225178242D-05 0.515378292847D+04
+ 0.381600000000D+06 0.856816768646D-07 0.138802579783D+01 0.316649675369D-07
+ 0.960231984351D+00 0.309656250000D+03 0.182573188632D+00-0.842499379195D-08
+ -0.466090843126D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.400000000000D+02
+ 0.381210000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 10 0 0.0 0.109285116196D-03 0.432009983342D-11 0.000000000000D+00
+ 0.950000000000D+02-0.683437500000D+02 0.387158983869D-08-0.201363570998D+01
+ -0.345334410667D-05 0.376308348496D-02 0.107809901238D-04 0.515364844704D+04
+ 0.381600000000D+06-0.409781932831D-07 0.243907857168D+01-0.372529029846D-08
+ 0.971849436676D+00 0.179093750000D+03 0.319938027595D+00-0.766567644905D-08
+ 0.165006873199D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.950000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 10 0 0.0 0.533811282367D-03 0.272848410532D-11 0.000000000000D+00
+ 0.130000000000D+02-0.730312500000D+02 0.406374069968D-08-0.119105179577D+01
+ -0.368244946003D-05 0.197512240848D-01 0.514835119247D-05 0.515362919426D+04
+ 0.381600000000D+06-0.303611159325D-06 0.147265089666D+01 0.381842255592D-06
+ 0.989278923552D+00 0.295812500000D+03-0.161488767999D+01-0.823355724642D-08
+ -0.455376111100D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.130000000000D+02
+ 0.379290000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 10 0 0.0 0.656124670059D-03-0.568434188608D-12 0.000000000000D+00
+ 0.540000000000D+02-0.501875000000D+02 0.387337562736D-08 0.227400711467D+00
+ -0.266171991825D-05 0.870431773365D-03 0.117719173431D-04 0.515355417633D+04
+ 0.381600000000D+06 0.372529029846D-07 0.249892353522D+01 0.353902578354D-07
+ 0.977923396469D+00 0.160250000000D+03-0.105927797369D+00-0.773103631441D-08
+ 0.205722854897D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.540000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 10 0 0.0 0.136598013341D-03 0.250111042988D-11 0.000000000000D+00
+ 0.780000000000D+02 0.863437500000D+02 0.505699635848D-08 0.157446494498D+01
+ 0.468827784061D-05 0.225212844089D-02 0.352971255779D-05 0.515359321022D+04
+ 0.381600000000D+06 0.145286321640D-06 0.415580141575D+00 0.111758708954D-07
+ 0.952068060290D+00 0.304906250000D+03 0.306205304568D+01-0.859857245077D-08
+ 0.550022910662D-10 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.780000000000D+02
+ 0.374400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 10 0 0.0-0.363430008292D-04-0.909494701773D-11 0.000000000000D+00
+ 0.240000000000D+02 0.610312500000D+02 0.445375691882D-08-0.164836668166D+01
+ 0.322610139847D-05 0.545790651813D-03 0.122841447592D-04 0.515362849045D+04
+ 0.381600000000D+06-0.931322574616D-08-0.704304190399D+00 0.372529029846D-07
+ 0.959479552917D+00 0.140562500000D+03-0.232676661883D+01-0.791354359819D-08
+ -0.657170221019D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.240000000000D+02
+ 0.374430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 11 59 44.0 0.212022569030D-03 0.534328137292D-11 0.000000000000D+00
+ 0.300000000000D+01 0.140937500000D+02 0.452590280773D-08-0.283283022586D+01
+ 0.780448317528D-06 0.375173054635D-03 0.726804137230D-05 0.515371592522D+04
+ 0.388784000000D+06 0.186264514923D-08-0.279522231054D+01-0.335276126862D-07
+ 0.964738423033D+00 0.244093750000D+03-0.131318200774D+01-0.806497879588D-08
+ 0.418946022212D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.300000000000D+01
+ 0.388530000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 11 59 44.0 0.445138663053D-03-0.250111042988D-11 0.000000000000D+00
+ 0.120000000000D+02 0.101906250000D+03 0.468876673453D-08 0.251674936464D+01
+ 0.525265932083D-05 0.968131795526D-02 0.478886067867D-05 0.515364272881D+04
+ 0.388784000000D+06-0.210478901863D-06 0.371870520757D+00-0.931322574615D-07
+ 0.966304485615D+00 0.292218750000D+03-0.266767499485D+01-0.818069790176D-08
+ 0.256796410887D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.120000000000D+02
+ 0.388020000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 11 59 44.0-0.762380659580D-05 0.238742359215D-11 0.000000000000D+00
+ 0.210000000000D+02-0.835937500000D+02 0.410588531232D-08-0.108822319766D+00
+ -0.439397990704D-05 0.870963139459D-02 0.465102493763D-05 0.515378205490D+04
+ 0.388784000000D+06 0.968575477600D-07 0.146767660360D+01 0.875443220139D-07
+ 0.990562183588D+00 0.302656250000D+03 0.396244852800D+00-0.821462788651D-08
+ -0.470376735936D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.210000000000D+02
+ 0.384270000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 11 59 44.0-0.199741683900D-03-0.704858393874D-11 0.000000000000D+00
+ 0.110000000000D+02-0.719062500000D+02 0.440911218647D-08 0.139112636639D+01
+ -0.372715294361D-05 0.562436599284D-02 0.465102493763D-05 0.515373371887D+04
+ 0.388784000000D+06-0.104308128357D-06 0.139753559774D+01 0.171363353729D-06
+ 0.978266785767D+00 0.300250000000D+03 0.789992981350D+00-0.828391666374D-08
+ -0.403945404903D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.110000000000D+02
+ 0.388560000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 11 59 44.0 0.109316315502D-03 0.432009983342D-11 0.000000000000D+00
+ 0.300000000000D+02-0.727500000000D+02 0.389623372235D-08-0.965369922344D+00
+ -0.378862023354D-05 0.376287277322D-02 0.113863497973D-04 0.515365129662D+04
+ 0.388784000000D+06 0.128522515297D-06 0.243902405018D+01-0.409781932831D-07
+ 0.971849977955D+00 0.168000000000D+03 0.319528488067D+00-0.774139388870D-08
+ 0.339299847486D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.300000000000D+02
+ 0.388548000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 11 59 44.0 0.136616639793D-03 0.250111042988D-11 0.000000000000D+00
+ 0.600000000000D+01 0.919375000000D+02 0.505913930489D-08 0.262248378911D+01
+ 0.488571822643D-05 0.225263426546D-02 0.380165874958D-05 0.515359229088D+04
+ 0.388784000000D+06-0.968575477600D-07 0.415517636937D+00 0.875443220139D-07
+ 0.952069507116D+00 0.303468750000D+03 0.306193491358D+01-0.849213944598D-08
+ 0.247153152064D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.600000000000D+01
+ 0.382560000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 12 0 0.0 0.253384932876D-04 0.125055521494D-11 0.000000000000D+00
+ 0.850000000000D+02 0.131875000000D+02 0.446482883518D-08-0.304650155356D+01
+ 0.709667801857D-06 0.563783291727D-02 0.753439962864D-05 0.515363776588D+04
+ 0.388800000000D+06-0.372529029846D-08-0.278680173506D+01-0.223517417908D-07
+ 0.964910245688D+00 0.236875000000D+03 0.481815355121D+00-0.794961684774D-08
+ 0.520735976458D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.850000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 12 0 0.0 0.581229571253D-03-0.375166564481D-11 0.000000000000D+00
+ 0.340000000000D+02 0.188125000000D+02 0.488484633060D-08-0.266964691479D+01
+ 0.103190541267D-05 0.157872493146D-01 0.683777034283D-05 0.515358428001D+04
+ 0.388800000000D+06 0.150874257088D-06-0.283304575319D+01-0.111758708954D-06
+ 0.943714422088D+00 0.236937500000D+03-0.210494826816D+01-0.802211986778D-08
+ 0.536808074497D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.340000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 12 0 0.0-0.717327930033D-04-0.318323145621D-11 0.000000000000D+00
+ 0.102000000000D+03-0.359687500000D+02 0.478234206089D-08-0.213126649210D+01
+ -0.184401869774D-05 0.207231147215D-03 0.690296292305D-05 0.515366761589D+04
+ 0.388800000000D+06 0.298023223877D-07-0.174528715783D+01-0.242143869400D-07
+ 0.958903496740D+00 0.241375000000D+03-0.157409623550D+01-0.820177020808D-08
+ -0.261439461432D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.102000000000D+03
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 12 0 0.0-0.258456449956D-03-0.454747350886D-12 0.000000000000D+00
+ 0.700000000000D+02-0.794687500000D+02 0.561666252797D-08 0.143443496186D+00
+ -0.396929681301D-05 0.850093062036D-02 0.442750751972D-05 0.515365468597D+04
+ 0.388800000000D+06 0.372529029846D-08 0.141932811637D+01 0.104308128357D-06
+ 0.983037673225D+00 0.301968750000D+03 0.899170215283D+00-0.835284792964D-08
+ -0.467876631797D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.630000000000D+02-0.195577740669D-07 0.700000000000D+02
+ 0.382560000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 12 0 0.0-0.108944717795D-03 0.284217094304D-11 0.000000000000D+00
+ 0.760000000000D+02-0.348125000000D+02 0.502735226654D-08-0.183391938530D+00
+ -0.165589153767D-05 0.454802718014D-02 0.697746872902D-05 0.515354068947D+04
+ 0.388800000000D+06 0.149011611938D-07-0.175764652906D+01 0.577419996262D-07
+ 0.945967454907D+00 0.235906250000D+03 0.454860425345D+00-0.836892002768D-08
+ -0.238938524177D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.760000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 12 0 0.0 0.212022103369D-03 0.534328137292D-11 0.000000000000D+00
+ 0.920000000000D+02 0.140937500000D+02 0.452590280773D-08-0.283051349173D+01
+ 0.780448317528D-06 0.375173054635D-03 0.726804137230D-05 0.515371592903D+04
+ 0.388800000000D+06 0.186264514923D-08-0.279522243342D+01-0.335276126862D-07
+ 0.964738427422D+00 0.244093750000D+03-0.131316509348D+01-0.806497879588D-08
+ 0.418946022212D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.920000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 12 0 0.0-0.409712083638D-04-0.147792889038D-11 0.000000000000D+00
+ 0.360000000000D+02-0.727187500000D+02 0.406766943476D-08-0.105299326300D+00
+ -0.367313623428D-05 0.169483222999D-02 0.113025307655D-04 0.515371880150D+04
+ 0.388800000000D+06-0.335276126862D-07 0.243606115099D+01-0.484287738800D-07
+ 0.963756693820D+00 0.166062500000D+03-0.104772151042D+01-0.782961184905D-08
+ 0.421446126351D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.360000000000D+02
+ 0.381600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 12 0 0.0 0.158479902893D-03 0.727595761418D-11 0.000000000000D+00
+ 0.320000000000D+02 0.471562500000D+02 0.457161899771D-08-0.135629115920D+01
+ 0.232271850109D-05 0.531392870471D-03 0.118743628264D-04 0.515355632782D+04
+ 0.388800000000D+06 0.372529029846D-08-0.705925299662D+00-0.186264514923D-08
+ 0.954890765113D+00 0.152968750000D+03 0.239231453444D+01-0.794247369305D-08
+ -0.785747015231D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.320000000000D+02
+ 0.382830000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 12 0 0.0-0.561955384910D-04-0.773070496507D-11 0.000000000000D+00
+ 0.990000000000D+02-0.313437500000D+02 0.475591238855D-08 0.904058955421D+00
+ -0.170432031155D-05 0.159904058091D-02 0.764243304729D-05 0.515367648888D+04
+ 0.388800000000D+06-0.745058059692D-08-0.174926795980D+01 0.540167093277D-07
+ 0.959138025914D+00 0.231781250000D+03-0.272254679910D+01-0.811105214359D-08
+ -0.315013121561D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.990000000000D+02
+ 0.381618000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 12 0 0.0-0.654148869216D-03-0.147792889038D-11 0.000000000000D+00
+ 0.280000000000D+02 0.312500000000D+01 0.572095258635D-08 0.263476791223D+01
+ 0.251457095146D-06 0.165351764299D-01 0.859051942825D-05 0.515366815186D+04
+ 0.388800000000D+06 0.199303030968D-06 0.311714858863D+01-0.763684511185D-07
+ 0.897403371584D+00 0.175468750000D+03 0.153642574824D+01-0.831713215622D-08
+ 0.436803908922D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.280000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 12 0 0.0 0.384113285691D-03 0.102318153950D-11 0.000000000000D+00
+ 0.260000000000D+02-0.731562500000D+02 0.403588239642D-08 0.193165270996D+01
+ -0.401213765144D-05 0.612782535609D-02 0.532343983650D-05 0.515370506096D+04
+ 0.388800000000D+06-0.199303030968D-06 0.144887641662D+01-0.204890966415D-07
+ 0.990057292523D+00 0.293312500000D+03 0.771716382982D+00-0.797568936233D-08
+ -0.391802034413D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.260000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 12 0 0.0-0.281133688986D-04-0.250111042988D-11 0.000000000000D+00
+ 0.920000000000D+02 0.754375000000D+02 0.413481508879D-08-0.284134249266D+01
+ 0.388175249100D-05 0.421938323416D-02 0.111274421215D-04 0.515368762016D+04
+ 0.388800000000D+06 0.167638063431D-07-0.584725427521D+00 0.484287738800D-07
+ 0.971348790999D+00 0.168593750000D+03 0.200501486247D+01-0.770353516887D-08
+ -0.785747015231D-11 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.920000000000D+02
+ 0.381600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 12 0 0.0-0.220951624215D-04-0.204636307899D-11 0.000000000000D+00
+ 0.170000000000D+02 0.830312500000D+02 0.434803837379D-08-0.122057949227D+01
+ 0.450387597084D-05 0.881699053571D-02 0.119395554066D-04 0.515403689575D+04
+ 0.388800000000D+06 0.577419996262D-07-0.621971590996D+00 0.206753611565D-06
+ 0.963810755958D+00 0.150906250000D+03-0.196359509612D+01-0.788854315203D-08
+ 0.750031200342D-11 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.170000000000D+02
+ 0.381630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 12 0 0.0-0.317436642945D-03-0.159161572810D-11 0.000000000000D+00
+ 0.840000000000D+02 0.586250000000D+02 0.510378402166D-08-0.173332106725D+01
+ 0.270083546638D-05 0.817397702485D-02 0.106729567051D-04 0.515361957741D+04
+ 0.388800000000D+06 0.633299350738D-07-0.759299924301D+00-0.109896063805D-06
+ 0.930561131069D+00 0.154843750000D+03 0.485160229534D+00-0.813712465819D-08
+ -0.232152527228D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.840000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 12 0 0.0-0.203987117857D-03 0.000000000000D+00 0.000000000000D+00
+ 0.720000000000D+02-0.522187500000D+02 0.393909265045D-08-0.950075460536D+00
+ -0.272132456303D-05 0.109794769669D-01 0.104364007711D-04 0.515371856117D+04
+ 0.388800000000D+06-0.111758708954D-07 0.248911751049D+01 0.217929482460D-06
+ 0.976933669483D+00 0.189875000000D+03-0.192713481224D+01-0.789640034534D-08
+ 0.296440919383D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.720000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 12 0 0.0 0.531774014235D-03 0.386535248253D-11 0.000000000000D+00
+ 0.540000000000D+02-0.316875000000D+02 0.569095133668D-08 0.606686731783D+00
+ -0.174157321453D-05 0.172617055941D-01 0.721216201782D-05 0.515368811417D+04
+ 0.388800000000D+06-0.242143869400D-06-0.177949904780D+01 0.931322574616D-08
+ 0.924637380778D+00 0.223500000000D+03-0.187463753761D+01-0.886501212048D-08
+ -0.401802450971D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.540000000000D+02
+ 0.381618000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 12 0 0.0-0.525243114680D-03 0.227373675443D-12 0.000000000000D+00
+ 0.320000000000D+02-0.605937500000D+02 0.385230336519D-08 0.216835930373D+01
+ -0.346451997757D-05 0.107844979502D-01 0.109206885099D-04 0.515363165283D+04
+ 0.388800000000D+06-0.100582838059D-06 0.253779868139D+01-0.210478901863D-06
+ 0.974080288731D+00 0.181156250000D+03 0.804424959323D+00-0.766674812525D-08
+ 0.439304009836D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.320000000000D+02
+ 0.381630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 12 0 0.0 0.421496108174D-03 0.227373675443D-11 0.000000000000D+00
+ 0.240000000000D+02-0.319687500000D+02 0.550630078810D-08-0.177070636009D+01
+ -0.145100057125D-05 0.456242670771D-02 0.647082924843D-05 0.515375270081D+04
+ 0.388800000000D+06 0.540167093277D-07-0.183128377600D+01 0.856816768646D-07
+ 0.925933204355D+00 0.229531250000D+03 0.139054511392D+01-0.849821112746D-08
+ -0.191436545529D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.240000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 12 0 0.0-0.527198892087D-03-0.102318153950D-11 0.000000000000D+00
+ 0.370000000000D+02 0.765625000000D+01 0.528736299188D-08 0.151322808949D+01
+ -0.409781932831D-07 0.233501298353D-01 0.710040330887D-05 0.515358471108D+04
+ 0.388800000000D+06-0.240281224251D-06-0.282134203405D+01-0.545755028725D-06
+ 0.936928517119D+00 0.233500000000D+03-0.177891649481D+01-0.853107007259D-08
+ 0.428589275181D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.370000000000D+02
+ 0.385260000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 12 0 0.0 0.308028887957D-03-0.898126018001D-11 0.000000000000D+00
+ 0.580000000000D+02-0.338125000000D+02 0.565559272099D-08-0.141245595629D+01
+ -0.150501728058D-05 0.766562006902D-02 0.646896660328D-05 0.515378173447D+04
+ 0.388800000000D+06 0.141561031342D-06-0.177892127270D+01 0.132247805595D-06
+ 0.922550153631D+00 0.230625000000D+03-0.189844153056D+01-0.863857411700D-08
+ -0.222509268404D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.580000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 12 0 0.0-0.180249568075D-03-0.159161572810D-11 0.000000000000D+00
+ 0.290000000000D+02 0.543750000000D+02 0.467412326742D-08-0.226115208192D+01
+ 0.242702662945D-05 0.110836166423D-01 0.121425837278D-04 0.515366240120D+04
+ 0.388800000000D+06 0.126659870148D-06-0.700988843525D+00-0.150874257088D-06
+ 0.945822892269D+00 0.136906250000D+03-0.255835415063D+01-0.794390232399D-08
+ 0.332156692802D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.290000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 12 0 0.0-0.193906016648D-04-0.568434188608D-12 0.000000000000D+00
+ 0.600000000000D+02 0.950000000000D+02 0.505771067395D-08-0.280638937281D+01
+ 0.485591590404D-05 0.442249944899D-02 0.404939055443D-05 0.515361183357D+04
+ 0.388800000000D+06-0.242143869400D-07 0.324135556496D+00-0.987201929092D-07
+ 0.949393364742D+00 0.296343750000D+03 0.412524864962D+00-0.843106547343D-08
+ 0.202151277555D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.290000000000D+01 0.000000000000D+00 0.232830643654D-08 0.600000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 12 0 0.0-0.199742149562D-03-0.704858393874D-11 0.000000000000D+00
+ 0.870000000000D+02-0.719062500000D+02 0.440911222865D-08 0.139346016984D+01
+ -0.372715294361D-05 0.562437437475D-02 0.465102493763D-05 0.515373371887D+04
+ 0.388800000000D+06-0.104308128357D-06 0.139753544853D+01 0.171363353729D-06
+ 0.978266782841D+00 0.300250000000D+03 0.789992845299D+00-0.828391648694D-08
+ -0.403945397376D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.870000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 12 0 0.0-0.410476699471D-03-0.105728759081D-10 0.000000000000D+00
+ 0.410000000000D+02-0.832812500000D+02 0.483627271564D-08 0.600498746303D+00
+ -0.424124300480D-05 0.100587692577D-02 0.368058681488D-05 0.515378091240D+04
+ 0.388800000000D+06 0.186264514923D-07 0.138796472685D+01-0.745058059692D-08
+ 0.960228327055D+00 0.303187500000D+03 0.182451149080D+00-0.850178238920D-08
+ -0.454304649455D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.410000000000D+02
+ 0.387420000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 12 0 0.0 0.109315849841D-03 0.432009983342D-11 0.000000000000D+00
+ 0.960000000000D+02-0.727500000000D+02 0.389623372235D-08-0.963036731854D+00
+ -0.378862023354D-05 0.376287859399D-02 0.113863497973D-04 0.515365130043D+04
+ 0.388800000000D+06 0.128522515297D-06 0.243902390974D+01-0.409781932831D-07
+ 0.971849969178D+00 0.168000000000D+03 0.319529033735D+00-0.774139388870D-08
+ 0.339299847486D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00 0.139698386192D-08 0.960000000000D+02
+ 0.381618000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 12 0 0.0 0.533830374479D-03 0.272848410532D-11 0.000000000000D+00
+ 0.470000000000D+02-0.711562500000D+02 0.416874507354D-08-0.140820179783D+00
+ -0.363588333130D-05 0.197509347927D-01 0.480748713017D-05 0.515362938499D+04
+ 0.388800000000D+06-0.249594449997D-06 0.147258959746D+01 0.260770320892D-07
+ 0.989275500324D+00 0.304375000000D+03-0.161491433290D+01-0.845428072616D-08
+ -0.336799743347D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.470000000000D+02
+ 0.381600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 12 0 0.0 0.656120944768D-03-0.568434188608D-12 0.000000000000D+00
+ 0.560000000000D+02-0.437812500000D+02 0.380765860426D-08 0.127699763020D+01
+ -0.230967998505D-05 0.871269614436D-03 0.115558505058D-04 0.515355604935D+04
+ 0.388800000000D+06-0.521540641785D-07 0.249886850756D+01 0.117346644402D-06
+ 0.977924979346D+00 0.164500000000D+03-0.105276610108D+00-0.765317592835D-08
+ 0.141077305008D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.290000000000D+01 0.000000000000D+00-0.102445483208D-07 0.560000000000D+02
+ 0.381600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 12 0 0.0 0.136616174132D-03 0.250111042988D-11 0.000000000000D+00
+ 0.790000000000D+02 0.919375000000D+02 0.505913930489D-08 0.262481935392D+01
+ 0.488571822643D-05 0.225264311302D-02 0.380165874958D-05 0.515359227943D+04
+ 0.388800000000D+06-0.968575477600D-07 0.415517493571D+00 0.875443220139D-07
+ 0.952069502728D+00 0.303468750000D+03 0.306193325317D+01-0.849213944598D-08
+ 0.247153152064D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00 0.325962901115D-08 0.790000000000D+02
+ 0.381600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 12 0 0.0 0.261294655502D-03-0.193267624127D-11 0.000000000000D+00
+ 0.250000000000D+02 0.968750000000D+02 0.472019667796D-08 0.237381826137D+01
+ 0.518001616001D-05 0.814527238254D-02 0.404752790928D-05 0.515377208710D+04
+ 0.388800000000D+06 0.391155481338D-07 0.381368737287D+00 0.186264514923D-06
+ 0.971113893169D+00 0.307125000000D+03-0.395809157760D+00-0.832570368203D-08
+ 0.178578873911D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.250000000000D+02
+ 0.381630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 12 0 0.0-0.364086590707D-04-0.920863385545D-11 0.000000000000D+00
+ 0.250000000000D+02 0.695625000000D+02 0.441196945644D-08-0.598749849683D+00
+ 0.365637242794D-05 0.546400551684D-03 0.121016055346D-04 0.515362844086D+04
+ 0.388800000000D+06 0.372529029846D-08-0.704361114005D+00 0.186264514923D-08
+ 0.959479285204D+00 0.146343750000D+03-0.232617453053D+01-0.787818521530D-08
+ -0.535736593976D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.250000000000D+02
+ 0.381630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 13 59 44.0 0.212060753256D-03 0.534328137292D-11 0.000000000000D+00
+ 0.400000000000D+01 0.156875000000D+02 0.458304804520D-08-0.178391039827D+01
+ 0.759959220886D-06 0.375394476578D-03 0.742264091969D-05 0.515371499443D+04
+ 0.395984000000D+06 0.745058059692D-08-0.279528038839D+01 0.372529029846D-08
+ 0.964741269872D+00 0.240281250000D+03-0.131194642566D+01-0.809283709915D-08
+ 0.404302555110D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.400000000000D+01
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 13 59 44.0-0.199791975319D-03-0.704858393874D-11 0.000000000000D+00
+ 0.200000000000D+02-0.700000000000D+02 0.433018036939D-08 0.244121477439D+01
+ -0.381283462048D-05 0.562376528978D-02 0.414811074734D-05 0.515373465729D+04
+ 0.395984000000D+06-0.987201929092D-07 0.139747609501D+01-0.782310962677D-07
+ 0.978265160465D+00 0.307750000000D+03 0.790048377669D+00-0.807319342377D-08
+ -0.307155651409D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.200000000000D+02
+ 0.392880000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 13 59 44.0 0.109347049147D-03 0.432009983342D-11 0.000000000000D+00
+ 0.310000000000D+02-0.656875000000D+02 0.409195610729D-08 0.846200093345D-01
+ -0.350549817085D-05 0.376211933326D-02 0.113286077976D-04 0.515364939499D+04
+ 0.395984000000D+06 0.167638063431D-07 0.243896793118D+01 0.391155481338D-07
+ 0.971849501044D+00 0.162312500000D+03 0.319730350281D+00-0.787961429438D-08
+ 0.117862048246D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.310000000000D+02
+ 0.394140000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 13 59 44.0 0.136634800583D-03 0.250111042988D-11 0.000000000000D+00
+ 0.160000000000D+02 0.980625000000D+02 0.505663920075D-08-0.261032587487D+01
+ 0.516138970852D-05 0.225391378626D-02 0.436976552010D-05 0.515358988762D+04
+ 0.395984000000D+06-0.109896063805D-06 0.415456530849D+00-0.130385160446D-07
+ 0.952071436705D+00 0.295125000000D+03 0.306179502350D+01-0.847963892528D-08
+ 0.271082720255D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.160000000000D+02
+ 0.392070000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 14 0 0.0 0.253478065133D-04 0.125055521494D-11 0.000000000000D+00
+ 0.890000000000D+02 0.712500000000D+01 0.449447292712D-08-0.199640354880D+01
+ 0.426545739174D-06 0.563868728932D-02 0.734254717827D-05 0.515363580704D+04
+ 0.396000000000D+06-0.577419996262D-07-0.278685866305D+01-0.800937414169D-07
+ 0.964913924927D+00 0.241062500000D+03 0.481920407268D+00-0.793247327649D-08
+ 0.467876631797D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.890000000000D+02
+ 0.388800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 14 0 0.0 0.581202562898D-03-0.375166564481D-11 0.000000000000D+00
+ 0.470000000000D+02 0.185000000000D+02 0.496913555587D-08-0.161940067109D+01
+ 0.100955367088D-05 0.157870618859D-01 0.701099634171D-05 0.515358467674D+04
+ 0.396000000000D+06 0.379979610443D-06-0.283310296792D+01 0.111758708954D-07
+ 0.943717703413D+00 0.235125000000D+03-0.210495678820D+01-0.815105380982D-08
+ 0.414660129402D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.470000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 14 0 0.0-0.717560760677D-04-0.318323145621D-11 0.000000000000D+00
+ 0.103000000000D+03-0.337187500000D+02 0.471412493365D-08-0.108514703351D+01
+ -0.167451798916D-05 0.207384582609D-03 0.742264091969D-05 0.515366601181D+04
+ 0.396000000000D+06 0.987201929092D-07-0.174534598615D+01 0.167638063431D-07
+ 0.958901891918D+00 0.235500000000D+03-0.157002879366D+01-0.813498171178D-08
+ -0.270368404786D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.103000000000D+03
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 14 0 0.0-0.258460175246D-03-0.454747350886D-12 0.000000000000D+00
+ 0.710000000000D+02-0.745625000000D+02 0.568380818200D-08 0.119368058056D+01
+ -0.375136733055D-05 0.850106379949D-02 0.472739338875D-05 0.515365451050D+04
+ 0.396000000000D+06-0.109896063805D-06 0.141926763495D+01 0.195577740669D-06
+ 0.983034498693D+00 0.302500000000D+03 0.899133667201D+00-0.832141804904D-08
+ -0.384658879729D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.630000000000D+02-0.195577740669D-07 0.710000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 14 0 0.0-0.108924694359D-03 0.284217094304D-11 0.000000000000D+00
+ 0.770000000000D+02-0.386250000000D+02 0.500735143343D-08 0.866963245756D+00
+ -0.188313424587D-05 0.454759004060D-02 0.685639679432D-05 0.515353964996D+04
+ 0.396000000000D+06-0.931322574615D-07-0.175770630535D+01 0.689178705216D-07
+ 0.945965731590D+00 0.239531250000D+03 0.454770834779D+00-0.831927510263D-08
+ -0.301441127661D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.770000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 14 0 0.0 0.445120502263D-03-0.250111042988D-11 0.000000000000D+00
+ 0.130000000000D+02 0.104843750000D+03 0.467019453235D-08-0.271389320272D+01
+ 0.524893403053D-05 0.968099397141D-02 0.484846532345D-05 0.515364329338D+04
+ 0.396000000000D+06-0.100582838059D-06 0.371811137986D+00-0.240281224251D-06
+ 0.966306273301D+00 0.292937500000D+03-0.266768287559D+01-0.823712882376D-08
+ 0.315727437029D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.130000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 14 0 0.0-0.409819185734D-04-0.147792889038D-11 0.000000000000D+00
+ 0.370000000000D+02-0.704062500000D+02 0.418803159118D-08 0.945282086565D+00
+ -0.382401049137D-05 0.169442722108D-02 0.115800648928D-04 0.515371755028D+04
+ 0.396000000000D+06 0.223517417908D-07 0.243600481402D+01 0.000000000000D+00
+ 0.963756670414D+00 0.157406250000D+03-0.104815283573D+01-0.787389940809D-08
+ 0.428589281035D-11 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.370000000000D+02
+ 0.395010000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 14 0 0.0 0.158532056957D-03 0.727595761418D-11 0.000000000000D+00
+ 0.530000000000D+02 0.528750000000D+02 0.437125350883D-08-0.302420388200D+00
+ 0.257231295109D-05 0.532665522769D-03 0.121686607599D-04 0.515356061935D+04
+ 0.396000000000D+06 0.745058059692D-08-0.705982495370D+00-0.186264514923D-08
+ 0.954890206278D+00 0.136625000000D+03 0.238869427887D+01-0.794354516626D-08
+ -0.775032283206D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.530000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 14 0 0.0-0.562509521842D-04-0.773070496507D-11 0.000000000000D+00
+ 0.100000000000D+03-0.285000000000D+02 0.473305429357D-08 0.195466059459D+01
+ -0.148266553879D-05 0.159896747209D-02 0.730156898499D-05 0.515367521477D+04
+ 0.396000000000D+06-0.223517417908D-07-0.174932632146D+01 0.298023223877D-07
+ 0.959135701338D+00 0.235718750000D+03-0.272296726809D+01-0.810533761985D-08
+ -0.322513433979D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.100000000000D+03
+ 0.392250000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 14 0 0.0-0.654160045087D-03-0.147792889038D-11 0.000000000000D+00
+ 0.630000000000D+02 0.990625000000D+01 0.573738184213D-08-0.259825166734D+01
+ 0.590458512306D-06 0.165349442978D-01 0.873953104019D-05 0.515366856194D+04
+ 0.396000000000D+06 0.219792127609D-06 0.311708824619D+01 0.260770320892D-07
+ 0.897406805053D+00 0.174000000000D+03 0.153645260449D+01-0.832320383771D-08
+ 0.513949979508D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.121071934700D-07 0.630000000000D+02
+ 0.388800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 14 0 0.0 0.384120270610D-03 0.102318153950D-11 0.000000000000D+00
+ 0.440000000000D+02-0.695625000000D+02 0.401552440557D-08 0.298155589645D+01
+ -0.378675758839D-05 0.612587598153D-02 0.415742397308D-05 0.515370973587D+04
+ 0.396000000000D+06-0.134110450745D-06 0.144881910680D+01-0.141561031342D-06
+ 0.990054700232D+00 0.310843750000D+03 0.771969975442D+00-0.794818821680D-08
+ -0.362872257943D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.440000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 14 0 0.0-0.281310640276D-04-0.250111042988D-11 0.000000000000D+00
+ 0.930000000000D+02 0.655000000000D+02 0.406231206875D-08-0.179114042908D+01
+ 0.356882810593D-05 0.421847798862D-02 0.114031136036D-04 0.515368897057D+04
+ 0.396000000000D+06-0.391155481338D-07-0.584780951114D+00 0.651925802231D-07
+ 0.971348545229D+00 0.167750000000D+03 0.200498096227D+01-0.774532262378D-08
+ -0.107147320259D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.930000000000D+02
+ 0.388800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 14 0 0.0-0.221100635827D-04-0.204636307899D-11 0.000000000000D+00
+ 0.180000000000D+02 0.792812500000D+02 0.428839275202D-08-0.170526387406D+00
+ 0.405311584473D-05 0.881686259527D-02 0.116527080536D-04 0.515403774834D+04
+ 0.396000000000D+06-0.800937414169D-07-0.622028924219D+00 0.152736902237D-06
+ 0.963810520428D+00 0.161687500000D+03-0.196369184475D+01-0.796711763229D-08
+ 0.750031200342D-11 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.180000000000D+02
+ 0.388830000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 14 0 0.0-0.317447818816D-03-0.159161572810D-11 0.000000000000D+00
+ 0.860000000000D+02 0.400000000000D+02 0.498877923125D-08-0.682806408805D+00
+ 0.227242708206D-05 0.817492662463D-02 0.105854123831D-04 0.515362452698D+04
+ 0.396000000000D+06 0.154599547386D-06-0.759358275714D+00 0.670552253723D-07
+ 0.930560070453D+00 0.157375000000D+03 0.484861425590D+00-0.829213111483D-08
+ -0.124290891500D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.860000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 14 0 0.0-0.760657712817D-05 0.238742359215D-11 0.000000000000D+00
+ 0.440000000000D+02-0.821562500000D+02 0.416624512667D-08 0.943583874204D+00
+ -0.398606061935D-05 0.870972906705D-02 0.488944351673D-05 0.515378248406D+04
+ 0.396000000000D+06 0.484287738800D-07 0.146761760704D+01 0.113621354103D-06
+ 0.990558786692D+00 0.298500000000D+03 0.396284281368D+00-0.818462631003D-08
+ -0.500020802541D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.440000000000D+02
+ 0.392220000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 14 0 0.0-0.203986652195D-03 0.000000000000D+00 0.000000000000D+00
+ 0.730000000000D+02-0.661562500000D+02 0.405052586352D-08 0.999918521934D-01
+ -0.331550836563D-05 0.109777327161D-01 0.105593353510D-04 0.515371479607D+04
+ 0.396000000000D+06-0.987201929092D-07 0.248906029576D+01 0.113621354103D-06
+ 0.976933779202D+00 0.188187500000D+03-0.192705104408D+01-0.793961643118D-08
+ 0.203579908492D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.107102096081D-07 0.730000000000D+02
+ 0.388800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 14 0 0.0 0.531801488250D-03 0.386535248253D-11 0.000000000000D+00
+ 0.910000000000D+02-0.406875000000D+02 0.549701468701D-08 0.165679013616D+01
+ -0.231340527534D-05 0.172621185193D-01 0.693090260029D-05 0.515369072914D+04
+ 0.396000000000D+06-0.204890966415D-06-0.177956326845D+01-0.387430191040D-06
+ 0.924635980766D+00 0.227312500000D+03-0.187456087046D+01-0.855892794228D-08
+ -0.262153776900D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.910000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 14 0 0.0-0.525241717696D-03 0.227373675443D-12 0.000000000000D+00
+ 0.590000000000D+02-0.700000000000D+02 0.399409494152D-08-0.306459055755D+01
+ -0.363029539585D-05 0.107858120464D-01 0.107269734144D-04 0.515362919044D+04
+ 0.396000000000D+06 0.335276126862D-07 0.253774381903D+01-0.210478901863D-06
+ 0.974080859269D+00 0.176218750000D+03 0.804392245549D+00-0.761210278892D-08
+ 0.557166065346D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.590000000000D+02
+ 0.388800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 14 0 0.0 0.421511940658D-03 0.227373675443D-11 0.000000000000D+00
+ 0.480000000000D+02-0.313437500000D+02 0.545879880945D-08-0.720376743223D+00
+ -0.148452818394D-05 0.456263485830D-02 0.652670860290D-05 0.515375438118D+04
+ 0.396000000000D+06-0.707805156708D-07-0.183134553309D+01 0.633299350738D-07
+ 0.925931298172D+00 0.236031250000D+03 0.139035447375D+01-0.862393064990D-08
+ -0.183936233111D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.480000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 14 0 0.0-0.527205877006D-03-0.102318153950D-11 0.000000000000D+00
+ 0.520000000000D+02 0.150937500000D+02 0.504913888833D-08 0.256342540443D+01
+ 0.614672899246D-06 0.233494034037D-01 0.627897679806D-05 0.515358694649D+04
+ 0.396000000000D+06 0.244006514549D-06-0.282140014554D+01-0.145286321640D-06
+ 0.936933773384D+00 0.239156250000D+03-0.177887497280D+01-0.794925969000D-08
+ 0.322870591713D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.520000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 14 0 0.0 0.307964161038D-03-0.898126018001D-11 0.000000000000D+00
+ 0.680000000000D+02-0.332500000000D+02 0.561559105477D-08-0.362382682168D+00
+ -0.163540244103D-05 0.766554742586D-02 0.694394111633D-05 0.515378107643D+04
+ 0.396000000000D+06-0.186264514923D-08-0.177898377441D+01 0.182539224625D-06
+ 0.922548272319D+00 0.227062500000D+03-0.189839143731D+01-0.868929051526D-08
+ -0.245367363393D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.680000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 14 0 0.0-0.180260743946D-03-0.159161572810D-11 0.000000000000D+00
+ 0.300000000000D+02 0.669687500000D+02 0.463269297026D-08-0.121111030882D+01
+ 0.342726707458D-05 0.110834833467D-01 0.116322189569D-04 0.515365941429D+04
+ 0.396000000000D+06 0.245869159698D-06-0.701045882701D+00-0.614672899246D-07
+ 0.945823018079D+00 0.140250000000D+03-0.255820697376D+01-0.800247619240D-08
+ -0.357157734196D-11 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.300000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 14 0 0.0-0.193952582776D-04-0.568434188608D-12 0.000000000000D+00
+ 0.620000000000D+02 0.998437500000D+02 0.503020952842D-08-0.175589907634D+01
+ 0.507012009621D-05 0.442160177045D-02 0.450760126114D-05 0.515361462593D+04
+ 0.396000000000D+06 0.106170773506D-06 0.324074094918D+00-0.316649675369D-07
+ 0.949395102688D+00 0.286750000000D+03 0.412256685746D+00-0.847749597888D-08
+ 0.303941231801D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.290000000000D+01 0.000000000000D+00 0.232830643654D-08 0.620000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 14 0 0.0-0.410553067923D-03-0.105728759081D-10 0.000000000000D+00
+ 0.600000000000D+02-0.789375000000D+02 0.489806116676D-08 0.165001882819D+01
+ -0.387616455555D-05 0.100630824454D-02 0.410154461861D-05 0.515378227425D+04
+ 0.396000000000D+06 0.856816768646D-07 0.138790279714D+01 0.132247805595D-06
+ 0.960225344166D+00 0.299531250000D+03 0.183048721857D+00-0.852642658846D-08
+ -0.333942481473D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.600000000000D+02
+ 0.394920000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 14 0 0.0 0.533849932253D-03 0.272848410532D-11 0.000000000000D+00
+ 0.770000000000D+02-0.776562500000D+02 0.426624913497D-08 0.909359502611D+00
+ -0.426359474659D-05 0.197505172109D-01 0.478141009808D-05 0.515362901878D+04
+ 0.396000000000D+06-0.271946191788D-06 0.147252885564D+01-0.171363353729D-06
+ 0.989272752964D+00 0.311531250000D+03-0.161488723234D+01-0.841963642594D-08
+ -0.386444668400D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.770000000000D+02
+ 0.388800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 14 0 0.0 0.656116753817D-03-0.568434188608D-12 0.000000000000D+00
+ 0.600000000000D+02-0.467500000000D+02 0.388016162431D-08 0.232848078577D+01
+ -0.250712037086D-05 0.871180207469D-03 0.112727284432D-04 0.515355412674D+04
+ 0.396000000000D+06-0.353902578354D-07 0.249881401532D+01-0.353902578354D-07
+ 0.977925466498D+00 0.173000000000D+03-0.106511141805D+00-0.766067624077D-08
+ 0.189293599124D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.290000000000D+01 0.000000000000D+00-0.102445483208D-07 0.600000000000D+02
+ 0.388800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 14 0 0.0 0.261280685663D-03-0.193267624127D-11 0.000000000000D+00
+ 0.260000000000D+02 0.924687500000D+02 0.460662045566D-08-0.285924922730D+01
+ 0.495277345181D-05 0.814454839565D-02 0.394880771637D-05 0.515377339554D+04
+ 0.396000000000D+06-0.106170773506D-06 0.381308650853D+00 0.111758708954D-07
+ 0.971116252856D+00 0.310781250000D+03-0.395804931390D+00-0.817141180067D-08
+ 0.295012288446D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.260000000000D+02
+ 0.389130000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 14 0 0.0-0.364747829735D-04-0.920863385545D-11 0.000000000000D+00
+ 0.260000000000D+02 0.656875000000D+02 0.434589519926D-08 0.452688900470D+00
+ 0.321306288242D-05 0.545935588889D-03 0.116154551506D-04 0.515362765884D+04
+ 0.396000000000D+06-0.298023223877D-07-0.704417572402D+00 0.279396772385D-07
+ 0.959478925326D+00 0.156562500000D+03-0.232740648749D+01-0.784854137237D-08
+ -0.789318610472D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.260000000000D+02
+ 0.388830000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 15 59 44.0 0.253580510616D-04 0.125055521494D-11 0.000000000000D+00
+ 0.000000000000D+00 0.108750000000D+02 0.463662170533D-08-0.948655266980D+00
+ 0.499188899994D-06 0.563872267958D-02 0.719167292118D-05 0.515363451385D+04
+ 0.403184000000D+06 0.206753611565D-06-0.278691499710D+01 0.000000000000D+00
+ 0.964916164654D+00 0.244531250000D+03 0.482042503874D+00-0.809319425688D-08
+ 0.283226083218D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.000000000000D+00
+ 0.401388000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 15 59 44.0-0.281473621726D-04-0.250111042988D-11 0.000000000000D+00
+ 0.900000000000D+01 0.660625000000D+02 0.401981029838D-08-0.743353968019D+00
+ 0.330433249474D-05 0.421901408117D-02 0.118352472782D-04 0.515368890381D+04
+ 0.403184000000D+06-0.540167093277D-07-0.584837010135D+00-0.745058059692D-08
+ 0.971348381382D+00 0.159218750000D+03 0.200502984714D+01-0.779639617977D-08
+ 0.100004165575D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.900000000000D+01
+ 0.401760000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 15 59 44.0-0.193901360035D-04-0.568434188608D-12 0.000000000000D+00
+ 0.240000000000D+02 0.102375000000D+03 0.498342186524D-08-0.708055928663D+00
+ 0.546313822269D-05 0.442122970708D-02 0.471435487270D-05 0.515361401558D+04
+ 0.403184000000D+06 0.335276126862D-07 0.324013200953D+00 0.428408384323D-07
+ 0.949397386303D+00 0.282500000000D+03 0.412300029083D+00-0.849356807692D-08
+ 0.325370695853D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.240000000000D+02
+ 0.397710000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 15 59 44.0 0.656113959849D-03-0.568434188608D-12 0.000000000000D+00
+ 0.110000000000D+02-0.622812500000D+02 0.387158983869D-08-0.290788007381D+01
+ -0.344403088093D-05 0.868704984896D-03 0.105388462544D-04 0.515355909729D+04
+ 0.403184000000D+06-0.409781932831D-07 0.249875897157D+01-0.931322574616D-08
+ 0.977925454795D+00 0.184125000000D+03-0.105421855929D+00-0.768782022857D-08
+ 0.857178562071D-11 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.110000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 16 0 0.0 0.253566540778D-04 0.125055521494D-11 0.000000000000D+00
+ 0.900000000000D+02 0.108750000000D+02 0.463626454760D-08-0.946321122668D+00
+ 0.499188899994D-06 0.563872593921D-02 0.719167292118D-05 0.515363451385D+04
+ 0.403200000000D+06 0.206753611565D-06-0.278691512584D+01 0.000000000000D+00
+ 0.964916163191D+00 0.244531250000D+03 0.482042187883D+00-0.809319425688D-08
+ 0.283226083218D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00 0.512227416039D-08 0.900000000000D+02
+ 0.396018000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 16 0 0.0 0.581175554544D-03-0.375166564481D-11 0.000000000000D+00
+ 0.480000000000D+02 0.180625000000D+02 0.523736101425D-08-0.569219938318D+00
+ 0.105239450932D-05 0.157864504727D-01 0.757165253162D-05 0.515358253097D+04
+ 0.403200000000D+06-0.465661287308D-07-0.283316309385D+01 0.230967998505D-06
+ 0.943718361726D+00 0.227375000000D+03-0.210489771118D+01-0.862785938497D-08
+ 0.361800784741D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.480000000000D+02
+ 0.396000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 16 0 0.0-0.717788934708D-04-0.318323145621D-11 0.000000000000D+00
+ 0.105000000000D+03-0.307187500000D+02 0.465662253845D-08-0.336760523427D-01
+ -0.150687992573D-05 0.207665376365D-03 0.747106969357D-05 0.515366672516D+04
+ 0.403200000000D+06-0.763684511185D-07-0.174540344811D+01 0.316649675369D-07
+ 0.958899801408D+00 0.235343750000D+03-0.157131375653D+01-0.804069206996D-08
+ -0.394659296287D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.105000000000D+03
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 16 0 0.0-0.258463434875D-03-0.454747350886D-12 0.000000000000D+00
+ 0.720000000000D+02-0.737500000000D+02 0.555666002862D-08 0.224383743558D+01
+ -0.393018126488D-05 0.850056216586D-02 0.428222119808D-05 0.515365535355D+04
+ 0.403200000000D+06-0.113621354103D-06 0.141920774893D+01-0.158324837685D-06
+ 0.983033568277D+00 0.309812500000D+03 0.899178309609D+00-0.801676250177D-08
+ -0.235366946835D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.300000000000D+01 0.630000000000D+02-0.195577740669D-07 0.720000000000D+02
+ 0.403200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 16 0 0.0-0.108904205263D-03 0.284217094304D-11 0.000000000000D+00
+ 0.800000000000D+02-0.368125000000D+02 0.510021225253D-08 0.191740170812D+01
+ -0.190734863281D-05 0.454735429958D-02 0.675208866596D-05 0.515353811455D+04
+ 0.403200000000D+06-0.204890966415D-07-0.175776572323D+01-0.502914190292D-07
+ 0.945963031043D+00 0.245062500000D+03 0.454599335430D+00-0.834534752414D-08
+ -0.410374234594D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.800000000000D+02
+ 0.396030000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 16 0 0.0 0.212099403143D-03 0.534328137292D-11 0.000000000000D+00
+ 0.500000000000D+01 0.975000000000D+01 0.462662128878D-08-0.734037099203D+00
+ 0.564381480217D-06 0.375167233869D-03 0.758096575737D-05 0.515371309471D+04
+ 0.403200000000D+06 0.130385160446D-07-0.279533856864D+01 0.335276126862D-07
+ 0.964744258614D+00 0.236187500000D+03-0.130932913795D+01-0.806426448041D-08
+ 0.391802034413D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.500000000000D+01
+ 0.396000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 16 0 0.0 0.445102341473D-03-0.250111042988D-11 0.000000000000D+00
+ 0.140000000000D+02 0.100843750000D+03 0.466376581798D-08-0.166384457730D+01
+ 0.497326254845D-05 0.968206650577D-02 0.383704900742D-05 0.515363986969D+04
+ 0.403200000000D+06 0.838190317154D-07 0.371750734099D+00-0.122934579849D-06
+ 0.966309102584D+00 0.305468750000D+03-0.266752935257D+01-0.829605983910D-08
+ 0.465019356355D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.140000000000D+02
+ 0.401250000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 16 0 0.0-0.409921631217D-04-0.147792889038D-11 0.000000000000D+00
+ 0.380000000000D+02-0.615000000000D+02 0.427696367211D-08 0.199479240494D+01
+ -0.308267772198D-05 0.169421778992D-02 0.112000852823D-04 0.515371953964D+04
+ 0.403200000000D+06-0.372529029846D-08 0.243594792991D+01-0.298023223877D-07
+ 0.963756610434D+00 0.158968750000D+03-0.104751124082D+01-0.790354359737D-08
+ 0.114290478123D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.380000000000D+02
+ 0.399660000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 16 0 0.0 0.158584211022D-03 0.727595761418D-11 0.000000000000D+00
+ 0.670000000000D+02 0.662187500000D+02 0.433125184260D-08 0.747707603446D+00
+ 0.350363552570D-05 0.530998338945D-03 0.123139470816D-04 0.515355758858D+04
+ 0.403200000000D+06 0.279396772385D-07-0.706039689616D+00-0.260770320892D-07
+ 0.954889777644D+00 0.136562500000D+03 0.238881665196D+01-0.791675833619D-08
+ -0.703600736366D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.670000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 16 0 0.0-0.563063658774D-04-0.773070496507D-11 0.000000000000D+00
+ 0.101000000000D+03-0.302187500000D+02 0.467662337156D-08 0.300456770316D+01
+ -0.151991844177D-05 0.159828050528D-02 0.711716711521D-05 0.515367674065D+04
+ 0.403200000000D+06-0.260770320892D-07-0.174938466702D+01 0.149011611938D-07
+ 0.959133423574D+00 0.241406250000D+03-0.272269341861D+01-0.809926593836D-08
+ -0.318227541169D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.101000000000D+03
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 16 0 0.0-0.654170755297D-03-0.147792889038D-11 0.000000000000D+00
+ 0.640000000000D+02 0.212500000000D+02 0.601953645214D-08-0.154811600561D+01
+ 0.124797224998D-05 0.165359249804D-01 0.879541039467D-05 0.515366608810D+04
+ 0.403200000000D+06 0.894069671631D-07 0.311702845819D+01 0.495463609695D-06
+ 0.897408339654D+00 0.174968750000D+03 0.153651097931D+01-0.875357890741D-08
+ 0.357872049664D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.121071934700D-07 0.640000000000D+02
+ 0.402600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 16 0 0.0 0.384127721191D-03 0.102318153950D-11 0.000000000000D+00
+ 0.450000000000D+02-0.769375000000D+02 0.420731810883D-08-0.225163075275D+01
+ -0.394508242607D-05 0.612751592416D-02 0.369548797607D-05 0.515370623398D+04
+ 0.403200000000D+06 0.150874257088D-06 0.144876018338D+01-0.838190317154D-07
+ 0.990052492689D+00 0.323281250000D+03 0.772128605501D+00-0.807069331963D-08
+ -0.152149194767D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.450000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 16 0 0.0-0.281492248177D-04-0.250111042988D-11 0.000000000000D+00
+ 0.940000000000D+02 0.660625000000D+02 0.401981029838D-08-0.741020849213D+00
+ 0.330433249474D-05 0.421901256777D-02 0.118352472782D-04 0.515368890381D+04
+ 0.403200000000D+06-0.540167093277D-07-0.584837157889D+00-0.745058059692D-08
+ 0.971348382845D+00 0.159218750000D+03 0.200503043816D+01-0.779639617977D-08
+ 0.100004165575D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.111758708954D-07 0.940000000000D+02
+ 0.401400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 16 0 0.0-0.221244990826D-04-0.204636307899D-11 0.000000000000D+00
+ 0.190000000000D+02 0.684687500000D+02 0.420231790055D-08 0.879374279937D+00
+ 0.350922346115D-05 0.881617527921D-02 0.111572444439D-04 0.515403685570D+04
+ 0.403200000000D+06-0.143423676491D-06-0.622085505501D+00-0.149011611938D-07
+ 0.963810047906D+00 0.164343750000D+03-0.196363528394D+01-0.794747390133D-08
+ -0.129291099779D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.190000000000D+02
+ 0.400650000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 16 0 0.0-0.317459460348D-03-0.159161572810D-11 0.000000000000D+00
+ 0.950000000000D+02 0.310000000000D+02 0.498485049618D-08 0.367382318811D+00
+ 0.176765024662D-05 0.817308097612D-02 0.112522393465D-04 0.515362099647D+04
+ 0.403200000000D+06 0.633299350738D-07-0.759417782833D+00 0.188127160072D-06
+ 0.930559179536D+00 0.147468750000D+03 0.484887919037D+00-0.825784397235D-08
+ -0.168935608275D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.950000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 16 0 0.0-0.758981332183D-05 0.238742359215D-11 0.000000000000D+00
+ 0.450000000000D+02-0.770625000000D+02 0.421124684391D-08 0.199377359075D+01
+ -0.392086803913D-05 0.870985607617D-02 0.506266951561D-05 0.515378124618D+04
+ 0.403200000000D+06-0.240281224251D-06 0.146755780881D+01 0.180676579475D-06
+ 0.990556077368D+00 0.300781250000D+03 0.396207435744D+00-0.807283626603D-08
+ -0.293226499775D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.450000000000D+02
+ 0.399600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 16 0 0.0-0.203986186534D-03 0.000000000000D+00 0.000000000000D+00
+ 0.990000000000D+02-0.798125000000D+02 0.395409327528D-08 0.114995339595D+01
+ -0.408478081226D-05 0.109804361127D-01 0.116936862469D-04 0.515372130585D+04
+ 0.403200000000D+06-0.225380063057D-06 0.248900298595D+01 0.372529029846D-07
+ 0.976933985473D+00 0.168312500000D+03-0.192686222964D+01-0.788639992878D-08
+ 0.542879755978D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.107102096081D-07 0.990000000000D+02
+ 0.396000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 16 0 0.0 0.531828962266D-03 0.386535248253D-11 0.000000000000D+00
+ 0.950000000000D+02-0.396562500000D+02 0.533450791795D-08 0.270692356109D+01
+ -0.207871198654D-05 0.172618455254D-01 0.636465847492D-05 0.515369213677D+04
+ 0.403200000000D+06 0.111758708954D-06-0.177962278873D+01-0.149011611938D-06
+ 0.924635382432D+00 0.233562500000D+03-0.187451854678D+01-0.820462746995D-08
+ -0.323584907182D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.950000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 16 0 0.0-0.525240320712D-03 0.227373675443D-12 0.000000000000D+00
+ 0.600000000000D+02-0.700312500000D+02 0.400980988182D-08-0.201431925552D+01
+ -0.358000397682D-05 0.107850644272D-01 0.111926347017D-04 0.515363109589D+04
+ 0.403200000000D+06 0.182539224625D-06 0.253768775270D+01-0.372529029846D-08
+ 0.974081874534D+00 0.168218750000D+03 0.804325614019D+00-0.766031908304D-08
+ 0.251439044874D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.600000000000D+02
+ 0.396000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 16 0 0.0 0.421528238803D-03 0.227373675443D-11 0.000000000000D+00
+ 0.490000000000D+02-0.377500000000D+02 0.551165815411D-08 0.329717545716D+00
+ -0.180490314961D-05 0.456110038795D-02 0.620447099209D-05 0.515375144005D+04
+ 0.403200000000D+06-0.167638063431D-06-0.183140690982D+01-0.856816768646D-07
+ 0.925929751868D+00 0.245000000000D+03 0.139039906789D+01-0.859250076929D-08
+ -0.307155651409D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.490000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 16 0 0.0-0.527212861925D-03-0.102318153950D-11 0.000000000000D+00
+ 0.530000000000D+02 0.235000000000D+02 0.504985320380D-08-0.266953295201D+01
+ 0.116229057312D-05 0.233475436689D-01 0.695697963238D-05 0.515359037018D+04
+ 0.403200000000D+06 0.309199094772D-06-0.282145817658D+01 0.409781932831D-07
+ 0.936936402248D+00 0.228343750000D+03-0.177886491378D+01-0.797033199632D-08
+ 0.459304846176D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.530000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 16 0 0.0 0.307899899781D-03-0.898126018001D-11 0.000000000000D+00
+ 0.710000000000D+02-0.320937500000D+02 0.560916221555D-08 0.687749355910D+00
+ -0.159628689289D-05 0.766559829935D-02 0.704824924469D-05 0.515378115463D+04
+ 0.403200000000D+06-0.141561031342D-06-0.177904497412D+01-0.391155481338D-07
+ 0.922545833634D+00 0.227187500000D+03-0.189840121692D+01-0.863964559020D-08
+ -0.458233372974D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.710000000000D+02
+ 0.396018000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 16 0 0.0-0.180271919817D-03-0.159161572810D-11 0.000000000000D+00
+ 0.320000000000D+02 0.704062500000D+02 0.458733393801D-08-0.160875971804D+00
+ 0.377371907234D-05 0.110846611205D-01 0.115763396025D-04 0.515366173172D+04
+ 0.403200000000D+06 0.128522515297D-06-0.701104021991D+00 0.141561031342D-06
+ 0.945821964778D+00 0.150093750000D+03-0.255825138064D+01-0.818819821418D-08
+ -0.560737642688D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.320000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 16 0 0.0-0.193994492292D-04-0.568434188608D-12 0.000000000000D+00
+ 0.630000000000D+02 0.102375000000D+03 0.498342186524D-08-0.705724654596D+00
+ 0.546313822269D-05 0.442121969536D-02 0.471435487270D-05 0.515361401558D+04
+ 0.403200000000D+06 0.335276126862D-07 0.324013057587D+00 0.428408384323D-07
+ 0.949397390692D+00 0.282500000000D+03 0.412302577486D+00-0.849356807692D-08
+ 0.325370695853D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00 0.232830643654D-08 0.630000000000D+02
+ 0.396000000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 16 0 0.0-0.199842732400D-03-0.704858393874D-11 0.000000000000D+00
+ 0.210000000000D+02-0.656250000000D+02 0.439982612756D-08-0.278960601881D+01
+ -0.347755849361D-05 0.562287424691D-02 0.366754829884D-05 0.515373650551D+04
+ 0.403200000000D+06 0.484287738800D-07 0.139741684830D+01-0.219792127609D-06
+ 0.978262765668D+00 0.316593750000D+03 0.790159187862D+00-0.819712715753D-08
+ -0.205365697163D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.210000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 16 0 0.0-0.410628970712D-03-0.105728759081D-10 0.000000000000D+00
+ 0.690000000000D+02-0.684375000000D+02 0.490341853278D-08 0.270144545514D+01
+ -0.352226197720D-05 0.100695947185D-02 0.398419797421D-05 0.515377954102D+04
+ 0.403200000000D+06-0.875443220139D-07 0.138784111027D+01 0.186264514923D-08
+ 0.960223942690D+00 0.302687500000D+03 0.181740991590D+00-0.838249202158D-08
+ -0.205722854897D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.690000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 16 0 0.0 0.109378248453D-03 0.432009983342D-11 0.000000000000D+00
+ 0.320000000000D+02-0.603437500000D+02 0.415374444870D-08 0.113716624699D+01
+ -0.291317701340D-05 0.376277463511D-02 0.111572444439D-04 0.515365032196D+04
+ 0.403200000000D+06-0.186264514923D-08 0.243891116850D+01 0.633299350738D-07
+ 0.971849571264D+00 0.167531250000D+03 0.319709906001D+00-0.786818488434D-08
+ 0.571452374714D-11 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.320000000000D+02
+ 0.402780000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 16 0 0.0 0.533869490027D-03 0.272848410532D-11 0.000000000000D+00
+ 0.780000000000D+02-0.887812500000D+02 0.407588406265D-08 0.195951330745D+01
+ -0.491924583912D-05 0.197512786835D-01 0.403262674808D-05 0.515363108635D+04
+ 0.403200000000D+06 0.273808836937D-06 0.147246961916D+01-0.320374965668D-06
+ 0.989272574488D+00 0.316062500000D+03-0.161483657003D+01-0.789390024120D-08
+ -0.337871216549D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.780000000000D+02
+ 0.397920000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 16 0 0.0 0.136653427035D-03 0.250111042988D-11 0.000000000000D+00
+ 0.320000000000D+02 0.963750000000D+02 0.501235164171D-08-0.155799604522D+01
+ 0.469200313091D-05 0.225392659195D-02 0.396184623241D-05 0.515358898163D+04
+ 0.403200000000D+06 0.130385160446D-07 0.415394489956D+00-0.596046447754D-07
+ 0.952073471624D+00 0.299906250000D+03 0.306203519515D+01-0.855678499587D-08
+ 0.356443418728D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.320000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 16 0 0.0 0.261266715825D-03-0.193267624127D-11 0.000000000000D+00
+ 0.490000000000D+02 0.907187500000D+02 0.458911972669D-08-0.180915725416D+01
+ 0.461004674435D-05 0.814477726817D-02 0.424683094025D-05 0.515377279091D+04
+ 0.403200000000D+06-0.949949026108D-07 0.381249199325D+00-0.119209289551D-06
+ 0.971118118076D+00 0.309062500000D+03-0.395776016814D+00-0.826820154664D-08
+ 0.343942898031D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.490000000000D+02
+ 0.396000000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 16 0 0.0-0.365409068763D-04-0.920863385545D-11 0.000000000000D+00
+ 0.270000000000D+02 0.568437500000D+02 0.425160566787D-08 0.150207767376D+01
+ 0.295415520668D-05 0.545485061593D-03 0.111237168312D-04 0.515362787628D+04
+ 0.403200000000D+06-0.130385160446D-07-0.704473913766D+00-0.149011611938D-07
+ 0.959478189478D+00 0.159718750000D+03-0.232658714511D+01-0.785425573271D-08
+ -0.114647632677D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.270000000000D+02
+ 0.397410000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 17 59 44.0 0.253668986261D-04 0.125055521494D-11 0.000000000000D+00
+ 0.400000000000D+01 0.120937500000D+02 0.478734207832D-08 0.101579422596D+00
+ 0.618398189545D-06 0.563920836430D-02 0.668503344059D-05 0.515363548088D+04
+ 0.410384000000D+06 0.484287738800D-07-0.278697385029D+01 0.465661287308D-07
+ 0.964917497373D+00 0.248000000000D+03 0.482013846771D+00-0.824034351865D-08
+ 0.273582823063D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.400000000000D+01
+ 0.406800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 17 59 44.0-0.718031078577D-04-0.318323145621D-11 0.000000000000D+00
+ 0.600000000000D+01-0.303437500000D+02 0.475162649574D-08 0.101415040490D+01
+ -0.169128179550D-05 0.207383302040D-03 0.742822885513D-05 0.515366627884D+04
+ 0.410384000000D+06 0.502914190292D-07-0.174546087789D+01 0.186264514923D-08
+ 0.958896401587D+00 0.238062500000D+03-0.157128758200D+01-0.809855162290D-08
+ -0.492163357722D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.600000000000D+01
+ 0.405918000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 17 59 44.0-0.108883716166D-03 0.284217094304D-11 0.000000000000D+00
+ 0.000000000000D+00-0.342812500000D+02 0.513485674454D-08 0.296545016464D+01
+ -0.185333192349D-05 0.454800471198D-02 0.688619911671D-05 0.515353655624D+04
+ 0.410384000000D+06 0.447034835815D-07-0.175782557121D+01-0.558793544769D-07
+ 0.945960283683D+00 0.239687500000D+03 0.454485545273D+00-0.829498837670D-08
+ -0.409302763389D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.000000000000D+00
+ 0.407700000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 17 59 44.0-0.563627108931D-04-0.773070496507D-11 0.000000000000D+00
+ 0.170000000000D+02-0.367500000000D+02 0.468805241906D-08-0.223111306775D+01
+ -0.187195837498D-05 0.159906852059D-02 0.698678195476D-05 0.515367496872D+04
+ 0.410384000000D+06-0.856816768646D-07-0.174944259126D+01 0.745058059692D-08
+ 0.959131120941D+00 0.244812500000D+03-0.272235130351D+01-0.807783647431D-08
+ -0.351800368183D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.170000000000D+02
+ 0.405750000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 17 59 44.0-0.281650573015D-04-0.250111042988D-11 0.000000000000D+00
+ 0.100000000000D+02 0.734687500000D+02 0.395123601341D-08 0.306998817082D+00
+ 0.374391674995D-05 0.421943794936D-02 0.119861215353D-04 0.515369000626D+04
+ 0.410384000000D+06 0.149011611938D-07-0.584892785349D+00-0.819563865662D-07
+ 0.971348112205D+00 0.151187500000D+03 0.200484333386D+01-0.782068290569D-08
+ -0.707172313708D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.100000000000D+02
+ 0.405870000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 17 59 44.0-0.193943269551D-04-0.568434188608D-12 0.000000000000D+00
+ 0.250000000000D+02 0.108906250000D+03 0.495127766916D-08 0.342063714110D+00
+ 0.566057860851D-05 0.442139524967D-02 0.499561429024D-05 0.515361417198D+04
+ 0.410384000000D+06 0.111758708954D-07 0.323951879816D+00 0.260770320892D-07
+ 0.949399602624D+00 0.279875000000D+03 0.412401637521D+00-0.852642658846D-08
+ 0.331085219600D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.250000000000D+02
+ 0.403200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 18 0 0.0 0.581148546189D-03-0.375166564481D-11 0.000000000000D+00
+ 0.920000000000D+02 0.138125000000D+02 0.525486174323D-08 0.481007164565D+00
+ 0.894069671631D-06 0.157859913306D-01 0.770948827267D-05 0.515358161736D+04
+ 0.410400000000D+06-0.186264514923D-06-0.283322480266D+01 0.121071934700D-06
+ 0.943720847224D+00 0.225687500000D+03-0.210488257729D+01-0.860071539718D-08
+ 0.271082720255D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.920000000000D+02
+ 0.403200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 18 0 0.0-0.718017108738D-04-0.318323145621D-11 0.000000000000D+00
+ 0.106000000000D+03-0.303437500000D+02 0.475162649574D-08 0.101648251429D+01
+ -0.169128179550D-05 0.207385513932D-03 0.742822885513D-05 0.515366627121D+04
+ 0.410400000000D+06 0.502914190292D-07-0.174546098468D+01 0.186264514923D-08
+ 0.958896407439D+00 0.238062500000D+03-0.157128585722D+01-0.809855162290D-08
+ -0.492163357722D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.340000000000D+01 0.000000000000D+00 0.186264514923D-08 0.106000000000D+03
+ 0.403218000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 18 0 0.0-0.258467160165D-03-0.454747350886D-12 0.000000000000D+00
+ 0.730000000000D+02-0.675000000000D+02 0.552844456762D-08-0.298925374212D+01
+ -0.367499887943D-05 0.849935435690D-02 0.376068055630D-05 0.515365805435D+04
+ 0.410400000000D+06 0.260770320892D-07 0.141914966523D+01-0.234693288803D-06
+ 0.983031834719D+00 0.319968750000D+03 0.899282473765D+00-0.806605026908D-08
+ -0.175007289756D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.400000000000D+01 0.630000000000D+02-0.195577740669D-07 0.730000000000D+02
+ 0.406050000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 18 0 0.0-0.108883716166D-03 0.284217094304D-11 0.000000000000D+00
+ 0.870000000000D+02-0.342812500000D+02 0.513485674454D-08 0.296778450937D+01
+ -0.185333192349D-05 0.454800156876D-02 0.688619911671D-05 0.515353655624D+04
+ 0.410400000000D+06 0.447034835815D-07-0.175782571165D+01-0.558793544769D-07
+ 0.945960301238D+00 0.239687500000D+03 0.454485141508D+00-0.829498837670D-08
+ -0.409302763389D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.107102096081D-07 0.870000000000D+02
+ 0.406770000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 18 0 0.0 0.212137587368D-03 0.534328137292D-11 0.000000000000D+00
+ 0.150000000000D+02 0.107187500000D+02 0.465626538071D-08 0.315967644521D+00
+ 0.599771738052D-06 0.374688184820D-03 0.747479498386D-05 0.515371218300D+04
+ 0.410400000000D+06 0.558793544769D-08-0.279539640510D+01-0.167638063431D-07
+ 0.964746913810D+00 0.239468750000D+03-0.130917608453D+01-0.806247869174D-08
+ 0.351443210449D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.150000000000D+02
+ 0.403200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 18 0 0.0 0.445084646344D-03-0.250111042988D-11 0.000000000000D+00
+ 0.400000000000D+02 0.953437500000D+02 0.460626337073D-08-0.613569590185D+00
+ 0.517442822456D-05 0.968242133968D-02 0.381655991077D-05 0.515364135933D+04
+ 0.410400000000D+06 0.163912773132D-06 0.371691168463D+00 0.577419996262D-07
+ 0.966311541269D+00 0.307156250000D+03-0.266760276034D+01-0.844749514783D-08
+ 0.368586772215D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.400000000000D+02
+ 0.406800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 18 0 0.0-0.410028733313D-04-0.147792889038D-11 0.000000000000D+00
+ 0.390000000000D+02-0.608750000000D+02 0.441661240913D-08 0.304545137879D+01
+ -0.299327075481D-05 0.169578217901D-02 0.108536332846D-04 0.515371621513D+04
+ 0.410400000000D+06 0.260770320892D-07 0.243589056451D+01 0.707805156708D-07
+ 0.963756958609D+00 0.172156250000D+03-0.104801758749D+01-0.791282950274D-08
+ 0.921466930537D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.390000000000D+02
+ 0.406800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 18 0 0.0 0.158636365086D-03 0.727595761418D-11 0.000000000000D+00
+ 0.680000000000D+02 0.669375000000D+02 0.421481842125D-08 0.179681952827D+01
+ 0.349432229996D-05 0.531795667484D-03 0.118967145681D-04 0.515355910873D+04
+ 0.410400000000D+06-0.931322574616D-08-0.706095839337D+00 0.111758708954D-06
+ 0.954889533336D+00 0.147093750000D+03 0.238995331883D+01-0.779853912617D-08
+ -0.136077096729D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.680000000000D+02
+ 0.406500000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 18 0 0.0-0.563617795706D-04-0.773070496507D-11 0.000000000000D+00
+ 0.102000000000D+03-0.367500000000D+02 0.468805241906D-08-0.222877955542D+01
+ -0.187195837498D-05 0.159906991757D-02 0.698678195476D-05 0.515367497063D+04
+ 0.410400000000D+06-0.856816768646D-07-0.174944276242D+01 0.745058059692D-08
+ 0.959131126793D+00 0.244812500000D+03-0.272235108992D+01-0.807783647431D-08
+ -0.351800368183D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.102000000000D+03
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 18 0 0.0-0.654181465507D-03-0.147792889038D-11 0.000000000000D+00
+ 0.650000000000D+02 0.171562500000D+02 0.626847551644D-08-0.497931334667D+00
+ 0.104121863842D-05 0.165355021600D-01 0.881403684616D-05 0.515366530991D+04
+ 0.410400000000D+06-0.182539224625D-06 0.311696263565D+01 0.126659870148D-06
+ 0.897409779165D+00 0.176500000000D+03 0.153652422165D+01-0.915859565964D-08
+ 0.469305261319D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.121071934700D-07 0.650000000000D+02
+ 0.406800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 18 0 0.0 0.384134706110D-03 0.102318153950D-11 0.000000000000D+00
+ 0.460000000000D+02-0.765000000000D+02 0.423124767702D-08-0.120151478922D+01
+ -0.382028520107D-05 0.612786097918D-02 0.348873436451D-05 0.515370562363D+04
+ 0.410400000000D+06 0.184401869774D-06 0.144870220940D+01 0.447034835815D-07
+ 0.990051233116D+00 0.328218750000D+03 0.772171934209D+00-0.813141013444D-08
+ -0.177150236161D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.460000000000D+02
+ 0.403200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 18 0 0.0-0.221389345825D-04-0.204636307899D-11 0.000000000000D+00
+ 0.340000000000D+02 0.587812500000D+02 0.404409702430D-08 0.192924272651D+01
+ 0.313483178616D-05 0.881691719405D-02 0.113975256681D-04 0.515403850746D+04
+ 0.410400000000D+06-0.577419996262D-07-0.622142752411D+00-0.236555933952D-06
+ 0.963810115200D+00 0.159156250000D+03-0.196354859434D+01-0.775532304033D-08
+ -0.592881838765D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.340000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 18 0 0.0-0.317470636219D-03-0.159161572810D-11 0.000000000000D+00
+ 0.960000000000D+02 0.371875000000D+02 0.482948688180D-08 0.141723978472D+01
+ 0.206008553505D-05 0.817513256334D-02 0.124704092741D-04 0.515362775993D+04
+ 0.410400000000D+06-0.111758708954D-06-0.759475970400D+00 0.279396772385D-07
+ 0.930557359666D+00 0.122750000000D+03 0.485243942095D+00-0.819498421113D-08
+ -0.349657421778D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.960000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 18 0 0.0-0.757304951549D-05 0.238742359215D-11 0.000000000000D+00
+ 0.460000000000D+02-0.780000000000D+02 0.407659837811D-08 0.304379876120D+01
+ -0.406429171562D-05 0.870823441073D-02 0.430643558502D-05 0.515378452683D+04
+ 0.410400000000D+06-0.160187482834D-06 0.146750009230D+01-0.707805156708D-07
+ 0.990555144026D+00 0.314375000000D+03 0.396294343319D+00-0.787925677410D-08
+ -0.221080637467D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.460000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 18 0 0.0-0.203985720873D-03 0.000000000000D+00 0.000000000000D+00
+ 0.100000000000D+03-0.746562500000D+02 0.395552190622D-08 0.220028874891D+01
+ -0.399723649025D-05 0.109808050329D-01 0.119525939226D-04 0.515371741486D+04
+ 0.410400000000D+06 0.335276126862D-07 0.248894686256D+01-0.186264514923D-06
+ 0.976936115482D+00 0.154000000000D+03-0.192704857468D+01-0.756031491746D-08
+ 0.122147945095D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.107102096081D-07 0.100000000000D+03
+ 0.405870000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 18 0 0.0 0.531856436282D-03 0.386535248253D-11 0.000000000000D+00
+ 0.960000000000D+02-0.428750000000D+02 0.542486882470D-08-0.252609733217D+01
+ -0.216253101826D-05 0.172632606700D-01 0.598467886448D-05 0.515368951225D+04
+ 0.410400000000D+06 0.165775418282D-06-0.177968217443D+01-0.102445483208D-06
+ 0.924633198295D+00 0.243593750000D+03-0.187450626412D+01-0.822105672573D-08
+ -0.278940190407D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.960000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 18 0 0.0-0.525238923728D-03 0.227373675443D-12 0.000000000000D+00
+ 0.620000000000D+02-0.560625000000D+02 0.412374319903D-08-0.964304242114D+00
+ -0.276789069176D-05 0.107846769970D-01 0.115651637316D-04 0.515362718773D+04
+ 0.410400000000D+06 0.169500708580D-06 0.253763276600D+01 0.203028321266D-06
+ 0.974083002444D+00 0.162218750000D+03 0.804514830769D+00-0.780282501898D-08
+ 0.188936441390D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.620000000000D+02
+ 0.408570000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 18 0 0.0 0.421544536948D-03 0.227373675443D-11 0.000000000000D+00
+ 0.600000000000D+02-0.351250000000D+02 0.566559332782D-08 0.137991597541D+01
+ -0.203400850296D-05 0.456072273664D-02 0.616349279880D-05 0.515375058937D+04
+ 0.410400000000D+06 0.186264514923D-07-0.183146847965D+01-0.987201929092D-07
+ 0.925926774830D+00 0.247281250000D+03 0.139034178294D+01-0.867250449232D-08
+ -0.422517604237D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.600000000000D+02
+ 0.406800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 18 0 0.0-0.527219846845D-03-0.102318153950D-11 0.000000000000D+00
+ 0.540000000000D+02 0.246875000000D+02 0.513307095587D-08-0.161930481192D+01
+ 0.149011611939D-05 0.233475267887D-01 0.709481537342D-05 0.515359011459D+04
+ 0.410400000000D+06 0.368803739548D-06-0.282151508409D+01 0.417232513428D-06
+ 0.936938650753D+00 0.226812500000D+03-0.177885789909D+01-0.821069915143D-08
+ 0.342157109360D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.540000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 18 0 0.0 0.307835638523D-03-0.898126018001D-11 0.000000000000D+00
+ 0.720000000000D+02-0.387812500000D+02 0.563952040622D-08 0.173773122545D+01
+ -0.233948230743D-05 0.766577490140D-02 0.668503344059D-05 0.515378319931D+04
+ 0.410400000000D+06-0.540167093277D-07-0.177910724177D+01-0.135973095894D-06
+ 0.922542755654D+00 0.231812500000D+03-0.189826010823D+01-0.857142889998D-08
+ -0.451090220732D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.720000000000D+02
+ 0.407700000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 18 0 0.0-0.180283095688D-03-0.159161572810D-11 0.000000000000D+00
+ 0.330000000000D+02 0.611250000000D+02 0.453304596242D-08 0.889378714399D+00
+ 0.332109630108D-05 0.110833307262D-01 0.112913548946D-04 0.515365887642D+04
+ 0.410400000000D+06-0.210478901863D-06-0.701160944133D+00 0.169500708580D-06
+ 0.945821357667D+00 0.156406250000D+03-0.255831775908D+01-0.800461913880D-08
+ -0.292155026572D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.330000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 18 0 0.0-0.199893023819D-03-0.704858393874D-11 0.000000000000D+00
+ 0.570000000000D+02-0.661875000000D+02 0.447482925174D-08-0.173972460201D+01
+ -0.345520675182D-05 0.562439765781D-02 0.289827585220D-05 0.515373254776D+04
+ 0.410400000000D+06 0.119209289551D-06 0.139735722999D+01-0.670552253723D-07
+ 0.978261800142D+00 0.332031250000D+03 0.790421524183D+00-0.821569935971D-08
+ -0.996470078407D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.570000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 18 0 0.0-0.410705339163D-03-0.105728759081D-10 0.000000000000D+00
+ 0.840000000000D+02-0.603125000000D+02 0.481841499204D-08-0.253145515699D+01
+ -0.323355197906D-05 0.100463011768D-02 0.336393713951D-05 0.515378394127D+04
+ 0.410400000000D+06-0.707805156708D-07 0.138778050450D+01-0.894069671631D-07
+ 0.960222349572D+00 0.317312500000D+03 0.181573664483D+00-0.842892252703D-08
+ -0.176793078427D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.840000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 18 0 0.0 0.109409447759D-03 0.432009983342D-11 0.000000000000D+00
+ 0.330000000000D+02-0.643437500000D+02 0.419481758813D-08 0.218742420867D+01
+ -0.330619513988D-05 0.376228801906D-02 0.110398977995D-04 0.515364995766D+04
+ 0.410400000000D+06-0.128522515297D-06 0.243885416589D+01 0.409781932831D-07
+ 0.971850029157D+00 0.174156250000D+03 0.319645777524D+00-0.780461080765D-08
+ 0.896465912832D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.330000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 18 0 0.0 0.533889047802D-03 0.272848410532D-11 0.000000000000D+00
+ 0.790000000000D+02-0.926875000000D+02 0.411374267983D-08 0.300974850904D+01
+ -0.481493771076D-05 0.197512180312D-01 0.428967177868D-05 0.515363050270D+04
+ 0.410400000000D+06 0.383704900742D-06 0.147241335533D+01-0.707805156708D-07
+ 0.989270245522D+00 0.308906250000D+03-0.161486707187D+01-0.782496911711D-08
+ -0.310012904237D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.790000000000D+02
+ 0.410340000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 18 0 0.0 0.656109768897D-03-0.568434188608D-12 0.000000000000D+00
+ 0.120000000000D+02-0.767812500000D+02 0.406516933062D-08-0.185698239415D+01
+ -0.387616455555D-05 0.870124902576D-03 0.106077641249D-04 0.515355526161D+04
+ 0.410400000000D+06 0.577419996262D-07 0.249870267409D+01-0.115483999252D-06
+ 0.977925378723D+00 0.181531250000D+03-0.103737348185D+00-0.778782439415D-08
+ 0.875036448780D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.120000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 18 0 0.0 0.136671587825D-03 0.250111042988D-11 0.000000000000D+00
+ 0.330000000000D+02 0.955312500000D+02 0.492484808490D-08-0.507948718880D+00
+ 0.494346022606D-05 0.225400936324D-02 0.344216823578D-05 0.515358836555D+04
+ 0.410400000000D+06 0.223517417908D-07 0.415332887939D+00-0.428408384323D-07
+ 0.952076039046D+00 0.304687500000D+03 0.306222431389D+01-0.856357118551D-08
+ 0.355014795339D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.330000000000D+02
+ 0.406800000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 18 0 0.0 0.261252745986D-03-0.193267624127D-11 0.000000000000D+00
+ 0.530000000000D+02 0.937187500000D+02 0.441196949052D-08-0.758816533743D+00
+ 0.465288758278D-05 0.814531487413D-02 0.437162816525D-05 0.515377635956D+04
+ 0.410400000000D+06-0.372529029846D-08 0.381189286978D+00-0.968575477600D-07
+ 0.971120805457D+00 0.296000000000D+03-0.395997417762D+00-0.829641700764D-08
+ 0.388230457071D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.530000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 18 0 0.0-0.366070307791D-04-0.920863385545D-11 0.000000000000D+00
+ 0.630000000000D+02 0.497812500000D+02 0.415767318378D-08 0.255184143684D+01
+ 0.278837978840D-05 0.546006485820D-03 0.115986913443D-04 0.515362784958D+04
+ 0.410400000000D+06 0.298023223877D-07-0.704530408737D+00-0.242143869400D-07
+ 0.959477531165D+00 0.154843750000D+03-0.232614497081D+01-0.781782564382D-08
+ -0.112504686272D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.630000000000D+02
+ 0.403200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 19 59 44.0-0.718259252608D-04-0.318323145621D-11 0.000000000000D+00
+ 0.190000000000D+02-0.317187500000D+02 0.484984497007D-08 0.205737558101D+01
+ -0.178255140781D-05 0.207480392419D-03 0.657886266708D-05 0.515366901398D+04
+ 0.417584000000D+06-0.502914190292D-07-0.174551953944D+01 0.111758708954D-07
+ 0.958892368322D+00 0.248281250000D+03-0.156432619562D+01-0.820248491351D-08
+ -0.494663476847D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.190000000000D+02
+ 0.411030000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 19 59 44.0-0.258469954133D-03-0.454747350886D-12 0.000000000000D+00
+ 0.200000000000D+01-0.693125000000D+02 0.552130141294D-08-0.194151300164D+01
+ -0.372529029846D-05 0.850087008439D-02 0.276789069176D-05 0.515365460205D+04
+ 0.417584000000D+06 0.141561031342D-06 0.141909099490D+01-0.894069671631D-07
+ 0.983031117889D+00 0.333187500000D+03 0.899407342600D+00-0.809783730743D-08
+ -0.560737642688D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.630000000000D+02-0.195577740669D-07 0.200000000000D+01
+ 0.412890000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 19 59 44.0-0.108863227069D-03 0.284217094304D-11 0.000000000000D+00
+ 0.100000000000D+01-0.313750000000D+02 0.512842790532D-08-0.226742339961D+01
+ -0.160932540894D-05 0.454764638562D-02 0.691600143910D-05 0.515353730965D+04
+ 0.417584000000D+06 0.335276126862D-07-0.175788501103D+01-0.130385160446D-07
+ 0.945957365161D+00 0.238656250000D+03 0.454442724198D+00-0.826391565383D-08
+ -0.427160650098D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.100000000000D+01
+ 0.410400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 19 59 44.0 0.158688519150D-03 0.727595761418D-11 0.000000000000D+00
+ 0.110000000000D+02 0.584062500000D+02 0.428982154543D-08 0.284745583128D+01
+ 0.306777656078D-05 0.532363890670D-03 0.114999711513D-04 0.515355637741D+04
+ 0.417584000000D+06-0.149011611938D-07-0.706150922592D+00-0.912696123123D-07
+ 0.954887948996D+00 0.157468750000D+03 0.238723320260D+01-0.779711049524D-08
+ -0.306441335940D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.110000000000D+02
+ 0.412848000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 19 59 44.0-0.564181245863D-04-0.773070496507D-11 0.000000000000D+00
+ 0.180000000000D+02-0.351250000000D+02 0.480341455500D-08-0.118147945464D+01
+ -0.191666185856D-05 0.159933115356D-02 0.682100653648D-05 0.515367325401D+04
+ 0.417584000000D+06 0.782310962677D-07-0.174950005907D+01-0.109896063805D-06
+ 0.959127876189D+00 0.251343750000D+03-0.272180299304D+01-0.814033906949D-08
+ -0.510735564951D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.180000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 19 59 44.0-0.317480880767D-03-0.159161572810D-11 0.000000000000D+00
+ 0.100000000000D+01 0.530937500000D+02 0.488627496154D-08 0.246536812681D+01
+ 0.267289578915D-05 0.817619415466D-02 0.127367675304D-04 0.515362349510D+04
+ 0.417584000000D+06-0.102445483208D-06-0.759534937702D+00-0.108033418655D-06
+ 0.930555321822D+00 0.116593750000D+03 0.484994442880D+00-0.809640867649D-08
+ -0.305727020472D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.100000000000D+01
+ 0.412590000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 19 59 44.0-0.203981995583D-03 0.113686837722D-12 0.000000000000D+00
+ 0.200000000000D+01-0.658750000000D+02 0.397409394282D-08-0.303513648678D+01
+ -0.337138772011D-05 0.109797948971D-01 0.117868185043D-04 0.515371958733D+04
+ 0.417584000000D+06 0.156462192535D-06 0.248889241275D+01-0.128522515297D-06
+ 0.976937015177D+00 0.156062500000D+03-0.192699304231D+01-0.757245821603D-08
+ 0.173935810199D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.200000000000D+01
+ 0.416100000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 20 0 0.0 0.253762118518D-04 0.125055521494D-11 0.000000000000D+00
+ 0.500000000000D+01 0.218125000000D+02 0.480412865045D-08 0.115388803554D+01
+ 0.137649476528D-05 0.564073200803D-02 0.740215182304D-05 0.515363928986D+04
+ 0.417600000000D+06 0.596046447754D-07-0.278703338228D+01 0.121071934700D-06
+ 0.964919498644D+00 0.237687500000D+03 0.482244370477D+00-0.823641421732D-08
+ 0.304298392040D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.500000000000D+01
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 20 0 0.0 0.581121537834D-03-0.375166564481D-11 0.000000000000D+00
+ 0.940000000000D+02 0.123750000000D+02 0.524557564214D-08 0.153123194580D+01
+ 0.489875674248D-06 0.157862637425D-01 0.797398388386D-05 0.515358234215D+04
+ 0.417600000000D+06-0.370666384697D-06-0.283328722245D+01-0.949949026108D-07
+ 0.943723354666D+00 0.223125000000D+03-0.210486468726D+01-0.845499504162D-08
+ 0.377872882780D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.940000000000D+02
+ 0.410400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 20 0 0.0-0.258470419794D-03-0.454747350886D-12 0.000000000000D+00
+ 0.103000000000D+03-0.693125000000D+02 0.552130141294D-08-0.193917890121D+01
+ -0.372529029846D-05 0.850087183062D-02 0.276789069176D-05 0.515365460396D+04
+ 0.417600000000D+06 0.141561031342D-06 0.141909083691D+01-0.894069671631D-07
+ 0.983031112037D+00 0.333187500000D+03 0.899406941761D+00-0.809783730743D-08
+ -0.560737642688D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.400000000000D+01 0.630000000000D+02-0.195577740669D-07 0.103000000000D+03
+ 0.410418000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 20 0 0.0 0.212176237255D-03 0.534328137292D-11 0.000000000000D+00
+ 0.160000000000D+02 0.126562500000D+02 0.472376819248D-08 0.136637552458D+01
+ 0.547617673874D-06 0.374489231035D-03 0.731460750103D-05 0.515371179962D+04
+ 0.417600000000D+06 0.130385160446D-07-0.279545446247D+01 0.000000000000D+00
+ 0.964749333476D+00 0.239656250000D+03-0.130942518144D+01-0.807890794751D-08
+ 0.341799951626D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.160000000000D+02
+ 0.413850000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 20 0 0.0 0.445066485554D-03-0.250111042988D-11 0.000000000000D+00
+ 0.410000000000D+02 0.974687500000D+02 0.449697303126D-08 0.436609318325D+00
+ 0.518187880516D-05 0.968244613614D-02 0.408291816711D-05 0.515364139557D+04
+ 0.417600000000D+06 0.819563865662D-07 0.371631052771D+00 0.247731804848D-06
+ 0.966314436384D+00 0.304750000000D+03-0.266758067759D+01-0.833248993879D-08
+ 0.291440711104D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.410000000000D+02
+ 0.410400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 20 0 0.0-0.410131178796D-04-0.147792889038D-11 0.000000000000D+00
+ 0.650000000000D+02-0.730625000000D+02 0.435553859646D-08-0.218693944150D+01
+ -0.371411442757D-05 0.169408763759D-02 0.104494392872D-04 0.515371996307D+04
+ 0.417600000000D+06-0.372529029846D-07 0.243583356044D+01 0.242143869400D-07
+ 0.963757929986D+00 0.180843750000D+03-0.104865874206D+01-0.787318477080D-08
+ 0.128933946852D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.650000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 20 0 0.0 0.158688984811D-03 0.727595761418D-11 0.000000000000D+00
+ 0.690000000000D+02 0.584062500000D+02 0.428982154543D-08 0.284978495632D+01
+ 0.306777656078D-05 0.532368896529D-03 0.114999711513D-04 0.515355638313D+04
+ 0.417600000000D+06-0.149011611938D-07-0.706151052792D+00-0.912696123123D-07
+ 0.954887935830D+00 0.157468750000D+03 0.238723796147D+01-0.779711049524D-08
+ -0.306441335940D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.690000000000D+02
+ 0.410418000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 20 0 0.0-0.654192175716D-03-0.147792889038D-11 0.000000000000D+00
+ 0.670000000000D+02 0.959375000000D+01 0.627561869138D-08 0.552233098268D+00
+ 0.633299350738D-06 0.165369664319D-01 0.960566103458D-05 0.515366817856D+04
+ 0.417600000000D+06-0.245869159698D-06 0.311689720664D+01-0.372529029846D-08
+ 0.897412772295D+00 0.166156250000D+03 0.153655794483D+01-0.913859476981D-08
+ 0.378587189376D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.400000000000D+01 0.000000000000D+00-0.121071934700D-07 0.670000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 20 0 0.0 0.384141691029D-03 0.102318153950D-11 0.000000000000D+00
+ 0.470000000000D+02-0.802187500000D+02 0.424589114412D-08-0.151449629902D+00
+ -0.407733023167D-05 0.612689484842D-02 0.415742397308D-05 0.515370350456D+04
+ 0.417600000000D+06 0.633299350738D-07 0.144864323918D+01 0.106170773506D-06
+ 0.990049441042D+00 0.320812500000D+03 0.772266636211D+00-0.823320008869D-08
+ -0.190365072327D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.470000000000D+02
+ 0.416160000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 20 0 0.0-0.281827524304D-04-0.250111042988D-11 0.000000000000D+00
+ 0.110000000000D+02 0.835312500000D+02 0.389016204086D-08 0.135951098191D+01
+ 0.431761145592D-05 0.421856821049D-02 0.120010226965D-04 0.515368883514D+04
+ 0.417600000000D+06 0.141561031342D-06-0.584949074048D+00-0.838190317154D-07
+ 0.971347998097D+00 0.152750000000D+03 0.200483275697D+01-0.772925052574D-08
+ -0.717887045734D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.110000000000D+02
+ 0.410400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 20 0 0.0-0.221538357437D-04-0.204636307899D-11 0.000000000000D+00
+ 0.390000000000D+02 0.539375000000D+02 0.395123622710D-08 0.297934648053D+01
+ 0.285543501377D-05 0.881774851587D-02 0.120084732771D-04 0.515403575516D+04
+ 0.417600000000D+06 0.484287738800D-07-0.622197007654D+00-0.111758708954D-07
+ 0.963810340489D+00 0.147187500000D+03-0.196369713612D+01-0.753174234092D-08
+ -0.134291314180D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.390000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 20 0 0.0-0.317481812090D-03-0.159161572810D-11 0.000000000000D+00
+ 0.980000000000D+02 0.530937500000D+02 0.488627496154D-08 0.246770180153D+01
+ 0.267289578915D-05 0.817619310692D-02 0.127367675304D-04 0.515362348938D+04
+ 0.417600000000D+06-0.102445483208D-06-0.759535095697D+00-0.108033418655D-06
+ 0.930555320358D+00 0.116593750000D+03 0.484994638911D+00-0.809640867649D-08
+ -0.305727020472D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.107102096081D-07 0.980000000000D+02
+ 0.410400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 20 0 0.0-0.755628570914D-05 0.238742359215D-11 0.000000000000D+00
+ 0.470000000000D+02-0.763750000000D+02 0.408338429736D-08-0.218931524972D+01
+ -0.428222119808D-05 0.870789831970D-02 0.389851629734D-05 0.515378484535D+04
+ 0.417600000000D+06 0.614672899246D-07 0.146744181842D+01-0.208616256714D-06
+ 0.990553499706D+00 0.320906250000D+03 0.396332958504D+00-0.803854938169D-08
+ -0.664313395959D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.470000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 20 0 0.0-0.203985720873D-03 0.000000000000D+00 0.000000000000D+00
+ 0.101000000000D+03-0.658750000000D+02 0.397409410840D-08-0.303280314122D+01
+ -0.337138772011D-05 0.109797959449D-01 0.117868185043D-04 0.515371957588D+04
+ 0.417600000000D+06 0.156462192535D-06 0.248889227231D+01-0.128522515297D-06
+ 0.976937041509D+00 0.156062500000D+03-0.192699254492D+01-0.757245828042D-08
+ 0.173578658819D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.107102096081D-07 0.101000000000D+03
+ 0.410400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 20 0 0.0 0.531884375960D-03 0.386535248253D-11 0.000000000000D+00
+ 0.980000000000D+02-0.297812500000D+02 0.568666536083D-08-0.147601112000D+01
+ -0.144541263580D-05 0.172640783712D-01 0.601448118687D-05 0.515368613815D+04
+ 0.417600000000D+06 0.342726707459D-06-0.177974073504D+01 0.342726707459D-06
+ 0.924629226473D+00 0.243781250000D+03-0.187441384573D+01-0.858321502761D-08
+ -0.497877905570D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.980000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 20 0 0.0-0.525237526745D-03 0.227373675443D-12 0.000000000000D+00
+ 0.870000000000D+02-0.517812500000D+02 0.414517266308D-08 0.859064848642D-01
+ -0.262074172497D-05 0.107851733919D-01 0.116787850857D-04 0.515362806320D+04
+ 0.417600000000D+06-0.242143869400D-07 0.253757575754D+01 0.171363353729D-06
+ 0.974083798272D+00 0.163218750000D+03 0.804510771171D+00-0.794068790438D-08
+ 0.192508018732D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.870000000000D+02
+ 0.410400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 20 0 0.0 0.421560369432D-03 0.227373675443D-11 0.000000000000D+00
+ 0.750000000000D+02-0.345625000000D+02 0.570523764605D-08 0.243008732794D+01
+ -0.187754631042D-05 0.456070434302D-02 0.582449138165D-05 0.515375037193D+04
+ 0.417600000000D+06 0.109896063805D-06-0.183153039912D+01-0.242143869400D-07
+ 0.925924156206D+00 0.246093750000D+03 0.139031280546D+01-0.856142804641D-08
+ -0.442161274935D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.750000000000D+02
+ 0.410400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 20 0 0.0-0.527226831764D-03-0.102318153950D-11 0.000000000000D+00
+ 0.660000000000D+02 0.186250000000D+02 0.551772983559D-08-0.569130188294D+00
+ 0.111199915409D-05 0.233466823120D-01 0.793673098087D-05 0.515358677864D+04
+ 0.417600000000D+06-0.281259417534D-06-0.282157783596D+01 0.145286321640D-06
+ 0.936938364021D+00 0.216875000000D+03-0.177879329370D+01-0.892001441155D-08
+ 0.436446751188D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.660000000000D+02
+ 0.410400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 20 0 0.0 0.307770911604D-03-0.898126018001D-11 0.000000000000D+00
+ 0.740000000000D+02-0.359062500000D+02 0.568130786860D-08 0.278772811330D+01
+ -0.193715095520D-05 0.766524265055D-02 0.595860183239D-05 0.515378522110D+04
+ 0.417600000000D+06 0.298023223877D-07-0.177916864483D+01-0.113621354103D-06
+ 0.922539704007D+00 0.239500000000D+03-0.189813573386D+01-0.852142623131D-08
+ -0.450733061985D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.740000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 20 0 0.0-0.180294271559D-03-0.159161572810D-11 0.000000000000D+00
+ 0.520000000000D+02 0.457500000000D+02 0.448911574580D-08 0.193935435337D+01
+ 0.235997140408D-05 0.110834186198D-01 0.117570161820D-04 0.515366331863D+04
+ 0.417600000000D+06-0.212341547012D-06-0.701218464609D+00-0.242143869400D-07
+ 0.945818942390D+00 0.148750000000D+03-0.255810455487D+01-0.797104604544D-08
+ -0.338585520732D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.520000000000D+02
+ 0.416910000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 20 0 0.0-0.193985179067D-04-0.568434188608D-12 0.000000000000D+00
+ 0.260000000000D+02 0.115125000000D+03 0.485163066132D-08 0.139463452440D+01
+ 0.578351318836D-05 0.442187907174D-02 0.463239848614D-05 0.515361465073D+04
+ 0.417600000000D+06-0.372529029846D-07 0.323890535272D+00 0.260770320892D-07
+ 0.949401911109D+00 0.281718750000D+03 0.412383921583D+00-0.850964017496D-08
+ 0.311798701953D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.260000000000D+02
+ 0.411090000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 20 0 0.0-0.199943780899D-03-0.704858393874D-11 0.000000000000D+00
+ 0.580000000000D+02-0.696875000000D+02 0.448554398377D-08-0.689506490222D+00
+ -0.343099236488D-05 0.562440825161D-02 0.306032598019D-05 0.515373328018D+04
+ 0.417600000000D+06 0.800937414169D-07 0.139729797303D+01 0.113621354103D-06
+ 0.978260161674D+00 0.332437500000D+03 0.790347409828D+00-0.837713465557D-08
+ -0.163935399996D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.580000000000D+02
+ 0.410400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 20 0 0.0-0.410781241953D-03-0.105728759081D-10 0.000000000000D+00
+ 0.870000000000D+02-0.633437500000D+02 0.480841457548D-08-0.148290599482D+01
+ -0.353716313839D-05 0.100513850339D-02 0.247545540333D-05 0.515378084564D+04
+ 0.417600000000D+06 0.298023223877D-07 0.138771920238D+01-0.521540641785D-07
+ 0.960221318215D+00 0.329093750000D+03 0.183141100745D+00-0.846678124685D-08
+ -0.100004165575D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.870000000000D+02
+ 0.414840000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 20 0 0.0 0.109440181404D-03 0.432009983342D-11 0.000000000000D+00
+ 0.340000000000D+02-0.731875000000D+02 0.411052836213D-08-0.304581955139D+01
+ -0.380538403988D-05 0.376137439162D-02 0.106878578663D-04 0.515365224838D+04
+ 0.417600000000D+06-0.614672899246D-07 0.243879821659D+01-0.298023223877D-07
+ 0.971851145364D+00 0.181250000000D+03 0.319895769743D+00-0.771925012799D-08
+ 0.108218795036D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.340000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 20 0 0.0 0.533908139914D-03 0.272848410532D-11 0.000000000000D+00
+ 0.800000000000D+02-0.799062500000D+02 0.401016686524D-08-0.222328486876D+01
+ -0.390224158764D-05 0.197522558737D-01 0.386126339436D-05 0.515362799263D+04
+ 0.417600000000D+06 0.188127160072D-06 0.147235598261D+01 0.189989805222D-06
+ 0.989269263904D+00 0.311000000000D+03-0.161481421810D+01-0.775460851088D-08
+ -0.682171263922D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.800000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 20 0 0.0 0.656106043607D-03-0.568434188608D-12 0.000000000000D+00
+ 0.130000000000D+02-0.826875000000D+02 0.405766901820D-08-0.804880601251D+00
+ -0.417418777943D-05 0.870705931447D-03 0.113938003778D-04 0.515355847168D+04
+ 0.417600000000D+06 0.111758708954D-07 0.249864583387D+01 0.707805156708D-07
+ 0.977926669017D+00 0.170406250000D+03-0.105589361512D+00-0.777103798064D-08
+ 0.243581574722D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.130000000000D+02
+ 0.410400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 20 0 0.0 0.136689748615D-03 0.250111042988D-11 0.000000000000D+00
+ 0.340000000000D+02 0.932187500000D+02 0.480305720947D-08 0.542346254624D+00
+ 0.490434467792D-05 0.225429935381D-02 0.356324017048D-05 0.515358891869D+04
+ 0.417600000000D+06 0.134110450745D-06 0.415271555099D+00 0.372529029846D-08
+ 0.952079023399D+00 0.306375000000D+03 0.306216452881D+01-0.846142388084D-08
+ 0.345014371233D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.340000000000D+02
+ 0.410400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 20 0 0.0 0.261238310486D-03-0.193267624127D-11 0.000000000000D+00
+ 0.540000000000D+02 0.102218750000D+03 0.437625371711D-08 0.291303261173D+00
+ 0.546500086784D-05 0.814375933260D-02 0.482611358166D-05 0.515377347946D+04
+ 0.417600000000D+06 0.502914190292D-07 0.381129569199D+00-0.819563865662D-07
+ 0.971123428469D+00 0.287406250000D+03-0.395999692600D+00-0.831356057888D-08
+ 0.364300888880D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.540000000000D+02
+ 0.410400000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 20 0 0.0-0.366731546819D-04-0.920863385545D-11 0.000000000000D+00
+ 0.650000000000D+02 0.440312500000D+02 0.409838518678D-08-0.268001824618D+01
+ 0.240840017796D-05 0.546851544641D-03 0.120885670185D-04 0.515362618637D+04
+ 0.417600000000D+06-0.968575477600D-07-0.704585707040D+00 0.726431608200D-07
+ 0.959476809946D+00 0.146125000000D+03-0.232726362476D+01-0.770817809581D-08
+ -0.208222952769D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.650000000000D+02
+ 0.410430000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 4 16 6 30 21 59 44.0-0.258473213762D-03-0.454747350886D-12 0.000000000000D+00
+ 0.300000000000D+01-0.715000000000D+02 0.553558772230D-08-0.891281698717D+00
+ -0.346824526787D-05 0.850085064303D-02 0.294111669064D-05 0.515365508652D+04
+ 0.424784000000D+06 0.121071934700D-06 0.141903270201D+01 0.171363353729D-06
+ 0.983029448700D+00 0.333437500000D+03 0.899375200827D+00-0.832034657583D-08
+ -0.156077929844D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.630000000000D+02-0.195577740669D-07 0.300000000000D+01
+ 0.420810000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 9 16 6 30 21 59 44.0 0.158740673214D-03 0.727595761418D-11 0.000000000000D+00
+ 0.220000000000D+02 0.450000000000D+02 0.434482405609D-08-0.238547924575D+01
+ 0.223144888878D-05 0.530635821633D-03 0.113453716040D-04 0.515355954742D+04
+ 0.424784000000D+06 0.260770320892D-07-0.706207060610D+00 0.298023223877D-07
+ 0.954885100694D+00 0.158375000000D+03 0.238723244773D+01-0.789818610514D-08
+ -0.365015212500D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.220000000000D+02
+ 0.421380000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+15 16 6 30 21 59 44.0-0.317492522299D-03-0.159161572810D-11 0.000000000000D+00
+ 0.600000000000D+01 0.596875000000D+02 0.477162732886D-08-0.276765197209D+01
+ 0.298209488392D-05 0.817448401358D-02 0.121891498566D-04 0.515362672234D+04
+ 0.424784000000D+06-0.558793544769D-08-0.759592692245D+00-0.689178705216D-07
+ 0.930553472693D+00 0.128000000000D+03 0.485041784371D+00-0.800569061200D-08
+ -0.315727437029D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.600000000000D+01
+ 0.417600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+17 16 6 30 21 59 44.0-0.203981529921D-03 0.113686837722D-12 0.000000000000D+00
+ 0.300000000000D+01-0.608125000000D+02 0.405624023259D-08-0.198508918238D+01
+ -0.310502946377D-05 0.109818300698D-01 0.109951943159D-04 0.515371528816D+04
+ 0.424784000000D+06 0.167638063431D-06 0.248883753430D+01 0.242143869400D-07
+ 0.976938713625D+00 0.172656250000D+03-0.192688925266D+01-0.757960183506D-08
+ 0.253581988741D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.300000000000D+01
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 21 59 44.0-0.527233351022D-03-0.909494701773D-12 0.000000000000D+00
+ 0.400000000000D+01 0.131875000000D+02 0.561094800422D-08 0.478766999573D+00
+ 0.892207026482D-06 0.233458980219D-01 0.803358852863D-05 0.515358522606D+04
+ 0.424784000000D+06-0.270083546638D-06-0.282164175524D+01 0.000000000000D+00
+ 0.936941380558D+00 0.219843750000D+03-0.177878225598D+01-0.893287208998D-08
+ 0.372872674501D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.400000000000D+01
+ 0.422940000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 21 59 44.0 0.307708047330D-03-0.898126018001D-11 0.000000000000D+00
+ 0.120000000000D+02-0.374375000000D+02 0.575666847524D-08-0.244770320082D+01
+ -0.194646418095D-05 0.766636396293D-02 0.562705099583D-05 0.515378307343D+04
+ 0.424784000000D+06 0.106170773506D-06-0.177923057015D+01 0.000000000000D+00
+ 0.922536824985D+00 0.247687500000D+03-0.189810092519D+01-0.854749870882D-08
+ -0.343942901937D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.120000000000D+02
+ 0.420450000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 1 16 6 30 22 0 0.0 0.253855250776D-04 0.125055521494D-11 0.000000000000D+00
+ 0.370000000000D+02 0.167187500000D+02 0.473233985332D-08 0.220390617374D+01
+ 0.860542058945D-06 0.564090802800D-02 0.785849988460D-05 0.515364121056D+04
+ 0.424800000000D+06-0.245869159698D-06-0.278709342336D+01-0.558793544769D-08
+ 0.964923043295D+00 0.231000000000D+03 0.482429831916D+00-0.804176369940D-08
+ 0.518235898639D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.512227416039D-08 0.370000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 22 0 0.0 0.581094529480D-03-0.375166564481D-11 0.000000000000D+00
+ 0.960000000000D+02 0.141875000000D+02 0.513485674454D-08 0.258146287714D+01
+ 0.532716512680D-06 0.157860360341D-01 0.731274485588D-05 0.515358281898D+04
+ 0.424800000000D+06 0.391155481338D-07-0.283334668275D+01-0.221654772759D-06
+ 0.943728091594D+00 0.225062500000D+03-0.210485397578D+01-0.804462080503D-08
+ 0.411802867528D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.960000000000D+02
+ 0.417750000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 3 16 6 30 22 0 0.0-0.718487426639D-04-0.318323145621D-11 0.000000000000D+00
+ 0.200000000000D+02-0.353750000000D+02 0.494913487969D-08 0.311116404824D+01
+ -0.177510082722D-05 0.208165962249D-03 0.644102692604D-05 0.515366765404D+04
+ 0.424800000000D+06 0.260770320892D-07-0.174557925868D+01-0.745058059692D-08
+ 0.958888866096D+00 0.252437500000D+03-0.156559393995D+01-0.824820034495D-08
+ -0.439661168583D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.186264514923D-08 0.200000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 5 16 6 30 22 0 0.0-0.108842737973D-03 0.284217094304D-11 0.000000000000D+00
+ 0.190000000000D+02-0.286562500000D+02 0.517521556850D-08-0.121495899466D+01
+ -0.151805579662D-05 0.454773509409D-02 0.676698982716D-05 0.515353611374D+04
+ 0.424800000000D+06 0.894069671631D-07-0.175794448890D+01-0.186264514923D-07
+ 0.945954146742D+00 0.242406250000D+03 0.454581275706D+00-0.828641659108D-08
+ -0.462162108050D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.190000000000D+02
+ 0.417600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 6 16 6 30 22 0 0.0 0.212214421481D-03 0.534328137292D-11 0.000000000000D+00
+ 0.550000000000D+02 0.183750000000D+02 0.481341499992D-08 0.241458703210D+01
+ 0.111758708954D-05 0.374143361114D-03 0.714696943760D-05 0.515371332169D+04
+ 0.424800000000D+06 0.372529029846D-07-0.279551314743D+01-0.726431608200D-07
+ 0.964751655127D+00 0.240500000000D+03-0.130747745524D+01-0.814641065716D-08
+ 0.381444459352D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.419095158577D-08 0.550000000000D+02
+ 0.423480000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 7 16 6 30 22 0 0.0 0.445048324764D-03-0.250111042988D-11 0.000000000000D+00
+ 0.420000000000D+02 0.105125000000D+03 0.436339603867D-08 0.148656692537D+01
+ 0.552274286747D-05 0.968426046893D-02 0.504590570927D-05 0.515364701080D+04
+ 0.424800000000D+06-0.104308128357D-06 0.371572048896D+00 0.134110450745D-06
+ 0.966315970985D+00 0.285187500000D+03-0.266734069612D+01-0.827320175492D-08
+ 0.156077929844D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.420000000000D+02
+ 0.417618000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+ 8 16 6 30 22 0 0.0-0.410233624280D-04-0.147792889038D-11 0.000000000000D+00
+ 0.750000000000D+02-0.860312500000D+02 0.436196723186D-08-0.113774021997D+01
+ -0.459142029285D-05 0.169378297869D-02 0.107251107693D-04 0.515371698570D+04
+ 0.424800000000D+06-0.111758708954D-07 0.243577657832D+01-0.353902578354D-07
+ 0.963758752146D+00 0.178593750000D+03-0.104770607371D+01-0.791818699497D-08
+ 0.157149404600D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-08 0.750000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+10 16 6 30 22 0 0.0-0.564735382795D-04-0.773070496507D-11 0.000000000000D+00
+ 0.190000000000D+02-0.339687500000D+02 0.496306387439D-08-0.129063211886D+00
+ -0.200048089027D-05 0.159916747361D-02 0.654533505440D-05 0.515367282486D+04
+ 0.424800000000D+06 0.260770320892D-07-0.174955901467D+01-0.372529029846D-08
+ 0.959123585450D+00 0.250062500000D+03-0.272170164939D+01-0.824784355579D-08
+ -0.543236913712D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.190000000000D+02
+ 0.417600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 22 0 0.0-0.654202885926D-03-0.147792889038D-11 0.000000000000D+00
+ 0.950000000000D+02-0.281250000000D+01 0.604346617195D-08 0.160236593071D+01
+ -0.398606061935D-06 0.165381002007D-01 0.938028097153D-05 0.515367094803D+04
+ 0.424800000000D+06-0.130385160446D-07 0.311683150991D+01-0.504776835442D-06
+ 0.897418024171D+00 0.164812500000D+03 0.153662069085D+01-0.863500293491D-08
+ 0.547165646125D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.400000000000D+01 0.000000000000D+00-0.121071934700D-07 0.950000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+12 16 6 30 22 0 0.0 0.384148675948D-03 0.102318153950D-11 0.000000000000D+00
+ 0.480000000000D+02-0.768437500000D+02 0.408088427092D-08 0.898645579213D+00
+ -0.425986945629D-05 0.612762197852D-02 0.409409403801D-05 0.515370506096D+04
+ 0.424800000000D+06-0.298023223877D-07 0.144858448985D+01 0.987201929092D-07
+ 0.990047931310D+00 0.315750000000D+03 0.772330998755D+00-0.819248410699D-08
+ -0.253581991279D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.125728547573D-07 0.480000000000D+02
+ 0.417600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+13 16 6 30 22 0 0.0-0.282009132206D-04-0.250111042988D-11 0.000000000000D+00
+ 0.120000000000D+02 0.768125000000D+02 0.382980238379D-08 0.240983101813D+01
+ 0.408478081226D-05 0.421936972998D-02 0.116415321827D-04 0.515368721008D+04
+ 0.424800000000D+06-0.353902578354D-07-0.585002937229D+00 0.128522515297D-06
+ 0.971347663089D+00 0.160656250000D+03 0.200467876143D+01-0.752995651006D-08
+ -0.225366530278D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.111758708954D-07 0.120000000000D+02
+ 0.417600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+14 16 6 30 22 0 0.0-0.221682712436D-04-0.204636307899D-11 0.000000000000D+00
+ 0.490000000000D+02 0.619062500000D+02 0.396409349790D-08-0.225388658706D+01
+ 0.320933759212D-05 0.881640741136D-02 0.126250088215D-04 0.515403807449D+04
+ 0.424800000000D+06 0.838190317154D-07-0.622250676267D+00-0.143423676491D-06
+ 0.963809047270D+00 0.138593750000D+03-0.196369552984D+01-0.754102824629D-08
+ -0.241795777844D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.931322574616D-08 0.490000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+16 16 6 30 22 0 0.0-0.753905624151D-05 0.238742359215D-11 0.000000000000D+00
+ 0.480000000000D+02-0.748750000000D+02 0.401695303650D-08-0.113934253513D+01
+ -0.390224158764D-05 0.870829098858D-02 0.296719372273D-05 0.515378251076D+04
+ 0.424800000000D+06 0.206753611565D-06 0.146738404340D+01-0.126659870148D-06
+ 0.990553005240D+00 0.330343750000D+03 0.396470736129D+00-0.809498004555D-08
+ -0.953611150304D-10 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.107102096081D-07 0.480000000000D+02
+ 0.419520000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 22 0 0.0 0.531911849976D-03 0.386535248253D-11 0.000000000000D+00
+ 0.990000000000D+02-0.281250000000D+02 0.593810448874D-08-0.425845155394D+00
+ -0.139139592648D-05 0.172640864039D-01 0.626780092716D-05 0.515368566132D+04
+ 0.424800000000D+06-0.104308128357D-06-0.177980506393D+01 0.167638063431D-06
+ 0.924623916080D+00 0.241031250000D+03-0.187439634191D+01-0.903966225250D-08
+ -0.440732643998D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.990000000000D+02
+ 0.417600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+19 16 6 30 22 0 0.0-0.525236129761D-03 0.227373675443D-12 0.000000000000D+00
+ 0.970000000000D+02-0.555625000000D+02 0.417731671476D-08 0.113615515408D+01
+ -0.278465449810D-05 0.107843230944D-01 0.114627182484D-04 0.515362625313D+04
+ 0.424800000000D+06-0.135973095894D-06 0.253751915578D+01 0.102445483208D-06
+ 0.974084864739D+00 0.169312500000D+03 0.804468795663D+00-0.790497178826D-08
+ 0.113219003617D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.149011611938D-07 0.970000000000D+02
+ 0.419760000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+20 16 6 30 22 0 0.0 0.421576667577D-03 0.227373675443D-11 0.000000000000D+00
+ 0.760000000000D+02-0.301562500000D+02 0.572523847916D-08-0.280300415697D+01
+ -0.150874257088D-05 0.456002727151D-02 0.606663525105D-05 0.515375169754D+04
+ 0.424800000000D+06 0.117346644402D-06-0.183159218400D+01 0.540167093277D-07
+ 0.925921022636D+00 0.243250000000D+03 0.139036123536D+01-0.855999941548D-08
+ -0.403231081907D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.838190317154D-08 0.760000000000D+02
+ 0.417600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 22 0 0.0-0.527233816683D-03-0.102318153950D-11 0.000000000000D+00
+ 0.680000000000D+02 0.131875000000D+02 0.561094800422D-08 0.481100903967D+00
+ 0.892207026482D-06 0.233459043084D-01 0.803358852863D-05 0.515358521462D+04
+ 0.424800000000D+06-0.270083546638D-06-0.282164191177D+01 0.000000000000D+00
+ 0.936941396650D+00 0.219843750000D+03-0.177878221356D+01-0.893287208998D-08
+ 0.372872674501D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.680000000000D+02
+ 0.417600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 22 0 0.0 0.307706650346D-03-0.898126018001D-11 0.000000000000D+00
+ 0.750000000000D+02-0.374375000000D+02 0.575666847524D-08-0.244536999424D+01
+ -0.194646418095D-05 0.766636093613D-02 0.562705099583D-05 0.515378307915D+04
+ 0.424800000000D+06 0.106170773506D-06-0.177923070620D+01 0.000000000000D+00
+ 0.922536801578D+00 0.247687500000D+03-0.189810059896D+01-0.854749870882D-08
+ -0.343942901937D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.750000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+23 16 6 30 22 0 0.0-0.180305447429D-03-0.159161572810D-11 0.000000000000D+00
+ 0.670000000000D+02 0.414375000000D+02 0.449518733348D-08 0.298958117976D+01
+ 0.204518437386D-05 0.110845984891D-01 0.119525939226D-04 0.515366109657D+04
+ 0.424800000000D+06-0.353902578354D-07-0.701275323846D+00-0.109896063805D-06
+ 0.945817388771D+00 0.139187500000D+03-0.255814404634D+01-0.779532438600D-08
+ -0.317156079177D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.670000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+24 16 6 30 22 0 0.0-0.194022431970D-04-0.568434188608D-12 0.000000000000D+00
+ 0.270000000000D+02 0.117125000000D+03 0.476912722472D-08 0.244494653212D+01
+ 0.608898699284D-05 0.442167988513D-02 0.439956784248D-05 0.515361404991D+04
+ 0.424800000000D+06-0.204890966415D-07 0.323829135138D+00-0.931322574615D-07
+ 0.949404444883D+00 0.286718750000D+03 0.412291867463D+00-0.843749431265D-08
+ 0.338942689752D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.232830643654D-08 0.270000000000D+02
+ 0.417600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+25 16 6 30 22 0 0.0-0.199994072318D-03-0.704858393874D-11 0.000000000000D+00
+ 0.590000000000D+02-0.716562500000D+02 0.439982612756D-08 0.360576763927D+00
+ -0.388175249100D-05 0.562399125192D-02 0.338442623615D-05 0.515373239708D+04
+ 0.424800000000D+06-0.111758708954D-07 0.139723781638D+01 0.134110450745D-06
+ 0.978258962081D+00 0.327562500000D+03 0.790408695855D+00-0.835749098019D-08
+ -0.199294015681D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.558793544769D-08 0.590000000000D+02
+ 0.421800000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 22 0 0.0-0.410857144743D-03-0.105728759081D-10 0.000000000000D+00
+ 0.880000000000D+02-0.690625000000D+02 0.472341103474D-08-0.432288763865D+00
+ -0.346451997757D-05 0.100580614526D-02 0.227428972721D-05 0.515378233910D+04
+ 0.424800000000D+06 0.596046447754D-07 0.138765832890D+01 0.130385160446D-07
+ 0.960220323431D+00 0.333031250000D+03 0.182640775447D+00-0.851642617191D-08
+ -0.132505519387D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.880000000000D+02
+ 0.417600000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+27 16 6 30 22 0 0.0 0.109471380711D-03 0.432009983342D-11 0.000000000000D+00
+ 0.540000000000D+02-0.890937500000D+02 0.417017353982D-08-0.199589158453D+01
+ -0.480376183987D-05 0.376327976119D-02 0.106040388346D-04 0.515364824867D+04
+ 0.424800000000D+06 0.763684511185D-07 0.243874177721D+01-0.800937414169D-07
+ 0.971851989468D+00 0.181625000000D+03 0.320161017271D+00-0.779996778277D-08
+ 0.197865390739D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.139698386192D-08 0.540000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+28 16 6 30 22 0 0.0 0.533927697688D-03 0.272848410532D-11 0.000000000000D+00
+ 0.830000000000D+02-0.708437500000D+02 0.412231448976D-08-0.117307392966D+01
+ -0.324100255966D-05 0.197528959252D-01 0.429898500442D-05 0.515362799835D+04
+ 0.424800000000D+06-0.286847352982D-06 0.147229907071D+01 0.385567545891D-06
+ 0.989266273700D+00 0.314937500000D+03-0.161481908815D+01-0.825391488490D-08
+ -0.121076468296D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.280000000000D+01 0.000000000000D+00-0.111758708954D-07 0.830000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+29 16 6 30 22 0 0.0 0.656102318317D-03-0.568434188608D-12 0.000000000000D+00
+ 0.300000000000D+02-0.749062500000D+02 0.406802659249D-08 0.244945593321D+00
+ -0.374391674995D-05 0.868843635544D-03 0.120457261801D-04 0.515355490875D+04
+ 0.424800000000D+06 0.931322574616D-08 0.249858993139D+01 0.111758708954D-07
+ 0.977928730268D+00 0.158968750000D+03-0.105166522596D+00-0.772175021332D-08
+ 0.267153985179D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.300000000000D+02
+ 0.424500000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+30 16 6 30 22 0 0.0 0.136707909405D-03 0.250111042988D-11 0.000000000000D+00
+ 0.390000000000D+02 0.105156250000D+03 0.467662337156D-08 0.159170112771D+01
+ 0.551156699657D-05 0.225505861454D-02 0.405870378017D-05 0.515359290123D+04
+ 0.424800000000D+06-0.391155481338D-07 0.415211830005D+00 0.633299350738D-07
+ 0.952081381623D+00 0.296500000000D+03 0.306304266441D+01-0.835427656058D-08
+ 0.224652214809D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.325962901115D-08 0.390000000000D+02
+ 0.417600000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+31 16 6 30 22 0 0.0 0.261224340648D-03-0.193267624127D-11 0.000000000000D+00
+ 0.550000000000D+02 0.113593750000D+03 0.421446122445D-08 0.134126789900D+01
+ 0.596232712269D-05 0.814430462197D-02 0.485219061375D-05 0.515377592087D+04
+ 0.424800000000D+06 0.651925802231D-07 0.381070838890D+00 0.109896063805D-06
+ 0.971126528392D+00 0.288250000000D+03-0.395846481189D+00-0.814069611721D-08
+ 0.289654911168D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.135041773319D-07 0.550000000000D+02
+ 0.418140000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+32 16 6 30 22 0 0.0-0.367392785847D-04-0.920863385545D-11 0.000000000000D+00
+ 0.660000000000D+02 0.492500000000D+02 0.416517353941D-08-0.162926154647D+01
+ 0.252574682236D-05 0.545977731235D-03 0.126995146275D-04 0.515362756538D+04
+ 0.424800000000D+06 0.558793544769D-07-0.704640308994D+00-0.117346644402D-06
+ 0.959474442945D+00 0.137656250000D+03-0.232781497811D+01-0.776425235216D-08
+ -0.405731198638D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.465661287308D-09 0.660000000000D+02
+ 0.417630000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+ 2 16 6 30 23 59 44.0 0.581068452448D-03-0.375166564481D-11 0.000000000000D+00
+ 0.000000000000D+00 0.230312500000D+02 0.521128828979D-08-0.265381955874D+01
+ 0.119581818581D-05 0.157846804941D-01 0.755302608013D-05 0.515358534431D+04
+ 0.431984000000D+06 0.314787030220D-06-0.283340587827D+01-0.124797224999D-06
+ 0.943731233943D+00 0.221187500000D+03-0.210484972307D+01-0.815105405394D-08
+ 0.602882244127D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.200234353542D-07 0.000000000000D+00
+ 0.429180000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+11 16 6 30 23 59 44.0-0.654205214232D-03-0.136424205266D-11 0.000000000000D+00
+ 0.290000000000D+02-0.784375000000D+01 0.595596237545D-08 0.265029232574D+01
+ -0.499188899994D-06 0.165384656284D-01 0.959075987339D-05 0.515366887856D+04
+ 0.431984000000D+06 0.227242708206D-06 0.311677154051D+01-0.221654772759D-06
+ 0.897422743545D+00 0.157125000000D+03 0.153655408419D+01-0.835820529566D-08
+ 0.488591780380D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.290000000000D+02
+ 0.430320000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+18 16 6 30 23 59 44.0 0.531934201717D-03 0.375166564481D-11 0.000000000000D+00
+ 0.400000000000D+01-0.266562500000D+02 0.596596279201D-08 0.622004297456D+00
+ -0.127777457237D-05 0.172644663835D-01 0.662356615067D-05 0.515368641472D+04
+ 0.431984000000D+06-0.195577740669D-06-0.177986936211D+01 0.726431608200D-07
+ 0.924620435798D+00 0.238781250000D+03-0.187439623658D+01-0.900823237189D-08
+ -0.535736601294D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.121071934700D-07 0.400000000000D+01
+ 0.430200000000D+06 0.000000000000D+00 0.000000000000D+00 0.000000000000D+00
+21 16 6 30 23 59 44.0-0.527240335941D-03-0.909494701773D-12 0.000000000000D+00
+ 0.150000000000D+02 0.111250000000D+02 0.549308595194D-08 0.152899961473D+01
+ 0.217929482460D-06 0.233461238677D-01 0.796280801296D-05 0.515358583641D+04
+ 0.431984000000D+06-0.277534127235D-06-0.282170668540D+01-0.560656189918D-06
+ 0.936946233057D+00 0.219062500000D+03-0.177877150061D+01-0.850178270480D-08
+ 0.591453207829D-09 0.100000000000D+01 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.102445483208D-07 0.150000000000D+02
+ 0.431646000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+22 16 6 30 23 59 44.0 0.307643320411D-03-0.898126018001D-11 0.000000000000D+00
+ 0.130000000000D+02-0.260312500000D+02 0.587095883472D-08-0.139778036881D+01
+ -0.132620334625D-05 0.766692648176D-02 0.577233731747D-05 0.515377997398D+04
+ 0.431984000000D+06 0.949949026108D-07-0.177929196736D+01 0.165775418282D-06
+ 0.922533744079D+00 0.245281250000D+03-0.189789981199D+01-0.867214694402D-08
+ -0.398588031363D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00-0.176951289177D-07 0.130000000000D+02
+ 0.428400000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
+26 16 6 30 23 59 44.0-0.410932581872D-03-0.105728759081D-10 0.000000000000D+00
+ 0.160000000000D+02-0.733125000000D+02 0.468555231492D-08 0.615703820890D+00
+ -0.374391674995D-05 0.100520695560D-02 0.256486237049D-05 0.515378117943D+04
+ 0.431984000000D+06 0.447034835815D-07 0.138759730327D+01 0.670552253723D-07
+ 0.960219460309D+00 0.330343750000D+03 0.182430576063D+00-0.848999649958D-08
+ -0.150363406097D-09 0.000000000000D+00 0.190300000000D+04 0.000000000000D+00
+ 0.200000000000D+01 0.000000000000D+00 0.698491930962D-08 0.160000000000D+02
+ 0.430200000000D+06 0.400000000000D+01 0.000000000000D+00 0.000000000000D+00
diff --git a/opensource/demoFiles/hour2570.16n b/ProcessGNSSMeas/demoFiles/hour2570.16n
similarity index 100%
rename from opensource/demoFiles/hour2570.16n
rename to ProcessGNSSMeas/demoFiles/hour2570.16n
diff --git a/ProcessGNSSMeas/demoFiles/raw.csv b/ProcessGNSSMeas/demoFiles/raw.csv
new file mode 100644
index 0000000..f781ea3
--- /dev/null
+++ b/ProcessGNSSMeas/demoFiles/raw.csv
@@ -0,0 +1,3478 @@
+ElapsedRealtimeMillis,TimeNanos,LeapSecond,TimeUncertaintyNanos,FullBiasNanos,BiasNanos,BiasUncertaintyNanos,DriftNanosPerSecond,DriftUncertaintyNanosPerSecond,HardwareClockDiscontinuityCount,Svid,TimeOffsetNanos,State,ReceivedSvTimeNanos,ReceivedSvTimeUncertaintyNanos,Cn0DbHz,PseudorangeRateMetersPerSecond,PseudorangeRateUncertaintyMetersPerSecond,AccumulatedDeltaRangeState,AccumulatedDeltaRangeMeters,AccumulatedDeltaRangeUncertaintyMeters,CarrierFrequencyHz,CarrierCycles,CarrierPhase,CarrierPhaseUncertainty,MultipathIndicator,SnrInDb,ConstellationType
+507489489,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,10,0.0,47,254075923810419,19,33.69032669067383,-568.6950298307879,0.09711536373713026,4,-317959.91358424764,3.4028234663852886E38,,,,,0,,1
+507489489,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,13,0.0,47,254075923477917,27,30.68573570251465,171.15645601099925,0.13690855385823814,4,80505.80839230375,3.4028234663852886E38,,,,,0,,1
+507489490,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,15,0.0,47,254075927630579,10,39.0208854675293,-67.22072675256936,0.05357419343801628,4,-54964.58310859336,3.4028234663852886E38,,,,,0,,1
+507489490,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,16,0.0,47,254075924135903,48,25.685562133789062,125.6000723348717,0.24309803048716494,4,53802.679326779806,3.4028234663852886E38,,,,,0,,1
+507489491,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,18,0.0,47,254075930917338,22,32.489662170410156,-200.09648332873496,0.11268866658715482,4,-119436.72756124078,3.4028234663852886E38,,,,,0,,1
+507489491,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,20,0.0,47,254075930389662,8,41.290008544921875,425.76230719001273,0.042069026185229175,4,232171.56963592116,3.4028234663852886E38,,,,,0,,1
+507489491,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,21,0.0,47,254075930195168,32,29.12447738647461,19.683698629764066,0.16495284888622452,4,7074.967748958065,3.4028234663852886E38,,,,,0,,1
+507489492,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,26,0.0,47,254075922898912,75,20.012733459472656,420.4490226303892,4.200521377495649,4,221620.17082646125,3.4028234663852886E38,,,,,0,,1
+507489492,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,27,0.0,47,254075921939956,55,24.648805618286133,-590.1206252992874,0.2734278055165553,4,-332260.40257957845,3.4028234663852886E38,,,,,0,,1
+507489492,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,29,0.0,47,254075925063887,15,35.96119689941406,656.631244070204,0.07515610190259897,4,361282.0004399051,3.4028234663852886E38,,,,,0,,1
+507489493,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,93,0.0,51,1375946,81,18.680274963378906,55.020553574435894,4.2002476527667,4,9869.579192217134,3.4028234663852886E38,,,,,0,,3
+507489493,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,94,0.0,227,5658920183241,68,21.36832046508789,529.950672657418,4.203630602845781,4,280065.10961501976,3.4028234663852886E38,,,,,0,,3
+507489494,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,96,0.0,227,5658929178217,33,37.37644958496094,658.6202962328753,0.06473299023756932,4,354736.9992395709,3.4028234663852886E38,,,,,0,,3
+507489494,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,97,0.0,227,5658936142769,33,37.40339660644531,44.52656095075551,0.06579035767871955,4,10518.070219468746,3.4028234663852886E38,,,,,0,,3
+507489494,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,103,0.0,227,5658928841357,56,30.47295570373535,-594.039153490628,0.14125309351816473,4,-329457.9637928349,3.4028234663852886E38,,,,,0,,3
+507489495,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,104,0.0,227,5658928119046,49,31.563945770263672,620.4755517171111,0.12463785435873348,4,334211.92416216945,3.4028234663852886E38,,,,,0,,3
+507489495,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,105,0.0,227,5658936143903,33,39.09348678588867,-57.1239694199694,0.05467100616362608,4,-51829.93107948952,3.4028234663852886E38,,,,,0,,3
+507489495,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,106,0.0,227,5658927796592,33,37.02587890625,-711.4010700532299,0.06708259534912786,4,-398120.24862858176,3.4028234663852886E38,,,,,0,,3
+507489496,570430000000,,,-1157840705570309508,0.0,13.177497335702949,,,0,26,0.0,1074,2518636,9,35.31276321411133,256.2047955443246,0.09010816544500805,4,133403.31582265333,3.4028234663852886E38,,,,,0,,6
+507490469,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,10,0.0,47,254076923812261,23,32.088993072509766,-568.9255294842517,0.11663785474396415,4,-318528.7698828349,3.4028234663852886E38,,,,,0,,1
+507490470,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,13,0.0,47,254076923477381,21,32.88832092285156,171.22649545915363,0.10638328731675134,4,80677.2246964679,3.4028234663852886E38,,,,,0,,1
+507490470,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,15,0.0,47,254076927630786,12,37.79000473022461,-67.04579854446604,0.06152156328288649,4,-55031.68156721351,3.4028234663852886E38,,,,,0,,1
+507490471,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,16,0.0,47,254076924135406,59,24.029569625854492,125.79259561115492,0.29400186012825413,4,53928.30420788888,3.4028234663852886E38,,,,,0,,1
+507490472,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,18,0.0,47,254076930917998,20,33.40610122680664,-199.94914486918685,0.10160150036059412,4,-119636.81829464262,3.4028234663852886E38,,,,,0,,1
+507490473,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,20,0.0,47,254076930388239,8,40.46234893798828,425.88827594932104,0.046087789649708305,4,232597.46508363483,3.4028234663852886E38,,,,,0,,1
+507490473,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,21,0.0,47,254076930195102,33,28.9886474609375,19.866410418875788,0.16752374449827034,4,7094.780353544089,3.4028234663852886E38,,,,,0,,1
+507490474,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,26,0.0,47,254076922897511,66,21.74983787536621,420.42625554943197,4.2005211112264575,4,222040.61390385727,3.4028234663852886E38,,,,,0,,1
+507490475,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,27,0.0,47,254076921941883,60,23.82352066040039,-590.4298895097754,0.3006472069099253,4,-332850.68057984347,3.4028234663852886E38,,,,,0,,1
+507490476,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,29,0.0,47,254076925061677,18,34.339073181152344,656.5775301187241,0.09040053733828002,4,361938.5904087799,3.4028234663852886E38,,,,,0,,1
+507490476,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,93,0.0,51,1375704,75,19.948692321777344,55.393530677086204,4.200247386497509,4,9925.245098716474,3.4028234663852886E38,,,,,0,,3
+507490477,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,94,0.0,227,5659920181349,65,21.935779571533203,530.2380900132748,4.203630070307398,4,280595.5561238163,3.4028234663852886E38,,,,,0,,3
+507490477,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,96,0.0,227,5659929176048,33,39.42094802856445,658.6608543561374,0.051502361179209866,4,355395.71065784234,3.4028234663852886E38,,,,,0,,3
+507490478,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,97,0.0,227,5659936142585,33,36.869102478027344,44.470431405169506,0.06978011860359656,4,10562.630972276378,3.4028234663852886E38,,,,,0,,3
+507490478,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,103,0.0,227,5659928843319,71,28.41269874572754,-594.0097062481923,0.17863968443934664,4,-330051.8756063561,3.4028234663852886E38,,,,,0,,3
+507490478,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,104,0.0,227,5659928116969,33,36.51609420776367,620.426132155153,0.07111045773113817,4,334832.40413058584,3.4028234663852886E38,,,,,0,,3
+507490479,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,105,0.0,227,5659936144121,33,40.013980865478516,-56.85058125527874,0.049465680614148716,4,-51886.95627401414,3.4028234663852886E38,,,,,0,,3
+507490479,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,106,0.0,227,5659927798847,42,32.87497329711914,-711.1298418642214,0.10732322588395671,4,-398831.4462636441,3.4028234663852886E38,,,,,0,,3
+507490480,571430000000,,,-1157840705570309415,0.0,12.669325331636752,,,0,26,0.0,1074,2517779,9,34.951622009277344,256.3252429456762,0.09391430047863863,4,133659.6364134403,3.4028234663852886E38,,,,,0,,6
+507491459,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,10,0.0,47,254077923814191,26,30.887868881225586,-569.0322757380811,0.13383415984673058,4,-319097.602893766,3.4028234663852886E38,,,,,0,,1
+507491460,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,13,0.0,47,254077923476832,25,31.294845581054688,171.384672139876,0.12767875669848705,4,80848.79790645272,3.4028234663852886E38,,,,,0,,1
+507491460,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,15,0.0,47,254077927631044,10,38.722652435302734,-66.9405646996448,0.05539775879886302,4,-55098.69900084282,3.4028234663852886E38,,,,,0,,1
+507491460,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,16,0.0,47,254077924134968,34,28.762123107910156,125.95239972917625,0.1708116364759552,4,54054.11141843725,3.4028234663852886E38,,,,,0,,1
+507491461,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,18,0.0,47,254077930918695,18,33.96359634399414,-199.8778614113694,0.09540737168679952,4,-119836.75575402811,3.4028234663852886E38,,,,,0,,1
+507491461,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,20,0.0,47,254077930386857,10,39.43859100341797,425.79686680092686,0.051618991245579976,4,233023.39432958144,3.4028234663852886E38,,,,,0,,1
+507491461,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,21,0.0,47,254077930195037,27,30.57450294494629,20.05293731296453,0.13987328656737408,4,7114.709172180006,3.4028234663852886E38,,,,,0,,1
+507491462,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,26,0.0,47,254077922896087,80,18.94708824157715,420.3807213875175,4.200520844957266,4,222460.55828394633,3.4028234663852886E38,,,,,0,,1
+507491462,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,27,0.0,47,254077921943957,29,30.162322998046875,-590.1909033246375,0.14509753803173453,4,-333440.8270705852,3.4028234663852886E38,,,,,0,,1
+507491462,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,29,0.0,47,254077925059502,15,35.63711929321289,656.9218992594306,0.07797777316764393,4,362595.3500265465,3.4028234663852886E38,,,,,0,,1
+507491463,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,93,0.0,51,1375313,72,20.45227813720703,55.42478855002469,4.200247386497509,4,9980.856234562609,3.4028234663852886E38,,,,,0,,3
+507491463,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,94,0.0,227,5660920179794,105,25.02153778076172,530.1964071689474,0.26523813070734326,4,281126.1380245906,3.4028234663852886E38,,,,,0,,3
+507491463,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,96,0.0,227,5660929173918,33,38.35930633544922,658.7297690832265,0.057983195205043025,4,356054.46347895963,3.4028234663852886E38,,,,,0,,3
+507491464,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,97,0.0,227,5660936142472,33,35.57278060913086,44.51506664229319,0.08054430862167755,4,10607.242740666541,3.4028234663852886E38,,,,,0,,3
+507491464,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,103,0.0,227,5660928845406,50,31.490415573120117,-593.9342476894508,0.1258156711649706,4,-330645.7501909785,3.4028234663852886E38,,,,,0,,3
+507491464,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,104,0.0,227,5660928115015,33,35.70543670654297,620.4539434396756,0.07792359570806873,4,335452.9223505422,3.4028234663852886E38,,,,,0,,3
+507491465,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,105,0.0,227,5660936144328,33,38.26777648925781,-56.56977163568024,0.059833766086554996,4,-51943.737139559,3.4028234663852886E38,,,,,0,,3
+507491465,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,106,0.0,227,5660927801328,45,32.368350982666016,-710.985877567869,0.11368545362676347,4,-399542.432964222,3.4028234663852886E38,,,,,0,,3
+507491465,572430000000,,,-1157840705570309334,0.0,12.03768788812858,,,0,26,0.0,1074,2516957,11,33.05913162231445,256.2583220422937,0.11666628730107803,4,133915.8495917028,3.4028234663852886E38,,,,,0,,6
+507492442,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,10,0.0,47,254078923816062,36,28.353435516357422,-569.1073934722574,0.17894750826664274,4,-319666.6121786151,3.4028234663852886E38,,,,,0,,1
+507492443,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,13,0.0,47,254078923476187,19,33.59131622314453,171.74079972808283,0.09816076986693978,4,81020.6089960974,3.4028234663852886E38,,,,,0,,1
+507492444,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,15,0.0,47,254078927631223,9,40.28830337524414,-66.70808400339564,0.04648686476105163,4,-55165.47129994111,3.4028234663852886E38,,,,,0,,1
+507492445,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,16,0.0,47,254078924134621,31,29.5699462890625,125.83767818052047,0.155707799494343,4,54179.817457009,3.4028234663852886E38,,,,,0,,1
+507492446,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,18,0.0,47,254078930919337,21,33.00638961791992,-199.948633632339,0.10629406217483384,4,-120036.65402085977,3.4028234663852886E38,,,,,0,,1
+507492447,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,20,0.0,47,254078930385407,12,37.55471420288086,425.79928665534,0.0636686789951573,4,233449.30101653855,3.4028234663852886E38,,,,,0,,1
+507492448,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,21,0.0,47,254078930194929,18,34.01799774169922,20.052939443118063,0.09469377857426542,4,7134.649762493762,3.4028234663852886E38,,,,,0,,1
+507492449,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,26,0.0,47,254078922894691,38,27.828670501708984,420.42533532310586,0.18988356672697926,4,222880.26178299802,3.4028234663852886E38,,,,,0,,1
+507492450,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,27,0.0,47,254078921945930,43,26.735267639160156,-590.0502109441113,0.21511575121808102,4,-334030.86734129523,3.4028234663852886E38,,,,,0,,1
+507492451,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,29,0.0,47,254078925057357,22,32.34050369262695,657.1892420483955,0.11355241888191808,4,363252.3678715609,3.4028234663852886E38,,,,,0,,1
+507492452,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,93,0.0,51,1375208,79,19.168128967285156,55.474608580846905,4.200247386497509,4,10036.618758206136,3.4028234663852886E38,,,,,0,,3
+507492453,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,94,0.0,227,5661920178104,61,22.62410545349121,530.0909560484658,4.2036295377690145,4,281656.4771431595,3.4028234663852886E38,,,,,0,,3
+507492454,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,96,0.0,227,5661929171623,33,37.078914642333984,658.908361155406,0.06693012295329681,4,356713.41020330915,3.4028234663852886E38,,,,,0,,3
+507492454,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,97,0.0,227,5661936142263,33,37.53025817871094,44.68591347622791,0.06487845226484068,4,10651.977797998145,3.4028234663852886E38,,,,,0,,3
+507492455,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,103,0.0,227,5661928847368,87,26.718774795532227,-593.9020738504933,0.2167653720690691,4,-331239.56205783045,3.4028234663852886E38,,,,,0,,3
+507492455,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,104,0.0,227,5661928112806,33,35.73208236694336,620.7546188711199,0.07768898758754611,4,336073.68070284626,3.4028234663852886E38,,,,,0,,3
+507492456,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,105,0.0,227,5661936144514,33,38.76089096069336,-56.54655722248114,0.05669180626768289,4,-52000.340465818976,3.4028234663852886E38,,,,,0,,3
+507492456,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,106,0.0,227,5661927803684,49,31.565670013427734,-710.8968541914314,0.12455666721803693,4,-400253.3785778358,3.4028234663852886E38,,,,,0,,3
+507492456,573430000000,,,-1157840705570309243,0.0,12.416232632795083,,,0,26,0.0,1074,2516071,9,34.787025451660156,256.40520038867874,0.09570196526363878,4,134172.2727813486,3.4028234663852886E38,,,,,0,,6
+507493458,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,10,0.0,47,254079923817940,34,28.721227645874023,-568.9196332192732,0.17155722349604063,4,-320235.31000234885,3.4028234663852886E38,,,,,0,,1
+507493459,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,13,0.0,47,254079923475611,23,32.142669677734375,172.05694859478842,0.1158629697918922,4,81192.6488424437,3.4028234663852886E38,,,,,0,,1
+507493459,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,15,0.0,47,254079927631465,10,39.22578430175781,-66.39471285689666,0.05235732659065084,4,-55231.93496566451,3.4028234663852886E38,,,,,0,,1
+507493459,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,16,0.0,47,254079924134229,25,31.214035034179688,125.64543608450356,0.12898457409766617,4,54305.35812863848,3.4028234663852886E38,,,,,0,,1
+507493460,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,18,0.0,47,254079930920046,20,33.29010009765625,-199.85318571284688,0.10294146678359395,4,-120236.46534527604,3.4028234663852886E38,,,,,0,,1
+507493460,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,20,0.0,47,254079930383992,11,38.01641082763672,426.0682313197615,0.06046919670999071,4,233875.38267206177,3.4028234663852886E38,,,,,0,,1
+507493460,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,21,0.0,47,254079930194885,26,30.956768035888672,19.770521557602393,0.13392992522566638,4,7154.4816504891205,3.4028234663852886E38,,,,,0,,1
+507493460,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,26,0.0,47,254079922893216,29,30.152233123779297,420.6419293343083,0.1454365319962705,4,223301.04792256738,3.4028234663852886E38,,,,,0,,1
+507493461,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,27,0.0,47,254079921947810,31,29.604961395263672,-589.7775512919288,0.15469100066080432,4,-334620.7464850646,3.4028234663852886E38,,,,,0,,1
+507493461,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,29,0.0,47,254079925055105,20,33.37001037597656,657.2491590069626,0.1009617969487247,4,363909.6485124547,3.4028234663852886E38,,,,,0,,1
+507493461,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,93,0.0,51,1374884,109,24.718067169189453,55.538347034851625,0.27115734476173914,4,10092.345655831254,3.4028234663852886E38,,,,,0,,3
+507493462,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,94,0.0,227,5662920176071,100,25.45684242248535,530.3342366231257,0.2524497373321005,4,282186.5424621054,3.4028234663852886E38,,,,,0,,3
+507493462,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,96,0.0,227,5662929169463,33,39.58367156982422,659.0119036583224,0.050575952415301884,4,357372.384060186,3.4028234663852886E38,,,,,0,,3
+507493462,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,97,0.0,227,5662936142136,33,39.15735626220703,44.824211564183344,0.05429142694965408,4,10696.889235333594,3.4028234663852886E38,,,,,0,,3
+507493463,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,103,0.0,227,5662928849366,116,24.155941009521484,-593.933020721016,0.2906141172037251,4,-331833.47516411456,3.4028234663852886E38,,,,,0,,3
+507493463,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,104,0.0,227,5662928110838,33,38.308998107910156,621.0382530743027,0.058119196355100905,4,336694.7303403425,3.4028234663852886E38,,,,,0,,3
+507493463,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,105,0.0,227,5662936144658,33,38.045021057128906,-56.427277145265435,0.06131270422528132,4,-52056.78812012559,3.4028234663852886E38,,,,,0,,3
+507493464,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,106,0.0,227,5662927806057,42,33.03091812133789,-711.0272536700877,0.10543981236184524,4,-400964.2986507392,3.4028234663852886E38,,,,,0,,3
+507493464,574430000000,,,-1157840705570309149,0.0,12.736632955578651,,,0,26,0.0,1074,2515253,9,35.11717224121094,256.58962056092366,0.0921493434631333,4,134428.8065645046,3.4028234663852886E38,,,,,0,,6
+507494482,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,10,0.0,47,254080923819928,24,31.56424903869629,-568.7147976555711,0.12386023182653555,4,-320803.9384461717,3.4028234663852886E38,,,,,0,,1
+507494482,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,13,0.0,47,254080923475087,16,35.16747283935547,172.16669410479187,0.08197454862153675,4,81364.86081406262,3.4028234663852886E38,,,,,0,,1
+507494483,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,15,0.0,47,254080927631685,16,35.27450180053711,-66.33854496854707,0.08172596968936818,4,-55298.40970830615,3.4028234663852886E38,,,,,0,,1
+507494483,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,16,0.0,47,254080924133803,43,26.801265716552734,125.62816479966062,0.2138836238176729,4,54430.976660876724,3.4028234663852886E38,,,,,0,,1
+507494483,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,18,0.0,47,254080930920673,18,34.025936126708984,-199.63100217877468,0.09473949366609558,4,-120436.24001310648,3.4028234663852886E38,,,,,0,,1
+507494484,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,20,0.0,47,254080930382598,12,37.90149688720703,426.337175984183,0.06124940704589435,4,234301.68450245826,3.4028234663852886E38,,,,,0,,1
+507494484,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,21,0.0,47,254080930194858,15,35.628265380859375,19.94182211423957,0.07898011025571466,4,7174.436208269216,3.4028234663852886E38,,,,,0,,1
+507494484,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,26,0.0,47,254080922891841,32,29.315122604370117,420.7950618114653,0.16009789614876724,4,223721.77055119106,3.4028234663852886E38,,,,,0,,1
+507494485,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,27,0.0,47,254080921949775,47,25.924583435058594,-589.7108178420572,0.23612647066215386,4,-335210.5118313887,3.4028234663852886E38,,,,,0,,1
+507494485,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,29,0.0,47,254080925052873,10,38.98017501831055,657.1815394132213,0.05335576533133854,4,364566.70326802926,3.4028234663852886E38,,,,,0,,1
+507494485,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,93,0.0,51,1374689,102,25.309329986572266,55.76636292929629,0.2533296738011648,4,10148.074007368385,3.4028234663852886E38,,,,,0,,3
+507494486,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,94,0.0,227,5663920174396,47,31.94350814819336,530.2865552664503,0.12153950444089556,4,282716.74566275894,3.4028234663852886E38,,,,,0,,3
+507494486,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,96,0.0,227,5663929167272,33,37.9512939453125,659.1803391584581,0.060691315141245566,4,358031.49826702924,3.4028234663852886E38,,,,,0,,3
+507494487,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,97,0.0,227,5663936141985,33,37.521244049072266,45.14381127961187,0.06494274379323997,4,10741.992104929896,3.4028234663852886E38,,,,,0,,3
+507494487,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,103,0.0,227,5663928851318,73,20.321731567382812,-593.5487751061778,4.20159204591501,4,-332427.2134339649,3.4028234663852886E38,,,,,0,,3
+507494488,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,104,0.0,227,5663928108706,33,36.357017517089844,621.0690636149993,0.07239634654550964,4,337315.7211200333,3.4028234663852886E38,,,,,0,,3
+507494488,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,105,0.0,227,5663936144917,33,36.05265426635742,-56.24336820986835,0.07637163740400649,4,-52113.13395357642,3.4028234663852886E38,,,,,0,,3
+507494488,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,106,0.0,227,5663927808341,33,37.39453125,-711.0587458599148,0.06435539556116585,4,-401675.3158858239,3.4028234663852886E38,,,,,0,,3
+507494489,575430000000,,,-1157840705570309059,0.0,12.627959701373335,,,0,26,0.0,1074,2514377,8,35.7694091796875,256.42357083274453,0.08551569588406738,4,134685.23130488538,3.4028234663852886E38,,,,,0,,6
+507495479,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,10,0.0,47,254081923821691,28,30.27885627746582,-568.4501473806715,0.14350628005917687,4,-321372.339289737,3.4028234663852886E38,,,,,0,,1
+507495479,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,13,0.0,47,254081923474462,18,34.08444595336914,172.29797972731774,0.09277725614236287,4,81537.1756829589,3.4028234663852886E38,,,,,0,,1
+507495479,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,15,0.0,47,254081927631896,11,38.08900451660156,-66.24902739648991,0.059486438728413665,4,-55364.71887321703,3.4028234663852886E38,,,,,0,,1
+507495480,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,16,0.0,47,254081924133406,38,27.735454559326172,125.77529024385547,0.19214951754736298,4,54556.85198997959,3.4028234663852886E38,,,,,0,,1
+507495480,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,18,0.0,47,254081930921369,22,32.48396682739258,-199.389033778691,0.11276199878669962,4,-120635.7632737962,3.4028234663852886E38,,,,,0,,1
+507495481,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,20,0.0,47,254081930381136,11,38.5920524597168,426.41559971664196,0.05671088195898624,4,234728.0755135347,3.4028234663852886E38,,,,,0,,1
+507495481,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,21,0.0,47,254081930194749,13,37.0078239440918,20.019035919491998,0.067650634904356,4,7194.458502243098,3.4028234663852886E38,,,,,0,,1
+507495481,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,26,0.0,47,254081922890478,33,28.989858627319336,420.86878216492414,0.16618670703637795,4,224142.65430716923,3.4028234663852886E38,,,,,0,,1
+507495482,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,27,0.0,47,254081921951713,62,23.548288345336914,-589.6800073013605,0.3103169723042085,4,-335800.2683657326,3.4028234663852886E38,,,,,0,,1
+507495482,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,29,0.0,47,254081925050715,11,38.02477264404297,656.8649133921244,0.05945347959504285,4,365223.5939034192,3.4028234663852886E38,,,,,0,,1
+507495482,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,93,0.0,51,1374478,84,26.937759399414062,56.274302299469866,0.21006414204081414,4,10204.17960778654,3.4028234663852886E38,,,,,0,,3
+507495483,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,94,0.0,227,5664920172624,52,31.173601150512695,530.2119487691218,0.13246787437832508,4,283246.904638067,3.4028234663852886E38,,,,,0,,3
+507495483,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,96,0.0,227,5664929165054,33,36.94945526123047,659.3818346414209,0.06790921973348957,4,358690.8025016538,3.4028234663852886E38,,,,,0,,3
+507495483,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,97,0.0,227,5664936141841,33,38.898597717285156,45.35328205740106,0.05584528242170636,4,10787.339696656034,3.4028234663852886E38,,,,,0,,3
+507495484,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,103,0.0,227,5664928853341,75,19.878616333007812,-593.4559344946097,4.201592578453393,4,-333020.7314041734,3.4028234663852886E38,,,,,0,,3
+507495484,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,104,0.0,227,5664928106671,33,38.26528549194336,621.1440450193495,0.05840431657335832,4,337936.8207279472,3.4028234663852886E38,,,,,0,,3
+507495485,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,105,0.0,227,5664936145095,33,35.53226089477539,-56.21964255982141,0.08090784095640047,4,-52169.36213016768,3.4028234663852886E38,,,,,0,,3
+507495485,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,106,0.0,227,5664927810743,33,36.33217239379883,-711.020300848957,0.07254593158479444,4,-402386.29193927447,3.4028234663852886E38,,,,,0,,3
+507495485,576430000000,,,-1157840705570308967,0.0,12.533518756146261,,,0,26,0.0,1074,2513546,10,33.75832748413086,256.60701965497856,0.10767737222967627,4,134941.79597721453,3.4028234663852886E38,,,,,0,,6
+507496479,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,10,0.0,47,254082923823545,49,25.66517448425293,-568.2082641867291,0.24361133092124188,4,-321940.5140821347,3.4028234663852886E38,,,,,0,,1
+507496479,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,13,0.0,47,254082923473894,18,34.23400115966797,172.4977540462262,0.09120402126571059,4,81709.70592332022,3.4028234663852886E38,,,,,0,,1
+507496480,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,15,0.0,47,254082927632127,10,38.800533294677734,-66.15358373730484,0.054915707550692194,4,-55430.95837782894,3.4028234663852886E38,,,,,0,,1
+507496480,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,16,0.0,47,254082924133040,33,29.006940841674805,125.90435198609322,0.16608474257782557,4,54682.79280594546,3.4028234663852886E38,,,,,0,,1
+507496481,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,18,0.0,47,254082930922062,17,34.66775131225586,-199.3279239341456,0.08813158266857873,4,-120835.22104233454,3.4028234663852886E38,,,,,0,,1
+507496481,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,20,0.0,47,254082930379731,11,38.161319732666016,426.4013191673589,0.059498878492208,4,235154.49025619138,3.4028234663852886E38,,,,,0,,1
+507496481,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,21,0.0,47,254082930194706,13,36.99443817138672,20.209005141689545,0.06775215003364757,4,7214.576922864123,3.4028234663852886E38,,,,,0,,1
+507496482,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,26,0.0,47,254082922889051,39,27.481149673461914,420.9863325574713,0.19761252926745232,4,224563.5498979568,3.4028234663852886E38,,,,,0,,1
+507496482,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,27,0.0,47,254082921953607,51,25.238243103027344,-589.7304493370143,0.2555135471432426,4,-336389.9792929997,3.4028234663852886E38,,,,,0,,1
+507496482,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,29,0.0,47,254082925048502,13,37.0963249206543,656.9814072285194,0.06605776267482436,4,365880.5418119945,3.4028234663852886E38,,,,,0,,1
+507496483,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,93,0.0,51,1374218,80,27.406570434570312,56.569290220981856,0.19903964892522263,4,10260.545975354202,3.4028234663852886E38,,,,,0,,3
+507496483,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,94,0.0,227,5665920170843,65,29.2425537109375,530.1990996830127,0.16454480799194582,4,283777.1355069928,3.4028234663852886E38,,,,,0,,3
+507496483,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,96,0.0,227,5665929162873,33,35.448123931884766,659.4797876214675,0.08041117402588532,4,359350.2282536307,3.4028234663852886E38,,,,,0,,3
+507496484,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,97,0.0,227,5665936141714,33,39.25284957885742,45.40025194279656,0.0537294907835518,4,10832.756806586,3.4028234663852886E38,,,,,0,,3
+507496484,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,103,0.0,227,5665928855320,106,24.971473693847656,-593.3256713457795,0.2647133640562037,4,-333614.12765023345,3.4028234663852886E38,,,,,0,,3
+507496485,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,104,0.0,227,5665928104591,33,39.069400787353516,621.206075090221,0.05336869186849874,4,338558.0196077777,3.4028234663852886E38,,,,,0,,3
+507496485,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,105,0.0,227,5665936145196,33,35.13713073730469,-55.79967000993321,0.0845382799281465,4,-52225.298692785414,3.4028234663852886E38,,,,,0,,3
+507496485,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,106,0.0,227,5665927813198,33,35.935150146484375,-711.0073495154784,0.07587359752297224,4,-403097.1961643916,3.4028234663852886E38,,,,,0,,3
+507496486,577430000000,,,-1157840705570308872,0.0,12.56374094019806,,,0,26,0.0,1074,2512687,10,33.849517822265625,256.6350354342403,0.10655737744257415,4,135198.4277879724,3.4028234663852886E38,,,,,0,,6
+507497465,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,10,0.0,47,254083923825425,65,21.86648178100586,-568.3572045217338,4.200688062009581,4,-322508.91586981947,3.4028234663852886E38,,,,,0,,1
+507497466,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,13,0.0,47,254083923473352,22,32.27075958251953,172.85355785109607,0.11417561360390927,4,81882.54034953863,3.4028234663852886E38,,,,,0,,1
+507497467,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,15,0.0,47,254083927632348,7,41.658294677734375,-66.13433140967652,0.03990416612761294,4,-55497.189130166276,3.4028234663852886E38,,,,,0,,1
+507497468,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,16,0.0,47,254083924132533,17,34.4710578918457,126.40873826017429,0.08888382641845377,4,54809.205054327,3.4028234663852886E38,,,,,0,,1
+507497469,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,18,0.0,47,254083930922677,21,32.8233757019043,-199.10536549305164,0.10851624499685086,4,-121034.53564152868,3.4028234663852886E38,,,,,0,,1
+507497469,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,20,0.0,47,254083930378294,10,39.13930130004883,426.4646443715783,0.053361602451272805,4,235581.03485941928,3.4028234663852886E38,,,,,0,,1
+507497470,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,21,0.0,47,254083930194631,22,32.30605697631836,20.332370853380922,0.11492412958510212,4,7234.925509669748,3.4028234663852886E38,,,,,0,,1
+507497471,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,26,0.0,47,254083922887713,43,26.65615463256836,421.02061950873326,0.21725019834147097,4,224984.7010317343,3.4028234663852886E38,,,,,0,,1
+507497472,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,27,0.0,47,254083921955778,26,30.923633575439453,-589.6258843604023,0.1329527588971126,4,-336979.5089108329,3.4028234663852886E38,,,,,0,,1
+507497472,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,29,0.0,47,254083925046340,8,40.71144104003906,656.8001567247311,0.04387682757784289,4,366537.2445652925,3.4028234663852886E38,,,,,0,,1
+507497473,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,93,0.0,51,1374057,124,23.634859085083008,56.6671835567295,0.307139082786297,4,10317.383233340051,3.4028234663852886E38,,,,,0,,3
+507497474,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,94,0.0,227,5666920169018,76,27.841976165771484,530.0964092415095,0.19270092775948544,4,284307.49041171785,3.4028234663852886E38,,,,,0,,3
+507497474,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,96,0.0,227,5666929160648,33,41.166481018066406,659.7549693754327,0.04242375499480533,4,360009.9530332285,3.4028234663852886E38,,,,,0,,3
+507497475,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,97,0.0,227,5666936141520,33,37.8592529296875,45.694370761667216,0.06257479107019881,4,10878.470688902316,3.4028234663852886E38,,,,,0,,3
+507497476,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,103,0.0,227,5666928857258,64,29.320575714111328,-593.1417624103824,0.16107076056569447,4,-334207.3976923763,3.4028234663852886E38,,,,,0,,3
+507497477,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,104,0.0,227,5666928102421,33,36.84330368041992,621.0951707766958,0.06853281385926813,4,339179.0159889668,3.4028234663852886E38,,,,,0,,3
+507497477,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,105,0.0,227,5666936145367,33,39.355857849121094,-55.80174051916697,0.05313095508497501,4,-52281.18013693317,3.4028234663852886E38,,,,,0,,3
+507497478,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,106,0.0,227,5666927815524,36,34.25973892211914,-711.033661171914,0.09171697222147357,4,-403808.24751982884,3.4028234663852886E38,,,,,0,,3
+507497479,578430000000,,,-1157840705570308777,0.0,11.681479343169435,,,0,26,0.0,1074,2511812,7,36.42937088012695,256.3955891359393,0.07929150375436045,4,135454.8795043989,3.4028234663852886E38,,,,,0,,6
+507498437,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,10,0.0,47,254084923827467,31,29.476608276367188,-568.5280598762827,0.15732678274647438,4,-323077.53876440926,3.4028234663852886E38,,,,,0,,1
+507498438,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,13,0.0,47,254084923472741,20,33.20163345336914,173.13950966132245,0.1026355900497613,4,82055.63483984755,3.4028234663852886E38,,,,,0,,1
+507498439,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,15,0.0,47,254084927632593,9,40.31005096435547,-66.13803361651631,0.04637428697894094,4,-55563.33882064942,3.4028234663852886E38,,,,,0,,1
+507498440,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,16,0.0,47,254084924132141,16,35.248390197753906,126.68903238261788,0.08133841488101701,4,54935.77101907039,3.4028234663852886E38,,,,,0,,1
+507498444,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,18,0.0,47,254084930923369,14,36.42460250854492,-199.24218951476246,0.0723527699281244,4,-121233.90923252278,3.4028234663852886E38,,,,,0,,1
+507498445,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,20,0.0,47,254084930376910,12,37.686859130859375,426.7357362307607,0.06273403668859079,4,236007.81041318475,3.4028234663852886E38,,,,,0,,1
+507498447,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,21,0.0,47,254084930194558,21,32.77145004272461,20.106489372775997,0.10902417012162269,4,7255.147978000255,3.4028234663852886E38,,,,,0,,1
+507498448,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,26,0.0,47,254084922886337,34,28.833354949951172,420.98087936442766,0.16919802853312893,4,225406.1452910407,3.4028234663852886E38,,,,,0,,1
+507498449,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,27,0.0,47,254084921957733,32,29.319805145263672,-589.4265701546569,0.15984387533999567,4,-337568.8392947589,3.4028234663852886E38,,,,,0,,1
+507498450,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,29,0.0,47,254084925044173,14,36.256263732910156,656.4838033632864,0.07267275060819878,4,367193.7578032266,3.4028234663852886E38,,,,,0,,1
+507498450,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,93,0.0,51,1373963,131,23.171775817871094,57.17680148788682,0.3239448625150436,4,10374.989586169255,3.4028234663852886E38,,,,,0,,3
+507498451,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,94,0.0,227,5667920167256,74,28.039928436279297,530.3345092827778,0.18844035442494256,4,284837.9598326362,3.4028234663852886E38,,,,,0,,3
+507498452,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,96,0.0,227,5667929158455,33,38.88603210449219,660.088704789704,0.0546658180748463,4,360670.0132770193,3.4028234663852886E38,,,,,0,,3
+507498453,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,97,0.0,227,5667936141387,33,38.34170913696289,45.65799199963618,0.05935070800800349,4,10924.152049245353,3.4028234663852886E38,,,,,0,,3
+507498454,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,103,0.0,227,5667928859266,69,28.714645385742188,-593.3361005774755,0.17259352654786286,4,-334800.78828085115,3.4028234663852886E38,,,,,0,,3
+507498456,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,104,0.0,227,5667928100506,33,38.20376205444336,620.8745209531671,0.058807997309624827,4,339799.89858763455,3.4028234663852886E38,,,,,0,,3
+507498457,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,105,0.0,227,5667936145617,33,39.29195022583008,-55.998021386281835,0.05350190551295722,4,-52337.08778855512,3.4028234663852886E38,,,,,0,,3
+507498457,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,106,0.0,227,5667927817972,33,38.33488464355469,-711.316000241749,0.057897889212789155,4,-404519.5553195465,3.4028234663852886E38,,,,,0,,3
+507498458,579430000000,,,-1157840705570308689,0.0,11.319221112560006,,,0,26,0.0,1074,2510974,8,35.851165771484375,256.5275564075956,0.08471817805071075,4,135711.44958932133,3.4028234663852886E38,,,,,0,,6
+507499469,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,10,0.0,47,254085923829327,17,34.840824127197266,-568.7619336929422,0.08515580810890427,4,-323646.3197946922,3.4028234663852886E38,,,,,0,,1
+507499469,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,13,0.0,47,254085923472171,13,36.968017578125,173.51727960942128,0.06674375532146828,4,82229.04607927817,3.4028234663852886E38,,,,,0,,1
+507499470,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,15,0.0,47,254085927632802,8,40.53174591064453,-66.11072078792034,0.045240271454719455,4,-55629.38067472871,3.4028234663852886E38,,,,,0,,1
+507499470,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,16,0.0,47,254085924131707,17,34.79591369628906,126.64273988604577,0.08564805663502156,4,55062.47376114844,3.4028234663852886E38,,,,,0,,1
+507499470,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,18,0.0,47,254085930924033,19,33.772029876708984,-199.44460522405143,0.09749213464322226,4,-121433.33279101868,3.4028234663852886E38,,,,,0,,1
+507499471,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,20,0.0,47,254085930375478,12,37.29839324951172,426.9532163858328,0.06551778955657167,4,236434.69972211213,3.4028234663852886E38,,,,,0,,1
+507499471,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,21,0.0,47,254085930194475,30,29.74709129333496,20.13240695080806,0.15366940898181713,4,7275.3264027040395,3.4028234663852886E38,,,,,0,,1
+507499471,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,26,0.0,47,254085922884888,25,31.370529174804688,420.8384146961623,0.1264700277032894,4,225827.4740400455,3.4028234663852886E38,,,,,0,,1
+507499472,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,27,0.0,47,254085921959631,15,35.470069885253906,-589.328003690393,0.07891671322538085,4,-338158.096967731,3.4028234663852886E38,,,,,0,,1
+507499472,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,29,0.0,47,254085925041994,11,38.50519943237305,656.196351924973,0.056301651174257644,4,367850.13513920293,3.4028234663852886E38,,,,,0,,1
+507499472,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,93,0.0,51,1373899,69,21.147274017333984,57.56424659333106,4.200247120228317,4,10432.389343167224,3.4028234663852886E38,,,,,0,,3
+507499473,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,94,0.0,227,5668920165520,93,26.077308654785156,530.4333824891505,0.2352936305563511,4,285368.54695761594,3.4028234663852886E38,,,,,0,,3
+507499473,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,96,0.0,227,5668929156283,36,34.22126388549805,660.0777984036167,0.09235908869789172,4,361330.06048533414,3.4028234663852886E38,,,,,0,,3
+507499473,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,97,0.0,227,5668936141213,33,39.22649383544922,45.67183799759857,0.05388384786600453,4,10969.891897671343,3.4028234663852886E38,,,,,0,,3
+507499474,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,103,0.0,227,5668928861226,59,30.05597686767578,-593.2448959238204,0.14812491888910295,4,-335393.9578145187,3.4028234663852886E38,,,,,0,,3
+507499474,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,104,0.0,227,5668928098342,33,35.53425598144531,620.584411083245,0.07944248670690107,4,340420.56981942564,3.4028234663852886E38,,,,,0,,3
+507499474,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,105,0.0,227,5668936145818,33,38.80577850341797,-55.906284194243625,0.056414798938856564,4,-52392.97966840428,3.4028234663852886E38,,,,,0,,3
+507499475,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,106,0.0,227,5668927820267,33,37.18621063232422,-711.4244506184045,0.06588560300064053,4,-405230.95564449264,3.4028234663852886E38,,,,,0,,3
+507499475,580430000000,,,-1157840705570308595,0.0,10.069076278138139,,,0,26,0.0,1074,2510118,8,35.58597183227539,256.6806036786113,0.08733048684296019,4,135968.0820807139,3.4028234663852886E38,,,,,0,,6
+507500463,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,10,0.0,47,254086923831221,17,34.40726089477539,-568.8229072076615,0.08947939571181807,4,-324215.0868193194,3.4028234663852886E38,,,,,0,,1
+507500463,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,13,0.0,47,254086923471611,8,40.5455207824707,173.6702246330674,0.044422263374979176,4,82402.57058321091,3.4028234663852886E38,,,,,0,,1
+507500463,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,15,0.0,47,254086927633028,8,40.68373489379883,-65.91619942762347,0.04447938227703016,4,-55695.37930059823,3.4028234663852886E38,,,,,0,,1
+507500464,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,16,0.0,47,254086924131265,21,32.952274322509766,127.25472447536936,0.1057250781960668,4,55189.571607012076,3.4028234663852886E38,,,,,0,,1
+507500464,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,18,0.0,47,254086930924669,16,35.14091873168945,-199.62531040853537,0.08356363483600054,4,-121632.56351675882,3.4028234663852886E38,,,,,0,,1
+507500464,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,20,0.0,47,254086930374022,9,39.76274871826172,427.2274097485588,0.04979420687109051,4,236861.77118612733,3.4028234663852886E38,,,,,0,,1
+507500465,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,21,0.0,47,254086930194440,23,31.961645126342773,20.132783987983345,0.11949840131098044,4,7295.52567679237,3.4028234663852886E38,,,,,0,,1
+507500465,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,26,0.0,47,254086922883497,37,28.051380157470703,420.9715066888839,0.18508795873559636,4,226248.49381877613,3.4028234663852886E38,,,,,0,,1
+507500465,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,27,0.0,47,254086921961642,14,36.07178497314453,-588.8848635906834,0.0736587870291972,4,-338747.0315840271,3.4028234663852886E38,,,,,0,,1
+507500466,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,29,0.0,47,254086925039764,13,36.82512664794922,656.1283233417535,0.06812241398637023,4,368506.32646856003,3.4028234663852886E38,,,,,0,,1
+507500466,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,93,0.0,51,1373699,73,20.258928298950195,57.77932393521826,4.200247120228317,4,10489.8601146528,3.4028234663852886E38,,,,,0,,3
+507500467,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,94,0.0,227,5669920163713,86,26.737957000732422,530.8386569796633,0.21832624207013718,4,285899.0662181461,3.4028234663852886E38,,,,,0,,3
+507500467,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,96,0.0,227,5669929154002,33,38.21144104003906,660.1402374639665,0.0589468067675627,4,361990.1954336476,3.4028234663852886E38,,,,,0,,3
+507500467,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,97,0.0,227,5669936141073,33,38.71531295776367,45.96253578989575,0.0569741847453582,4,11015.787949651194,3.4028234663852886E38,,,,,0,,3
+507500468,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,103,0.0,227,5669928863242,43,32.707576751708984,-593.1569631859916,0.10957581331928778,4,-335986.8825513648,3.4028234663852886E38,,,,,0,,3
+507500468,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,104,0.0,227,5669928096319,33,38.500518798828125,620.6694808947259,0.056880898998269036,4,341041.22988068743,3.4028234663852886E38,,,,,0,,3
+507500469,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,105,0.0,227,5669936145998,33,36.65571212768555,-55.33280852048375,0.07144405974454454,4,-52448.500661813196,3.4028234663852886E38,,,,,0,,3
+507500469,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,106,0.0,227,5669927822673,33,39.09965515136719,-711.3853921232294,0.053137478680168826,4,-405942.3119150534,3.4028234663852886E38,,,,,0,,3
+507500469,581430000000,,,-1157840705570308506,0.0,9.727835675025183,,,0,26,0.0,1074,2509263,9,35.029457092285156,256.61165486906566,0.09307897242007701,4,136224.70934678838,3.4028234663852886E38,,,,,0,,6
+507501422,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,10,0.0,47,254087923833137,12,37.61579895019531,-568.855081046619,0.06205699318305777,4,-324783.8053158974,3.4028234663852886E38,,,,,0,,1
+507501422,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,13,0.0,47,254087923470989,13,36.6688232421875,173.70331869835104,0.06906075077796997,4,82576.31098368697,3.4028234663852886E38,,,,,0,,1
+507501423,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,15,0.0,47,254087927633197,8,41.34331512451172,-65.79690656948657,0.0413272501429483,4,-55761.102001148654,3.4028234663852886E38,,,,,0,,1
+507501423,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,16,0.0,47,254087924130835,166,31.37628936767578,127.47857804981118,0.126610617836446,4,55317.1970173412,3.4028234663852886E38,,,,,1,,1
+507501423,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,18,0.0,47,254087930925372,14,36.1237907409668,-199.80022157541043,0.07483353341881888,4,-121832.22234719367,3.4028234663852886E38,,,,,0,,1
+507501424,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,20,0.0,47,254087930372592,13,36.67741012573242,427.2350783012764,0.0702345652254211,4,237288.9069992518,3.4028234663852886E38,,,,,0,,1
+507501424,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,21,0.0,47,254087930194352,24,31.53864288330078,20.27930659872844,0.1253704690766414,4,7315.840993170008,3.4028234663852886E38,,,,,0,,1
+507501424,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,26,0.0,47,254087922882102,39,27.478439331054688,421.06155253901716,0.19767280595569725,4,226669.561229535,3.4028234663852886E38,,,,,0,,1
+507501425,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,27,0.0,47,254087921963656,166,30.351238250732422,-588.9105617629016,0.1419868648428736,4,-339336.3668317967,3.4028234663852886E38,,,,,1,,1
+507501425,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,29,0.0,47,254087925037566,12,37.36681365966797,656.7063618043803,0.06405820585970864,4,369163.09915369574,3.4028234663852886E38,,,,,0,,1
+507501425,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,93,0.0,51,1373607,88,17.427722930908203,57.662974949263514,4.200247120228317,4,10547.365249368764,3.4028234663852886E38,,,,,0,,3
+507501426,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,94,0.0,227,5670920161903,131,23.16500473022461,530.960024607341,0.32757674100460665,4,286429.40742570127,3.4028234663852886E38,,,,,0,,3
+507501426,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,96,0.0,227,5670929151849,33,35.992923736572266,660.2493694897526,0.07562072500008937,4,362650.49340655503,3.4028234663852886E38,,,,,0,,3
+507501427,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,97,0.0,227,5670936140910,33,38.39664840698242,46.21894237062392,0.05899471441976731,4,11061.893090179738,3.4028234663852886E38,,,,,0,,3
+507501427,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,103,0.0,227,5670928865214,61,29.775503158569336,-593.2735933522126,0.1529344560875706,4,-336580.0404614564,3.4028234663852886E38,,,,,0,,3
+507501427,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,104,0.0,227,5670928094211,33,40.93086624145508,621.0552943025641,0.04335315928711864,4,341662.3860702627,3.4028234663852886E38,,,,,0,,3
+507501428,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,105,0.0,227,5670936146135,33,38.871116638183594,-55.226177294945074,0.05601383914089156,4,-52503.817591009734,3.4028234663852886E38,,,,,0,,3
+507501428,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,106,0.0,227,5670927825006,33,39.06918716430664,-711.160652404918,0.05331967753496661,4,-406653.4335791842,3.4028234663852886E38,,,,,0,,3
+507501428,582430000000,,,-1157840705570308417,0.0,10.066002525668265,,,0,26,0.0,1074,2508372,7,36.602325439453125,257.05474384509046,0.07773654160098065,4,136481.61248373165,3.4028234663852886E38,,,,,0,,6
+507502473,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,10,0.0,47,254088923835052,18,34.31142044067383,-568.3211112002762,0.09046524075183504,4,-325351.6830605872,3.4028234663852886E38,,,,,0,,1
+507502474,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,13,0.0,47,254088923470417,16,35.26750564575195,172.87339384079235,0.08104220704720377,1,82749.97221682534,0.001566716586239636,,,,,0,,1
+507502474,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,15,0.0,47,254088927633426,10,39.21715545654297,-65.96041715465475,0.05240836706631269,1,-55826.57516802833,9.942783508449793E-4,,,,,0,,1
+507502474,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,16,0.0,47,254088924130451,23,32.07123565673828,127.32384369719762,0.11693236511168104,4,55445.36540169335,3.4028234663852886E38,,,,,0,,1
+507502475,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,18,0.0,47,254088930925998,17,34.821632385253906,-199.3180229805257,0.08661916533946679,4,-122031.70579571955,3.4028234663852886E38,,,,,0,,1
+507502475,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,20,0.0,47,254088930371187,13,36.83211135864258,427.20972095362345,0.06902738808035566,1,237716.18172315427,0.0013084592064842582,,,,,0,,1
+507502475,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,21,0.0,47,254088930194300,30,29.715282440185547,20.416156182281654,0.15422644413061182,1,7336.50573078326,0.0027991444803774357,,,,,0,,1
+507502476,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,26,0.0,47,254088922880753,18,34.037818908691406,421.48829897713927,0.09316645849133698,1,227090.78305591116,0.0018049899954348803,,,,,0,,1
+507502476,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,27,0.0,47,254088921965542,23,31.935483932495117,-588.8990418925969,0.11837317267008124,4,-339925.6794136008,3.4028234663852886E38,,,,,0,,1
+507502477,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,29,0.0,47,254088925035374,11,38.49625778198242,657.1608854445685,0.056357526099929195,4,369819.8570008604,3.4028234663852886E38,,,,,0,,1
+507502477,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,93,0.0,51,1373395,78,19.260099411010742,57.796676165895434,4.200247120228317,4,10605.950785377307,3.4028234663852886E38,,,,,0,,3
+507502478,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,94,0.0,227,5671920160102,71,20.674427032470703,530.7215837415074,4.2036263425387155,4,286960.04952977865,3.4028234663852886E38,,,,,0,,3
+507502478,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,96,0.0,227,5671929149608,33,35.231666564941406,659.9098400578723,0.08239626077462087,4,363310.900495835,3.4028234663852886E38,,,,,0,,3
+507502479,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,97,0.0,227,5671936140768,33,36.20472717285156,46.798356912432894,0.07509580857252957,4,11108.215601711137,3.4028234663852886E38,,,,,0,,3
+507502480,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,103,0.0,227,5671928867192,65,29.185989379882812,-592.6477712855408,0.16356285713885577,4,-337172.8788853801,3.4028234663852886E38,,,,,0,,3
+507502481,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,104,0.0,227,5671928092167,33,37.93309020996094,620.7928593873385,0.06062180224041755,1,342283.55908617144,0.001131971599534154,,,,,0,,3
+507502481,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,105,0.0,227,5671936146327,33,38.188560485839844,-55.02286692117238,0.06035568282525336,1,-52558.93782970351,0.0010987775167450309,,,,,0,,3
+507502482,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,106,0.0,227,5671927827386,33,39.5118522644043,-710.8749050894307,0.05074074808215595,1,-407364.3822494963,9.431765647605062E-4,,,,,0,,3
+507502483,583430000000,,,-1157840705570308333,0.0,10.835789435941507,,,0,26,0.0,1074,2507525,6,38.3815803527832,256.88356470720464,0.0634211484979306,4,136738.5602298968,3.4028234663852886E38,,,,,0,,6
+507503497,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,10,0.0,47,254089923836867,23,31.989730834960938,-567.7238161497139,0.11797496709406669,4,-325919.4358111868,3.4028234663852886E38,,,,,0,,1
+507503498,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,13,0.0,47,254089923469895,15,35.92962646484375,173.2110998612486,0.075139742989141,4,82923.26594027161,3.4028234663852886E38,,,,,0,,1
+507503499,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,15,0.0,47,254089927633671,10,38.81812286376953,-66.00445594878929,0.0548076688262068,1,-55892.485252518796,0.0010410211980342865,,,,,0,,1
+507503499,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,16,0.0,47,254089924129937,25,31.320932388305664,126.76772877472905,0.12741519180337962,4,55572.43814054632,3.4028234663852886E38,,,,,0,,1
+507503500,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,18,0.0,47,254089930926675,18,34.27056121826172,-198.9786128372433,0.09216414636600295,4,-122230.80542683319,3.4028234663852886E38,,,,,0,,1
+507503501,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,20,0.0,47,254089930369753,11,38.17371368408203,426.7497100379351,0.059414928808648765,1,238143.03583523846,0.001121192122809589,,,,,0,,1
+507503502,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,21,0.0,47,254089930194229,17,34.41225051879883,20.356807974707777,0.09057296328165543,4,7356.960073113988,3.4028234663852886E38,,,,,0,,1
+507503502,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,26,0.0,47,254089922879314,14,36.435726165771484,422.3430529042748,0.07081576430335207,1,227512.70054066877,0.0013695548987016082,,,,,0,,1
+507503503,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,27,0.0,47,254089921967488,36,28.302711486816406,-588.5053213548454,0.17965906275567878,4,-340514.6245234853,3.4028234663852886E38,,,,,0,,1
+507503504,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,29,0.0,47,254089925033206,10,38.92249298095703,656.6824359199013,0.05370169477622405,1,370476.39089989825,0.0010285871103405952,,,,,0,,1
+507503505,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,93,0.0,51,1372940,72,20.509916305541992,57.71195995990092,4.200246853959126,4,10663.631126921931,3.4028234663852886E38,,,,,0,,3
+507503505,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,94,0.0,227,5672920158249,64,22.158451080322266,530.9339174456445,4.203626076269524,4,287490.3712310528,3.4028234663852886E38,,,,,0,,3
+507503506,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,96,0.0,227,5672929147378,33,38.53491973876953,659.7757596739116,0.056850885467830126,1,363970.9752657637,0.0010591658065095544,,,,,0,,3
+507503507,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,97,0.0,227,5672936140586,33,37.503684997558594,46.17017037533978,0.06506803592924881,1,11154.373982770272,0.0011922656558454037,,,,,0,,3
+507503508,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,103,0.0,227,5672928869077,86,26.769296646118164,-593.044082089988,0.2155213124805131,4,-337766.1931137813,3.4028234663852886E38,,,,,0,,3
+507503509,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,104,0.0,227,5672928090080,33,39.74658203125,620.8663411636016,0.04947268682225228,1,342904.3561741205,9.186729439534247E-4,,,,,0,,3
+507503509,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,105,0.0,227,5672936146506,33,35.53791809082031,-55.010729306343194,0.0808572914145606,4,-52614.12307383832,3.4028234663852886E38,,,,,0,,3
+507503510,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,106,0.0,227,5672927829770,33,35.9726448059082,-710.0481328591004,0.07555582188464066,4,-408074.84838011203,3.4028234663852886E38,,,,,0,,3
+507503511,584430000000,,,-1157840705570308244,0.0,10.184677205762622,,,0,26,0.0,1074,2506669,6,37.96036148071289,256.6136146103157,0.06654996127546822,4,136995.20377756318,3.4028234663852886E38,,,,,0,,6
+507504472,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,10,0.0,47,254090923838781,27,30.702171325683594,-568.0503260832024,0.13671584985174112,4,-326487.2533216354,3.4028234663852886E38,,,,,0,,1
+507504473,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,13,0.0,47,254090923469275,13,36.847747802734375,173.1236783602676,0.06766509664982392,1,83096.24944727184,0.001306105637922883,,,,,0,,1
+507504474,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,15,0.0,47,254090927633875,11,38.27288055419922,-66.19418446363764,0.05826950115329421,1,-55958.56082049083,0.0011084640864282846,,,,,0,,1
+507504475,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,16,0.0,47,254090924129522,28,30.260969161987305,126.34348739716137,0.14385609120962095,4,55698.79635183457,3.4028234663852886E38,,,,,0,,1
+507504475,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,18,0.0,47,254090930927359,23,32.15861511230469,-198.31410718241807,0.11699198444785924,4,-122429.46669997335,3.4028234663852886E38,,,,,0,,1
+507504477,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,20,0.0,47,254090930368327,14,36.28376007080078,426.4153611394463,0.07340359297180021,1,238569.64521895844,0.0013937270268797874,,,,,0,,1
+507504477,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,21,0.0,47,254090930194153,15,35.73344421386719,20.266221065577213,0.07805143820367821,1,7377.402398982925,0.001484887208789587,,,,,0,,1
+507504477,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,26,0.0,47,254090922877902,15,35.438018798828125,422.65565719550204,0.07937232477491857,1,227935.13576145712,0.0015362605918198824,,,,,0,,1
+507504478,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,27,0.0,47,254090921969423,31,29.43031883239746,-589.226437969955,0.15782954890565926,4,-341104.6457722521,3.4028234663852886E38,,,,,0,,1
+507504478,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,29,0.0,47,254090925030999,11,38.105831146240234,656.5630109922454,0.05890613414854817,1,371133.01157866966,0.0011299889301881194,,,,,0,,1
+507504478,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,93,0.0,51,1372719,71,20.611557006835938,57.529265212017464,4.200246853959126,4,10720.370106950213,3.4028234663852886E38,,,,,0,,3
+507504479,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,94,0.0,227,5673920156559,92,26.237869262695312,530.9139792085787,0.23104895016418092,4,288020.84579651663,3.4028234663852886E38,,,,,0,,3
+507504479,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,96,0.0,227,5673929145217,33,39.60102081298828,659.6999602906048,0.05047393387081997,1,364630.735079583,9.36825992539525E-4,,,,,0,,3
+507504479,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,97,0.0,227,5673936140470,34,34.7393798828125,46.24843221613028,0.08836259615501496,4,11200.572117768419,3.4028234663852886E38,,,,,0,,3
+507504480,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,103,0.0,227,5673928871114,56,30.45565414428711,-592.2794080954422,0.1415369031927448,4,-338358.6388472986,3.4028234663852886E38,,,,,0,,3
+507504480,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,104,0.0,227,5673928088017,33,38.981842041015625,620.5206087246343,0.05389164872122673,1,343525.05235853035,0.0010032239370048046,,,,,0,,3
+507504481,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,105,0.0,227,5673936146728,33,36.24756622314453,-55.02197651699572,0.07474170383137119,1,-52669.13194459497,0.001373913837596774,,,,,0,,3
+507504481,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,106,0.0,227,5673927832109,37,33.97911834716797,-710.068377838275,0.09468537445290603,4,-408784.99860931997,3.4028234663852886E38,,,,,0,,3
+507504481,585430000000,,,-1157840705570308154,0.0,9.824381723172767,,,0,26,0.0,1074,2505817,6,38.07699203491211,256.535207919085,0.06566817756388735,1,137251.7524127941,9.257004712708294E-4,,,,,0,,6
+507505464,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,10,0.0,47,254091923840713,15,35.9290885925293,-566.8059074306416,0.07521104488609998,1,-327054.33028574823,0.0014518151292577386,,,,,0,,1
+507505464,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,13,0.0,47,254091923468718,13,37.14024353027344,172.84834323524808,0.06544499405586615,1,83269.05892629745,0.001262855133973062,,,,,0,,1
+507505464,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,15,0.0,47,254091927634123,12,37.79387283325195,-66.07652756341383,0.06149537737207661,1,-56024.5567882287,0.0011713106650859118,,,,,0,,1
+507505465,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,16,0.0,47,254091924129121,26,31.02858543395996,127.26982300360896,0.13175110267731643,4,55825.5318279224,3.4028234663852886E38,,,,,0,,1
+507505465,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,18,0.0,47,254091930928031,28,30.37201499938965,-198.61679347879715,0.14326096292460522,4,-122628.22581203516,3.4028234663852886E38,,,,,0,,1
+507505465,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,20,0.0,47,254091930366900,16,35.32095718383789,427.26398022440776,0.08178935007787752,4,238996.19157044994,3.4028234663852886E38,,,,,0,,1
+507505466,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,21,0.0,47,254091930194099,15,35.8661003112793,20.521628604298556,0.07689622099507681,4,7397.8328047336245,3.4028234663852886E38,,,,,0,,1
+507505466,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,26,0.0,47,254091922876386,166,31.556894302368164,421.9491619542407,0.12379485441908933,4,228357.12202364634,3.4028234663852886E38,,,,,1,,1
+507505467,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,27,0.0,47,254091921971429,24,31.737247467041016,-588.8094731968549,0.12109872907787644,4,-341694.18349939864,3.4028234663852886E38,,,,,0,,1
+507505467,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,29,0.0,47,254091925028804,18,34.27710723876953,657.0512080994781,0.09103529812828065,1,371789.97584579274,0.0017559427069500089,,,,,0,,1
+507505467,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,93,0.0,51,1372588,63,22.18886375427246,57.57353406273353,4.200246853959126,4,10778.61152205371,3.4028234663852886E38,,,,,0,,3
+507505467,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,94,0.0,227,5674920154688,73,28.226076126098633,529.6295818345166,0.1845195072952125,4,288552.17690072407,3.4028234663852886E38,,,,,0,,3
+507505468,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,96,0.0,227,5674929143024,33,38.45025634765625,659.6704448832561,0.05739085026517057,1,365290.2613389662,0.0010695403907448053,,,,,0,,3
+507505468,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,97,0.0,227,5674936140281,33,35.98347473144531,46.500207843078414,0.07695827835854047,4,11246.912865561952,3.4028234663852886E38,,,,,0,,3
+507505468,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,103,0.0,227,5674928873069,37,34.05427932739258,-592.5384347650156,0.0940689113489146,4,-338951.09981287934,3.4028234663852886E38,,,,,0,,3
+507505469,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,104,0.0,227,5674928085940,33,39.7076416015625,621.0374350953462,0.04968769503400061,1,344145.98708588525,9.228007984347641E-4,,,,,0,,3
+507505469,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,105,0.0,227,5674936146875,33,35.41377258300781,-54.664702906188296,0.08197953284796672,4,-52723.89016456009,3.4028234663852886E38,,,,,0,,3
+507505469,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,106,0.0,227,5674927834495,49,31.64087677001953,-710.8323701836903,0.12350049382779271,4,-409494.8378327557,3.4028234663852886E38,,,,,0,,3
+507505470,586430000000,,,-1157840705570308060,0.0,9.984044276111863,,,0,26,0.0,1074,2504958,7,36.50904083251953,256.7846233359189,0.0785704384626375,1,137508.41932680333,0.001108837779611349,,,,,0,,6
+507506452,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,10,0.0,47,254092923842543,21,32.836639404296875,-566.4047228349116,0.10708010547021563,4,-327621.8337805835,3.4028234663852886E38,,,,,0,,1
+507506452,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,13,0.0,47,254092923468137,19,33.82451629638672,172.06422519925604,0.09557550403946063,4,83441.95724781322,3.4028234663852886E38,,,,,0,,1
+507506452,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,15,0.0,47,254092927634316,12,37.7767448425293,-65.51609694988807,0.0616140710246815,1,-56090.34487362067,0.0011736226733773947,,,,,0,,1
+507506453,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,16,0.0,47,254092924128667,26,30.92414665222168,128.08390803949868,0.13333577048738238,4,55954.02114030133,3.4028234663852886E38,,,,,0,,1
+507506453,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,18,0.0,47,254092930928617,37,28.011627197265625,-198.98018063024335,0.18738168476102723,4,-122826.81176995099,3.4028234663852886E38,,,,,0,,1
+507506453,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,20,0.0,47,254092930365476,11,38.3515625,426.5437156707112,0.05824776693053113,4,239422.7112366296,3.4028234663852886E38,,,,,0,,1
+507506454,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,21,0.0,47,254092930194002,16,35.29718017578125,20.4846683103531,0.08197736108987286,1,7418.226784839746,0.0015613732393831015,,,,,0,,1
+507506454,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,26,0.0,47,254092922874956,30,29.904293060302734,420.7317366072459,0.14962950623979987,4,228778.12446722633,3.4028234663852886E38,,,,,0,,1
+507506454,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,27,0.0,47,254092921973405,14,36.399749755859375,-588.7972035125067,0.07094460530843,1,-342283.0266011494,0.001375239109620452,,,,,0,,1
+507506455,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,29,0.0,47,254092925026598,19,33.55043411254883,656.7698915033388,0.09889977504544573,4,372447.27943449,3.4028234663852886E38,,,,,0,,1
+507506455,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,93,0.0,51,1372491,107,24.900222778320312,57.18032902213693,0.26553467137764597,4,10835.758138369416,3.4028234663852886E38,,,,,0,,3
+507506455,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,94,0.0,227,5675920153049,80,27.414457321166992,530.0845826290961,0.20223704266141773,4,289082.566547158,3.4028234663852886E38,,,,,0,,3
+507506456,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,96,0.0,227,5675929140831,33,38.225685119628906,659.5202775798166,0.058850554615261036,4,365949.6505647878,3.4028234663852886E38,,,,,0,,3
+507506456,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,97,0.0,227,5675936140137,35,34.58966064453125,46.271506039196225,0.08984835328131952,4,11293.123175404091,3.4028234663852886E38,,,,,0,,3
+507506457,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,103,0.0,227,5675928875084,33,36.679443359375,-592.6012828148437,0.0699491995402527,1,-339543.77557438076,0.0013081878423690796,,,,,0,,3
+507506457,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,104,0.0,227,5675928083881,33,39.14558029174805,621.391279158966,0.05291168240570521,1,344767.189462886,9.844894520938396E-4,,,,,0,,3
+507506458,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,105,0.0,227,5675936147074,33,34.94597244262695,-54.31495299765828,0.08635510951053738,4,-52778.48190616081,3.4028234663852886E38,,,,,0,,3
+507506458,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,106,0.0,227,5675927836868,38,33.753902435302734,-709.4950427546482,0.09713639900326543,4,-410204.30688687245,3.4028234663852886E38,,,,,0,,3
+507506458,587430000000,,,-1157840705570307966,0.0,9.889752843294707,,,0,26,0.0,1074,2504100,9,34.84049987792969,256.91901046198836,0.09511518285359677,4,137765.13387676797,3.4028234663852886E38,,,,,0,,6
+507507469,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,10,0.0,47,254093923844465,23,32.00578689575195,-568.0999501398996,0.11775973837814407,4,-328188.98086847493,3.4028234663852886E38,,,,,0,,1
+507507470,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,13,0.0,47,254093923467546,14,36.47356414794922,173.34746376979638,0.07061599584236583,4,83614.89611653602,3.4028234663852886E38,,,,,0,,1
+507507470,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,15,0.0,47,254093927634546,11,38.604087829589844,-65.65566034904191,0.05614091611257524,4,-56155.9426157112,3.4028234663852886E38,,,,,0,,1
+507507471,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,16,0.0,47,254093924128280,18,34.03384780883789,127.52392475821478,0.09343322693765566,4,56082.750228497374,3.4028234663852886E38,,,,,0,,1
+507507471,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,18,0.0,47,254093930929354,39,27.633365631103516,-198.7438528767142,0.19563489805608114,4,-123025.22668034345,3.4028234663852886E38,,,,,0,,1
+507507471,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,20,0.0,47,254093930364063,13,37.04845428466797,426.50608863871,0.06737395209110691,4,239849.315170619,3.4028234663852886E38,,,,,0,,1
+507507472,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,21,0.0,47,254093930193949,17,34.61301803588867,20.289024359144506,0.08854530674591532,1,7438.641003061869,0.0016893313731998205,,,,,0,,1
+507507472,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,26,0.0,47,254093922873563,37,27.943859100341797,422.20679124309663,0.18738507969321994,4,229199.56216318035,3.4028234663852886E38,,,,,0,,1
+507507472,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,27,0.0,47,254093921975365,13,37.12986755371094,-589.1053089194729,0.06525387934360641,1,-342871.9949618473,0.001264364691451192,,,,,0,,1
+507507473,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,29,0.0,47,254093925024423,14,36.27989196777344,658.0335326613786,0.07247423028404809,4,373104.79698233644,3.4028234663852886E38,,,,,0,,1
+507507473,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,93,0.0,51,1372287,94,26.012693405151367,56.82012005976148,0.23364304447954354,4,10892.873587875669,3.4028234663852886E38,,,,,0,,3
+507507474,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,94,0.0,227,5676920151186,111,24.542579650878906,530.6493970985921,0.2800637330255742,4,289613.8284163303,3.4028234663852886E38,,,,,0,,3
+507507474,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,96,0.0,227,5676929138638,33,39.274391174316406,659.2473452679819,0.05234390911966866,1,366609.0671119464,9.72725625615567E-4,,,,,0,,3
+507507474,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,97,0.0,227,5676936140003,34,34.648101806640625,46.46185655887612,0.08926533192360864,4,11339.751933632853,3.4028234663852886E38,,,,,0,,3
+507507475,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,103,0.0,227,5676928877042,33,37.67491912841797,-592.8230232769811,0.06254798525142727,1,-340136.5620591233,0.0011665313504636288,,,,,0,,3
+507507475,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,104,0.0,227,5676928081795,33,35.718624114990234,621.6441028214522,0.07780164441832305,4,345388.63724441436,3.4028234663852886E38,,,,,0,,3
+507507475,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,105,0.0,227,5676936147213,33,34.89830780029297,-54.56847109019614,0.08681434897781043,4,-52832.9147525771,3.4028234663852886E38,,,,,0,,3
+507507476,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,106,0.0,227,5676927839238,33,37.501766204833984,-708.7559306024946,0.06358855693122709,4,-410913.95252761594,3.4028234663852886E38,,,,,0,,3
+507507476,588430000000,,,-1157840705570307877,0.0,10.081909691749104,,,0,26,0.0,1074,2503239,11,33.56247329711914,257.1051858807442,0.11012075818260209,4,138022.07101975344,3.4028234663852886E38,,,,,0,,6
+507508458,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,10,0.0,47,254094923846368,30,29.750938415527344,-568.1714551336845,0.15246028058283212,4,-328758.05287001067,3.4028234663852886E38,,,,,0,,1
+507508458,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,13,0.0,47,254094923466976,18,34.30073165893555,173.40112659759154,0.09050958289314609,4,83787.98889599228,3.4028234663852886E38,,,,,0,,1
+507508459,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,15,0.0,47,254094927634748,11,38.613189697265625,-65.0670776264283,0.05608358918771833,1,-56221.24896610921,0.0010658748215064406,,,,,0,,1
+507508459,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,16,0.0,47,254094924127859,12,37.33397674560547,128.01254789615405,0.06413379302646968,4,56210.54624607721,3.4028234663852886E38,,,,,0,,1
+507508459,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,18,0.0,47,254094930929999,43,26.69679069519043,-198.4460233303896,0.21768524891687102,4,-123223.49391290567,3.4028234663852886E38,,,,,0,,1
+507508459,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,20,0.0,47,254094930362645,10,38.86518859863281,426.91494178715766,0.055009787944899996,1,240276.0039122992,0.0010353954276069999,,,,,0,,1
+507508460,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,21,0.0,47,254094930193905,18,34.01465606689453,20.672006792937793,0.09472931719042971,4,7459.092992936503,3.4028234663852886E38,,,,,0,,1
+507508460,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,26,0.0,47,254094922872198,28,30.31633186340332,422.45082163179995,0.14272061952575799,4,229621.5951188756,3.4028234663852886E38,,,,,0,,1
+507508460,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,27,0.0,47,254094921977317,13,37.15964889526367,-589.8367866013655,0.06503207294656044,1,-343461.3502988583,0.0012600370682775974,,,,,0,,1
+507508460,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,29,0.0,47,254094925022201,18,34.31372833251953,657.875799052591,0.09065492426719002,4,373762.2360798997,3.4028234663852886E38,,,,,0,,1
+507508461,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,93,0.0,51,1372181,94,25.99788475036621,56.985321986834606,0.2340412500555581,4,10950.382160975465,3.4028234663852886E38,,,,,0,,3
+507508461,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,94,0.0,227,5677920149429,111,24.600317001342773,531.6077957760135,0.2782319341220689,4,290145.5077240891,3.4028234663852886E38,,,,,0,,3
+507508461,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,96,0.0,227,5677929136413,33,38.26580047607422,659.4376617052053,0.05858615346847379,4,367268.4363954277,3.4028234663852886E38,,,,,0,,3
+507508461,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,97,0.0,227,5677936139827,33,34.95614242553711,46.907459116069475,0.0862561572222148,4,11386.54672939071,3.4028234663852886E38,,,,,0,,3
+507508462,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,103,0.0,227,5677928879019,33,37.53191375732422,-592.9805523910295,0.06356014101593768,4,-340729.66112111916,3.4028234663852886E38,,,,,0,,3
+507508462,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,104,0.0,227,5677928079760,33,35.18060302734375,622.3991655632585,0.08267993731460516,4,346010.62653675803,3.4028234663852886E38,,,,,0,,3
+507508463,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,105,0.0,227,5677936147417,33,35.22928237915039,-54.010349563099794,0.0836771736834746,1,-52887.11553481666,0.0015448048943653703,,,,,0,,3
+507508463,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,106,0.0,227,5677927841544,33,35.14216613769531,-709.7043772026113,0.08299733851188607,4,-411622.8374990829,3.4028234663852886E38,,,,,0,,3
+507508463,589430000000,,,-1157840705570307785,0.0,11.127779219725378,,,0,26,0.0,1074,2502404,13,32.139068603515625,257.3180649041857,0.12964934841810571,4,138279.19386904303,3.4028234663852886E38,,,,,0,,6
+507509498,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,10,0.0,47,254095923848198,28,30.42277717590332,-567.8185653788473,0.14116412632452657,4,-329325.9349325065,3.4028234663852886E38,,,,,0,,1
+507509498,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,13,0.0,47,254095923466408,12,37.22743225097656,173.5739246521622,0.06479718607547788,1,83961.44637090189,0.001250241999514401,,,,,0,,1
+507509499,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,15,0.0,47,254095927634969,13,36.99432373046875,-64.6042293462344,0.06729258189034115,1,-56286.03056182977,0.0012842498254030943,,,,,0,,1
+507509499,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,16,0.0,47,254095924127464,11,38.46983337402344,127.6971318022637,0.056363180159794246,1,56338.2626226299,0.0010836124420166016,,,,,0,,1
+507509499,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,18,0.0,47,254095930930632,44,26.615015029907227,-198.75261206804055,0.21972590271752535,4,-123421.97806920501,3.4028234663852886E38,,,,,0,,1
+507509500,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,20,0.0,47,254095930361197,12,37.493133544921875,427.26800195427745,0.06410402496294176,1,240702.92561304188,0.0012125762877985835,,,,,0,,1
+507509500,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,21,0.0,47,254095930193813,19,33.78225326538086,20.37629035891763,0.09724842344471235,1,7479.508612399835,0.0018588872626423836,,,,,0,,1
+507509500,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,26,0.0,47,254095922870823,17,34.55055236816406,422.450174065126,0.08785388886449286,4,230044.0509725563,3.4028234663852886E38,,,,,0,,1
+507509501,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,27,0.0,47,254095921979247,15,35.59719467163086,-589.8699147491056,0.0777787951933202,1,-344051.13536242355,0.0015083631733432412,,,,,0,,1
+507509501,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,29,0.0,47,254095925020050,15,35.641075134277344,658.4332517114781,0.07793561110533898,4,374419.7271827549,3.4028234663852886E38,,,,,0,,1
+507509501,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,93,0.0,51,1372000,62,22.38701057434082,57.02670660966743,4.200246853959126,4,11008.061657998562,3.4028234663852886E38,,,,,0,,3
+507509502,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,94,0.0,227,5678920147790,90,26.357046127319336,531.1494208182382,0.22794827871182888,4,290676.6107886391,3.4028234663852886E38,,,,,0,,3
+507509502,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,96,0.0,227,5678929134227,33,37.42564392089844,659.652449346212,0.06436882135306027,1,367927.9607554764,0.00120344921015203,,,,,0,,3
+507509502,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,97,0.0,227,5678936139634,43,32.80874252319336,46.59825028957334,0.10963430101140176,4,11433.303238935296,3.4028234663852886E38,,,,,0,,3
+507509503,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,103,0.0,227,5678928880981,33,36.67839431762695,-593.4279187153479,0.06995851896195815,1,-341323.14740969485,0.0013083458179607987,,,,,0,,3
+507509503,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,104,0.0,227,5678928077655,33,36.17670440673828,622.4389057075641,0.07387874202327044,4,346632.9765866767,3.4028234663852886E38,,,,,0,,3
+507509504,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,105,0.0,227,5678936147581,42,32.860984802246094,-53.680865935279655,0.10899572092268434,4,-52941.05732367299,3.4028234663852886E38,,,,,0,,3
+507509504,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,106,0.0,227,5678927843893,44,32.62495422363281,-710.6472342798584,0.11042449644198982,4,-412332.198528283,3.4028234663852886E38,,,,,0,,3
+507509504,590430000000,,,-1157840705570307684,0.0,9.761242950575523,,,0,26,0.0,1074,2501521,15,30.73856544494629,257.7806660865698,0.15225462091598208,4,138536.67473608858,3.4028234663852886E38,,,,,0,,6
+507510485,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,10,0.0,47,254096923850158,28,30.354116439819336,-567.1188866288906,0.14227926169888228,4,-329893.8503238092,3.4028234663852886E38,,,,,0,,1
+507510486,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,13,0.0,47,254096923465802,16,35.29652786254883,174.33179919663166,0.0807731253872832,4,84135.41070499348,3.4028234663852886E38,,,,,0,,1
+507510487,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,15,0.0,47,254096927635194,15,35.83145523071289,-64.55981564507812,0.07673592694174297,1,-56350.426951103924,0.0014682260807603598,,,,,0,,1
+507510488,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,16,0.0,47,254096924127016,12,37.8409538269043,127.36329414062277,0.060539520899761834,4,56465.84548049958,3.4028234663852886E38,,,,,0,,1
+507510489,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,18,0.0,47,254096930931314,38,27.77312469482422,-198.47391982105353,0.19254397871287088,4,-123620.059839095,3.4028234663852886E38,,,,,0,,1
+507510489,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,20,0.0,47,254096930359814,16,34.971309661865234,427.05549783785773,0.08507105129685805,4,241130.17700630846,3.4028234663852886E38,,,,,0,,1
+507510490,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,21,0.0,47,254096930193764,18,34.027427673339844,20.89800969229408,0.09459277934153254,1,7500.144881518948,0.0018071504309773445,,,,,0,,1
+507510491,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,26,0.0,47,254096922869369,9,39.67517852783203,422.6343897426318,0.04892995532159303,1,230466.41610962607,9.432065417058766E-4,,,,,0,,1
+507510492,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,27,0.0,47,254096921981262,18,34.33624267578125,-589.3418411677412,0.0898755959479835,1,-344640.8366631095,0.0016442857449874282,,,,,0,,1
+507510492,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,29,0.0,47,254096925017828,12,37.673187255859375,658.5579253374385,0.06186597000083263,4,375078.301333221,3.4028234663852886E38,,,,,0,,1
+507510493,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,93,0.0,99,15921371738,120,23.89972686767578,57.58479405430725,0.29792150904662207,4,11064.719218124312,3.4028234663852886E38,,,,,0,,3
+507510494,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,94,0.0,227,5679920145955,93,26.129512786865234,530.5977280945035,0.23390190805923705,4,291207.62657893414,3.4028234663852886E38,,,,,0,,3
+507510495,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,96,0.0,227,5679929132021,33,37.5662727355957,659.5156423657295,0.06336103406747429,1,368587.805002911,0.0011841215891763568,,,,,0,,3
+507510496,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,97,0.0,227,5679936139536,33,35.12024688720703,46.86975113823405,0.08469611099145818,4,11480.26678482155,3.4028234663852886E38,,,,,0,,3
+507510497,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,103,0.0,227,5679928882961,36,34.202552795410156,-593.4525944138704,0.09250556171599988,1,-341916.7365662925,0.0017398616764694452,,,,,0,,3
+507510497,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,104,0.0,227,5679928075560,33,37.65790939331055,622.1663142202947,0.0625233095861884,4,347255.6171787112,3.4028234663852886E38,,,,,0,,3
+507510498,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,105,0.0,227,5679936147787,42,32.93385314941406,-53.39500359150165,0.10810944391849547,4,-52994.76859115262,3.4028234663852886E38,,,,,0,,3
+507510498,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,106,0.0,227,5679927846235,55,30.603769302368164,-710.0438384695785,0.13898647702480205,4,-413043.3476611321,3.4028234663852886E38,,,,,0,,3
+507510499,591430000000,,,-1157840705570307590,0.0,8.92211647908728,,,0,26,0.0,1074,2500675,14,31.259519577026367,257.40722461044936,0.14341734614918766,4,138793.94785319528,3.4028234663852886E38,,,,,0,,6
+507511466,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,10,0.0,47,254097923852058,18,34.344757080078125,-566.6878458012466,0.09012439954478246,4,-330459.465306798,3.4028234663852886E38,,,,,0,,1
+507511467,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,13,0.0,47,254097923465257,19,33.8512077331543,174.27861352322782,0.09528362308001065,4,84309.46188673134,3.4028234663852886E38,,,,,0,,1
+507511469,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,15,0.0,47,254097927635420,17,34.867637634277344,-64.43854174415583,0.08558009142386963,4,-56414.86805887706,3.4028234663852886E38,,,,,0,,1
+507511469,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,16,0.0,47,254097924126628,14,36.014991760253906,128.12813002683703,0.074529087881891,4,56594.075038092284,3.4028234663852886E38,,,,,0,,1
+507511470,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,18,0.0,47,254097930931960,33,28.9940128326416,-197.9515039274719,0.16755396605151518,4,-123818.23982939431,3.4028234663852886E38,,,,,0,,1
+507511471,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,20,0.0,47,254097930358403,20,33.274391174316406,427.24288318382014,0.10302322806723485,1,241557.29082384903,0.0018581035546958447,,,,,0,,1
+507511472,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,21,0.0,47,254097930193674,17,34.57120132446289,20.688760450472287,0.08896370717592911,1,7520.696393695219,0.0016974837053567171,,,,,0,,1
+507511473,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,26,0.0,47,254097922867970,16,35.29917526245117,423.33805614000175,0.08064118068194087,4,230888.8611701145,3.4028234663852886E38,,,,,0,,1
+507511474,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,27,0.0,47,254097921983230,12,37.28571319580078,-589.4875777518328,0.06410123745734236,4,-345230.47210835613,3.4028234663852886E38,,,,,0,,1
+507511475,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,29,0.0,47,254097925015642,17,34.80547332763672,658.6989585425299,0.0857137086325716,1,375736.81232318,0.0016523118829354644,,,,,0,,1
+507511476,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,93,0.0,99,16921371495,108,24.77753448486328,57.837724224470094,0.2693082383607809,4,11122.501961966389,3.4028234663852886E38,,,,,0,,3
+507511477,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,94,0.0,227,5680920144307,64,29.38237190246582,531.5654653650122,0.1619704508804094,4,291738.78153969516,3.4028234663852886E38,,,,,0,,3
+507511478,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,96,0.0,227,5680929129820,33,42.552101135253906,660.0351953329632,0.036405725947138784,1,369247.71490666684,7.030459819361567E-4,,,,,0,,3
+507511479,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,97,0.0,227,5680936139381,38,33.84748077392578,46.9859765752839,0.09760402595007339,4,11527.24850150751,3.4028234663852886E38,,,,,0,,3
+507511480,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,103,0.0,227,5680928884971,33,36.12982177734375,-593.3999029360862,0.0744159234754676,4,-342510.20033217664,3.4028234663852886E38,,,,,0,,3
+507511481,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,104,0.0,227,5680928073453,34,34.70139694213867,622.5175680172188,0.0872860448507023,4,347878.0937717996,3.4028234663852886E38,,,,,0,,3
+507511481,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,105,0.0,227,5680936147984,46,32.22542953491211,-53.65552988916201,0.1170496150860128,4,-53048.42605015329,3.4028234663852886E38,,,,,0,,3
+507511482,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,106,0.0,227,5680927848586,60,29.937517166137695,-708.8108715224093,0.1499548705500916,4,-413752.2436527077,3.4028234663852886E38,,,,,0,,3
+507511483,592430000000,,,-1157840705570307500,0.0,8.54725148931809,,,0,26,0.0,1074,2499804,17,29.543302536010742,257.7694529583738,0.17464969052892698,4,139052.13792012018,3.4028234663852886E38,,,,,0,,6
+507512464,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,10,0.0,47,254098923853943,17,34.68397521972656,-567.257772639221,0.08669938725434384,4,-331026.48379048385,3.4028234663852886E38,,,,,0,,1
+507512464,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,13,0.0,47,254098923464617,22,32.48900604248047,173.93265954829303,0.11135646357527212,4,84483.86674222472,3.4028234663852886E38,,,,,0,,1
+507512464,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,15,0.0,47,254098927635608,15,35.821529388427734,-64.02640389896081,0.07682217319707962,1,-56478.93350944425,0.0014699051389470696,,,,,0,,1
+507512464,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,16,0.0,47,254098924126181,9,40.048179626464844,127.7722580570541,0.04712098900126613,4,56722.74670676859,3.4028234663852886E38,,,,,0,,1
+507512465,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,18,0.0,47,254098930932651,36,28.23280143737793,-198.12372258028165,0.18272067584599028,4,-124016.53786030744,3.4028234663852886E38,,,,,0,,1
+507512465,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,20,0.0,47,254098930356915,20,33.0738410949707,427.5509545083298,0.10538584292507597,4,241984.82675789634,3.4028234663852886E38,,,,,0,,1
+507512465,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,21,0.0,47,254098930193622,19,33.908599853515625,20.526204174086743,0.09587051366191174,1,7541.301247466739,0.0018320431699976325,,,,,0,,1
+507512466,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,26,0.0,47,254098922866510,20,33.25262451171875,422.3812252555804,0.10192943583276709,4,231311.5703896273,3.4028234663852886E38,,,,,0,,1
+507512466,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,27,0.0,47,254098921985185,12,37.52439880371094,-590.1305773765921,0.06237376615146478,4,-345820.4593757022,3.4028234663852886E38,,,,,0,,1
+507512466,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,29,0.0,47,254098925013432,20,33.19126892089844,658.918722222189,0.10303451954514048,4,376394.9532691536,3.4028234663852886E38,,,,,0,,1
+507512467,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,93,0.0,99,17921371371,93,26.134902954101562,58.35271866314389,0.23038199576473528,4,11180.401059789618,3.4028234663852886E38,,,,,0,,3
+507512467,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,94,0.0,227,5681920142496,33,36.16021728515625,530.9004484733391,0.07618652206946963,1,292270.057996587,0.001393171725794673,,,,,0,,3
+507512467,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,96,0.0,227,5681929127603,33,39.475128173828125,659.9788911147875,0.051183653598707746,1,369907.6661901539,9.505031630396843E-4,,,,,0,,3
+507512467,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,97,0.0,227,5681936139179,41,33.20387268066406,47.46583626158974,0.10488766990944592,4,11574.416649473682,3.4028234663852886E38,,,,,0,,3
+507512468,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,103,0.0,227,5681928886922,33,36.739383697509766,-593.6639056443119,0.06948124807786749,4,-343103.8515062884,3.4028234663852886E38,,,,,0,,3
+507512468,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,104,0.0,227,5681928071418,33,37.65767288208008,622.9065851759701,0.06252422488653447,1,348500.95208247146,0.0011684398632496595,,,,,0,,3
+507512468,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,105,0.0,227,5681936148114,40,33.470916748046875,-53.65668869268379,0.101801501807123,4,-53102.040131027716,3.4028234663852886E38,,,,,0,,3
+507512469,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,106,0.0,227,5681927850974,55,30.627277374267578,-709.4414651329944,0.13861548915271477,4,-414460.54981634486,3.4028234663852886E38,,,,,0,,3
+507512469,593430000000,,,-1157840705570307409,0.0,8.442358195135883,,,0,26,0.0,1074,2498942,17,29.648422241210938,257.5326821329098,0.17255400221473705,4,139312.0076747702,3.4028234663852886E38,,,,,0,,6
+507513471,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,10,0.0,47,254099923855826,20,33.41976547241211,-567.7376877095187,0.10017457208380526,4,-331594.073249687,3.4028234663852886E38,,,,,0,,1
+507513471,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,13,0.0,47,254099923464036,21,32.81167221069336,174.72747947563323,0.10731824997843897,4,84658.68931507223,3.4028234663852886E38,,,,,0,,1
+507513471,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,15,0.0,47,254099927635817,15,35.41078186035156,-63.41203779798769,0.08047582751396692,1,-56542.70166468013,0.0015410853084176779,,,,,0,,1
+507513472,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,16,0.0,47,254099924125752,8,40.55534362792969,127.64694538503386,0.0444904282880248,1,56850.42460384157,8.523118449375033E-4,,,,,0,,1
+507513472,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,18,0.0,47,254099930933304,25,31.199129104614258,-198.44586995933525,0.13042782800426406,4,-124215.91822876403,3.4028234663852886E38,,,,,0,,1
+507513472,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,20,0.0,47,254099930355497,18,34.278465270996094,428.083117984477,0.09197938050978005,1,242412.47254821443,0.0017556685488671064,,,,,0,,1
+507513473,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,21,0.0,47,254099930193538,23,32.151710510253906,21.326784036579298,0.11695147824708946,1,7562.139006413594,0.002114481758326292,,,,,0,,1
+507513473,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,26,0.0,47,254099922865169,11,38.04860305786133,422.58053946132577,0.05889995587121219,4,231734.17863916163,3.4028234663852886E38,,,,,0,,1
+507513473,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,27,0.0,47,254099921987175,8,40.54800033569336,-590.0546416634593,0.044142738970201156,1,-346410.39875844266,8.530327468179166E-4,,,,,0,,1
+507513474,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,29,0.0,47,254099925011184,27,30.54770851135254,658.2863563238648,0.1393673251778902,4,377053.1047639765,3.4028234663852886E38,,,,,0,,1
+507513474,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,93,0.0,99,18921371114,91,26.264055252075195,58.51405649170874,0.2269853161804637,4,11238.639045303848,3.4028234663852886E38,,,,,0,,3
+507513474,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,94,0.0,227,5682920140746,33,35.99722671508789,530.7305474275729,0.07756072072541254,4,292801.1623094034,3.4028234663852886E38,,,,,0,,3
+507513475,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,96,0.0,227,5682929125410,33,36.21080780029297,660.2215582052299,0.07378340101085873,1,370567.86982059723,0.0013841065810993314,,,,,0,,3
+507513475,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,97,0.0,227,5682936139076,42,33.00151824951172,47.07786713837646,0.10729148992468474,4,11621.756667257423,3.4028234663852886E38,,,,,0,,3
+507513475,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,103,0.0,227,5682928888923,33,38.071632385253906,-593.5429810885689,0.059828890031984105,1,-343697.45391530753,0.0011144502786919475,,,,,0,,3
+507513476,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,104,0.0,227,5682928069313,33,37.84939193725586,623.2490456991113,0.06119060315911537,1,349123.9973820613,0.001142931985668838,,,,,0,,3
+507513476,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,105,0.0,227,5682936148299,42,32.974185943603516,-53.04312352943896,0.10762211305151026,1,-53155.29994562025,0.0020027579739689827,,,,,0,,3
+507513477,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,106,0.0,227,5682927853358,39,33.493953704833984,-709.7919009509619,0.10004755335850724,4,-415170.23134789395,3.4028234663852886E38,,,,,0,,3
+507513477,594430000000,,,-1157840705570307319,0.0,8.341631366462003,,,0,26,0.0,1074,2498078,18,29.311363220214844,257.4684537435926,0.17936373693856267,4,139572.84969929926,3.4028234663852886E38,,,,,0,,6
+507514438,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,10,0.0,47,254100923857710,9,40.219295501708984,-567.6046638817102,0.04616794499728746,4,-332161.64963961195,3.4028234663852886E38,,,,,0,,1
+507514438,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,13,0.0,47,254100923463482,18,34.03545379638672,175.44116611522088,0.09329652267051375,4,84833.86348835718,3.4028234663852886E38,,,,,0,,1
+507514439,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,15,0.0,47,254100927636055,20,33.198516845703125,-63.080381413564226,0.10342109248584769,4,-56606.049726692916,3.4028234663852886E38,,,,,0,,1
+507514439,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,16,0.0,47,254100924125315,8,41.18274688720703,127.28682162879971,0.04144173341396126,1,56977.94513601667,8.358091581612825E-4,,,,,0,,1
+507514439,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,18,0.0,47,254100930933971,19,33.8648567199707,-198.26037618970986,0.09647843118903576,4,-124414.53496898133,3.4028234663852886E38,,,,,0,,1
+507514440,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,20,0.0,47,254100930354053,23,31.89476776123047,428.42953207257483,0.1204365841657038,1,242840.49039479208,0.002177966060116887,,,,,0,,1
+507514440,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,21,0.0,47,254100930193481,27,30.85232925415039,20.455005922410592,0.13552754869608535,1,7583.003657356237,0.00245568691752851,,,,,0,,1
+507514440,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,26,0.0,47,254100922863785,13,37.06570816040039,421.79296205599667,0.06589483921322362,4,232156.26553316857,3.4028234663852886E38,,,,,0,,1
+507514441,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,27,0.0,47,254100921989126,10,39.43425750732422,-590.1126500044611,0.05013329236566108,1,-347000.44819998246,9.697346249595284E-4,,,,,0,,1
+507514441,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,29,0.0,47,254100925008995,37,28.10047149658203,657.9731385484201,0.18443004084684012,4,377710.56223239016,3.4028234663852886E38,,,,,0,,1
+507514441,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,93,0.0,99,19921370878,101,25.410974502563477,59.060543120209616,0.25038457012399595,4,11297.813247195374,3.4028234663852886E38,,,,,0,,3
+507514442,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,94,0.0,227,5683920138959,33,35.75979995727539,531.1834010273915,0.07960936260181439,4,293331.975307973,3.4028234663852886E38,,,,,0,,3
+507514442,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,96,0.0,227,5683929123193,33,35.165679931640625,661.270548052089,0.08300729864383377,4,371228.7339894241,3.4028234663852886E38,,,,,0,,3
+507514443,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,97,0.0,227,5683936138873,44,32.47246551513672,47.75483419136785,0.1138473203325101,4,11669.43444544851,3.4028234663852886E38,,,,,0,,3
+507514443,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,103,0.0,227,5683928890907,33,39.8948974609375,-593.8586528008832,0.04880376452706259,1,-344291.13483843196,9.034359827637672E-4,,,,,0,,3
+507514443,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,104,0.0,227,5683928067184,43,32.74616622924805,622.8102681538367,0.108953966585079,4,349747.260471668,3.4028234663852886E38,,,,,0,,3
+507514444,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,105,0.0,227,5683936148583,41,33.223663330078125,-53.187654446631,0.10465723056595405,4,-53208.402721617465,3.4028234663852886E38,,,,,0,,3
+507514444,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,106,0.0,227,5683927855766,33,34.908077239990234,-709.6267373666524,0.0852285828073292,4,-415879.5938170646,3.4028234663852886E38,,,,,0,,3
+507514444,595430000000,,,-1157840705570307231,0.0,8.721382549031947,,,0,26,0.0,1074,2497195,25,26.334474563598633,257.9907162661199,0.2525008776587092,4,139830.30965709966,3.4028234663852886E38,,,,,0,,6
+507515452,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,10,0.0,47,254101923859628,11,38.14991760253906,-567.7167269987572,0.0584017953369505,4,-332729.3939216759,3.4028234663852886E38,,,,,0,,1
+507515452,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,13,0.0,47,254101923462877,22,32.38897705078125,176.338983226173,0.1126387577555572,4,85009.48249044924,3.4028234663852886E38,,,,,0,,1
+507515452,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,15,0.0,47,254101927636190,29,30.147762298583984,-63.16935792662409,0.1463642970688731,4,-56669.14574396961,3.4028234663852886E38,,,,,0,,1
+507515453,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,16,0.0,47,254101924124897,12,37.739593505859375,127.31943853969204,0.061241032047727795,1,57105.41234310148,0.0011786532122641802,,,,,0,,1
+507515453,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,18,0.0,47,254101930934627,12,37.510467529296875,-198.13652054270597,0.06408309786866567,4,-124612.63684821679,3.4028234663852886E38,,,,,0,,1
+507515453,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,20,0.0,47,254101930352644,20,33.325130462646484,428.34964279448536,0.10243298415770224,1,243268.8549952901,0.001959337154403329,,,,,0,,1
+507515454,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,21,0.0,47,254101930193389,29,30.057188034057617,21.41601616806308,0.14834412500107486,4,7603.798196278251,3.4028234663852886E38,,,,,0,,1
+507515454,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,26,0.0,47,254101922862374,16,34.981597900390625,421.5508402848586,0.0836239614497189,4,232578.30957681703,3.4028234663852886E38,,,,,0,,1
+507515454,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,27,0.0,47,254101921991090,15,35.51231384277344,-590.1847003175503,0.07854121541886111,1,-347590.5208302302,0.0015231756260618567,,,,,0,,1
+507515455,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,29,0.0,47,254101925006825,21,32.84537124633789,658.88136784984,0.10718264407171235,4,378368.51371304784,3.4028234663852886E38,,,,,0,,1
+507515455,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,93,0.0,99,20921370741,96,25.80912971496582,59.30723620082878,0.23917721664108382,4,11356.916746833978,3.4028234663852886E38,,,,,0,,3
+507515455,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,94,0.0,227,5684920137170,33,35.35993957519531,530.6301064282002,0.08318891087431884,1,293862.6594220494,0.0015276309568434954,,,,,0,,3
+507515456,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,96,0.0,227,5684929121030,33,35.40433883666992,660.771444558769,0.0808016744371684,4,371889.95360682294,3.4028234663852886E38,,,,,0,,3
+507515456,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,97,0.0,227,5684936138770,46,32.202579498291016,47.577375360867705,0.11734865202998662,4,11717.326958462407,3.4028234663852886E38,,,,,0,,3
+507515456,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,103,0.0,227,5684928892876,33,35.836456298828125,-593.3035177490397,0.0769187873090636,4,-344884.72369049164,3.4028234663852886E38,,,,,0,,3
+507515457,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,104,0.0,227,5684928065102,56,30.52524757385254,621.5724614978412,0.14027518662842187,4,350369.75235231954,3.4028234663852886E38,,,,,0,,3
+507515457,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,105,0.0,227,5684936148672,36,34.277061462402344,-52.40101004854921,0.09303599490837283,4,-53261.165336205544,3.4028234663852886E38,,,,,0,,3
+507515457,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,106,0.0,227,5684927858111,33,40.08414840698242,-709.5011094319093,0.04760061470351987,1,-416588.921542733,8.830355363897979E-4,,,,,0,,3
+507515458,596430000000,,,-1157840705570307138,0.0,8.489161941670714,,,0,26,0.0,1074,2496348,31,24.486473083496094,256.82867491097466,0.3122587736674871,4,140088.03575717472,3.4028234663852886E38,,,,,0,,6
+507516441,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,10,0.0,47,254102923861523,16,35.092620849609375,-567.9021696446978,0.08274812719038749,1,-333297.35242606257,0.0015985810896381736,,,,,0,,1
+507516441,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,13,0.0,47,254102923462324,18,34.27079772949219,176.184674904266,0.09081904594015289,4,85185.49965185301,3.4028234663852886E38,,,,,0,,1
+507516442,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,15,0.0,47,254102927636395,32,29.178857803344727,-63.53705224851336,0.16347452233454762,4,-56733.189951496985,3.4028234663852886E38,,,,,0,,1
+507516442,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,16,0.0,47,254102924124484,8,41.081138610839844,127.67183409890964,0.04192047709951788,1,57233.11006134895,8.022484253160655E-4,,,,,0,,1
+507516442,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,18,0.0,47,254102930935297,21,32.88726043701172,-198.25862094319893,0.10773769052248239,4,-124810.8418441921,3.4028234663852886E38,,,,,0,,1
+507516443,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,20,0.0,47,254102930351207,21,32.850154876708984,428.81415259443474,0.10808542976577945,1,243697.4185143155,0.001951109617948532,,,,,0,,1
+507516443,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,21,0.0,47,254102930193325,31,29.55023193359375,21.431140258145078,0.1571497303758952,4,7625.794961420515,3.4028234663852886E38,,,,,0,,1
+507516443,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,26,0.0,47,254102922860952,19,33.70366668701172,422.02230290593866,0.09679660623115471,4,233000.59652166287,3.4028234663852886E38,,,,,0,,1
+507516444,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,27,0.0,47,254102921993046,13,36.817169189453125,-589.8132015414517,0.06763600674064332,1,-348180.2302509828,0.0013107119593769312,,,,,0,,1
+507516444,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,29,0.0,47,254102925004606,14,36.042572021484375,658.9982025108002,0.07445310963225482,4,379027.2827517019,3.4028234663852886E38,,,,,0,,1
+507516445,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,93,0.0,99,21921370495,104,25.137439727783203,60.10574555408758,0.258387157542471,4,11416.435572298402,3.4028234663852886E38,,,,,0,,3
+507516445,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,94,0.0,227,5685920135479,33,38.82548522949219,530.9333721263401,0.05701117120025173,1,294393.64733739273,0.0010250408668071032,,,,,0,,3
+507516446,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,96,0.0,227,5685929118813,40,33.458553314208984,661.1453972717372,0.10067799559505686,4,372551.01049099374,3.4028234663852886E38,,,,,0,,3
+507516446,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,97,0.0,227,5685936138572,49,31.692705154418945,48.02064753009631,0.12426784003337793,4,11765.416463405498,3.4028234663852886E38,,,,,0,,3
+507516447,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,103,0.0,227,5685928894871,33,36.469573974609375,-593.1827976880359,0.07162440719636959,1,-345477.9892359073,0.0013401815667748451,,,,,0,,3
+507516447,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,104,0.0,227,5685928063076,53,31.020700454711914,622.9103342461876,0.1325777187407659,4,350991.67525211314,3.4028234663852886E38,,,,,0,,3
+507516447,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,105,0.0,227,5685936148804,33,35.500797271728516,-51.88488236819603,0.08119156742185818,4,-53313.83847092386,3.4028234663852886E38,,,,,0,,3
+507516448,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,106,0.0,227,5685927860535,33,39.329917907714844,-709.5360098673887,0.05179093041558952,4,-417298.4784990803,3.4028234663852886E38,,,,,0,,3
+507516448,597430000000,,,-1157840705570307047,0.0,8.869383929276145,,,0,26,0.0,1074,2495515,27,25.5607852935791,257.37111424776344,0.2759821924387229,4,140346.75934482994,3.4028234663852886E38,,,,,0,,6
+507517486,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,10,0.0,47,254103923863405,13,37.15498352050781,-567.8243253139997,0.06540610211207035,4,-333865.2905690577,3.4028234663852886E38,,,,,0,,1
+507517486,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,13,0.0,47,254103923461704,23,32.22088623046875,174.6959191208931,0.11482742394308354,4,85361.06802901698,3.4028234663852886E38,,,,,0,,1
+507517486,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,15,0.0,47,254103927636658,25,31.42136001586914,-62.810980896286736,0.1265898238767657,4,-56796.050532553665,3.4028234663852886E38,,,,,0,,1
+507517487,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,16,0.0,47,254103924124043,11,37.95209503173828,128.5564783404157,0.05977870661028267,4,57361.328487193874,3.4028234663852886E38,,,,,0,,1
+507517487,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,18,0.0,47,254103930935941,14,36.29555892944336,-197.6568610908322,0.07340856887731795,4,-125008.53458109238,3.4028234663852886E38,,,,,0,,1
+507517487,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,20,0.0,47,254103930349754,33,29.09164810180664,428.4330425655967,0.16559833533209867,4,244125.94892960181,3.4028234663852886E38,,,,,0,,1
+507517488,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,21,0.0,47,254103930193225,27,30.654237747192383,20.846295954981315,0.1386115866448756,4,7647.205865349215,3.4028234663852886E38,,,,,0,,1
+507517488,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,26,0.0,47,254103922859591,16,34.91965866088867,422.3598555553406,0.08421822435986198,4,233422.6884110727,3.4028234663852886E38,,,,,0,,1
+507517488,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,27,0.0,47,254103921995048,14,36.387882232666016,-589.299647086566,0.07104498879365734,1,-348769.71885463764,0.0013771195663139224,,,,,0,,1
+507517488,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,29,0.0,47,254103925002446,9,39.54840087890625,660.0114057783103,0.05002546998489385,1,379686.11773959245,9.570742258802056E-4,,,,,0,,1
+507517489,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,93,0.0,99,22921370267,111,24.56344985961914,60.15955749263003,0.2760221328174606,4,11476.164321422923,3.4028234663852886E38,,,,,0,,3
+507517489,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,94,0.0,227,5686920133654,33,39.90488815307617,532.2334133479462,0.05077180172662449,1,294924.97656376474,9.052552632056177E-4,,,,,0,,3
+507517489,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,96,0.0,227,5686929116591,33,37.45960998535156,661.7641983523654,0.064120849847485,4,373212.0876158057,3.4028234663852886E38,,,,,0,,3
+507517490,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,97,0.0,227,5686936138402,43,32.785099029541016,48.40142525498328,0.10992500872222633,4,11813.882883453196,3.4028234663852886E38,,,,,0,,3
+507517490,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,103,0.0,227,5686928896772,40,33.36309051513672,-592.6611316084977,0.10173252976559038,1,-346070.9879151559,0.001916407491080463,,,,,0,,3
+507517490,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,104,0.0,227,5686928061035,36,34.33317565917969,623.8698917271308,0.09100079962614599,4,351616.17257396365,3.4028234663852886E38,,,,,0,,3
+507517490,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,105,0.0,227,5686936149025,33,35.450740814208984,-52.737553005176636,0.08164408359204373,4,-53366.037595424226,3.4028234663852886E38,,,,,0,,3
+507517491,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,106,0.0,227,5686927862851,33,39.195011138916016,-709.1287926768541,0.0525798943511665,4,-418007.8476959516,3.4028234663852886E38,,,,,0,,3
+507517491,598430000000,,,-1157840705570306953,0.0,8.498858775788486,,,0,26,0.0,1074,2494655,19,28.52230453491211,258.5090252236905,0.1963774562641123,4,140605.13862041512,3.4028234663852886E38,,,,,0,,6
+507518547,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,10,0.0,47,254104923865281,13,37.05650329589844,-568.5114958024126,0.06614428352026483,4,-334431.76579147764,3.4028234663852886E38,,,,,0,,1
+507518548,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,13,0.0,47,254104923461132,19,33.70181655883789,176.23688922765893,0.09692507279518198,4,85536.10356922964,3.4028234663852886E38,,,,,0,,1
+507518549,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,15,0.0,47,254104927636871,17,34.71107482910156,-62.94389821641863,0.08711193808305501,4,-56858.78832129276,3.4028234663852886E38,,,,,0,,1
+507518550,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,16,0.0,47,254104924123603,20,33.35133361816406,128.17020481941444,0.10100960058952635,4,57491.03794456053,3.4028234663852886E38,,,,,0,,1
+507518550,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,18,0.0,47,254104930936620,18,34.035400390625,-199.2228818031423,0.09464132354352328,4,-125207.3318189076,3.4028234663852886E38,,,,,0,,1
+507518551,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,20,0.0,47,254104930348372,18,34.31966781616211,428.42176127248763,0.09155161905349962,4,244554.9744301469,3.4028234663852886E38,,,,,0,,1
+507518552,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,21,0.0,47,254104930193182,25,31.212936401367188,20.5049622830589,0.13009063967768353,4,7668.501575719578,3.4028234663852886E38,,,,,0,,1
+507518553,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,26,0.0,47,254104922858134,20,33.239891052246094,421.452750974986,0.10207670765845,4,233846.30720420103,3.4028234663852886E38,,,,,0,,1
+507518554,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,27,0.0,47,254104921996970,18,34.18110656738281,-589.2022394258238,0.09149164191809522,4,-349357.66504174663,3.4028234663852886E38,,,,,0,,1
+507518554,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,29,0.0,47,254104925000276,15,35.58579635620117,657.3190962077474,0.0784238655935825,4,380345.0862862889,3.4028234663852886E38,,,,,0,,1
+507518555,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,93,0.0,99,23921370145,107,24.912118911743164,60.173693191472864,0.2651711473638353,4,11535.989208590649,3.4028234663852886E38,,,,,0,,3
+507518556,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,94,0.0,227,5687920131867,33,35.76334762573242,531.185002902848,0.07957704417868583,4,295457.1579576428,3.4028234663852886E38,,,,,0,,3
+507518557,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,96,0.0,227,5687929114401,33,38.48214340209961,661.8526764094986,0.05718141706462104,4,373872.6882313478,3.4028234663852886E38,,,,,0,,3
+507518558,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,97,0.0,227,5687936138234,47,32.074214935302734,47.73727320564447,0.11905246698237437,4,11862.778966711694,3.4028234663852886E38,,,,,0,,3
+507518558,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,103,0.0,227,5687928898801,43,32.7900390625,-592.9639883171594,0.10856193512594431,4,-346664.25946931296,3.4028234663852886E38,,,,,0,,3
+507518559,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,104,0.0,227,5687928058944,33,36.80396270751953,622.9382136956233,0.06882950846644723,4,352241.0186637521,3.4028234663852886E38,,,,,0,,3
+507518559,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,105,0.0,227,5687936149213,43,32.83351516723633,-53.23263476862698,0.10933205219530445,4,-53419.8386249399,3.4028234663852886E38,,,,,0,,3
+507518559,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,106,0.0,227,5687927865252,33,35.577877044677734,-710.7260329193391,0.07900989912152317,4,-418716.1669354908,3.4028234663852886E38,,,,,0,,3
+507518560,599430000000,,,-1157840705570306860,0.0,9.07865358643605,,,0,26,0.0,1074,2493767,12,32.19050979614258,256.5811169880212,0.1288848812481545,4,140862.8214082373,3.4028234663852886E38,,,,,0,,6
+507519519,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,10,0.0,47,254105923867207,14,36.512306213378906,-566.1858112166656,0.07037641181632548,4,-335001.31753394264,3.4028234663852886E38,,,,,0,,1
+507519519,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,13,0.0,47,254105923460554,19,33.87143325805664,175.4416432696122,0.09506264461373226,4,85712.76413584361,3.4028234663852886E38,,,,,0,,1
+507519519,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,15,0.0,47,254105927637083,12,37.455421447753906,-63.13154344111203,0.06388486045553105,4,-56921.54129116155,3.4028234663852886E38,,,,,0,,1
+507519520,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,16,0.0,47,254105924123184,15,35.51413345336914,129.66595602698862,0.07890834238767042,4,57619.219661317155,3.4028234663852886E38,,,,,0,,1
+507519520,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,18,0.0,47,254105930937264,14,36.32913589477539,-197.50142804785992,0.07313317996592172,4,-125407.235412046,3.4028234663852886E38,,,,,0,,1
+507519520,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,20,0.0,47,254105930346939,15,35.92865753173828,427.9854376640826,0.07638505903544479,4,244984.5462518926,3.4028234663852886E38,,,,,0,,1
+507519520,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,21,0.0,47,254105930193127,21,32.977691650390625,21.760430041993743,0.10650869178507538,4,7688.862475371704,3.4028234663852886E38,,,,,0,,1
+507519521,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,26,0.0,47,254105922856764,14,36.085845947265625,424.1125458820261,0.07370123200251821,4,234269.51737931286,3.4028234663852886E38,,,,,0,,1
+507519521,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,27,0.0,47,254105921998949,14,36.352020263671875,-588.852962411378,0.07133813453176735,4,-349945.9303260257,3.4028234663852886E38,,,,,0,,1
+507519521,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,29,0.0,47,254105924998013,11,38.28268814086914,658.811157989403,0.05773115893383998,4,381002.7311374743,3.4028234663852886E38,,,,,0,,1
+507519521,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,93,0.0,99,24921369926,109,24.691686630249023,60.21370173512358,0.27198046604204906,4,11595.63736295855,3.4028234663852886E38,,,,,0,,3
+507519522,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,94,0.0,227,5688920130093,33,35.4897575378418,532.4305803589307,0.08200727476936492,4,295989.3577188178,3.4028234663852886E38,,,,,0,,3
+507519522,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,96,0.0,227,5688929112197,34,34.807769775390625,660.9541946906443,0.08642813383632941,4,374533.7562973603,3.4028234663852886E38,,,,,0,,3
+507519522,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,97,0.0,227,5688936138099,34,34.73657989501953,48.988580774729996,0.08838971400799539,4,11910.910869845477,3.4028234663852886E38,,,,,0,,3
+507519522,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,103,0.0,227,5688928900759,33,35.22937774658203,-592.1002025390453,0.08237277916028801,4,-347256.8564535988,3.4028234663852886E38,,,,,0,,3
+507519523,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,104,0.0,227,5688928056849,33,38.893463134765625,623.2437288358938,0.05442232322005455,4,352863.303661112,3.4028234663852886E38,,,,,0,,3
+507519523,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,105,0.0,227,5688936149371,33,35.83026885986328,-51.16704618952673,0.07827770877013934,4,-53471.42187028142,3.4028234663852886E38,,,,,0,,3
+507519523,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,106,0.0,227,5688927867625,33,39.023475646972656,-708.14101492191,0.053601273846891645,4,-419425.0981567437,3.4028234663852886E38,,,,,0,,3
+507519523,600430000000,,,-1157840705570306773,0.0,9.3594132386217,,,0,26,0.0,1074,2492936,9,35.15772247314453,258.5125527579406,0.09171824532104583,4,141119.7823064042,3.4028234663852886E38,,,,,0,,6
+507520505,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,10,0.0,47,254106923869119,14,36.43709945678711,-567.9819907578742,0.07098269844465105,4,-335566.5854994766,3.4028234663852886E38,,,,,0,,1
+507520506,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,13,0.0,47,254106923459948,16,34.94780349731445,177.14305654045916,0.08405541739103256,4,85887.67201513372,3.4028234663852886E38,,,,,0,,1
+507520507,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,15,0.0,47,254106927637300,11,38.37140655517578,-63.26135925770035,0.05762835406315167,4,-56983.49786187253,3.4028234663852886E38,,,,,0,,1
+507520507,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,16,0.0,47,254106924122749,16,35.36131286621094,128.32458982684864,0.08029572136859675,4,57747.75431784647,3.4028234663852886E38,,,,,0,,1
+507520508,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,18,0.0,47,254106930937941,13,36.81000900268555,-197.81529338997848,0.06930046377815,4,-125603.3633105382,3.4028234663852886E38,,,,,0,,1
+507520508,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,20,0.0,47,254106930345512,17,34.863067626953125,428.1015225109993,0.08611190588767392,4,245412.33321715565,3.4028234663852886E38,,,,,0,,1
+507520508,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,21,0.0,47,254106930193054,20,33.17545700073242,21.26082596259353,0.10415231761141203,4,7710.297214406701,3.4028234663852886E38,,,,,0,,1
+507520509,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,26,0.0,47,254106922855335,14,36.264976501464844,422.24387295579345,0.07220707907576651,4,234693.0217369016,3.4028234663852886E38,,,,,0,,1
+507520509,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,27,0.0,47,254106922000909,14,36.1890983581543,-588.037096567135,0.07268240286639371,4,-350535.4040391117,3.4028234663852886E38,,,,,0,,1
+507520509,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,29,0.0,47,254106924995870,12,37.83388900756836,657.9850674082031,0.06074447328907173,4,381662.2273543902,3.4028234663852886E38,,,,,0,,1
+507520510,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,93,0.0,99,25921369659,126,23.504657745361328,60.48066961706675,0.3117732650802818,4,11654.88366169524,3.4028234663852886E38,,,,,0,,3
+507520510,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,94,0.0,227,5689920128299,33,36.8131103515625,532.6064117521319,0.070929544457281,4,296521.37993010704,3.4028234663852886E38,,,,,0,,3
+507520510,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,96,0.0,227,5689929109984,39,33.55149459838867,661.6623599722752,0.09962231313863462,4,375194.7304895314,3.4028234663852886E38,,,,,0,,3
+507520511,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,97,0.0,227,5689936137931,33,35.57396697998047,47.7981700348366,0.08053289233008837,4,11959.540034750946,3.4028234663852886E38,,,,,0,,3
+507520511,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,103,0.0,227,5689928902767,33,34.99104690551758,-592.730318995239,0.08462009113726082,4,-347849.2811367099,3.4028234663852886E38,,,,,0,,3
+507520512,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,104,0.0,227,5689928054801,33,38.62944793701172,622.857097449099,0.056056820813051855,4,353486.70232023345,3.4028234663852886E38,,,,,0,,3
+507520512,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,105,0.0,227,5689936149566,33,35.0252799987793,-52.355394940800494,0.08559706608483314,4,-53523.96527641742,3.4028234663852886E38,,,,,0,,3
+507520512,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,106,0.0,227,5689927869979,33,38.65231704711914,-709.8480006743985,0.055879993107103065,4,-420136.01403230184,3.4028234663852886E38,,,,,0,,3
+507520513,601430000000,,,-1157840705570306683,0.0,9.97020085845517,,,0,26,0.0,1074,2492067,7,36.46105194091797,259.2659795418339,0.07900090421539496,4,141375.9617039012,3.4028234663852886E38,,,,,0,,6
+507521469,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,10,0.0,47,254107923870967,14,36.35111999511719,-568.535319439522,0.07168223753641684,4,-336133.82924108405,3.4028234663852886E38,,,,,0,,1
+507521469,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,13,0.0,47,254107923459394,18,34.12751770019531,176.1033371217743,0.09231870731080549,4,86063.79484836353,3.4028234663852886E38,,,,,0,,1
+507521469,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,15,0.0,47,254107927637502,15,35.50497817993164,-62.228963306860834,0.07962292568876073,4,-57045.16987751477,3.4028234663852886E38,,,,,0,,1
+507521470,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,16,0.0,47,254107924122329,17,34.824493408203125,129.55387586871336,0.08536747547438944,4,57876.6868531454,3.4028234663852886E38,,,,,0,,1
+507521470,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,18,0.0,47,254107930938563,15,35.787078857421875,-198.49038164755405,0.07771615536599996,4,-125801.01715852461,3.4028234663852886E38,,,,,0,,1
+507521470,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,20,0.0,47,254107930344074,12,37.87777328491211,428.91023103937255,0.06140488329104296,4,245841.75387456108,3.4028234663852886E38,,,,,0,,1
+507521471,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,21,0.0,47,254107930192994,19,33.472320556640625,21.336851142174723,0.10071437462335708,4,7731.85069318811,3.4028234663852886E38,,,,,0,,1
+507521471,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,26,0.0,47,254107922853940,18,34.30714416503906,422.62082492493573,0.09033296321000323,4,235116.80243614732,3.4028234663852886E38,,,,,0,,1
+507521471,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,27,0.0,47,254107922002908,12,37.653236389160156,-588.5169775549762,0.06146383695424221,4,-351123.6067199323,3.4028234663852886E38,,,,,0,,1
+507521472,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,29,0.0,47,254107924993676,12,37.397804260253906,657.3317748815739,0.06382542417942205,4,382322.1337362622,3.4028234663852886E38,,,,,0,,1
+507521472,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,93,0.0,99,26921369579,62,22.462295532226562,60.827360625123845,4.200246321420742,4,11715.440295947148,3.4028234663852886E38,,,,,0,,3
+507521472,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,94,0.0,227,5690920126543,33,37.234432220458984,532.1964679650755,0.06774223982717328,4,297053.1531178553,3.4028234663852886E38,,,,,0,,3
+507521472,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,96,0.0,227,5690929107749,45,32.271827697753906,661.9614676107194,0.11517515486546837,4,375856.3548305676,3.4028234663852886E38,,,,,0,,3
+507521473,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,97,0.0,227,5690936137724,37,33.98645782470703,48.51628313346515,0.09610056192252847,4,12007.248105429975,3.4028234663852886E38,,,,,0,,3
+507521473,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,103,0.0,227,5690928904737,33,37.30324172973633,-592.056372499957,0.06521772497993658,4,-348441.39092954935,3.4028234663852886E38,,,,,0,,3
+507521473,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,104,0.0,227,5690928052735,33,35.88502883911133,622.6218603341786,0.07634765653493941,4,354110.7367089933,3.4028234663852886E38,,,,,0,,3
+507521474,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,105,0.0,227,5690936149696,42,33.02494812011719,-52.22579639987251,0.10701219018453711,4,-53575.0181063871,3.4028234663852886E38,,,,,0,,3
+507521474,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,106,0.0,227,5690927872343,33,37.26172637939453,-708.9424979695004,0.06533682219678497,4,-420844.5698494794,3.4028234663852886E38,,,,,0,,3
+507521474,602430000000,,,-1157840705570306590,0.0,9.939219978450907,,,0,26,0.0,1074,2491203,9,34.47100067138672,256.93460318584755,0.09922677025453591,4,141631.8553743617,3.4028234663852886E38,,,,,0,,6
+507522506,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,10,0.0,47,254108923872858,12,37.49000930786133,-566.6399940322885,0.06295933370832019,4,-336702.1666518224,3.4028234663852886E38,,,,,0,,1
+507522506,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,13,0.0,47,254108923458780,12,37.823673248291016,176.00572496629297,0.06053841005797819,4,86238.50270686677,3.4028234663852886E38,,,,,0,,1
+507522507,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,15,0.0,47,254108927637726,9,40.038761138916016,-62.66831173328225,0.04780294184501899,4,-57108.417453648784,3.4028234663852886E38,,,,,0,,1
+507522508,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,16,0.0,47,254108924121888,15,35.7963752746582,129.96962219399273,0.0764089566953895,4,58006.37971378797,3.4028234663852886E38,,,,,0,,1
+507522508,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,18,0.0,47,254108930939248,13,36.86389923095703,-197.1869662627522,0.0688842184644056,4,-125998.19584271553,3.4028234663852886E38,,,,,0,,1
+507522509,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,20,0.0,47,254108930342638,11,38.294864654541016,428.2806939849397,0.05861290936177191,4,246270.47586572703,3.4028234663852886E38,,,,,0,,1
+507522510,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,21,0.0,47,254108930192913,18,34.11122512817383,21.901280053881322,0.09370206729112135,4,7752.455462611113,3.4028234663852886E38,,,,,0,,1
+507522511,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,26,0.0,47,254108922852523,17,34.483604431152344,423.5631366828784,0.0885263517078394,4,235539.94839992074,3.4028234663852886E38,,,,,0,,1
+507522511,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,27,0.0,47,254108922004853,12,37.60606384277344,-589.0837006420375,0.061796956354738836,4,-351712.5595832992,3.4028234663852886E38,,,,,0,,1
+507522512,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,29,0.0,47,254108924991469,12,37.71709060668945,658.9197446958847,0.06155386506419058,4,382980.62696851045,3.4028234663852886E38,,,,,0,,1
+507522513,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,93,0.0,99,27921369386,66,21.59056282043457,60.08292308913849,4.200246321420742,4,11775.74271345355,3.4028234663852886E38,,,,,0,,3
+507522514,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,94,0.0,227,5691920124779,35,34.523338317871094,532.4166406342129,0.0912315385224784,4,297586.22482660296,3.4028234663852886E38,,,,,0,,3
+507522514,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,96,0.0,227,5691929105552,37,34.14780044555664,661.294405771655,0.09312045216757853,4,376517.5305774893,3.4028234663852886E38,,,,,0,,3
+507522516,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,97,0.0,227,5691936137589,33,35.74951171875,49.181879426899116,0.07897966092645387,4,12055.849247837397,3.4028234663852886E38,,,,,0,,3
+507522517,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,103,0.0,227,5691928906696,35,34.50862121582031,-592.507692389232,0.08936222062569643,4,-349034.0421345307,3.4028234663852886E38,,,,,0,,3
+507522519,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,104,0.0,227,5691928050624,33,39.32865905761719,623.4170722097688,0.051832443446739984,4,354733.2259346545,3.4028234663852886E38,,,,,0,,3
+507522519,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,105,0.0,227,5691936149891,33,35.92308807373047,-51.27556047078829,0.07747664622816974,4,-53626.85850313537,3.4028234663852886E38,,,,,0,,3
+507522520,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,106,0.0,227,5691927874712,33,39.125675201416016,-708.1960240067378,0.05299210818293207,4,-421553.4711115816,3.4028234663852886E38,,,,,0,,3
+507522521,603430000000,,,-1157840705570306497,0.0,9.585845011771235,,,0,26,0.0,1074,2490345,8,36.257022857666016,260.4102128134459,0.08086761766664674,4,141889.02002458184,3.4028234663852886E38,,,,,0,,6
+507523492,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,10,0.0,47,254109923874786,14,36.25199890136719,-566.9251278635584,0.07249765365199529,4,-337269.3051452305,3.4028234663852886E38,,,,,0,,1
+507523492,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,13,0.0,47,254109923458215,12,37.2470588684082,175.764063308318,0.06465085451287775,4,86414.0076457707,3.4028234663852886E38,,,,,0,,1
+507523493,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,15,0.0,47,254109927637922,11,37.957950592041016,-63.31258092954707,0.06037100994559394,4,-57170.546145333596,3.4028234663852886E38,,,,,0,,1
+507523493,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,16,0.0,47,254109924121456,18,34.1953125,129.034868220784,0.09172485212536202,4,58137.02387961354,3.4028234663852886E38,,,,,0,,1
+507523494,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,18,0.0,47,254109930939932,14,36.010040283203125,-197.96873260924417,0.07579669565207775,4,-126194.81978978093,3.4028234663852886E38,,,,,0,,1
+507523494,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,20,0.0,47,254109930341230,10,38.66657638549805,428.1858084259802,0.05623516292502778,4,246699.4422346905,3.4028234663852886E38,,,,,0,,1
+507523494,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,21,0.0,47,254109930192832,17,34.7144889831543,21.14536525066191,0.08753799375232685,4,7774.833534764115,3.4028234663852886E38,,,,,0,,1
+507523495,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,26,0.0,47,254109922851109,17,34.63439178466797,423.2659376619995,0.08701137985867069,4,235962.76474995748,3.4028234663852886E38,,,,,0,,1
+507523495,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,27,0.0,47,254109922006786,14,36.235042572021484,-588.2379785658804,0.07230192915435624,4,-352301.5901373683,3.4028234663852886E38,,,,,0,,1
+507523495,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,29,0.0,47,254109924989324,11,38.428382873535156,657.8252206871111,0.05678424744218,4,383639.7729394628,3.4028234663852886E38,,,,,0,,1
+507523496,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,93,0.0,99,28921369035,96,25.803863525390625,60.330578999154426,0.23932186737941208,4,11836.860658603986,3.4028234663852886E38,,,,,0,,3
+507523496,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,94,0.0,227,5692920123017,35,34.56016540527344,533.6173314950549,0.09086055897130335,4,298118.76039961557,3.4028234663852886E38,,,,,0,,3
+507523496,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,96,0.0,227,5692929103354,33,38.0623779296875,661.3659789303529,0.05992953562594691,4,377178.6953754587,3.4028234663852886E38,,,,,0,,3
+507523497,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,97,0.0,227,5692936137430,35,34.550941467285156,48.07532431097303,0.0902363158143703,4,12105.186052964236,3.4028234663852886E38,,,,,0,,3
+507523497,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,103,0.0,227,5692928908686,33,35.057159423828125,-592.2877923797469,0.08399167920329703,4,-349626.9224520233,3.4028234663852886E38,,,,,0,,3
+507523497,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,104,0.0,227,5692928048570,33,38.28929138183594,621.7978828652831,0.058236691796343665,4,355356.3190027854,3.4028234663852886E38,,,,,0,,3
+507523498,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,105,0.0,227,5692936150075,33,35.15618133544922,-51.945310563610974,0.084360303936309,4,-53677.82226381398,3.4028234663852886E38,,,,,0,,3
+507523498,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,106,0.0,227,5692927877072,33,38.479888916015625,-709.4621191016472,0.05697327360546825,4,-422262.553544486,3.4028234663852886E38,,,,,0,,3
+507523498,604430000000,,,-1157840705570306412,0.0,9.559969026231173,,,0,26,0.0,1074,2489487,7,36.69740676879883,257.8049498368423,0.0768917443442933,4,142148.18221213704,3.4028234663852886E38,,,,,0,,6
+507524507,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,10,0.0,47,254110923876661,14,36.3482666015625,-567.2273370055461,0.07170660116744682,4,-337836.2055662392,3.4028234663852886E38,,,,,0,,1
+507524508,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,13,0.0,47,254110923457619,9,40.117454528808594,176.01110999442358,0.0466323059860424,1,86590.08144766005,8.963817381300032E-4,,,,,0,,1
+507524508,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,15,0.0,47,254110927638156,12,37.64106750488281,-62.74628387319231,0.06256314595352311,4,-57233.25206736378,3.4028234663852886E38,,,,,0,,1
+507524509,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,16,0.0,47,254110924121021,24,31.808515548706055,129.10175504171002,0.12049873305920206,4,58266.82081369768,3.4028234663852886E38,,,,,0,,1
+507524509,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,18,0.0,47,254110930940579,17,34.503944396972656,-196.90236070955848,0.08977535391826419,4,-126392.16036718318,3.4028234663852886E38,,,,,0,,1
+507524509,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,20,0.0,47,254110930339791,7,41.665042877197266,428.6613950242995,0.040361250478616606,4,247127.48312761585,3.4028234663852886E38,,,,,0,,1
+507524510,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,21,0.0,47,254110930192775,12,37.540138244628906,21.5242343579836,0.06373780913402241,4,7796.095171094477,3.4028234663852886E38,,,,,0,,1
+507524510,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,26,0.0,47,254110922849642,25,31.413904190063477,423.92393356762886,0.12583627374366946,4,236385.63379764598,3.4028234663852886E38,,,,,0,,1
+507524510,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,27,0.0,47,254110922008778,22,32.41746520996094,-588.2889659208386,0.11201039574706684,4,-352889.1972963781,3.4028234663852886E38,,,,,0,,1
+507524511,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,29,0.0,47,254110924987053,9,40.10277557373047,658.422754314869,0.046985224997207004,1,384298.1704006253,8.978976984508336E-4,,,,,0,,1
+507524511,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,93,0.0,99,29921368904,91,26.333711624145508,60.83675034189588,0.22517387022829016,4,11897.501462839637,3.4028234663852886E38,,,,,0,,3
+507524511,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,94,0.0,227,5693920121144,46,32.167972564697266,533.2067401413246,0.11852187569266892,4,298651.7226279448,3.4028234663852886E38,,,,,0,,3
+507524512,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,96,0.0,227,5693929101142,33,39.14561462402344,661.6820596321454,0.05309446372435958,4,377840.0917240627,3.4028234663852886E38,,,,,0,,3
+507524513,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,97,0.0,227,5693936137311,33,37.833168029785156,48.776460085946155,0.06275349930231316,4,12153.465750874433,3.4028234663852886E38,,,,,0,,3
+507524513,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,103,0.0,227,5693928910618,40,33.37860107421875,-592.3920846967067,0.10155638437444503,4,-350218.76138592244,3.4028234663852886E38,,,,,0,,3
+507524513,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,104,0.0,227,5693928046474,33,36.79523468017578,623.1413451364992,0.06889498572484029,1,355979.3658304292,0.001290411688387394,,,,,0,,3
+507524514,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,105,0.0,227,5693936150183,33,37.021820068359375,-51.921857573216215,0.06861593145160366,4,-53729.29382508834,3.4028234663852886E38,,,,,0,,3
+507524514,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,106,0.0,227,5693927879432,33,38.43244934082031,-708.5874951023588,0.05727796460930712,4,-422971.3195212337,3.4028234663852886E38,,,,,0,,3
+507524515,605430000000,,,-1157840705570306318,0.0,9.388334346595698,,,0,26,0.0,1074,2488627,6,38.23405838012695,257.9167062117806,0.06449637261674146,4,142408.08832890808,3.4028234663852886E38,,,,,0,,6
+507525462,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,10,0.0,47,254111923878607,26,31.125743865966797,-566.5077881834366,0.13024878693566022,4,-338402.91902889067,3.4028234663852886E38,,,,,0,,1
+507525462,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,13,0.0,47,254111923457019,11,38.26844787597656,176.12600195536197,0.0575472293292969,1,86766.06579667614,0.001109030214138329,,,,,0,,1
+507525462,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,15,0.0,47,254111927638345,8,40.81256103515625,-62.615364637074066,0.043845719847444814,1,-57295.944793417315,8.722009370103478E-4,,,,,0,,1
+507525463,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,16,0.0,47,254111924120449,37,28.068546295166016,129.7495347309967,0.18494603725648184,1,58396.4368730751,0.0033834679052233696,,,,,0,,1
+507525463,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,18,0.0,47,254111930941212,14,36.34733200073242,-197.24872367397154,0.07298495123533155,1,-126589.42947862737,0.0013835636200383306,,,,,0,,1
+507525463,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,20,0.0,47,254111930338361,11,38.29706573486328,428.5868566918841,0.05859776946195666,1,247555.92493831908,0.0011053819907829165,,,,,0,,1
+507525463,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,21,0.0,47,254111930192702,16,34.912452697753906,21.445580568943086,0.08560672666394031,1,7817.467393184159,0.0016320861177518964,,,,,0,,1
+507525464,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,26,0.0,47,254111922848305,29,30.230411529541016,423.53201940007307,0.14412996571499004,1,236809.13445762734,0.002637963742017746,,,,,0,,1
+507525464,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,27,0.0,47,254111922010652,166,28.749086380004883,-588.604910292805,0.1706849589080589,1,-353477.6689913173,0.0031284925062209368,,,,,1,,1
+507525464,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,29,0.0,47,254111924984874,12,37.77378463745117,658.5776931622217,0.06115804758998805,1,384956.71814643004,0.0011740225600078702,,,,,0,,1
+507525464,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,93,0.0,99,921368687,105,25.07161521911621,60.74547326302073,0.26035057663574135,4,11958.064075791292,3.4028234663852886E38,,,,,0,,3
+507525465,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,94,0.0,227,5694920119458,76,27.892141342163086,532.6335754699805,0.19160316644988062,4,299184.584135859,3.4028234663852886E38,,,,,0,,3
+507525465,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,96,0.0,227,5694929098959,33,39.38134765625,661.6414333439702,0.051716283511911265,1,378501.59805180586,9.608212858438492E-4,,,,,0,,3
+507525465,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,97,0.0,227,5694936137099,33,36.30961608886719,48.87211676048449,0.07422860309918794,1,12202.212167565842,0.0013679696712642908,,,,,0,,3
+507525465,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,103,0.0,227,5694928912589,43,32.68844223022461,-592.2830208358337,0.10982282791995579,1,-350811.13962541625,0.002071191556751728,,,,,0,,3
+507525466,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,104,0.0,227,5694928044398,33,38.041908264160156,623.1958770669357,0.05987658966138279,1,356602.4826974938,0.001117878477089107,,,,,0,,3
+507525466,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,105,0.0,227,5694936150409,33,36.76301193237305,-51.42284780665162,0.0706033563766778,1,-53780.87323259375,0.0012947536306455731,,,,,0,,3
+507525466,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,106,0.0,227,5694927881774,33,39.056636810302734,-708.580269621576,0.05340494608311541,1,-423679.98319566465,9.939252631738782E-4,,,,,0,,3
+507525466,606430000000,,,-1157840705570306224,0.0,9.722881088249679,,,0,26,0.0,1074,2487781,9,35.3115234375,258.27141937804174,0.0901154379223032,4,142667.69107550642,3.4028234663852886E38,,,,,0,,6
+507526477,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,10,0.0,47,254112923880486,30,29.793493270874023,-566.7076136260298,0.15172471194108006,1,-338969.62776390865,0.0027740532532334328,,,,,0,,1
+507526477,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,13,0.0,47,254112923456387,11,38.114219665527344,176.51319570268936,0.0585668905566451,1,86942.43242280153,0.0011288982350379229,,,,,0,,1
+507526478,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,15,0.0,47,254112927638548,13,36.8414421081543,-62.14536756162451,0.06846375028770091,1,-57358.31403110114,0.001307054189965129,,,,,0,,1
+507526478,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,16,0.0,47,254112924120133,51,25.238548278808594,130.13264710415547,0.25589431208720836,1,58526.398330161035,0.004686645232141018,,,,,0,,1
+507526478,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,18,0.0,47,254112930941935,20,33.42694854736328,-196.89821969109096,0.10136696712828164,1,-126786.54311070642,0.0019365038024261594,,,,,0,,1
+507526479,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,20,0.0,47,254112930336923,15,35.77547073364258,428.8835444759152,0.077709240687931,1,247984.65386433588,0.0014777200995013118,,,,,0,,1
+507526479,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,21,0.0,47,254112930192639,16,34.97307205200195,21.78457533228662,0.08502409638910458,1,7839.0399186704135,0.0016207352746278048,,,,,0,,1
+507526479,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,26,0.0,47,254112922846813,18,34.325565338134766,423.64374169255484,0.09014137420574597,1,237232.69396465225,0.0017461735988035798,,,,,0,,1
+507526480,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,27,0.0,47,254112922012687,18,33.97376251220703,-588.2614954608812,0.09369612615978412,1,-354066.1160220178,0.0018183502834290266,,,,,0,,1
+507526480,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,29,0.0,47,254112924982677,10,39.41688537597656,658.7164087602696,0.050771394001924874,1,385615.4012847962,9.716759668663144E-4,,,,,0,,1
+507526481,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,93,0.0,99,1921368404,65,21.915945053100586,61.049727352399856,4.200246055151551,4,12019.24098238111,3.4028234663852886E38,,,,,0,,3
+507526481,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,94,0.0,227,5695920117520,166,28.23538589477539,533.0388840429498,0.18431903987759835,1,299717.5684183226,0.0032709205988794565,,,,,1,,3
+507526481,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,96,0.0,227,5695929096748,33,36.22321319580078,662.0767344786796,0.07367530403998768,1,379163.40206877526,0.0013821311295032501,,,,,0,,3
+507526482,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,97,0.0,227,5695936136999,33,35.095314025878906,49.18792480262485,0.08493077735836646,1,12251.232387591735,0.0015732276951894164,,,,,0,,3
+507526482,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,103,0.0,227,5695928914554,49,31.570947647094727,-592.1093366373934,0.12468164731983689,1,-351403.3359916138,0.0023555641528218985,,,,,0,,3
+507526483,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,104,0.0,227,5695928042289,33,38.912109375,623.3847620409852,0.054306105038840174,1,357225.8223170937,0.001011310494504869,,,,,0,,3
+507526483,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,105,0.0,227,5695936150661,33,36.20298767089844,-51.12366774298732,0.07511205931412845,1,-53832.16108931121,0.0013809830415993929,,,,,0,,3
+507526483,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,106,0.0,227,5695927884206,33,37.44467544555664,-708.4725690589639,0.06400668277113705,1,-424388.48837908107,0.0011966078309342265,,,,,0,,3
+507526484,607430000000,,,-1157840705570306123,0.0,9.871414509995132,,,0,26,0.0,1074,2486903,8,35.97793197631836,258.44961950197126,0.08349294868654711,4,142926.18797509698,3.4028234663852886E38,,,,,0,,6
+507527469,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,10,0.0,47,254113923882332,22,32.51936340332031,-566.6137164583095,0.11104524481578332,1,-339536.30409810826,0.0021497972775250673,,,,,0,,1
+507527470,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,13,0.0,47,254113923455877,14,36.546730041503906,176.65589894815037,0.0700268253305118,1,87119.00456110708,0.0013521633809432387,,,,,0,,1
+507527471,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,15,0.0,47,254113927638780,10,39.44953918457031,-62.10209562276174,0.0510620018618026,1,-57420.49043376198,9.680300136096776E-4,,,,,0,,1
+507527472,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,16,0.0,47,254113924119549,68,21.309383392333984,130.60675111561602,4.200741049578706,4,58656.39278030494,3.4028234663852886E38,,,,,0,,1
+507527473,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,18,0.0,47,254113930942399,166,28.93517303466797,-197.06711530438974,0.16868134980868377,1,-126983.5403853638,0.003062180709093809,,,,,1,,1
+507527474,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,20,0.0,47,254113930335524,12,37.44601821899414,428.8704568126104,0.06443794317101315,1,248413.53198742872,0.0012191717978566885,,,,,0,,1
+507527475,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,21,0.0,47,254113930192551,15,35.56044006347656,21.675603068015533,0.07958445811148901,1,7860.7368456851,0.0015147594967857003,,,,,0,,1
+507527475,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,26,0.0,47,254113922845418,21,32.918540954589844,423.7766632729938,0.10590228034306626,1,237656.39829965265,0.001935808570124209,,,,,0,,1
+507527477,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,27,0.0,47,254113922014521,166,30.199569702148438,-588.120734915442,0.14449086032053382,1,-354654.3714327736,0.002647347515448928,,,,,1,,1
+507527478,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,29,0.0,47,254113924980469,13,36.629486083984375,658.8748921831007,0.06964291508172044,1,386274.20794923836,0.0013393417466431856,,,,,0,,1
+507527478,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,93,0.0,99,2921368331,59,22.94598388671875,60.92593134969488,4.200246055151551,4,12081.1202000004,3.4028234663852886E38,,,,,0,,3
+507527479,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,94,0.0,227,5696920115950,82,27.234935760498047,533.2590567120872,0.20637801120346577,1,300250.697447529,0.0036702228244394064,,,,,0,,3
+507527480,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,96,0.0,227,5696929094523,33,37.75844192504883,661.9883927513724,0.06200381423295101,1,379825.3794033512,0.001158211613073945,,,,,0,,3
+507527481,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,97,0.0,227,5696936136781,33,38.330894470214844,49.24799939255337,0.05942021258791927,1,12300.42511151924,0.0010839584283530712,,,,,0,,3
+507527481,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,103,0.0,227,5696928916572,166,27.921138763427734,-592.3631146086623,0.18896154308382018,4,-351995.3753366385,3.4028234663852886E38,,,,,1,,3
+507527482,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,104,0.0,227,5696928040272,33,37.0236930847168,623.5303622952506,0.06714297604877575,1,357849.2989393674,0.0012569136451929808,,,,,0,,3
+507527483,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,105,0.0,227,5696936150743,39,33.64228057861328,-51.00142249205413,0.09986999341228159,1,-53883.22024682692,0.0018544868798926473,,,,,0,,3
+507527484,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,106,0.0,227,5696927886621,39,33.61723709106445,-708.3629598787866,0.09866343617517781,1,-425096.9216599225,0.0018591899424791336,,,,,0,,3
+507527484,608430000000,,,-1157840705570306027,0.0,9.811506159786664,,,0,26,0.0,1074,2486038,8,35.56888961791992,258.43099343948154,0.087497204640541,1,143184.61805066507,0.001235593343153596,,,,,0,,6
+507528478,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,10,0.0,47,254114923884214,19,33.47052764892578,-566.5542766541337,0.09959995484745376,1,-340102.91890496574,0.0019268118776381016,,,,,0,,1
+507528479,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,13,0.0,47,254114923455297,17,34.38423538208008,176.75985044054494,0.08964748645991799,1,87295.70074142564,0.001734418561682105,,,,,0,,1
+507528480,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,15,0.0,47,254114927638967,9,40.19233322143555,-61.93674884524839,0.046989485304272355,1,-57482.56503647506,8.886875002644956E-4,,,,,0,,1
+507528481,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,16,0.0,47,254114924119346,70,20.822711944580078,130.75578517737614,4.200741049578706,4,58786.63152223766,3.4028234663852886E38,,,,,0,,1
+507528482,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,18,0.0,47,254114930943176,38,27.839962005615234,-196.93373361078773,0.19108528951407333,1,-127180.47980796797,0.0034736928064376116,,,,,0,,1
+507528482,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,20,0.0,47,254114930334060,12,37.61715316772461,428.9910064613316,0.06321678273293341,1,248842.45467660285,0.0011953855864703655,,,,,0,,1
+507528483,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,21,0.0,47,254114930192482,14,36.401695251464844,21.742330127426598,0.07240720533597894,1,7882.43549415665,0.0013749310746788979,,,,,0,,1
+507528484,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,26,0.0,47,254114922844017,35,28.438989639282227,423.979419806848,0.1770254773908393,1,238080.2258033343,0.0032422009389847517,,,,,0,,1
+507528485,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,27,0.0,47,254114922016394,166,26.3963680267334,-588.3107786930132,0.2236736097519565,4,-355242.69131069235,3.4028234663852886E38,,,,,1,,1
+507528485,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,29,0.0,47,254114924978268,14,36.4039306640625,658.9288787942328,0.07145114084085824,1,386933.03730114375,0.0013745774049311876,,,,,0,,1
+507528486,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,93,0.0,99,3921368127,61,22.6401424407959,61.11625630753238,4.200246055151551,4,12142.397349307501,3.4028234663852886E38,,,,,0,,3
+507528487,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,94,0.0,227,5697920114116,78,27.647125244140625,533.3027163388929,0.1969804894157532,1,300783.9201967255,0.0035001197829842567,,,,,0,,3
+507528488,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,96,0.0,227,5697929092264,33,36.99238204956055,662.1370604267249,0.06756945192411556,1,380487.39494492253,0.0012650007847696543,,,,,0,,3
+507528489,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,97,0.0,227,5697936136639,33,38.654518127441406,49.34308518594494,0.057353164853649136,1,12349.701734310325,0.0010443147039040923,,,,,0,,3
+507528490,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,103,0.0,227,5697928918507,166,26.76224136352539,-591.8922995542562,0.2157040563550624,4,-352587.4460135123,3.4028234663852886E38,,,,,1,,3
+507528491,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,104,0.0,227,5697928038137,33,37.98772430419922,623.5673076781213,0.06024110802420579,1,358472.8108659583,0.0011248739901930094,,,,,0,,3
+507528492,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,105,0.0,227,5697936150929,33,35.5490837097168,-50.813968981178675,0.08075794804336289,1,-53934.179162830296,0.0014889620942994952,,,,,0,,3
+507528493,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,106,0.0,227,5697927888913,52,31.1805419921875,-708.2776855725665,0.1301554013376242,4,-425805.30500478833,3.4028234663852886E38,,,,,0,,3
+507528493,609430000000,,,-1157840705570305933,0.0,9.889632756199505,,,0,26,0.0,1074,2485173,10,33.7164421081543,258.48888249188553,0.1081905811337186,1,143443.0862822428,0.0015293186297640204,,,,,0,,6
+507529471,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,10,0.0,47,254115923886135,20,33.4337158203125,-566.4148112420423,0.10002038558005338,1,-340669.47944321705,0.0019349951762706041,,,,,0,,1
+507529471,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,13,0.0,47,254115923454697,21,32.866336822509766,176.95901127523598,0.10664721001108496,1,87472.53034844901,0.0020656127016991377,,,,,0,,1
+507529472,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,15,0.0,47,254115927639189,9,39.586448669433594,-61.82079606785072,0.05028504916303975,1,-57544.51351151731,9.528911905363202E-4,,,,,0,,1
+507529472,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,16,0.0,47,254115924118809,68,21.263835906982422,130.7255796002828,4.200740783309515,4,58917.09102883327,3.4028234663852886E38,,,,,0,,1
+507529472,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,18,0.0,47,254115930943802,34,28.648069381713867,-196.73629394015109,0.17428426934712626,1,-127377.34520468136,0.0031650897581130266,,,,,0,,1
+507529473,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,20,0.0,47,254115930332660,11,38.23186492919922,429.09025457472603,0.05902424533729647,1,249271.45343964302,0.0011137110413983464,,,,,0,,1
+507529473,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,21,0.0,47,254115930192383,14,36.026832580566406,21.81860027466405,0.07551966752097083,1,7904.175715134093,0.0014355690218508244,,,,,0,,1
+507529473,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,26,0.0,47,254115922842655,60,23.81789779663086,423.4569357483533,0.3010037413574569,4,238504.65636547183,3.4028234663852886E38,,,,,0,,1
+507529474,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,27,0.0,47,254115922018502,42,26.878280639648438,-588.1673597159652,0.21162166703516294,1,-355830.94613109576,0.0038803904317319393,,,,,0,,1
+507529474,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,29,0.0,47,254115924976074,14,36.28766632080078,658.9865463106694,0.07240148886927211,1,387591.92788251885,0.0013931004796177149,,,,,0,,1
+507529475,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,93,0.0,99,4921367797,61,22.597064971923828,61.31271610754399,4.200246055151551,4,12203.797215802817,3.4028234663852886E38,,,,,0,,3
+507529475,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,94,0.0,227,5698920112291,68,28.81414794921875,533.36498498696,0.17266999573132102,1,301317.2362966496,0.0030600728932768106,,,,,0,,3
+507529475,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,96,0.0,227,5698929090163,34,34.854286193847656,662.2338546032497,0.08597129079178062,1,381149.4755218027,0.0016180641250684857,,,,,0,,3
+507529476,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,97,0.0,227,5698936136450,33,38.80513000488281,49.546553191079056,0.05641711631291457,1,12399.104797714444,0.0010263626463711262,,,,,0,,3
+507529476,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,103,0.0,227,5698928920498,91,26.294532775878906,-591.8395399115589,0.22754904134269693,1,-353179.4569399039,0.004076987970620394,,,,,0,,3
+507529477,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,104,0.0,227,5698928036095,33,38.27808380126953,623.7248367921698,0.05830778983095283,1,359096.41151623405,0.0010878921020776033,,,,,0,,3
+507529477,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,105,0.0,227,5698936151058,33,35.0169677734375,-50.676373843889024,0.08567652247578439,1,-53984.985611927776,0.0015830306801944971,,,,,0,,3
+507529478,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,106,0.0,227,5698927891342,51,31.338329315185547,-708.2330375545216,0.12783831851154404,1,-426513.5975262973,0.0022787300404161215,,,,,0,,3
+507529478,610430000000,,,-1157840705570305845,0.0,10.298557945394263,,,0,26,0.0,1074,2484319,11,33.35078811645508,258.6019680826282,0.1128229827524847,1,143701.60480640703,0.0015950736124068499,,,,,0,,6
+507530474,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,10,0.0,47,254116923888037,24,31.605165481567383,-566.6465378639409,0.12329360266593159,1,-341236.0091826987,0.0022518073674291372,,,,,0,,1
+507530474,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,13,0.0,47,254116923454119,17,34.57835006713867,176.98685664221512,0.0876797654550211,1,87649.45083386062,0.001696087303571403,,,,,0,,1
+507530475,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,15,0.0,47,254116927639405,10,38.896392822265625,-61.73489975679911,0.054329349507174274,1,-57606.31424951379,0.0010316824773326516,,,,,0,,1
+507530475,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,16,0.0,47,254116924118285,73,20.38247299194336,130.64605670860095,4.200740783309515,4,59047.93512914312,3.4028234663852886E38,,,,,0,,1
+507530475,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,18,0.0,47,254116930944498,44,26.464374542236328,-196.78164064855468,0.2235379622406687,1,-127574.13441946084,0.004069778602570295,,,,,0,,1
+507530476,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,20,0.0,47,254116930331215,11,38.30837631225586,429.0956055204001,0.05852263578491254,1,249700.51856313355,0.001103943563066423,,,,,0,,1
+507530476,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,21,0.0,47,254116930192330,13,36.632850646972656,21.825246353685998,0.0705537637397452,1,7925.961546536022,0.0013388232327997684,,,,,0,,1
+507530476,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,26,0.0,47,254116922841263,45,26.324325561523438,424.09679978711256,0.22568189520400883,1,238928.61618896827,0.004135930445045233,,,,,0,,1
+507530477,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,27,0.0,47,254116922020412,36,28.15108299255371,-588.1806518740091,0.18282618501315562,1,-356419.1410645114,0.0033514697570353746,,,,,0,,1
+507530477,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,29,0.0,47,254116924973878,13,36.6257209777832,658.9547132962771,0.06967153485935965,1,388250.87313161185,0.0013399224262684584,,,,,0,,1
+507530478,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,93,0.0,99,5921367304,72,20.484771728515625,60.10791405038384,4.200246055151551,4,12265.343938002314,3.4028234663852886E38,,,,,0,,3
+507530478,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,94,0.0,227,5699920110425,71,28.47686195373535,533.453054054615,0.17936332089295082,1,301850.605240907,0.0031812377274036407,,,,,0,,3
+507530479,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,96,0.0,227,5699929087923,34,34.76731872558594,662.2727086036857,0.0868195578688708,1,381811.6743518061,0.0016343463212251663,,,,,0,,3
+507530480,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,97,0.0,227,5699936136299,33,39.25595474243164,49.57942998070237,0.053710352685406665,1,12448.621999320954,9.744499693624675E-4,,,,,0,,3
+507530480,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,103,0.0,227,5699928922387,116,24.201435089111328,-592.3046972781822,0.289117318226882,4,-353771.3334517804,3.4028234663852886E38,,,,,0,,3
+507530481,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,104,0.0,227,5699928034002,33,37.33692169189453,623.7107948200824,0.0648149054580866,1,359720.09466680564,0.0012123944470658898,,,,,0,,3
+507530481,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,105,0.0,227,5699936151263,35,34.484580993652344,-50.58957434773956,0.0909085872767354,1,-54035.63387219864,0.0016830952372401953,,,,,0,,3
+507530482,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,106,0.0,227,5699927893563,58,30.24357032775879,-708.1014111074305,0.14482008553410353,1,-427221.79422250425,0.0025848227087408304,,,,,0,,3
+507530482,611430000000,,,-1157840705570305757,0.0,10.43457288392411,,,0,26,0.0,1074,2483444,8,35.392913818359375,258.58981768687784,0.08927837079308404,1,143960.1721002298,0.0012608818942680955,,,,,0,,6
+507531484,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,10,0.0,47,254117923889871,26,31.050445556640625,-566.460549898696,0.13137878345927123,1,-341802.39252227254,0.002400309080258012,,,,,0,,1
+507531484,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,13,0.0,47,254117923453500,10,38.89485549926758,177.129355392937,0.0535857969501308,1,87826.5648407331,0.0010318650165572762,,,,,0,,1
+507531484,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,15,0.0,47,254117927639582,11,38.2560920715332,-61.635579218184574,0.05838059365257059,1,-57667.9370803164,0.0011106088059023023,,,,,0,,1
+507531485,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,16,0.0,47,254117924117790,88,17.38027572631836,131.12605698503995,4.200740783309515,4,59178.526220477535,3.4028234663852886E38,,,,,0,,1
+507531485,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,18,0.0,47,254117930945109,46,26.08148193359375,-196.66119324720307,0.23352380580718712,1,-127770.78766069168,0.0042531960643827915,,,,,0,,1
+507531485,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,20,0.0,47,254117930329791,11,38.468990325927734,429.1911727284901,0.057484206740013755,1,250129.72121338514,0.001083717797882855,,,,,0,,1
+507531485,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,21,0.0,47,254117930192254,14,36.421302795410156,21.90874624201335,0.0722480346057971,1,7947.863591449571,0.001371830701828003,,,,,0,,1
+507531486,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,26,0.0,47,254117922839802,37,28.023672103881836,424.09008554317757,0.18566979020285734,1,239352.67225805737,0.003400993999093771,,,,,0,,1
+507531486,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,27,0.0,47,254117922022499,28,30.360151290893555,-588.1355948664859,0.14185218255740528,1,-357007.2234806465,0.0025988544803112745,,,,,0,,1
+507531486,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,29,0.0,47,254117924971685,15,35.719459533691406,658.9828654053649,0.07723485716038658,1,388909.9236908572,0.0014872802421450615,,,,,0,,1
+507531486,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,93,0.0,99,6921367159,87,17.56891441345215,60.37332692024816,4.200246055151551,4,12326.96570449887,3.4028234663852886E38,,,,,0,,3
+507531487,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,94,0.0,227,5700920108723,61,29.7834415435791,533.4726855495721,0.15481864345452012,1,302384.1337105577,0.002736951457336545,,,,,0,,3
+507531487,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,96,0.0,227,5700929085698,33,35.579132080078125,662.2281287505539,0.07921822148028906,1,382473.9879284861,0.0014885154087096453,,,,,0,,3
+507531487,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,97,0.0,227,5700936136123,33,39.9321403503418,49.6708945130884,0.049905037261631424,1,12498.308457062587,9.014678653329611E-4,,,,,0,,3
+507531487,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,103,0.0,227,5700928924497,128,23.354341506958008,-592.359638198097,0.31857028545020927,4,-354362.9032023509,3.4028234663852886E38,,,,,0,,3
+507531488,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,104,0.0,227,5700928031923,33,38.12491989135742,623.7365611572136,0.05931860592859309,1,360343.8839182665,0.0011072459165006876,,,,,0,,3
+507531488,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,105,0.0,227,5700936151434,39,33.69135284423828,-50.35861458111273,0.09932384201669292,1,-54086.052900282084,0.0018440388375893235,,,,,0,,3
+507531488,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,106,0.0,227,5700927896018,35,34.556514739990234,-708.1288815673879,0.0886978540299565,1,-427929.8789451493,0.0016686292365193367,,,,,0,,3
+507531488,612430000000,,,-1157840705570305672,0.0,10.623502491104833,,,0,26,0.0,1074,2482588,8,35.96230697631836,258.66871857372814,0.08364170995552045,1,144218.87127532848,0.001180877210572362,,,,,0,,6
+507532456,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,10,0.0,47,254118923891791,25,31.38959503173828,-566.5288852240242,0.12637496128098152,1,-342368.8183937018,0.0023083931300789118,,,,,0,,1
+507532457,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,13,0.0,47,254118923452905,8,40.739524841308594,177.20934691839602,0.04345149582793567,1,88003.7591640737,8.344289963133633E-4,,,,,0,,1
+507532458,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,15,0.0,47,254118927639797,11,38.650726318359375,-61.51579216442809,0.0558485733424961,1,-57729.49159976946,0.0010612785117700696,,,,,0,,1
+507532459,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,16,0.0,47,254118924117478,65,21.772968292236328,130.8488814073682,4.200740783309515,4,59309.753169608644,3.4028234663852886E38,,,,,0,,1
+507532460,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,18,0.0,47,254118930945808,47,26.03227424621582,-196.63828983641974,0.2348394585246304,1,-127967.42070543411,0.004277359694242477,,,,,0,,1
+507532461,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,20,0.0,47,254118930328367,11,38.014320373535156,429.2079753795558,0.060473298919723556,1,250558.93642005962,0.0011419567745178938,,,,,0,,1
+507532462,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,21,0.0,47,254118930192191,13,36.973114013671875,21.840018968435103,0.06791371718655367,1,7969.746395044522,0.0012873896630480886,,,,,0,,1
+507532463,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,26,0.0,47,254118922838431,45,26.407730102539062,424.1374601577443,0.22352954147748483,1,239776.77100955826,0.004096405580639839,,,,,0,,1
+507532463,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,27,0.0,47,254118922024508,29,30.080419540405273,-588.1376398138773,0.14648338596480925,1,-357595.3296291568,0.002683913568034768,,,,,0,,1
+507532464,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,29,0.0,47,254118924969508,15,35.63896942138672,659.0089044021483,0.07794519679623602,1,389568.966260853,0.0015011264476925135,,,,,0,,1
+507532465,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,93,0.0,99,7921366863,107,13.728960037231445,60.500820869485864,4.200245788882359,4,12387.77075988162,3.4028234663852886E38,,,,,0,,3
+507532467,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,94,0.0,227,5701920106836,77,27.744592666625977,533.6782368448612,0.19482151224308852,1,302917.73384011106,0.0034610633738338947,,,,,0,,3
+507532467,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,96,0.0,227,5701929083521,34,34.7745361328125,662.3662990292974,0.08674799802363248,1,383136.3445494178,0.001632988452911377,,,,,0,,3
+507532468,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,97,0.0,227,5701936135965,33,39.67530822753906,49.770909481754586,0.05131556502040113,1,12548.065475512805,9.285213891416788E-4,,,,,0,,3
+507532468,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,103,0.0,227,5701928926419,166,28.152847290039062,-591.8236574868192,0.18403131937426687,4,-354954.5852847139,3.4028234663852886E38,,,,,1,,3
+507532468,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,104,0.0,227,5701928029857,33,38.7474479675293,623.7917747367806,0.0553154982604879,1,360967.69743437006,0.001030665123835206,,,,,0,,3
+507532469,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,105,0.0,227,5701936151578,36,34.296409606933594,-50.34139868026165,0.09283595185728277,1,-54136.39488303404,0.001719955587759614,,,,,0,,3
+507532469,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,106,0.0,227,5701927898414,33,37.818424224853516,-708.1164755532136,0.061373209738612766,1,-428637.96725276625,0.0011462104739621282,,,,,0,,3
+507532469,613430000000,,,-1157840705570305588,0.0,10.403967375502198,,,0,26,0.0,1074,2481717,9,35.327552795410156,258.6587153727387,0.08994901135665068,1,144477.54271917607,0.0012704055989161134,,,,,0,,6
+507533471,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,10,0.0,47,254119923893670,17,34.432838439941406,-566.4516543775435,0.08922954368007724,1,-342935.2061205654,0.0017247407231479883,,,,,0,,1
+507533472,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,13,0.0,47,254119923452323,9,39.930908203125,177.30701019756214,0.04763019554652245,1,88181.03584627918,9.1584149049595E-4,,,,,0,,1
+507533473,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,15,0.0,47,254119927640009,11,38.65039825439453,-61.43611590169189,0.05585065773101147,1,-57790.9468970579,0.0010613186750561,,,,,0,,1
+507533474,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,16,0.0,47,254119924116994,62,23.534168243408203,130.8301530975089,0.3112108046967086,1,59440.55562654048,0.005702706053853035,,,,,0,,1
+507533475,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,18,0.0,47,254119930946453,48,25.837631225585938,-196.57879890855918,0.24011696382730774,1,-128164.0385908772,0.004374293610453606,,,,,0,,1
+507533475,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,20,0.0,47,254119930326938,12,37.713218688964844,429.23653647812193,0.06254062956500975,1,250988.19032893414,0.0011822378728538752,,,,,0,,1
+507533477,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,21,0.0,47,254119930192103,14,36.34689712524414,21.91154100344822,0.0728537886957395,1,7991.649444006222,0.001383632654324174,,,,,0,,1
+507533479,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,26,0.0,47,254119922836911,53,24.97479248046875,424.2183719095294,0.26353029675434503,1,240200.9410463548,0.004831142723560333,,,,,0,,1
+507533479,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,27,0.0,47,254119922026438,33,28.872222900390625,-588.0786089991798,0.16829023364989515,1,-358183.4532112237,0.003084454219788313,,,,,0,,1
+507533480,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,29,0.0,47,254119924967295,13,36.825714111328125,659.0423733744537,0.06810486102200625,1,390228.04034121335,0.001309423241764307,,,,,0,,1
+507533481,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,93,0.0,99,8921366728,93,16.51746940612793,60.68145788905676,4.200245788882359,4,12449.413598437608,3.4028234663852886E38,,,,,0,,3
+507533482,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,94,0.0,227,5702920105277,103,25.224525451660156,533.8563176801929,0.25918187122840375,4,303451.35700206744,3.4028234663852886E38,,,,,0,,3
+507533483,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,96,0.0,227,5702929081258,33,35.136016845703125,662.3637087626016,0.08327811937441187,1,383798.7339017836,0.0015664231032133102,,,,,0,,3
+507533484,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,97,0.0,227,5702936135807,33,39.760887145996094,49.82825747516128,0.05084090274229677,1,12597.889173652382,9.194177691824734E-4,,,,,0,,3
+507533485,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,103,0.0,227,5702928928219,111,24.561389923095703,-591.3991945732841,0.27744702247075137,4,-355546.3921128828,3.4028234663852886E38,,,,,0,,3
+507533486,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,104,0.0,227,5702928027732,33,38.64466857910156,623.8235395862598,0.05595634995824603,1,361591.55712027533,0.0010429334361106157,,,,,0,,3
+507533487,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,105,0.0,227,5702936151710,38,33.813758850097656,-50.26290252258255,0.09797460609746106,1,-54186.612478527764,0.001818234333768487,,,,,0,,3
+507533488,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,106,0.0,227,5702927900742,33,36.96583557128906,-708.0012086852535,0.06755692895119886,1,-429345.972325801,0.001264427206479013,,,,,0,,3
+507533488,614430000000,,,-1157840705570305503,0.0,10.29510643550571,,,0,26,0.0,1074,2480860,8,36.1722412109375,258.69325794242457,0.08165472603879487,1,144736.2522492199,0.0011526780435815454,,,,,0,,6
+507534451,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,10,0.0,47,254120923895562,16,34.92491149902344,-566.4283419772819,0.08435398004300887,1,-343501.5895873259,0.0016297466354444623,,,,,0,,1
+507534451,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,13,0.0,47,254120923451738,9,39.67737579345703,177.39451690468445,0.04902247554475639,1,88358.40308123085,9.429679485037923E-4,,,,,0,,1
+507534451,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,15,0.0,47,254120927640188,10,38.73492431640625,-61.30165635040234,0.05532311189518477,1,-57852.3136318575,0.0010510405991226435,,,,,0,,1
+507534452,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,16,0.0,47,254120924116534,64,22.06760597229004,130.8833217296845,4.200740517040323,4,59571.48076402206,3.4028234663852886E38,,,,,0,,1
+507534452,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,18,0.0,47,254120930947168,46,26.105432510375977,-196.64820783126788,0.23288655706442762,1,-128360.61221703059,0.004241484217345715,,,,,0,,1
+507534452,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,20,0.0,47,254120930325484,10,38.689720153808594,429.3228332580377,0.056087641471977756,1,251417.48600364506,0.0010565248085185885,,,,,0,,1
+507534453,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,21,0.0,47,254120930192018,14,36.08829116821289,21.95151333448888,0.075000051514506,1,8013.565963006395,0.0014254475245252252,,,,,0,,1
+507534453,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,26,0.0,47,254120922835527,41,27.161468505859375,424.21844007444247,0.20499196356849736,1,240625.1547160982,0.0037559173069894314,,,,,0,,1
+507534453,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,27,0.0,47,254120922028390,37,28.05498504638672,-588.023668079265,0.18485751939210449,1,-358771.53298928053,0.0033887550234794617,,,,,0,,1
+507534453,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,29,0.0,47,254120924965120,15,35.547428131103516,659.0395104481058,0.07876072940458578,1,390887.11966398696,0.0015170304104685783,,,,,0,,1
+507534454,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,93,0.0,99,9921366711,81,18.840999603271484,61.28101516267071,4.200245788882359,4,12511.577954385308,3.4028234663852886E38,,,,,0,,3
+507534454,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,94,0.0,227,5703920103328,125,23.56952476501465,533.820599265757,0.31282512823798725,4,303985.0325994331,3.4028234663852886E38,,,,,0,,3
+507534454,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,96,0.0,227,5703929079038,33,36.69639587402344,662.4264204826036,0.0698526270328299,1,384461.1789365793,0.001308850827626884,,,,,0,,3
+507534455,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,97,0.0,227,5703936135641,33,39.895050048828125,49.95252637195051,0.050106082982646044,1,12647.808406565526,9.053255198523402E-4,,,,,0,,3
+507534455,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,103,0.0,227,5703928930240,61,22.677982330322266,-591.6252975898565,4.201606424451356,4,-356136.9724894088,3.4028234663852886E38,,,,,0,,3
+507534456,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,104,0.0,227,5703928025673,33,38.81132888793945,623.8893187273488,0.05491998866003814,1,362215.44381898246,0.0010231130290776491,,,,,0,,3
+507534456,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,105,0.0,227,5703936151942,46,32.08389663696289,-50.100320684354614,0.11892552314528648,1,-54236.708238591804,0.0022189265582710505,,,,,0,,3
+507534456,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,106,0.0,227,5703927903053,38,33.829833984375,-707.9412235617733,0.09631509168182317,1,-430053.9914178054,0.0018142363987863064,,,,,0,,3
+507534457,615430000000,,,-1157840705570305414,0.0,9.928579943704605,,,0,26,0.0,1074,2480003,7,36.56191635131836,258.7308679331975,0.07809181959076444,1,144994.97222613872,0.0011021083919331431,,,,,0,,6
+507535488,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,10,0.0,47,254121923897494,22,32.35114288330078,-566.3342062323659,0.11320593609636881,1,-344067.9081121435,0.002191838575527072,,,,,0,,1
+507535489,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,13,0.0,47,254121923451148,9,39.77322006225586,177.49354348211148,0.04849121858207198,1,88535.92648658241,9.32619848754257E-4,,,,,0,,1
+507535489,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,15,0.0,47,254121927640408,11,38.11906433105469,-61.236976368536176,0.05928721112672283,1,-57913.52855699254,0.0011282686609774828,,,,,0,,1
+507535490,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,16,0.0,47,254121924116099,68,21.254837036132812,130.87354006466245,4.200740517040323,4,59702.52602261986,3.4028234663852886E38,,,,,0,,1
+507535490,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,18,0.0,47,254121930947804,42,26.934228897094727,-196.30639487480062,0.21187142753686916,1,-128557.03786659207,0.003855476388707757,,,,,0,,1
+507535490,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,20,0.0,47,254121930324077,11,38.3671875,429.31363099477653,0.058138983484400525,1,251846.87384388113,0.0010964941466227174,,,,,0,,1
+507535490,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,21,0.0,47,254121930191946,14,36.0654182434082,21.955051519506654,0.07519296354380894,1,8035.542118418523,0.001429205876775086,,,,,0,,1
+507535491,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,26,0.0,47,254121922834138,44,26.456375122070312,424.4538476016455,0.22228326852627378,1,241049.50759159744,0.004073528107255697,,,,,0,,1
+507535491,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,27,0.0,47,254121922030412,41,27.1816463470459,-588.2458856957937,0.20437267135434534,1,-359359.56952411635,0.003747202455997467,,,,,0,,1
+507535491,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,29,0.0,47,254121924962933,18,34.22810363769531,659.289266689505,0.09153341289752503,1,391546.30393514386,0.0017658773576840758,,,,,0,,1
+507535492,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,93,0.0,99,10921366663,166,22.137611389160156,61.98731016949998,4.200245788882359,4,12573.91818795692,3.4028234663852886E38,,,,,1,,3
+507535492,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,94,0.0,227,5704920101621,100,25.45452880859375,533.9351163196736,0.252502625050279,1,304518.8404413053,0.004505186807364225,,,,,0,,3
+507535492,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,96,0.0,227,5704929076838,33,37.44715118408203,662.5793143825649,0.06420336001322724,1,385123.7252904699,0.0012004729360342026,,,,,0,,3
+507535493,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,97,0.0,227,5704936135469,33,39.61681365966797,50.05178300595907,0.05164261431542086,1,12697.864410793323,9.347955347038805E-4,,,,,0,,3
+507535493,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,103,0.0,227,5704928932241,131,23.117109298706055,-591.9055917123001,0.3273480823363335,4,-356728.78108418075,3.4028234663852886E38,,,,,0,,3
+507535493,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,104,0.0,227,5704928023580,33,38.443084716796875,624.1314404984869,0.0572355404382667,1,362839.4621826272,0.0010674212826415896,,,,,0,,3
+507535494,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,105,0.0,227,5704936152037,44,32.647945404052734,-49.872453900657234,0.11163078740990201,1,-54286.618674135745,0.002079411642625928,,,,,0,,3
+507535494,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,106,0.0,227,5704927905437,52,31.137004852294922,-707.7892158056816,0.1308052562624228,1,-430761.8702328756,0.0023321642074733973,,,,,0,,3
+507535494,616430000000,,,-1157840705570305326,0.0,9.733070199929898,,,0,26,0.0,1074,2479137,7,36.9000244140625,258.86961761370185,0.07512727826260995,1,145253.77189298786,0.0010600317036733031,,,,,0,,6
+507536463,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,10,0.0,47,254122923899348,12,37.31395721435547,-566.2401386523629,0.06423894439440883,1,-344634.18987431156,0.0012378495885059237,,,,,0,,1
+507536464,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,13,0.0,47,254122923450538,14,36.56432342529297,177.63987650919216,0.06988539478521927,1,88713.55380881128,0.0013494273880496621,,,,,0,,1
+507536465,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,15,0.0,47,254122927640587,17,34.720733642578125,-61.12009910450533,0.08701732099000792,1,-57974.64855103442,0.0016685109585523605,,,,,0,,1
+507536466,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,16,0.0,47,254122924115765,72,20.47669792175293,131.37830124576527,4.200740250771132,4,59833.74962459743,3.4028234663852886E38,,,,,0,,1
+507536468,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,18,0.0,47,254122930948446,17,34.560977935791016,-196.3493217287911,0.08920207634878285,1,-128753.4078854925,0.0016994830220937729,,,,,0,,1
+507536469,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,20,0.0,47,254122930322623,13,37.08174514770508,429.40374500982284,0.06711588731898815,1,252276.31169874783,0.0012713890755549073,,,,,0,,1
+507536470,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,21,0.0,47,254122930191897,20,33.36177444458008,21.990262957401782,0.10198066768941039,1,8057.525134120128,0.001951088896021247,,,,,0,,1
+507536470,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,26,0.0,47,254122922832718,46,26.115280151367188,424.4442363489061,0.23116530980090333,1,241473.91661503154,0.004236678592860699,,,,,0,,1
+507536471,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,27,0.0,46,254122922032321,1000000000,22.66333770751953,-588.4597871929309,2.99792458E8,4,-359948.05203765456,3.4028234663852886E38,,,,,0,,1
+507536472,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,29,0.0,47,254122924960717,13,36.95366668701172,659.2359617275033,0.0671208424222253,1,392205.5103510562,0.0012902753660455346,,,,,0,,1
+507536473,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,93,0.0,99,11921366283,166,20.858713150024414,62.949807262318274,4.200245788882359,4,12636.432763806753,3.4028234663852886E38,,,,,1,,3
+507536474,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,94,0.0,227,5705920099686,93,26.08924102783203,533.8597259258452,0.23496373966980244,1,305052.6933508221,0.0041877152398228645,,,,,0,,3
+507536475,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,96,0.0,227,5705929074567,39,33.58662796020508,662.516738992389,0.09922042971941131,1,385786.29318828275,0.0018723133252933621,,,,,0,,3
+507536477,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,97,0.0,227,5705936135286,33,39.03402328491211,50.16284495084571,0.05502507762113551,1,12748.004991517455,9.996687294915318E-4,,,,,0,,3
+507536478,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,103,0.0,227,5705928934427,65,21.890504837036133,-592.3250104222698,4.2016072232589305,4,-357320.8343095162,3.4028234663852886E38,,,,,0,,3
+507536479,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,104,0.0,227,5705928021499,33,38.90041732788086,624.038940711484,0.05437355435343341,1,363463.50138112437,0.001012672670185566,,,,,0,,3
+507536479,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,105,0.0,227,5705936152343,33,35.1815299987793,-49.74539876304726,0.08412333267671107,1,-54336.4211817427,0.0015533212572336197,,,,,0,,3
+507536480,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,106,0.0,227,5705927907772,41,33.17980194091797,-707.7990315531601,0.10369005765299694,1,-431469.7414799308,0.001955219078809023,,,,,0,,3
+507536481,617430000000,,,-1157840705570305236,0.0,9.654211947042986,,,0,26,0.0,1074,2478281,6,37.665565490722656,258.812325004287,0.0688267376026723,1,145512.59814455794,9.70603374298662E-4,,,,,0,,6
+507537519,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,10,0.0,47,254123923901255,12,37.34309387207031,-566.2472278033197,0.06402652814682233,1,-345200.45022627985,0.0012337040388956666,,,,,0,,1
+507537519,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,13,0.0,47,254123923449951,11,38.446510314941406,177.99823649830125,0.056390830551157844,1,88891.33289512823,0.0010865263175219297,,,,,0,,1
+507537519,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,15,0.0,47,254123927640781,18,33.966888427734375,-60.63205110801988,0.09478236300594067,1,-58035.59654675785,0.001715714344754815,,,,,0,,1
+507537520,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,16,0.0,47,254123924115288,73,20.36417007446289,132.20568696031302,4.200740250771132,4,59965.04589509138,3.4028234663852886E38,,,,,0,,1
+507537520,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,18,0.0,47,254123930949080,12,37.85226821899414,-196.2929323044741,0.061688801137482124,1,-128949.72730842332,0.0011634622933343053,,,,,0,,1
+507537520,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,20,0.0,47,254123930321157,13,36.594337463378906,429.6617492057005,0.07088233992216042,1,252705.82868429448,0.0013447725214064121,,,,,0,,1
+507537520,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,21,0.0,47,254123930191804,19,33.59148406982422,22.046311557153544,0.09936683617022157,1,8079.565064257668,0.0019001658074557781,,,,,0,,1
+507537521,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,26,0.0,47,254123922831362,36,28.134319305419922,424.308894914054,0.1833245244470304,1,241898.31930534894,0.003357944544404745,,,,,0,,1
+507537521,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,27,0.0,47,254123922034106,76,19.80536651611328,-588.3820110271458,4.200365876287764,4,-360537.57130675367,3.4028234663852886E38,,,,,0,,1
+507537521,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,29,0.0,47,254123924958571,19,33.616180419921875,659.4978513234246,0.09814857973051255,1,392864.7297666675,0.001786407083272934,,,,,0,,1
+507537521,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,93,0.0,99,12921366363,166,18.712060928344727,63.60329576307251,4.200245788882359,4,12699.012871730043,3.4028234663852886E38,,,,,1,,3
+507537522,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,94,0.0,227,5706920097945,60,22.913551330566406,532.531975667086,4.203615159232669,4,305586.5354902233,3.4028234663852886E38,,,,,0,,3
+507537522,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,96,0.0,227,5706929072326,41,33.08195495605469,662.8744684560525,0.1050581321175334,1,386449.0050573134,0.001984321977943182,,,,,0,,3
+507537522,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,97,0.0,227,5706936135125,33,36.25998306274414,50.410483819633384,0.07463701011360507,1,12798.264389476855,0.0013758090790361166,,,,,0,,3
+507537522,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,103,0.0,227,5706928936277,115,24.24094009399414,-591.5298667115926,0.2878151620290872,4,-357912.6128416612,3.4028234663852886E38,,,,,0,,3
+507537523,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,104,0.0,227,5706928019367,33,38.69316864013672,624.2325972294466,0.0556513094760932,1,364087.61364629725,0.0010371262906119227,,,,,0,,3
+507537523,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,105,0.0,227,5706936152385,33,38.43091583251953,-49.49726995894707,0.05877590771158278,1,-54386.051465396515,0.001068543060682714,,,,,0,,3
+507537523,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,106,0.0,227,5706927910192,36,34.20193862915039,-707.7007377485484,0.09233698003407798,1,-432177.548681897,0.0017381554935127497,,,,,0,,3
+507537523,618430000000,,,-1157840705570305146,0.0,9.570281406121698,,,0,26,0.0,1074,2477412,6,38.063419342041016,258.92869955208414,0.06576504546369455,1,145771.47202371375,9.271481540054083E-4,,,,,0,,6
+507538408,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,10,0.0,47,254124923903080,17,34.712223052978516,-565.2450331692664,0.08642897424846535,4,-345766.18931312824,3.4028234663852886E38,,,,,0,,1
+507538409,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,13,0.0,47,254124923449335,12,37.4901237487793,177.52972200971044,0.0628823195051105,4,89068.80710293651,3.4028234663852886E38,,,,,0,,1
+507538409,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,15,0.0,47,254124927641017,14,36.22718811035156,-60.413931906888024,0.07338046915669355,4,-58096.46259650928,3.4028234663852886E38,,,,,0,,1
+507538409,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,16,0.0,47,254124924114967,59,22.93393325805664,131.63694448770275,4.200740250771132,4,60096.09699927379,3.4028234663852886E38,,,,,0,,1
+507538410,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,18,0.0,47,254124930949753,16,35.1181755065918,-195.58640298075625,0.0837820671031344,4,-129145.31533160536,3.4028234663852886E38,,,,,0,,1
+507538410,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,20,0.0,47,254124930319776,15,35.88164520263672,430.8639056121731,0.0767846042783295,4,253136.04141768892,3.4028234663852886E38,,,,,0,,1
+507538410,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,21,0.0,47,254124930191756,20,33.444271087646484,22.65345856780442,0.10103398918329304,4,8101.935451297075,3.4028234663852886E38,,,,,0,,1
+507538411,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,26,0.0,47,254124922829866,31,29.637357711791992,425.0196163799242,0.15427507154172493,4,242323.1359417385,3.4028234663852886E38,,,,,0,,1
+507538411,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,27,0.0,47,254124922036233,26,31.087417602539062,-588.2118032392709,0.13049030141333956,4,-361126.03681465157,3.4028234663852886E38,,,,,0,,1
+507538411,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,29,0.0,47,254124924956297,18,34.31168746948242,660.2415986896654,0.0906641604797731,4,393524.2618013233,3.4028234663852886E38,,,,,0,,1
+507538411,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,93,0.0,99,13921366156,74,20.114126205444336,63.426552664159345,4.200245788882359,4,12762.66154575221,3.4028234663852886E38,,,,,0,,3
+507538412,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,94,0.0,227,5707920096272,81,27.25084114074707,533.4684934074198,0.20600353686915118,4,306120.16206580936,3.4028234663852886E38,,,,,0,,3
+507538412,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,96,0.0,227,5707929070277,33,35.48424530029297,663.2634174498908,0.08006763684326795,4,387112.02854711044,3.4028234663852886E38,,,,,0,,3
+507538413,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,97,0.0,227,5707936134965,33,35.79807662963867,51.0881112202199,0.07855501981226232,4,12849.496708264349,3.4028234663852886E38,,,,,0,,3
+507538413,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,103,0.0,227,5707928938317,59,30.041046142578125,-592.3758614474018,0.1483908718860224,4,-358504.87797136616,3.4028234663852886E38,,,,,0,,3
+507538413,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,104,0.0,227,5707928017353,33,38.21881103515625,624.8141802675518,0.058693763665978976,4,364712.43999322527,3.4028234663852886E38,,,,,0,,3
+507538413,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,105,0.0,227,5707936152627,33,37.18918228149414,-49.64556272727782,0.0673623485789924,1,-54435.48165019453,0.0012327601434662938,,,,,0,,3
+507538414,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,106,0.0,227,5707927912520,33,35.56950378417969,-707.9575831409043,0.07909324969940135,4,-432885.17360307806,3.4028234663852886E38,,,,,0,,3
+507538414,619430000000,,,-1157840705570305054,0.0,9.880664397440697,,,0,26,0.0,1074,2476533,6,37.92535400390625,259.5150882165591,0.06681148338662146,4,146030.55597955626,3.4028234663852886E38,,,,,0,,6
+507539488,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,10,0.0,47,254125923904999,17,34.71996307373047,-566.2197573433623,0.08635297103609246,4,-346331.3889663073,3.4028234663852886E38,,,,,0,,1
+507539488,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,13,0.0,47,254125923448766,9,39.88300323486328,177.72700830929273,0.047889537578669594,4,89246.41195344372,3.4028234663852886E38,,,,,0,,1
+507539489,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,15,0.0,47,254125927641226,13,37.06716537475586,-61.54550780620892,0.066743218622629,4,-58157.432923395994,3.4028234663852886E38,,,,,0,,1
+507539489,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,16,0.0,47,254125924114436,42,26.914337158203125,131.34848761692194,0.2111234940195329,4,60227.36821216309,3.4028234663852886E38,,,,,0,,1
+507539490,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,18,0.0,47,254125930950424,19,33.56252670288086,-196.54379622571025,0.09982898795677758,4,-129341.1111199949,3.4028234663852886E38,,,,,0,,1
+507539490,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,20,0.0,47,254125930318331,13,36.652984619140625,429.1340164489013,0.07041734238361935,4,253566.03401570205,3.4028234663852886E38,,,,,0,,1
+507539490,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,21,0.0,47,254125930191656,16,34.95311737060547,21.68361031514486,0.08521526102683774,4,8124.5038926838015,3.4028234663852886E38,,,,,0,,1
+507539491,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,26,0.0,47,254125922828487,31,29.647136688232422,424.2370150132474,0.15410179686530134,4,242748.54087912416,3.4028234663852886E38,,,,,0,,1
+507539491,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,27,0.0,47,254125922038211,20,33.201316833496094,-587.22879702824,0.1023812696881492,4,-361712.90932963695,3.4028234663852886E38,,,,,0,,1
+507539491,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,29,0.0,47,254125924954116,11,38.62223815917969,659.225123506329,0.05554443151886487,4,394184.6046877709,3.4028234663852886E38,,,,,0,,1
+507539492,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,93,0.0,99,14921365722,69,21.12432861328125,63.766218425865674,4.200245788882359,4,12827.619074836624,3.4028234663852886E38,,,,,0,,3
+507539492,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,94,0.0,227,5708920094499,90,26.401676177978516,535.2677403697155,0.22678902586079253,4,306653.79901731585,3.4028234663852886E38,,,,,0,,3
+507539493,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,96,0.0,227,5708929068002,33,36.287437438964844,662.0849824331581,0.07313941232918725,4,387774.73889759334,3.4028234663852886E38,,,,,0,,3
+507539493,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,97,0.0,227,5708936134811,33,36.951995849609375,49.650287407813295,0.06914353969427214,4,12900.622084614875,3.4028234663852886E38,,,,,0,,3
+507539493,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,103,0.0,227,5708928940307,39,33.56800842285156,-591.7246138681639,0.09940568650945619,4,-359096.99880043784,3.4028234663852886E38,,,,,0,,3
+507539494,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,104,0.0,227,5708928015241,33,38.52655029296875,623.5481533375555,0.0567004641768655,4,365336.91990246065,3.4028234663852886E38,,,,,0,,3
+507539494,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,105,0.0,227,5708936152749,33,38.06121063232422,-49.379979445130886,0.06120539358061666,4,-54485.55717477044,3.4028234663852886E38,,,,,0,,3
+507539494,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,106,0.0,227,5708927914913,35,34.44558334350586,-707.4781111425414,0.08982309099176794,4,-433592.860679468,3.4028234663852886E38,,,,,0,,3
+507539495,620430000000,,,-1157840705570304962,0.0,10.376377564199505,,,0,26,0.0,1074,2475685,7,37.05140686035156,258.62923404784647,0.07383634697542285,4,146289.53232148406,3.4028234663852886E38,,,,,0,,6
+507540500,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,10,0.0,47,254126923906866,11,38.13874053955078,-566.1732007077521,0.05848458841370879,4,-346896.826113845,3.4028234663852886E38,,,,,0,,1
+507540501,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,13,0.0,47,254126923448164,10,38.79177474975586,178.22699794648236,0.0542171336847459,4,89424.81789945894,3.4028234663852886E38,,,,,0,,1
+507540501,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,15,0.0,47,254126927641432,14,36.23031997680664,-60.279919687840334,0.07335459944054867,4,-58217.27144666033,3.4028234663852886E38,,,,,0,,1
+507540501,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,16,0.0,47,254126924114003,40,27.443359375,131.55541073108606,0.19869221755567834,4,60359.029457436714,3.4028234663852886E38,,,,,0,,1
+507540502,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,18,0.0,47,254126930951049,14,36.5488395690918,-196.16919594606804,0.0713581546466096,4,-129538.08265602913,3.4028234663852886E38,,,,,0,,1
+507540502,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,20,0.0,47,254126930316877,10,38.87887191772461,429.6800855673098,0.054917904271522766,4,253996.5685845573,3.4028234663852886E38,,,,,0,,1
+507540502,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,21,0.0,47,254126930191617,19,33.863651275634766,22.924079663056133,0.09635801926805393,4,8147.336141837146,3.4028234663852886E38,,,,,0,,1
+507540503,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,26,0.0,47,254126922826974,34,28.698713302612305,424.7064667693926,0.17182244425268323,4,243173.26145741265,3.4028234663852886E38,,,,,0,,1
+507540503,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,27,0.0,47,254126922040187,24,31.829458236694336,-587.9729533839591,0.11983603896682177,4,-362300.95132053766,3.4028234663852886E38,,,,,0,,1
+507540503,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,29,0.0,47,254126924951926,12,37.382320404052734,659.3555911498984,0.06393016782266159,4,394843.8366383309,3.4028234663852886E38,,,,,0,,1
+507540504,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,93,0.0,99,15921365479,63,22.167156219482422,62.03919644924889,4.200245522613168,4,12889.90581695667,3.4028234663852886E38,,,,,0,,3
+507540504,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,94,0.0,227,5709920092700,94,26.04571533203125,534.783599074809,0.23612470662875962,4,307188.8215729869,3.4028234663852886E38,,,,,0,,3
+507540505,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,96,0.0,227,5709929065782,33,37.94955062866211,662.7528622511791,0.0606849163597353,4,388436.78714517155,3.4028234663852886E38,,,,,0,,3
+507540505,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,97,0.0,227,5709936134613,33,35.93633270263672,50.657458080518865,0.07736026162871062,4,12950.60564824667,3.4028234663852886E38,,,,,0,,3
+507540505,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,103,0.0,227,5709928942277,36,34.21950912475586,-591.6985067064675,0.0923389188066292,4,-359688.6600396924,3.4028234663852886E38,,,,,0,,3
+507540506,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,104,0.0,227,5709928013163,33,38.89517593383789,624.2936729915355,0.054404004731764766,4,365961.1970519394,3.4028234663852886E38,,,,,0,,3
+507540506,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,105,0.0,227,5709936152895,33,36.93277359008789,-48.51071491213074,0.06929352829780044,4,-54534.17902662132,3.4028234663852886E38,,,,,0,,3
+507540507,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,106,0.0,227,5709927917229,33,37.4893913269043,-707.2620283681867,0.06369124114868796,4,-434300.56702581944,3.4028234663852886E38,,,,,0,,3
+507540507,621430000000,,,-1157840705570304865,0.0,10.197584580299772,,,0,26,0.0,1074,2474825,7,37.30043029785156,259.0496922727401,0.07176195187564743,4,146547.81097136394,3.4028234663852886E38,,,,,0,,6
+507541499,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,10,0.0,47,254127923908740,11,38.03962707519531,-565.9145489452005,0.05914805219047101,1,-347462.8303204938,0.0011386345140635967,,,,,0,,1
+507541500,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,13,0.0,47,254127923447571,9,40.27903366088867,178.39737614663989,0.04578249954018837,1,89603.04597816855,8.798607741482556E-4,,,,,0,,1
+507541501,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,15,0.0,47,254127927641631,10,39.41279602050781,-60.30727937981402,0.05127316165164131,1,-58277.72207171741,9.721335372887552E-4,,,,,0,,1
+507541502,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,16,0.0,47,254127924113574,35,28.5018253326416,131.76877542953298,0.17598150245793454,1,60490.84809759891,0.003218831028789282,,,,,0,,1
+507541502,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,18,0.0,47,254127930951705,9,39.987525939941406,-195.89508778948334,0.04867372947107865,1,-129734.04107393243,9.098911541514099E-4,,,,,0,,1
+507541503,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,20,0.0,47,254127930315436,10,39.089454650878906,429.90383689438204,0.05364665610223232,1,254426.3956101891,0.0010090041905641556,,,,,0,,1
+507541504,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,21,0.0,47,254127930191557,16,35.31956100463867,22.361665876591445,0.0817706862717299,1,8169.597576659747,0.001557355048134923,,,,,0,,1
+507541505,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,26,0.0,47,254127922825684,55,24.618576049804688,425.1195802249056,0.27453919648040437,4,243598.1215287596,3.4028234663852886E38,,,,,0,,1
+507541505,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,27,0.0,47,254127922042029,166,29.0596866607666,-587.7443964305171,0.1647075816771263,1,-362888.70681538654,0.0030185969080775976,,,,,1,,1
+507541506,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,29,0.0,47,254127924949707,12,37.519107818603516,659.547816204687,0.06294478459327377,1,395503.2987251419,0.001208955654874444,,,,,0,,1
+507541507,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,93,0.0,99,16921365305,65,21.92920684814453,62.807875132436095,4.200245522613168,4,12950.514755644333,3.4028234663852886E38,,,,,0,,3
+507541507,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,94,0.0,227,5710920090928,78,27.597646713256836,533.7979003497128,0.19808089677544938,4,307723.66610113427,3.4028234663852886E38,,,,,0,,3
+507541508,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,96,0.0,227,5710929063629,33,35.37466049194336,663.232402414455,0.08106229372934393,1,389099.7846872797,0.0015239717904478312,,,,,0,,3
+507541508,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,97,0.0,227,5710936134441,33,36.1334342956543,50.87717489680023,0.07568966375797304,1,13001.397906843016,0.0013960005016997457,,,,,0,,3
+507541508,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,103,0.0,227,5710928944205,47,31.953752517700195,-591.4682456301994,0.11938048566366971,1,-360280.255664525,0.0022540041245520115,,,,,0,,3
+507541509,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,104,0.0,227,5710928011093,33,40.22361373901367,624.4968725973245,0.046892442665308176,1,366585.60325123346,8.695796714164317E-4,,,,,0,,3
+507541509,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,105,0.0,227,5710936153091,33,36.82205581665039,-48.85939548358735,0.0701452069489078,1,-54583.17536273067,0.001285982085391879,,,,,0,,3
+507541509,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,106,0.0,227,5710927919610,33,38.03668212890625,-707.389428590669,0.05988932481756154,1,-435008.036072618,0.001117767533287406,,,,,0,,3
+507541510,622430000000,,,-1157840705570304772,0.0,10.88651708795793,,,0,26,0.0,1074,2473966,8,35.89630126953125,259.1263437174599,0.08427478160033697,4,146806.47794273496,3.4028234663852886E38,,,,,0,,6
+507542514,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,10,0.0,47,254128923910663,11,37.98585891723633,-566.013149491921,0.05951130577463398,1,-348028.8577838596,0.0011457048822194338,,,,,0,,1
+507542515,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,13,0.0,47,254128923446969,9,40.14927673339844,178.6180941350816,0.04646213500988322,1,89781.46414213297,8.931035408750176E-4,,,,,0,,1
+507542516,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,15,0.0,47,254128927641822,11,38.110137939453125,-60.12699596572955,0.05934699688114578,1,-58338.03317163679,0.00112942885607481,,,,,0,,1
+507542521,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,16,0.0,47,254128924113101,39,27.561275482177734,132.1254824195007,0.1960229188355176,1,60622.78972592327,0.003586952807381749,,,,,0,,1
+507542521,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,18,0.0,47,254128930952355,11,38.52796936035156,-195.95282347083298,0.05721977230957756,1,-129929.97495598973,0.0010763839818537235,,,,,0,,1
+507542522,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,20,0.0,47,254128930313998,11,38.32959747314453,430.00489137797217,0.05838125932554955,1,254856.2794276559,0.0011012499453499913,,,,,0,,1
+507542523,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,21,0.0,47,254128930191468,15,35.8192253112793,22.39306220950955,0.07730194035484139,1,8191.9111337776085,0.0014702948974445462,,,,,0,,1
+507542523,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,26,0.0,47,254128922824144,46,26.193572998046875,424.90271355405093,0.22909401840139232,1,244022.95654516213,0.004198660608381033,,,,,0,,1
+507542524,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,27,0.0,47,254128922044084,29,30.181861877441406,-587.6188366606871,0.1447903133101195,1,-363476.4573560249,0.0026527505833655596,,,,,0,,1
+507542524,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,29,0.0,47,254128924947491,11,37.97869110107422,659.5900102858623,0.05974635906396128,1,396162.8063335933,0.0011466506402939558,,,,,0,,1
+507542525,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,93,0.0,99,17921365334,70,20.837976455688477,64.3812959981187,4.200245522613168,4,13013.551431714715,3.4028234663852886E38,,,,,0,,3
+507542525,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,94,0.0,227,5711920089335,92,26.170629501342773,534.268067837445,0.23280424660057908,4,308258.01097220264,3.4028234663852886E38,,,,,0,,3
+507542527,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,96,0.0,227,5711929061354,35,34.61246109008789,663.1295415606692,0.08834712757916635,1,389762.90985709464,0.0016637457301840186,,,,,0,,3
+507542527,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,97,0.0,227,5711936134285,33,35.930076599121094,50.955918152289115,0.07741388990807818,1,13052.25695745509,0.001429070020094514,,,,,0,,3
+507542528,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,103,0.0,227,5711928946171,46,32.10283660888672,-591.630546288161,0.11737666854148865,1,-360871.8562091525,0.002215646207332611,,,,,0,,3
+507542528,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,104,0.0,227,5711928008993,33,40.22156524658203,624.5472464680652,0.04690279388013102,1,367210.0551537331,8.697845041751862E-4,,,,,0,,3
+507542529,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,105,0.0,227,5711936153368,33,34.995338439941406,-48.80668270426776,0.08588333042852314,1,-54632.04007439541,0.0015869777416810393,,,,,0,,3
+507542529,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,106,0.0,227,5711927921985,33,37.90449905395508,-707.4080376119305,0.06078626091032602,1,-435715.4950353067,0.0011349080596119165,,,,,0,,3
+507542530,623430000000,,,-1157840705570304681,0.0,11.384194593293863,,,0,26,0.0,1074,2473101,11,33.40785598754883,259.068982943132,0.11208503432983286,4,147065.59398727634,3.4028234663852886E38,,,,,0,,6
+507543509,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,10,0.0,47,254129923912525,19,33.51066970825195,-566.1618853321866,0.09914904461332996,4,-348594.73839677614,3.4028234663852886E38,,,,,0,,1
+507543510,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,13,0.0,47,254129923446385,10,39.37456512451172,178.42067150567323,0.05073865953318446,1,89959.96800480029,9.764217538759112E-4,,,,,0,,1
+507543511,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,15,0.0,47,254129927642019,12,37.28388214111328,-60.433780677505496,0.06513253964091015,1,-58398.228156308876,0.001242142985574901,,,,,0,,1
+507543512,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,16,0.0,47,254129924112581,59,23.928781509399414,131.53612858130828,0.297420456995358,4,60754.8994153387,3.4028234663852886E38,,,,,0,,1
+507543512,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,18,0.0,47,254129930952998,15,35.61703872680664,-195.93799760224556,0.07921625774500113,1,-130125.79266108538,0.0015049211215227842,,,,,0,,1
+507543513,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,20,0.0,47,254129930312585,14,36.30785369873047,429.90145112242544,0.07319538710580564,1,255286.26562555658,0.001389866229146719,,,,,0,,1
+507543514,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,21,0.0,47,254129930191378,14,36.16552734375,22.36366822091216,0.07435220192955655,1,8214.293409266083,0.0014128279872238636,,,,,0,,1
+507543514,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,26,0.0,47,254129922822768,37,27.896316528320312,426.9955808792906,0.18840157897391807,4,244448.61028913248,3.4028234663852886E38,,,,,0,,1
+507543515,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,27,0.0,47,254129922046014,32,29.251787185668945,-587.866752449434,0.1611136132637151,1,-364064.13308073115,0.0029525691643357277,,,,,0,,1
+507543516,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,29,0.0,47,254129924945304,13,36.66614532470703,659.2660224541564,0.06934706088667728,1,396822.4074786077,0.0013337009586393833,,,,,0,,1
+507543517,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,93,0.0,99,18921364934,63,22.220230102539062,64.78223775634598,4.200245522613168,4,13077.15239326797,3.4028234663852886E38,,,,,0,,3
+507543517,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,94,0.0,227,5712920087301,128,23.35718536376953,534.4756981625819,0.32047447629017656,4,308792.7719967095,3.4028234663852886E38,,,,,0,,3
+507543518,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,96,0.0,227,5712929059155,33,36.29496765136719,663.1510135082785,0.07307585720152093,1,390426.0752593862,0.001370760379359126,,,,,0,,3
+507543518,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,97,0.0,227,5712936134092,33,35.65122604370117,50.87006018400109,0.07984476952991176,1,13103.245539726111,0.0014756928430870175,,,,,0,,3
+507543518,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,103,0.0,227,5712928948186,49,31.675201416015625,-591.425847054285,0.12321928027783058,1,-361463.30722308403,0.0021943505853414536,,,,,0,,3
+507543519,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,104,0.0,227,5712928006908,33,36.58626937866211,624.1922436009236,0.07053021555811445,1,367834.6219974706,0.0013218327658250928,,,,,0,,3
+507543519,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,105,0.0,227,5712936153423,37,34.078468322753906,-48.70748571455812,0.09512133200773992,1,-54680.688388560935,0.0017636578995734453,,,,,0,,3
+507543519,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,106,0.0,227,5712927924353,33,34.89491271972656,-706.8942104973926,0.08536805793824603,4,-436422.7957546312,3.4028234663852886E38,,,,,0,,3
+507543520,624430000000,,,-1157840705570304585,0.0,10.446063071682135,,,0,26,0.0,1074,2472236,8,35.691585540771484,259.0494025718597,0.08627369770521043,1,147324.80060845616,0.0012182623613625765,,,,,0,,6
+507544472,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,10,0.0,47,254130923914439,15,35.42804718017578,-565.7521801223259,0.07964936954784996,1,-349160.61284798244,0.0015380248660221696,,,,,0,,1
+507544473,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,13,0.0,47,254130923445768,8,41.30280685424805,178.8600625351653,0.04076079572150132,1,90138.72701511337,8.24335846118629E-4,,,,,0,,1
+507544473,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,15,0.0,47,254130927642237,9,39.57449722290039,-59.82606917616846,0.05035293116506931,1,-58458.23225669019,9.542032494209707E-4,,,,,0,,1
+507544474,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,16,0.0,47,254130924112272,46,26.178699493408203,132.35808666465476,0.22971752099713627,4,60886.59375109697,3.4028234663852886E38,,,,,0,,1
+507544474,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,18,0.0,47,254130930953681,13,36.94011688232422,-195.4768790067202,0.06830221225798763,4,-130321.38515785028,3.4028234663852886E38,,,,,0,,1
+507544474,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,20,0.0,47,254130930311141,8,41.380638122558594,430.57948751249023,0.041637620169388934,1,255716.46850205094,8.169821230694652E-4,,,,,0,,1
+507544474,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,21,0.0,47,254130930191295,13,36.640506744384766,23.12875972555034,0.07049304604315171,1,8236.909370372085,0.0013376435963436961,,,,,0,,1
+507544475,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,26,0.0,47,254130922821365,30,29.93755340576172,424.90002103998563,0.14904998798614078,1,244873.5916329524,0.0027284235693514347,,,,,0,,1
+507544475,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,27,0.0,47,254130922047924,37,27.911338806152344,-586.9654078042317,0.18793753834028426,1,-364651.6069461887,0.003445264184847474,,,,,0,,1
+507544475,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,29,0.0,47,254130924943114,14,36.30205535888672,659.2855176192875,0.07227723268683678,1,397481.9128280952,0.0013907942920923233,,,,,0,,1
+507544476,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,93,0.0,99,19921364539,71,20.655033111572266,64.28980590389028,4.200245522613168,4,13140.336212076218,3.4028234663852886E38,,,,,0,,3
+507544476,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,94,0.0,227,5713920085253,67,21.560312271118164,534.6706498138924,4.203612762809945,4,309328.0086503644,3.4028234663852886E38,,,,,0,,3
+507544477,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,96,0.0,227,5713929056950,33,35.52000045776367,663.3705726931985,0.07974302141507755,4,391089.377103839,3.4028234663852886E38,,,,,0,,3
+507544477,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,97,0.0,227,5713936133947,33,37.90338134765625,51.89569928783496,0.0622710569712672,1,13154.555509843845,0.0011386448750272393,,,,,0,,3
+507544478,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,103,0.0,227,5713928950148,50,31.490703582763672,-591.1291251877974,0.12583037421689341,1,-362054.65167555923,0.002377426950260997,,,,,0,,3
+507544478,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,104,0.0,227,5713928004892,33,36.959537506103516,624.7455382001149,0.0676236585068836,1,368459.202208212,0.0012662315275520086,,,,,0,,3
+507544478,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,105,0.0,227,5713936153572,33,37.1651611328125,-48.506254370633314,0.06754102768791392,4,-54729.07101516321,3.4028234663852886E38,,,,,0,,3
+507544479,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,106,0.0,227,5713927926663,33,38.396636962890625,-707.552274567935,0.0575172407615947,1,-437130.1806078827,0.0010723924497142434,,,,,0,,3
+507544479,625430000000,,,-1157840705570304493,0.0,10.142094798971677,,,0,26,0.0,1074,2471367,7,36.68952178955078,259.27323910507323,0.07695791223840204,4,147584.11272575957,3.4028234663852886E38,,,,,0,,6
+507545520,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,10,0.0,47,254131923916321,11,38.63794708251953,-565.2273102918746,0.055258995105942454,4,-349726.20754132455,3.4028234663852886E38,,,,,0,,1
+507545521,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,13,0.0,47,254131923445193,8,40.787498474121094,179.2992661111465,0.04321420421321662,4,90317.90489593735,3.4028234663852886E38,,,,,0,,1
+507545521,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,15,0.0,47,254131927642415,9,40.1439323425293,-59.299618771795934,0.04724499555633435,4,-58518.661905290675,3.4028234663852886E38,,,,,0,,1
+507545522,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,16,0.0,47,254131924111827,25,31.21112632751465,132.71026068790496,0.1290234910041987,4,61019.77274396294,3.4028234663852886E38,,,,,0,,1
+507545522,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,18,0.0,47,254131930954307,14,36.444984436035156,-195.39380301894585,0.07219338285422439,4,-130516.45754619283,3.4028234663852886E38,,,,,0,,1
+507545523,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,20,0.0,47,254131930309732,8,40.79887390136719,430.7911395674969,0.04439320674944752,4,256146.8210290461,3.4028234663852886E38,,,,,0,,1
+507545523,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,21,0.0,47,254131930191212,15,35.74066925048828,22.49545016921114,0.07798755023952242,4,8258.829500453572,3.4028234663852886E38,,,,,0,,1
+507545524,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,26,0.0,47,254131922819979,29,30.055280685424805,425.4021578719362,0.14704997352085203,4,245298.5927806004,3.4028234663852886E38,,,,,0,,1
+507545525,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,27,0.0,47,254131922049938,36,28.190677642822266,-587.1919879751954,0.18200163253594093,4,-365239.112496453,3.4028234663852886E38,,,,,0,,1
+507545525,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,29,0.0,47,254131924940922,11,38.45766067504883,660.1211512883137,0.05658749115142356,4,398141.58082144934,3.4028234663852886E38,,,,,0,,1
+507545526,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,93,0.0,99,20921364600,64,22.08887481689453,64.32802511857355,4.200245522613168,4,13204.794066580109,3.4028234663852886E38,,,,,0,,3
+507545527,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,94,0.0,227,5714920083723,53,31.019594192504883,534.5574619757801,0.13475663281915046,4,309861.73596804624,3.4028234663852886E38,,,,,0,,3
+507545527,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,96,0.0,227,5714929054699,33,36.5369758605957,663.8139854525602,0.07111189724895517,4,391754.07451566047,3.4028234663852886E38,,,,,0,,3
+507545527,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,97,0.0,227,5714936133809,33,36.54496765136719,51.40950026461587,0.07232135016351743,4,13205.578854005782,3.4028234663852886E38,,,,,0,,3
+507545528,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,103,0.0,227,5714928952102,55,30.671600341796875,-591.1077895700141,0.13811519430446428,4,-362645.1373354632,3.4028234663852886E38,,,,,0,,3
+507545528,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,104,0.0,227,5714928002776,33,37.698055267333984,625.1704782680413,0.062228587035209476,4,369084.007095973,3.4028234663852886E38,,,,,0,,3
+507545528,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,105,0.0,227,5714936153772,33,36.506813049316406,-48.23972956062494,0.07263055526224488,4,-54777.05712809092,3.4028234663852886E38,,,,,0,,3
+507545529,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,106,0.0,227,5714927929036,33,38.50079345703125,-707.1388543703133,0.05684908815078693,4,-437837.0980388424,3.4028234663852886E38,,,,,0,,3
+507545529,626430000000,,,-1157840705570304402,0.0,9.895576669772558,,,0,26,0.0,1074,2470481,7,37.11625289916992,260.3114418544428,0.0732895465486797,4,147843.36436341598,3.4028234663852886E38,,,,,0,,6
+507546493,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,10,0.0,47,254132923918229,12,37.74530792236328,-566.0835297646406,0.06116407609090377,4,-350292.1649593676,3.4028234663852886E38,,,,,0,,1
+507546493,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,13,0.0,47,254132923444592,7,41.99470901489258,178.47924220720768,0.03768706322251661,4,90497.06677660176,3.4028234663852886E38,,,,,0,,1
+507546494,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,15,0.0,47,254132927642649,9,39.914405822753906,-60.596268788977994,0.04847334526258687,4,-58577.541892032845,3.4028234663852886E38,,,,,0,,1
+507546494,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,16,0.0,47,254132924111359,28,30.251588821411133,132.15815045407783,0.14400743196138777,4,61151.53731179334,3.4028234663852886E38,,,,,0,,1
+507546494,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,18,0.0,47,254132930954987,14,36.44341278076172,-196.04925978156427,0.07220618873815715,4,-130711.94515572621,3.4028234663852886E38,,,,,0,,1
+507546495,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,20,0.0,47,254132930308299,9,40.39309310913086,429.5536737360667,0.046427399361749805,4,256576.79010866027,3.4028234663852886E38,,,,,0,,1
+507546495,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,21,0.0,47,254132930191146,13,37.01362609863281,22.166639669907326,0.06760605977750231,4,8281.247382951316,3.4028234663852886E38,,,,,0,,1
+507546495,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,26,0.0,47,254132922818533,28,30.315324783325195,425.44155719167657,0.14272747595744129,4,245723.92472868864,3.4028234663852886E38,,,,,0,,1
+507546496,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,27,0.0,47,254132922051945,32,29.212265014648438,-587.545559379163,0.1618477340667379,4,-365825.85784522817,3.4028234663852886E38,,,,,0,,1
+507546496,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,29,0.0,47,254132924938712,11,38.527591705322266,659.6071196790367,0.05614045014148997,4,398801.43344930105,3.4028234663852886E38,,,,,0,,1
+507546497,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,93,0.0,99,21921364219,118,24.00912857055664,64.11036603060475,0.29419440603741864,4,13268.693413620704,3.4028234663852886E38,,,,,0,,3
+507546497,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,94,0.0,227,5715920082000,55,30.631908416748047,535.068289834144,0.1407424224923547,4,310396.0062414367,3.4028234663852886E38,,,,,0,,3
+507546498,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,96,0.0,227,5715929052547,33,37.2387809753418,662.7874900270062,0.06571820288825628,4,392417.3600602382,3.4028234663852886E38,,,,,0,,3
+507546498,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,97,0.0,227,5715936133613,33,37.27804183959961,50.78197407511789,0.06670287884010395,4,13255.492790976281,3.4028234663852886E38,,,,,0,,3
+507546498,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,103,0.0,227,5715928954129,41,33.07438278198242,-591.7012333029893,0.10512706255450482,4,-363235.2744156441,3.4028234663852886E38,,,,,0,,3
+507546499,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,104,0.0,227,5715928000668,33,38.100738525390625,624.7499689194628,0.05947431099882822,4,369707.65139932453,3.4028234663852886E38,,,,,0,,3
+507546499,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,105,0.0,227,5715936153939,33,36.4240837097168,-48.31105136120598,0.07329784249818,4,-54825.534198486544,3.4028234663852886E38,,,,,0,,3
+507546499,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,106,0.0,227,5715927931431,33,38.38161087036133,-706.8241369667817,0.05761522366364166,4,-438544.6564614872,3.4028234663852886E38,,,,,0,,3
+507546500,627430000000,,,-1157840705570304314,0.0,9.755889929133158,,,0,26,0.0,1074,2469612,6,38.096893310546875,259.34290364620585,0.06551240592635432,4,148104.00501963813,3.4028234663852886E38,,,,,0,,6
+507547505,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,10,0.0,47,254133923920088,13,36.84541702270508,-565.6799253144975,0.06776420287502288,1,-350857.81330513203,0.0013064562808722258,,,,,0,,1
+507547506,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,13,0.0,47,254133923444008,6,43.471031188964844,179.02728810809447,0.031893012329989895,1,90676.05433087646,6.422334117814898E-4,,,,,0,,1
+507547506,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,15,0.0,47,254133927642822,9,39.500179290771484,-59.60132519754998,0.0507738944360521,1,-58637.20592858552,9.624025551602244E-4,,,,,0,,1
+507547507,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,16,0.0,47,254133924110821,37,27.907642364501953,132.85128537238222,0.1883884319325836,4,61284.10950396669,3.4028234663852886E38,,,,,0,,1
+507547507,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,18,0.0,47,254133930955611,10,39.14783477783203,-195.4592583766979,0.053414885412782526,1,-130907.38523653166,0.0010022452333942056,,,,,0,,1
+507547508,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,20,0.0,47,254133930306818,9,39.94396209716797,430.32366459383,0.04879254793736709,1,257007.05713735012,9.144662180915475E-4,,,,,0,,1
+507547509,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,21,0.0,47,254133930191099,13,36.75122833251953,22.58411567985523,0.06962334013568286,1,8303.810253661773,0.0013207006268203259,,,,,0,,1
+507547509,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,26,0.0,47,254133922817054,28,30.24274253845215,425.50099699585235,0.1439206448467557,1,246149.31531114574,0.0026342214550822973,,,,,0,,1
+507547510,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,27,0.0,47,254133922053934,36,28.248397827148438,-587.3801231352013,0.18079934392681474,1,-366413.3527497109,0.0033141302410513163,,,,,0,,1
+507547510,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,29,0.0,47,254133924936542,11,38.58078384399414,659.852649695827,0.055802741757894625,1,399461.2741600108,0.001069858786650002,,,,,0,,1
+507547511,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,93,0.0,99,22921363875,119,23.991914749145508,64.44215874485431,0.29477743571604176,1,13332.918916732116,0.005333304405212402,,,,,0,,3
+507547511,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,94,0.0,227,5716920080462,101,25.421382904052734,535.3520944496095,0.2534504435213728,4,310931.52570617537,3.4028234663852886E38,,,,,0,,3
+507547512,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,96,0.0,227,5716929050282,33,40.57032012939453,663.4964051226807,0.04530086433762939,1,393080.83012769144,8.379032951779664E-4,,,,,0,,3
+507547512,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,97,0.0,227,5716936133453,33,37.77404022216797,51.79460220117417,0.0631616358870826,4,13306.938362258543,3.4028234663852886E38,,,,,0,,3
+507547513,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,103,0.0,227,5716928956104,38,33.909976959228516,-591.3088078985857,0.09563298490119393,1,-363826.6170968425,0.0017994652735069394,,,,,0,,3
+507547513,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,104,0.0,227,5716927998589,33,38.48330307006836,624.8329937835524,0.05697330272866108,1,370332.5476547155,0.0010624901624396443,,,,,0,,3
+507547514,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,105,0.0,227,5716936154039,33,38.12971496582031,-47.97668542148895,0.060747614433441205,1,-54873.55825614329,0.001106246723793447,,,,,0,,3
+507547515,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,106,0.0,227,5716927933740,33,36.64982604980469,-706.8742381778702,0.0700133371317756,1,-439251.64663880493,0.0013112765736877918,,,,,0,,3
+507547515,628430000000,,,-1157840705570304226,0.0,9.664106010297248,,,0,26,0.0,1074,2468774,6,38.10165023803711,259.4053256653274,0.06547663016419128,4,148364.715007271,3.4028234663852886E38,,,,,0,,6
+507548472,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,10,0.0,47,254134923921994,12,37.259342193603516,-565.4824515614043,0.064643806700213,1,-351423.3574794282,0.0012456573313102126,,,,,0,,1
+507548473,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,13,0.0,47,254134923443363,6,43.30463409423828,179.08969308598773,0.03249778455228833,1,90855.08771805,6.546553922817111E-4,,,,,0,,1
+507548473,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,15,0.0,47,254134927643038,9,39.601009368896484,-59.53775289552081,0.0502037954550453,1,-58696.79699188309,9.51295078266412E-4,,,,,0,,1
+507548474,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,16,0.0,47,254134924110457,46,26.167964935302734,132.4906674205285,0.23000031552042344,1,61416.73420561267,0.004211057908833027,,,,,0,,1
+507548474,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,18,0.0,47,254134930956288,10,38.95577621459961,-195.32054277865006,0.054565168320427376,1,-131102.7477261678,0.0010246532037854195,,,,,0,,1
+507548475,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,20,0.0,47,254134930305411,10,39.015625,430.2460929227841,0.054086944691885575,1,257437.31017865782,0.001017617410980165,,,,,0,,1
+507548475,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,21,0.0,47,254134930190991,14,36.56651306152344,22.546955151477704,0.07108040259613807,1,8326.412067285597,0.0013490875717252493,,,,,0,,1
+507548475,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,26,0.0,47,254134922815734,28,30.465465545654297,425.43494519511114,0.1402897149411877,1,246574.79252246936,0.0025675343349575996,,,,,0,,1
+507548476,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,27,0.0,47,254134922055821,31,29.458290100097656,-587.4504693254644,0.1573388147855691,1,-367000.8073680677,0.0028832016978412867,,,,,0,,1
+507548477,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,29,0.0,47,254134924934298,10,39.41191101074219,659.9882297078748,0.050791260179890746,1,400121.1675152632,9.72232548519969E-4,,,,,0,,1
+507548477,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,93,0.0,99,23921363776,64,22.094160079956055,65.43831226348888,4.200245256343976,4,13397.355691587078,3.4028234663852886E38,,,,,0,,3
+507548478,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,94,0.0,227,5717920078355,108,24.802627563476562,535.5453760605503,0.2718970072923118,4,311466.4230508013,3.4028234663852886E38,,,,,0,,3
+507548479,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,96,0.0,227,5717929048103,33,41.03207015991211,663.4317166202004,0.04303940680985366,1,393744.29772807495,8.375006727874279E-4,,,,,0,,3
+507548479,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,97,0.0,227,5717936133240,33,37.51785659790039,51.48487361721607,0.06496537251406853,1,13358.480669625826,0.0011903218692168593,,,,,0,,3
+507548480,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,103,0.0,227,5717928958025,38,33.78245544433594,-591.4808561391128,0.09702388362799652,1,-364417.9831984866,0.0018260788638144732,,,,,0,,3
+507548480,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,104,0.0,227,5717927996547,33,36.586341857910156,625.0916796285605,0.07052776088900453,1,370957.4658149694,0.0013218219392001629,,,,,0,,3
+507548481,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,105,0.0,227,5717936154205,33,38.459266662597656,-47.826083566728784,0.058594166506958034,1,-54921.43837558038,0.0010650607291609049,,,,,0,,3
+507548481,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,106,0.0,227,5717927936119,33,36.37720489501953,-706.8953011360013,0.07220059708513388,1,-439958.5465165551,0.0013530856231227517,,,,,0,,3
+507548481,629430000000,,,-1157840705570304135,0.0,9.515235390350702,,,0,26,0.0,1074,2467890,6,39.00545120239258,259.5265740044073,0.0590497447728468,4,148624.20038829773,3.4028234663852886E38,,,,,0,,6
+507549502,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,10,0.0,47,254135923923897,12,37.52726745605469,-565.3933259375972,0.0627020053369344,1,-351988.96956997947,0.0012078203726559877,,,,,0,,1
+507549502,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,13,0.0,47,254135923442817,8,40.831478118896484,179.28467881975473,0.04299865098171676,1,91034.42028687311,8.256419096142054E-4,,,,,0,,1
+507549503,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,15,0.0,47,254135927643214,9,40.23851776123047,-59.08447752530276,0.0467483494280998,1,-58756.05028298547,8.839746005833149E-4,,,,,0,,1
+507549503,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,16,0.0,47,254135924110079,20,33.4423828125,132.69672143205128,0.09996159833509888,4,61549.31235615162,3.4028234663852886E38,,,,,0,,1
+507549504,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,18,0.0,47,254135930956894,10,38.75761032104492,-195.3423896332812,0.05577901051619466,1,-131298.06105493614,0.001048299134708941,,,,,0,,1
+507549504,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,20,0.0,47,254135930303966,8,40.99393844604492,430.3376724834609,0.04344751011097414,1,257867.75782298887,8.541763527318835E-4,,,,,0,,1
+507549504,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,21,0.0,47,254135930190934,14,36.41983413696289,22.501872582112156,0.07225968388292892,1,8349.063155932434,0.001372062717564404,,,,,0,,1
+507549505,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,26,0.0,47,254135922814162,166,31.109249114990234,425.9491472166708,0.13030357182182872,1,247000.44231707684,0.002384113846346736,,,,,1,,1
+507549505,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,27,0.0,47,254135922057767,22,32.434791564941406,-587.9949024859598,0.11179673136264479,1,-367588.37967724254,0.0020466793794184923,,,,,0,,1
+507549505,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,29,0.0,47,254135924932109,10,39.18694305419922,660.4754043414118,0.05210029777210559,1,400781.34234283376,9.97742754407227E-4,,,,,0,,1
+507549506,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,93,0.0,99,24921363474,111,24.59409523010254,64.55079657502077,0.27504963452067177,4,13461.983251161995,3.4028234663852886E38,,,,,0,,3
+507549506,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,94,0.0,227,5718920076633,69,28.71488380432129,534.8531272861155,0.17460658820353925,4,312001.3606909653,3.4028234663852886E38,,,,,0,,3
+507549507,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,96,0.0,227,5718929045864,33,39.7765998840332,663.6021970677275,0.049478948308710635,1,394407.95332755346,9.180788183584809E-4,,,,,0,,3
+507549507,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,97,0.0,227,5718936133064,33,36.75433349609375,51.542319597685264,0.07066792665563704,1,13410.218328855624,0.0012996925506740808,,,,,0,,3
+507549507,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,103,0.0,227,5718928960029,33,36.63975524902344,-592.007021102912,0.07027750113256409,1,-365009.5132918013,0.0013141791569069028,,,,,0,,3
+507549508,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,104,0.0,227,5718927994418,33,36.67755889892578,625.7844396398432,0.06980563884142749,1,371582.77079692075,0.0013080132193863392,,,,,0,,3
+507549508,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,105,0.0,227,5718936154363,33,37.98054122924805,-47.67431438783271,0.061749668610495884,1,-54969.108170566724,0.001125409733504057,,,,,0,,3
+507549509,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,106,0.0,227,5718927938400,33,38.0394287109375,-706.6640857509506,0.05987419739911465,1,-440665.3176050335,0.0011174140963703394,,,,,0,,3
+507549509,630430000000,,,-1157840705570304045,0.0,9.411939015951033,,,0,26,0.0,1074,2467039,6,38.468994140625,259.77772762652387,0.06278328816812168,1,148883.89430622364,8.848513825796545E-4,,,,,0,,6
+507550503,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,10,0.0,47,254136923925765,19,33.663150787353516,-565.5683393518418,0.09743829834104878,4,-352554.1612470063,3.4028234663852886E38,,,,,0,,1
+507550503,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,13,0.0,47,254136923442194,9,40.375274658203125,178.88168785382902,0.045283885516209765,1,91213.7196616801,9.172351565212011E-4,,,,,0,,1
+507550503,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,15,0.0,47,254136927643413,10,39.08264923095703,-59.32437541615269,0.053206625460858414,1,-58815.18541276643,0.0010097951162606478,,,,,0,,1
+507550504,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,16,0.0,47,254136924109634,9,39.83285140991211,133.09651716767797,0.04828213902029252,1,61682.02015422432,9.763417765498161E-4,,,,,0,,1
+507550504,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,18,0.0,47,254136930957582,17,34.688026428222656,-194.79683175172056,0.08793708134503853,1,-131493.10214110248,0.001674805535003543,,,,,0,,1
+507550504,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,20,0.0,47,254136930302536,8,40.78563690185547,430.2704277967414,0.044456799321218904,1,258298.1563101561,8.749084663577378E-4,,,,,0,,1
+507550505,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,21,0.0,47,254136930190846,14,36.021820068359375,22.46986276497664,0.07556191279239816,1,8371.69803982625,0.0014363978989422321,,,,,0,,1
+507550505,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,26,0.0,47,254136922812844,21,32.906654357910156,425.73364384407705,0.10604077360633912,4,247426.32767004348,3.4028234663852886E38,,,,,0,,1
+507550505,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,27,0.0,47,254136922059779,13,36.927276611328125,-587.5179525893795,0.06680055802885426,1,-368176.1992947258,0.0012942017056047916,,,,,0,,1
+507550506,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,29,0.0,47,254136924929900,12,37.38673400878906,660.1393513200969,0.06389418819814874,1,401441.86241848016,0.001227521221153438,,,,,0,,1
+507550506,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,93,0.0,99,25921363539,80,27.43115997314453,63.8041351587473,0.19847569077744676,4,13526.250136815834,3.4028234663852886E38,,,,,0,,3
+507550507,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,94,0.0,227,5719920074926,39,33.567527770996094,535.3418697126526,0.10141393867785958,1,312536.18920730567,0.0018777555087581277,,,,,0,,3
+507550507,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,96,0.0,227,5719929043702,33,40.35326385498047,663.1413340906261,0.04640479144320184,1,395071.315819778,9.055772097781301E-4,,,,,0,,3
+507550508,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,97,0.0,227,5719936132927,33,36.72386169433594,52.02508907371674,0.07090604620112367,1,13462.069493177863,0.0013042601058259606,,,,,0,,3
+507550508,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,103,0.0,227,5719928961984,33,37.268592834472656,-591.1869290340601,0.06548231334724916,1,-365601.13521051535,0.0012223980156704783,,,,,0,,3
+507550508,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,104,0.0,227,5719927992368,33,38.42815017700195,625.1270572184312,0.05732592634744127,1,372208.2303022153,0.001069258083589375,,,,,0,,3
+507550509,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,105,0.0,227,5719936154512,33,37.76264953613281,-47.34194227182226,0.06324449553113878,1,-55016.53185326399,0.00115399865899235,,,,,0,,3
+507550509,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,106,0.0,227,5719927940735,37,33.96680450439453,-705.8845518053608,0.09483723110123154,4,-441371.851850448,3.4028234663852886E38,,,,,0,,3
+507550509,631430000000,,,-1157840705570303956,0.0,8.707295776069746,,,0,26,0.0,1074,2466173,6,38.058319091796875,259.5529367845277,0.06580139536880195,1,149143.70243783356,9.276927448809147E-4,,,,,0,,6
+507551484,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,10,0.0,47,254137923927593,20,33.13528060913086,-564.7864877992085,0.10349968350192629,4,-353119.12510693586,3.4028234663852886E38,,,,,0,,1
+507551486,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,13,0.0,47,254137923441606,7,42.03099822998047,179.04093813193185,0.037531986381155374,1,91392.71251674116,7.580443052574992E-4,,,,,0,,1
+507551487,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,15,0.0,47,254137927643613,11,38.1142578125,-59.20512516108644,0.05931983326314805,1,-58874.42827405837,0.0011288932291790843,,,,,0,,1
+507551488,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,16,0.0,47,254137924109197,9,39.58918380737305,133.19775910477898,0.04963467418122636,1,61815.140187030614,9.525911300443113E-4,,,,,0,,1
+507551489,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,18,0.0,47,254137930958225,18,34.3769416809082,-194.4634542032427,0.09107186021665009,4,-131687.90602313678,3.4028234663852886E38,,,,,0,,1
+507551490,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,20,0.0,47,254137930301093,9,40.21909713745117,430.3316739711129,0.047328004976810806,1,258728.39218002986,9.338769013993442E-4,,,,,0,,1
+507551490,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,21,0.0,47,254137930190784,13,37.18312072753906,22.602805646950927,0.06633495722417601,1,8394.376186230504,0.0012566365767270327,,,,,0,,1
+507551491,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,26,0.0,47,254137922811328,22,32.45151901245117,426.175113903417,0.11171791568193579,4,247852.1297608133,3.4028234663852886E38,,,,,0,,1
+507551492,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,27,0.0,47,254137922061729,12,37.49954605102539,-587.6716644682974,0.06256522202112624,1,-368763.7749022426,0.001211681286804378,,,,,0,,1
+507551492,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,29,0.0,47,254137924927696,18,34.358612060546875,660.6762181752442,0.0901753484904097,1,402102.38817294245,0.001739543047733605,,,,,0,,1
+507551493,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,93,0.0,99,26921363245,83,27.089763641357422,63.65336715201158,0.20642219524744432,4,13590.312068993224,3.4028234663852886E38,,,,,0,,3
+507551494,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,94,0.0,227,5720920073166,34,34.85691452026367,535.6587683934017,0.08792137978364728,4,313071.4028315515,3.4028234663852886E38,,,,,0,,3
+507551494,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,96,0.0,227,5720929041439,33,39.549964904785156,663.1321318273649,0.05074314866533633,1,395734.53213472234,9.933228138834238E-4,,,,,0,,3
+507551495,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,97,0.0,227,5720936132725,33,36.34039306640625,51.99459379574296,0.07397556415806034,1,13513.943412242555,0.001363130984827876,,,,,0,,3
+507551496,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,103,0.0,227,5720928963963,33,38.39887237548828,-591.7444498578602,0.057689404596234645,1,-366192.63516196475,0.0010732446098700166,,,,,0,,3
+507551497,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,104,0.0,227,5720927990245,33,39.993682861328125,625.4981470050516,0.04810794904352286,1,372833.60941909347,8.929063915275037E-4,,,,,0,,3
+507551498,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,105,0.0,227,5720936154714,33,37.87473678588867,-47.06186116473194,0.06247088783909521,1,-55063.7994596041,0.0011392025044187903,,,,,0,,3
+507551498,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,106,0.0,227,5720927943058,57,30.251684188842773,-706.3714537792457,0.14469510543230357,4,-442077.2102405515,3.4028234663852886E38,,,,,0,,3
+507551499,632430000000,,,-1157840705570303866,0.0,8.432946866098755,,,0,26,0.0,1074,2465306,7,36.72957992553711,259.96482327160584,0.07660475608123868,1,149403.48921707473,0.001081038499251008,,,,,0,,6
+507552487,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,10,0.0,47,254138923929476,26,31.00320816040039,-564.8986190811686,0.13209851740503625,4,-353683.9848899448,3.4028234663852886E38,,,,,0,,1
+507552488,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,13,0.0,47,254138923441010,9,40.15938186645508,179.15458608320716,0.046407753687958214,1,91571.68869195622,9.40319208893925E-4,,,,,0,,1
+507552489,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,15,0.0,47,254138927643819,11,38.5945930480957,-59.28582815782539,0.05620247838176079,1,-58933.62496283729,0.0010681592393666506,,,,,0,,1
+507552489,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,16,0.0,47,254138924108739,11,38.004150390625,133.3204815101035,0.05942321227678071,1,61948.41927879797,0.0011432947358116508,,,,,0,,1
+507552490,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,18,0.0,47,254138930958863,20,33.09652328491211,-194.84541629349383,0.10522411767483736,4,-131882.52849176788,3.4028234663852886E38,,,,,0,,1
+507552490,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,20,0.0,47,254138930299662,8,40.81193161010742,430.2702914669153,0.04432750482642406,1,259158.60854816873,8.72264092322439E-4,,,,,0,,1
+507552491,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,21,0.0,47,254138930190684,12,37.34893035888672,22.855181977195272,0.06511529871075505,1,8417.084824424694,0.0012328753946349025,,,,,0,,1
+507552491,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,26,0.0,47,254138922809921,24,31.603824615478516,425.7565813373169,0.12311862220249942,4,248278.07794441262,3.4028234663852886E38,,,,,0,,1
+507552492,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,27,0.0,47,254138922063717,12,37.45043182373047,-587.5268821929885,0.06291824920414993,1,-369351.3623837095,0.0012185521190986037,,,,,0,,1
+507552492,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,29,0.0,47,254138924925501,15,35.82035827636719,660.4914912608906,0.07634488567116449,1,402763.08116764924,0.0014701031614094973,,,,,0,,1
+507552493,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,93,0.0,99,21921363156,77,27.682037353515625,64.33349961315253,0.1928319987690429,4,13654.369205250789,3.4028234663852886E38,,,,,0,,3
+507552493,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,94,0.0,227,5721920071316,33,38.391845703125,534.7912676275266,0.05973273357017317,1,313606.6185647232,0.0010775147238746285,,,,,0,,3
+507552494,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,96,0.0,227,5721929039227,33,40.122257232666016,663.0791676899285,0.04761087022785199,1,396397.63747210836,9.299848461523652E-4,,,,,0,,3
+507552495,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,97,0.0,227,5721936132537,33,37.63203430175781,51.92174254492545,0.06415475340439472,1,13565.904040369453,0.0011747775133699179,,,,,0,,3
+507552495,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,103,0.0,227,5721928965965,33,39.05482482910156,-591.4862411672434,0.053610801291403026,1,-366784.1218254367,9.95178590528667E-4,,,,,0,,3
+507552495,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,104,0.0,227,5721927988191,33,39.365299224853516,625.8069340611482,0.05160911848321076,1,373459.1107651029,9.598979959264398E-4,,,,,0,,3
+507552496,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,105,0.0,227,5721936154855,33,37.418296813964844,-47.0512913429028,0.06568474033969512,1,-55110.92371977296,0.0012006680481135845,,,,,0,,3
+507552497,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,106,0.0,227,5721927945436,46,32.23674392700195,-706.5906039746874,0.11542558936106578,4,-442783.33835556183,3.4028234663852886E38,,,,,0,,3
+507552497,633430000000,,,-1157840705570303776,0.0,8.301280511916973,,,0,26,0.0,1074,2464437,7,36.65170669555664,259.51237866126553,0.07729048245869102,1,149663.2809477069,0.0010907739633694291,,,,,0,,6
+507553487,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,10,0.0,47,254139923931407,28,30.539701461791992,-564.9188981427997,0.13930079116364302,4,-354249.3819183819,3.4028234663852886E38,,,,,0,,1
+507553488,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,13,0.0,47,254139923440393,8,40.50011444091797,178.90653396463415,0.04464620408601394,4,91750.60889154866,3.4028234663852886E38,,,,,0,,1
+507553488,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,15,0.0,47,254139927644001,9,39.622379302978516,-59.017224317969124,0.05008399096065677,4,-58992.74813882156,3.4028234663852886E38,,,,,0,,1
+507553489,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,16,0.0,47,254139924108328,9,40.02003860473633,133.42431371390023,0.0472682733083174,4,62081.90479968074,3.4028234663852886E38,,,,,0,,1
+507553490,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,18,0.0,47,254139930959517,17,34.47758483886719,-194.80681791148174,0.0900456587522836,4,-132077.2424902772,3.4028234663852886E38,,,,,0,,1
+507553490,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,20,0.0,47,254139930298228,9,40.095970153808594,430.29523982509,0.04797671993663291,4,259588.86261912299,3.4028234663852886E38,,,,,0,,1
+507553491,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,21,0.0,47,254139930190654,15,35.87449645996094,22.582931314491063,0.07682306353468898,4,8439.742248931396,3.4028234663852886E38,,,,,0,,1
+507553492,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,26,0.0,47,254139922808445,24,31.674522399902344,425.8377316662977,0.12212439800385977,4,248703.68641659882,3.4028234663852886E38,,,,,0,,1
+507553493,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,27,0.0,47,254139922065598,11,38.108436584472656,-587.5196567122057,0.058355331363019014,4,-369938.81162469555,3.4028234663852886E38,,,,,0,,1
+507553493,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,29,0.0,47,254139924923230,23,31.890586853027344,660.6521559609391,0.11951681548976095,4,403423.7561016459,3.4028234663852886E38,,,,,0,,1
+507553494,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,93,0.0,99,22921362906,85,26.869062423706055,64.30644666328755,0.2117280582190254,4,13718.736580085686,3.4028234663852886E38,,,,,0,,3
+507553495,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,94,0.0,227,5722920069600,33,34.94771194458008,535.4898557388747,0.08704399783463979,4,314142.1611195463,3.4028234663852886E38,,,,,0,,3
+507553495,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,96,0.0,227,5722929037085,33,39.17344665527344,663.2602818638907,0.05291830585184587,4,397060.8935757143,3.4028234663852886E38,,,,,0,,3
+507553496,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,97,0.0,227,5722936132406,33,36.591609954833984,52.08252653357181,0.07194931385648828,4,13617.987605449327,3.4028234663852886E38,,,,,0,,3
+507553497,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,103,0.0,227,5722928967907,33,38.79813766479492,-591.2687269297148,0.0551707476712128,4,-367375.38744609035,3.4028234663852886E38,,,,,0,,3
+507553498,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,104,0.0,227,5722927986111,33,35.659263610839844,625.6980746950144,0.07830799689068207,4,374084.6610896048,3.4028234663852886E38,,,,,0,,3
+507553498,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,105,0.0,227,5722936155030,33,37.640377044677734,-46.844206337070204,0.06409997267868234,4,-55157.86349894272,3.4028234663852886E38,,,,,0,,3
+507553499,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,106,0.0,227,5722927947863,34,34.82465744018555,-705.9913662241033,0.08605401730124101,4,-443489.53202382877,3.4028234663852886E38,,,,,0,,3
+507553500,634430000000,,,-1157840705570303684,0.0,8.176965714742058,,,0,26,0.0,1074,2463577,8,35.83668518066406,259.68112090350996,0.08485026421156111,4,149922.95990927864,3.4028234663852886E38,,,,,0,,6
+507554477,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,10,0.0,47,254140923933271,24,31.735774993896484,-565.0016162647805,0.1214720717681268,4,-354814.9930684617,3.4028234663852886E38,,,,,0,,1
+507554477,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,13,0.0,47,254140923439817,20,33.18260955810547,179.17783031855572,0.1028533316811795,4,91930.07367537773,3.4028234663852886E38,,,,,0,,1
+507554478,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,15,0.0,47,254140927644216,10,39.386619567871094,-59.10173176891743,0.05142423197376042,4,-59051.88277216976,3.4028234663852886E38,,,,,0,,1
+507554478,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,16,0.0,47,254140924107834,17,34.51049041748047,133.71569315532787,0.0884801540030995,4,62215.731513189945,3.4028234663852886E38,,,,,0,,1
+507554479,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,18,0.0,47,254140930960168,17,34.648536682128906,-194.54031014270163,0.08832927090150572,4,-132271.78480358762,3.4028234663852886E38,,,,,0,,1
+507554479,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,20,0.0,47,254140930296783,7,41.866607666015625,430.2831746354809,0.03947033872631173,4,260019.152292763,3.4028234663852886E38,,,,,0,,1
+507554479,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,21,0.0,47,254140930190524,14,36.040626525878906,22.687377002505215,0.07540238426299012,4,8462.463407934814,3.4028234663852886E38,,,,,0,,1
+507554480,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,26,0.0,47,254140922806977,17,34.48259735107422,425.82491666264514,0.0885283986522497,4,249129.34452572023,3.4028234663852886E38,,,,,0,,1
+507554480,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,27,0.0,47,254140922067583,12,37.5015754699707,-587.4825068345958,0.06255173798284616,4,-370526.1806001046,3.4028234663852886E38,,,,,0,,1
+507554481,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,29,0.0,47,254140924921099,11,38.00900650024414,660.1937469207073,0.059536547261904965,4,404084.0192636703,3.4028234663852886E38,,,,,0,,1
+507554481,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,93,0.0,99,23921362561,71,28.383024215698242,64.67021724236963,0.17789995534147607,4,13783.343560708643,3.4028234663852886E38,,,,,0,,3
+507554482,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,94,0.0,227,5723920067751,33,35.92802810668945,535.68760215162,0.07813899916314831,4,314678.01486883673,3.4028234663852886E38,,,,,0,,3
+507554482,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,96,0.0,227,5723929034806,33,36.998382568359375,663.2855028817175,0.06751358531935625,4,397724.31566621305,3.4028234663852886E38,,,,,0,,3
+507554483,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,97,0.0,227,5723936132173,33,37.293174743652344,51.99011195271021,0.06659154087391658,4,13670.055440190357,3.4028234663852886E38,,,,,0,,3
+507554483,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,103,0.0,227,5723928969848,33,38.45326232910156,-591.1379866264933,0.057340400574277556,4,-367966.4224433518,3.4028234663852886E38,,,,,0,,3
+507554484,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,104,0.0,227,5723927983926,33,35.22661590576172,625.6113689256204,0.08223355365673829,4,374710.0869655716,3.4028234663852886E38,,,,,0,,3
+507554484,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,105,0.0,227,5723936155207,33,37.05485916137695,-46.901320013588304,0.0683673317171545,4,-55204.756432063674,3.4028234663852886E38,,,,,0,,3
+507554484,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,106,0.0,227,5723927950198,33,39.81748962402344,-705.6506098237883,0.04905711550239908,4,-444195.28954346786,3.4028234663852886E38,,,,,0,,3
+507554485,635430000000,,,-1157840705570303593,0.0,8.098513849309766,,,0,26,0.0,1074,2462682,7,37.15753173828125,259.5983175753878,0.07294278085211436,4,150182.56410941554,3.4028234663852886E38,,,,,0,,6
+507555487,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,10,0.0,47,254141923935164,10,38.82634353637695,-564.8918707547771,0.05409185403010541,4,-355380.67834085936,3.4028234663852886E38,,,,,0,,1
+507555488,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,13,0.0,47,254141923439198,10,38.89594268798828,179.47112689816277,0.053576581539828305,4,92109.58080088496,3.4028234663852886E38,,,,,0,,1
+507555489,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,15,0.0,47,254141927644397,9,40.06199645996094,-59.33670048449275,0.0476801126990323,4,-59111.251100749265,3.4028234663852886E38,,,,,0,,1
+507555489,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,16,0.0,47,254141924107377,26,31.061073303222656,133.7633830326174,0.1312581052690978,4,62349.88999649842,3.4028234663852886E38,,,,,0,,1
+507555490,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,18,0.0,47,254141930960821,20,33.17441177368164,-194.69562389707608,0.10430270977918382,4,-132466.57761045374,3.4028234663852886E38,,,,,0,,1
+507555491,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,20,0.0,47,254141930295340,8,41.42087173461914,430.5238990259015,0.0414509363428954,4,260449.63159265107,3.4028234663852886E38,,,,,0,,1
+507555491,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,21,0.0,47,254141930190456,11,38.178619384765625,22.956443085678075,0.05935018379053256,4,8485.306302699159,3.4028234663852886E38,,,,,0,,1
+507555492,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,26,0.0,47,254141922805595,18,34.014747619628906,425.38208330504426,0.09339934418302653,4,249554.6808100093,3.4028234663852886E38,,,,,0,,1
+507555492,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,27,0.0,47,254141922069529,20,33.15180587768555,-587.0549764999737,0.10297008240077704,4,-371112.7796534926,3.4028234663852886E38,,,,,0,,1
+507555493,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,29,0.0,47,254141924918851,16,35.313907623291016,659.6071196790367,0.08087428271734859,4,404743.7642693959,3.4028234663852886E38,,,,,0,,1
+507555494,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,93,0.0,99,24921362338,87,26.72698211669922,65.22397621503106,0.2152157852249944,4,13848.537078407335,3.4028234663852886E38,,,,,0,,3
+507555494,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,94,0.0,227,5724920065889,46,32.16421127319336,536.1996910608752,0.11856169957863527,4,315214.32881351723,3.4028234663852886E38,,,,,0,,3
+507555495,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,96,0.0,227,5724929032571,43,32.762943267822266,663.3685277458071,0.10892017536048448,4,398387.82570439327,3.4028234663852886E38,,,,,0,,3
+507555496,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,97,0.0,227,5724936132040,33,37.09756088256836,52.25513287432452,0.06804215878784423,4,13722.24244221509,3.4028234663852886E38,,,,,0,,3
+507555496,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,103,0.0,227,5724928971847,33,37.725608825683594,-590.611617167955,0.06221035591649818,4,-368557.0487999623,3.4028234663852886E38,,,,,0,,3
+507555500,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,104,0.0,227,5724927981824,33,35.42836380004883,625.2860177956536,0.0803781233624799,4,375335.22144785605,3.4028234663852886E38,,,,,0,,3
+507555500,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,105,0.0,227,5724936155283,33,38.27170944213867,-46.84363119561638,0.05980995579618878,4,-55251.625314970384,3.4028234663852886E38,,,,,0,,3
+507555501,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,106,0.0,227,5724927952533,33,37.37527847290039,-705.8373816855333,0.06452103164015585,4,-444901.3012063968,3.4028234663852886E38,,,,,0,,3
+507555502,636430000000,,,-1157840705570303503,0.0,8.05508924229486,,,0,26,0.0,1074,2461825,7,37.47243881225586,259.38308686244625,0.07036120950966845,4,150441.9855873607,3.4028234663852886E38,,,,,0,,6
+507556481,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,10,0.0,47,254142923937071,12,37.8926887512207,-565.08307333587,0.060150247823033715,4,-355945.7052280789,3.4028234663852886E38,,,,,0,,1
+507556481,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,13,0.0,47,254142923438573,11,38.31640625,179.82943576358707,0.05723045220043377,4,92288.86178753675,3.4028234663852886E38,,,,,0,,1
+507556481,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,15,0.0,47,254142927644596,8,40.83592224121094,-59.224241158888674,0.043732763463827345,4,-59170.35360974195,3.4028234663852886E38,,,,,0,,1
+507556482,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,16,0.0,47,254142924106918,27,30.70783042907715,133.94793953468843,0.13667546014374266,4,62484.30589520947,3.4028234663852886E38,,,,,0,,1
+507556482,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,18,0.0,47,254142930961453,12,37.330833435058594,-194.6810877293691,0.06538592389989559,4,-132661.74031536162,3.4028234663852886E38,,,,,0,,1
+507556482,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,20,0.0,47,254142930293915,8,40.831932067871094,430.82590367315015,0.044228777202731884,4,260880.45553878095,3.4028234663852886E38,,,,,0,,1
+507556483,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,21,0.0,47,254142930190370,12,37.69951629638672,23.14346630553993,0.06261186905512695,4,8508.368005400771,3.4028234663852886E38,,,,,0,,1
+507556483,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,26,0.0,47,254142922804353,27,30.79981803894043,425.75129855655587,0.13500914754280713,4,249980.47130259438,3.4028234663852886E38,,,,,0,,1
+507556484,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,27,0.0,47,254142922071330,27,30.827302932739258,-587.0055569380156,0.13445233705864285,4,-371699.673595315,3.4028234663852886E38,,,,,0,,1
+507556484,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,29,0.0,47,254142924916701,9,40.14194107055664,659.4123043575523,0.046765228398572584,4,405403.28834005643,3.4028234663852886E38,,,,,0,,1
+507556484,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,93,0.0,99,25921362148,83,27.096927642822266,65.77621425807015,0.2062520159503729,4,13914.258811695849,3.4028234663852886E38,,,,,0,,3
+507556485,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,94,0.0,227,5725920063979,74,28.098861694335938,536.4822687079059,0.18717209762360132,4,315750.76126991026,3.4028234663852886E38,,,,,0,,3
+507556485,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,96,0.0,227,5725929030358,33,41.35575866699219,664.1046406417868,0.04152135622315725,4,399051.2845059882,3.4028234663852886E38,,,,,0,,3
+507556486,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,97,0.0,227,5725936131858,33,37.55731964111328,52.33893737460704,0.06468379700442409,4,13774.629680027045,3.4028234663852886E38,,,,,0,,3
+507556486,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,103,0.0,227,5725928973789,38,33.90789794921875,-589.9041335354545,0.09565866323635736,4,-369147.10810738173,3.4028234663852886E38,,,,,0,,3
+507556487,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,104,0.0,227,5725927979840,33,40.25825500488281,624.7479921369845,0.04670590029432267,4,375959.9812127135,3.4028234663852886E38,,,,,0,,3
+507556487,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,105,0.0,227,5725936155391,33,36.61796188354492,-46.64777209890099,0.07174428657896825,4,-55298.33234454742,3.4028234663852886E38,,,,,0,,3
+507556487,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,106,0.0,227,5725927955052,38,33.78664779663086,-706.2937457783737,0.09679746328511513,4,-445607.6500093,3.4028234663852886E38,,,,,0,,3
+507556488,637430000000,,,-1157840705570303414,0.0,8.39241627855031,,,0,26,0.0,1074,2460949,8,36.097225189208984,259.60615654038804,0.08235552158830844,4,150701.647249584,3.4028234663852886E38,,,,,0,,6
+507557483,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,10,0.0,47,254143923938913,10,39.06463623046875,-565.7915794420662,0.052647880364599026,1,-356511.2803872124,0.0010118915233761072,,,,,0,,1
+507557483,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,13,0.0,47,254143923437992,10,39.270294189453125,181.11659381662753,0.05134242908555833,4,92469.09780393587,3.4028234663852886E38,,,,,0,,1
+507557484,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,15,0.0,47,254143927644806,8,40.483856201171875,-58.189438134557236,0.045484960360417215,1,-59228.73433431417,8.59355553984642E-4,,,,,0,,1
+507557484,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,16,0.0,47,254143924106430,25,31.43478012084961,133.79721839133043,0.12576150202630765,4,62618.778527981536,3.4028234663852886E38,,,,,0,,1
+507557484,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,18,0.0,47,254143930962135,14,36.16093444824219,-195.00236600578137,0.07452919605375008,1,-132856.99803807127,0.0014135756064206362,,,,,0,,1
+507557485,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,20,0.0,47,254143930292491,8,41.20616149902344,431.4536684398438,0.04244148269832629,4,261311.65056271042,3.4028234663852886E38,,,,,0,,1
+507557485,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,21,0.0,47,254143930190294,15,35.47806167602539,23.239035643783424,0.08032497769602209,4,8531.621486236729,3.4028234663852886E38,,,,,0,,1
+507557485,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,26,0.0,47,254143922802962,14,35.9840087890625,426.6081315135393,0.07455468300793205,4,250406.66619670865,3.4028234663852886E38,,,,,0,,1
+507557486,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,27,0.0,47,254143922073451,31,29.516225814819336,-586.9545695830575,0.15629843448675074,4,-372286.70459542534,3.4028234663852886E38,,,,,0,,1
+507557486,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,29,0.0,47,254143924914496,8,41.157745361328125,659.9510116653519,0.04170099639744215,1,406063.15066282987,7.952037267386913E-4,,,,,0,,1
+507557487,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,93,0.0,99,26921361797,105,25.035554885864258,66.21649995204595,0.2614313965680316,4,13981.584273619928,3.4028234663852886E38,,,,,0,,3
+507557487,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,94,0.0,227,5726920062323,54,30.758272171020508,536.2297858699849,0.1387583342530876,4,316286.7306997932,3.4028234663852886E38,,,,,0,,3
+507557487,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,96,0.0,227,5726929028169,33,40.89636993408203,665.2247264929524,0.04368788878413313,4,399716.0829571093,3.4028234663852886E38,,,,,0,,3
+507557488,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,97,0.0,227,5726936131693,33,38.545166015625,52.802650497135204,0.05804212390550556,4,13827.404989679286,3.4028234663852886E38,,,,,0,,3
+507557488,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,103,0.0,227,5726928975755,49,31.645118713378906,-590.7422211413505,0.12364615139650165,4,-369736.7815097291,3.4028234663852886E38,,,,,0,,3
+507557488,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,104,0.0,227,5726927977741,33,42.45454788208008,625.4511132150501,0.0365911241926917,1,376585.2589873115,7.089921273291111E-4,,,,,0,,3
+507557489,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,105,0.0,227,5726936155624,33,37.46163558959961,-46.55470569105839,0.06537242321979103,1,-55344.86181494734,0.0011946921003982425,,,,,0,,3
+507557489,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,106,0.0,227,5726927957218,33,36.95819854736328,-706.8905295920881,0.06762528108476981,4,-446314.3627110027,3.4028234663852886E38,,,,,0,,3
+507557489,638430000000,,,-1157840705570303323,0.0,8.497301619944755,,,0,26,0.0,1074,2460083,7,37.188018798828125,259.9948328745742,0.07268827743043305,4,150961.60164403293,3.4028234663852886E38,,,,,0,,6
+507558513,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,10,0.0,47,254144923940819,10,39.40106201171875,-565.3525974020524,0.050674942147729524,1,-357076.9155741562,9.734477498568594E-4,,,,,0,,1
+507558513,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,13,0.0,47,254144923437378,15,35.840553283691406,180.96121189734004,0.07590195519187598,4,92650.04465062659,3.4028234663852886E38,,,,,0,,1
+507558513,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,15,0.0,47,254144927644976,9,40.26746368408203,-57.53239227740343,0.046597707632960894,1,-59286.51055731249,9.286911226809025E-4,,,,,0,,1
+507558514,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,16,0.0,47,254144924106039,17,34.756561279296875,133.2938716321733,0.08602901295996879,4,62752.44295800772,3.4028234663852886E38,,,,,0,,1
+507558514,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,18,0.0,47,254144930962773,13,36.92375183105469,-194.53282904349487,0.06842894391181348,1,-133051.74573802657,0.001294726855121553,,,,,0,,1
+507558514,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,20,0.0,47,254144930291035,11,38.531578063964844,430.94260200428425,0.057077850830463045,1,261743.1022625403,0.001075936947017908,,,,,0,,1
+507558514,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,21,0.0,47,254144930190204,20,33.36907196044922,23.333145826857034,0.10189628531841483,1,8554.955145149102,0.0018379593966528773,,,,,0,,1
+507558515,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,26,0.0,47,254144922801482,13,36.61964797973633,425.3703248575439,0.06932889217480775,4,250832.46473197595,3.4028234663852886E38,,,,,0,,1
+507558515,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,27,0.0,47,254144922075436,20,33.44197463989258,-587.1223915989758,0.0996002544002943,4,-372873.6770068765,3.4028234663852886E38,,,,,0,,1
+507558515,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,29,0.0,47,254144924912283,7,41.65781784057617,661.1673463737379,0.03941702248115306,1,406723.6157386238,7.913224399089813E-4,,,,,0,,1
+507558516,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,93,0.0,99,27921361802,121,23.849620819091797,65.67486581329251,0.29964187429344924,4,14047.53440250606,3.4028234663852886E38,,,,,0,,3
+507558516,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,94,0.0,227,5727920060587,35,34.48722457885742,535.5005576302228,0.09158501087430676,4,316822.35499967355,3.4028234663852886E38,,,,,0,,3
+507558517,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,96,0.0,227,5727929025903,33,36.04430389404297,664.6971982308924,0.07516177676474461,4,400380.90238308493,3.4028234663852886E38,,,,,0,,3
+507558517,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,97,0.0,227,5727936131472,33,36.42506408691406,52.98162599695061,0.0732858603845587,1,13880.404363740405,0.0013499078340828419,,,,,0,,3
+507558517,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,103,0.0,227,5727928977742,49,31.659814834594727,-591.1460300862327,0.12344021713954778,4,-370327.68621468265,3.4028234663852886E38,,,,,0,,3
+507558518,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,104,0.0,227,5727927975654,33,41.74365997314453,626.4574318263426,0.039589090625302276,1,377211.2105801884,7.69459584262222E-4,,,,,0,,3
+507558518,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,105,0.0,227,5727936155825,33,38.08761215209961,-45.80225025717604,0.0610289985621042,1,-55391.04033641395,0.0011116222012788057,,,,,0,,3
+507558518,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,106,0.0,227,5727927959691,33,37.812721252441406,-706.2660026587641,0.0614236178249446,1,-447020.98581467505,0.0011469632154330611,,,,,0,,3
+507558519,639430000000,,,-1157840705570303234,0.0,9.055233421756784,,,0,26,0.0,1074,2459231,6,38.861328125,260.52968886478664,0.060028737541636595,1,151221.86381311368,8.457729127258062E-4,,,,,0,,6
+507559494,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,10,0.0,47,254145923942703,13,36.87351989746094,-564.802097564296,0.06755163269056,1,-357642.1362742032,0.0013022361090406775,,,,,0,,1
+507559495,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,13,0.0,47,254145923436772,23,32.05013656616211,180.07528956371436,0.11709020449590496,4,92831.45710295365,3.4028234663852886E38,,,,,0,,1
+507559495,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,15,0.0,47,254145927645159,19,33.72959518432617,-57.28695598736854,0.09737017503256434,4,-59344.15535702668,3.4028234663852886E38,,,,,0,,1
+507559496,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,16,0.0,47,254145924105615,8,40.65929412841797,133.73465152176868,0.043966364753969284,1,62885.86919953539,8.421724196523428E-4,,,,,0,,1
+507559496,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,18,0.0,47,254145930963412,11,38.29812240600586,-194.2701044273888,0.058703274468665884,1,-133246.22021442853,0.0011052476475015283,,,,,0,,1
+507559496,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,20,0.0,47,254145930289564,19,33.713645935058594,431.317236366383,0.09802228492457915,4,262174.68142220704,3.4028234663852886E38,,,,,0,,1
+507559497,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,21,0.0,47,254145930190162,23,31.92154884338379,23.454179020430132,0.12004206475381024,4,8578.303853568814,3.4028234663852886E38,,,,,0,,1
+507559497,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,26,0.0,47,254145922800066,10,38.95790481567383,426.2541511200934,0.05308518174675919,1,251258.4060783166,0.001024401979520917,,,,,0,,1
+507559498,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,27,0.0,47,254145922077364,12,37.29216766357422,-587.3709890368532,0.06407082452311608,1,-373461.2407548673,0.0012409586925059557,,,,,0,,1
+507559498,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,29,0.0,47,254145924910087,12,37.802154541015625,660.9543310204704,0.06094809017196759,1,407384.7290845474,0.0011701942421495914,,,,,0,,1
+507559498,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,93,0.0,99,28921361500,100,25.489774703979492,65.78340565639647,0.24812384483649708,4,14112.574683262072,3.4028234663852886E38,,,,,0,,3
+507559499,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,94,0.0,227,5728920058838,33,37.40705490112305,535.4864134107659,0.06646827904049357,1,317357.56268130103,0.0012068761279806495,,,,,0,,3
+507559499,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,96,0.0,227,5728929023716,41,33.18748092651367,663.7932633189944,0.1038004262329087,4,401045.20449212764,3.4028234663852886E38,,,,,0,,3
+507559500,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,97,0.0,227,5728936131370,41,33.083778381347656,53.4264616988722,0.10630615246031422,1,13933.555341650086,0.001983208581805229,,,,,0,,3
+507559500,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,103,0.0,227,5728928979710,33,37.129852294921875,-591.0169257409243,0.06651389012092077,1,-370918.9578363871,0.0012420803541317582,,,,,0,,3
+507559500,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,104,0.0,227,5728927973553,33,38.96185302734375,626.4600220930383,0.05399186994866545,1,377837.730983913,0.0010055353632196784,,,,,0,,3
+507559501,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,105,0.0,227,5728936155870,34,34.69374084472656,-45.5222330546917,0.08881556997537354,1,-55436.92225502003,0.0016430496471002698,,,,,0,,3
+507559501,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,106,0.0,227,5728927961981,33,39.889862060546875,-705.9626687957111,0.04866404808969088,1,-447727.02591150516,9.030097862705588E-4,,,,,0,,3
+507559502,640430000000,,,-1157840705570303142,0.0,8.704788262088499,,,0,26,0.0,1074,2458364,7,37.0592041015625,260.4465106296427,0.07376739157571471,1,151482.4296290526,0.0010407821973785758,,,,,0,,6
+507560505,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,10,0.0,47,254146923944623,11,38.232391357421875,-565.1318794136107,0.057871719943803746,4,-358207.2035340753,3.4028234663852886E38,,,,,0,,1
+507560506,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,13,0.0,47,254146923436174,13,36.94264221191406,180.88261775259843,0.06693071789852176,4,93012.33865030303,3.4028234663852886E38,,,,,0,,1
+507560506,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,15,0.0,47,254146927645326,23,32.237831115722656,-57.94187169098967,0.11535732459707332,4,-59402.68624800119,3.4028234663852886E38,,,,,0,,1
+507560507,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,16,0.0,47,254146924105176,8,40.91767120361328,133.73087688970878,0.04269932696627077,1,63019.60763775746,8.174893446266651E-4,,,,,0,,1
+507560507,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,18,0.0,47,254146930964070,10,38.813941955566406,-193.9444124728568,0.055432448681979135,1,-133440.56874275598,0.0010415224824100733,,,,,0,,1
+507560508,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,20,0.0,47,254146930288174,16,35.144020080566406,431.30520525923043,0.08342002421170192,1,262606.031346034,0.0015891495859250426,,,,,0,,1
+507560508,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,21,0.0,47,254146930190067,19,33.810325622558594,23.28663392447106,0.09693985905622715,1,8601.591686177808,0.0018528893124312162,,,,,0,,1
+507560509,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,26,0.0,47,254146922798655,13,37.1297492980957,426.56706215342933,0.06540283615401732,1,251684.60423678072,0.0012643818045035005,,,,,0,,1
+507560510,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,27,0.0,47,254146922079349,11,38.10007858276367,-587.6742547349932,0.0584136193532393,1,-374048.6739350894,0.0011307375971227884,,,,,0,,1
+507560510,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,29,0.0,47,254146924907865,14,36.147125244140625,661.5607942518373,0.07355565764293165,1,408045.863981255,0.0014158247504383326,,,,,0,,1
+507560511,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,93,0.0,99,29921361351,61,22.69953727722168,65.79824004559802,4.2002449900747845,4,14179.41636699308,3.4028234663852886E38,,,,,0,,3
+507560512,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,94,0.0,227,5729920057011,35,34.49136734008789,535.8962208679961,0.09154241612456548,4,317893.02414743113,3.4028234663852886E38,,,,,0,,3
+507560513,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,96,0.0,227,5729929021519,34,34.818748474121094,665.0499516559034,0.08630473470785449,4,401709.77299380215,3.4028234663852886E38,,,,,0,,3
+507560514,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,97,0.0,227,5729936131101,35,34.45238494873047,53.17162717145115,0.0912317881498455,1,13986.66911734708,0.0016940961359068751,,,,,0,,3
+507560514,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,103,0.0,227,5729928981688,33,35.40618896484375,-591.2186938835393,0.08075975368131832,4,-371510.1963672017,3.4028234663852886E38,,,,,0,,3
+507560515,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,104,0.0,227,5729927971381,33,34.97032165527344,625.7347474182329,0.08465092011709896,4,378463.8116964287,3.4028234663852886E38,,,,,0,,3
+507560516,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,105,0.0,227,5729936156062,41,33.21601486206055,-45.651362961842494,0.10474826966673922,1,-55482.73654220741,0.0019477673340588808,,,,,0,,3
+507560516,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,106,0.0,227,5729927964384,33,40.368675231933594,-705.5350021312629,0.04613125809523447,1,-448432.90060635743,9.008044726215303E-4,,,,,0,,3
+507560517,641430000000,,,-1157840705570303050,0.0,8.263506360606717,,,0,26,0.0,1074,2457476,8,35.63695526123047,260.5536829141787,0.08681257662350395,4,151742.98044939505,3.4028234663852886E38,,,,,0,,6
+507561515,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,10,0.0,47,254147923946508,9,39.83995819091797,-565.4437338907944,0.04821391170040512,1,-358772.37088316923,9.25481494050473E-4,,,,,0,,1
+507561516,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,13,0.0,47,254147923435578,15,35.7977180480957,181.54518070740187,0.07627381675974815,1,93193.50883978346,0.001473940210416913,,,,,0,,1
+507561516,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,15,0.0,47,254147927645552,24,31.65118980407715,-57.3076184766355,0.12332163581925809,4,-59461.06049003139,3.4028234663852886E38,,,,,0,,1
+507561517,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,16,0.0,47,254147924104736,7,42.423614501953125,133.76679979888382,0.03601988524670843,1,63153.317481046484,7.24542245734483E-4,,,,,0,,1
+507561517,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,18,0.0,47,254147930964731,10,39.252296447753906,-194.49486118692846,0.05280153016951161,1,-133634.94255922688,9.902638848870993E-4,,,,,0,,1
+507561518,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,20,0.0,47,254147930286710,11,38.33883285522461,431.780485115441,0.058316285482346825,1,263037.64343485876,0.0011000795057043433,,,,,0,,1
+507561518,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,21,0.0,47,254147930189996,18,34.344017028808594,23.316643527439396,0.09127206136507265,1,8624.914929016846,0.0017424680991098285,,,,,0,,1
+507561519,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,26,0.0,47,254147922797241,17,34.776695251464844,426.2907215959424,0.08559610917992588,4,252110.69012929744,3.4028234663852886E38,,,,,0,,1
+507561519,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,27,0.0,47,254147922081295,9,39.90397262573242,-587.2531319021973,0.04752958739666471,1,-374636.107126519,9.186859824694693E-4,,,,,0,,1
+507561520,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,29,0.0,47,254147924905642,16,35.328834533691406,660.4385952883672,0.08073455795906465,4,408706.87987629464,3.4028234663852886E38,,,,,0,,1
+507561520,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,93,0.0,99,921361165,63,22.326784133911133,66.26752564976766,4.2002449900747845,4,14246.024036480601,3.4028234663852886E38,,,,,0,,3
+507561521,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,94,0.0,227,5730920055175,36,34.39113998413086,535.4271781013292,0.09256263485303357,1,318428.4073798887,0.0017078842502087355,,,,,0,,3
+507561521,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,96,0.0,227,5730929019257,42,32.985206604003906,664.7497533788505,0.10620702543283467,4,402374.2813676608,3.4028234663852886E38,,,,,0,,3
+507561522,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,97,0.0,227,5730936130965,33,35.3123779296875,53.51043661143734,0.08290515112521218,4,14039.967975019401,3.4028234663852886E38,,,,,0,,3
+507561522,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,103,0.0,227,5730928983643,33,38.13114547729492,-590.9887054669234,0.0594483206294559,1,-372101.4562471522,0.0011068404419347644,,,,,0,,3
+507561523,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,104,0.0,227,5730927969319,47,32.03235626220703,625.9121806868907,0.11814413956075742,4,379089.85069823463,3.4028234663852886E38,,,,,0,,3
+507561523,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,105,0.0,227,5730936156218,40,33.344207763671875,-45.82846818685621,0.10325623857260796,1,-55528.41245406088,0.0019192318432033062,,,,,0,,3
+507561524,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,106,0.0,227,5730927966755,33,39.553504943847656,-706.5970796414267,0.05052982127785988,1,-449138.85226795863,9.89439315162599E-4,,,,,0,,3
+507561524,642430000000,,,-1157840705570302959,0.0,8.074002562149602,,,0,26,0.0,1074,2456617,10,33.99800109863281,260.5014004258727,0.10474885213059582,4,152003.1985233951,3.4028234663852886E38,,,,,0,,6
+507562521,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,10,0.0,47,254148923948362,10,39.47537612915039,-565.5511617937543,0.05025061306774686,1,-359337.86397625913,9.651546133682132E-4,,,,,0,,1
+507562521,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,13,0.0,47,254148923434945,19,33.470458984375,181.13009046941056,0.0995199326344704,4,93374.66106971509,3.4028234663852886E38,,,,,0,,1
+507562521,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,15,0.0,47,254148927645743,22,32.602909088134766,-57.44423374330012,0.11066590274781007,4,-59519.13262583091,3.4028234663852886E38,,,,,0,,1
+507562522,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,16,0.0,47,254148924104265,9,40.131683349609375,134.6052708324156,0.046673311441546406,1,63287.38954733151,9.433228406123817E-4,,,,,0,,1
+507562522,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,18,0.0,47,254148930965364,8,40.539669036865234,-194.38978497346864,0.04579971966806287,1,-133829.43688605164,9.000383433885872E-4,,,,,0,,1
+507562522,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,20,0.0,47,254148930285268,18,34.212257385253906,431.7324629342004,0.09265626175752445,4,263469.50093249895,3.4028234663852886E38,,,,,0,,1
+507562522,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,21,0.0,47,254148930189930,17,34.39125442504883,23.90073162609906,0.09078696050256696,1,8648.421004846048,0.001733017503283918,,,,,0,,1
+507562523,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,26,0.0,47,254148922795824,14,36.24446105957031,426.13871383985065,0.07236590864854664,1,252536.76016887097,0.00140004709828645,,,,,0,,1
+507562523,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,27,0.0,47,254148922083274,14,36.08405685424805,-586.2945287300367,0.07357717552197657,1,-375222.9866384077,0.001426142523996532,,,,,0,,1
+507562523,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,29,0.0,47,254148924903464,10,38.72658157348633,660.2220353596213,0.05488269849184796,1,409367.5396695894,0.0010520505020394921,,,,,0,,1
+507562524,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,93,0.0,99,1921360675,69,21.040510177612305,66.24989223882417,4.200244723805593,4,14312.54591570661,3.4028234663852886E38,,,,,0,,3
+507562524,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,94,0.0,227,5731920053394,35,34.51227569580078,536.3496197871191,0.09133034935529294,1,318964.239709554,0.0016842309851199389,,,,,0,,3
+507562525,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,96,0.0,227,5731929017103,36,34.247657775878906,665.2074126050388,0.0920588369007313,4,403039.3967176479,3.4028234663852886E38,,,,,0,,3
+507562525,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,97,0.0,227,5731936130818,40,33.27402114868164,52.841048644715215,0.10406584669144497,4,14093.406850836343,3.4028234663852886E38,,,,,0,,3
+507562525,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,103,0.0,227,5731928985651,33,38.51786422729492,-589.9581201465867,0.05693030441467631,1,-372692.13847581914,0.001058642053976655,,,,,0,,3
+507562525,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,104,0.0,227,5731927967282,33,36.670780181884766,625.9222009291084,0.06985412479703257,1,379715.9731737402,0.0013090342981740832,,,,,0,,3
+507562526,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,105,0.0,227,5731936156381,38,33.88490295410156,-45.34302749829476,0.09719996245184398,1,-55573.98147258475,0.00180340267252177,,,,,0,,3
+507562526,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,106,0.0,227,5731927969082,33,40.8863639831543,-706.5313005003377,0.04354586745407177,1,-449845.23803512455,8.486842270940542E-4,,,,,0,,3
+507562526,643430000000,,,-1157840705570302868,0.0,8.004453047337696,,,0,26,0.0,1074,2455756,8,35.54132080078125,260.42870254610955,0.08776849966311662,4,152263.55869182257,3.4028234663852886E38,,,,,0,,6
+507563480,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,10,0.0,47,254149923950245,10,39.482666015625,-565.546969651602,0.050209391268524695,1,-359903.31488747126,9.643450612202287E-4,,,,,0,,1
+507563481,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,13,0.0,47,254149923434291,24,31.810155868530273,180.8736711077612,0.12035259287758338,4,93555.55166193368,3.4028234663852886E38,,,,,0,,1
+507563481,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,15,0.0,47,254149927645943,10,39.04594039916992,-57.21234949004011,0.05342658461538777,1,-59576.5004828227,0.0010140718659386039,,,,,0,,1
+507563482,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,16,0.0,47,254149924103820,11,38.152679443359375,134.29693536886788,0.05842735301888649,1,63421.96752642217,0.0011239104205742478,,,,,0,,1
+507563483,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,18,0.0,47,254149930966031,12,37.46086120605469,-194.59629057754034,0.06444451253122427,1,-134023.88036374186,0.0012170899426564574,,,,,0,,1
+507563483,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,20,0.0,47,254149930283821,16,34.92095947265625,431.6607875281329,0.08554114123368817,4,263901.4025788171,3.4028234663852886E38,,,,,0,,1
+507563484,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,21,0.0,47,254149930189823,25,31.4293155670166,23.70674919464595,0.12693441781523718,4,8671.95951746139,3.4028234663852886E38,,,,,0,,1
+507563485,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,26,0.0,47,254149922794351,16,34.96561050415039,426.0004413137376,0.08376480953115484,1,252963.1398180962,0.0016221283003687859,,,,,0,,1
+507563486,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,27,0.0,47,254149922085201,10,39.00292205810547,-586.611700070438,0.052684779449914065,1,-375809.3688936715,0.001019106712192297,,,,,0,,1
+507563486,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,29,0.0,47,254149924901256,7,42.17117691040039,660.4469795726718,0.03720360157972161,1,410027.8482739129,7.459084736183286E-4,,,,,0,,1
+507563487,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,93,0.0,99,2921360400,64,22.03261947631836,66.46027046201829,4.200244723805593,4,14379.087137680262,3.4028234663852886E38,,,,,0,,3
+507563488,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,94,0.0,227,5732920051727,33,37.71345138549805,536.3338736922055,0.06428824579941314,1,319500.6309763079,0.0011650455417111516,,,,,0,,3
+507563489,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,96,0.0,227,5732929014718,47,31.944927215576172,665.4476939235246,0.11951288801918508,4,403704.2994178032,3.4028234663852886E38,,,,,0,,3
+507563489,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,97,0.0,227,5732936130596,43,32.78069305419922,53.39805397136044,0.10997788811949255,4,14146.926019889557,3.4028234663852886E38,,,,,0,,3
+507563490,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,103,0.0,227,5732928987620,33,36.028289794921875,-590.4379329695148,0.07529059280708583,1,-373282.43033823004,0.0014100283151492476,,,,,0,,3
+507563491,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,104,0.0,227,5732927965191,33,40.787132263183594,626.081434165983,0.04402902954402624,1,380341.8958138306,8.149544009938836E-4,,,,,0,,3
+507563491,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,105,0.0,227,5732936156556,33,36.3360481262207,-45.41752322763949,0.07401539636493892,1,-55619.54016265693,0.001359989051707089,,,,,0,,3
+507563492,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,106,0.0,227,5732927971462,33,42.5836181640625,-706.5896496659047,0.036071437458472855,1,-450551.7603584031,6.980450125411153E-4,,,,,0,,3
+507563493,644430000000,,,-1157840705570302775,0.0,7.962020152956667,,,0,26,0.0,1074,2454890,7,37.485321044921875,260.4808146221329,0.07025632441092089,1,152523.8532670866,9.909552754834294E-4,,,,,0,,6
+507564514,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,10,0.0,47,254150923952151,13,36.728675842285156,-565.3384191001389,0.06867736058619342,1,-360468.81399433326,0.0013241340639069676,,,,,0,,1
+507564515,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,13,0.0,47,254150923433698,30,29.814311981201172,181.5316499721623,0.15128277165034776,4,93736.88684856637,3.4028234663852886E38,,,,,0,,1
+507564516,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,15,0.0,47,254150927646131,9,39.65933609008789,-56.936686321376555,0.04987756993033704,1,-59633.547207785945,9.449284989386797E-4,,,,,0,,1
+507564517,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,16,0.0,47,254150924103367,10,39.126644134521484,134.38681080671853,0.05230797109971699,1,63556.45054852094,0.001004693447612226,,,,,0,,1
+507564517,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,18,0.0,47,254150930966661,11,38.05449676513672,-194.31913204109685,0.0603176104913129,1,-134218.2456237387,0.001136686885729432,,,,,0,,1
+507564518,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,20,0.0,47,254150930282356,17,34.44050216674805,432.21844468175914,0.09030064478687466,4,264333.24842429,3.4028234663852886E38,,,,,0,,1
+507564518,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,21,0.0,47,254150930189734,24,31.81421661376953,23.69522719418771,0.12151177916132183,1,8695.57473961257,0.002198257716372609,,,,,0,,1
+507564518,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,26,0.0,47,254150922792962,18,34.097312927246094,425.9954652750853,0.0925182427862491,1,253389.38362076328,0.0017926687141880393,,,,,0,,1
+507564519,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,27,0.0,47,254150922087171,12,37.293312072753906,-586.7823168477912,0.06406418859560706,1,-376395.8918219733,0.0012407951289787889,,,,,0,,1
+507564519,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,29,0.0,47,254150924899045,7,41.54695510864258,660.6811260489835,0.039909612164672065,1,410688.38208495895,8.014875347726047E-4,,,,,0,,1
+507564519,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,93,0.0,99,3921360451,67,21.437541961669922,67.07203351537447,4.200244723805593,4,14445.49178943896,3.4028234663852886E38,,,,,0,,3
+507564520,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,94,0.0,227,5733920049909,36,34.1756591796875,535.5414565780502,0.09479613411569293,4,320036.6367331224,3.4028234663852886E38,,,,,0,,3
+507564520,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,96,0.0,227,5733929012645,49,31.54021644592285,664.3942051924046,0.12513554476145378,4,404369.8246019613,3.4028234663852886E38,,,,,0,,3
+507564521,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,97,0.0,227,5733936130372,46,32.16535186767578,53.78260632830731,0.11783872879801005,1,14200.630095772016,0.002204396529123187,,,,,0,,3
+507564521,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,103,0.0,227,5733928989547,33,37.70869064331055,-590.3309140560332,0.062331703940106675,1,-373872.79014740395,0.0011620044242590666,,,,,0,,3
+507564521,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,104,0.0,227,5733927963120,33,41.60477066040039,626.5444784203019,0.04020183428152377,1,380968.0873531479,7.818621816113591E-4,,,,,0,,3
+507564522,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,105,0.0,227,5733936156659,33,37.20381546020508,-45.01216779129251,0.06725455948187412,1,-55664.82221565379,0.0012306852731853724,,,,,0,,3
+507564522,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,106,0.0,227,5733927973804,33,42.366050720214844,-706.3137180978961,0.03695042534354209,1,-451258.22443775175,7.157506188377738E-4,,,,,0,,3
+507564522,645430000000,,,-1157840705570302685,0.0,8.459663461305222,,,0,26,0.0,1074,2454018,6,38.379783630371094,260.5666172064291,0.06342451846738659,1,152784.32253455947,8.939864346757531E-4,,,,,0,,6
+507565486,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,10,0.0,47,254151923954028,11,38.274559020996094,-564.9028453057774,0.05759658898068687,1,-361034.2827007972,0.001108249998651445,,,,,0,,1
+507565486,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,13,0.0,47,254151923433045,33,28.90388298034668,181.73667298937528,0.16793228464728327,4,93918.33689623272,3.4028234663852886E38,,,,,0,,1
+507565487,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,15,0.0,47,254151927646308,13,36.797218322753906,-57.4824998213611,0.06880759534407105,4,-59690.69394301724,3.4028234663852886E38,,,,,0,,1
+507565487,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,16,0.0,47,254151924102942,13,36.631500244140625,135.5598011510217,0.06946913699010651,1,63691.17366628025,0.0013390311505645514,,,,,0,,1
+507565487,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,18,0.0,47,254151930967299,15,35.41693115234375,-194.4222144308501,0.08101909155300935,4,-134412.63179409318,3.4028234663852886E38,,,,,0,,1
+507565488,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,20,0.0,47,254151930280946,19,33.88644790649414,431.69221155304695,0.09612632346681427,1,264765.1754041004,0.0018367217853665352,,,,,0,,1
+507565488,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,21,0.0,47,254151930189690,25,31.405391693115234,23.19255569370044,0.1272794527620572,4,8719.031902407394,3.4028234663852886E38,,,,,0,,1
+507565488,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,26,0.0,47,254151922791506,21,32.98560333251953,427.1194365262945,0.10508201313565363,1,253815.83313986595,0.002037443220615387,,,,,0,,1
+507565489,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,27,0.0,47,254151922089133,16,35.08347702026367,-585.6522107544079,0.08251573243251992,1,-376982.31602713343,0.0016002649208530784,,,,,0,,1
+507565489,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,29,0.0,47,254151924896855,9,40.04949188232422,660.2496421494047,0.047252621672399575,1,411348.6316522417,9.034230606630445E-4,,,,,0,,1
+507565489,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,93,0.0,99,4921360148,76,19.728069305419922,67.62574136435111,4.200244723805593,4,14512.040821125569,3.4028234663852886E38,,,,,0,,3
+507565490,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,94,0.0,227,5734920048068,43,32.781558990478516,536.6173374831058,0.11067187716279625,4,320573.19235653535,3.4028234663852886E38,,,,,0,,3
+507565490,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,96,0.0,227,5734929010348,58,30.194395065307617,664.5141754393649,0.1458351536178969,4,405034.9294760309,3.4028234663852886E38,,,,,0,,3
+507565490,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,97,0.0,227,5734936130244,36,34.35329818725586,53.87568977737817,0.09224503395385897,1,14254.231466950683,0.0017135324887931347,,,,,0,,3
+507565490,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,103,0.0,227,5734928991530,33,35.84935760498047,-590.0389637334588,0.07682473603804862,4,-374462.9892466363,3.4028234663852886E38,,,,,0,,3
+507565491,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,104,0.0,227,5734927961022,33,39.38361740112305,625.7758508607994,0.0514985252386686,1,381594.0801541524,9.578758617863059E-4,,,,,0,,3
+507565491,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,105,0.0,227,5734936156873,33,36.41045379638672,-45.16952223275126,0.0734089183556319,1,-55710.12641123709,0.0013483887305483222,,,,,0,,3
+507565491,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,106,0.0,227,5734927976107,33,39.11711502075195,-706.2950409117216,0.05306119255677988,1,-451964.72824866057,9.870289359241724E-4,,,,,0,,3
+507565491,646430000000,,,-1157840705570302595,0.0,8.61156488866773,,,0,26,0.0,1074,2453150,7,37.486358642578125,260.04191778826043,0.07024767898310663,4,153044.62582843594,3.4028234663852886E38,,,,,0,,6
+507566513,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,10,0.0,47,254152923955891,11,37.981231689453125,-563.8695333889189,0.059550763540461904,1,-361598.8876885486,0.001146315480582416,,,,,0,,1
+507566513,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,13,0.0,47,254152923432566,12,37.81132125854492,181.19575032190176,0.06061895648843249,1,94099.74431893436,0.0011689598904922605,,,,,0,,1
+507566514,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,15,0.0,47,254152927646499,11,38.28129959106445,-57.300133117121675,0.05821663007694022,1,-59748.05344805952,0.0011073903879150748,,,,,0,,1
+507566514,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,16,0.0,47,254152924102489,20,33.191165924072266,135.08314095532194,0.1028718789945558,4,63826.19943433292,3.4028234663852886E38,,,,,0,,1
+507566514,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,18,0.0,47,254152930967974,17,34.77043151855469,-193.8054242151568,0.08712721527792217,1,-134606.50226875316,0.0016589913284406066,,,,,0,,1
+507566515,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,20,0.0,47,254152930279498,7,41.60154724121094,431.5319558424767,0.04063289497950617,1,265196.8655621961,7.964656688272953E-4,,,,,0,,1
+507566515,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,21,0.0,47,254152930189600,25,31.495180130004883,22.992140198578653,0.12598932028244486,4,8742.556045017089,3.4028234663852886E38,,,,,0,,1
+507566515,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,26,0.0,47,254152922790056,21,32.69205093383789,427.3789403502592,0.10867661393839484,1,254242.86316760688,0.0019869499374181032,,,,,0,,1
+507566516,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,27,0.0,47,254152922091057,21,32.67927551269531,-585.5310135390127,0.10871008896832435,4,-377568.8953616617,3.4028234663852886E38,,,,,0,,1
+507566516,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,29,0.0,47,254152924894668,9,39.91590881347656,660.9237931394259,0.04797090361897924,1,412009.19935260137,9.17424273211509E-4,,,,,0,,1
+507566516,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,93,0.0,99,5921360021,76,19.710405349731445,67.65905696560216,4.200244723805593,4,14579.57304962839,3.4028234663852886E38,,,,,0,,3
+507566517,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,94,0.0,227,5735920046233,56,30.453014373779297,537.7280506587276,0.14358958903249386,4,321110.1585467396,3.4028234663852886E38,,,,,0,,3
+507566518,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,96,0.0,227,5735929008287,33,36.4202995300293,664.8955581278551,0.07204320703017075,1,405699.14947031863,0.001351123210042715,,,,,0,,3
+507566518,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,97,0.0,227,5735936130107,33,36.27516174316406,53.914066623422855,0.07451087340500417,1,14307.980853663888,0.001373406732454896,,,,,0,,3
+507566518,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,103,0.0,227,5735928993384,42,32.85435104370117,-589.6396536728375,0.10778989592585742,4,-375053.2473734796,3.4028234663852886E38,,,,,0,,3
+507566519,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,104,0.0,227,5735927958931,33,40.540592193603516,626.1755017459859,0.04525428387092659,1,382220.00812148146,8.837701170705259E-4,,,,,0,,3
+507566519,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,105,0.0,227,5735936157052,33,37.19782257080078,-44.911006800025746,0.06729905972051767,1,-55755.172990738756,0.0012315345229580998,,,,,0,,3
+507566519,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,106,0.0,227,5735927978524,33,37.089576721191406,-705.639703437701,0.06663544200687907,1,-452670.4045310369,0.0012465415056794882,,,,,0,,3
+507566520,647430000000,,,-1157840705570302504,0.0,8.719299713917172,,,0,26,0.0,1074,2452260,7,36.62309265136719,260.3504492259332,0.07754186553828346,1,153305.00387068398,0.0010943734087049961,,,,,0,,6
+507567505,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,10,0.0,47,254153923957749,15,35.435447692871094,-565.9151283469614,0.07958992495082873,1,-362163.77900384425,0.001448828843422234,,,,,0,,1
+507567505,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,13,0.0,47,254153923431932,8,40.45025634765625,181.75303256850623,0.04489814050627014,1,94281.23289843845,8.626860799267888E-4,,,,,0,,1
+507567506,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,15,0.0,47,254153927646710,6,43.202701568603516,-56.91673956369658,0.0336301774986236,1,-59805.14698659394,6.623833905905485E-4,,,,,0,,1
+507567506,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,16,0.0,47,254153924102036,166,28.87523651123047,135.80902059373062,0.16860531331266193,4,63961.21783133964,3.4028234663852886E38,,,,,1,,1
+507567507,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,18,0.0,47,254153930968583,14,36.01852035522461,-193.74975052242678,0.07572984544316558,1,-134800.26492190853,0.0014369437703862786,,,,,0,,1
+507567507,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,20,0.0,47,254153930278069,7,41.792320251464844,431.89633138516206,0.03979008642084347,1,265628.58967999485,7.791632087901235E-4,,,,,0,,1
+507567508,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,21,0.0,47,254153930189526,24,31.756479263305664,23.698616268458196,0.12230990442127176,1,8766.182503574913,0.002347154775634408,,,,,0,,1
+507567508,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,26,0.0,47,254153922788684,166,29.818540573120117,427.4238951104128,0.15109342097148226,1,254670.06520675748,0.002766065765172243,,,,,1,,1
+507567508,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,27,0.0,47,254153922093029,15,35.804954528808594,-586.3160688425592,0.07596934626008356,1,-378155.34699461015,0.0014727128436788917,,,,,0,,1
+507567509,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,29,0.0,47,254153924892415,11,38.61226272583008,660.99863821395,0.0555961418279618,1,412670.1117327495,0.0010659885592758656,,,,,0,,1
+507567509,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,93,0.0,99,6921359906,76,19.71822166442871,67.15617457991516,4.200244723805593,4,14646.074174861895,3.4028234663852886E38,,,,,0,,3
+507567510,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,94,0.0,227,5736920044362,86,26.801847457885742,537.1652470541665,0.2167312729707218,4,321648.5180173178,3.4028234663852886E38,,,,,0,,3
+507567510,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,96,0.0,227,5736929005980,33,40.34832763671875,665.2549917143447,0.046423467730717816,1,406364.2182653968,9.060918819159269E-4,,,,,0,,3
+507567510,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,97,0.0,227,5736936129898,33,35.284034729003906,53.97745147194115,0.08316646937401562,1,14361.844807100872,0.0015394143993034959,,,,,0,,3
+507567511,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,103,0.0,227,5736928995438,40,33.35173416137695,-590.3371170631203,0.10188127439273925,1,-375643.8349784035,0.001918914495036006,,,,,0,,3
+507567511,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,104,0.0,227,5736927956912,33,37.869483947753906,626.3903575519057,0.061032351889735714,1,382846.29312742676,0.0011402913369238377,,,,,0,,3
+507567512,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,105,0.0,227,5736936157190,33,36.80465316772461,-44.73725443667246,0.07028079621380995,1,-55800.01371591522,0.0012885614996775985,,,,,0,,3
+507567512,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,106,0.0,227,5736927980833,36,34.215484619140625,-705.3157837709082,0.09220801421531649,1,-453375.94881769887,0.0016361952293664217,,,,,0,,3
+507567512,648430000000,,,-1157840705570302411,0.0,8.908880654415572,,,0,26,0.0,1074,2451428,8,35.853633880615234,260.6295334211702,0.08468352977215582,1,153565.5463353547,0.001195744494907558,,,,,0,,6
+507568478,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,10,0.0,47,254154923959651,23,32.117061614990234,-564.8542437227759,0.11629029023982407,4,-362729.0476652313,3.4028234663852886E38,,,,,0,,1
+507568479,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,13,0.0,47,254154923431320,10,38.882484436035156,181.63764641194825,0.05365727774670287,1,94462.93979724924,0.0010333359241485596,,,,,0,,1
+507568479,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,15,0.0,47,254154927646885,6,42.638580322265625,-57.049039139304,0.03579456742469844,1,-59862.07994524997,7.06830935087055E-4,,,,,0,,1
+507568480,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,16,0.0,47,254154924101467,37,28.048276901245117,134.95176160604063,0.18537296662153857,1,64096.43946660846,0.0033913736697286367,,,,,0,,1
+507568481,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,18,0.0,47,254154930969254,15,35.809024810791016,-193.61386376827033,0.07753051581399217,1,-134993.9612105496,0.001472022500820458,,,,,0,,1
+507568481,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,20,0.0,47,254154930276620,7,41.438331604003906,431.7919368208327,0.04136805589655862,1,266060.4544418218,8.115735836327076E-4,,,,,0,,1
+507568482,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,21,0.0,47,254154930189439,23,31.902376174926758,23.609384136974413,0.12030315833798327,1,8789.848590837244,0.002176059177145362,,,,,0,,1
+507568483,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,26,0.0,47,254154922787151,40,27.381742477416992,427.2446554715593,0.19986283677283045,1,255097.26389613733,0.0036618653684854507,,,,,0,,1
+507568484,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,27,0.0,47,254154922095001,14,36.53022384643555,-585.7616154398461,0.06991405200696355,1,-378741.63830788236,0.0013547356938943267,,,,,0,,1
+507568484,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,29,0.0,47,254154924890207,9,39.5322265625,660.5934659708068,0.05009685093051908,1,413331.0385269975,9.588580578565598E-4,,,,,0,,1
+507568485,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,93,0.0,99,7921359606,94,16.260272979736328,67.19293676958208,4.200244457536401,4,14712.847803240671,3.4028234663852886E38,,,,,0,,3
+507568486,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,94,0.0,227,5737920042390,127,23.424392700195312,536.7644032830017,0.3180241340546206,4,322185.25178669736,3.4028234663852886E38,,,,,0,,3
+507568487,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,96,0.0,227,5737929003804,33,39.8388786315918,665.3020255043461,0.049129503278404985,1,407029.49851753353,9.608260588720441E-4,,,,,0,,3
+507568488,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,97,0.0,227,5737936129717,33,36.48228454589844,54.04094282813608,0.07282339240333768,1,14415.882207451752,0.0013410443207249045,,,,,0,,3
+507568488,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,103,0.0,227,5737928997312,50,31.44519805908203,-590.778962029482,0.12649136252226512,4,-376234.2040563935,3.4028234663852886E38,,,,,0,,3
+507568488,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,104,0.0,227,5737927954747,33,37.834808349609375,626.1960875497257,0.061270379905187744,1,383472.6696264038,0.0011448526056483388,,,,,0,,3
+507568489,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,105,0.0,227,5737936157297,33,37.86237335205078,-44.67703073599665,0.06255618551043685,1,-55844.698346563506,0.0011408253340050578,,,,,0,,3
+507568489,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,106,0.0,227,5737927983038,166,29.49942398071289,-705.8294063907069,0.15766334700463713,4,-454081.18561248423,3.4028234663852886E38,,,,,1,,3
+507568490,649430000000,,,-1157840705570302317,0.0,8.632202372909196,,,0,26,0.0,1074,2450555,7,37.09153366088867,260.5062912583837,0.07349356699581905,1,153826.1399244122,0.001036915578879416,,,,,0,,6
+507569523,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,10,0.0,47,254155923961546,28,30.380176544189453,-564.2900768199538,0.14187514827517944,4,-363293.3892672213,3.4028234663852886E38,,,,,0,,1
+507569524,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,13,0.0,47,254155923430739,10,38.762847900390625,181.32608163564498,0.054392804783893745,1,94644.46744244733,0.0010476671159267426,,,,,0,,1
+507569524,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,15,0.0,47,254155927647078,9,40.20545196533203,-57.486841074260695,0.046922098396520895,1,-59919.389530515444,9.353453060612082E-4,,,,,0,,1
+507569525,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,16,0.0,47,254155924101122,51,25.231903076171875,135.27033884777347,0.256086125756096,4,64231.0606266541,3.4028234663852886E38,,,,,0,,1
+507569525,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,18,0.0,47,254155930969875,17,34.45973587036133,-193.93066020164986,0.09022868553784896,1,-135187.828237035,0.0017194078536704183,,,,,0,,1
+507569526,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,20,0.0,47,254155930275176,11,38.18222427368164,431.64858600869775,0.05934154252317442,1,266492.17174640787,0.0011200940934941173,,,,,0,,1
+507569526,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,21,0.0,47,254155930189350,17,34.63960647583008,23.538294523128428,0.088279428637206,4,8813.55076060286,3.4028234663852886E38,,,,,0,,1
+507569527,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,26,0.0,47,254155922785762,44,26.58329200744629,426.6293308014965,0.2190576003302973,4,255524.03284042358,3.4028234663852886E38,,,,,0,,1
+507569527,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,27,0.0,47,254155922096821,166,34.53714370727539,-585.486570015707,0.08784958695286632,4,-379327.8165992795,3.4028234663852886E38,,,,,1,,1
+507569528,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,29,0.0,47,254155924888037,14,35.9703369140625,660.5723348477627,0.07504637403292946,1,413991.46173820517,0.0014449367299675941,,,,,0,,1
+507569528,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,93,0.0,99,8921359019,78,19.24379539489746,67.54185591823435,4.200244457536401,4,14781.183107908628,3.4028234663852886E38,,,,,0,,3
+507569528,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,94,0.0,227,5738920040707,122,23.759218215942383,536.5088189415371,0.30613418285725724,4,322720.81273654103,3.4028234663852886E38,,,,,0,,3
+507569529,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,96,0.0,227,5738929001534,33,43.279335021972656,665.0406130628162,0.03359056163546317,1,407694.73012381315,6.465796614065766E-4,,,,,0,,3
+507569529,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,97,0.0,227,5738936129545,33,37.00283432006836,54.171112250210825,0.06875600984865768,1,14469.895156145907,0.001263035461306572,,,,,0,,3
+507569529,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,103,0.0,227,5738928999354,60,29.865324020385742,-590.1487774083753,0.15140164420256574,4,-376824.4432510304,3.4028234663852886E38,,,,,0,,3
+507569530,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,104,0.0,227,5738927952674,33,37.85807418823242,625.8207715384965,0.06110991943360916,1,384098.48259400873,0.0011417903006076813,,,,,0,,3
+507569530,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,105,0.0,227,5738936157442,33,38.06615447998047,-44.53508582519328,0.06117305019475139,1,-55889.39190442063,0.0011143716983497143,,,,,0,,3
+507569530,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,106,0.0,227,5738927985360,57,30.273733139038086,-705.3910378349105,0.144339519568767,1,-454786.70224135165,0.002575862454250455,,,,,0,,3
+507569531,650430000000,,,-1157840705570302223,0.0,8.653616844514978,,,0,26,0.0,1074,2449655,7,37.00787353515625,260.3309540608021,0.07420043681126565,1,154086.41199582722,0.001046951161697507,,,,,0,,6
+507570513,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,10,0.0,47,254156923963411,26,31.084138870239258,-564.4679872430029,0.13088606064115643,4,-363858.75013985834,3.4028234663852886E38,,,,,0,,1
+507570513,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,13,0.0,47,254156923430119,10,39.30558776855469,181.33862397964538,0.05113533822180352,1,94825.76660950348,9.842069121077657E-4,,,,,0,,1
+507570514,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,15,0.0,47,254156927647297,12,37.509559631347656,-57.63648435993116,0.06349827087299936,1,-59976.838083593786,0.0012102851178497076,,,,,0,,1
+507570514,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,16,0.0,47,254156924100554,43,26.76215934753418,134.59559141476313,0.21483941372268978,4,64365.81285308935,3.4028234663852886E38,,,,,0,,1
+507570514,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,18,0.0,47,254156930970543,18,34.30430603027344,-193.6424078256082,0.09182228168674522,4,-135381.31415399318,3.4028234663852886E38,,,,,0,,1
+507570515,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,20,0.0,47,254156930273762,15,35.64841842651367,431.1761690788351,0.07881549764892981,1,266923.6986658992,0.0014994944212958217,,,,,0,,1
+507570515,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,21,0.0,47,254156930189292,17,34.747955322265625,23.809013605442644,0.08720778667111317,4,8837.173955755388,3.4028234663852886E38,,,,,0,,1
+507570515,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,26,0.0,47,254156922784358,45,26.3354434967041,426.8610233409386,0.22538360714213634,4,255951.061782261,3.4028234663852886E38,,,,,0,,1
+507570516,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,27,0.0,47,254156922098847,25,31.21417999267578,-586.3759176362132,0.12861629884296816,4,-379913.25489943125,3.4028234663852886E38,,,,,0,,1
+507570516,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,29,0.0,47,254156924885840,14,36.41521072387695,660.5075100154563,0.07134292737721587,1,414651.83532868023,0.0013727934565395117,,,,,0,,1
+507570516,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,93,0.0,99,9921359103,59,22.925527572631836,67.67375502497762,4.200244457536401,4,14850.01484119894,3.4028234663852886E38,,,,,0,,3
+507570517,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,94,0.0,227,5739920038935,99,25.537508010864258,536.560181203517,0.25012499094585006,4,323256.1746755055,3.4028234663852886E38,,,,,0,,3
+507570518,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,96,0.0,227,5739928999316,33,39.98085021972656,664.592087934976,0.048358454266874296,1,408359.7428721932,9.452489321120083E-4,,,,,0,,3
+507570518,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,97,0.0,227,5739936129399,33,37.126956939697266,53.84608064327398,0.06782159220672157,4,14523.891426767472,3.4028234663852886E38,,,,,0,,3
+507570518,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,103,0.0,227,5739929001416,41,33.19879913330078,-589.508845204703,0.10366335584562836,4,-377414.12379405386,3.4028234663852886E38,,,,,0,,3
+507570519,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,104,0.0,227,5739927950559,33,35.95333480834961,625.7160702320584,0.07574259308071268,1,384724.18651183625,0.0014217500574886799,,,,,0,,3
+507570519,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,105,0.0,227,5739936157555,33,35.86825942993164,-44.57162221858573,0.07795025591087612,4,-55934.042770066524,3.4028234663852886E38,,,,,0,,3
+507570519,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,106,0.0,227,5739927987821,49,31.713632583618164,-705.1363737197721,0.12250968120317024,4,-455492.6700099491,3.4028234663852886E38,,,,,0,,3
+507570520,651430000000,,,-1157840705570302130,0.0,8.849171919179925,,,0,26,0.0,1074,2448800,8,35.955848693847656,260.0740745859897,0.08369750999298187,4,154346.5887632141,3.4028234663852886E38,,,,,0,,6
+507571477,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,10,0.0,47,254157923965323,20,33.10340118408203,-564.4758943729162,0.10388441752102912,4,-364423.03282148245,3.4028234663852886E38,,,,,0,,1
+507571477,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,13,0.0,47,254157923429538,11,37.97138595581055,181.37294501336385,0.05952282607762613,1,95007.14837749241,0.0011476153740659356,,,,,0,,1
+507571477,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,15,0.0,47,254157927647464,15,35.61942672729492,-57.318801782682044,0.07860044367216418,1,-60033.997070998426,0.0015045078471302986,,,,,0,,1
+507571478,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,16,0.0,47,254157924100182,28,30.350732803344727,134.97055808081296,0.14237941219856698,4,64500.761660116754,3.4028234663852886E38,,,,,0,,1
+507571478,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,18,0.0,47,254157930971190,17,34.824073791503906,-192.76512539471105,0.08660353034537344,4,-135574.81506560548,3.4028234663852886E38,,,,,0,,1
+507571479,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,20,0.0,47,254157930272301,11,37.97694778442383,431.8109548315724,0.06071597832511608,4,267355.462896099,3.4028234663852886E38,,,,,0,,1
+507571479,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,21,0.0,47,254157930189200,17,34.57292175292969,23.833776640259998,0.08894563415455031,4,8861.144387997721,3.4028234663852886E38,,,,,0,,1
+507571480,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,26,0.0,47,254157922782962,32,29.159387588500977,427.0636435449667,0.16296528250564235,4,256378.08536993852,3.4028234663852886E38,,,,,0,,1
+507571480,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,27,0.0,47,254157922100830,21,32.87245559692383,-586.5908416070461,0.10632900168531706,4,-380498.7722017411,3.4028234663852886E38,,,,,0,,1
+507571480,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,29,0.0,47,254157924883603,16,35.27971649169922,660.4155555477578,0.08118342956969038,1,415312.4495722306,0.001564515521749854,,,,,0,,1
+507571481,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,93,0.0,99,10921358780,124,23.60331916809082,67.42442055397794,0.30825268711280107,4,14916.54672391549,3.4028234663852886E38,,,,,0,,3
+507571481,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,94,0.0,227,5740920037199,63,29.44359588623047,536.6305614762366,0.1608389732344202,4,323793.27224941493,3.4028234663852886E38,,,,,0,,3
+507571482,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,96,0.0,227,5740928997091,33,39.93761444091797,665.0838296176871,0.04859129419354655,4,409024.8632065047,3.4028234663852886E38,,,,,0,,3
+507571482,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,97,0.0,227,5740936129146,33,36.6264762878418,54.508686201148066,0.07167211098622439,4,14578.19711034468,3.4028234663852886E38,,,,,0,,3
+507571482,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,103,0.0,227,5740929003364,33,36.06188201904297,-589.586553205575,0.07500904642063422,4,-378003.65619180613,3.4028234663852886E38,,,,,0,,3
+507571483,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,104,0.0,227,5740927948506,37,33.988651275634766,625.9554654066746,0.09460396264757909,1,385350.04565940413,0.001782614504918456,,,,,0,,3
+507571483,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,105,0.0,227,5740936157745,33,36.436241149902344,-44.42703165709477,0.07320005513757061,4,-55978.27625160975,3.4028234663852886E38,,,,,0,,3
+507571484,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,106,0.0,227,5740927990310,39,33.53077697753906,-705.2696361247763,0.09965489783095477,4,-456197.8192726934,3.4028234663852886E38,,,,,0,,3
+507571484,652430000000,,,-1157840705570302039,0.0,8.927502106959462,,,0,26,0.0,5162,254157922447928,8,35.962772369384766,260.7785930447727,0.08363103422512036,1,154607.1033526031,0.001180813880637288,,,,,0,,6
+507572435,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,10,0.0,47,254158923967195,166,29.951704025268555,-563.65760867426,0.14901429127264398,4,-364987.29729298846,3.4028234663852886E38,,,,,1,,1
+507572436,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,13,0.0,47,254158923428924,14,36.06678771972656,182.28008367617497,0.07396490506948472,1,95189.33507964291,0.0013472560094669461,,,,,0,,1
+507572438,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,15,0.0,47,254158927647625,22,32.435455322265625,-56.38654860972068,0.1127936681786737,4,-60090.40914728883,3.4028234663852886E38,,,,,0,,1
+507572439,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,16,0.0,47,254158924099765,37,27.93342399597168,136.2436145174671,0.18783028178154915,4,64637.08319852771,3.4028234663852886E38,,,,,0,,1
+507572440,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,18,0.0,47,254158930971802,25,31.49471092224121,-194.30870280940087,0.1261367335636358,4,-135769.18864077498,3.4028234663852886E38,,,,,0,,1
+507572441,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,20,0.0,47,254158930270912,17,34.809974670410156,432.3522864885242,0.08661503816699723,4,267787.5664634178,3.4028234663852886E38,,,,,0,,1
+507572448,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,21,0.0,47,254158930189127,26,31.16398811340332,24.295127422520423,0.1308147254605485,4,8884.955717528672,3.4028234663852886E38,,,,,0,,1
+507572450,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,26,0.0,47,254158922781518,34,28.64345932006836,427.51601999039394,0.17290750785021436,4,256805.17080496135,3.4028234663852886E38,,,,,0,,1
+507572451,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,27,0.0,47,254158922102801,166,28.948986053466797,-586.2489264032092,0.16682643541098408,4,-381084.20935534185,3.4028234663852886E38,,,,,1,,1
+507572452,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,29,0.0,47,254158924881450,166,30.726396560668945,661.0368787301686,0.1365245354375877,4,415972.2806891978,3.4028234663852886E38,,,,,1,,1
+507572453,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,93,0.0,99,11921358525,68,21.359569549560547,68.04323441552728,4.200244457536401,4,14985.682229499636,3.4028234663852886E38,,,,,0,,3
+507572454,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,94,0.0,227,5741920035583,103,25.249719619750977,537.5967991186583,0.25842914486561896,4,324331.8296080141,3.4028234663852886E38,,,,,0,,3
+507572455,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,96,0.0,227,5741928994845,33,35.34599304199219,666.2776699047681,0.08131252852304766,4,409690.59866416367,3.4028234663852886E38,,,,,0,,3
+507572457,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,97,0.0,227,5741936129028,42,33.03193664550781,54.49439713125088,0.10692472907601386,1,14632.694278427838,0.0019950810819864273,,,,,0,,3
+507572457,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,103,0.0,227,5741929005277,41,33.08403396606445,-590.8743247428329,0.10502129543906014,4,-378593.9683774422,3.4028234663852886E38,,,,,0,,3
+507572457,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,104,0.0,227,5741927946477,166,29.98121452331543,627.4482088374607,0.14922705699854444,4,385976.93531345204,3.4028234663852886E38,,,,,1,,3
+507572458,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,105,0.0,227,5741936157898,33,36.04145812988281,-44.07627205579027,0.07646875909163692,4,-56022.386474251056,3.4028234663852886E38,,,,,0,,3
+507572458,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,106,0.0,227,5741927992590,49,31.54473876953125,-705.4219165405202,0.12488776463685997,4,-456903.03424038447,3.4028234663852886E38,,,,,0,,3
+507572458,653430000000,,,-1157840705570301947,0.0,10.294072573096695,,,0,26,0.0,5162,254158922447055,13,32.1456413269043,261.1407021040993,0.12954165085102204,4,154867.93403193232,3.4028234663852886E38,,,,,0,,6
+507573475,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,10,0.0,47,254159923969114,51,25.308822631835938,-563.5024653321682,0.2538111217831984,4,-365551.65225137526,3.4028234663852886E38,,,,,0,,1
+507573475,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,13,0.0,47,254159923428321,19,33.48965072631836,182.3999005520809,0.09930044361148244,1,95371.64819639458,0.0018126204377040267,,,,,0,,1
+507573476,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,15,0.0,47,254159927647866,166,29.016193389892578,-56.027055378932204,0.16654092827030764,1,-60146.685695770415,0.0030337495263665915,,,,,1,,1
+507573476,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,16,0.0,47,254159924099399,52,25.09124755859375,136.35006254980198,0.26025447009940383,4,64774.5900595031,3.4028234663852886E38,,,,,0,,1
+507573476,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,18,0.0,47,254159930972476,29,29.94772720336914,-194.06480875052364,0.1503422755820225,4,-135963.70710388166,3.4028234663852886E38,,,,,0,,1
+507573477,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,20,0.0,47,254159930269464,20,33.29651641845703,432.1835783287363,0.1027498777793367,1,268219.7586650882,0.001965802628546953,,,,,0,,1
+507573477,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,21,0.0,47,254159930189023,30,29.77132225036621,23.81641588896869,0.15324544186151678,1,8908.77216520704,0.002781142946332693,,,,,0,,1
+507573477,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,26,0.0,47,254159922780094,52,25.162370681762695,427.5873545718962,0.25790085014769093,1,257232.70177889356,0.004727928899228573,,,,,0,,1
+507573478,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,27,0.0,47,254159922104723,55,24.55308723449707,-586.2954148739063,0.27648344419188065,4,-381669.7759325126,3.4028234663852886E38,,,,,0,,1
+507573478,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,29,0.0,47,254159924879160,166,26.16965675354004,661.4299176187897,0.23009397570856327,4,416633.6074905263,3.4028234663852886E38,,,,,1,,1
+507573478,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,93,0.0,99,12921358227,91,16.85458755493164,68.3880892312392,4.200244457536401,4,15053.988650784078,3.4028234663852886E38,,,,,0,,3
+507573479,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,94,0.0,227,5742920033384,67,21.57032012939453,537.5192956125254,4.203603443388239,4,324868.78105005156,3.4028234663852886E38,,,,,0,,3
+507573479,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,96,0.0,227,5742928992701,45,32.35954284667969,665.8552519386244,0.1140136969726892,4,410356.1160522857,3.4028234663852886E38,,,,,0,,3
+507573479,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,97,0.0,227,5742936128781,40,33.26683044433594,54.67530255016689,0.10414928047844552,1,14687.248665207553,0.0019418505253270268,,,,,0,,3
+507573480,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,103,0.0,227,5742929007224,166,28.928768157958984,-590.7912317138303,0.16845623584902358,4,-379184.20291136275,3.4028234663852886E38,,,,,1,,3
+507573480,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,104,0.0,227,5742927944026,166,24.852947235107422,627.7075081666862,0.2681645622574522,4,386603.6202402267,3.4028234663852886E38,,,,,1,,3
+507573480,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,105,0.0,227,5742936158069,37,34.07891082763672,-43.81489369671684,0.09511745446263747,1,-56066.34251006506,0.001763568026944995,,,,,0,,3
+507573480,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,106,0.0,227,5742927994958,58,30.12782859802246,-705.1023594281623,0.14676195346468002,1,-457608.1823862252,0.0026194972451776266,,,,,0,,3
+507573481,654430000000,,,-1157840705570301855,0.0,11.403750498399743,,,0,26,0.0,5162,254159922446189,19,28.787925720214844,261.4021997517706,0.1904677946169645,4,155128.97249542328,3.4028234663852886E38,,,,,0,,6
+507574459,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,10,0.0,47,254160923970921,63,23.371150970458984,-564.1930440662334,0.3170664303397892,4,-366114.7854961087,3.4028234663852886E38,,,,,0,,1
+507574459,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,13,0.0,47,254160923427719,24,31.567039489746094,182.5238925289109,0.12375012119490314,1,95554.08623225793,0.002261713147163391,,,,,0,,1
+507574460,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,15,0.0,47,254160927648012,38,27.677522659301758,-56.053622653791734,0.19406262840524835,1,-60202.83759718483,0.003539267461746931,,,,,0,,1
+507574461,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,16,0.0,47,254160924098867,63,22.316146850585938,135.47624800885603,4.200737321810024,4,64910.77574736436,3.4028234663852886E38,,,,,0,,1
+507574462,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,18,0.0,47,254160930973075,46,26.07869529724121,-193.30492334111932,0.23360312074263034,4,-136156.5052733583,3.4028234663852886E38,,,,,0,,1
+507574463,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,20,0.0,47,254160930268041,21,32.790077209472656,432.38176781341645,0.10880775151525018,1,268652.04126806033,0.002083828207105398,,,,,0,,1
+507574464,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,21,0.0,47,254160930188977,31,29.40264892578125,24.019255498810665,0.15981050848192524,1,8932.687516705253,0.002901730127632618,,,,,0,,1
+507574465,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,26,0.0,47,254160922778588,61,23.77931022644043,427.6405913689848,0.30233009476803696,1,257660.36781669533,0.0055440086871385574,,,,,0,,1
+507574466,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,27,0.0,47,254160922106681,62,22.509929656982422,-585.7541172994111,4.2003789234781514,4,-382255.98415399017,3.4028234663852886E38,,,,,0,,1
+507574467,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,29,0.0,47,254160924876952,62,23.523906707763672,661.3880643621796,0.3117145194398885,1,417294.8803534784,0.005709447432309389,,,,,0,,1
+507574469,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,93,0.0,99,13921357996,97,15.706643104553223,68.72810007781783,4.20024419126721,4,15123.154434665097,3.4028234663852886E38,,,,,0,,3
+507574470,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,94,0.0,227,5743920031966,74,20.165529251098633,537.4104362463916,4.203603177119048,4,325406.0664474112,3.4028234663852886E38,,,,,0,,3
+507574471,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,96,0.0,227,5743928990398,56,30.511476516723633,665.7288741898378,0.1406618760619004,1,411021.78794394585,0.00251512648537755,,,,,0,,3
+507574472,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,97,0.0,227,5743936128640,44,32.56387710571289,54.89186247891283,0.11268399023447762,1,14741.92903390439,0.0021055396646261215,,,,,0,,3
+507574473,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,103,0.0,227,5743929009295,82,27.1898193359375,-590.0354191579804,0.20543613386370918,4,-379774.400697559,3.4028234663852886E38,,,,,0,,3
+507574474,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,104,0.0,226,5743927942188,1000000000,20.05268669128418,628.754521231067,2.99792458E8,4,387232.64687184227,3.4028234663852886E38,,,,,0,,3
+507574474,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,105,0.0,227,5743936158205,37,33.975624084472656,-43.647953564361046,0.0962205245142495,1,-56110.12630509877,0.001784664229489863,,,,,0,,3
+507574474,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,106,0.0,227,5743927997390,62,29.66651725769043,-704.8915253521122,0.15468925326923455,1,-458313.22618409025,0.0027623805217444897,,,,,0,,3
+507574475,655430000000,,,-1157840705570301761,0.0,12.102445848314098,,,0,26,0.0,5162,254160922445339,24,26.722654342651367,261.0236629484,0.2414751696899311,4,155389.87306254933,3.4028234663852886E38,,,,,0,,6
+507575481,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,10,0.0,47,254161923972891,69,21.176589965820312,-564.4727247044596,4.2007146889287394,4,-366678.7982651794,3.4028234663852886E38,,,,,0,,1
+507575481,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,13,0.0,47,254161923427096,24,31.78681755065918,182.64190303462112,0.12067344725344264,1,95736.62951864177,0.0022052028216421604,,,,,0,,1
+507575482,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,15,0.0,47,254161927648251,40,27.445293426513672,-56.002089979529245,0.19928388434120348,1,-60258.88103951943,0.003635171102359891,,,,,0,,1
+507575482,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,16,0.0,47,254161924098517,65,21.85744857788086,135.7074378320644,4.200737321810024,4,65045.10896042938,3.4028234663852886E38,,,,,0,,1
+507575482,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,18,0.0,47,254161930973800,55,24.551254272460938,-193.10286549762384,0.27813700915526907,1,-136349.75196091496,0.0050725555047392845,,,,,0,,1
+507575483,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,20,0.0,47,254161930266572,21,32.78612518310547,432.40555736806937,0.10885616258264513,1,269084.36244888033,0.002084776060655713,,,,,0,,1
+507575483,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,21,0.0,47,254161930188919,34,28.66632843017578,23.992865026694346,0.17378659558623044,1,8956.610378536041,0.003158442908897996,,,,,0,,1
+507575484,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,26,0.0,47,254161922777198,60,22.77117919921875,427.98444927284345,4.200499543421939,4,258088.0944112506,3.4028234663852886E38,,,,,0,,1
+507575484,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,27,0.0,47,254161922108591,66,21.613618850708008,-585.1462226048702,4.200379189747343,4,-382842.1783299777,3.4028234663852886E38,,,,,0,,1
+507575484,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,29,0.0,47,254161924874802,65,21.930335998535156,661.9841665267636,4.200876846866414,4,417956.1917133985,3.4028234663852886E38,,,,,0,,1
+507575485,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,93,0.0,99,14921357771,100,14.992056846618652,68.72622554270907,4.20024419126721,4,15192.588104266248,3.4028234663852886E38,,,,,0,,3
+507575485,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,94,0.0,227,5744920029936,86,17.781282424926758,537.4929157911768,4.203602910849856,4,325942.5107063006,3.4028234663852886E38,,,,,0,,3
+507575485,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,96,0.0,227,5744928988264,60,29.867639541625977,665.7959484642747,0.15135972344671567,1,411687.5186615457,0.0027086427435278893,,,,,0,,3
+507575486,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,97,0.0,227,5744936128439,44,32.59832763671875,54.900570546554405,0.11224938898833836,1,14796.686526735688,0.002097205026075244,,,,,0,,3
+507575486,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,103,0.0,227,5744929011257,89,26.457021713256836,-590.1182395273308,0.22337786788922853,1,-380364.5797696502,0.004001427907496691,,,,,0,,3
+507575487,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,104,0.0,226,5744927940086,1000000000,15.39809799194336,628.7766066628938,2.99792458E8,4,387862.82940006093,3.4028234663852886E38,,,,,0,,3
+507575487,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,105,0.0,227,5744936158320,37,33.96649932861328,-43.486752065622284,0.09631865303226061,1,-56153.77942556091,0.0017865403788164258,,,,,0,,3
+507575487,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,106,0.0,227,5744927999720,69,28.619192123413086,-704.8743477940247,0.17432853660022718,1,-459018.23238030146,0.003116375068202615,,,,,0,,3
+507575488,656430000000,,,-1157840705570301671,0.0,12.814921788861827,,,0,26,0.0,5162,254161922444419,29,25.208662033081055,261.55591163068846,0.28737248949807803,4,155650.80357492357,3.4028234663852886E38,,,,,0,,6
+507576465,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,10,0.0,47,254162923974800,72,20.558334350585938,-563.929586677312,4.200714955197931,4,-367242.9770461317,3.4028234663852886E38,,,,,0,,1
+507576466,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,13,0.0,47,254162923426499,24,31.777145385742188,182.78147069408203,0.12080711438761804,1,95919.29154748324,0.0022076598834246397,,,,,0,,1
+507576466,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,15,0.0,47,254162927648384,41,27.144458770751953,-55.635920847569366,0.20625850626191777,1,-60314.78159588572,0.0037632803432643414,,,,,0,,1
+507576467,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,16,0.0,47,254162924097998,67,21.459592819213867,135.9880983409156,4.2007370555408325,4,65181.2429754754,3.4028234663852886E38,,,,,0,,1
+507576467,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,18,0.0,47,254162930974403,59,23.969772338867188,-193.07116881305762,0.29725793293754466,1,-136542.92131898267,0.005423765163868666,,,,,0,,1
+507576467,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,20,0.0,47,254162930265120,21,32.873931884765625,432.51687067107287,0.10777956967377128,1,269516.7555750732,0.0020638073328882456,,,,,0,,1
+507576468,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,21,0.0,47,254162930188781,34,28.763601303100586,24.05804559464069,0.17187162084400398,1,8980.580415636332,0.003123268950730562,,,,,0,,1
+507576468,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,26,0.0,47,254162922775784,65,23.12497329711914,427.87746444181835,0.3259458754898008,1,258515.88718826216,0.0059777917340397835,,,,,0,,1
+507576468,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,27,0.0,47,254162922110554,67,21.484617233276367,-585.4782538963154,4.200379722285726,4,-383428.2943094048,3.4028234663852886E38,,,,,0,,1
+507576469,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,29,0.0,47,254162924872636,68,21.348230361938477,662.4555269004741,4.200876580597223,4,418617.56335452024,3.4028234663852886E38,,,,,0,,1
+507576469,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,93,0.0,99,15921357541,99,15.193553924560547,68.96016752428164,4.20024419126721,4,15262.07025259833,3.4028234663852886E38,,,,,0,,3
+507576470,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,94,0.0,227,5745920028229,80,19.08942413330078,537.5213405599168,4.2036026445806645,4,326478.57535466494,3.4028234663852886E38,,,,,0,,3
+507576470,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,96,0.0,227,5745928986030,66,29.015851974487305,665.9005816057997,0.1667881092892204,1,412353.3200281592,0.002987728687003255,,,,,0,,3
+507576471,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,97,0.0,227,5745936128305,42,33.016231536865234,54.98603656659242,0.10711286490169275,1,14851.552665806203,0.001998691353946924,,,,,0,,3
+507576471,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,103,0.0,227,5745929013201,85,26.83148956298828,-590.0791128672427,0.2140209355114081,1,-380954.7227364867,0.0038325833156704903,,,,,0,,3
+507576471,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,104,0.0,226,5745927937987,1000000000,10.066303253173828,628.8224816493735,2.99792458E8,4,388491.4220851467,3.4028234663852886E38,,,,,1,,3
+507576471,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,105,0.0,227,5745936158452,36,34.385353088378906,-43.378646773838994,0.09192101763134963,1,-56197.30454735134,0.0017024334520101547,,,,,0,,3
+507576472,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,106,0.0,227,5745928002014,62,29.59524917602539,-704.8518533727197,0.15595266729965385,1,-459723.174162193,0.002785139251500368,,,,,0,,3
+507576472,657430000000,,,-1157840705570301581,0.0,13.148503062081547,,,0,26,0.0,5162,254162922443560,33,23.829017639160156,261.3876295016071,0.33676715528673995,4,155911.78781021008,3.4028234663852886E38,,,,,0,,6
+507577488,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,10,0.0,47,254163923976595,81,18.729419708251953,-563.7325900786102,4.200715221467123,4,-367806.22847239266,3.4028234663852886E38,,,,,0,,1
+507577488,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,13,0.0,47,254163923425915,26,31.176586151123047,182.9687878751314,0.12941124551444355,1,96102.0745370374,0.0023657025303691626,,,,,0,,1
+507577489,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,15,0.0,47,254163927648575,41,27.179819107055664,-55.65278740324109,0.20542616541084924,1,-60370.589392726186,0.0037479910533875227,,,,,0,,1
+507577489,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,16,0.0,47,254163924097533,78,19.419082641601562,136.56158679559667,4.2007370555408325,4,65317.482515265314,3.4028234663852886E38,,,,,0,,1
+507577490,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,18,0.0,47,254163930975109,60,22.774906158447266,-193.27385718199878,4.201974142204934,4,-136736.03085853296,3.4028234663852886E38,,,,,0,,1
+507577490,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,20,0.0,47,254163930263695,19,33.797271728515625,432.5436253994433,0.09709613410895052,1,269949.1980376401,0.0018556761788204312,,,,,0,,1
+507577491,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,21,0.0,47,254163930188706,35,28.459474563598633,24.077794248042125,0.17793077600040197,1,9004.573569132024,0.0032345636282116175,,,,,0,,1
+507577491,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,26,0.0,47,254163922774395,52,25.126619338989258,427.9583761936035,0.2589614669050697,1,258943.76257532716,0.004747429396957159,,,,,0,,1
+507577492,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,27,0.0,47,254163922112568,69,20.994428634643555,-586.3778944186915,4.200379988554918,4,-384014.44419368706,3.4028234663852886E38,,,,,0,,1
+507577493,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,29,0.0,47,254163924870386,74,20.043886184692383,661.5766085116638,4.20087604805884,4,419278.9755920756,3.4028234663852886E38,,,,,0,,1
+507577493,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,93,0.0,99,16921357452,86,17.701271057128906,68.78951240416487,4.20024419126721,4,15332.06059334751,3.4028234663852886E38,,,,,0,,3
+507577494,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,94,0.0,227,5746920026464,89,17.314090728759766,537.6527965947253,4.203602378311473,4,327015.7020297011,3.4028234663852886E38,,,,,0,,3
+507577494,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,96,0.0,227,5746928983841,65,29.13220977783203,666.0446140670651,0.1645898074853236,1,413019.19857298373,0.002947971224784851,,,,,0,,3
+507577495,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,97,0.0,227,5746936128107,41,33.08252716064453,55.09668952200079,0.10632045610844965,1,14906.529570936218,0.001983494032174349,,,,,0,,3
+507577495,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,103,0.0,227,5746929015154,90,26.34749984741211,-590.0547098283723,0.22619244973704755,1,-381544.83196577267,0.004052202217280865,,,,,0,,3
+507577496,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,104,0.0,226,5746927935895,1000000000,7.0,628.8030546491555,2.99792458E8,4,389119.8886492908,3.4028234663852886E38,,,,,1,,3
+507577497,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,105,0.0,227,5746936158601,36,34.33951187133789,-43.23066500792402,0.09239206447308701,1,-56240.66586163164,0.0017114421352744102,,,,,0,,3
+507577497,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,106,0.0,227,5746928004416,58,30.228559494018555,-704.8294271163277,0.1450880688336088,1,-460428.05495985853,0.0025892937555909157,,,,,0,,3
+507577497,658430000000,,,-1157840705570301491,0.0,13.430408710983652,,,0,26,0.0,5162,254163922442714,32,24.123762130737305,261.8599271428719,0.3255456063275515,4,156172.82118307758,3.4028234663852886E38,,,,,0,,6
+507578473,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,10,0.0,47,254164923978413,77,19.510000228881836,-563.827952791961,4.200715754005506,4,-368369.3301109085,3.4028234663852886E38,,,,,0,,1
+507578474,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,13,0.0,47,254164923425294,23,31.905277252197266,182.97851841646866,0.11904689197117557,1,96284.96577821081,0.0021753322798758745,,,,,0,,1
+507578474,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,15,0.0,47,254164927648756,43,26.662216186523438,-55.572301682162475,0.21795546222085582,1,-60426.258141901475,0.003978127148002386,,,,,0,,1
+507578474,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,16,0.0,47,254164924097100,66,21.722618103027344,136.41577352597795,4.2007370555408325,4,65453.829201353175,3.4028234663852886E38,,,,,0,,1
+507578474,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,18,0.0,47,254164930975711,61,22.569726943969727,-193.896117631964,4.2019744084741255,4,-136929.0475288826,3.4028234663852886E38,,,,,0,,1
+507578475,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,20,0.0,47,254164930262235,19,33.80488204956055,432.6004067720103,0.09701248397823181,1,270381.7258019207,0.0018540507880970836,,,,,0,,1
+507578475,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,21,0.0,47,254164930188677,38,27.80672264099121,24.098961583696322,0.19167465972782105,1,9028.62888630782,0.0034870109520852566,,,,,0,,1
+507578475,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,26,0.0,47,254164922772926,47,26.021953582763672,428.0106586819095,0.23364623970984255,1,259371.72420798865,0.0042824456468224525,,,,,0,,1
+507578476,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,27,0.0,47,254164922114476,61,22.586750030517578,-586.6845001975707,4.200380254824109,4,-384600.540684983,3.4028234663852886E38,,,,,0,,1
+507578476,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,29,0.0,47,254164924868203,80,18.942249298095703,660.6337514344168,4.200875781789648,4,419940.8897022844,3.4028234663852886E38,,,,,0,,1
+507578477,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,93,0.0,99,17921357401,88,17.32391357421875,68.9498448002623,4.20024419126721,4,15401.121775227413,3.4028234663852886E38,,,,,0,,3
+507578478,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,94,0.0,227,5747920024730,95,16.142887115478516,537.9825102791269,4.203602112042281,4,327552.6626548257,3.4028234663852886E38,,,,,0,,3
+507578478,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,96,0.0,227,5747928981629,67,28.948928833007812,665.9970349577593,0.16806485342104338,1,413685.1437137816,0.0030108371283859015,,,,,0,,3
+507578478,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,97,0.0,227,5747936127888,45,32.4305419921875,55.25134718908717,0.11438209704107077,1,14961.638615386102,0.0021381108090281487,,,,,0,,3
+507578479,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,103,0.0,227,5747929017098,78,27.56768798828125,-590.0232176385452,0.19676090054181838,1,-382134.89598221076,0.003521127160638571,,,,,0,,3
+507578479,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,104,0.0,192,5747927933777,1000000000,15.351268768310547,628.7766066628938,2.99792458E8,4,389748.5818710821,3.4028234663852886E38,,,,,1,,3
+507578479,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,105,0.0,227,5747936158776,35,34.52967834472656,-43.127612440320235,0.090454215543121,1,-56283.875073584946,0.0016743792220950127,,,,,0,,3
+507578480,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,106,0.0,227,5747928006752,54,30.853618621826172,-704.7160688659328,0.13511435715713194,1,-461132.845237794,0.002409507753327489,,,,,0,,3
+507578480,659430000000,,,-1157840705570301401,0.0,13.657834582603389,,,0,26,0.0,5162,254164922441833,33,24.0804500579834,261.89073768356855,0.32717061392014246,4,156433.89603089116,3.4028234663852886E38,,,,,0,,6
+507579474,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,10,0.0,47,254165923980281,92,16.562591552734375,-563.6325580687158,4.200716020274697,4,-368933.38417282945,3.4028234663852886E38,,,,,0,,1
+507579475,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,13,0.0,47,254165923424640,25,31.293174743652344,183.1013856722334,0.12769377594507486,1,96467.97941310944,0.0023341604974120855,,,,,0,,1
+507579476,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,15,0.0,47,254165927648924,41,27.139129638671875,-55.47789327759429,0.20638438502223933,1,-60481.80350446601,0.0037655895575881004,,,,,0,,1
+507579477,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,16,0.0,47,254165924096655,60,22.918922424316406,136.6469037048874,4.200736789271641,4,65590.34890930417,3.4028234663852886E38,,,,,0,,1
+507579478,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,18,0.0,47,254165930976373,60,22.856828689575195,-193.2386159219542,4.2019744084741255,4,-137121.9895646969,3.4028234663852886E38,,,,,0,,1
+507579479,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,20,0.0,47,254165930260788,19,33.621768951416016,432.6661859130993,0.09903978271474573,1,270814.3238573146,0.0018935521366074681,,,,,0,,1
+507579479,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,21,0.0,47,254165930188565,37,27.900835037231445,24.17744070014716,0.1896288303197553,1,9052.722704988653,0.0034494332503527403,,,,,0,,1
+507579480,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,26,0.0,47,254165922771581,53,24.986501693725586,428.15373683439225,0.26316420989956535,1,259799.75926282885,0.00482463464140892,,,,,0,,1
+507579481,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,27,0.0,47,254165922116434,64,21.962562561035156,-586.1002587278567,4.2003807873624925,4,-385186.60756077274,3.4028234663852886E38,,,,,0,,1
+507579481,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,29,0.0,47,254165924866100,89,17.20440673828125,660.8854844582943,4.200875249251265,4,420602.4332179621,3.4028234663852886E38,,,,,0,,1
+507579482,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,93,0.0,99,18921357183,91,16.8448429107666,68.85967540122414,4.20024419126721,4,15470.255445459723,3.4028234663852886E38,,,,,0,,3
+507579483,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,94,0.0,227,5748920023141,90,17.00080680847168,537.5020158070683,4.203601579503898,4,328090.17181302013,3.4028234663852886E38,,,,,0,,3
+507579484,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,96,0.0,227,5748928979325,65,29.246294021606445,666.0923295061971,0.16246244977915958,1,414351.1645684714,0.002909504109993577,,,,,0,,3
+507579484,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,97,0.0,227,5748936127724,42,33.0294303894043,55.35108523779411,0.10695450962091013,1,15016.845399653768,0.0019956566393375397,,,,,0,,3
+507579485,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,103,0.0,227,5748929019168,78,27.621932983398438,-590.027375698241,0.1955464301171772,1,-382724.93922138866,0.003499205457046628,,,,,0,,3
+507579486,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,104,0.0,192,5748927931780,1000000000,12.235082626342773,628.4820660736236,2.99792458E8,4,390377.15281495446,3.4028234663852886E38,,,,,1,,3
+507579487,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,105,0.0,227,5748936158933,37,34.056949615478516,-42.890837354549205,0.09535103911095494,1,-56326.92701233174,0.0017680326709523797,,,,,0,,3
+507579488,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,106,0.0,227,5748928009083,54,30.755813598632812,-704.6472223037567,0.1366284885941647,1,-461837.5824885435,0.002436793176457286,,,,,0,,3
+507579488,660430000000,,,-1157840705570301313,0.0,13.776054363237781,,,0,26,0.0,5162,254165922440937,33,24.00308609008789,261.1543862103932,0.3300936172544098,4,156695.02591032625,3.4028234663852886E38,,,,,0,,6
+507580516,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,10,0.0,47,254166923982095,166,17.25105094909668,-563.5831725892142,4.200716286543889,4,-369497.4792828511,3.4028234663852886E38,,,,,1,,1
+507580516,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,13,0.0,47,254166923424061,27,30.65755271911621,183.0910075642222,0.13734177383294605,1,96651.10280391629,0.0025113762822002172,,,,,0,,1
+507580517,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,15,0.0,47,254166927649157,43,26.679134368896484,-55.42088184844576,0.21753405794152447,1,-60537.23338401339,0.0039703864604234695,,,,,0,,1
+507580517,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,16,0.0,47,254166924096108,65,23.140857696533203,136.44582573201694,0.3255887752202371,1,65726.92627850354,0.005966870114207268,,,,,0,,1
+507580517,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,18,0.0,47,254166930977029,61,22.636322021484375,-192.14789210708295,4.2019744084741255,4,-137314.86972826917,3.4028234663852886E38,,,,,0,,1
+507580518,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,20,0.0,47,254166930259318,20,33.12323760986328,432.6872488712304,0.10478122880011004,1,271246.9699004118,0.0020054131746292114,,,,,0,,1
+507580518,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,21,0.0,47,254166930188502,40,27.445512771606445,24.1258121689757,0.19973582636844467,1,9076.84763961704,0.003635078901425004,,,,,0,,1
+507580518,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,26,0.0,47,254166922770152,55,24.59247589111328,427.9982526677352,0.27535383043023254,1,260227.8380392111,0.0050485385581851006,,,,,0,,1
+507580519,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,27,0.0,47,254166922118461,62,23.58179473876953,-585.9517955472434,0.30915357563887813,1,-385772.6494844737,0.005671522580087185,,,,,0,,1
+507580519,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,29,0.0,47,254166924863851,103,14.421272277832031,661.1563036578245,4.200874982982073,4,421264.0231482973,3.4028234663852886E38,,,,,0,,1
+507580520,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,93,0.0,99,19921356889,108,13.494705200195312,69.16123697653796,4.20024419126721,4,15538.6339384537,3.4028234663852886E38,,,,,0,,3
+507580520,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,94,0.0,227,5749920021383,92,16.667016983032227,537.645673361312,4.2036013132347065,4,328627.1782689034,3.4028234663852886E38,,,,,0,,3
+507580520,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,96,0.0,227,5749928977179,59,29.976486206054688,666.0724253515878,0.14949296006999047,1,415017.25019303133,0.0026749111711978912,,,,,0,,3
+507580521,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,97,0.0,227,5749936127577,43,32.72282028198242,55.307987971521015,0.11069317037721077,1,15072.147756361564,0.002067360794171691,,,,,0,,3
+507580521,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,103,0.0,227,5749929021090,86,26.821413040161133,-589.9642549887608,0.21426893197972008,1,-383314.93754857936,0.0038370315451174974,,,,,0,,3
+507580521,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,104,0.0,192,5749927929671,1000000000,12.272954940795898,628.5727935728873,2.99792458E8,4,391005.06580083456,3.4028234663852886E38,,,,,1,,3
+507580522,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,105,0.0,227,5749936159065,37,34.096580505371094,-42.89145509907368,0.09493027554186584,1,-56369.84573105547,0.001759984064847231,,,,,0,,3
+507580522,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,106,0.0,227,5749928011436,56,30.51476287841797,-704.7778944420652,0.1404331841099783,1,-462542.2763749899,0.00250536622479558,,,,,0,,3
+507580522,661430000000,,,-1157840705570301225,0.0,14.101124562994988,,,0,26,0.0,5162,254166922440061,37,23.09320640563965,260.8368399629702,0.3664995720266351,4,156956.19028568003,3.4028234663852886E38,,,,,0,,6
+507581527,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,10,0.0,47,254167923983985,166,13.133853912353516,-563.9308136457469,4.2007165528130805,4,-370061.93511454,3.4028234663852886E38,,,,,1,,1
+507581528,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,13,0.0,47,254167923423465,24,31.642192840576172,183.30265961922885,0.12268853921170486,1,96834.3662436274,0.002242228016257286,,,,,0,,1
+507581529,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,15,0.0,47,254167927649329,41,27.15261459350586,-55.24028317163845,0.2060663930401896,1,-60592.51823519556,0.0037597480695694685,,,,,0,,1
+507581530,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,16,0.0,47,254167924095710,60,22.859432220458984,136.70336129411743,4.200736789271641,4,65863.64812307997,3.4028234663852886E38,,,,,0,,1
+507581530,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,18,0.0,47,254167930977606,54,24.804168701171875,-192.76657389911327,0.2702124219681038,1,-137507.6754655498,0.004926983267068863,,,,,0,,1
+507581531,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,20,0.0,47,254167930257906,16,35.28532028198242,432.73482798053624,0.08209834715379905,1,271679.6788735492,0.0015635066665709019,,,,,0,,1
+507581532,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,21,0.0,47,254167930188408,33,29.00486946105957,24.167224483804446,0.1672133911136542,1,9101.031884742828,0.0030377076473087072,,,,,0,,1
+507581533,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,26,0.0,47,254167922768707,46,26.057113647460938,428.2368980283079,0.23270359684616015,1,260656.04689982883,0.004265144467353821,,,,,0,,1
+507581533,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,27,0.0,47,254167922120333,61,22.69613265991211,-586.4645320231725,4.200381319900876,4,-386358.60249757324,3.4028234663852886E38,,,,,0,,1
+507581534,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,29,0.0,47,254167924861689,80,18.952102661132812,661.1878640125647,4.20087445044369,4,421925.6437422239,3.4028234663852886E38,,,,,0,,1
+507581535,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,93,0.0,99,20921356730,166,13.340824127197266,69.39522582148825,4.20024419126721,4,15607.52620115574,3.4028234663852886E38,,,,,1,,3
+507581535,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,94,0.0,227,5750920019580,167,15.370408058166504,537.3830680338037,4.203601046965515,4,329164.6820481403,3.4028234663852886E38,,,,,1,,3
+507581537,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,96,0.0,227,5750928974874,56,30.4395694732666,666.2052106022006,0.14181497143788135,1,415683.4227389912,0.0025360346771776676,,,,,0,,3
+507581537,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,97,0.0,227,5750936127295,43,32.82588577270508,55.43580996440275,0.10942163513644815,1,15127.587218173348,0.0020429750438779593,,,,,0,,3
+507581538,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,103,0.0,227,5750929023001,97,25.717615127563477,-589.7151803964921,0.24308433426562281,4,-383904.9006289606,3.4028234663852886E38,,,,,0,,3
+507581539,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,104,0.0,192,5750927927662,1000000000,11.740362167358398,628.6351644683241,2.99792458E8,4,391632.29891833186,3.4028234663852886E38,,,,,0,,3
+507581539,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,105,0.0,227,5750936159234,33,35.139488220214844,-42.68931204943689,0.08451865921709162,1,-56412.59434656634,0.0015608577523380518,,,,,0,,3
+507581539,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,106,0.0,227,5750928013745,55,30.657655715942383,-704.5753083204936,0.13816572720447967,1,-463246.85903504136,0.0024644869845360518,,,,,0,,3
+507581540,662430000000,,,-1157840705570301132,0.0,13.991352233521013,,,0,26,0.0,5162,254167922439225,26,26.104434967041016,261.6437080386912,0.259255078614265,4,157217.430854522,3.4028234663852886E38,,,,,0,,6
+507582507,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,10,0.0,47,254168923985866,166,14.9013671875,-563.7181391170445,4.200717085351464,4,-370626.0913911385,3.4028234663852886E38,,,,,1,,1
+507582507,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,13,0.0,47,254168923422823,22,32.45365905761719,183.48709683270204,0.11180050073588815,1,97017.75823408378,0.0020422388333827257,,,,,0,,1
+507582507,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,15,0.0,47,254168927649504,37,28.092384338378906,-55.029167915322034,0.18507597662197506,1,-60647.688290111866,0.003374195657670498,,,,,0,,1
+507582508,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,16,0.0,47,254168924095204,62,23.554485321044922,136.9928321179798,0.3104815266646077,1,66000.50506305098,0.005689383950084448,,,,,0,,1
+507582508,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,18,0.0,47,254168930978268,47,25.944917678833008,-192.62993733091332,0.23719918602592527,1,-137700.37576006618,0.004320595413446426,,,,,0,,1
+507582508,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,20,0.0,47,254168930256462,15,35.93377685546875,432.87739489617115,0.0763248821981467,1,272112.4943727427,0.0014510317705571651,,,,,0,,1
+507582509,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,21,0.0,47,254168930188340,30,29.80457878112793,24.270847932554986,0.1526666891317835,1,9125.267730948193,0.0027705153916031122,,,,,0,,1
+507582509,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,26,0.0,47,254168922767326,45,26.332841873168945,428.33710045048497,0.22544789451007952,1,261084.33003686205,0.004131877329200506,,,,,0,,1
+507582509,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,27,0.0,47,254168922122395,64,21.980897903442383,-585.449147478445,4.200381852439259,4,-386944.5478434467,3.4028234663852886E38,,,,,0,,1
+507582510,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,29,0.0,47,254168924859382,63,22.2211856842041,662.0388347870262,4.2008741841744985,4,422587.3225764096,3.4028234663852886E38,,,,,0,,1
+507582510,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,93,0.0,99,21921356537,111,12.955648422241211,69.33614388310596,4.200243924998018,4,15684.901731279218,3.4028234663852886E38,,,,,0,,3
+507582511,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,94,0.0,227,5751920017750,167,14.094791412353516,537.3598919633682,4.203600780696323,4,329702.7433434409,3.4028234663852886E38,,,,,1,,3
+507582511,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,96,0.0,227,5751928972704,51,31.204532623291016,666.355173410901,0.1299952737025351,1,416349.6844728671,0.0023222395684570074,,,,,0,,3
+507582511,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,97,0.0,227,5751936127165,41,33.25184631347656,55.6638897634534,0.10432379497079242,1,15183.153561827441,0.0019452032865956426,,,,,0,,3
+507582512,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,103,0.0,227,5751929024997,106,24.94641876220703,-589.8977260336283,0.2655039672114914,1,-384494.81325994676,0.004761515185236931,,,,,0,,3
+507582512,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,104,0.0,192,5751927925735,1000000000,11.578189849853516,627.0647812015791,2.99792458E8,4,392268.1886970035,3.4028234663852886E38,,,,,1,,3
+507582512,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,105,0.0,227,5751936159371,33,35.894813537597656,-42.45161673733975,0.07772149739165612,1,-56455.181462082866,0.0014308597892522812,,,,,0,,3
+507582513,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,106,0.0,227,5751928016109,46,32.093711853027344,-704.4229597398366,0.11733106162151757,1,-463951.37879845063,0.0020889295265078545,,,,,0,,3
+507582513,663430000000,,,-1157840705570301043,0.0,13.325054950390046,,,0,26,0.0,5162,254168922438352,23,27.21823501586914,261.90145661614497,0.22810637604433215,4,157478.71183432924,3.4028234663852886E38,,,,,0,,6
+507583510,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,10,0.0,47,254169923987771,166,14.456435203552246,-563.6357618196289,4.200717351620655,4,-371189.33831463754,3.4028234663852886E38,,,,,1,,1
+507583510,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,13,0.0,47,254169923422213,22,32.62724685668945,183.54924619217138,0.10960039329403592,1,97201.26462218749,0.0020018299110233784,,,,,0,,1
+507583510,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,15,0.0,47,254169927649721,38,27.84006118774414,-55.00306927423969,0.19049071040926524,1,-60702.71110848024,0.003473652759566903,,,,,0,,1
+507583511,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,16,0.0,47,254169924094703,57,24.236225128173828,136.98705514159917,0.2870996634276508,1,66137.4705386118,0.005259908270090818,,,,,0,,1
+507583511,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,18,0.0,47,254169930978915,46,26.200605392456055,-192.59273632961867,0.2303759048569778,1,-137893.0304676594,0.004195263609290123,,,,,0,,1
+507583511,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,20,0.0,47,254169930255011,15,35.89464569091797,432.9039110473459,0.07666091391792629,1,272545.36268175,0.0014575833920389414,,,,,0,,1
+507583512,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,21,0.0,47,254169930188266,29,30.160486221313477,24.26612112186598,0.1466111286094719,1,9149.545572880528,0.002659286605194211,,,,,0,,1
+507583512,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,26,0.0,47,254169922765868,37,27.921642303466797,428.4076852179437,0.18784431083958075,1,261512.6920885984,0.0034411794040352106,,,,,0,,1
+507583512,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,27,0.0,47,254169922124277,74,20.036455154418945,-585.5579386796658,4.2003821187084505,4,-387530.4205780532,3.4028234663852886E38,,,,,0,,1
+507583513,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,29,0.0,47,254169924857227,61,22.717391967773438,662.0229523622866,4.200873651636115,4,423249.0178877991,3.4028234663852886E38,,,,,0,,1
+507583513,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,93,0.0,98,22921356195,1000000000,12.103408813476562,69.38194644436555,2.99792458E8,4,15754.217517530078,3.4028234663852886E38,,,,,1,,3
+507583513,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,94,0.0,227,5752920015985,167,13.783748626708984,537.4955060578725,4.203600514427132,4,330241.2055417452,3.4028234663852886E38,,,,,1,,3
+507583514,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,96,0.0,227,5752928970453,54,30.814342498779297,666.3399044703788,0.13589355234174266,1,417015.9954076878,0.0024289388675242662,,,,,0,,3
+507583514,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,97,0.0,227,5752936126953,42,32.97549057006836,55.70040059500346,0.10760259219140222,1,15238.818907103787,0.0020080881658941507,,,,,0,,3
+507583514,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,103,0.0,227,5752929026940,110,24.656097412109375,-589.7549205407977,0.27447339470643406,1,-385084.6892496971,0.004923354834318161,,,,,0,,3
+507583514,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,104,0.0,192,5752927923707,1000000000,12.06734848022461,627.1450113042338,2.99792458E8,4,392895.57679353934,3.4028234663852886E38,,,,,1,,3
+507583515,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,105,0.0,227,5752936159466,33,35.66643142700195,-42.379651630391834,0.07971475527620842,1,-56497.63377599696,0.0014689809177070856,,,,,0,,3
+507583515,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,106,0.0,227,5752928018493,50,31.45764923095703,-704.4188016801409,0.12613642568988304,1,-464655.83941833203,0.0022476408630609512,,,,,0,,3
+507583515,664430000000,,,-1157840705570300951,0.0,12.512468522219962,,,0,26,0.0,5162,254169922437479,21,27.944881439208984,261.43033481963016,0.2098349009086844,4,157740.04240570636,3.4028234663852886E38,,,,,0,,6
+507584500,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,10,0.0,47,254170923989755,166,13.596220016479492,-563.6326943985418,4.200717617889847,4,-371752.50145614275,3.4028234663852886E38,,,,,1,,1
+507584500,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,13,0.0,47,254170923421592,21,32.981483459472656,183.6971129297956,0.10524497820181555,1,97384.8310412784,0.0019218312809243798,,,,,0,,1
+507584501,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,15,0.0,47,254170927649876,34,28.770151138305664,-54.99521752831825,0.1712867772065132,1,-60757.70418549231,0.0031209143344312906,,,,,0,,1
+507584501,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,16,0.0,47,254170924094296,61,23.725852966308594,137.08629473437946,0.3044301265984146,1,66274.47835598426,0.005578234791755676,,,,,0,,1
+507584501,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,18,0.0,47,254170930979490,48,25.756752014160156,-192.61681558515204,0.2423507293591587,1,-138085.66870656694,0.004415214527398348,,,,,0,,1
+507584502,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,20,0.0,47,254170930253555,14,36.121280670166016,432.9304953634337,0.07473376568109708,1,272978.2321471404,0.0014200437581166625,,,,,0,,1
+507584502,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,21,0.0,47,254170930188176,28,30.350936889648438,24.32454058249961,0.14347118245136115,1,9173.80417501411,0.0026016123592853546,,,,,0,,1
+507584502,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,26,0.0,47,254170922764422,34,28.65286636352539,428.47932654155466,0.17271784097668386,1,261941.06654395873,0.0031633423641324043,,,,,0,,1
+507584502,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,27,0.0,47,254170922126225,61,22.549915313720703,-585.7024482953225,4.200382384977642,4,-388116.3223913555,3.4028234663852886E38,,,,,0,,1
+507584503,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,29,0.0,47,254170924854967,62,22.512760162353516,661.0890248886485,4.200873385366924,4,423910.69759047346,3.4028234663852886E38,,,,,0,,1
+507584504,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,93,0.0,98,23921355957,1000000000,11.493825912475586,69.88868866825376,2.99792458E8,4,15824.16803503461,3.4028234663852886E38,,,,,1,,3
+507584504,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,94,0.0,227,5753920014188,109,13.414133071899414,537.616532860985,4.207197544936246,4,330780.3081148468,3.4028234663852886E38,,,,,0,,3
+507584504,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,96,0.0,227,5753928968205,56,30.520076751708984,666.3599449548142,0.14052028741927536,1,417682.32371632004,0.002512637758627534,,,,,0,,3
+507584504,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,97,0.0,227,5753936126758,42,33.044952392578125,55.79644069717767,0.10676859547879852,1,15294.538053848864,0.001992093166336417,,,,,0,,3
+507584505,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,103,0.0,227,5753929029121,131,23.14803695678711,-589.5541067069653,0.3262076513887773,4,-385674.61612497194,3.4028234663852886E38,,,,,0,,3
+507584505,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,104,0.0,192,5753927921650,1000000000,12.665515899658203,627.248417477324,2.99792458E8,4,393522.5350850185,3.4028234663852886E38,,,,,1,,3
+507584505,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,105,0.0,227,5753936159609,33,35.711082458496094,-42.283632829752946,0.07932096810459172,1,-56539.997867871774,0.001461448846384883,,,,,0,,3
+507584506,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,106,0.0,227,5753928020832,47,31.89790153503418,-704.4241867082715,0.11997411618448278,1,-465360.3012886384,0.0021365557331591845,,,,,0,,3
+507584506,665430000000,,,-1157840705570300860,0.0,11.934635664313197,,,0,26,0.0,5162,254170922436617,21,27.67677116394043,261.49727276424096,0.2163990355869223,4,158001.35258029957,3.4028234663852886E38,,,,,0,,6
+507585475,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,10,0.0,47,254171923991668,166,12.955612182617188,-564.173071746711,4.20071815042823,4,-372318.97929825436,3.4028234663852886E38,,,,,1,,1
+507585476,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,13,0.0,47,254171923420986,20,33.09260940551758,183.7527014163843,0.10391474724613303,1,97568.46680274743,0.001897400594316423,,,,,0,,1
+507585477,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,15,0.0,47,254171927650067,35,28.600540161132812,-54.85153441223221,0.17463727572786936,1,-60812.58839946712,0.003182456362992525,,,,,0,,1
+507585477,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,16,0.0,47,254171924093834,59,24.071866989135742,137.27160957110812,0.2925697645649661,1,66411.60261640721,0.005360386334359646,,,,,0,,1
+507585478,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,18,0.0,47,254171930980192,50,25.361228942871094,-192.59380992699914,0.25354974528800933,1,-138278.27336233336,0.004620916210114956,,,,,0,,1
+507585479,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,20,0.0,47,254171930252121,14,36.16542434692383,432.9766770920221,0.0743639926621964,1,273411.13168885646,0.001412845216691494,,,,,0,,1
+507585479,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,21,0.0,47,254171930188082,29,30.165977478027344,24.28370766943175,0.1465195652912158,1,9198.05591084847,0.0026576060336083174,,,,,0,,1
+507585480,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,26,0.0,47,254171922763029,39,27.666549682617188,428.53266558601285,0.19342750981602153,1,262369.4779481187,0.00354374130256474,,,,,0,,1
+507585481,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,27,0.0,47,254171922128198,64,22.059406280517578,-586.3902322679528,4.200382917516025,4,-388702.27314657316,3.4028234663852886E38,,,,,0,,1
+507585482,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,29,0.0,47,254171924852765,62,22.41126823425293,660.7827599343345,4.200872852828541,4,424572.40328114206,3.4028234663852886E38,,,,,0,,1
+507585482,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,93,0.0,98,24921355719,1000000000,11.09553337097168,69.50188686917639,2.99792458E8,4,15893.47789680855,3.4028234663852886E38,,,,,1,,3
+507585483,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,94,0.0,227,5754920012355,104,14.438605308532715,538.0488688219768,4.207197278667055,4,331307.2652070502,3.4028234663852886E38,,,,,0,,3
+507585484,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,96,0.0,227,5754928965988,62,29.65945053100586,666.4900036089052,0.15498822364591047,1,418348.7075784508,0.002774349646642804,,,,,0,,3
+507585484,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,97,0.0,227,5754936126639,43,32.79566955566406,55.894040071737805,0.10979269789674556,1,15350.326138686161,0.00205009407363832,,,,,0,,3
+507585485,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,103,0.0,227,5754929030803,103,25.190296173095703,-589.8562136015835,0.2581990050749676,1,-386264.5256545106,0.004629682749509811,,,,,0,,3
+507585486,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,104,0.0,192,5754927919653,1000000000,11.805307388305664,627.2950422778472,2.99792458E8,4,394150.1254392861,3.4028234663852886E38,,,,,1,,3
+507585487,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,105,0.0,227,5754936159714,33,36.0759162902832,-42.18141102202691,0.07617781839526971,1,-56582.24834551124,0.0014013350009918213,,,,,0,,3
+507585487,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,106,0.0,227,5754928023155,47,31.91597557067871,-704.3968525781402,0.11972813337693217,1,-466064.73343985504,0.002132114954292774,,,,,0,,3
+507585487,666430000000,,,-1157840705570300769,0.0,11.505912009985826,,,0,26,0.0,5162,254171922435748,20,28.055034637451172,261.2332018911022,0.20719577381629506,4,158262.67631426963,3.4028234663852886E38,,,,,0,,6
+507586528,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,10,0.0,46,254172923993549,1000000000,13.681930541992188,-563.9364372510731,2.99792458E8,4,-372882.73723756813,3.4028234663852886E38,,,,,1,,1
+507586529,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,13,0.0,47,254172923420384,23,32.05784606933594,183.8371236611913,0.11698389652116487,1,97752.20902792626,0.002137456089258194,,,,,0,,1
+507586530,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,15,0.0,47,254172927650223,39,27.453224182128906,-54.726911909956556,0.19910363674032527,1,-60867.391812087924,0.003631852800026536,,,,,0,,1
+507586530,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,16,0.0,46,254172924093404,1000000000,20.207660675048828,136.95615939476124,2.99792458E8,4,66548.64576654014,3.4028234663852886E38,,,,,0,,1
+507586531,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,18,0.0,47,254172930980817,59,23.94536590576172,-192.63360119498952,0.29808992431029924,1,-138470.8233162036,0.005439027212560177,,,,,0,,1
+507586532,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,20,0.0,47,254172930250679,18,34.21815490722656,433.0151902678929,0.09258842968096831,1,273844.0923610627,0.001767901354469359,,,,,0,,1
+507586533,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,21,0.0,47,254172930188012,34,28.843658447265625,24.33142949902428,0.1703114497995638,1,9222.330937921804,0.003094614716246724,,,,,0,,1
+507586534,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,26,0.0,47,254172922761550,43,26.757160186767578,428.5982061499062,0.21472185587460524,1,262797.95065652515,0.003934880252927542,,,,,0,,1
+507586535,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,27,0.0,47,254172922130095,63,22.33576011657715,-586.2768740175579,4.200383183785217,4,-389288.16428949806,3.4028234663852886E38,,,,,0,,1
+507586536,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,29,0.0,47,254172924850533,74,20.05436134338379,660.7278190144198,4.200872586559349,4,425234.1588730335,3.4028234663852886E38,,,,,0,,1
+507586537,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,93,0.0,99,25921355464,111,12.958154678344727,69.9414951743288,4.200243924998018,4,15964.544535635734,3.4028234663852886E38,,,,,0,,3
+507586537,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,94,0.0,227,5755920010514,101,14.90090560913086,537.9190487450815,4.2035994493503654,4,331845.3123165952,3.4028234663852886E38,,,,,0,,3
+507586538,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,96,0.0,227,5755928963777,58,30.22661590576172,666.4321315977295,0.14529277991646383,1,419015.1116592175,0.0025989795103669167,,,,,0,,3
+507586539,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,97,0.0,227,5755936126403,43,32.68671417236328,55.979599818531256,0.11114196709962637,1,15406.206570512664,0.002075972268357873,,,,,0,,3
+507586540,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,103,0.0,227,5755929032846,91,26.328567504882812,-589.8259483801912,0.22668566348898433,1,-386854.41623979784,0.0040610432624816895,,,,,0,,3
+507586540,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,104,0.0,192,5755927917358,1000000000,12.553487777709961,627.4518215778521,2.99792458E8,4,394777.642541714,3.4028234663852886E38,,,,,0,,3
+507586541,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,105,0.0,227,5755936159905,35,34.43571090698242,-42.01081128590198,0.09140669372506754,1,-56624.373280432745,0.0016925918171182275,,,,,0,,3
+507586542,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,106,0.0,227,5755928025470,50,31.49073028564453,-704.3160089912681,0.12566366474022483,1,-466769.12652994914,0.002239096211269498,,,,,0,,3
+507586543,667430000000,,,-1157840705570300678,0.0,11.349008279121243,,,0,26,0.0,5162,254172922434860,28,25.238399505615234,261.36017608287796,0.2863901558830251,4,158524.0217035102,3.4028234663852886E38,,,,,0,,6
+507587463,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,10,0.0,47,254173923995479,78,19.316864013671875,-564.131150325188,4.200718682966613,4,-373446.93742556823,3.4028234663852886E38,,,,,0,,1
+507587465,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,13,0.0,47,254173923419747,24,31.71771812438965,183.9496298501731,0.12163103447550272,1,97936.04406578791,0.002222816227003932,,,,,0,,1
+507587465,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,15,0.0,47,254173927650405,40,27.325014114379883,-54.57537278764201,0.20204391428839663,1,-60922.07929636224,0.0036858587991446257,,,,,0,,1
+507587466,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,16,0.0,47,254173924092846,76,19.657852172851562,137.10743437803774,4.200736256733258,4,66685.9510519216,3.4028234663852886E38,,,,,0,,1
+507587466,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,18,0.0,47,254173930981429,65,23.20374298095703,-192.43248061904842,0.32448379135881056,1,-138663.30304283265,0.005923826713114977,,,,,0,,1
+507587466,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,20,0.0,47,254173930249235,19,33.69560241699219,433.0194164925017,0.0982149972519884,1,274277.07995399693,0.0018775246571749449,,,,,0,,1
+507587467,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,21,0.0,47,254173930187906,36,28.15027618408203,24.241950269730708,0.18431225001321294,1,9246.620845790636,0.003351780818775296,,,,,0,,1
+507587467,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,26,0.0,47,254173922760108,43,26.81130599975586,428.51579477003406,0.21339032685661374,1,263226.4557819026,0.00391042698174715,,,,,0,,1
+507587467,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,27,0.0,47,254173922132060,70,20.875267028808594,-585.6136975785371,4.200383450054408,4,-389874.0465136955,3.4028234663852886E38,,,,,0,,1
+507587468,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,29,0.0,47,254173924848369,62,22.497779846191406,661.1308781452585,4.200872054020966,4,425896.24792288186,3.4028234663852886E38,,,,,0,,1
+507587468,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,93,0.0,99,26921355200,107,13.819696426391602,69.99384582754783,4.2002436587288265,4,16033.746623302106,3.4028234663852886E38,,,,,0,,3
+507587468,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,94,0.0,227,5756920008634,82,18.59459686279297,538.3207786601158,4.203599183081174,4,332383.35807054816,3.4028234663852886E38,,,,,0,,3
+507587469,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,96,0.0,227,5756928961583,61,29.68507194519043,666.5088852898189,0.15453566587116374,1,419681.5849230308,0.002766177523881197,,,,,0,,3
+507587469,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,97,0.0,227,5756936126207,43,32.676326751708984,55.9771970053464,0.11127143217312208,1,15462.17194563786,0.0020784565713256598,,,,,0,,3
+507587470,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,103,0.0,227,5756929034795,80,27.382953643798828,-589.8082255027994,0.20095881740721655,1,-387444.29995109746,0.0035968171432614326,,,,,0,,3
+507587470,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,104,0.0,192,5756927915170,1000000000,12.441459655761719,627.3437120257618,2.99792458E8,4,395404.88500238594,3.4028234663852886E38,,,,,0,,3
+507587470,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,105,0.0,227,5756936160055,39,33.65721893310547,-41.90382219456981,0.09970502300627054,1,-56666.36341116813,0.001851299894042313,,,,,0,,3
+507587471,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,106,0.0,227,5756928027805,45,32.38102722167969,-704.2431406992223,0.11356241229751474,1,-467473.4677685635,0.0020209611393511295,,,,,0,,3
+507587471,668430000000,,,-1157840705570300589,0.0,11.176959259243384,,,0,26,0.0,5162,254173922433992,34,23.736665725708008,261.74074079241166,0.34036042474352324,4,158785.36760301478,3.4028234663852886E38,,,,,0,,6
+507588467,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,10,0.0,47,254174923997345,77,19.48560905456543,-563.8807124346583,4.200718949235805,4,-374010.58543519187,3.4028234663852886E38,,,,,0,,1
+507588468,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,13,0.0,47,254174923419170,25,31.5289363861084,184.1248307179286,0.12428990709263049,1,98120.02119492217,0.002271656645461917,,,,,0,,1
+507588469,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,15,0.0,47,254174927650601,44,26.605609893798828,-54.43586903278708,0.2193718479018404,1,-60976.63400707437,0.004004137124866247,,,,,0,,1
+507588470,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,16,0.0,47,254174924092350,83,18.461021423339844,137.34674434651265,4.200736256733258,4,66823.39048665139,3.4028234663852886E38,,,,,0,,1
+507588471,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,18,0.0,47,254174930982042,65,23.19695281982422,-192.3657301279485,0.3247361147014858,1,-138855.7224440389,0.005928459111601114,,,,,0,,1
+507588472,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,20,0.0,47,254174930247803,19,33.86592102050781,433.2250018702473,0.0963434243879902,1,274710.16906074446,0.001841067336499691,,,,,0,,1
+507588473,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,21,0.0,47,254174930187883,37,27.94584083557129,24.457736952744284,0.1886581293400097,1,9270.9971960482,0.0034316065721213818,,,,,0,,1
+507588474,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,26,0.0,47,254174922758681,44,26.43990135192871,428.72976443208427,0.2226907269566959,1,263655.1031221427,0.004081261809915304,,,,,0,,1
+507588475,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,27,0.0,47,254174922133939,73,20.398942947387695,-586.5035223534346,4.2003839825927916,4,-390459.8520472025,3.4028234663852886E38,,,,,0,,1
+507588476,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,29,0.0,47,254174924846128,63,22.26771354675293,661.9023004661958,4.200871787751774,4,426558.06593287666,3.4028234663852886E38,,,,,0,,1
+507588477,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,93,0.0,99,27921354943,105,14.162799835205078,70.45649813361672,4.2002436587288265,4,16104.36292865915,3.4028234663852886E38,,,,,0,,3
+507588478,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,94,0.0,227,5757920006785,98,15.555811882019043,538.294910075615,4.203598650542791,4,332920.2256315993,3.4028234663852886E38,,,,,0,,3
+507588479,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,96,0.0,227,5757928959362,61,29.778257369995117,666.6410570562143,0.15290340244310208,1,420348.13797459635,0.0027366604190319777,,,,,0,,3
+507588480,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,97,0.0,227,5757936126067,44,32.59829330444336,56.237369697520336,0.11224941395107507,1,15518.282398047713,0.002097213640809059,,,,,0,,3
+507588481,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,103,0.0,227,5757929036776,83,27.09821891784668,-589.801681671147,0.20760188425893478,1,-388034.1303318271,0.0037166790571063757,,,,,0,,3
+507588482,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,104,0.0,192,5757927912972,1000000000,12.108915328979492,627.548752084203,2.99792458E8,4,396032.6857639704,3.4028234663852886E38,,,,,1,,3
+507588483,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,105,0.0,227,5757936160258,40,33.45174789428711,-41.665964990804184,0.10202220568329756,1,-56708.179506312204,0.0018956161802634597,,,,,0,,3
+507588484,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,106,0.0,227,5757928030153,42,32.859737396240234,-704.1103554486094,0.10755081947546352,1,-468177.7229081349,0.0019125925609841943,,,,,0,,3
+507588484,669430000000,,,-1157840705570300497,0.0,11.00705351566729,,,0,26,0.0,4138,254174922433148,1000000000,22.031070709228516,260.6765501699434,2.99792458E8,4,159046.83625137561,3.4028234663852886E38,,,,,0,,6
+507589475,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,10,0.0,47,254175923999240,83,18.291702270507812,-564.0033070307709,4.200719481774188,4,-374574.3071691266,3.4028234663852886E38,,,,,0,,1
+507589476,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,13,0.0,47,254175923418559,23,32.10626220703125,184.25541765009575,0.11633676253466779,1,98304.16716597645,0.002125574741512537,,,,,0,,1
+507589476,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,15,0.0,47,254175927650772,44,26.609291076660156,-54.24552703372132,0.219279502417834,1,-61031.014605953234,0.004002440255135298,,,,,0,,1
+507589476,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,16,0.0,47,254175924091937,64,23.253459930419922,137.78156832683067,0.3214038223361042,1,66960.98850150344,0.0058900159783661366,,,,,0,,1
+507589477,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,18,0.0,47,254175930982730,62,22.457782745361328,-191.83279979652957,4.201975473550892,4,-139047.99109829252,3.4028234663852886E38,,,,,0,,1
+507589477,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,20,0.0,47,254175930246337,19,33.68242263793945,433.2517225161612,0.09836082955985431,1,275143.3486194415,0.0018803756684064865,,,,,0,,1
+507589478,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,21,0.0,47,254175930187757,40,27.270008087158203,24.467627255596497,0.20377513000478087,1,9295.434872484577,0.00370927550829947,,,,,0,,1
+507589478,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,26,0.0,47,254175922757281,47,26.016525268554688,428.8950643462199,0.23378917634024998,1,264083.8513151263,0.004285121336579323,,,,,0,,1
+507589478,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,27,0.0,47,254175922135951,61,22.589004516601562,-586.2673990946446,4.200384248861983,4,-391045.5819516961,3.4028234663852886E38,,,,,0,,1
+507589479,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,29,0.0,47,254175924843972,67,21.4906063079834,661.8589475814988,4.200871255213391,4,427220.0120625859,3.4028234663852886E38,,,,,0,,1
+507589479,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,93,0.0,99,28921354652,109,13.428791046142578,70.44132291984994,4.2002436587288265,4,16174.821071630626,3.4028234663852886E38,,,,,0,,3
+507589480,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,94,0.0,227,5758920004954,118,11.701929092407227,538.6709759008877,4.203598384273599,4,333458.5518742802,3.4028234663852886E38,,,,,0,,3
+507589480,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,96,0.0,227,5758928957173,63,29.441438674926758,666.7314437309128,0.15888499005562662,1,421014.8160720968,0.0028448658995330334,,,,,0,,3
+507589480,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,97,0.0,227,5758936125794,44,32.582698822021484,56.33372080211032,0.11244588733081545,1,15574.537609911062,0.0021009824704378843,,,,,0,,3
+507589481,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,103,0.0,227,5758929038703,90,26.370494842529297,-589.6744177784908,0.22560294638870404,1,-388623.86018136033,0.004041488282382488,,,,,0,,3
+507589481,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,104,0.0,192,5758927910599,1000000000,13.312387466430664,627.5626577264643,2.99792458E8,4,396660.462204019,3.4028234663852886E38,,,,,1,,3
+507589482,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,105,0.0,227,5758936160338,42,32.884037017822266,-41.49504147134229,0.10871677898176291,1,-56749.80339259629,0.002023652195930481,,,,,0,,3
+507589482,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,106,0.0,227,5758928032570,43,32.726829528808594,-704.0848617711304,0.10918731824785383,1,-468881.8630591656,0.0019420833559706807,,,,,0,,3
+507589482,670430000000,,,-1157840705570300408,0.0,10.89493909019751,,,0,26,0.0,4138,254175922432248,1000000000,21.73263168334961,260.07095604121787,2.99792458E8,4,159308.35888770426,3.4028234663852886E38,,,,,0,,6
+507590426,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,10,0.0,47,254176924001141,90,17.045516967773438,-563.8370868903091,4.2007197480433796,4,-375138.36722600367,3.4028234663852886E38,,,,,0,,1
+507590426,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,13,0.0,47,254176923417963,24,31.85372543334961,184.52013608990842,0.11975054991449868,4,98488.53971891546,3.4028234663852886E38,,,,,0,,1
+507590427,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,15,0.0,47,254176927650981,45,26.246423721313477,-54.54777877877973,0.22857565885267528,4,-61085.463039406925,3.4028234663852886E38,,,,,0,,1
+507590427,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,16,0.0,47,254176924091471,62,22.49165153503418,137.3569435216271,4.200735990464066,4,67098.42377125702,3.4028234663852886E38,,,,,0,,1
+507590427,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,18,0.0,47,254176930983298,66,21.662967681884766,-191.43369423064746,4.201975739820083,4,-139239.80726950825,3.4028234663852886E38,,,,,0,,1
+507590428,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,20,0.0,47,254176930244891,18,34.0965461730957,433.43082582518855,0.093866813032502,4,275576.6863494557,3.4028234663852886E38,,,,,0,,1
+507590428,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,21,0.0,47,254176930187692,45,26.24346923828125,24.364406405863633,0.22910922902896158,4,9319.81282633324,3.4028234663852886E38,,,,,0,,1
+507590428,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,26,0.0,47,254176922755822,46,26.14150619506836,428.92382993952515,0.23045610180911813,4,264512.72274252016,3.4028234663852886E38,,,,,0,,1
+507590429,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,27,0.0,47,254176922137923,70,20.980941772460938,-586.2070731465992,4.200384515131175,4,-391631.62549861637,3.4028234663852886E38,,,,,0,,1
+507590429,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,29,0.0,47,254176924841740,80,19.009506225585938,661.8329085847154,4.2008709889441995,4,427881.8597420723,3.4028234663852886E38,,,,,0,,1
+507590429,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,93,0.0,99,29921354371,109,13.354633331298828,70.73551842424777,4.2002436587288265,4,16245.016991827026,3.4028234663852886E38,,,,,0,,3
+507590430,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,94,0.0,227,5759920003074,142,10.841743469238281,538.5725457664498,299.7960699834882,4,333997.08061243617,3.4028234663852886E38,,,,,0,,3
+507590430,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,96,0.0,227,5759928954930,59,29.965993881225586,666.7313074010867,0.1496676825851433,4,421681.5254762605,3.4028234663852886E38,,,,,0,,3
+507590430,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,97,0.0,227,5759936125667,45,32.28216552734375,56.03032729475839,0.1163024803762513,4,15630.604131583998,3.4028234663852886E38,,,,,0,,3
+507590430,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,103,0.0,227,5759929040691,97,25.78141975402832,-589.7369931686667,0.24132031751320027,4,-389213.6141749894,3.4028234663852886E38,,,,,0,,3
+507590431,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,104,0.0,192,5759927908768,1000000000,16.141254425048828,627.7716513498622,2.99792458E8,4,397287.8578579716,3.4028234663852886E38,,,,,0,,3
+507590431,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,105,0.0,227,5759936160506,42,33.01526641845703,-41.06145724038029,0.10713022232461916,4,-56791.12872049004,3.4028234663852886E38,,,,,0,,3
+507590431,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,106,0.0,227,5759928034948,47,31.985013961791992,-704.0976767747829,0.11879382806731126,4,-469585.9788435494,3.4028234663852886E38,,,,,0,,3
+507590431,671430000000,,,-1157840705570300321,0.0,11.890168446822738,,,0,26,0.0,4138,254176922431346,1000000000,20.710390090942383,261.03952833191136,2.99792458E8,4,159569.38512054016,3.4028234663852886E38,,,,,1,,6
+507591453,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,10,0.0,47,254177924002998,166,14.60369873046875,-563.910159677094,4.200720014312571,4,-375702.2734786527,3.4028234663852886E38,,,,,1,,1
+507591453,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,13,0.0,47,254177923417363,25,31.357542037963867,184.61248250585697,0.1267542451025691,4,98673.01796226035,3.4028234663852886E38,,,,,0,,1
+507591453,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,15,0.0,47,254177927651149,42,26.919734954833984,-54.40653681864214,0.211629006079756,4,-61139.78161223181,3.4028234663852886E38,,,,,0,,1
+507591454,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,16,0.0,47,254177924091095,70,20.81554412841797,137.78217329043395,4.200735990464066,4,67236.0820123685,3.4028234663852886E38,,,,,0,,1
+507591454,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,18,0.0,47,254177930983942,69,21.180946350097656,-191.0508119140702,4.201975739820083,4,-139431.3625237017,3.4028234663852886E38,,,,,0,,1
+507591454,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,20,0.0,47,254177930243476,18,34.02006530761719,433.5870598058891,0.0946803985473883,4,276010.17324241006,3.4028234663852886E38,,,,,0,,1
+507591455,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,21,0.0,47,254177930187604,42,26.974748611450195,24.368585767094743,0.21075775664306717,4,9344.248416860686,3.4028234663852886E38,,,,,0,,1
+507591455,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,26,0.0,47,254177922754385,56,24.436134338378906,428.7938735328037,0.28034308269119523,4,264941.6058920517,3.4028234663852886E38,,,,,0,,1
+507591455,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,27,0.0,47,254177922139865,87,17.578018188476562,-586.0419777272027,4.200385047669558,4,-392217.23487503326,3.4028234663852886E38,,,,,0,,1
+507591455,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,29,0.0,47,254177924839553,82,18.489965438842773,661.7787174788441,4.200870456405816,4,428543.82196379284,3.4028234663852886E38,,,,,0,,1
+507591456,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,93,0.0,99,921353955,112,12.761133193969727,70.56849308575067,4.2002436587288265,4,16315.487241093284,3.4028234663852886E38,,,,,0,,3
+507591456,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,94,0.0,227,5760920000804,117,11.801738739013672,538.8364462273059,4.203597585466024,4,334536.9562447691,3.4028234663852886E38,,,,,0,,3
+507591457,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,96,0.0,227,5760928952676,60,29.928253173828125,666.6454196106492,0.15031198746147978,4,422348.2373044192,3.4028234663852886E38,,,,,0,,3
+507591457,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,97,0.0,227,5760936125539,44,32.54560470581055,56.67816236803691,0.11291462927986318,4,15687.11358535189,3.4028234663852886E38,,,,,0,,3
+507591457,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,103,0.0,227,5760929042739,94,25.994644165039062,-589.803181299234,0.23550821024111923,4,-389803.31629216264,3.4028234663852886E38,,,,,0,,3
+507591458,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,104,0.0,192,5760927906606,1000000000,15.919500350952148,627.7256400335564,2.99792458E8,4,397915.46739871294,3.4028234663852886E38,,,,,0,,3
+507591458,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,105,0.0,227,5760936160638,37,34.0502815246582,-40.98451609478005,0.09542234100791391,4,-56832.25240140496,3.4028234663852886E38,,,,,0,,3
+507591458,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,106,0.0,227,5760928037303,41,33.134483337402344,-704.0558235181729,0.10424833261771493,4,-470290.04689586326,3.4028234663852886E38,,,,,0,,3
+507591458,672430000000,,,-1157840705570300234,0.0,12.421756639174323,,,0,26,0.0,4138,254177922430540,1000000000,20.95939826965332,261.71512782633476,2.99792458E8,4,159830.96047415343,3.4028234663852886E38,,,,,0,,6
+507592446,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,10,0.0,47,254178924004860,101,14.915693283081055,-563.8347011183525,4.200720280581763,4,-376265.82185397757,3.4028234663852886E38,,,,,0,,1
+507592447,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,13,0.0,47,254178923416745,27,30.846067428588867,184.60097967678053,0.13440501603075095,4,98857.54182820144,3.4028234663852886E38,,,,,0,,1
+507592447,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,15,0.0,47,254178927651310,43,26.650741577148438,-54.04415509966336,0.21824218421471886,4,-61193.85758617782,3.4028234663852886E38,,,,,0,,1
+507592448,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,16,0.0,47,254178924090666,64,22.141979217529297,138.10755850285722,4.200735724194875,4,67374.09934463285,3.4028234663852886E38,,,,,0,,1
+507592448,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,18,0.0,47,254178930984664,76,19.71101951599121,-191.68418324486186,4.201976006089275,4,-139623.20769187948,3.4028234663852886E38,,,,,0,,1
+507592448,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,20,0.0,47,254178930242010,19,33.7464485168457,433.4741105449725,0.09765120552245726,4,276443.6557074941,3.4028234663852886E38,,,,,0,,1
+507592449,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,21,0.0,47,254178930187533,41,27.039302825927734,24.73154475768088,0.20921074928178596,4,9368.895140428182,3.4028234663852886E38,,,,,0,,1
+507592449,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,26,0.0,47,254178922752993,53,24.915546417236328,428.8176630874566,0.2653153820565517,4,265370.4554778122,3.4028234663852886E38,,,,,0,,1
+507592450,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,27,0.0,47,254178922141835,66,21.6522216796875,-585.8940598658937,4.2003853139387495,4,-392802.44310472487,3.4028234663852886E38,,,,,0,,1
+507592450,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,29,0.0,47,254178924837343,76,19.769506454467773,661.3704096497008,4.200870190136625,4,429205.61024983414,3.4028234663852886E38,,,,,0,,1
+507592450,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,93,0.0,99,1921353446,114,12.363845825195312,70.44712119776588,4.200243392459635,4,16386.08207159136,3.4028234663852886E38,,,,,0,,3
+507592451,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,94,0.0,226,5761919999661,1000000000,12.539352416992188,538.7395157209551,2.99792458E8,4,335075.6739765277,3.4028234663852886E38,,,,,1,,3
+507592451,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,96,0.0,227,5761928950496,60,29.825401306152344,666.7228549518691,0.15208289392923457,4,423015.03875887353,3.4028234663852886E38,,,,,0,,3
+507592451,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,97,0.0,227,5761936125308,46,32.22685623168945,57.13225145690444,0.11702681578648338,4,15743.969256874769,3.4028234663852886E38,,,,,0,,3
+507592452,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,103,0.0,227,5761929044728,102,25.320592880249023,-589.9248556690204,0.25438132061515206,4,-390393.104587782,3.4028234663852886E38,,,,,0,,3
+507592452,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,104,0.0,227,5761927904581,89,17.164812088012695,627.7475891355571,4.201421899901588,4,398543.27502673643,3.4028234663852886E38,,,,,0,,3
+507592452,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,105,0.0,227,5761936160760,41,33.258705139160156,-41.23393577192104,0.1042497638146197,4,-56873.44735798016,3.4028234663852886E38,,,,,0,,3
+507592453,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,106,0.0,227,5761928039584,39,33.489479064941406,-703.8558276632971,0.10013185252038043,4,-470993.95111955074,3.4028234663852886E38,,,,,0,,3
+507592453,673430000000,,,-1157840705570300148,0.0,12.79238915529676,,,0,26,0.0,4138,254178922429685,1000000000,20.17383575439453,260.4789741694807,2.99792458E8,4,160091.49761364688,3.4028234663852886E38,,,,,0,,6
+507593466,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,10,0.0,47,254179924006716,116,11.954973220825195,-563.7446552682193,4.200720813120146,4,-376829.01232280285,3.4028234663852886E38,,,,,0,,1
+507593467,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,13,0.0,47,254179923416106,25,31.26583480834961,184.61749262696583,0.12809287185869878,4,99042.1590940322,3.4028234663852886E38,,,,,0,,1
+507593468,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,15,0.0,47,254179927651541,38,27.680192947387695,-53.529403498492286,0.19400401589945082,4,-61247.55828685103,3.4028234663852886E38,,,,,0,,1
+507593469,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,16,0.0,47,254179924090155,67,21.52176284790039,137.80177070293456,4.200735724194875,4,67511.99928313393,3.4028234663852886E38,,,,,0,,1
+507593470,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,18,0.0,47,254179930985401,75,20.00941276550293,-192.06624758248256,4.201976006089275,4,-139815.094782433,3.4028234663852886E38,,,,,0,,1
+507593470,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,20,0.0,47,254179930240605,18,34.37434768676758,433.31112823788044,0.09096937154062679,4,276877.0651498282,3.4028234663852886E38,,,,,0,,1
+507593471,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,21,0.0,47,254179930187438,39,27.55990219116211,24.78490936398147,0.19714639176393478,4,9393.623479516242,3.4028234663852886E38,,,,,0,,1
+507593472,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,26,0.0,47,254179922751589,61,23.739612579345703,428.68583214562636,0.3037078714162418,4,265799.292861728,3.4028234663852886E38,,,,,0,,1
+507593473,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,27,0.0,47,254179922143794,63,22.313188552856445,-585.7822694084989,4.200385580207941,4,-393388.0963876874,3.4028234663852886E38,,,,,0,,1
+507593473,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,29,0.0,47,254179924835118,97,15.623388290405273,661.7778994998876,4.200869657598242,4,429867.01456835103,3.4028234663852886E38,,,,,0,,1
+507593474,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,93,0.0,99,2921353274,166,11.956369400024414,70.40561728633523,4.200243392459635,4,16456.550357996017,3.4028234663852886E38,,,,,1,,3
+507593475,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,94,0.0,227,5762919997543,109,13.478706359863281,538.7048538626714,4.207194615975139,4,335614.3505862773,3.4028234663852886E38,,,,,0,,3
+507593476,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,96,0.0,227,5762928948239,55,30.58171272277832,666.9590463755721,0.1395344923047318,4,423681.9681936176,3.4028234663852886E38,,,,,0,,3
+507593477,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,97,0.0,227,5762936125120,41,33.122047424316406,57.02202879250967,0.1058504493807419,4,15800.871281406304,3.4028234663852886E38,,,,,0,,3
+507593477,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,103,0.0,227,5762929046724,98,25.684473037719727,-589.9501448517603,0.24401171657626253,4,-390982.87142700073,3.4028234663852886E38,,,,,0,,3
+507593478,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,104,0.0,227,5762927902425,81,18.867321014404297,627.6529080713367,4.201421367363205,4,399170.9824779181,3.4028234663852886E38,,,,,0,,3
+507593479,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,105,0.0,227,5762936160885,44,32.6272087097168,-40.917901933506215,0.11189225543512571,4,-56914.51218900886,3.4028234663852886E38,,,,,0,,3
+507593479,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,106,0.0,227,5762928041889,42,32.957557678222656,-704.124601915436,0.1063646651151649,4,-471697.9754716554,3.4028234663852886E38,,,,,0,,3
+507593480,674430000000,,,-1157840705570300063,0.0,13.469997688461115,,,0,26,0.0,4138,254179922428804,1000000000,19.694429397583008,259.9785755428128,2.99792458E8,4,160350.89791509855,3.4028234663852886E38,,,,,0,,6
+507594464,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,10,0.0,47,254180924008535,95,16.031368255615234,-563.557474416996,4.2007210793893375,4,-377392.04844054225,3.4028234663852886E38,,,,,0,,1
+507594464,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,13,0.0,47,254180923415515,27,30.7161808013916,184.69114481551162,0.13642048243006383,4,99226.8422159049,3.4028234663852886E38,,,,,0,,1
+507594465,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,15,0.0,47,254180927651728,42,26.835262298583984,-53.30284462906397,0.21368380543121324,4,-61301.07766843645,3.4028234663852886E38,,,,,0,,1
+507594466,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,16,0.0,47,254180924089688,77,19.50689697265625,137.80088455906497,4.200735724194875,4,67649.98064858752,3.4028234663852886E38,,,,,0,,1
+507594466,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,18,0.0,47,254180930986006,82,18.668357849121094,-192.7627566639827,4.201976006089275,4,-140007.49815818548,3.4028234663852886E38,,,,,0,,1
+507594467,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,20,0.0,47,254180930239115,18,34.12082290649414,433.44036891301494,0.09360893132045245,4,277310.5308876041,3.4028234663852886E38,,,,,0,,1
+507594467,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,21,0.0,47,254180930187411,41,27.084880828857422,24.979398771975355,0.2081253861314143,4,9418.440833868111,3.4028234663852886E38,,,,,0,,1
+507594468,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,26,0.0,47,254180922750152,64,23.279661178588867,428.9446884029171,0.3201966576724071,4,266228.1481362213,3.4028234663852886E38,,,,,0,,1
+507594469,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,27,0.0,47,254180922145766,69,20.98812484741211,-585.5818645641448,4.200386112746324,4,-393973.6598601396,3.4028234663852886E38,,,,,0,,1
+507594470,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,29,0.0,47,254180924832911,106,13.88575553894043,661.9081626487177,4.20086939132905,4,430528.4816668753,3.4028234663852886E38,,,,,0,,1
+507594470,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,93,0.0,99,3921353288,166,12.366806030273438,70.44987761643716,4.200243392459635,4,16527.04400765488,3.4028234663852886E38,,,,,1,,3
+507594471,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,94,0.0,227,5763919995737,102,14.736345291137695,538.8447623466975,4.20359678665845,4,336153.10467262263,3.4028234663852886E38,,,,,0,,3
+507594471,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,96,0.0,227,5763928945928,54,30.724998474121094,667.0855604541848,0.13727747814409064,4,424349.04198241525,3.4028234663852886E38,,,,,0,,3
+507594472,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,97,0.0,227,5763936124984,46,32.122093200683594,57.0056479118434,0.11841160696370401,4,15857.76438114837,3.4028234663852886E38,,,,,0,,3
+507594472,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,103,0.0,227,5763929048687,95,25.942264556884766,-589.6504237290987,0.2369239468909493,4,-391572.4790197795,3.4028234663852886E38,,,,,0,,3
+507594473,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,104,0.0,227,5763927900272,69,21.002456665039062,627.7303434125565,4.201421101094013,4,399798.82162777946,3.4028234663852886E38,,,,,0,,3
+507594473,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,105,0.0,227,5763936161002,44,32.624385833740234,-40.49893055577837,0.11192768587943092,4,-56955.18769436993,3.4028234663852886E38,,,,,0,,3
+507594474,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,106,0.0,227,5763928044351,39,33.481468200683594,-703.8359916736008,0.1002237902796872,4,-472401.80696051085,3.4028234663852886E38,,,,,0,,3
+507594474,675430000000,,,-1157840705570299975,0.0,13.604301187064657,,,0,26,0.0,4138,254180922427930,1000000000,22.144779205322266,261.2007553924925,2.99792458E8,4,160610.985658077,3.4028234663852886E38,,,,,1,,6
+507595444,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,10,0.0,47,254181924010392,66,21.74150848388672,-563.4449682280142,4.200721345658529,4,-377954.8121433223,3.4028234663852886E38,,,,,0,,1
+507595444,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,13,0.0,47,254181923414857,28,30.51707649230957,184.84996906290792,0.13956937356882937,4,99411.6700150468,3.4028234663852886E38,,,,,0,,1
+507595444,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,15,0.0,47,254181927651872,43,26.702964782714844,-53.407013397118874,0.21694234123052591,4,-61354.54772582081,3.4028234663852886E38,,,,,0,,1
+507595445,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,16,0.0,47,254181924089210,70,20.962913513183594,137.89310316580156,4.200735457925683,4,67787.9937852315,3.4028234663852886E38,,,,,0,,1
+507595445,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,18,0.0,47,254181930986699,93,16.5248966217041,-192.17089776523585,4.201976272358467,4,-140199.74008907852,3.4028234663852886E38,,,,,0,,1
+507595445,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,20,0.0,47,254181930237663,17,34.51322937011719,433.52898329997424,0.08955509105043818,4,277744.015653583,3.4028234663852886E38,,,,,0,,1
+507595446,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,21,0.0,47,254181930187372,39,27.4949951171875,25.02980459501906,0.19861142149785693,4,9443.293297694758,3.4028234663852886E38,,,,,0,,1
+507595446,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,26,0.0,47,254181922748706,51,25.289627075195312,429.03023536878936,0.2541515303028147,4,266657.25123048486,3.4028234663852886E38,,,,,0,,1
+507595446,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,27,0.0,47,254181922147697,76,19.73481559753418,-585.9639289017655,4.200386379015516,4,-394559.5218192627,3.4028234663852886E38,,,,,0,,1
+507595447,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,29,0.0,47,254181924830724,118,11.559087753295898,661.9544466246757,4.200868858790667,4,431190.30276557175,3.4028234663852886E38,,,,,0,,1
+507595447,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,93,0.0,99,4921352970,118,11.506591796875,70.4673704372475,4.200243392459635,4,16597.49079183242,3.4028234663852886E38,,,,,0,,3
+507595447,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,94,0.0,227,5764919993964,99,15.36258316040039,538.7922753636524,4.207194083436756,4,336691.7326204246,3.4028234663852886E38,,,,,0,,3
+507595448,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,96,0.0,227,5764928943761,51,31.35154914855957,667.1173934685771,0.1278353645876999,4,425016.13301510393,3.4028234663852886E38,,,,,0,,3
+507595448,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,97,0.0,227,5764936124691,45,32.288673400878906,56.7088408392145,0.11621736576497887,4,15914.575544065081,3.4028234663852886E38,,,,,0,,3
+507595448,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,103,0.0,227,5764929050578,93,26.11198616027832,-589.3691752978725,0.23237124296958933,4,-392161.9129631786,3.4028234663852886E38,,,,,0,,3
+507595449,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,104,0.0,227,5764927898141,115,24.300857543945312,627.7655846726011,0.28566091113457315,4,400426.7496284047,3.4028234663852886E38,,,,,0,,3
+507595449,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,105,0.0,227,5764936161123,41,33.10780334472656,-40.61434227417874,0.10602587085252263,4,-56995.84034697556,3.4028234663852886E38,,,,,0,,3
+507595449,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,106,0.0,227,5764928046703,40,33.32490921020508,-703.4171182829355,0.10202075784456832,4,-473105.402237481,3.4028234663852886E38,,,,,0,,3
+507595450,676430000000,,,-1157840705570299886,0.0,13.690948400285324,,,0,26,0.0,4138,254181922427048,1000000000,22.838516235351562,260.84423585603565,2.99792458E8,4,160870.7830912934,3.4028234663852886E38,,,,,0,,6
+507596496,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,10,0.0,47,254182924012275,67,21.38933563232422,-563.3328710285107,4.200721611927721,4,-378518.1910753503,3.4028234663852886E38,,,,,0,,1
+507596497,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,13,0.0,47,254182923414274,26,31.010395050048828,184.98977529956449,0.13189717629163722,4,99596.61930175981,3.4028234663852886E38,,,,,0,,1
+507596498,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,15,0.0,47,254182927652048,41,27.135848999023438,-53.57590048980353,0.20646236861172462,4,-61408.11570127774,3.4028234663852886E38,,,,,0,,1
+507596498,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,16,0.0,47,254182924088849,73,20.28754234313965,138.41580876026364,4.200735457925683,4,67926.36442760612,3.4028234663852886E38,,,,,0,,1
+507596499,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,18,0.0,47,254182930987378,166,14.497074127197266,-192.25639360742332,4.201976272358467,4,-140391.99986601554,3.4028234663852886E38,,,,,1,,1
+507596500,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,20,0.0,47,254182930236215,17,34.63726043701172,433.6761172647832,0.08831120620103916,4,278177.7107343659,3.4028234663852886E38,,,,,0,,1
+507596501,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,21,0.0,47,254182930187245,38,27.73920440673828,24.981626912570533,0.19315584867330748,4,9468.223970758483,3.4028234663852886E38,,,,,0,,1
+507596502,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,26,0.0,47,254182922747289,46,26.081937789916992,429.38718093595276,0.23203705849232636,4,267086.5335555526,3.4028234663852886E38,,,,,0,,1
+507596503,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,27,0.0,47,254182922149637,81,18.720090866088867,-586.1667876829893,4.200386645284707,4,-395145.8487147545,3.4028234663852886E38,,,,,0,,1
+507596504,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,29,0.0,47,254182924828509,102,14.712484359741211,661.8230246723238,4.200868592521475,4,431852.0153913146,3.4028234663852886E38,,,,,0,,1
+507596505,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,93,0.0,99,5921353131,166,11.623434066772461,70.64249035916876,4.200243392459635,4,16667.907572662425,3.4028234663852886E38,,,,,1,,3
+507596505,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,94,0.0,227,5765919992309,67,21.420129776000977,539.0284667873555,4.203596254120066,4,337230.3172655096,3.4028234663852886E38,,,,,0,,3
+507596506,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,96,0.0,227,5765928941511,49,31.659719467163086,667.2017816309276,0.1234350498530486,4,425683.2951680809,3.4028234663852886E38,,,,,0,,3
+507596507,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,97,0.0,227,5765936124620,45,32.34143829345703,56.64717715475061,0.11553101531910875,4,15971.369067808058,3.4028234663852886E38,,,,,0,,3
+507596508,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,103,0.0,227,5765929052518,90,26.410676956176758,-589.1903105660408,0.2245716525260485,4,-392751.28763754934,3.4028234663852886E38,,,,,0,,3
+507596508,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,104,0.0,227,5765927896017,60,22.79993438720703,627.8432926734731,4.201420302286438,4,401054.9712895824,3.4028234663852886E38,,,,,0,,3
+507596508,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,105,0.0,227,5765936161320,41,33.221683502197266,-40.64778568464175,0.10468275080378497,4,-57036.50377769004,3.4028234663852886E38,,,,,0,,3
+507596509,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,106,0.0,227,5765928049015,43,32.783424377441406,-703.2941487798012,0.10849052505712625,4,-473808.85828757955,3.4028234663852886E38,,,,,0,,3
+507596509,677430000000,,,-1157840705570299798,0.0,13.68603516800618,,,0,26,0.0,4138,254182922426176,1000000000,22.570419311523438,259.7466273849468,2.99792458E8,4,161129.46093488432,3.4028234663852886E38,,,,,0,,6
+507597491,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,10,0.0,47,254183924014189,74,20.205080032348633,-563.3621819411203,4.200722144466104,4,-379081.55976443674,3.4028234663852886E38,,,,,0,,1
+507597491,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,13,0.0,47,254183923413640,26,30.91225814819336,185.11623825449237,0.13338876637741992,4,99781.7120505061,3.4028234663852886E38,,,,,0,,1
+507597492,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,15,0.0,47,254183927652261,38,27.729976654052734,-53.41748949219257,0.19290327570326515,4,-61461.61264181254,3.4028234663852886E38,,,,,0,,1
+507597492,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,16,0.0,47,254183924088366,67,21.54476547241211,138.41190631899178,4.200735457925683,4,68064.76647058378,3.4028234663852886E38,,,,,0,,1
+507597492,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,18,0.0,47,254183930987999,166,19.40398406982422,-192.2546383609124,4.201976538627658,4,-140584.08522287259,3.4028234663852886E38,,,,,1,,1
+507597493,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,20,0.0,47,254183930234776,18,34.27238082885742,433.7109495353495,0.09202079368998367,4,278611.356542436,3.4028234663852886E38,,,,,0,,1
+507597493,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,21,0.0,47,254183930187127,39,27.4527645111084,24.872209446211116,0.19957040663317283,4,9493.022044744112,3.4028234663852886E38,,,,,0,,1
+507597493,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,26,0.0,47,254183922745815,46,26.154769897460938,429.47726086854254,0.23010342826486452,4,267515.9381999909,3.4028234663852886E38,,,,,0,,1
+507597493,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,27,0.0,47,254183922151544,84,18.197011947631836,-586.0290945586371,4.200386911553899,4,-395731.7192178423,3.4028234663852886E38,,,,,0,,1
+507597494,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,29,0.0,47,254183924826258,95,16.031465530395508,662.0082969059818,4.200868059983092,4,432513.91302913113,3.4028234663852886E38,,,,,0,,1
+507597494,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,93,0.0,98,6921352896,1000000000,12.162107467651367,70.63418702069839,2.99792458E8,4,16738.630800717496,3.4028234663852886E38,,,,,1,,3
+507597494,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,94,0.0,227,5766919990683,63,22.209789276123047,538.7324265699983,4.203595987850875,4,337769.1830712955,3.4028234663852886E38,,,,,0,,3
+507597495,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,96,0.0,227,5766928939367,56,30.404754638671875,667.0904683279241,0.14237167375018656,4,426350.4239860981,3.4028234663852886E38,,,,,0,,3
+507597495,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,97,0.0,227,5766936124404,52,31.056657791137695,56.77929353715422,0.13348606280420733,4,16028.247138554463,3.4028234663852886E38,,,,,0,,3
+507597495,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,103,0.0,227,5766929054540,98,25.63686752319336,-589.2957616865224,0.2453452426131909,4,-393340.679145915,3.4028234663852886E38,,,,,0,,3
+507597496,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,104,0.0,227,5766927893955,65,21.85468292236328,628.253986274573,4.201420036017247,4,401683.30295882106,3.4028234663852886E38,,,,,0,,3
+507597496,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,105,0.0,227,5766936161450,45,32.339813232421875,-40.58069862928366,0.11555874059868249,4,-57077.06189236645,3.4028234663852886E38,,,,,0,,3
+507597496,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,106,0.0,227,5766928051423,41,33.2103271484375,-703.3507938225421,0.103357137954394,4,-474512.35071493033,3.4028234663852886E38,,,,,0,,3
+507597497,678430000000,,,-1157840705570299709,0.0,13.750554544558845,,,0,26,0.0,4104,254183922425320,1000000000,22.764835357666016,259.2294090659849,2.99792458E8,4,161387.41653126688,3.4028234663852886E38,,,,,0,,6
+507598504,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,10,0.0,47,254184924016101,71,20.76079559326172,-563.3743152956424,4.200722410735295,4,-379644.99713423406,3.4028234663852886E38,,,,,0,,1
+507598505,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,13,0.0,47,254184923412970,27,30.848176956176758,185.33388882184704,0.13437181559092526,4,99966.90648986965,3.4028234663852886E38,,,,,0,,1
+507598505,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,15,0.0,47,254184927652459,38,27.824764251708984,-53.36139402906309,0.19082454540821425,4,-61514.97686082787,3.4028234663852886E38,,,,,0,,1
+507598506,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,16,0.0,47,254184924087903,70,20.813180923461914,138.30264648399378,4.200735457925683,4,68203.17215532158,3.4028234663852886E38,,,,,0,,1
+507598507,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,18,0.0,47,254184930988597,166,21.454416275024414,-192.11520703127758,4.201976538627658,4,-140775.88769337823,3.4028234663852886E38,,,,,1,,1
+507598508,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,20,0.0,47,254184930233335,15,35.59540557861328,433.744486672568,0.0792794217897923,4,279045.0760153274,3.4028234663852886E38,,,,,0,,1
+507598508,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,21,0.0,47,254184930187041,35,28.537376403808594,24.654684557914877,0.17635815687125522,4,9517.73766894043,3.4028234663852886E38,,,,,0,,1
+507598510,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,26,0.0,47,254184922744371,39,27.61811065673828,429.34536176179927,0.19450305428995351,4,267945.32013976225,3.4028234663852886E38,,,,,0,,1
+507598510,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,27,0.0,47,254184922153511,79,19.145488739013672,-585.9724495158962,4.200387444092282,4,-396317.06715562596,3.4028234663852886E38,,,,,0,,1
+507598511,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,29,0.0,47,254184924824036,73,20.303020477294922,661.9112300698048,4.2008677937139005,4,433175.99589947355,3.4028234663852886E38,,,,,0,,1
+507598511,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,93,0.0,99,7921352769,166,13.093162536621094,70.34249657685498,4.200243392459635,4,16808.909760610357,3.4028234663852886E38,,,,,1,,3
+507598512,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,94,0.0,227,5767919988925,68,21.303897857666016,538.7148400224326,4.203595455312492,4,338308.04257589893,3.4028234663852886E38,,,,,0,,3
+507598513,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,96,0.0,227,5767928937161,63,29.437198638916016,667.1492946478825,0.15895821408331234,4,427017.6517973102,3.4028234663852886E38,,,,,0,,3
+507598513,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,97,0.0,227,5767936124194,47,32.051597595214844,57.29613268878731,0.1193527437422715,4,16085.428176670626,3.4028234663852886E38,,,,,0,,3
+507598514,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,103,0.0,227,5767929056531,119,23.983413696289062,-589.4937125940069,0.29644953967189425,4,-393930.1385996081,3.4028234663852886E38,,,,,0,,3
+507598515,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,104,0.0,227,5767927891852,72,20.53742218017578,628.7701991610675,4.2014195034788635,4,402311.5143332834,3.4028234663852886E38,,,,,0,,3
+507598515,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,105,0.0,227,5767936161590,37,34.13300323486328,-40.45355828553238,0.09454562473188538,4,-57117.465733632336,3.4028234663852886E38,,,,,0,,3
+507598516,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,106,0.0,227,5767928053688,42,32.999515533447266,-703.6018451972891,0.10586118335752764,4,-475215.90503318806,3.4028234663852886E38,,,,,0,,3
+507598517,679430000000,,,-1157840705570299622,0.0,14.379645505425739,,,0,26,0.0,4104,254184922424419,1000000000,25.956396102905273,262.45701769869504,2.99792458E8,4,161648.81117753385,3.4028234663852886E38,,,,,0,,6
+507599510,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,10,0.0,47,254185924018023,60,22.768964767456055,-563.1747965951579,4.200722677004487,4,-380208.23568141065,3.4028234663852886E38,,,,,0,,1
+507599511,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,13,0.0,47,254185923412392,22,32.27842712402344,185.48335743492783,0.11406446285824723,4,100152.29634823548,3.4028234663852886E38,,,,,0,,1
+507599512,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,15,0.0,47,254185927652584,34,28.751792907714844,-53.299521589552995,0.17164673986988643,4,-61568.18207412019,3.4028234663852886E38,,,,,0,,1
+507599512,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,16,0.0,47,254185924087406,67,21.564611434936523,138.2202862278064,4.2007351916564915,4,68341.57301694338,3.4028234663852886E38,,,,,0,,1
+507599513,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,18,0.0,47,254185930989214,166,20.0736083984375,-192.08562345901578,4.20197680489685,4,-140967.6287049627,3.4028234663852886E38,,,,,1,,1
+507599514,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,20,0.0,47,254185930231903,14,36.26007843017578,433.64745391884753,0.07357436305364046,4,279478.78693162266,3.4028234663852886E38,,,,,0,,1
+507599514,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,21,0.0,47,254185930186927,29,30.135894775390625,24.588622106406007,0.1470213495827567,4,9542.405058720653,3.4028234663852886E38,,,,,0,,1
+507599515,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,26,0.0,47,254185922742910,37,28.02396011352539,429.47368221060765,0.18564622537940212,4,268374.8096352988,3.4028234663852886E38,,,,,0,,1
+507599515,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,27,0.0,47,254185922155446,88,17.372087478637695,-585.8195556159349,4.200387710361474,4,-396902.99970864627,3.4028234663852886E38,,,,,0,,1
+507599516,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,29,0.0,47,254185924821795,66,21.600162506103516,662.195477757205,4.200867261175517,4,433838.21290933643,3.4028234663852886E38,,,,,0,,1
+507599517,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,93,0.0,98,8921352426,1000000000,13.223808288574219,70.63905229136702,2.99792458E8,4,16879.642369201196,3.4028234663852886E38,,,,,1,,3
+507599517,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,94,0.0,227,5768919987023,98,15.546584129333496,539.5874872392426,4.207192752090798,4,338847.07608026976,3.4028234663852886E38,,,,,0,,3
+507599518,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,96,0.0,227,5768928934917,58,30.16426658630371,667.1196429107076,0.14632269250768803,4,427684.8901167935,3.4028234663852886E38,,,,,0,,3
+507599519,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,97,0.0,227,5768936123925,48,31.87731170654297,57.705313880878975,0.12171299546103731,4,16142.966413042184,3.4028234663852886E38,,,,,0,,3
+507599520,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,103,0.0,227,5768929058498,114,24.36040496826172,-589.5929607074013,0.2839275985483052,4,-394519.69473229506,3.4028234663852886E38,,,,,0,,3
+507599520,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,104,0.0,227,5768927889882,73,20.395158767700195,628.8075535334165,4.201419237209672,4,402940.1957870753,3.4028234663852886E38,,,,,0,,3
+507599521,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,105,0.0,227,5768936161659,33,35.72126770019531,-40.213656134375384,0.07923174296267421,4,-57157.699980825586,3.4028234663852886E38,,,,,0,,3
+507599521,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,106,0.0,227,5768928056109,48,31.87290382385254,-703.4824202696332,0.12032208841332248,4,-475919.4259421553,3.4028234663852886E38,,,,,0,,3
+507599522,680430000000,,,-1157840705570299532,0.0,14.257773804651197,,,0,26,0.0,4104,254185922423529,1000000000,27.784574508666992,261.8095532721312,2.99792458E8,4,161910.63947328212,3.4028234663852886E38,,,,,0,,6
+507600494,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,10,0.0,47,254186924019891,61,23.654014587402344,-563.0776275116114,0.3069389482051723,4,-380771.4504838014,3.4028234663852886E38,,,,,0,,1
+507600495,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,13,0.0,47,254186923411758,22,32.51403045654297,185.51735468530933,0.11102837832667889,4,100337.78982237724,3.4028234663852886E38,,,,,0,,1
+507600495,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,15,0.0,47,254186927652735,33,29.04697608947754,-53.312617773471885,0.16595749918789715,4,-61621.381719191355,3.4028234663852886E38,,,,,0,,1
+507600496,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,16,0.0,47,254186924086885,67,21.438940048217773,138.271043526183,4.2007351916564915,4,68480.10190038363,3.4028234663852886E38,,,,,0,,1
+507600496,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,18,0.0,47,254186930989847,71,20.68025779724121,-191.9484245302832,4.20197680489685,4,-141159.38913479695,3.4028234663852886E38,,,,,0,,1
+507600497,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,20,0.0,47,254186930230444,14,35.9866943359375,433.585423847976,0.07586782280987975,4,279912.5153136677,3.4028234663852886E38,,,,,0,,1
+507600498,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,21,0.0,47,254186930186869,29,30.07804298400879,24.66127951325204,0.14799156794959256,4,9567.1177803968,3.4028234663852886E38,,,,,0,,1
+507600498,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,26,0.0,47,254186922741471,40,27.353403091430664,429.6666570794398,0.20050615978152297,4,268804.4516247179,3.4028234663852886E38,,,,,0,,1
+507600499,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,27,0.0,47,254186922157387,100,15.173248291015625,-585.85861411111,4.200387976630665,4,-397488.91320528276,3.4028234663852886E38,,,,,0,,1
+507600499,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,29,0.0,47,254186924819627,72,20.499549865722656,662.1061135562022,4.200866994906326,4,434500.48566967703,3.4028234663852886E38,,,,,0,,1
+507600500,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,93,0.0,99,9921352186,166,13.4630126953125,70.47767612003858,4.200243126190443,4,16949.860177728013,3.4028234663852886E38,,,,,1,,3
+507600500,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,94,0.0,227,5769919985231,108,13.570327758789062,539.8381977894244,4.2035949227741085,4,339386.66862732207,3.4028234663852886E38,,,,,0,,3
+507600501,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,96,0.0,227,5769928932600,56,30.4482479095459,667.2719233264515,0.14166735845479672,4,428352.1997410538,3.4028234663852886E38,,,,,0,,3
+507600501,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,97,0.0,227,5769936123807,44,32.52054977416992,57.58531807207629,0.11323212200717869,4,16200.517954854842,3.4028234663852886E38,,,,,0,,3
+507600501,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,103,0.0,227,5769929060361,114,24.372344970703125,-589.4556765725274,0.2835401103072519,4,-395109.1983240681,3.4028234663852886E38,,,,,0,,3
+507600502,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,104,0.0,227,5769927887892,68,21.36526870727539,628.2927039451829,4.20141897094048,4,403567.79570674733,3.4028234663852886E38,,,,,0,,3
+507600502,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,105,0.0,227,5769936161885,33,35.64158248901367,-39.92907614302405,0.07993523448775258,4,-57197.74946829156,3.4028234663852886E38,,,,,0,,3
+507600503,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,106,0.0,227,5769928058419,42,32.8985595703125,-703.1741785328409,0.10708270991574581,4,-476622.74302021344,3.4028234663852886E38,,,,,0,,3
+507600503,681430000000,,,-1157840705570299442,0.0,14.303181041655082,,,0,26,0.0,5162,254186922422651,20,28.389123916625977,261.8723501982745,0.19939185649839097,4,162172.61043966666,3.4028234663852886E38,,,,,0,,6
+507601449,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,10,0.0,47,254187924021752,64,22.11920738220215,-562.9193485835194,4.200723475812062,4,-381334.5197851362,3.4028234663852886E38,,,,,0,,1
+507601449,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,13,0.0,47,254187923411150,21,32.86436080932617,185.62255018736698,0.10666350235724503,4,100523.33730065299,3.4028234663852886E38,,,,,0,,1
+507601449,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,15,0.0,47,254187927652914,33,28.900981903076172,-53.26341548717414,0.16874721814995197,4,-61674.551921351704,3.4028234663852886E38,,,,,0,,1
+507601450,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,16,0.0,47,254187924086404,55,24.56458282470703,138.5525049727625,0.27647467395038283,4,68618.75310316267,3.4028234663852886E38,,,,,0,,1
+507601450,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,18,0.0,47,254187930990476,65,23.151199340820312,-191.67924128866605,0.32644233439751,4,-141351.01236012296,3.4028234663852886E38,,,,,0,,1
+507601451,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,20,0.0,47,254187930228988,15,35.703853607177734,433.86800149500664,0.07831781556712175,4,280346.4206038109,3.4028234663852886E38,,,,,0,,1
+507601451,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,21,0.0,47,254187930186770,29,30.122522354125977,24.892701523195456,0.14724501570368764,4,9591.960883564898,3.4028234663852886E38,,,,,0,,1
+507601451,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,26,0.0,47,254187922740110,33,28.912246704101562,429.75919094889923,0.16764659444653762,4,269234.12249599386,3.4028234663852886E38,,,,,0,,1
+507601452,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,27,0.0,47,254187922159367,166,16.594858169555664,-585.7594341626286,4.2003885091690485,4,-398074.7527469073,3.4028234663852886E38,,,,,1,,1
+507601452,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,29,0.0,47,254187924817426,81,18.725587844848633,662.1821855991611,4.200866462367943,4,435162.7690617653,3.4028234663852886E38,,,,,0,,1
+507601452,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,93,0.0,99,10921351868,166,14.557527542114258,70.63247011695105,4.200243126190443,4,17020.39793980231,3.4028234663852886E38,,,,,1,,3
+507601453,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,94,0.0,226,5770919983452,1000000000,8.238544464111328,539.8543528738162,2.99792458E8,4,339926.50593036925,3.4028234663852886E38,,,,,0,,3
+507601453,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,96,0.0,227,5770928930364,54,30.829042434692383,667.3539938817585,0.13565926041588505,4,429019.568397966,3.4028234663852886E38,,,,,0,,3
+507601453,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,97,0.0,227,5770936123557,44,32.58454132080078,57.51408999825068,0.11242220601458891,4,16258.009688239868,3.4028234663852886E38,,,,,0,,3
+507601454,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,103,0.0,227,5770929062322,119,23.94839096069336,-589.4187311896567,0.2976417932608626,4,-395698.6202762128,3.4028234663852886E38,,,,,0,,3
+507601454,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,104,0.0,227,5770927885786,71,20.739654541015625,628.4235124133174,4.201418438402097,4,404196.1895280606,3.4028234663852886E38,,,,,0,,3
+507601454,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,105,0.0,227,5770936161923,35,34.63180923461914,-39.71185586668298,0.08943139236912273,4,-57237.57368979406,3.4028234663852886E38,,,,,0,,3
+507601455,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,106,0.0,227,5770928060813,44,32.57324981689453,-703.4466336902842,0.11111440823829738,4,-477326.1401174594,3.4028234663852886E38,,,,,0,,3
+507601455,682430000000,,,-1157840705570299352,0.0,13.978723206555522,,,0,26,0.0,5162,254187922421773,21,27.693885803222656,261.96655410810354,0.21597127413064188,4,162434.55246852603,3.4028234663852886E38,,,,,0,,6
+507602523,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,10,0.0,47,254188924023621,55,24.552722930908203,-562.7973333891678,0.2768401783413059,4,-381897.4768258232,3.4028234663852886E38,,,,,0,,1
+507602524,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,13,0.0,47,254188923410515,20,33.29879379272461,185.73263652193566,0.10148968394195312,4,100709.02604406374,3.4028234663852886E38,,,,,0,,1
+507602525,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,15,0.0,47,254188927653076,32,29.189115524291992,-53.126706493754085,0.16328618680697504,4,-61727.59561616585,3.4028234663852886E38,,,,,0,,1
+507602525,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,16,0.0,47,254188924085947,63,23.412731170654297,138.97209409501482,0.3155763213763847,4,68757.61240858687,3.4028234663852886E38,,,,,0,,1
+507602526,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,18,0.0,47,254188930991090,72,20.42978286743164,-191.08600205043,4.201977071166041,4,-141542.31120084293,3.4028234663852886E38,,,,,0,,1
+507602527,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,20,0.0,47,254188930227533,14,36.07325744628906,434.1786971686686,0.075133177789386,4,280780.5156007916,3.4028234663852886E38,,,,,0,,1
+507602528,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,21,0.0,47,254188930186670,28,30.45479393005371,25.067273995658823,0.1417873959347279,4,9616.962675359307,3.4028234663852886E38,,,,,0,,1
+507602529,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,26,0.0,47,254188922738676,33,28.956899642944336,429.7145088483978,0.16678922429146015,4,269663.8462522573,3.4028234663852886E38,,,,,0,,1
+507602530,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,27,0.0,47,254188922161418,166,20.482086181640625,-585.5282187775779,4.20038877543824,4,-398660.18098172586,3.4028234663852886E38,,,,,1,,1
+507602531,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,29,0.0,47,254188924815234,88,17.438261032104492,662.2374673436411,4.200866196098751,4,435825.1177827237,3.4028234663852886E38,,,,,0,,1
+507602532,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,93,0.0,99,11921351520,166,14.470280647277832,70.5777975963814,4.200243126190443,4,17090.869915401116,3.4028234663852886E38,,,,,1,,3
+507602532,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,94,0.0,227,5771919981583,101,14.966974258422852,539.9120544727093,4.203594123966534,4,340466.36745072855,3.4028234663852886E38,,,,,0,,3
+507602533,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,96,0.0,227,5771928928178,52,31.102495193481445,667.4821439182842,0.13150431274127883,4,429687.05612654623,3.4028234663852886E38,,,,,0,,3
+507602534,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,97,0.0,227,5771936123431,43,32.807437896728516,57.53295037762899,0.109647439731824,4,16315.590525406486,3.4028234663852886E38,,,,,0,,3
+507602534,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,103,0.0,227,5771929064276,63,22.211830139160156,-589.1667936710401,4.201630388678598,4,-396287.8788709962,3.4028234663852886E38,,,,,0,,3
+507602535,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,104,0.0,227,5771927883602,66,21.728721618652344,628.678312858282,4.201418172132906,4,404824.79722950805,3.4028234663852886E38,,,,,0,,3
+507602536,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,105,0.0,227,5771936162087,33,34.9925422668457,-39.80520771509896,0.08591158824648004,4,-57277.337954964074,3.4028234663852886E38,,,,,0,,3
+507602537,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,106,0.0,227,5771928063096,47,31.910625457763672,-703.6458797311166,0.11980823047812567,4,-478029.67156551895,3.4028234663852886E38,,,,,0,,3
+507602538,683430000000,,,-1157840705570299262,0.0,13.740486315252605,,,0,26,0.0,5162,254188922420911,22,27.3380126953125,262.0194671218552,0.22498530171517495,4,162696.62205076398,3.4028234663852886E38,,,,,0,,6
+507603498,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,10,0.0,47,254189924025483,63,23.396381378173828,-562.8196233157337,0.3161586520983799,4,-382460.40528837475,3.4028234663852886E38,,,,,0,,1
+507603498,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,13,0.0,47,254189923409869,21,32.81986618041992,185.86318937164629,0.1072079230030884,4,100894.84116020508,3.4028234663852886E38,,,,,0,,1
+507603499,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,15,0.0,47,254189927653325,28,30.29773712158203,-52.926344252470614,0.14388538082069524,4,-61780.50020893901,3.4028234663852886E38,,,,,0,,1
+507603499,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,16,0.0,47,254189924085538,59,22.98431396484375,139.28758687443235,4.2007349253873,4,68896.781103357,3.4028234663852886E38,,,,,0,,1
+507603499,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,18,0.0,47,254189930991710,80,18.90225601196289,-190.44777396958386,4.201977071166041,4,-141732.84139388966,3.4028234663852886E38,,,,,0,,1
+507603500,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,20,0.0,47,254189930226079,15,35.90678787231445,434.0070920000762,0.07655117772734454,4,281214.56371863,3.4028234663852886E38,,,,,0,,1
+507603500,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,21,0.0,47,254189930186570,27,30.739870071411133,25.17642732298019,0.13726854148434808,4,9642.071287975134,3.4028234663852886E38,,,,,0,,1
+507603500,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,26,0.0,47,254189922737207,36,28.336288452148438,429.7787542789433,0.1791057387337418,4,270093.5865413831,3.4028234663852886E38,,,,,0,,1
+507603500,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,27,0.0,47,254189922163337,166,19.612192153930664,-585.392366105878,4.200389041707432,4,-399245.3515236611,3.4028234663852886E38,,,,,1,,1
+507603501,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,29,0.0,47,254189924813020,80,18.969030380249023,662.153556335682,4.200865663560368,4,436487.43451225717,3.4028234663852886E38,,,,,0,,1
+507603501,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,93,0.0,99,12921351300,101,14.90707778930664,70.48358516593822,4.200243126190443,4,17161.38361337282,3.4028234663852886E38,,,,,0,,3
+507603501,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,94,0.0,226,5772919979845,1000000000,13.919139862060547,539.9000915304698,2.99792458E8,4,341005.90098573396,3.4028234663852886E38,,,,,1,,3
+507603502,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,96,0.0,227,5772928925932,51,31.31940460205078,667.6361284568543,0.12830017906617175,4,430354.7171645906,3.4028234663852886E38,,,,,0,,3
+507603502,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,97,0.0,227,5772936123145,42,33.02274703979492,57.91466537007034,0.10703380791452888,4,16373.400360499432,3.4028234663852886E38,,,,,0,,3
+507603502,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,103,0.0,227,5772929066261,67,21.568462371826172,-588.9405543246417,4.201630921216982,4,-396876.96724091226,3.4028234663852886E38,,,,,0,,3
+507603503,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,104,0.0,227,5772927881581,133,23.02159881591797,628.9076877906805,0.33076075471392463,4,405453.55938075273,3.4028234663852886E38,,,,,0,,3
+507603503,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,105,0.0,227,5772936162184,33,35.18861770629883,-39.77360049698112,0.08405885392778645,4,-57317.095460277065,3.4028234663852886E38,,,,,0,,3
+507603503,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,106,0.0,227,5772928065534,54,30.853002548217773,-703.3961234897174,0.13513442719744762,4,-478733.06431408756,3.4028234663852886E38,,,,,0,,3
+507603504,684430000000,,,-1157840705570299172,0.0,13.998792861750808,,,0,26,0.0,5162,254189922420022,25,26.419673919677734,261.90653490216687,0.2500267376141554,4,162958.6897836017,3.4028234663852886E38,,,,,0,,6
+507604421,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,10,0.0,47,254190924027358,32,29.214658737182617,-563.033081740936,0.16215857006426382,4,-383023.4671519845,3.4028234663852886E38,,,,,0,,1
+507604421,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,13,0.0,47,254190923409267,21,32.84056091308594,185.8514820478307,0.10695416014259618,4,101080.72451211976,3.4028234663852886E38,,,,,0,,1
+507604422,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,15,0.0,47,254190927653476,31,29.40313148498535,-52.72153851091798,0.15934566904071668,4,-61833.24435750846,3.4028234663852886E38,,,,,0,,1
+507604422,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,16,0.0,47,254190924085078,60,23.899486541748047,139.68102623191754,0.2984178348197355,4,69036.29211920212,3.4028234663852886E38,,,,,0,,1
+507604422,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,18,0.0,47,254190930992346,71,20.631702423095703,-190.21320146256562,4.201977337435233,4,-141923.4778499833,3.4028234663852886E38,,,,,0,,1
+507604423,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,20,0.0,47,254190930224642,14,36.27735900878906,434.124812804906,0.07343050280197472,4,281648.6884051126,3.4028234663852886E38,,,,,0,,1
+507604423,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,21,0.0,47,254190930186533,27,30.73306655883789,25.107210114089426,0.13737466639901896,4,9667.11234401699,3.4028234663852886E38,,,,,0,,1
+507604423,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,26,0.0,47,254190922735717,42,27.01555824279785,429.58185992761105,0.2084380194459834,4,270523.2923008533,3.4028234663852886E38,,,,,0,,1
+507604423,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,27,0.0,47,254190922165336,58,24.116456985473633,-585.3141127857016,0.29072857967245747,4,-399830.26226441603,3.4028234663852886E38,,,,,0,,1
+507604424,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,29,0.0,47,254190924810802,73,20.229496002197266,662.3776144048629,4.200865397291176,4,437149.86911643273,3.4028234663852886E38,,,,,0,,1
+507604424,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,93,0.0,99,13921351211,103,14.427650451660156,70.55017376536966,4.200243126190443,4,17231.965899499897,3.4028234663852886E38,,,,,0,,3
+507604424,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,94,0.0,226,5773919978076,1000000000,14.629091262817383,539.881721086404,2.99792458E8,4,341545.0631945848,3.4028234663852886E38,,,,,1,,3
+507604424,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,96,0.0,227,5773928923677,48,31.747943878173828,667.7340132719878,0.12220066748542424,4,431022.3813805429,3.4028234663852886E38,,,,,0,,3
+507604425,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,97,0.0,227,5773936123052,41,33.170135498046875,58.15002603389567,0.10528169006660526,4,16431.384400863695,3.4028234663852886E38,,,,,0,,3
+507604425,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,103,0.0,227,5773929068236,116,24.159454345703125,-588.6477860231107,0.2905365330180272,4,-397465.8466690851,3.4028234663852886E38,,,,,0,,3
+507604425,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,104,0.0,227,5773927879489,75,19.882946014404297,629.1707361901235,4.201417373325331,4,406082.4471049878,3.4028234663852886E38,,,,,0,,3
+507604425,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,105,0.0,227,5773936162393,34,34.85587692260742,-39.61125723594884,0.08722798152511241,4,-57356.66788290813,3.4028234663852886E38,,,,,0,,3
+507604426,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,106,0.0,227,5773928067881,46,32.14878845214844,-703.61663698342,0.11660782457170077,4,-479436.47711799404,3.4028234663852886E38,,,,,0,,3
+507604426,685430000000,,,-1157840705570299084,0.0,14.22564136097905,,,0,26,0.0,5162,254190922419137,22,27.411334991455078,261.9105395908083,0.22309738657954326,4,163220.68711269533,3.4028234663852886E38,,,,,0,,6
+507605373,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,10,0.0,47,254191924029270,42,26.83554458618164,-563.3514118848591,0.2130253050786004,4,-383586.6534461723,3.4028234663852886E38,,,,,0,,1
+507605374,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,13,0.0,47,254191923408674,23,32.154273986816406,185.92608854515913,0.11569705912279837,4,101266.62353216555,3.4028234663852886E38,,,,,0,,1
+507605374,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,15,0.0,47,254191927653612,36,28.270864486694336,-52.64885767238309,0.1813405027750612,4,-61885.90370686556,3.4028234663852886E38,,,,,0,,1
+507605374,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,16,0.0,47,254191924084584,42,26.9461669921875,139.7310251956365,0.21034858410472423,4,69175.83584929787,3.4028234663852886E38,,,,,0,,1
+507605374,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,18,0.0,47,254191930992955,68,21.23492431640625,-190.5113377509989,4.201977337435233,4,-142114.24052476068,3.4028234663852886E38,,,,,0,,1
+507605375,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,20,0.0,47,254191930223179,20,33.18215560913086,433.9892327928583,0.10407886059818366,4,282082.7284682001,3.4028234663852886E38,,,,,0,,1
+507605375,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,21,0.0,47,254191930186465,38,27.725238800048828,25.134101172285924,0.19346357264965675,4,9692.175680563172,3.4028234663852886E38,,,,,0,,1
+507605375,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,26,0.0,47,254191922734218,42,26.836389541625977,429.5625010923061,0.21277173359908963,4,270952.96106390306,3.4028234663852886E38,,,,,0,,1
+507605375,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,27,0.0,47,254191922167231,55,24.604150772094727,-585.0881460989553,0.27487624335147687,4,-400414.7236660243,3.4028234663852886E38,,,,,0,,1
+507605376,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,29,0.0,47,254191924808600,83,18.46140480041504,662.4081522859074,4.200864864752793,4,437812.32800683554,3.4028234663852886E38,,,,,0,,1
+507605376,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,93,0.0,99,14921351001,104,14.30660343170166,70.6274599958422,4.200243126190443,4,17302.37000847968,3.4028234663852886E38,,,,,0,,3
+507605376,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,94,0.0,227,5774919976214,167,16.141918182373047,539.9688017628198,4.203593325158959,4,342085.0386086131,3.4028234663852886E38,,,,,1,,3
+507605376,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,96,0.0,227,5774928921440,50,31.378217697143555,667.8619588137744,0.12744441484715602,4,431690.16633931006,3.4028234663852886E38,,,,,0,,3
+507605377,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,97,0.0,227,5774936122825,51,31.356515884399414,58.115764644476116,0.12905454464866722,4,16489.4384916642,3.4028234663852886E38,,,,,0,,3
+507605377,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,103,0.0,227,5774929070275,55,30.618865966796875,-589.047096083732,0.1389677383304443,4,-398054.99357676035,3.4028234663852886E38,,,,,0,,3
+507605377,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,104,0.0,227,5774927877254,86,17.723167419433594,628.6252805559325,4.201416840786948,4,406710.9519325297,3.4028234663852886E38,,,,,0,,3
+507605378,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,105,0.0,227,5774936162506,45,32.30325698852539,-39.471046270121064,0.11603405606839745,4,-57396.12339627838,3.4028234663852886E38,,,,,0,,3
+507605378,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,106,0.0,227,5774928070223,57,30.257909774780273,-703.7562387253374,0.14461532452577508,4,-480140.0206706022,3.4028234663852886E38,,,,,0,,3
+507605378,686430000000,,,-1157840705570298995,0.0,14.051717073746998,,,0,26,0.0,5162,254191922418272,36,23.165605545043945,261.28308156622336,0.36345708039264424,4,163482.5108031557,3.4028234663852886E38,,,,,0,,6
+507606505,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,10,0.0,47,254192924031100,26,31.028650283813477,-563.1260586823303,0.1317325054384667,4,-384149.671789712,3.4028234663852886E38,,,,,0,,1
+507606506,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,13,0.0,47,254192923408057,14,36.1513557434082,185.73147771841388,0.07325047986572691,4,101452.44741486029,3.4028234663852886E38,,,,,0,,1
+507606507,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,15,0.0,47,254192927653783,19,33.843021392822266,-52.30368333364126,0.09612632346681427,4,-61938.25352057316,3.4028234663852886E38,,,,,0,,1
+507606508,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,16,0.0,47,254192924084083,31,29.607765197753906,139.69823787246156,0.15502545140725887,4,69315.57679502049,3.4028234663852886E38,,,,,0,,1
+507606509,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,18,0.0,47,254192930993636,14,35.972442626953125,-191.05692971501605,0.07612664478501208,4,-142305.47440205168,3.4028234663852886E38,,,,,0,,1
+507606510,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,20,0.0,47,254192930221732,12,37.84073257446289,433.9338488010087,0.06163734461620843,4,282516.71392789646,3.4028234663852886E38,,,,,0,,1
+507606511,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,21,0.0,47,254192930186336,19,33.91108322143555,24.795257649843208,0.09584232241125273,4,9716.875806348025,3.4028234663852886E38,,,,,0,,1
+507606512,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,26,0.0,47,254192922732822,45,26.417570114135742,429.9006331434689,0.22325808003666447,4,271382.4904266193,3.4028234663852886E38,,,,,0,,1
+507606512,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,27,0.0,47,254192922169227,38,27.72986602783203,-585.081670432216,0.19191942768218506,4,-400999.80860003,3.4028234663852886E38,,,,,0,,1
+507606513,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,29,0.0,47,254192924806304,39,27.54901123046875,662.6015361442178,0.19642355411790535,4,438474.8396142964,3.4028234663852886E38,,,,,0,,1
+507606514,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,93,0.0,99,15921350619,84,27.006908416748047,71.24390086635614,0.20839608204830884,4,17372.77967351527,3.4028234663852886E38,,,,,0,,3
+507606514,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,94,0.0,227,5775919974551,68,21.231367111206055,539.8427307561419,4.203593058889767,4,342624.60331638984,3.4028234663852886E38,,,,,0,,3
+507606515,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,96,0.0,227,5775928919322,33,38.05232620239258,667.6562371062028,0.059963946758503084,4,432357.6286516646,3.4028234663852886E38,,,,,0,,3
+507606516,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,97,0.0,227,5775936122585,33,35.32991027832031,57.91723859553781,0.08274230255182158,4,16547.437478705964,3.4028234663852886E38,,,,,0,,3
+507606517,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,103,0.0,227,5775929072188,33,36.02613067626953,-589.3501572871328,0.07532411776248876,4,-398644.3350680246,3.4028234663852886E38,,,,,0,,3
+507606518,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,104,0.0,227,5775927875204,33,36.143802642822266,628.9858729459438,0.07411719440524656,4,407339.84514776716,3.4028234663852886E38,,,,,0,,3
+507606518,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,105,0.0,227,5775936162607,33,37.501380920410156,-39.210498670925375,0.06508850537335187,4,-57435.346684398675,3.4028234663852886E38,,,,,0,,3
+507606519,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,106,0.0,227,5775928072505,38,33.72666931152344,-703.1252361252741,0.09747937036385068,4,-480842.9824961682,3.4028234663852886E38,,,,,0,,3
+507606520,687430000000,,,-1157840705570298901,0.0,13.420159158116443,,,0,26,0.0,5162,254192922417388,8,35.37986373901367,262.2259386434704,0.08940003917181366,4,163744.68404895865,3.4028234663852886E38,,,,,0,,6
+507607479,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,10,0.0,47,254193924033029,17,34.59599304199219,-563.3588418603811,0.08760723206305104,4,-384712.71233545535,3.4028234663852886E38,,,,,0,,1
+507607479,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,13,0.0,47,254193923407442,11,38.288570404052734,186.25024678914758,0.05740658094975465,4,101638.82780519918,3.4028234663852886E38,,,,,0,,1
+507607479,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,15,0.0,47,254193927654000,11,38.28279113769531,-51.782528490950966,0.05820824259740531,4,-61989.99264709393,3.4028234663852886E38,,,,,0,,1
+507607480,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,16,0.0,47,254193924083741,21,32.72801971435547,139.239257951083,0.10846226723916935,4,69455.23322696316,3.4028234663852886E38,,,,,0,,1
+507607480,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,18,0.0,47,254193930994332,17,34.69117736816406,-191.63713241363212,0.08791246808664144,4,-142497.02253772388,3.4028234663852886E38,,,,,0,,1
+507607480,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,20,0.0,47,254193930220329,11,38.16864013671875,434.1687450913639,0.059421647945280154,4,282950.42612884426,3.4028234663852886E38,,,,,0,,1
+507607481,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,21,0.0,47,254193930186289,13,36.82419967651367,24.696282196100967,0.06905534634547203,4,9741.695740296747,3.4028234663852886E38,,,,,0,,1
+507607481,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,26,0.0,47,254193922731538,17,34.66394805908203,430.08754133504,0.08669603392671232,4,271812.12036305247,3.4028234663852886E38,,,,,0,,1
+507607481,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,27,0.0,47,254193922171236,19,33.59480285644531,-585.8104896824998,0.09788687871974622,4,-401585.3480947438,3.4028234663852886E38,,,,,0,,1
+507607482,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,29,0.0,47,254193924804073,39,27.476999282836914,662.7714712724405,0.1980512077605877,4,439137.9312545941,3.4028234663852886E38,,,,,0,,1
+507607482,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,93,0.0,99,16921350390,131,23.134437561035156,70.75699037185714,0.32533512053160396,4,17443.339683600618,3.4028234663852886E38,,,,,0,,3
+507607482,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,94,0.0,227,5776919972650,54,30.75472640991211,539.3277789205388,0.1387973842942159,4,343163.66789071367,3.4028234663852886E38,,,,,0,,3
+507607482,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,96,0.0,227,5776928917060,33,36.17577362060547,668.1573173820011,0.07403749670784043,4,433025.47791206633,3.4028234663852886E38,,,,,0,,3
+507607483,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,97,0.0,227,5776936122397,33,37.02518081665039,57.95275251523458,0.06858549771509678,4,16605.5155523266,3.4028234663852886E38,,,,,0,,3
+507607483,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,103,0.0,227,5776929074192,33,38.764095306396484,-589.6835518768389,0.05540019266569235,4,-399234.15610944957,3.4028234663852886E38,,,,,0,,3
+507607483,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,104,0.0,227,5776927873150,57,30.333797454833984,629.1930942816025,0.14333451978878042,4,407969.19399307936,3.4028234663852886E38,,,,,0,,3
+507607484,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,105,0.0,227,5776936162665,33,35.20332336425781,-39.04454266950168,0.08392168368955927,4,-57474.40174651795,3.4028234663852886E38,,,,,0,,3
+507607484,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,106,0.0,227,5776928074684,51,31.342304229736328,-703.2263246913208,0.12781346394669207,4,-481545.78056739975,3.4028234663852886E38,,,,,0,,3
+507607484,688430000000,,,-1157840705570298824,0.0,11.377086391592504,,,0,26,0.0,5162,254193922416529,11,33.11261749267578,262.8195357474999,0.11593479590632211,4,164007.25922415702,3.4028234663852886E38,,,,,0,,6
+507608492,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,10,0.0,47,254194924034859,7,42.486366271972656,-563.2485851135298,0.035753341465020155,4,-385275.8581201377,3.4028234663852886E38,,,,,0,,1
+507608497,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,13,0.0,47,254194923406736,10,39.45443344116211,186.42802088237056,0.05027278413840239,4,101825.6590202014,3.4028234663852886E38,,,,,0,,1
+507608498,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,15,0.0,47,254194927654116,19,33.746849060058594,-51.702605130404976,0.09718127368295965,4,-62041.24447085788,3.4028234663852886E38,,,,,0,,1
+507608499,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,16,0.0,47,254194924083279,23,32.081092834472656,138.99261173384156,0.11679211613592616,4,69594.84684450454,3.4028234663852886E38,,,,,0,,1
+507608500,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,18,0.0,47,254194930994894,26,31.105884552001953,-191.01983096109097,0.1318253917817685,4,-142687.90890080523,3.4028234663852886E38,,,,,0,,1
+507608501,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,20,0.0,47,254194930218846,10,38.802734375,434.5297464708535,0.055367433234215224,4,283384.38847595465,3.4028234663852886E38,,,,,0,,1
+507608502,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,21,0.0,47,254194930186131,17,34.764244079589844,24.54568247149433,0.08704724299041222,4,9766.466136026633,3.4028234663852886E38,,,,,0,,1
+507608503,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,26,0.0,47,254194922730005,20,33.06905746459961,430.1254751091499,0.10407094741064626,4,272242.19136960316,3.4028234663852886E38,,,,,0,,1
+507608503,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,27,0.0,47,254194922173200,17,34.84029006958008,-586.0063956425929,0.08486313666279177,4,-402171.85947328137,3.4028234663852886E38,,,,,0,,1
+507608504,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,29,0.0,47,254194924801851,42,26.990598678588867,662.8339103327903,0.209408088036399,4,439801.40240093344,3.4028234663852886E38,,,,,0,,1
+507608505,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,93,0.0,99,17921350067,118,24.020687103271484,72.10154754198908,0.29380089345590576,4,17514.4456130935,3.4028234663852886E38,,,,,0,,3
+507608506,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,94,0.0,227,5777919970788,52,31.152482986450195,539.355044885757,0.13274516877862358,4,343702.31429263146,3.4028234663852886E38,,,,,0,,3
+507608507,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,96,0.0,227,5777928914808,33,41.155059814453125,668.1064663568691,0.04243318258836987,4,433693.5594001694,3.4028234663852886E38,,,,,0,,3
+507608507,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,97,0.0,227,5777936122250,47,31.942890167236328,58.70049604950265,0.12081900497120474,4,16663.959369360968,3.4028234663852886E38,,,,,0,,3
+507608508,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,103,0.0,227,5777929076106,33,35.60505294799805,-589.6704642135342,0.0789853108258628,4,-399823.67153029004,3.4028234663852886E38,,,,,0,,3
+507608509,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,104,0.0,227,5777927871008,49,31.56136703491211,629.0675345117725,0.12462979139477581,4,408598.36027051357,3.4028234663852886E38,,,,,0,,3
+507608510,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,105,0.0,227,5777936162926,50,31.471458435058594,-38.780343987150985,0.12740330954070517,4,-57513.26358974073,3.4028234663852886E38,,,,,0,,3
+507608510,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,106,0.0,227,5777928077152,33,37.744964599609375,-703.1088765461432,0.061914568288752914,4,-482248.8625736878,3.4028234663852886E38,,,,,0,,3
+507608511,689430000000,,,-1157840705570298737,0.0,11.032033222026614,,,0,26,0.0,5162,254194922415633,6,38.63739013671875,262.33258264993026,0.0615771136929808,4,164269.69882475364,3.4028234663852886E38,,,,,0,,6
+507609504,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,10,0.0,47,254195924036725,166,32.7493896484375,-562.7356441428615,0.10818911665316489,4,-385838.78915999376,3.4028234663852886E38,,,,,1,,1
+507609504,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,13,0.0,47,254195923406143,7,42.26067352294922,186.7252028620212,0.03656232967589551,4,102012.29866844254,3.4028234663852886E38,,,,,0,,1
+507609505,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,15,0.0,47,254195927654349,9,40.21718978881836,-51.781659388309635,0.046861900756942215,4,-62092.258669167975,3.4028234663852886E38,,,,,0,,1
+507609506,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,16,0.0,47,254195924082691,27,30.855167388916016,139.21643974644098,0.13438468804215592,4,69734.48815710307,3.4028234663852886E38,,,,,0,,1
+507609506,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,18,0.0,47,254195930995520,21,32.81378173828125,-190.9945588195793,0.10864705805812896,4,-142879.22934562067,3.4028234663852886E38,,,,,0,,1
+507609507,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,20,0.0,47,254195930217356,10,39.17365264892578,434.5507412640716,0.05312939491393057,4,283818.83940881904,3.4028234663852886E38,,,,,0,,1
+507609507,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,21,0.0,47,254195930186093,14,36.38425827026367,24.896878754273033,0.07254786203643343,4,9791.355474124664,3.4028234663852886E38,,,,,0,,1
+507609508,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,26,0.0,47,254195922728495,19,33.685874938964844,430.29523982509,0.09697018878133107,4,272672.47395990486,3.4028234663852886E38,,,,,0,,1
+507609509,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,27,0.0,47,254195922175060,14,36.39474105834961,-585.5360577425781,0.07102157374662238,4,-402757.59413677966,3.4028234663852886E38,,,,,0,,1
+507609509,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,29,0.0,47,254195924799731,15,35.74253463745117,662.8934183018791,0.07700138900484044,4,440464.6180480249,3.4028234663852886E38,,,,,0,,1
+507609510,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,93,0.0,99,18921349705,101,25.43051528930664,73.31205415030973,0.2498186648827566,4,17587.621476242337,3.4028234663852886E38,,,,,0,,3
+507609510,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,94,0.0,227,5778919968975,83,27.08852195739746,539.4034760564759,0.20979840538761285,4,344241.9330019631,3.4028234663852886E38,,,,,0,,3
+507609511,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,96,0.0,227,5778928912548,33,39.83822250366211,668.1117150551736,0.04911667659219163,4,434361.7030060731,3.4028234663852886E38,,,,,0,,3
+507609511,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,97,0.0,227,5778936122022,33,36.6680908203125,58.75841918436316,0.07134214521146559,4,16722.541695632586,3.4028234663852886E38,,,,,0,,3
+507609512,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,103,0.0,227,5778929078138,33,36.57615280151367,-589.3420456624804,0.07080339942776787,4,-400413.0158346147,3.4028234663852886E38,,,,,0,,3
+507609513,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,104,0.0,227,5778927868957,34,34.780174255371094,628.7457961221971,0.08647429825742037,4,409227.19744603266,3.4028234663852886E38,,,,,0,,3
+507609513,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,105,0.0,227,5778936162946,33,35.750423431396484,-38.63306517190179,0.07897622438969998,4,-57552.08207355572,3.4028234663852886E38,,,,,0,,3
+507609514,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,106,0.0,227,5778928079508,41,33.1356315612793,-702.9373054600073,0.10424234156090428,4,-482951.7793960453,3.4028234663852886E38,,,,,0,,3
+507609514,690430000000,,,-1157840705570298644,0.0,10.4406090498352,,,0,26,0.0,5162,254195922414743,7,37.40095901489258,262.34176787196316,0.07093050136218826,4,164532.06906400534,3.4028234663852886E38,,,,,0,,6
+507610499,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,10,0.0,47,254196924038649,166,31.244407653808594,-562.2622729042162,0.12851972633554537,4,-386400.96085389925,3.4028234663852886E38,,,,,1,,1
+507610499,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,13,0.0,47,254196923405525,9,39.77458953857422,186.76448289316374,0.048475450453382835,4,102198.93734432418,3.4028234663852886E38,,,,,0,,1
+507610500,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,15,0.0,47,254196927654492,10,38.92585754394531,-51.8416913751675,0.054152738144943646,4,-62144.137902148155,3.4028234663852886E38,,,,,0,,1
+507610500,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,16,0.0,47,254196924082248,39,27.46938133239746,139.52836238853774,0.19809439329509781,4,69874.07861924925,3.4028234663852886E38,,,,,0,,1
+507610501,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,18,0.0,47,254196930996260,16,35.05781555175781,-191.09392622157156,0.08436096960928796,4,-143070.63469719922,3.4028234663852886E38,,,,,0,,1
+507610501,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,20,0.0,47,254196930215968,6,43.00018310546875,434.56863455374605,0.03485319974081637,4,284253.3921303151,3.4028234663852886E38,,,,,0,,1
+507610501,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,21,0.0,47,254196930186032,9,40.041603088378906,25.052171207112153,0.048246142753955196,4,9816.448884049709,3.4028234663852886E38,,,,,0,,1
+507610502,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,26,0.0,47,254196922727121,25,31.364572525024414,430.4279228283333,0.12652804110340587,4,273102.8300108101,3.4028234663852886E38,,,,,0,,1
+507610502,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,27,0.0,47,254196922176872,17,34.49013137817383,-585.150312499653,0.0883387317787192,4,-403342.8111759507,3.4028234663852886E38,,,,,0,,1
+507610502,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,29,0.0,47,254196924797525,22,32.412803649902344,662.7337760755263,0.11257195747211846,4,441127.44766490615,3.4028234663852886E38,,,,,0,,1
+507610503,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,93,0.0,99,19921349482,120,23.90757942199707,74.334459681081,0.2976485165579501,4,17662.289022796434,3.4028234663852886E38,,,,,0,,3
+507610503,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,94,0.0,227,5779919967279,78,27.67311668395996,539.7335305654428,0.19637632462004806,4,344782.0443113641,3.4028234663852886E38,,,,,0,,3
+507610503,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,96,0.0,227,5779928910370,33,39.90901565551758,668.2158028773943,0.04873060290621864,4,435029.7884055453,3.4028234663852886E38,,,,,0,,3
+507610504,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,97,0.0,227,5779936121815,33,37.657779693603516,58.67705157972202,0.06397153107739179,4,16781.135573171356,3.4028234663852886E38,,,,,0,,3
+507610504,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,103,0.0,227,5779929080018,33,36.295005798339844,-589.0925620807334,0.07307928541736258,4,-401002.2123900874,3.4028234663852886E38,,,,,0,,3
+507610504,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,104,0.0,227,5779927866887,33,36.40756607055664,628.9520631490732,0.0719412009670572,4,409856.14903425094,3.4028234663852886E38,,,,,0,,3
+507610505,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,105,0.0,227,5779936163157,33,35.331016540527344,-38.90343703919018,0.08273945679983652,4,-57590.87518445562,3.4028234663852886E38,,,,,0,,3
+507610505,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,106,0.0,227,5779928081711,53,30.952054977416992,-702.4688761775578,0.1336214773299525,4,-483654.4535342296,3.4028234663852886E38,,,,,0,,3
+507610505,691430000000,,,-1157840705570298550,0.0,10.69087532790638,,,0,26,0.0,5162,254196922413888,6,38.06489181518555,262.49945035706594,0.06574255819837402,4,164794.52314133657,3.4028234663852886E38,,,,,0,,6
+507611521,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,10,0.0,47,254197924040521,37,28.018735885620117,-561.9735263325549,0.18599099405703057,4,-386962.60628019774,3.4028234663852886E38,,,,,0,,1
+507611521,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,13,0.0,47,254197923404911,14,36.01576232910156,186.75981359662012,0.07439274973488752,4,102385.67052842902,3.4028234663852886E38,,,,,0,,1
+507611521,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,15,0.0,47,254197927654659,11,38.53208541870117,-51.794955806660596,0.056600401046759286,4,-62195.93545625006,3.4028234663852886E38,,,,,0,,1
+507611521,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,16,0.0,47,254197924081848,38,27.812089920043945,139.87823584597265,0.19045892452451985,4,70013.99702205828,3.4028234663852886E38,,,,,0,,1
+507611522,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,18,0.0,47,254197930996804,21,32.805179595947266,-190.84323271261803,0.1087529915918184,4,-143261.47953979843,3.4028234663852886E38,,,,,0,,1
+507611522,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,20,0.0,47,254197930214505,6,43.83627700805664,434.5491053061585,0.03183734334689621,4,284687.9047364324,3.4028234663852886E38,,,,,0,,1
+507611522,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,21,0.0,47,254197930185965,12,37.9022331237793,25.401037101926107,0.06120898821470305,4,9841.759611086287,3.4028234663852886E38,,,,,0,,1
+507611523,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,26,0.0,47,254197922725706,20,33.16094970703125,430.3869557155929,0.10298014238367159,4,273533.2237183024,3.4028234663852886E38,,,,,0,,1
+507611523,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,27,0.0,47,254197922178928,166,30.878597259521484,-585.1287723871305,0.13368223663110718,4,-403927.57815073733,3.4028234663852886E38,,,,,1,,1
+507611523,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,29,0.0,47,254197924795339,14,36.24268341064453,662.8262758625292,0.07274026649008991,4,441790.2843778519,3.4028234663852886E38,,,,,0,,1
+507611523,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,93,0.0,99,20921349219,77,19.608646392822266,75.14770117617178,4.20024259365206,4,17737.549896457156,3.4028234663852886E38,,,,,0,,3
+507611524,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,94,0.0,227,5780919965357,95,25.940048217773438,539.962360178537,0.23894767595611355,4,345322.502201627,3.4028234663852886E38,,,,,0,,3
+507611524,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,96,0.0,227,5780928908129,33,41.516822814941406,668.1936492806544,0.04076637073270012,4,435697.99423278536,3.4028234663852886E38,,,,,0,,3
+507611524,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,97,0.0,227,5780936121666,35,34.61469268798828,59.024948254678606,0.08959483172728216,4,16840.012909573208,3.4028234663852886E38,,,,,0,,3
+507611525,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,103,0.0,227,5780929082075,33,36.46659469604492,-588.9913371848606,0.07168211272273328,4,-401591.2018574287,3.4028234663852886E38,,,,,0,,3
+507611525,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,104,0.0,227,5780927864727,35,34.504364013671875,629.0478348519023,0.08921782783564752,4,410485.16955654963,3.4028234663852886E38,,,,,0,,3
+507611525,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,105,0.0,227,5780936163167,33,35.108741760253906,-38.69310993968085,0.08480876782223512,4,-57629.4746371126,3.4028234663852886E38,,,,,0,,3
+507611526,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,106,0.0,227,5780928084227,37,34.11640930175781,-702.245022603116,0.0932679403369796,4,-484357.0024350309,3.4028234663852886E38,,,,,0,,3
+507611526,692430000000,,,-1157840705570298461,0.0,10.766760828727985,,,0,26,0.0,5162,254197922413015,9,34.95392990112305,262.52796033194727,0.09387060736848207,4,165057.10525015768,3.4028234663852886E38,,,,,0,,6
+507612497,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,10,0.0,47,254198924042399,52,25.09496307373047,-561.9262539653578,0.260133251049935,4,-387524.1512823686,3.4028234663852886E38,,,,,0,,1
+507612497,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,13,0.0,47,254198923404299,17,34.83837127685547,186.6541579813994,0.08510321994356634,4,102572.36089758569,3.4028234663852886E38,,,,,0,,1
+507612498,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,15,0.0,47,254198927654856,10,39.12808609008789,-51.698966828171166,0.052938251078477994,4,-62247.64056621396,3.4028234663852886E38,,,,,0,,1
+507612499,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,16,0.0,47,254198924081362,33,29.07373046875,140.30240053801316,0.16480893038817312,4,70154.15562039353,3.4028234663852886E38,,,,,0,,1
+507612500,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,18,0.0,47,254198930997398,24,31.609106063842773,-190.5464426812174,0.12451681836933387,4,-143452.1434473368,3.4028234663852886E38,,,,,0,,1
+507612501,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,20,0.0,47,254198930213058,6,45.11225128173828,434.49453929326546,0.031837081238160744,4,285122.425695697,3.4028234663852886E38,,,,,0,,1
+507612502,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,21,0.0,47,254198930185885,11,38.312896728515625,25.503631686520364,0.05846699384478363,4,9867.124589386742,3.4028234663852886E38,,,,,0,,1
+507612503,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,26,0.0,47,254198922724212,166,30.329334259033203,430.0844057490399,0.14248131008982146,4,273963.4335757778,3.4028234663852886E38,,,,,1,,1
+507612503,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,27,0.0,47,254198922180903,35,28.426729202270508,-585.0764898988245,0.17715551660727935,4,-404512.28675756766,3.4028234663852886E38,,,,,0,,1
+507612504,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,29,0.0,47,254198924793134,16,34.890525817871094,662.6960808786121,0.08484724372041907,4,442453.09199112013,3.4028234663852886E38,,,,,0,,1
+507612505,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,93,0.0,99,21921348976,93,16.476076126098633,75.83883375015546,4.20024259365206,4,17813.17544880197,3.4028234663852886E38,,,,,0,,3
+507612506,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,94,0.0,227,5781919963488,93,26.097858428955078,540.2538333467201,0.2347098852792756,4,345863.3803255902,3.4028234663852886E38,,,,,0,,3
+507612506,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,96,0.0,227,5781928905929,33,41.256256103515625,668.0024466995615,0.0419586534448613,4,436366.05037748633,3.4028234663852886E38,,,,,0,,3
+507612507,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,97,0.0,227,5781936121533,33,36.57804870605469,58.770433250287454,0.07205525571108995,4,16898.76347277217,3.4028234663852886E38,,,,,0,,3
+507612508,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,103,0.0,227,5781929084049,33,35.817413330078125,-588.9999259639044,0.0771184808818397,4,-402180.22740924667,3.4028234663852886E38,,,,,0,,3
+507612509,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,104,0.0,227,5781927862675,33,35.553321838378906,629.1164087544262,0.07922912187531955,4,411114.2746352922,3.4028234663852886E38,,,,,0,,3
+507612509,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,105,0.0,227,5781936163286,33,35.21269226074219,-38.42073572807175,0.08383445556657865,4,-57667.90612084999,3.4028234663852886E38,,,,,0,,3
+507612510,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,106,0.0,227,5781928086617,38,33.718589782714844,-702.2532023926815,0.09757129980224521,4,-485059.4510434203,3.4028234663852886E38,,,,,0,,3
+507612511,693430000000,,,-1157840705570298373,0.0,10.829969585857537,,,0,26,0.0,5162,254198922412162,9,34.76235580444336,262.4678900023258,0.0959541554717182,4,165319.56926505067,3.4028234663852886E38,,,,,0,,6
+507613499,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,10,0.0,47,254199924044240,58,24.09592056274414,-562.1683757364958,0.29175381591100447,4,-388086.02371039044,3.4028234663852886E38,,,,,0,,1
+507613500,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,13,0.0,47,254199923403719,12,37.367774963378906,186.56048234964646,0.06375734663595492,4,102759.00452488057,3.4028234663852886E38,,,,,0,,1
+507613501,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,15,0.0,47,254199927655081,10,38.7239990234375,-51.417837685542764,0.055393710675059715,4,-62299.11637760844,3.4028234663852886E38,,,,,0,,1
+507613502,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,16,0.0,47,254199924080819,27,30.595661163330078,140.40682066418492,0.13843764629547306,4,70294.4592916636,3.4028234663852886E38,,,,,0,,1
+507613502,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,18,0.0,47,254199930998028,26,30.873695373535156,-190.59543621246894,0.13534382295389208,4,-143642.73456941376,3.4028234663852886E38,,,,,0,,1
+507613503,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,20,0.0,47,254199930211634,7,42.38042449951172,434.5800862591377,0.03729425375808776,4,285556.9660384535,3.4028234663852886E38,,,,,0,,1
+507613504,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,21,0.0,47,254199930185778,10,38.82707595825195,25.538480998314938,0.05521168655941891,4,9892.532404771753,3.4028234663852886E38,,,,,0,,1
+507613505,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,26,0.0,47,254199922722836,35,28.583322525024414,430.0500847153214,0.1740947688918405,4,274393.6532471365,3.4028234663852886E38,,,,,0,,1
+507613505,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,27,0.0,47,254199922182955,18,33.954559326171875,-585.0257070386056,0.09393332208401245,4,-405097.32838112506,3.4028234663852886E38,,,,,0,,1
+507613506,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,29,0.0,47,254199924790932,11,38.05500030517578,662.7972376095718,0.05920339041730327,4,443115.90270573896,3.4028234663852886E38,,,,,0,,1
+507613507,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,93,0.0,99,22921348670,61,22.59247589111328,75.54579278897234,4.20024259365206,4,17888.946117552638,3.4028234663852886E38,,,,,0,,3
+507613508,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,94,0.0,227,5782919961624,133,23.020008087158203,540.5814680012738,0.33299395442374347,4,346403.7950857208,3.4028234663852886E38,,,,,0,,3
+507613508,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,96,0.0,227,5782928903702,33,41.770904541015625,668.1115105604345,0.03963653646687773,4,437034.2014425631,3.4028234663852886E38,,,,,0,,3
+507613509,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,97,0.0,227,5782936121300,33,35.39565658569336,58.73062494106881,0.08214001828228201,4,16957.531970560685,3.4028234663852886E38,,,,,0,,3
+507613510,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,103,0.0,227,5782929085942,33,40.26357650756836,-589.0688406909935,0.04687713634724819,4,-402769.3349852925,3.4028234663852886E38,,,,,0,,3
+507613511,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,104,0.0,227,5782927860522,33,37.179378509521484,629.3858646556955,0.06594357895665193,4,411743.55345913005,3.4028234663852886E38,,,,,0,,3
+507613511,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,105,0.0,227,5782936163340,33,37.81477355957031,-38.0016791442026,0.0628850612456926,4,-57705.99696897143,3.4028234663852886E38,,,,,0,,3
+507613512,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,106,0.0,227,5782928088904,61,29.738615036010742,-702.062749625632,0.15343890307102737,4,-485761.6987386801,3.4028234663852886E38,,,,,0,,3
+507613513,694430000000,,,-1157840705570298287,0.0,11.096909678749778,,,0,26,0.0,5162,254199922411259,9,35.31570053100586,262.48752149728296,0.09005854784533873,4,165582.095587816,3.4028234663852886E38,,,,,0,,6
+507614501,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,10,0.0,47,254200924046194,40,27.2437801361084,-562.6803623983815,0.2032811340870938,4,-388648.23008046445,3.4028234663852886E38,,,,,0,,1
+507614502,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,13,0.0,47,254200923403055,13,36.607452392578125,186.77791138103373,0.06953379463864423,4,102945.83139778288,3.4028234663852886E38,,,,,0,,1
+507614503,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,15,0.0,47,254200927655210,12,37.747772216796875,-51.392633708944146,0.06181911910448212,4,-62350.55800690914,3.4028234663852886E38,,,,,0,,1
+507614505,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,16,0.0,47,254200924080411,30,29.770713806152344,140.64074560452923,0.152157266242809,4,70434.97987920577,3.4028234663852886E38,,,,,0,,1
+507614507,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,18,0.0,47,254200930998614,28,30.374435424804688,-190.61811808728487,0.14323430272179782,4,-143833.3062581029,3.4028234663852886E38,,,,,0,,1
+507614508,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,20,0.0,47,254200930210174,8,41.03376388549805,434.8687305834294,0.04324035684037755,4,285991.80574512307,3.4028234663852886E38,,,,,0,,1
+507614510,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,21,0.0,47,254200930185653,13,37.12171173095703,25.335809670602046,0.06679165881321678,4,9917.892811639276,3.4028234663852886E38,,,,,0,,1
+507614511,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,26,0.0,47,254200922721422,13,36.71308517456055,430.3217218938082,0.06857807962183748,4,274824.01486835815,3.4028234663852886E38,,,,,0,,1
+507614512,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,27,0.0,47,254200922184930,32,29.246681213378906,-585.0700142320852,0.1612331182052631,4,-405682.33219310886,3.4028234663852886E38,,,,,0,,1
+507614513,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,29,0.0,47,254200924788737,12,37.78839874267578,662.9493135305765,0.0610214681365297,4,443778.813410045,3.4028234663852886E38,,,,,0,,1
+507614514,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,93,0.0,99,23921348649,97,25.744152069091797,74.90574129670222,0.2409673610579306,4,17964.739473655944,3.4028234663852886E38,,,,,0,,3
+507614515,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,94,0.0,227,5783919959915,58,30.21728515625,540.3933669237244,0.14742514681179453,4,346944.19023589627,3.4028234663852886E38,,,,,0,,3
+507614516,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,96,0.0,227,5783928901399,33,39.70802307128906,668.2337984144383,0.04983224592138202,4,437702.5118797786,3.4028234663852886E38,,,,,0,,3
+507614517,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,97,0.0,227,5783936121074,33,38.23283386230469,58.89421221176417,0.06005904646445992,4,17016.37963346714,3.4028234663852886E38,,,,,0,,3
+507614518,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,103,0.0,227,5783929087940,33,37.03581619262695,-588.9139018436408,0.06723977738128506,4,-403358.28725278156,3.4028234663852886E38,,,,,0,,3
+507614519,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,104,0.0,227,5783927858374,37,34.101871490478516,629.3883185925652,0.09338111306431524,4,412372.87438015547,3.4028234663852886E38,,,,,0,,3
+507614520,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,105,0.0,227,5783936163747,33,38.21931076049805,-37.92582011659695,0.0601557978714958,4,-57743.946868543215,3.4028234663852886E38,,,,,0,,3
+507614521,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,106,0.0,227,5783928091175,58,30.191701889038086,-702.1990112868102,0.1457145003904602,4,-486464.0732293736,3.4028234663852886E38,,,,,0,,3
+507614522,695430000000,,,-1157840705570298202,0.0,11.012234756894001,,,0,26,0.0,5162,254200922410418,9,34.833641052246094,262.60965598023245,0.09517310472367863,4,165844.70950093286,3.4028234663852886E38,,,,,0,,6
+507615497,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,10,0.0,47,254201924048167,41,27.075441360473633,-563.0108599792832,0.2072453997368766,4,-389211.08840954513,3.4028234663852886E38,,,,,0,,1
+507615497,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,13,0.0,47,254201923402452,16,35.066497802734375,186.93274798101686,0.0829127065135234,4,103132.76642804587,3.4028234663852886E38,,,,,0,,1
+507615498,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,15,0.0,47,254201927655385,14,36.32389831542969,-51.03892597515042,0.07258579707532198,4,-62401.75962093696,3.4028234663852886E38,,,,,0,,1
+507615498,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,16,0.0,47,254201924080017,27,30.727092742919922,140.62687404472445,0.13636950852169988,4,70575.51644861784,3.4028234663852886E38,,,,,0,,1
+507615498,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,18,0.0,47,254201930999250,41,27.042871475219727,-190.57140808062036,0.20927157515023853,4,-144023.93026952446,3.4028234663852886E38,,,,,0,,1
+507615499,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,20,0.0,47,254201930208728,8,40.786407470703125,434.94892660362757,0.044436142656590516,4,286426.7184993366,3.4028234663852886E38,,,,,0,,1
+507615499,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,21,0.0,47,254201930185582,15,35.691505432128906,25.44257296565975,0.07841878151620568,4,9943.293004275634,3.4028234663852886E38,,,,,0,,1
+507615500,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,26,0.0,47,254201922720006,166,31.947158813476562,430.52993162070607,0.11835035672872735,4,275254.52183722716,3.4028234663852886E38,,,,,1,,1
+507615500,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,27,0.0,47,254201922186823,28,30.532060623168945,-585.0113242419529,0.1391089608529309,4,-406267.297220343,3.4028234663852886E38,,,,,0,,1
+507615500,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,29,0.0,47,254201924786496,12,37.5733528137207,662.9457689550982,0.06252911342247372,4,444441.77947977453,3.4028234663852886E38,,,,,0,,1
+507615501,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,93,0.0,99,24921348443,81,27.267498016357422,74.27581229401937,0.2022435329729626,4,18039.07153621341,3.4028234663852886E38,,,,,0,,3
+507615501,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,94,0.0,227,5784919958163,52,31.16084098815918,540.2352243254586,0.13261870755444544,4,347484.49076755997,3.4028234663852886E38,,,,,0,,3
+507615501,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,96,0.0,227,5784928899206,33,40.933692932128906,668.4218654095312,0.04348433430807905,4,438370.88309987943,3.4028234663852886E38,,,,,0,,3
+507615502,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,97,0.0,227,5784936120860,33,38.92745590209961,59.00994345319444,0.05566591267706916,4,17075.339260227876,3.4028234663852886E38,,,,,0,,3
+507615502,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,103,0.0,227,5784929089951,33,37.83909225463867,-588.9953589147303,0.06144504001349879,4,-403947.2376995809,3.4028234663852886E38,,,,,0,,3
+507615502,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,104,0.0,227,5784927856374,42,32.88497543334961,629.3714818590429,0.10721168405541953,4,413002.1896667211,3.4028234663852886E38,,,,,0,,3
+507615503,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,105,0.0,227,5784936163908,33,38.310577392578125,-37.87850514632916,0.05955742859116375,4,-57781.868178814715,3.4028234663852886E38,,,,,0,,3
+507615503,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,106,0.0,227,5784928093514,45,32.28385925292969,-702.4754881741233,0.11483554515342687,4,-487166.5273062571,3.4028234663852886E38,,,,,0,,3
+507615504,696430000000,,,-1157840705570298124,0.0,10.531725729777909,,,0,26,0.0,5162,254201922409555,10,33.796165466308594,262.6591777895601,0.10719257092001111,4,166107.34509793206,3.4028234663852886E38,,,,,0,,6
+507616496,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,10,0.0,47,254202924050073,58,24.129487991333008,-563.2349862133772,0.29063235664334863,4,-389774.20637519704,3.4028234663852886E38,,,,,0,,1
+507616497,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,13,0.0,47,254202923401782,18,34.04880905151367,187.05382590781414,0.09314301848156531,4,103319.90048119875,3.4028234663852886E38,,,,,0,,1
+507616497,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,15,0.0,47,254202927655559,22,32.58071517944336,-51.017164326660605,0.11094726607419247,4,-62452.759479353794,3.4028234663852886E38,,,,,0,,1
+507616499,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,16,0.0,47,254202924079557,31,29.53265953063965,140.70324430917793,0.15636455245538605,4,70716.2000141804,3.4028234663852886E38,,,,,0,,1
+507616499,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,18,0.0,47,254202930999926,38,27.88165283203125,-190.47977739625878,0.19018992607372165,4,-144214.33970785406,3.4028234663852886E38,,,,,0,,1
+507616500,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,20,0.0,47,254202930207239,7,42.483985900878906,434.9075505014089,0.0368732072779826,4,286861.59581014817,3.4028234663852886E38,,,,,0,,1
+507616501,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,21,0.0,47,254202930185476,13,36.86508560180664,25.54220876699712,0.06873950947969168,4,9968.800963212738,3.4028234663852886E38,,,,,0,,1
+507616501,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,26,0.0,47,254202922718479,24,31.825714111328125,430.29278588822035,0.12000954662878799,4,275684.9752778824,3.4028234663852886E38,,,,,0,,1
+507616502,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,27,0.0,47,254202922188760,21,32.72568130493164,-584.8058751940334,0.10815042441126277,4,-406852.11024285865,3.4028234663852886E38,,,,,0,,1
+507616503,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,29,0.0,47,254202924784246,11,38.58384704589844,663.081553461885,0.05575596991021037,4,445104.8656197631,3.4028234663852886E38,,,,,0,,1
+507616503,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,93,0.0,99,25921348061,89,26.474843978881836,73.99765684572259,0.22154493734165903,4,18113.287363833704,3.4028234663852886E38,,,,,0,,3
+507616504,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,94,0.0,227,5785919956340,73,28.17803192138672,540.1918714407616,0.18548716282107935,4,348024.8261768917,3.4028234663852886E38,,,,,0,,3
+507616505,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,96,0.0,227,5785928896946,33,41.809295654296875,668.4782377926199,0.03946757202299292,4,439039.4142610033,3.4028234663852886E38,,,,,0,,3
+507616505,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,97,0.0,227,5785936120646,33,37.34004211425781,59.24754077822908,0.06624675555446366,4,17134.486718033495,3.4028234663852886E38,,,,,0,,3
+507616506,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,103,0.0,227,5785929091801,33,39.7000732421875,-588.7486019295052,0.04991064555647917,4,-404536.0747021344,3.4028234663852886E38,,,,,0,,3
+507616507,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,104,0.0,227,5785927854235,37,34.085105895996094,629.3276518199546,0.09355808222577205,4,413631.5362067097,3.4028234663852886E38,,,,,0,,3
+507616507,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,105,0.0,227,5785936163970,33,37.53681182861328,-37.71084928238639,0.06483559540636394,4,-57819.58175998557,3.4028234663852886E38,,,,,0,,3
+507616508,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,106,0.0,227,5785928095829,40,33.313594818115234,-702.563284582126,0.10216069894657043,4,-487868.9857834698,3.4028234663852886E38,,,,,0,,3
+507616508,697430000000,,,-1157840705570298041,0.0,10.714907857243292,,,0,26,0.0,5162,254202922408637,9,34.62441635131836,262.78189167427047,0.09748258223597417,4,166370.06677808875,3.4028234663852886E38,,,,,0,,6
+507617471,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,10,0.0,47,254203924051909,166,20.881481170654297,-563.3771782219903,4.200728801195893,4,-390337.5620263555,3.4028234663852886E38,,,,,1,,1
+507617471,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,13,0.0,47,254203923401195,17,34.819068908691406,187.43713425509793,0.08529064849170509,4,103507.2755444709,3.4028234663852886E38,,,,,0,,1
+507617472,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,15,0.0,47,254203927655733,17,34.85173034667969,-50.833131842358625,0.085738122189075,4,-62503.71918923138,3.4028234663852886E38,,,,,0,,1
+507617472,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,16,0.0,47,254203924079064,40,27.350513458251953,140.8756589361127,0.20081323472671775,4,70857.0303097242,3.4028234663852886E38,,,,,0,,1
+507617472,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,18,0.0,47,254203931000626,20,33.42724609375,-190.50818512377055,0.10137408982915652,4,-144404.7501739937,3.4028234663852886E38,,,,,0,,1
+507617473,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,20,0.0,47,254203930205812,7,41.51050567626953,434.9032220294305,0.04102828808718462,4,287296.5544242886,3.4028234663852886E38,,,,,0,,1
+507617473,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,21,0.0,47,254203930185422,11,38.17523193359375,25.612452709890633,0.05937170999048971,4,9994.39652602094,3.4028234663852886E38,,,,,0,,1
+507617474,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,26,0.0,47,254203922717047,25,31.281909942626953,430.4111883421806,0.1277314197520351,4,276115.59563922766,3.4028234663852886E38,,,,,0,,1
+507617474,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,27,0.0,47,254203922190654,19,33.480010986328125,-584.6703633468987,0.09918742066056707,4,-407436.79083611805,3.4028234663852886E38,,,,,0,,1
+507617474,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,29,0.0,47,254203924782099,13,36.855072021484375,663.2197919055416,0.06784474098456494,4,445768.0335731617,3.4028234663852886E38,,,,,0,,1
+507617475,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,93,0.0,99,26921347700,88,26.616912841796875,74.22091397717526,0.21795459684598317,4,18187.65856488358,3.4028234663852886E38,,,,,0,,3
+507617475,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,94,0.0,227,5786919954523,81,27.326038360595703,540.2883929576342,0.2042334624926201,4,348565.20190391026,3.4028234663852886E38,,,,,0,,3
+507617476,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,96,0.0,227,5786928894743,33,41.18389129638672,668.5087756736643,0.04229428160039739,4,439707.9340750281,3.4028234663852886E38,,,,,0,,3
+507617476,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,97,0.0,227,5786936120563,34,34.665042877197266,59.17969538821336,0.08909353836956324,4,17193.683323828627,3.4028234663852886E38,,,,,0,,3
+507617476,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,103,0.0,227,5786929093804,33,39.06571960449219,-588.7591674910273,0.0535686225872736,4,-405124.8674060855,3.4028234663852886E38,,,,,0,,3
+507617477,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,104,0.0,227,5786927852107,33,35.036895751953125,629.8539531135798,0.08399404234237234,4,414261.23515687906,3.4028234663852886E38,,,,,0,,3
+507617477,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,105,0.0,227,5786936164151,33,37.407997131347656,-37.48541939433039,0.06576090164940052,4,-57857.13574594704,3.4028234663852886E38,,,,,0,,3
+507617478,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,106,0.0,227,5786928098064,39,33.681941986083984,-702.3957352258599,0.09797976506304801,4,-488571.34982233966,3.4028234663852886E38,,,,,0,,3
+507617478,698430000000,,,-1157840705570297947,0.0,10.005405464039638,,,0,26,0.0,5162,254203922407753,11,33.281982421875,262.71009697960517,0.11370291090063672,4,166632.8459424557,3.4028234663852886E38,,,,,0,,6
+507618483,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,10,0.0,46,254204924053734,1000000000,23.91836929321289,-563.1286830314825,2.99792458E8,4,-390900.7393131578,3.4028234663852886E38,,,,,1,,1
+507618484,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,13,0.0,47,254204923400576,20,33.39844512939453,187.6028601999401,0.10033717102982875,4,103694.84866027515,3.4028234663852886E38,,,,,0,,1
+507618484,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,15,0.0,47,254204927655900,11,38.04157257080078,-50.792369224357344,0.059808965607632575,4,-62554.53485826663,3.4028234663852886E38,,,,,0,,1
+507618486,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,16,0.0,47,254204924078551,31,29.618444442749023,141.04592636828653,0.1548348692333823,4,70998.03203389738,3.4028234663852886E38,,,,,0,,1
+507618487,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,18,0.0,47,254204931001279,16,35.19017028808594,-190.39518473916917,0.0831160196831226,4,-144595.04015188557,3.4028234663852886E38,,,,,0,,1
+507618487,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,20,0.0,47,254204930204347,7,42.393882751464844,434.9550614458017,0.03723804183547061,4,287731.5281033445,3.4028234663852886E38,,,,,0,,1
+507618488,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,21,0.0,47,254204930185358,10,38.984703063964844,25.58505680530689,0.054251648828705035,4,10019.999669613828,3.4028234663852886E38,,,,,0,,1
+507618488,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,26,0.0,47,254204922715714,26,30.985450744628906,431.2214987460104,0.1321490835887006,4,276546.60194801434,3.4028234663852886E38,,,,,0,,1
+507618489,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,27,0.0,47,254204922192560,20,33.30868911743164,-584.4975652923281,0.1011557324502328,4,-408021.3321170153,3.4028234663852886E38,,,,,0,,1
+507618489,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,29,0.0,47,254204924779825,12,37.40559005737305,663.1746667331054,0.06373056161946397,4,446431.19136647333,3.4028234663852886E38,,,,,0,,1
+507618489,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,93,0.0,99,27921347537,91,26.29824447631836,74.38076921888137,0.22609031886025044,4,18262.193165479453,3.4028234663852886E38,,,,,0,,3
+507618490,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,94,0.0,227,5787919952823,99,25.549461364746094,540.2347471710673,0.24977045351725535,4,349105.58423456224,3.4028234663852886E38,,,,,0,,3
+507618490,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,96,0.0,227,5787928892478,33,40.336910247802734,668.6989557810616,0.04646197691255072,4,440376.5932681072,3.4028234663852886E38,,,,,0,,3
+507618490,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,97,0.0,227,5787936120135,43,32.747764587402344,59.512766194582525,0.11038271714164777,4,17253.21947855462,3.4028234663852886E38,,,,,0,,3
+507618491,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,103,0.0,227,5787929095743,33,39.18157196044922,-588.6115904542835,0.05288088670951602,4,-405713.52453863434,3.4028234663852886E38,,,,,0,,3
+507618491,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,104,0.0,227,5787927849980,33,35.94074630737305,629.7819028004906,0.07583225923097875,4,414890.9513309777,3.4028234663852886E38,,,,,0,,3
+507618492,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,105,0.0,227,5787936164078,33,37.538551330566406,-37.33906506571438,0.06482323053077974,4,-57894.53816890289,3.4028234663852886E38,,,,,0,,3
+507618492,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,106,0.0,227,5787928100397,42,33.020015716552734,-702.2889889720304,0.10562342993217944,4,-489273.69284965564,3.4028234663852886E38,,,,,0,,3
+507618492,699430000000,,,-1157840705570297856,0.0,10.318005692586588,,,0,26,0.0,5162,254204922406898,9,34.915016174316406,262.84083728282667,0.09428902444032033,4,166895.69338804472,3.4028234663852886E38,,,,,0,,6
+507619476,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,10,0.0,47,254205924055489,166,24.33230209350586,-562.962803715586,0.2839425096230339,4,-391463.375494882,3.4028234663852886E38,,,,,1,,1
+507619476,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,13,0.0,47,254205923399905,14,36.03999328613281,187.61731116150577,0.07418629958137496,4,103882.4625892069,3.4028234663852886E38,,,,,0,,1
+507619477,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,15,0.0,47,254205927656071,9,39.572593688964844,-50.83981626414416,0.05036616141552616,4,-62605.37928188955,3.4028234663852886E38,,,,,0,,1
+507619478,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,16,0.0,47,254205924078032,39,27.62628746032715,141.2254983110911,0.19456043530073996,4,71139.12110816293,3.4028234663852886E38,,,,,0,,1
+507619478,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,18,0.0,47,254205931001908,15,35.93110275268555,-190.17666506917317,0.07648188949114693,4,-144785.22599401654,3.4028234663852886E38,,,,,0,,1
+507619479,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,20,0.0,47,254205930202894,6,43.88820266723633,434.99060944795497,0.03183525271769666,4,288166.5149627081,3.4028234663852886E38,,,,,0,,1
+507619480,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,21,0.0,47,254205930185268,10,38.931724548339844,25.63252088632197,0.05457234094677568,4,10045.649103668633,3.4028234663852886E38,,,,,0,,1
+507619481,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,26,0.0,47,254205922714233,25,31.445907592773438,431.6725459756333,0.1253509981420068,4,276977.96840131516,3.4028234663852886E38,,,,,0,,1
+507619481,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,27,0.0,47,254205922194578,24,31.575307846069336,-584.3409904870623,0.12341114387219165,4,-408605.7301308109,3.4028234663852886E38,,,,,0,,1
+507619482,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,29,0.0,47,254205924777536,19,33.86491012573242,663.5735678042483,0.09537046012011613,4,447094.59691613924,3.4028234663852886E38,,,,,0,,1
+507619483,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,93,0.0,99,28921347469,80,27.399723052978516,74.6910473824509,0.19919158878267051,4,18336.960464823445,3.4028234663852886E38,,,,,0,,3
+507619484,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,94,0.0,227,5788919950972,119,23.936899185180664,540.0294685354304,0.2999922845495744,4,349645.86104138894,3.4028234663852886E38,,,,,0,,3
+507619484,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,96,0.0,227,5788928890287,33,41.48146057128906,668.8216526245437,0.0409229411778079,4,441045.42347851547,3.4028234663852886E38,,,,,0,,3
+507619485,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,97,0.0,227,5788936120055,36,34.2092170715332,59.632169820703126,0.09373758926546116,4,17312.815077273983,3.4028234663852886E38,,,,,0,,3
+507619486,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,103,0.0,227,5788929097711,33,38.52812957763672,-588.6068189103703,0.05688512602168544,4,-406302.17817760527,3.4028234663852886E38,,,,,0,,3
+507619487,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,104,0.0,227,5788927847910,33,36.37603759765625,629.5274431800913,0.07219424822909704,4,415520.5170682471,3.4028234663852886E38,,,,,0,,3
+507619488,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,105,0.0,227,5788936164185,33,36.214595794677734,-37.093066415146865,0.07501804132676243,4,-57931.71044081789,3.4028234663852886E38,,,,,0,,3
+507619489,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,106,0.0,227,5788928102826,33,36.010353088378906,-702.2099858378106,0.07528374469631477,4,-489975.9009119459,3.4028234663852886E38,,,,,0,,3
+507619490,700430000000,,,-1157840705570297762,0.0,10.247515362982478,,,0,26,0.0,5162,254205922406043,9,34.72154235839844,262.96283543595007,0.09640294387322157,4,167158.63255407053,3.4028234663852886E38,,,,,0,,6
+507620498,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,10,0.0,47,254206924057404,63,23.376136779785156,-562.7330538761657,0.3169004780661342,4,-392025.53017138015,3.4028234663852886E38,,,,,0,,1
+507620499,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,13,0.0,47,254206923399292,15,35.736751556396484,187.643793230224,0.07680018934694943,4,104070.16647883556,3.4028234663852886E38,,,,,0,,1
+507620499,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,15,0.0,47,254206927656200,9,40.01329040527344,-50.75301250768763,0.047942629159197864,4,-62656.09194191943,3.4028234663852886E38,,,,,0,,1
+507620500,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,16,0.0,47,254206924077612,20,33.17633819580078,141.14185144216998,0.10304189187338247,4,71280.30355556904,3.4028234663852886E38,,,,,0,,1
+507620500,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,18,0.0,47,254206931002529,21,32.909568786621094,-189.74829971436623,0.10747846082265045,4,-144975.0620153044,3.4028234663852886E38,,,,,0,,1
+507620500,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,20,0.0,47,254206930201439,7,41.5972900390625,434.93215803501835,0.04063787088502391,4,288601.5565793526,3.4028234663852886E38,,,,,0,,1
+507620501,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,21,0.0,47,254206930185164,14,36.41546630859375,25.684737339868448,0.0722940742132045,4,10071.307867595673,3.4028234663852886E38,,,,,0,,1
+507620501,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,26,0.0,47,254206922712729,34,28.832412719726562,432.28183805089157,0.16918508119368814,4,277409.7650697066,3.4028234663852886E38,,,,,0,,1
+507620501,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,27,0.0,47,254206922196587,10,38.8079833984375,-584.3159057990615,0.05389208972957529,4,-409190.1724963188,3.4028234663852886E38,,,,,0,,1
+507620502,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,29,0.0,47,254206924775452,28,30.419845581054688,663.6966736372087,0.1413783232473318,4,447758.18107462506,3.4028234663852886E38,,,,,0,,1
+507620502,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,93,0.0,99,29921347264,84,26.95770263671875,74.98183890150352,0.20957798442245434,4,18411.934785352827,3.4028234663852886E38,,,,,0,,3
+507620502,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,94,0.0,227,5789919949119,61,29.798480987548828,540.4419003418129,0.15452834346839517,4,350186.4446659016,3.4028234663852886E38,,,,,0,,3
+507620502,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,96,0.0,227,5789928888063,33,44.17837142944336,668.7388322551933,0.031598749509412064,4,441714.2180076197,3.4028234663852886E38,,,,,0,,3
+507620503,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,97,0.0,227,5789936119857,33,38.846900939941406,59.46871461952679,0.056157370716523936,4,17372.390606052944,3.4028234663852886E38,,,,,0,,3
+507620503,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,103,0.0,227,5789929099733,33,40.00647735595703,-588.6479905178498,0.04823882035118662,4,-406890.827376955,3.4028234663852886E38,,,,,0,,3
+507620503,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,104,0.0,227,5789927845827,33,36.86417007446289,629.7112839505753,0.06832571467460108,4,416150.2433074359,3.4028234663852886E38,,,,,0,,3
+507620504,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,105,0.0,227,5789936164333,33,38.062477111816406,-36.989792311575684,0.06119898231773804,4,-57968.7190403756,3.4028234663852886E38,,,,,0,,3
+507620504,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,106,0.0,227,5789928104942,166,31.61614227294922,-702.2762421332909,0.12389728484872697,4,-490678.0844595963,3.4028234663852886E38,,,,,1,,3
+507620504,701430000000,,,-1157840705570297673,0.0,9.485530932782186,,,0,26,0.0,5162,254206922405115,13,31.976070404052734,262.9631762605153,0.1320792877768565,4,167421.66219879375,3.4028234663852886E38,,,,,0,,6
+507621462,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,10,0.0,47,254207924059290,58,24.184112548828125,-562.4828886452883,0.28881653389133843,4,-392587.59179729363,3.4028234663852886E38,,,,,0,,1
+507621463,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,13,0.0,47,254207923398636,20,33.30359649658203,188.082332198303,0.10143175375095903,4,104258.08183895687,3.4028234663852886E38,,,,,0,,1
+507621464,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,15,0.0,47,254207927656375,8,41.42176055908203,-50.643637644398865,0.04097220097825102,4,-62706.73322587675,3.4028234663852886E38,,,,,0,,1
+507621466,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,16,0.0,47,254207924077166,20,33.218997955322266,141.1523999624638,0.10254055691110237,4,71421.49000487172,3.4028234663852886E38,,,,,0,,1
+507621467,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,18,0.0,47,254207931003100,20,33.33558654785156,-189.42758379848658,0.10242894851526729,4,-145164.70195956045,3.4028234663852886E38,,,,,0,,1
+507621468,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,20,0.0,47,254207930199976,10,39.39030075073242,435.0155918885862,0.05186275653001943,4,289036.59961448365,3.4028234663852886E38,,,,,0,,1
+507621469,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,21,0.0,47,254207930185038,11,38.32664489746094,25.623058744329825,0.058377286089956376,4,10096.975791516767,3.4028234663852886E38,,,,,0,,1
+507621470,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,26,0.0,47,254207922711257,32,29.181428909301758,432.05996125892807,0.16254063307053856,4,277841.4877871871,3.4028234663852886E38,,,,,0,,1
+507621471,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,27,0.0,47,254207922198523,11,38.32170867919922,-584.4787517763275,0.056972845078488044,4,-409774.68891738035,3.4028234663852886E38,,,,,0,,1
+507621472,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,29,0.0,47,254207924773273,27,30.820877075195312,663.6081274151625,0.13503759674174548,4,448421.65045895474,3.4028234663852886E38,,,,,0,,1
+507621473,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,93,0.0,99,921346982,120,23.927886962890625,75.29528673352968,0.29695362053521257,4,18487.245913095237,3.4028234663852886E38,,,,,0,,3
+507621474,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,94,0.0,227,5790919947349,84,26.968067169189453,540.6388628580582,0.21267404608942708,4,350727.13936142577,3.4028234663852886E38,,,,,0,,3
+507621475,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,96,0.0,227,5790928885822,33,41.396846771240234,668.8575073688057,0.0413070844121419,4,442383.07237125584,3.4028234663852886E38,,,,,0,,3
+507621477,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,97,0.0,227,5790936119633,33,36.97230529785156,59.60167454272934,0.06898608723246724,4,17432.051624874734,3.4028234663852886E38,,,,,0,,3
+507621477,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,103,0.0,227,5790929101641,33,42.04535675048828,-588.5834383451956,0.03848911595304241,4,-407479.4827536886,3.4028234663852886E38,,,,,0,,3
+507621478,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,104,0.0,227,5790927843661,33,37.16478729248047,629.8786288121023,0.06604904651925608,4,416780.08976829814,3.4028234663852886E38,,,,,0,,3
+507621479,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,105,0.0,227,5790936164441,33,35.71735763549805,-36.79131738632216,0.07926664086859625,4,-58005.625830258905,3.4028234663852886E38,,,,,0,,3
+507621479,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,106,0.0,227,5790928107570,49,31.551183700561523,-702.1830606971575,0.1248168704646006,4,-491380.3548975482,3.4028234663852886E38,,,,,0,,3
+507621480,702430000000,,,-1157840705570297587,0.0,9.13254803853916,,,0,26,0.0,5162,254207922404248,9,34.64639663696289,262.91762505737256,0.09723650789838895,4,167684.65150754867,3.4028234663852886E38,,,,,0,,6
+507622492,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,10,0.0,47,254208924061107,57,24.293806076049805,-562.3739951966979,0.28520153021179206,4,-393150.0804085094,3.4028234663852886E38,,,,,0,,1
+507622492,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,13,0.0,47,254208923398064,21,32.946529388427734,188.18497151612144,0.10566262974972801,4,104446.17071361945,3.4028234663852886E38,,,,,0,,1
+507622493,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,15,0.0,47,254208927656560,7,42.278343200683594,-50.387205501828305,0.037253826605984225,4,-62757.166800905725,3.4028234663852886E38,,,,,0,,1
+507622494,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,16,0.0,47,254208924076619,16,35.330909729003906,141.1503209326159,0.08056634239728117,4,71562.67045780472,3.4028234663852886E38,,,,,0,,1
+507622494,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,18,0.0,47,254208931003834,22,32.297298431396484,-189.4250616967039,0.11518374204689696,4,-145354.3793391737,3.4028234663852886E38,,,,,0,,1
+507622495,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,20,0.0,47,254208930198548,8,40.7680778503418,435.3050541918344,0.04452430272174168,4,289471.89533776476,3.4028234663852886E38,,,,,0,,1
+507622495,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,21,0.0,47,254208930185050,22,32.3670768737793,25.479169003351117,0.11413069731965386,4,10122.571679582226,3.4028234663852886E38,,,,,0,,1
+507622496,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,26,0.0,47,254208922709921,34,28.611434936523438,431.65489126315447,0.1735314597752191,4,278273.00005100167,3.4028234663852886E38,,,,,0,,1
+507622496,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,27,0.0,47,254208922200413,12,37.855613708496094,-584.6964023436822,0.060092142892882644,4,-410359.3603498717,3.4028234663852886E38,,,,,0,,1
+507622496,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,29,0.0,47,254208924770996,21,32.65522766113281,663.5774532042919,0.1094925043459708,4,449085.1659805694,3.4028234663852886E38,,,,,0,,1
+507622497,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,93,0.0,99,1921346562,53,30.920747756958008,75.61012342565914,0.13288726499689507,4,18562.72165846797,3.4028234663852886E38,,,,,0,,3
+507622497,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,94,0.0,227,5791919945523,74,28.12360954284668,540.9790057741559,0.18662852571080613,4,351268.0665292847,3.4028234663852886E38,,,,,0,,3
+507622498,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,96,0.0,227,5791928883576,33,39.66240310668945,669.0065840336365,0.050083034055749515,4,443052.0112663349,3.4028234663852886E38,,,,,0,,3
+507622498,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,97,0.0,227,5791936119492,33,38.25339126586914,59.7857837125585,0.05992365274099534,4,17491.81329506652,3.4028234663852886E38,,,,,0,,3
+507622499,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,103,0.0,227,5791929103673,33,39.410221099853516,-588.6598512127198,0.05155095114621791,4,-408068.15364738787,3.4028234663852886E38,,,,,0,,3
+507622499,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,104,0.0,227,5791927841572,35,34.435218811035156,630.2880272798543,0.08991542815486209,4,417410.1710641715,3.4028234663852886E38,,,,,0,,3
+507622500,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,105,0.0,227,5791936164625,33,37.49895095825195,-36.73697716970361,0.06510625387915342,4,-58042.38268484341,3.4028234663852886E38,,,,,0,,3
+507622500,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,106,0.0,227,5791928109980,77,27.6878662109375,-702.1722906408963,0.19391639669359506,4,-492082.46110633167,3.4028234663852886E38,,,,,0,,3
+507622501,703430000000,,,-1157840705570297496,0.0,8.885708616714473,,,0,26,0.0,5162,254208922403401,10,34.44136047363281,262.8874961658064,0.09954866474442481,4,167947.52764193265,3.4028234663852886E38,,,,,0,,6
+507623496,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,10,0.0,47,254209924062999,38,27.693561553955078,-562.1273063763858,0.19306223841064107,4,-393712.2689629731,3.4028234663852886E38,,,,,0,,1
+507623497,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,13,0.0,47,254209923397426,20,33.13349151611328,188.03069727667094,0.10342546928568436,4,104634.27434103843,3.4028234663852886E38,,,,,0,,1
+507623498,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,15,0.0,47,254209927656735,8,40.77743148803711,-50.28989156784155,0.044021153800593904,4,-62807.52157139177,3.4028234663852886E38,,,,,0,,1
+507623499,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,16,0.0,47,254209924076262,166,31.4481143951416,141.60722182414656,0.1255642714435537,4,71704.17777408016,3.4028234663852886E38,,,,,1,,1
+507623500,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,18,0.0,47,254209931004439,21,32.67485809326172,-189.52676374696796,0.11036848006081024,4,-145544.0155122163,3.4028234663852886E38,,,,,0,,1
+507623500,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,20,0.0,47,254209930197109,8,40.575950622558594,435.41105063162036,0.04547884032946689,4,289907.2231655916,3.4028234663852886E38,,,,,0,,1
+507623501,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,21,0.0,47,254209930184926,14,36.53407287597656,25.68053454694848,0.07133841744278341,4,10148.267612526186,3.4028234663852886E38,,,,,0,,1
+507623502,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,26,0.0,47,254209922708489,20,33.41373825073242,431.45315720299595,0.10003725206915781,4,278704.4107566453,3.4028234663852886E38,,,,,0,,1
+507623503,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,27,0.0,47,254209922202439,22,32.31798553466797,-584.4857045974582,0.11333133224378061,4,-410943.86065780016,3.4028234663852886E38,,,,,0,,1
+507623503,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,29,0.0,47,254209924768707,16,34.973087310791016,663.2101124878891,0.08404832797380662,4,449748.40066862176,3.4028234663852886E38,,,,,0,,1
+507623504,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,93,0.0,99,2921346308,65,29.253643035888672,75.80644689584466,0.1609534190613281,4,18638.476447202935,3.4028234663852886E38,,,,,0,,3
+507623505,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,94,0.0,227,5792919943768,110,24.621501922607422,541.1468959549873,0.27752605449517853,4,351809.3820720963,3.4028234663852886E38,,,,,0,,3
+507623506,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,96,0.0,227,5792928881438,33,39.649837493896484,669.3164617283419,0.05015283818850583,4,443721.19592274755,3.4028234663852886E38,,,,,0,,3
+507623506,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,97,0.0,227,5792936119249,33,36.28757095336914,60.169888737263506,0.07440665397923557,4,17551.87247027036,3.4028234663852886E38,,,,,0,,3
+507623507,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,103,0.0,227,5792929105633,33,37.63936996459961,-588.3701503322759,0.0628390674033025,4,-408656.6124532904,3.4028234663852886E38,,,,,0,,3
+507623508,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,104,0.0,227,5792927839545,33,35.59246063232422,629.9761046377575,0.07887510866419578,4,418040.0758763295,3.4028234663852886E38,,,,,0,,3
+507623509,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,105,0.0,227,5792936164806,37,33.99839782714844,-36.69860032365892,0.09597738745868395,4,-58079.10979996895,3.4028234663852886E38,,,,,0,,3
+507623509,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,106,0.0,227,5792928112178,51,31.30971336364746,-702.2489761680727,0.1282952447652152,4,-492784.69584562327,3.4028234663852886E38,,,,,0,,3
+507623510,704430000000,,,-1157840705570297403,0.0,8.752701422516077,,,0,26,0.0,5162,254209922402543,10,34.24452209472656,262.83792323279397,0.10182034867333983,4,168210.43782311838,3.4028234663852886E38,,,,,0,,6
+507624453,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,10,0.0,47,254210924064866,41,27.118972778320312,-561.9196419687923,0.20621596975856216,4,-394274.37789886724,3.4028234663852886E38,,,,,0,,1
+507624454,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,13,0.0,47,254210923396787,22,32.377655029296875,187.83456978061042,0.11277294910720354,4,104822.28019253151,3.4028234663852886E38,,,,,0,,1
+507624457,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,15,0.0,47,254210927656932,8,40.44403076171875,-50.098633602756735,0.045689850342885335,4,-62857.704829708906,3.4028234663852886E38,,,,,0,,1
+507624457,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,16,0.0,47,254210924075759,40,27.24175453186035,141.94709208059203,0.20333367232695831,4,71845.89624140796,3.4028234663852886E38,,,,,0,,1
+507624458,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,18,0.0,47,254210931005030,36,28.311676025390625,-190.03523991583177,0.18109971221674648,4,-145733.9044608107,3.4028234663852886E38,,,,,0,,1
+507624458,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,20,0.0,47,254210930195653,7,41.755863189697266,435.38804497346746,0.03993485365194305,4,290342.6500744283,3.4028234663852886E38,,,,,0,,1
+507624458,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,21,0.0,47,254210930184842,10,38.81570053100586,25.807515129184807,0.05528146156898239,4,10174.11625506025,3.4028234663852886E38,,,,,0,,1
+507624459,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,26,0.0,47,254210922707000,21,32.776180267333984,431.2512527305548,0.10761894278394796,4,279135.7185546988,3.4028234663852886E38,,,,,0,,1
+507624459,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,27,0.0,47,254210922204376,23,32.132328033447266,-584.2082734013625,0.11577158121279307,4,-411528.1014977958,3.4028234663852886E38,,,,,0,,1
+507624459,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,29,0.0,47,254210924766494,33,29.117324829101562,663.5508007232911,0.16411073928418973,4,450411.8954080121,3.4028234663852886E38,,,,,0,,1
+507624460,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,93,0.0,99,3921346175,92,26.173255920410156,75.99212811898093,0.2293634828232758,4,18714.33649643789,3.4028234663852886E38,,,,,0,,3
+507624460,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,94,0.0,227,5793919942079,88,26.559310913085938,541.3614450187983,0.22274789162376418,4,352350.80401760666,3.4028234663852886E38,,,,,0,,3
+507624460,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,96,0.0,227,5793928879138,33,38.17155456542969,669.2626114470359,0.059161111862227,4,444390.4490241129,3.4028234663852886E38,,,,,0,,3
+507624461,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,97,0.0,227,5793936119094,33,38.94514083862305,60.51015094195898,0.055558277516827265,4,17612.18652869962,3.4028234663852886E38,,,,,0,,3
+507624461,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,103,0.0,227,5793929107559,33,36.11800003051758,-588.3724679393194,0.07455515729992956,4,-409245.0595050943,3.4028234663852886E38,,,,,0,,3
+507624461,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,104,0.0,227,5793927837403,49,31.593080520629883,629.9504064655393,0.12417470406270903,4,418670.0512955095,3.4028234663852886E38,,,,,0,,3
+507624462,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,105,0.0,227,5793936164930,33,35.19660949707031,-36.696380703677875,0.08398471459975465,4,-58115.75617549804,3.4028234663852886E38,,,,,0,,3
+507624462,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,106,0.0,227,5793928114502,41,33.136802673339844,-701.9453696453675,0.1042347695307686,4,-493486.6462144723,3.4028234663852886E38,,,,,0,,3
+507624462,705430000000,,,-1157840705570297306,0.0,9.121498435223133,,,0,26,0.0,5162,254210922401662,9,35.054481506347656,263.1553842740757,0.0927931324429111,4,168473.5330772976,3.4028234663852886E38,,,,,0,,6
+507625507,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,10,0.0,47,254211924066757,35,28.57583236694336,-561.9377738356625,0.1744862844544165,4,-394836.4134737603,3.4028234663852886E38,,,,,0,,1
+507625508,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,13,0.0,47,254211923396151,23,32.14102554321289,188.04963008126936,0.11587047525472999,4,105010.41632374957,3.4028234663852886E38,,,,,0,,1
+507625508,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,15,0.0,47,254211927657043,9,40.07659912109375,-50.02412083218374,0.04760459626002528,4,-62907.72529486133,3.4028234663852886E38,,,,,0,,1
+507625508,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,16,0.0,47,254211924075244,26,30.977140426635742,141.93768532259173,0.13251968037791273,4,71987.76024143485,3.4028234663852886E38,,,,,0,,1
+507625509,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,18,0.0,47,254211931005690,53,24.852821350097656,-190.15493750313988,0.2687191011325758,4,-145923.8874784576,3.4028234663852886E38,,,,,0,,1
+507625509,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,20,0.0,47,254211930194195,8,41.00634002685547,435.3454078203574,0.043368407358792965,4,290778.1005723105,3.4028234663852886E38,,,,,0,,1
+507625510,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,21,0.0,47,254211930184729,11,38.29454040527344,25.934574527101844,0.05858663192092742,4,10199.988541926905,3.4028234663852886E38,,,,,0,,1
+507625510,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,26,0.0,47,254211922705583,30,29.760957717895508,431.3069775469696,0.15208014802819636,4,279567.10989975045,3.4028234663852886E38,,,,,0,,1
+507625510,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,27,0.0,47,254211922206327,13,37.01386260986328,-584.1758950676658,0.06616796899694749,4,-412112.3718305737,3.4028234663852886E38,,,,,0,,1
+507625511,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,29,0.0,47,254211924764370,51,25.316083908081055,663.7554999571671,0.25374265731731227,4,451075.5450165933,3.4028234663852886E38,,,,,0,,1
+507625511,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,93,0.0,99,4921345931,75,28.000808715820312,75.91074773341859,0.1858890961657761,4,18790.310450266323,3.4028234663852886E38,,,,,0,,3
+507625512,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,94,0.0,227,5794919940235,86,26.773727416992188,541.3621948328419,0.21740365260494598,4,352892.0698966749,3.4028234663852886E38,,,,,0,,3
+507625512,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,96,0.0,227,5794928876960,33,37.38156509399414,669.3771966658655,0.06464168486759256,4,445059.77789999545,3.4028234663852886E38,,,,,0,,3
+507625513,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,97,0.0,227,5794936118877,33,39.69602584838867,60.54022018922623,0.05119716676018066,4,17672.56509380226,3.4028234663852886E38,,,,,0,,3
+507625513,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,103,0.0,227,5794929109554,33,38.367794036865234,-588.3668784164497,0.05791658214212961,4,-409833.49652216,3.4028234663852886E38,,,,,0,,3
+507625513,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,104,0.0,227,5794927835302,59,30.0049991607666,630.2077290122866,0.14880292345999935,4,419300.137309735,3.4028234663852886E38,,,,,0,,3
+507625514,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,105,0.0,227,5794936165058,33,36.872920989990234,-36.464087460939595,0.06975476478401038,4,-58152.16651255208,3.4028234663852886E38,,,,,0,,3
+507625514,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,106,0.0,227,5794928116762,69,28.67635154724121,-701.8845665429308,0.1732155646630531,4,-494188.4829294533,3.4028234663852886E38,,,,,0,,3
+507625515,706430000000,,,-1157840705570297220,0.0,9.79961833264056,,,0,26,0.0,5162,254211922400775,6,38.35386657714844,263.24926440056777,0.06360318925539588,4,168736.72115053248,3.4028234663852886E38,,,,,0,,6
+507626520,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,10,0.0,47,254212924068592,17,34.820865631103516,-562.0242069454043,0.08539318709320182,4,-395398.5232919813,3.4028234663852886E38,,,,,0,,1
+507626521,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,13,0.0,47,254212923395518,31,29.50225067138672,188.85487924030554,0.15678732136432427,4,105198.90612227196,3.4028234663852886E38,,,,,0,,1
+507626522,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,15,0.0,47,254212927657202,13,37.182456970214844,-50.00592932101469,0.06588414268054293,4,-62957.713519220655,3.4028234663852886E38,,,,,0,,1
+507626523,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,16,0.0,47,254212924074725,36,28.32016372680664,141.8969653076611,0.17967818421199944,4,72129.58394081511,3.4028234663852886E38,,,,,0,,1
+507626524,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,18,0.0,47,254212931006324,19,33.67062759399414,-190.01225129890713,0.09862868804567604,4,-146113.78523020897,3.4028234663852886E38,,,,,0,,1
+507626525,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,20,0.0,47,254212930192720,6,43.28278350830078,435.47171740423096,0.033792131573948725,4,291213.58234780456,3.4028234663852886E38,,,,,0,,1
+507626525,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,21,0.0,47,254212930184672,9,39.95347595214844,25.9625775254424,0.04871920325645393,4,10225.888121942713,3.4028234663852886E38,,,,,0,,1
+507626526,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,26,0.0,47,254212922704241,30,29.7022762298584,431.2300193601411,0.1531075310621005,4,279998.4748006455,3.4028234663852886E38,,,,,0,,1
+507626527,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,27,0.0,47,254212922208189,23,32.097755432128906,-584.5140612012851,0.11623243493704011,4,-412696.7368847991,3.4028234663852886E38,,,,,0,,1
+507626528,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,29,0.0,47,254212924762044,17,34.763267517089844,663.7446617359928,0.0860811934006071,4,451739.21073413384,3.4028234663852886E38,,,,,0,,1
+507626528,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,93,0.0,99,5921345677,92,26.21105194091797,75.98212491799148,0.22836860127256942,4,18866.369352243884,3.4028234663852886E38,,,,,0,,3
+507626528,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,94,0.0,227,5795919938306,64,29.320497512817383,541.2996535251225,0.16306543300532705,4,353433.3593789578,3.4028234663852886E38,,,,,0,,3
+507626529,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,96,0.0,227,5795928874665,33,40.368370056152344,669.2622024575576,0.04629656965864723,4,445729.0797836406,3.4028234663852886E38,,,,,0,,3
+507626529,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,97,0.0,227,5795936118646,33,40.552391052246094,60.42624419430689,0.046662519218375,4,17732.91342211163,3.4028234663852886E38,,,,,0,,3
+507626529,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,103,0.0,227,5795929111481,33,38.965579986572266,-588.5598532852819,0.054174006396621455,4,-410422.01502955076,3.4028234663852886E38,,,,,0,,3
+507626530,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,104,0.0,227,5795927833202,43,32.66960525512695,630.0881677548045,0.10986366695721506,4,419930.25021363224,3.4028234663852886E38,,,,,0,,3
+507626530,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,105,0.0,227,5795936165110,37,34.00679016113281,-35.898152530685394,0.09588756321108538,4,-58188.28807912778,3.4028234663852886E38,,,,,0,,3
+507626530,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,106,0.0,227,5795928119403,42,32.85643005371094,-701.781773854058,0.10760727686499166,4,-494890.27026475273,3.4028234663852886E38,,,,,0,,3
+507626531,707430000000,,,-1157840705570297127,0.0,9.883406518660914,,,0,26,0.0,5162,254212922399854,7,37.04146957397461,263.11561004731357,0.07390670860929904,4,168999.87700757978,3.4028234663852886E38,,,,,0,,6
+507627540,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,10,0.0,47,254213924070567,166,31.04500389099121,-561.9928170029468,0.13149318768161794,4,-395960.5744791121,3.4028234663852886E38,,,,,1,,1
+507627541,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,13,0.0,47,254213923394946,34,28.630002975463867,189.21879466982784,0.17328519405665244,4,105387.8305555712,3.4028234663852886E38,,,,,0,,1
+507627541,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,15,0.0,47,254213927657409,8,40.6630744934082,-49.77602611054007,0.04458642249204711,4,-63007.49242191066,3.4028234663852886E38,,,,,0,,1
+507627541,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,16,0.0,47,254213924074218,37,27.937044143676758,141.87039803280157,0.1877477216903335,4,72271.47252966768,3.4028234663852886E38,,,,,0,,1
+507627541,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,18,0.0,47,254213931006953,26,31.169654846191406,-189.67180164070078,0.1308777147661827,4,-146303.43511129287,3.4028234663852886E38,,,,,0,,1
+507627542,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,20,0.0,47,254213930191306,6,42.702964782714844,435.59526630912615,0.0359980719752791,4,291649.2474264573,3.4028234663852886E38,,,,,0,,1
+507627542,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,21,0.0,47,254213930184597,13,37.01485061645508,26.06159984256236,0.06759559623036426,4,10251.904008241512,3.4028234663852886E38,,,,,0,,1
+507627542,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,26,0.0,47,254213922702792,34,28.658580780029297,431.335947635014,0.17259349326421392,4,280429.8973549077,3.4028234663852886E38,,,,,0,,1
+507627542,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,27,0.0,47,254213922210275,15,35.45835494995117,-584.3319245536272,0.07906782931251727,4,-413281.0881454151,3.4028234663852886E38,,,,,0,,1
+507627543,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,29,0.0,47,254213924759921,29,30.155437469482422,663.6077865905972,0.14571887719029686,4,452402.8698603086,3.4028234663852886E38,,,,,0,,1
+507627543,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,93,0.0,99,6921345420,68,28.762842178344727,76.15609029669804,0.17029578984273375,4,18942.52376264379,3.4028234663852886E38,,,,,0,,3
+507627543,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,94,0.0,227,5796919936444,113,24.454753875732422,541.1807057518579,0.28283446366590415,4,353974.71861291904,3.4028234663852886E38,,,,,0,,3
+507627544,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,96,0.0,227,5796928872532,37,34.14698791503906,669.6182959633079,0.09308706034677139,4,446398.5596841094,3.4028234663852886E38,,,,,0,,3
+507627544,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,97,0.0,227,5796936118473,33,37.87348175048828,60.422929675410046,0.0624729763880667,4,17793.39213399554,3.4028234663852886E38,,,,,0,,3
+507627544,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,103,0.0,227,5796929113441,33,40.37208557128906,-588.6094773419791,0.04632040075129404,4,-411010.5754265142,3.4028234663852886E38,,,,,0,,3
+507627544,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,104,0.0,227,5796927831065,64,29.360122680664062,630.0359534314116,0.1601617341874496,4,420560.41926663823,3.4028234663852886E38,,,,,0,,3
+507627545,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,105,0.0,227,5796936165132,38,33.7894287109375,-35.71226894296352,0.09824371272011834,4,-58224.13894393891,3.4028234663852886E38,,,,,0,,3
+507627545,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,106,0.0,227,5796928121715,57,30.273698806762695,-701.2085069353443,0.1443645821564249,4,-495591.7303503916,3.4028234663852886E38,,,,,0,,3
+507627545,708430000000,,,-1157840705570297044,0.0,10.48884111705202,,,0,26,0.0,5162,254213922399020,7,37.072628021240234,263.2981216019932,0.07364345990885662,4,169263.14633273502,3.4028234663852886E38,,,,,0,,6
+507628507,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,10,0.0,47,254214924072462,44,26.50155258178711,-562.0071316346864,0.2213555533791446,4,-396522.58842735563,3.4028234663852886E38,,,,,0,,1
+507628508,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,13,0.0,47,254214923394304,43,26.633590698242188,189.48993765269506,0.21790508741817294,4,105576.97419841019,3.4028234663852886E38,,,,,0,,1
+507628509,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,15,0.0,47,254214927657553,9,39.787445068359375,-49.608131669401644,0.04916951438489667,4,-63057.14992485011,3.4028234663852886E38,,,,,0,,1
+507628510,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,16,0.0,47,254214924073784,37,27.89697265625,142.0258140345456,0.188612430890004,4,72413.5377784058,3.4028234663852886E38,,,,,0,,1
+507628511,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,18,0.0,47,254214931007606,24,31.534076690673828,-189.2011569985773,0.12558172039651472,4,-146492.80479721047,3.4028234663852886E38,,,,,0,,1
+507628512,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,20,0.0,47,254214930189824,7,42.01406478881836,435.82106258358976,0.03881786271415849,4,292085.0019991066,3.4028234663852886E38,,,,,0,,1
+507628512,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,21,0.0,47,254214930184479,9,39.52526092529297,26.034065477998993,0.0510886412623294,4,10277.956631588935,3.4028234663852886E38,,,,,0,,1
+507628513,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,26,0.0,47,254214922701333,54,24.7034969329834,431.4025447550596,0.2718506930948006,4,280861.3494923969,3.4028234663852886E38,,,,,0,,1
+507628514,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,27,0.0,47,254214922212196,23,32.244686126708984,-584.153809635839,0.11429015096085177,4,-413865.2937900487,3.4028234663852886E38,,,,,0,,1
+507628515,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,29,0.0,47,254214924757686,25,31.426984786987305,663.504244087681,0.12599089293485766,4,453066.4599324467,3.4028234663852886E38,,,,,0,,1
+507628516,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,93,0.0,99,7921345043,77,27.71247673034668,76.33838031541029,0.1921550093494394,4,19018.83931818311,3.4028234663852886E38,,,,,0,,3
+507628517,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,94,0.0,227,5797919934616,61,22.57953643798828,541.2036432450977,4.203585869621595,4,354516.51718826604,3.4028234663852886E38,,,,,0,,3
+507628517,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,96,0.0,227,5797928870231,34,34.824928283691406,669.3685397219087,0.086217265278419,4,447067.9596351831,3.4028234663852886E38,,,,,0,,3
+507628518,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,97,0.0,227,5797936118225,33,38.368431091308594,60.41234281235265,0.05917314806177784,4,17853.864796571695,3.4028234663852886E38,,,,,0,,3
+507628518,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,103,0.0,227,5797929115406,33,39.91756820678711,-588.5676240853691,0.04872110042444397,4,-411599.0973872888,3.4028234663852886E38,,,,,0,,3
+507628518,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,104,0.0,227,5797927828869,64,29.290266036987305,629.95892707967,0.1614432878065456,4,421190.5380511186,3.4028234663852886E38,,,,,0,,3
+507628519,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,105,0.0,227,5797936165301,34,34.750144958496094,-35.555858159519744,0.0882611975184947,4,-58259.85698149726,3.4028234663852886E38,,,,,0,,3
+507628519,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,106,0.0,227,5797928123983,61,29.69847869873047,-701.193033500083,0.15414915949775443,4,-496293.1075213309,3.4028234663852886E38,,,,,0,,3
+507628520,709430000000,,,-1157840705570296954,0.0,10.767424886506085,,,0,26,0.0,5162,254214922398115,7,36.69275665283203,263.2751159438403,0.07691624943083131,4,169526.38856704626,3.4028234663852886E38,,,,,0,,6
+507629494,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,10,0.0,47,254215924074281,42,26.904767990112305,-561.9211756793359,0.2113482085754057,4,-397084.4765146008,3.4028234663852886E38,,,,,0,,1
+507629494,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,13,0.0,47,254215923393631,21,32.914207458496094,189.2248613470889,0.10605351292297399,4,105765.9215561483,3.4028234663852886E38,,,,,0,,1
+507629495,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,15,0.0,47,254215927657714,16,35.290931701660156,-49.56525167878888,0.08157883099828106,4,-63106.745205448715,3.4028234663852886E38,,,,,0,,1
+507629495,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,16,0.0,47,254215924073370,27,30.708459854125977,142.10421220516218,0.13665958384319443,4,72555.53527651743,3.4028234663852886E38,,,,,0,,1
+507629495,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,18,0.0,47,254215931008229,19,33.75249099731445,-189.103613008009,0.09772242421029387,4,-146682.02193508504,3.4028234663852886E38,,,,,0,,1
+507629496,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,20,0.0,47,254215930188386,9,39.987552642822266,435.825186560829,0.048536288803203764,4,292520.72390225594,3.4028234663852886E38,,,,,0,,1
+507629496,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,21,0.0,47,254215930184400,11,38.36222839355469,26.201195194019192,0.05814601049478468,4,10304.002787425012,3.4028234663852886E38,,,,,0,,1
+507629497,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,26,0.0,47,254215922699861,43,26.62047576904297,431.7658296591362,0.21810851708054346,4,281293.10709829896,3.4028234663852886E38,,,,,0,,1
+507629497,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,27,0.0,47,254215922214098,9,40.1239013671875,-584.3909553683247,0.046374474199466276,4,-414449.6986776554,3.4028234663852886E38,,,,,0,,1
+507629497,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,29,0.0,47,254215924755479,12,37.23280715942383,663.6426870260766,0.06498934090176725,4,453730.2044959119,3.4028234663852886E38,,,,,0,,1
+507629498,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,93,0.0,99,8921344731,84,26.95755386352539,76.53266735881857,0.2095811463691044,4,19095.380297395706,3.4028234663852886E38,,,,,0,,3
+507629498,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,94,0.0,227,5798919933004,99,25.603397369384766,541.2816579880785,0.24824291709060875,4,355057.839566551,3.4028234663852886E38,,,,,0,,3
+507629498,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,96,0.0,227,5798928867946,33,42.17497253417969,669.1356883789449,0.03790123934304124,4,447737.1193748065,3.4028234663852886E38,,,,,0,,3
+507629499,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,97,0.0,227,5798936118078,33,38.22617721557617,60.66975482554824,0.06010234849174134,4,17914.439886196727,3.4028234663852886E38,,,,,0,,3
+507629499,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,103,0.0,227,5798929117350,33,39.318504333496094,-588.5544000922382,0.05208323990201971,4,-412187.7213773926,3.4028234663852886E38,,,,,0,,3
+507629499,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,104,0.0,227,5798927826973,36,34.16828155517578,630.09477975137,0.09267500877279444,4,421820.7390475733,3.4028234663852886E38,,,,,0,,3
+507629500,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,105,0.0,227,5798936165463,33,37.94456481933594,-35.636976536197565,0.06199588024313302,4,-58295.525817220965,3.4028234663852886E38,,,,,0,,3
+507629500,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,106,0.0,227,5798928126136,83,27.08599853515625,-701.060180084557,0.2077280459302724,4,-496994.4745512959,3.4028234663852886E38,,,,,0,,3
+507629500,710430000000,,,-1157840705570296868,0.0,10.945388394642277,,,0,26,0.0,5162,254215922397237,9,34.693870544433594,263.3451553919947,0.0967075807911309,4,169789.68102280152,3.4028234663852886E38,,,,,0,,6
+507630469,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,10,0.0,47,254216924076135,20,33.21062469482422,-561.767395635505,0.10263856061542992,4,-397646.3916013988,3.4028234663852886E38,,,,,0,,1
+507630471,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,13,0.0,47,254216923392961,27,30.733448028564453,189.07615958927988,0.13614674105929053,4,105954.97305885871,3.4028234663852886E38,,,,,0,,1
+507630472,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,15,0.0,47,254216927657873,14,36.169349670410156,-49.32319807256388,0.07386459647246751,4,-63156.17012192085,3.4028234663852886E38,,,,,0,,1
+507630473,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,16,0.0,47,254216924072891,14,36.398193359375,142.14166030426662,0.07133488937599491,4,72697.7406001236,3.4028234663852886E38,,,,,0,,1
+507630474,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,18,0.0,47,254216931008885,18,34.039276123046875,-189.16673371748925,0.09461299083735625,4,-146871.29102238792,3.4028234663852886E38,,,,,0,,1
+507630475,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,20,0.0,47,254216930186911,9,40.294532775878906,435.6753259994982,0.0469142309740008,4,292956.4735647781,3.4028234663852886E38,,,,,0,,1
+507630477,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,21,0.0,47,254216930184376,18,34.37086868286133,26.06586867024184,0.09099496666666784,4,10330.038959033656,3.4028234663852886E38,,,,,0,,1
+507630478,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,26,0.0,47,254216922698416,12,37.43755340576172,431.7979694156372,0.0631252402169579,4,281724.87709732004,3.4028234663852886E38,,,,,0,,1
+507630478,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,27,0.0,47,254216922216043,7,41.879791259765625,-584.3803216418896,0.03795975199789192,4,-415034.05665889604,3.4028234663852886E38,,,,,0,,1
+507630479,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,29,0.0,47,254216924753265,22,32.53581237792969,663.951133257608,0.11099314758426737,4,454394.11015005363,3.4028234663852886E38,,,,,0,,1
+507630479,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,93,0.0,99,9921344475,69,21.333873748779297,76.67542172796436,299.79269582029247,4,19171.727463462397,3.4028234663852886E38,,,,,0,,3
+507630480,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,94,0.0,227,5799919931243,58,30.152053833007812,541.3716356732987,0.14850426927798843,4,355599.265669048,3.4028234663852886E38,,,,,0,,3
+507630481,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,96,0.0,227,5799928865721,33,40.58172607421875,669.2999658193849,0.045210341133402915,4,448406.46208706894,3.4028234663852886E38,,,,,0,,3
+507630481,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,97,0.0,227,5799936117849,33,36.41947555541992,60.75772164583361,0.07332872140349156,4,17975.139810116034,3.4028234663852886E38,,,,,0,,3
+507630482,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,103,0.0,227,5799929119418,33,35.28606414794922,-588.482281614236,0.08188668810922611,4,-412776.16677647,3.4028234663852886E38,,,,,0,,3
+507630483,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,104,0.0,227,5799927824790,45,32.38058853149414,630.4338320288589,0.1135315833176766,4,422451.02506730816,3.4028234663852886E38,,,,,0,,3
+507630483,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,105,0.0,227,5799936165574,33,36.0347900390625,-35.58621923782097,0.07652661439442088,4,-58331.14143791854,3.4028234663852886E38,,,,,0,,3
+507630484,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,106,0.0,227,5799928128738,33,36.5821418762207,-701.3892121198282,0.0705849421978973,4,-497695.85936862545,3.4028234663852886E38,,,,,0,,3
+507630485,711430000000,,,-1157840705570296783,0.0,11.035655716852041,,,0,26,0.0,5162,254216922396400,8,36.270164489746094,263.4030785268552,0.08072911608246164,4,170053.1092121455,3.4028234663852886E38,,,,,0,,6
+507631490,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,10,0.0,47,254217924078048,26,30.891799926757812,-562.0971093199066,0.13382137892553453,4,-398208.45104269614,3.4028234663852886E38,,,,,0,,1
+507631490,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,13,0.0,47,254217923392315,45,26.2408390045166,188.94463538955836,0.22795573424919324,4,106144.01224941226,3.4028234663852886E38,,,,,0,,1
+507631491,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,15,0.0,47,254217927658034,26,31.171722412109375,-49.15734857881682,0.13024465144227843,4,-63205.41253128432,3.4028234663852886E38,,,,,0,,1
+507631491,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,16,0.0,47,254217924072451,16,35.21854019165039,142.360921267692,0.08160511676003779,4,72840.0979235352,3.4028234663852886E38,,,,,0,,1
+507631491,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,18,0.0,47,254217931009478,10,38.90087890625,-189.25362694039416,0.05490821456922276,4,-147060.5754548326,3.4028234663852886E38,,,,,0,,1
+507631492,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,20,0.0,47,254217930185479,11,38.64666748046875,435.7214395631736,0.056331939294800376,4,293392.2829113706,3.4028234663852886E38,,,,,0,,1
+507631492,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,21,0.0,47,254217930184217,12,37.89533996582031,26.31266612838411,0.06125581414831685,4,10356.307967026552,3.4028234663852886E38,,,,,0,,1
+507631492,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,26,0.0,47,254217922697106,22,32.44482421875,431.57581996402155,0.11178311835022503,4,282156.6206310843,3.4028234663852886E38,,,,,0,,1
+507631492,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,27,0.0,47,254217922218083,15,35.61302185058594,-584.3277664939314,0.07768079148899265,4,-415618.26661568665,3.4028234663852886E38,,,,,0,,1
+507631493,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,29,0.0,47,254217924751061,35,28.444019317626953,664.2986379843146,0.17726630123280296,4,455058.10747895995,3.4028234663852886E38,,,,,0,,1
+507631493,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,93,0.0,99,10921344253,72,20.415002822875977,76.84430882064902,4.2002417948444855,4,19248.24120182028,3.4028234663852886E38,,,,,0,,3
+507631493,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,94,0.0,227,5800919929396,61,29.696794509887695,541.582742409001,0.15630226210637976,4,356140.86901440105,3.4028234663852886E38,,,,,0,,3
+507631494,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,96,0.0,227,5800928863522,33,42.86262130737305,669.5386793448706,0.03513697821197556,4,449075.97683909495,3.4028234663852886E38,,,,,0,,3
+507631494,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,97,0.0,227,5800936117703,33,35.8644905090332,60.91433479386299,0.07797563469319901,4,18036.011834253528,3.4028234663852886E38,,,,,0,,3
+507631494,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,103,0.0,227,5800929121343,33,38.18051528930664,-588.5282247656287,0.059145297968520555,4,-413364.5807521885,3.4028234663852886E38,,,,,0,,3
+507631495,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,104,0.0,227,5800927822699,33,35.675804138183594,630.5865895989941,0.0781323424333587,4,423081.5425550984,3.4028234663852886E38,,,,,0,,3
+507631495,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,105,0.0,227,5800936165689,33,37.00950241088867,-35.64967012109878,0.06871194229745045,4,-58366.74488847392,3.4028234663852886E38,,,,,0,,3
+507631495,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,106,0.0,227,5800928130576,166,31.64537811279297,-701.6515107052278,0.12349048377037158,4,-498397.3988510894,3.4028234663852886E38,,,,,1,,3
+507631496,712430000000,,,-1157840705570296700,0.0,10.638498267708188,,,0,26,0.0,5162,254217922395496,9,35.204681396484375,263.4320145324431,0.09120859776744095,4,170316.53603873213,3.4028234663852886E38,,,,,0,,6
+507632473,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,10,0.0,47,254218924079953,21,32.99018859863281,-561.9641195745546,0.10525859953514755,4,-398770.231904023,3.4028234663852886E38,,,,,0,,1
+507632474,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,13,0.0,47,254218923391822,38,27.848392486572266,188.99172030324462,0.18954352432750143,4,106333.11452048774,3.4028234663852886E38,,,,,0,,1
+507632475,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,15,0.0,47,254218927658242,24,31.700904846191406,-49.35582776437741,0.12262792136605821,4,-63254.69055251529,3.4028234663852886E38,,,,,0,,1
+507632475,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,16,0.0,47,254218924071979,26,31.07666015625,142.28346036462978,0.13101773907730718,4,72982.42520540774,3.4028234663852886E38,,,,,0,,1
+507632476,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,18,0.0,47,254218931010121,12,37.70652770996094,-189.59821761706803,0.06271028048415411,4,-147249.98164878797,3.4028234663852886E38,,,,,0,,1
+507632477,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,20,0.0,47,254218930184014,9,40.24861526489258,435.91908372854937,0.047152658393240204,4,293828.171800881,3.4028234663852886E38,,,,,0,,1
+507632477,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,21,0.0,47,254218930184126,11,38.43758010864258,26.22836530232847,0.057659524200391526,4,10382.56424162614,3.4028234663852886E38,,,,,0,,1
+507632478,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,26,0.0,47,254218922695509,23,32.04409408569336,431.613072089001,0.11703790756249532,4,282588.3831746937,3.4028234663852886E38,,,,,0,,1
+507632479,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,27,0.0,47,254218922219958,12,37.345703125,-584.1645796921002,0.06370507882573812,4,-416202.3951293144,3.4028234663852886E38,,,,,0,,1
+507632479,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,29,0.0,47,254218924748796,52,25.101356506347656,664.5402144361483,0.26006947957855053,4,455722.01337522845,3.4028234663852886E38,,,,,0,,1
+507632480,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,93,0.0,99,11921343916,86,17.743427276611328,77.2850887102444,4.2002417948444855,4,19325.34562580589,3.4028234663852886E38,,,,,0,,3
+507632481,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,94,0.0,227,5801919927608,64,29.284269332885742,541.7826360165072,0.16373005754934633,4,356682.6442473738,3.4028234663852886E38,,,,,0,,3
+507632481,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,96,0.0,227,5801928861307,33,42.26842498779297,669.700639178267,0.0375115127765962,4,449745.6512253184,3.4028234663852886E38,,,,,0,,3
+507632482,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,97,0.0,227,5801936117437,33,38.40779495239258,60.89201930545468,0.0589185489496058,4,18096.945156782036,3.4028234663852886E38,,,,,0,,3
+507632482,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,103,0.0,227,5801929123263,33,41.85175323486328,-588.4423369751912,0.03932363688311705,4,-413952.96421865013,3.4028234663852886E38,,,,,0,,3
+507632483,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,104,0.0,227,5801927820609,36,34.284942626953125,630.5576876758628,0.09145623643652673,4,423712.0928378489,3.4028234663852886E38,,,,,0,,3
+507632484,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,105,0.0,227,5801936165802,33,38.107948303222656,-35.60051895848582,0.06089487793821188,4,-58402.19172075163,3.4028234663852886E38,,,,,0,,3
+507632484,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,106,0.0,227,5801928132992,166,28.7924861907959,-701.7690951802315,0.1709372988925586,4,-499098.9506634409,3.4028234663852886E38,,,,,1,,3
+507632485,713430000000,,,-1157840705570296613,0.0,10.308750238189585,,,0,26,0.0,5162,254218922394608,10,33.65787124633789,263.57729100337156,0.10890326726681887,4,170580.13699955193,3.4028234663852886E38,,,,,0,,6
+507633479,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,10,0.0,47,254219924081748,22,32.433128356933594,-561.9007943703352,0.11218213105472657,4,-399332.1103646292,3.4028234663852886E38,,,,,0,,1
+507633479,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,13,0.0,47,254219923391176,31,29.580997467041016,188.95624046600437,0.15537704323292167,4,106522.12663756232,3.4028234663852886E38,,,,,0,,1
+507633480,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,15,0.0,47,254219927658396,14,36.373905181884766,-49.17299242636079,0.07217753151641287,4,-63303.88628451119,3.4028234663852886E38,,,,,0,,1
+507633480,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,16,0.0,47,254219924071453,9,39.664306640625,142.61949634471642,0.049206837836735795,4,73125.03174393265,3.4028234663852886E38,,,,,0,,1
+507633480,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,18,0.0,47,254219931010733,25,31.46053695678711,-189.4900058176081,0.12663321743408174,4,-147439.2946861627,3.4028234663852886E38,,,,,0,,1
+507633481,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,20,0.0,47,254219930182537,9,40.2751350402832,435.9599145114637,0.047014231697265235,4,294264.12758491887,3.4028234663852886E38,,,,,0,,1
+507633481,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,21,0.0,47,254219930184031,10,38.83409118652344,26.128561218862018,0.05516825971845393,4,10408.755817830895,3.4028234663852886E38,,,,,0,,1
+507633481,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,26,0.0,47,254219922694120,23,32.07150650024414,431.494294728019,0.11667038118989864,4,283020.2032770419,3.4028234663852886E38,,,,,0,,1
+507633482,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,27,0.0,47,254219922221885,8,41.23528289794922,-584.0517667610097,0.04085392337125798,4,-416786.4082900672,3.4028234663852886E38,,,,,0,,1
+507633482,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,29,0.0,47,254219924746541,19,33.88455581665039,664.341104725142,0.09515137050091554,4,456386.1684331414,3.4028234663852886E38,,,,,0,,1
+507633483,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,93,0.0,99,12921343761,67,21.482887268066406,77.54414946227428,4.2002417948444855,4,19402.842202759748,3.4028234663852886E38,,,,,0,,3
+507633483,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,94,0.0,227,5802919925854,49,31.62571144104004,541.9342347831207,0.12588880366262173,4,357224.6091992168,3.4028234663852886E38,,,,,0,,3
+507633483,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,96,0.0,227,5802928858975,33,42.38542556762695,669.8907511207512,0.037030539086560066,4,450415.4684748682,3.4028234663852886E38,,,,,0,,3
+507633484,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,97,0.0,227,5802936117239,33,37.872344970703125,60.93293955481738,0.06248056922048298,4,18157.909605996356,3.4028234663852886E38,,,,,0,,3
+507633484,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,103,0.0,227,5802929125203,33,41.94757843017578,-588.4081863537554,0.03891054935556659,4,-414541.292635924,3.4028234663852886E38,,,,,0,,3
+507633484,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,104,0.0,227,5802927818450,44,32.62495040893555,630.4423526429896,0.11042000314938183,4,424342.52114606625,3.4028234663852886E38,,,,,0,,3
+507633485,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,105,0.0,227,5802936166006,35,34.401588439941406,-35.24281079635773,0.0917561387553732,4,-58437.40539620401,3.4028234663852886E38,,,,,0,,3
+507633485,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,106,0.0,227,5802928135646,33,36.33837890625,-701.4937770964402,0.07255355354040355,4,-499800.38329506834,3.4028234663852886E38,,,,,0,,3
+507633485,714430000000,,,-1157840705570296526,0.0,10.36621867311278,,,0,26,0.0,5162,254219922393707,10,34.36494827270508,263.38985453372436,0.10042273497036197,4,170843.64679398018,3.4028234663852886E38,,,,,0,,6
+507634500,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,10,0.0,47,254220924083685,166,34.689422607421875,-561.7767001461357,0.08668681435595371,4,-399893.9196891814,3.4028234663852886E38,,,,,1,,1
+507634500,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,13,0.0,47,254220923390485,12,37.5069465637207,189.08514031657364,0.06275127761874588,4,106711.37977890273,3.4028234663852886E38,,,,,0,,1
+507634500,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,15,0.0,47,254220927658541,9,39.81552505493164,-48.94320424417694,0.04901542773209164,4,-63352.814667325656,3.4028234663852886E38,,,,,0,,1
+507634501,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,16,0.0,47,254220924070996,7,41.96833419799805,142.9414733114874,0.03791246425364897,4,73267.89407551194,3.4028234663852886E38,,,,,0,,1
+507634501,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,18,0.0,47,254220931011417,12,37.51001739501953,-189.01259580786484,0.06410012661555872,4,-147628.40292792904,3.4028234663852886E38,,,,,0,,1
+507634501,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,20,0.0,47,254220930181094,11,38.519718170166016,435.8360929469163,0.05713354269606538,4,294700.0933272935,3.4028234663852886E38,,,,,0,,1
+507634501,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,21,0.0,47,254220930183978,14,36.41897964477539,26.090836199798332,0.0722653670659868,4,10434.877668205141,3.4028234663852886E38,,,,,0,,1
+507634502,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,26,0.0,47,254220922692717,166,30.067462921142578,431.8702583059221,0.14682171425636625,4,283452.191955486,3.4028234663852886E38,,,,,1,,1
+507634502,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,27,0.0,47,254220922223831,12,37.71682357788086,-584.1409946321864,0.06105788460893499,4,-417370.5013349272,3.4028234663852886E38,,,,,0,,1
+507634502,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,29,0.0,47,254220924744432,18,34.23695755004883,663.8249600035606,0.091401759424111,4,457050.0603575578,3.4028234663852886E38,,,,,0,,1
+507634502,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,93,0.0,99,13921343599,97,25.77812957763672,77.56232393221507,0.24002659872041376,4,19480.284090042933,3.4028234663852886E38,,,,,0,,3
+507634503,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,94,0.0,227,5803919923978,43,32.816307067871094,542.0316765263194,0.11022209025182444,4,357766.5858103782,3.4028234663852886E38,,,,,0,,3
+507634503,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,96,0.0,227,5803928856832,33,40.85129928588867,669.8838664645336,0.043875899796128465,4,451085.3608949554,3.4028234663852886E38,,,,,0,,3
+507634503,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,97,0.0,227,5803936117008,33,37.641014099121094,61.11551501410301,0.06408866871940835,4,18219.034118061176,3.4028234663852886E38,,,,,0,,3
+507634503,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,103,0.0,227,5803929127249,33,39.06462860107422,-588.2591778538376,0.05358117052292702,4,-415129.5203638696,3.4028234663852886E38,,,,,0,,3
+507634504,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,104,0.0,227,5803927816489,55,30.644775390625,630.344399662943,0.13833315227960064,4,424972.9354302166,3.4028234663852886E38,,,,,0,,3
+507634504,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,105,0.0,227,5803936166179,33,37.89277648925781,-34.49668830892803,0.06234938587861033,4,-58472.17977512235,3.4028234663852886E38,,,,,0,,3
+507634504,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,106,0.0,227,5803928138087,60,29.919279098510742,-701.0269837719038,0.15031919337147703,4,-500501.50922612357,3.4028234663852886E38,,,,,0,,3
+507634504,715430000000,,,-1157840705570296438,0.0,10.463358794506158,,,0,26,0.0,5162,254220922392861,6,39.545249938964844,263.6818730212118,0.055504965432124714,4,171107.2721245753,3.4028234663852886E38,,,,,0,,6
+507635515,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,10,0.0,47,254221924085480,166,30.115161895751953,-561.670260634415,0.1462708199408025,4,-400455.76520027185,3.4028234663852886E38,,,,,1,,1
+507635516,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,13,0.0,47,254221923389796,16,35.03120040893555,189.29261727065625,0.08324558460756515,4,106900.69071434136,3.4028234663852886E38,,,,,0,,1
+507635516,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,15,0.0,47,254221927658704,13,36.96049118041992,-48.70416693535421,0.06755411648286275,4,-63401.54210566417,3.4028234663852886E38,,,,,0,,1
+507635517,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,16,0.0,47,254221924070439,7,41.860572814941406,143.19928153324008,0.038376521529107255,4,73411.02389510568,3.4028234663852886E38,,,,,0,,1
+507635517,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,18,0.0,47,254221931012008,12,37.427398681640625,-188.6471977914838,0.06469391107324818,4,-147817.1570525567,3.4028234663852886E38,,,,,0,,1
+507635518,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,20,0.0,47,254221930179617,11,38.26967239379883,436.092597514707,0.05874843205937616,4,295136.242138882,3.4028234663852886E38,,,,,0,,1
+507635518,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,21,0.0,47,254221930183829,14,36.398990631103516,26.110635976884552,0.07242761653369634,4,10461.098431818042,3.4028234663852886E38,,,,,0,,1
+507635519,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,26,0.0,47,254221922691270,27,30.75617218017578,432.2334409626292,0.13566636647493546,4,283884.4731525753,3.4028234663852886E38,,,,,0,,1
+507635519,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,27,0.0,47,254221922225709,11,38.501434326171875,-583.9783531496596,0.05581908818998424,4,-417954.4537717988,3.4028234663852886E38,,,,,0,,1
+507635520,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,29,0.0,47,254221924742125,17,34.6209716796875,663.6105813520321,0.08748526413148089,4,457713.89300561376,3.4028234663852886E38,,,,,0,,1
+507635520,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,93,0.0,99,14921343262,71,28.424434661865234,77.43926922293946,0.1770515551297901,4,19557.704667289196,3.4028234663852886E38,,,,,0,,3
+507635521,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,94,0.0,227,5804919922146,44,32.643348693847656,542.0977624095171,0.11236648918624986,4,358308.67594643054,3.4028234663852886E38,,,,,0,,3
+507635521,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,96,0.0,227,5804928854568,33,37.830101013183594,670.0236727011902,0.06146467320592203,4,451755.3601308082,3.4028234663852886E38,,,,,0,,3
+507635522,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,97,0.0,227,5804936116777,33,36.19633865356445,61.59538748133005,0.07516125254727368,4,18280.541961747153,3.4028234663852886E38,,,,,0,,3
+507635522,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,103,0.0,227,5804929129125,33,39.48461151123047,-588.0674981183533,0.05112985474063933,4,-415717.57746567787,3.4028234663852886E38,,,,,0,,3
+507635523,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,104,0.0,227,5804927814411,60,29.88227081298828,630.5405782826883,0.15089653154613003,4,425603.5345724955,3.4028234663852886E38,,,,,0,,3
+507635523,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,105,0.0,227,5804936166198,33,38.439422607421875,-34.380420268807526,0.05872371895003223,4,-58506.6706191114,3.4028234663852886E38,,,,,0,,3
+507635524,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,106,0.0,227,5804928140195,42,32.945831298828125,-700.8042208360707,0.10652408547271386,4,-501202.39162128523,3.4028234663852886E38,,,,,0,,3
+507635524,716430000000,,,-1157840705570296347,0.0,10.750308101406697,,,0,26,0.0,5162,254221922391942,6,39.169349670410156,263.6813106606792,0.05794059213438951,4,171370.94705725147,3.4028234663852886E38,,,,,0,,6
+507636437,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,10,0.0,46,254222924087417,1000000000,25.429462432861328,-561.6034590196302,2.99792458E8,4,-401017.5454553953,3.4028234663852886E38,,,,,1,,1
+507636438,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,13,0.0,47,254222923389239,28,30.490192413330078,189.19251709584876,0.13999552076813582,4,107090.16288263442,3.4028234663852886E38,,,,,0,,1
+507636438,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,15,0.0,47,254222927658856,13,36.848426818847656,-48.41519882772556,0.06841347949642099,4,-63450.04946139883,3.4028234663852886E38,,,,,0,,1
+507636438,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,16,0.0,47,254222924070038,8,40.525630950927734,143.31722387403727,0.044630306983185125,4,73554.19290087261,3.4028234663852886E38,,,,,0,,1
+507636439,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,18,0.0,47,254222931012624,16,35.049461364746094,-188.61308125250446,0.08444318022218966,4,-148005.79095259623,3.4028234663852886E38,,,,,0,,1
+507636439,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,20,0.0,47,254222930178206,12,37.75080108642578,436.25465959547296,0.06225187726856088,4,295572.54171889264,3.4028234663852886E38,,,,,0,,1
+507636439,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,21,0.0,47,254222930183805,10,38.8720588684082,26.511520220966446,0.05493559453093866,4,10487.517931458311,3.4028234663852886E38,,,,,0,,1
+507636439,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,26,0.0,47,254222922689731,23,32.04646682739258,432.5333324975734,0.11700506492189583,4,284316.9172517392,3.4028234663852886E38,,,,,0,,1
+507636440,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,27,0.0,47,254222922227663,26,30.942501068115234,-583.4143566591201,0.1327139487159103,4,-418538.11271451804,3.4028234663852886E38,,,,,0,,1
+507636440,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,29,0.0,47,254222924739985,166,35.307350158691406,663.8727436076056,0.08090254053530549,4,458377.7632303238,3.4028234663852886E38,,,,,1,,1
+507636440,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,93,0.0,99,15921343013,71,28.451019287109375,77.41173911868316,0.17651117844729391,4,19635.187324057722,3.4028234663852886E38,,,,,0,,3
+507636441,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,94,0.0,227,5805919920334,55,30.649553298950195,542.1030792727347,0.1404350313524949,4,358850.8079051003,3.4028234663852886E38,,,,,0,,3
+507636441,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,96,0.0,227,5805928852316,33,41.785316467285156,670.2426865668058,0.03956424438136255,4,452425.57989395375,3.4028234663852886E38,,,,,0,,3
+507636441,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,97,0.0,227,5805936116668,33,38.76557922363281,61.7057848183145,0.05665776957617738,4,18342.148938000322,3.4028234663852886E38,,,,,0,,3
+507636441,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,103,0.0,227,5805929131054,33,35.71609878540039,-587.8105163961714,0.07801254625988241,4,-416305.4959888449,3.4028234663852886E38,,,,,0,,3
+507636442,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,104,0.0,227,5805927812067,33,36.80928039550781,630.7934019451745,0.06874384051451105,4,426234.3160150555,3.4028234663852886E38,,,,,0,,3
+507636442,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,105,0.0,227,5805936166309,33,36.38112258911133,-34.46559232765803,0.07364910980826556,4,-58541.14640461141,3.4028234663852886E38,,,,,0,,3
+507636442,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,106,0.0,227,5805928142853,49,31.680904388427734,-701.0734040776879,0.1229946156474312,4,-501903.6750694786,3.4028234663852886E38,,,,,0,,3
+507636442,717430000000,,,-1157840705570296253,0.0,10.563177414817657,,,0,26,0.0,5162,254222922391079,7,36.40787124633789,263.7784797442257,0.0794651528718347,4,171634.74677305183,3.4028234663852886E38,,,,,0,,6
+507637478,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,10,0.0,47,254223924089313,166,30.880483627319336,-561.7256446262645,0.13399691689008658,4,-401579.2095617323,3.4028234663852886E38,,,,,1,,1
+507637478,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,13,0.0,47,254223923388549,33,28.86410140991211,189.31834952533097,0.16869233341283663,4,107279.6806603957,3.4028234663852886E38,,,,,0,,1
+507637479,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,15,0.0,47,254223927659046,13,36.65614318847656,-48.45446181763984,0.06991407696970026,4,-63498.48673063774,3.4028234663852886E38,,,,,0,,1
+507637479,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,16,0.0,47,254223924069542,18,34.3441276550293,143.01106116709286,0.09017000646475354,4,73697.35354152595,3.4028234663852886E38,,,,,0,,1
+507637479,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,18,0.0,47,254223931013313,24,31.6030330657959,-188.33778020994146,0.12460537783827241,4,-148194.3250267999,3.4028234663852886E38,,,,,0,,1
+507637480,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,20,0.0,47,254223930176789,17,34.513572692871094,436.2617146639732,0.08954069587226815,4,296008.9079187795,3.4028234663852886E38,,,,,0,,1
+507637480,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,21,0.0,47,254223930183697,12,37.227779388427734,26.650067536885203,0.06600288209816513,4,10514.094360310783,3.4028234663852886E38,,,,,0,,1
+507637480,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,26,0.0,47,254223922688320,22,32.3171501159668,432.6401809987724,0.11342955229182633,4,284749.5071701029,3.4028234663852886E38,,,,,0,,1
+507637481,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,27,0.0,47,254223922229707,29,29.97235679626465,-583.1100003223714,0.14834956687767786,4,-419121.6436683474,3.4028234663852886E38,,,,,0,,1
+507637481,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,29,0.0,47,254223924737715,23,32.08956527709961,663.8948972043454,0.11679670927948099,4,459041.6897897505,3.4028234663852886E38,,,,,0,,1
+507637482,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,93,0.0,99,16921342812,79,27.543203353881836,77.75085956108512,0.19593135551726149,4,19712.894477182148,3.4028234663852886E38,,,,,0,,3
+507637482,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,94,0.0,227,5806919918465,66,29.12291145324707,542.2263214355212,0.16673122753316816,4,359393.04674768297,3.4028234663852886E38,,,,,0,,3
+507637482,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,96,0.0,227,5806928850129,33,42.092227935791016,670.1650467308468,0.03824554621004053,4,453095.6988274809,3.4028234663852886E38,,,,,0,,3
+507637483,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,97,0.0,227,5806936116422,33,38.36961364746094,61.5664983391199,0.05916515998603031,4,18403.752070837305,3.4028234663852886E38,,,,,0,,3
+507637483,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,103,0.0,227,5806929133045,33,36.72133255004883,-587.5317900667278,0.06966675033482336,4,-416893.2492945816,3.4028234663852886E38,,,,,0,,3
+507637483,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,104,0.0,227,5806927810083,33,39.75918197631836,630.927073339657,0.04935271590961901,4,426865.19466634927,3.4028234663852886E38,,,,,0,,3
+507637484,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,105,0.0,227,5806936166267,44,32.54472732543945,-34.06493601000413,0.11293308506320487,4,-58575.40636993527,3.4028234663852886E38,,,,,0,,3
+507637484,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,106,0.0,227,5806928145205,49,31.584129333496094,-701.0459336177305,0.12435664080877135,4,-502604.6342873551,3.4028234663852886E38,,,,,0,,3
+507637484,718430000000,,,-1157840705570296161,0.0,10.991716564468957,,,0,26,0.0,5162,254223922390200,9,35.13015365600586,263.70353242233205,0.09198993142649659,4,171898.47232192318,3.4028234663852886E38,,,,,0,,6
+507638526,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,10,0.0,47,254224924091120,15,35.50947189331055,-561.4806940112351,0.0789445549977259,4,-402140.7489194417,3.4028234663852886E38,,,,,0,,1
+507638527,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,13,0.0,47,254224923387978,28,30.478347778320312,189.55951698768638,0.14018548719450685,4,107469.2661526382,3.4028234663852886E38,,,,,0,,1
+507638528,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,15,0.0,47,254224927659176,19,33.629737854003906,-48.1718245263103,0.09848267267774091,4,-63546.84342959812,3.4028234663852886E38,,,,,0,,1
+507638529,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,16,0.0,47,254224924069079,14,36.5125732421875,142.973911289483,0.0704105858028829,4,73840.44737733268,3.4028234663852886E38,,,,,0,,1
+507638530,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,18,0.0,47,254224931013876,17,34.53921127319336,-188.4070868852806,0.08943273203599289,4,-148382.86694854798,3.4028234663852886E38,,,,,0,,1
+507638530,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,20,0.0,47,254224930175279,14,36.05596160888672,436.25762476919044,0.0752698820565279,4,296445.2919950448,3.4028234663852886E38,,,,,0,,1
+507638531,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,21,0.0,47,254224930183610,14,36.31419372558594,26.50765399230464,0.07312014109644632,4,10540.666822227839,3.4028234663852886E38,,,,,0,,1
+507638532,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,26,0.0,47,254224922686935,19,33.65867233276367,432.7147534136443,0.09726535650111467,4,285182.20826991065,3.4028234663852886E38,,,,,0,,1
+507638533,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,27,0.0,47,254224922231656,22,32.474082946777344,-583.2911826612467,0.11132510205705082,4,-419705.1555727381,3.4028234663852886E38,,,,,0,,1
+507638533,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,29,0.0,47,254224924735534,15,35.4492073059082,664.1982310673984,0.07960496916015325,4,459705.8992832618,3.4028234663852886E38,,,,,0,,1
+507638534,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,93,0.0,99,17921342555,95,25.949737548828125,77.90906180364988,0.2353354847449033,4,19790.519985871248,3.4028234663852886E38,,,,,0,,3
+507638535,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,94,0.0,227,5807919916583,87,26.691370010375977,542.3945865233743,0.21943640153897515,4,359935.4762020584,3.4028234663852886E38,,,,,0,,3
+507638536,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,96,0.0,227,5807928847839,33,40.52219772338867,670.1381215901938,0.0455070773451432,4,453765.8405278549,3.4028234663852886E38,,,,,0,,3
+507638537,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,97,0.0,227,5807936116187,36,34.24810791015625,61.51560897122428,0.0933310627772096,4,18465.252187907132,3.4028234663852886E38,,,,,0,,3
+507638537,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,103,0.0,227,5807929135026,34,34.82149124145508,-587.8317838490416,0.08629840249364212,4,-417481.0821975274,3.4028234663852886E38,,,,,0,,3
+507638538,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,104,0.0,227,5807927807891,36,34.224185943603516,631.0716511202268,0.0920860379628341,4,427496.1780508765,3.4028234663852886E38,,,,,0,,3
+507638539,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,105,0.0,227,5807936166473,33,35.805419921875,-34.394095854487304,0.07849671518021756,4,-58609.81729551309,3.4028234663852886E38,,,,,0,,3
+507638540,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,106,0.0,227,5807928147473,50,31.468835830688477,-701.024257175382,0.12599914727979677,4,-503305.4356390067,3.4028234663852886E38,,,,,0,,3
+507638541,719430000000,,,-1157840705570296075,0.0,10.672806594111924,,,0,26,0.0,5162,254224922389312,9,34.618778228759766,263.92183055636065,0.09754213500485448,4,172162.4087609506,3.4028234663852886E38,,,,,0,,6
+507639473,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,10,0.0,47,254225924092903,17,34.7073974609375,-561.4412606090382,0.08651077713666744,4,-402702.17915504565,3.4028234663852886E38,,,,,0,,1
+507639474,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,13,0.0,47,254225923387357,37,27.97207260131836,189.71811969911528,0.18687149634812694,4,107659.08498532162,3.4028234663852886E38,,,,,0,,1
+507639474,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,15,0.0,47,254225927659324,28,30.425870895385742,-48.34312721310101,0.1417996276757163,4,-63595.205475325856,3.4028234663852886E38,,,,,0,,1
+507639474,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,16,0.0,47,254225924068580,20,33.09557342529297,143.2468776837742,0.10399600095412748,4,73983.75217579269,3.4028234663852886E38,,,,,0,,1
+507639475,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,18,0.0,47,254225931014501,17,34.43806076049805,-188.70121848507245,0.09045721107152632,4,-148571.58219774748,3.4028234663852886E38,,,,,0,,1
+507639475,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,20,0.0,47,254225930173820,20,33.415164947509766,436.1602852733613,0.10136371365159697,4,296881.90749637655,3.4028234663852886E38,,,,,0,,1
+507639475,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,21,0.0,47,254225930183497,27,30.71476936340332,26.562381896866142,0.137659948875065,4,10567.703499408042,3.4028234663852886E38,,,,,0,,1
+507639476,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,26,0.0,47,254225922685403,16,34.924598693847656,432.5403875660736,0.08413931714911838,4,285614.73250719166,3.4028234663852886E38,,,,,0,,1
+507639476,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,27,0.0,47,254225922233567,12,37.56739044189453,-583.4204915012942,0.06211222323803095,4,-420288.7715128033,3.4028234663852886E38,,,,,0,,1
+507639477,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,29,0.0,47,254225924733231,9,39.96561050415039,664.5469627625398,0.047673164737314394,4,460370.3428354004,3.4028234663852886E38,,,,,0,,1
+507639477,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,93,0.0,99,18921342356,114,24.311521530151367,77.76133991646589,0.2841329586623147,4,19867.926259516542,3.4028234663852886E38,,,,,0,,3
+507639477,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,94,0.0,227,5808919914984,47,32.06730270385742,542.3413156438291,0.11982425655509416,4,360477.78802949237,3.4028234663852886E38,,,,,0,,3
+507639478,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,96,0.0,227,5808928845669,37,34.13829040527344,669.96055199171,0.09317393067052582,4,454436.35139814415,3.4028234663852886E38,,,,,0,,3
+507639478,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,97,0.0,227,5808936116053,166,30.27452850341797,61.56930588147597,0.14578892262950804,4,18526.964750971303,3.4028234663852886E38,,,,,1,,3
+507639479,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,103,0.0,227,5808929137035,33,39.25769805908203,-588.0328703425262,0.05244114313961429,4,-418069.0931852732,3.4028234663852886E38,,,,,0,,3
+507639479,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,104,0.0,227,5808927805857,46,32.109405517578125,631.1010301977494,0.11708404702084957,4,428127.22172327957,3.4028234663852886E38,,,,,0,,3
+507639479,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,105,0.0,227,5808936166420,46,32.09495162963867,-34.30266327440427,0.11878053957046875,4,-58644.12157534426,3.4028234663852886E38,,,,,0,,3
+507639480,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,106,0.0,227,5808928149851,84,26.968467712402344,-700.951116223684,0.21054236150889982,4,-504006.4806983273,3.4028234663852886E38,,,,,0,,3
+507639480,720430000000,,,-1157840705570295986,0.0,10.641431255834686,,,0,26,0.0,5162,254225922388373,16,30.254077911376953,263.42288043409496,0.16094231896440392,4,172426.72160664957,3.4028234663852886E38,,,,,0,,6
+507640511,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,10,0.0,47,254226924094627,25,31.490800857543945,-561.6299410883485,0.1249555967134161,4,-403263.6951480851,3.4028234663852886E38,,,,,0,,1
+507640512,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,13,0.0,47,254226923386722,33,28.96055793762207,190.008331816407,0.166835771474514,4,107849.12656102005,3.4028234663852886E38,,,,,0,,1
+507640513,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,15,0.0,47,254226927659500,38,27.84162139892578,-48.34618185326687,0.19045852512073247,4,-63643.518192100484,3.4028234663852886E38,,,,,0,,1
+507640513,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,16,0.0,47,254226924068021,14,36.107383728027344,143.34360369538592,0.07373786065818555,4,74127.15896553549,3.4028234663852886E38,,,,,0,,1
+507640514,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,18,0.0,47,254226931015121,13,36.925418853759766,-188.76982647005286,0.06842561138646255,4,-148760.26653982268,3.4028234663852886E38,,,,,0,,1
+507640515,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,20,0.0,47,254226930172327,16,35.06476974487305,436.8123849140122,0.08414681429104393,4,297318.629392807,3.4028234663852886E38,,,,,0,,1
+507640519,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,21,0.0,47,254226930183414,12,37.26333236694336,26.598441135867276,0.06574069847448905,4,10594.977421781216,3.4028234663852886E38,,,,,0,,1
+507640519,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,26,0.0,47,254226922684035,166,30.09795379638672,432.17124047947505,0.14630734874552298,4,286047.1017433234,3.4028234663852886E38,,,,,1,,1
+507640520,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,27,0.0,47,254226922235552,21,32.954254150390625,-583.112317929415,0.10536016458991254,4,-420872.1429136995,3.4028234663852886E38,,,,,0,,1
+507640521,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,29,0.0,47,254226924731021,10,38.79310607910156,664.5154705727127,0.0544396889638932,4,461034.77022373624,3.4028234663852886E38,,,,,0,,1
+507640522,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,93,0.0,99,19921342174,96,25.785614013671875,78.1409077141463,0.23981982405132396,4,19945.328779357933,3.4028234663852886E38,,,,,0,,3
+507640523,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,94,0.0,227,5809919913144,33,35.96394348144531,542.2972470275452,0.07780364975817217,4,361020.1658334184,3.4028234663852886E38,,,,,0,,3
+507640523,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,96,0.0,227,5809928843358,47,31.972000122070312,670.0489618839301,0.11911519833972922,4,455106.801140364,3.4028234663852886E38,,,,,0,,3
+507640524,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,97,0.0,227,5809936115827,33,35.66287612915039,61.8031669172143,0.07973833674148811,4,18588.77475499436,3.4028234663852886E38,,,,,0,,3
+507640525,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,103,0.0,227,5809929138946,33,38.355934143066406,-587.9751346611765,0.057998751150470124,4,-418657.0559055822,3.4028234663852886E38,,,,,0,,3
+507640526,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,104,0.0,227,5809927803706,49,31.658315658569336,631.6956327342464,0.12325007597401977,4,428758.64662747446,3.4028234663852886E38,,,,,0,,3
+507640527,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,105,0.0,227,5809936166697,38,33.780372619628906,-34.30078873929551,0.09834344717419119,4,-58678.31373078393,3.4028234663852886E38,,,,,0,,3
+507640528,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,106,0.0,227,5809928152096,63,22.317527770996094,-700.8636606402465,4.201466366856582,4,-504707.6585603642,3.4028234663852886E38,,,,,0,,3
+507640528,721430000000,,,-1157840705570295900,0.0,11.759159788188846,,,0,26,0.0,5162,254226922387466,26,25.970487594604492,263.6905299651686,0.26326795503333644,4,172691.41207239064,3.4028234663852886E38,,,,,0,,6
+507641450,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,10,0.0,47,254227924096533,30,29.800199508666992,-561.8202234431153,0.15164697797896187,4,-403825.37330525264,3.4028234663852886E38,,,,,0,,1
+507641450,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,13,0.0,47,254227923386044,29,30.158166885375977,190.33267751390633,0.14542623070692107,4,108039.40654171983,3.4028234663852886E38,,,,,0,,1
+507641450,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,15,0.0,47,254227927659627,17,34.55270767211914,-48.161190799875186,0.08869359372289115,4,-63691.6461185564,3.4028234663852886E38,,,,,0,,1
+507641451,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,16,0.0,47,254227924067624,16,35.094947814941406,143.81012436027015,0.0827632379670099,4,74270.8500596923,3.4028234663852886E38,,,,,0,,1
+507641451,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,18,0.0,47,254227931015754,17,34.88003921508789,-188.48281810367428,0.0860679964337992,4,-148948.81498583776,3.4028234663852886E38,,,,,0,,1
+507641451,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,20,0.0,47,254227930170921,166,30.677064895629883,437.06060744486786,0.13824860349036033,4,297755.25907812436,3.4028234663852886E38,,,,,1,,1
+507641451,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,21,0.0,47,254227930183359,36,28.29677963256836,26.28107595149453,0.18125939052257478,4,10621.414262691402,3.4028234663852886E38,,,,,0,,1
+507641452,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,26,0.0,47,254227922682453,35,28.561717987060547,432.0535537571018,0.17451986765620509,4,286479.39591198886,3.4028234663852886E38,,,,,0,,1
+507641452,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,27,0.0,47,254227922237529,35,28.482585906982422,-583.2421039238538,0.17603262614271875,4,-421455.61555680947,3.4028234663852886E38,,,,,0,,1
+507641452,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,29,0.0,47,254227924728858,20,33.295562744140625,664.4464876807106,0.10176433229216025,4,461699.1519928913,3.4028234663852886E38,,,,,0,,1
+507641452,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,93,0.0,99,20921341893,62,22.346633911132812,78.36744528203928,4.200241528575294,4,20023.69295050101,3.4028234663852886E38,,,,,0,,3
+507641453,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,94,0.0,227,5810919911345,34,34.852481842041016,542.0834477777776,0.08793530899073204,4,361562.4652237522,3.4028234663852886E38,,,,,0,,3
+507641453,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,96,0.0,227,5810928841171,33,37.31047058105469,670.3367541468087,0.06515338352606387,4,455777.0867612809,3.4028234663852886E38,,,,,0,,3
+507641453,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,97,0.0,227,5810936115568,40,33.47584533691406,62.30122663530332,0.10173958589916737,4,18650.899945617246,3.4028234663852886E38,,,,,0,,3
+507641453,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,103,0.0,227,5810929140879,33,36.23676681518555,-587.793611497736,0.07357090155414986,4,-419244.87345113023,3.4028234663852886E38,,,,,0,,3
+507641454,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,104,0.0,227,5810927801538,37,34.144290924072266,631.5214032165018,0.09292283050194944,4,429389.98245220917,3.4028234663852886E38,,,,,0,,3
+507641454,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,105,0.0,227,5810936166756,62,29.572032928466797,-34.440096520025435,0.15783485764766647,4,-58712.54006739465,3.4028234663852886E38,,,,,0,,3
+507641454,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,106,0.0,227,5810928154077,69,21.05768585205078,-700.7280124632857,4.201466633125774,4,-505408.58485579735,3.4028234663852886E38,,,,,0,,3
+507641455,722430000000,,,-1157840705570295781,0.0,10.754723489171962,,,0,26,0.0,5162,254227922386615,21,27.956708908081055,264.02152174168987,0.20954082322840384,4,172956.35619103123,3.4028234663852886E38,,,,,0,,6
+507642559,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,10,0.0,47,254228924098621,24,31.73626708984375,-561.7933664673753,0.1214949792395153,4,-404387.02448764537,3.4028234663852886E38,,,,,0,,1
+507642560,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,13,0.0,47,254228923385407,33,28.966238021850586,190.49669933592236,0.16672686737515596,4,108229.80156642277,3.4028234663852886E38,,,,,0,,1
+507642561,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,15,0.0,47,254228927659779,24,31.618799209594727,-47.9369154550339,0.1237797852470281,4,-63739.61451490217,3.4028234663852886E38,,,,,0,,1
+507642561,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,16,0.0,47,254228924067119,16,35.050071716308594,144.08404506334398,0.08318803717853396,4,74414.77999013066,3.4028234663852886E38,,,,,0,,1
+507642562,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,18,0.0,47,254228931016425,13,37.18177032470703,-188.2531193879388,0.06649347892320337,4,-149137.16390627017,3.4028234663852886E38,,,,,0,,1
+507642563,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,20,0.0,47,254228930169429,24,31.6730899810791,437.0648336694767,0.1234685248829781,4,298192.19845364045,3.4028234663852886E38,,,,,0,,1
+507642563,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,21,0.0,47,254228930183274,18,33.9957160949707,26.375899736001585,0.09493018401183123,4,10647.916284889769,3.4028234663852886E38,,,,,0,,1
+507642564,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,26,0.0,47,254228922681011,28,30.379833221435547,432.5851719139446,0.1416504004356577,4,286912.0568725837,3.4028234663852886E38,,,,,0,,1
+507642565,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,27,0.0,47,254228922239420,24,31.791141510009766,-583.4487799402082,0.12040007200280778,4,-422039.5472601203,3.4028234663852886E38,,,,,0,,1
+507642566,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,29,0.0,47,254228924726581,14,36.106109619140625,664.3612133744905,0.07386702617884072,4,462363.4933038558,3.4028234663852886E38,,,,,0,,1
+507642566,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,93,0.0,99,21921341584,67,21.40382194519043,78.31391026345608,4.200241262306102,4,20102.00896860765,3.4028234663852886E38,,,,,0,,3
+507642567,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,94,0.0,227,5811919909459,38,33.756229400634766,542.4226704675491,0.09928231234371798,4,362104.9282178821,3.4028234663852886E38,,,,,0,,3
+507642568,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,96,0.0,227,5811928839050,45,32.42581558227539,670.8169077943021,0.11313173020103912,4,456447.694200755,3.4028234663852886E38,,,,,0,,3
+507642569,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,97,0.0,227,5811936115365,33,39.19288635253906,62.39715170918677,0.05407686806716655,4,18713.15789999945,3.4028234663852886E38,,,,,0,,3
+507642569,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,103,0.0,227,5811929142799,37,34.147823333740234,-587.7032248230375,0.09312688423273774,4,-419832.623267876,3.4028234663852886E38,,,,,0,,3
+507642570,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,104,0.0,227,5811927799493,64,29.328723907470703,631.2092079147528,0.16073095115175928,4,430021.20997577684,3.4028234663852886E38,,,,,0,,3
+507642571,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,105,0.0,227,5811936166746,56,30.4359073638916,-34.16617794710514,0.14316775206572618,4,-58746.60298220528,3.4028234663852886E38,,,,,0,,3
+507642571,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,106,0.0,227,5811928156169,87,17.599868774414062,-700.6276055463695,4.201467165664157,4,-506109.2255533256,3.4028234663852886E38,,,,,0,,3
+507642572,723430000000,,,-1157840705570295694,0.0,11.769112702072546,,,0,26,0.0,5162,254228922385738,18,29.194782257080078,264.5250900368144,0.1817610416795199,4,173221.56984251502,3.4028234663852886E38,,,,,0,,6
+507643476,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,10,0.0,47,254229924100499,26,31.050209045410156,-561.5715237578684,0.13142023824403604,4,-404948.51418985246,3.4028234663852886E38,,,,,0,,1
+507643477,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,13,0.0,47,254229923384769,30,29.891342163085938,190.74683048434326,0.14994373716951848,4,108420.44667926457,3.4028234663852886E38,,,,,0,,1
+507643478,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,15,0.0,47,254229927659979,14,36.106605529785156,-47.610183985577976,0.07439047812584682,4,-63787.314742906405,3.4028234663852886E38,,,,,0,,1
+507643479,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,16,0.0,47,254229924066744,166,30.140432357788086,144.20631587611956,0.14584465609967157,4,74558.65158838424,3.4028234663852886E38,,,,,1,,1
+507643480,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,18,0.0,47,254229931017079,21,32.657779693603516,-187.99259309027843,0.11058407489687128,4,-149325.29376768987,3.4028234663852886E38,,,,,0,,1
+507643480,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,20,0.0,47,254229930167992,34,28.63317108154297,437.05716511675905,0.17444048615346397,4,298629.13045874453,3.4028234663852886E38,,,,,0,,1
+507643481,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,21,0.0,47,254229930183198,33,29.016387939453125,26.510825790914794,0.1669932697013362,4,10674.224787069714,3.4028234663852886E38,,,,,0,,1
+507643482,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,26,0.0,47,254229922679617,24,31.7595157623291,432.86110348195325,0.1209169421082344,4,287344.90602131747,3.4028234663852886E38,,,,,0,,1
+507643482,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,27,0.0,47,254229922241282,11,38.23043441772461,-583.6799953252589,0.05757821640646754,4,-422623.89237645577,3.4028234663852886E38,,,,,0,,1
+507643483,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,29,0.0,47,254229924724420,22,32.351200103759766,664.4340135016232,0.1133538985577674,4,463027.8682411229,3.4028234663852886E38,,,,,0,,1
+507643484,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,93,0.0,99,22921341174,68,21.22039031982422,78.54773295643082,4.200241262306102,4,20180.589125810016,3.4028234663852886E38,,,,,0,,3
+507643485,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,94,0.0,227,5812919907694,66,29.031864166259766,543.0532299956776,0.16844843083334526,4,362647.7668848103,3.4028234663852886E38,,,,,0,,3
+507643485,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,96,0.0,227,5812928836661,33,35.466888427734375,670.6841907086023,0.08018253199943665,4,457118.33639944263,3.4028234663852886E38,,,,,0,,3
+507643486,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,97,0.0,227,5812936115181,67,28.896839141845703,62.416531846027056,0.17034922674111985,4,18775.429175382134,3.4028234663852886E38,,,,,0,,3
+507643487,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,103,0.0,227,5812929144789,36,34.30037307739258,-587.6677790682538,0.09153456118341374,4,-420420.3337368122,3.4028234663852886E38,,,,,0,,3
+507643488,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,104,0.0,227,5812927797419,39,33.48078155517578,631.2302027079709,0.10018719490766881,4,430652.4349345961,3.4028234663852886E38,,,,,0,,3
+507643488,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,105,0.0,227,5812936166929,70,28.593555450439453,-33.88736641152029,0.176308647443445,4,-58780.40608812244,3.4028234663852886E38,,,,,0,,3
+507643489,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,106,0.0,227,5812928159023,33,35.50018310546875,-700.5243357031054,0.0797599378296554,4,-506809.7545580181,3.4028234663852886E38,,,,,0,,3
+507643490,724430000000,,,-1157840705570295576,0.0,11.207396168564749,,,0,26,0.0,5162,254229922384916,12,32.256492614746094,264.0476970682994,0.1278933447041674,4,173486.70830917856,3.4028234663852886E38,,,,,0,,6
+507644470,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,10,0.0,47,254230924102426,12,37.25640106201172,-561.2941266442292,0.06469789262975359,4,-405509.8481833074,3.4028234663852886E38,,,,,0,,1
+507644470,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,13,0.0,47,254230923384162,33,28.957399368286133,190.7627129090829,0.16689576525174288,4,108611.15723358079,3.4028234663852886E38,,,,,0,,1
+507644470,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,15,0.0,47,254230927660144,22,32.45471954345703,-47.524845774751924,0.11254909160529114,4,-63834.9041042538,3.4028234663852886E38,,,,,0,,1
+507644471,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,16,0.0,47,254230924066219,30,29.901199340820312,144.24808392658827,0.14989690707544856,4,74702.76247548421,3.4028234663852886E38,,,,,0,,1
+507644471,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,18,0.0,47,254230931017682,16,35.105533599853516,-187.9811243436585,0.08391345430735686,4,-149513.4292669813,3.4028234663852886E38,,,,,0,,1
+507644471,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,20,0.0,47,254230930166547,26,31.13178253173828,437.0104721513228,0.13128979130289636,4,299066.06062385364,3.4028234663852886E38,,,,,0,,1
+507644472,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,21,0.0,47,254230930183079,29,30.225101470947266,26.557007519503202,0.14553716510886494,4,10700.30396275209,3.4028234663852886E38,,,,,0,,1
+507644472,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,26,0.0,47,254230922678207,28,30.402976989746094,433.06174690350304,0.1412742619188957,4,287777.8775834585,3.4028234663852886E38,,,,,0,,1
+507644472,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,27,0.0,47,254230922243225,18,33.96631622314453,-583.5638423134292,0.09381761147844453,4,-423207.5168246099,3.4028234663852886E38,,,,,0,,1
+507644473,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,29,0.0,47,254230924722227,25,31.47157096862793,664.5661852680187,0.125343808873834,4,463692.3685855551,3.4028234663852886E38,,,,,0,,1
+507644473,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,93,0.0,99,23921340913,79,19.16628646850586,78.7167393377133,4.200241262306102,4,20259.335263534875,3.4028234663852886E38,,,,,0,,3
+507644473,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,94,0.0,227,5813919905909,97,25.731576919555664,543.3336263654908,0.2446541076427845,4,363190.92862959666,3.4028234663852886E38,,,,,0,,3
+507644473,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,96,0.0,227,5813928834366,34,34.6873893737793,670.5578129598157,0.08756146704574747,4,457788.88708615134,3.4028234663852886E38,,,,,0,,3
+507644474,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,97,0.0,227,5813936114980,33,35.009944915771484,62.41345164401881,0.08573699886592301,4,18837.811266896177,3.4028234663852886E38,,,,,0,,3
+507644474,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,103,0.0,227,5813929146814,33,39.40496063232422,-587.7601425254306,0.051588940271036,4,-421008.1171203949,3.4028234663852886E38,,,,,0,,3
+507644474,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,104,0.0,227,5813927795363,65,29.219425201416016,631.6777053621154,0.16274779050159127,4,431283.9767430164,3.4028234663852886E38,,,,,0,,3
+507644475,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,105,0.0,227,5813936167240,33,35.10871505737305,-33.577495107275496,0.08480972472714238,4,-58813.987725442836,3.4028234663852886E38,,,,,0,,3
+507644475,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,106,0.0,227,5813928161430,33,38.92066192626953,-700.4461505478421,0.0542754924027202,4,-507510.23140794935,3.4028234663852886E38,,,,,0,,3
+507644475,725430000000,,,-1157840705570295493,0.0,12.126636638127467,,,0,26,0.0,5162,254230922384031,22,27.40837287902832,264.6677591998189,0.22316704925679154,4,173751.8138481259,3.4028234663852886E38,,,,,0,,6
+507645468,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,10,0.0,47,254231924104308,20,33.276004791259766,-560.8600524779547,0.10187946043387158,4,-406070.84447460726,3.4028234663852886E38,,,,,0,,1
+507645469,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,13,0.0,47,254231923383502,35,28.414371490478516,190.74357560974533,0.17762351799513798,4,108801.82250197825,3.4028234663852886E38,,,,,0,,1
+507645470,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,15,0.0,47,254231927660358,18,34.1240119934082,-47.56710376053314,0.09311135741050347,4,-63882.48565272248,3.4028234663852886E38,,,,,0,,1
+507645471,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,16,0.0,47,254231924065739,21,32.94640350341797,144.1627584966834,0.10578424820298421,4,74846.90389310052,3.4028234663852886E38,,,,,0,,1
+507645472,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,18,0.0,47,254231931018288,13,37.050636291503906,-188.04323962067133,0.06747516766755796,4,-149701.52844438617,3.4028234663852886E38,,,,,0,,1
+507645472,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,20,0.0,47,254231930165104,25,31.23854637145996,436.82111002288207,0.1297079942075522,4,299502.8449032408,3.4028234663852886E38,,,,,0,,1
+507645473,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,21,0.0,47,254231930183017,24,31.74030113220215,26.68210930632371,0.12253336251939678,4,10726.55928147105,3.4028234663852886E38,,,,,0,,1
+507645474,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,26,0.0,47,254231922676759,43,26.686416625976562,433.1810355013329,0.21645846354211906,4,288210.9159929661,3.4028234663852886E38,,,,,0,,1
+507645475,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,27,0.0,47,254231922245315,20,33.072635650634766,-583.1185209365021,0.10394112453792437,4,-423790.81427165767,3.4028234663852886E38,,,,,0,,1
+507645476,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,29,0.0,47,254231924720046,32,29.247310638427734,664.1732145443107,0.16167747156054413,4,464356.5707325505,3.4028234663852886E38,,,,,0,,1
+507645477,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,93,0.0,99,24921340593,129,23.259716033935547,78.9010402213604,0.32067810565444077,4,20338.177316640456,3.4028234663852886E38,,,,,0,,3
+507645477,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,94,0.0,227,5814919904131,34,34.75432586669922,542.9936879441323,0.08889265490633724,4,363733.8960851643,3.4028234663852886E38,,,,,0,,3
+507645478,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,96,0.0,227,5814928832140,48,31.721622467041016,670.3517504276788,0.12255021236667674,4,458459.38935386325,3.4028234663852886E38,,,,,0,,3
+507645478,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,97,0.0,227,5814936114839,43,32.8353385925293,62.25915610303298,0.10930351978724373,4,18900.148578723754,3.4028234663852886E38,,,,,0,,3
+507645478,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,103,0.0,227,5814929148731,33,35.40107345581055,-587.5932066533819,0.08083643088758241,4,-421595.8235458956,3.4028234663852886E38,,,,,0,,3
+507645479,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,104,0.0,227,5814927793203,49,31.61136817932129,631.5468287290678,0.12390854304298365,4,431915.4204691481,3.4028234663852886E38,,,,,0,,3
+507645479,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,105,0.0,227,5814936167298,43,32.6746826171875,-33.36489087363974,0.11129936547550173,4,-58847.365903876045,3.4028234663852886E38,,,,,0,,3
+507645480,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,106,0.0,227,5814928163888,40,33.38960266113281,-700.4387205723201,0.10129552377581463,4,-508210.65486490115,3.4028234663852886E38,,,,,0,,3
+507645480,726430000000,,,-1157840705570295411,0.0,12.603273452882416,,,0,26,0.0,5162,254231922383156,166,26.20965576171875,263.4533331089981,0.25612859569215374,4,174016.99001259764,3.4028234663852886E38,,,,,1,,6
+507646471,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,10,0.0,47,254232924106183,26,31.115432739257812,-560.8646195271288,0.13044360445386544,4,-406631.75636292965,3.4028234663852886E38,,,,,0,,1
+507646472,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,13,0.0,47,254232923382852,34,28.776966094970703,190.86666440147746,0.17038595524773403,4,108992.59327717984,3.4028234663852886E38,,,,,0,,1
+507646472,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,15,0.0,47,254232927660534,31,29.6351375579834,-47.7928957746897,0.15518329911239503,4,-63930.15493059072,3.4028234663852886E38,,,,,0,,1
+507646472,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,16,0.0,47,254232924065249,17,34.573028564453125,144.50503156631373,0.08784303007402355,4,74991.29416451596,3.4028234663852886E38,,,,,0,,1
+507646473,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,18,0.0,47,254232931018970,15,35.71904373168945,-188.27242709955897,0.07832626961395456,4,-149889.7083601502,3.4028234663852886E38,,,,,0,,1
+507646473,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,20,0.0,47,254232930163642,24,31.693342208862305,436.8148729333384,0.12318419931183933,4,299939.7278984932,3.4028234663852886E38,,,,,0,,1
+507646473,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,21,0.0,47,254232930182887,16,34.972347259521484,26.796828724825957,0.08502928863834047,4,10753.379431763246,3.4028234663852886E38,,,,,0,,1
+507646474,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,26,0.0,47,254232922675314,60,23.82356834411621,433.2802495322708,0.30077751239555695,4,288644.25198537926,3.4028234663852886E38,,,,,0,,1
+507646474,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,27,0.0,47,254232922247146,20,33.14493942260742,-583.3614606865967,0.10308316359807806,4,-424374.0678347716,3.4028234663852886E38,,,,,0,,1
+507646474,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,29,0.0,47,254232924717846,13,36.854366302490234,663.9912142264789,0.06783862927452686,4,465020.6852495701,3.4028234663852886E38,,,,,0,,1
+507646475,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,93,0.0,99,25921340434,101,25.398204803466797,78.99156322588499,0.25074712891198714,4,20417.14101882925,3.4028234663852886E38,,,,,0,,3
+507646475,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,94,0.0,227,5815919902368,42,32.98360824584961,542.8343865423446,0.10818389112028004,4,364276.85641287477,3.4028234663852886E38,,,,,0,,3
+507646476,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,96,0.0,227,5815928830018,33,36.41371536254883,670.6298632729049,0.07206453352823422,4,459130.0567922063,3.4028234663852886E38,,,,,0,,3
+507646476,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,97,0.0,227,5815936114567,39,33.5538215637207,62.283793458791905,0.1008560048705433,4,18962.543242856747,3.4028234663852886E38,,,,,0,,3
+507646476,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,103,0.0,227,5815929150695,46,32.15480422973633,-587.4030265459846,0.1167228861461142,4,-422183.4954726944,3.4028234663852886E38,,,,,0,,3
+507646477,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,104,0.0,227,5815927791106,47,32.07040786743164,631.4639401948043,0.1176019322775691,4,432546.83967456594,3.4028234663852886E38,,,,,0,,3
+507646477,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,105,0.0,227,5815936167379,33,39.129634857177734,-32.86305439333728,0.05446024161711863,4,-58880.35043035017,3.4028234663852886E38,,,,,0,,3
+507646478,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,106,0.0,227,5815928166194,53,30.87691879272461,-700.3670792487092,0.13478495720440525,4,-508910.94094616186,3.4028234663852886E38,,,,,0,,3
+507646478,727430000000,,,-1157840705570295328,0.0,12.03587783363403,,,0,26,0.0,5162,254232922382288,16,30.256423950195312,264.01243876702654,0.1608978686512338,4,174280.88057042577,3.4028234663852886E38,,,,,0,,6
+507647464,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,10,0.0,47,254233924108086,22,32.41352844238281,-560.6621697353833,0.11243863981625701,4,-407192.55618232617,3.4028234663852886E38,,,,,0,,1
+507647465,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,13,0.0,47,254233923382250,32,29.303062438964844,190.9049730826091,0.16040783348777155,4,109183.56932201632,3.4028234663852886E38,,,,,0,,1
+507647465,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,15,0.0,47,254233927660651,14,36.235755920410156,-47.53018393950481,0.07331303648392479,4,-63977.580608285105,3.4028234663852886E38,,,,,0,,1
+507647465,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,16,0.0,47,254233924064774,31,29.43512725830078,144.54838445101075,0.15811929971157657,4,75135.7215360846,3.4028234663852886E38,,,,,0,,1
+507647466,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,18,0.0,47,254233931019471,28,30.387462615966797,-188.34021710558284,0.1430263298413459,4,-150077.9311742583,3.4028234663852886E38,,,,,0,,1
+507647466,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,20,0.0,47,254233930162160,23,32.076847076416016,436.7350859026185,0.11794229087171193,4,300376.5422806087,3.4028234663852886E38,,,,,0,,1
+507647466,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,21,0.0,47,254233930182811,19,33.62076187133789,26.952787915720805,0.09903700353005856,4,10780.339958127857,3.4028234663852886E38,,,,,0,,1
+507647467,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,26,0.0,47,254233922673796,37,27.976505279541016,433.4440157358629,0.18664812978003653,4,289077.5973870248,3.4028234663852886E38,,,,,0,,1
+507647468,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,27,0.0,47,254233922249160,18,34.1043586730957,-583.1446280981986,0.09234583348469816,4,-424957.3953287748,3.4028234663852886E38,,,,,0,,1
+507647468,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,29,0.0,47,254233924715581,12,37.72076416015625,664.3689160096646,0.06147856912935784,4,465685.13225243246,3.4028234663852886E38,,,,,0,,1
+507647469,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,93,0.0,99,26921340214,102,25.314804077148438,79.14524954296047,0.2531640377221748,4,20496.317047327117,3.4028234663852886E38,,,,,0,,3
+507647470,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,94,0.0,227,5816919900608,71,28.448423385620117,542.3353512139377,0.17990193354205275,4,364819.5457039863,3.4028234663852886E38,,,,,0,,3
+507647471,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,96,0.0,227,5816928827767,46,32.21886444091797,670.5377724753803,0.11581921843534998,4,459800.72139002336,3.4028234663852886E38,,,,,0,,3
+507647471,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,97,0.0,227,5816936114314,33,37.70192337036133,62.5961421315952,0.06366059106846292,4,19025.161132840596,3.4028234663852886E38,,,,,0,,3
+507647472,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,103,0.0,227,5816929152668,33,39.23577880859375,-587.5227241332927,0.0525723181605747,4,-422771.07133633486,3.4028234663852886E38,,,,,0,,3
+507647473,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,104,0.0,227,5816927788999,52,31.18547821044922,631.5801613715471,0.13006429566954114,4,433178.4415028675,3.4028234663852886E38,,,,,0,,3
+507647474,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,105,0.0,227,5816936167526,35,34.47911071777344,-33.01938423094681,0.09096694183425358,4,-58913.28325967675,3.4028234663852886E38,,,,,0,,3
+507647475,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,106,0.0,227,5816928168263,49,31.675687789916992,-700.2295906190961,0.12307219983312911,4,-509611.18579148274,3.4028234663852886E38,,,,,0,,3
+507647476,728430000000,,,-1157840705570295246,0.0,11.585957614085551,,,0,26,0.0,5162,254233922381407,15,30.707218170166016,264.1536594256288,0.15278186719896825,4,174545.02411965348,3.4028234663852886E38,,,,,0,,6
+507648433,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,10,0.0,47,254234924109910,22,32.60929489135742,-560.7819695700609,0.10994958869697447,4,-407753.5117499512,3.4028234663852886E38,,,,,0,,1
+507648433,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,13,0.0,47,254234923381646,22,32.419246673583984,190.91811186959865,0.11223442798813621,4,109374.5769120389,3.4028234663852886E38,,,,,0,,1
+507648433,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,15,0.0,47,254234927660775,32,29.355546951293945,-47.37277411405421,0.1602147383983994,4,-64024.79671179381,3.4028234663852886E38,,,,,0,,1
+507648434,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,16,0.0,47,254234924064357,37,27.973173141479492,144.59676449804488,0.1869696831125237,4,75279.88698537296,3.4028234663852886E38,,,,,0,,1
+507648434,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,18,0.0,47,254234931020095,46,26.141311645507812,-188.51023743994688,0.23194780838767215,4,-150266.37876293782,3.4028234663852886E38,,,,,0,,1
+507648434,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,20,0.0,47,254234930160728,22,32.40648651123047,436.8550902320353,0.11361794606578457,4,300813.4909333767,3.4028234663852886E38,,,,,0,,1
+507648435,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,21,0.0,47,254234930182682,15,35.412776947021484,26.839538303156104,0.08091577078576234,4,10807.215703543361,3.4028234663852886E38,,,,,0,,1
+507648435,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,26,0.0,47,254234922672369,57,24.246606826782227,433.37646430703467,0.28650178924159686,4,289510.87894659257,3.4028234663852886E38,,,,,0,,1
+507648435,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,27,0.0,47,254234922251059,21,32.642601013183594,-583.5376669868197,0.10919725341706482,4,-425540.82295045146,3.4028234663852886E38,,,,,0,,1
+507648436,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,29,0.0,47,254234924713402,11,38.23989486694336,664.5601867556707,0.05796064553288072,4,466349.76046633767,3.4028234663852886E38,,,,,0,,1
+507648436,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,93,0.0,99,27921339876,132,23.056982040405273,79.25501209419218,0.3282451099591326,4,20575.56053573633,3.4028234663852886E38,,,,,0,,3
+507648436,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,94,0.0,227,5817919898870,79,27.542354583740234,542.383680137287,0.19928827778286462,4,365362.1528628939,3.4028234663852886E38,,,,,0,,3
+507648437,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,96,0.0,227,5817928825523,47,31.955780029296875,670.8522172192597,0.11933165855066291,4,460471.5567636951,3.4028234663852886E38,,,,,0,,3
+507648437,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,97,0.0,227,5817936114121,72,28.327524185180664,62.827928397792704,0.1816922277353198,4,19088.006898200645,3.4028234663852886E38,,,,,0,,3
+507648438,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,103,0.0,227,5817929154600,33,35.0341911315918,-587.6328786327745,0.08425405420795457,4,-423358.6723586596,3.4028234663852886E38,,,,,0,,3
+507648438,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,104,0.0,227,5817927786955,52,31.126422882080078,631.5627793187205,0.1309416692976364,4,433810.0386771015,3.4028234663852886E38,,,,,0,,3
+507648438,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,105,0.0,227,5817936167688,37,34.027984619140625,-32.664193910294344,0.09566140913739557,4,-58946.08683982534,3.4028234663852886E38,,,,,0,,3
+507648439,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,106,0.0,227,5817928170585,88,26.61956214904785,-700.1744452044422,0.2191154639539935,4,-510311.4317727533,3.4028234663852886E38,,,,,0,,3
+507648439,729430000000,,,-1157840705570295165,0.0,11.188796188547816,,,0,26,0.0,5162,254234922380517,22,27.256166458129883,264.3638288937767,0.22710395574713904,4,174809.35258556876,3.4028234663852886E38,,,,,0,,6
+507649469,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,10,0.0,47,254235924111818,35,28.546113967895508,-560.4819417052906,0.17508990006991398,4,-408314.2383661945,3.4028234663852886E38,,,,,0,,1
+507649470,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,13,0.0,47,254235923380965,24,31.770376205444336,191.04346714468954,0.1208926200817656,4,109565.67686530767,3.4028234663852886E38,,,,,0,,1
+507649470,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,15,0.0,47,254235927660835,45,26.278255462646484,-47.153994565327224,0.2277462968881876,4,-64071.876701751105,3.4028234663852886E38,,,,,0,,1
+507649470,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,16,0.0,47,254235924063786,27,30.849550247192383,144.61590179738243,0.13446776402993027,4,75424.08727112769,3.4028234663852886E38,,,,,0,,1
+507649471,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,18,0.0,47,254235931020798,48,25.765460968017578,-188.44764500854274,0.2421172944872615,4,-150454.75388805912,3.4028234663852886E38,,,,,0,,1
+507649471,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,20,0.0,47,254235930159285,24,31.80300521850586,436.9333435522117,0.12166087326678465,4,301250.49022521917,3.4028234663852886E38,,,,,0,,1
+507649471,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,21,0.0,47,254235930182655,20,33.29500961303711,26.909190063367532,0.10275175830550226,4,10834.196687914467,3.4028234663852886E38,,,,,0,,1
+507649471,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,26,0.0,47,254235922670919,41,27.137989044189453,433.326942497707,0.20551584820293978,4,289944.28092747147,3.4028234663852886E38,,,,,0,,1
+507649472,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,27,0.0,47,254235922252917,27,30.817081451416016,-583.7350044100867,0.13464288594887047,4,-426124.3389489947,3.4028234663852886E38,,,,,0,,1
+507649472,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,29,0.0,47,254235924711210,13,37.19767761230469,664.7524799753724,0.06524129812430404,4,467014.51407584606,3.4028234663852886E38,,,,,0,,1
+507649472,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,93,0.0,99,28921339560,64,22.07559585571289,79.77018546576272,4.200240996036911,4,20655.210848929488,3.4028234663852886E38,,,,,0,,3
+507649472,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,94,0.0,227,5818919896924,62,29.57395362854004,542.6779139844484,0.15847159049386728,4,365904.9699173309,3.4028234663852886E38,,,,,0,,3
+507649473,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,96,0.0,227,5818928823236,33,36.42533874511719,671.1023824501372,0.07196905106031448,4,461142.6390410545,3.4028234663852886E38,,,,,0,,3
+507649473,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,97,0.0,227,5818936113868,121,23.833192825317383,62.9984088453198,0.3028622337474185,4,19151.033965897208,3.4028234663852886E38,,,,,0,,3
+507649473,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,103,0.0,227,5818929156608,33,38.22882843017578,-587.5448095651195,0.05883268545623205,4,-423946.2744193822,3.4028234663852886E38,,,,,0,,3
+507649473,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,104,0.0,227,5818927784846,59,30.043750762939453,631.5924992208083,0.14813773309394795,4,434441.6799620638,3.4028234663852886E38,,,,,0,,3
+507649474,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,105,0.0,227,5818936167826,50,31.48048210144043,-32.271242357968134,0.12727492618580027,4,-58978.5588207937,3.4028234663852886E38,,,,,0,,3
+507649474,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,106,0.0,227,5818928173093,127,23.402301788330078,-700.0160981114373,0.31668982585194194,4,-511011.41135857016,3.4028234663852886E38,,,,,0,,3
+507649474,730430000000,,,-1157840705570295087,0.0,11.856019971453014,,,0,26,0.0,5162,254235922379623,17,29.57768440246582,264.4817712345739,0.1739399000732852,4,175073.76992771678,3.4028234663852886E38,,,,,0,,6
+507650456,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,10,0.0,47,254236924113732,39,27.658126831054688,-560.6709289267096,0.19385765105320174,4,-408875.0346684844,3.4028234663852886E38,,,,,0,,1
+507650457,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,13,0.0,47,254236923380326,26,30.899520874023438,191.24078752672835,0.13357762612246343,4,109756.89393493658,3.4028234663852886E38,,,,,0,,1
+507650458,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,15,0.0,47,254236927661085,34,28.649036407470703,-46.964014692362014,0.17367457946569576,4,-64118.80010170572,3.4028234663852886E38,,,,,0,,1
+507650459,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,16,0.0,47,254236924063272,25,31.318994522094727,144.599576300708,0.12743147582862746,4,75568.45682331415,3.4028234663852886E38,,,,,0,,1
+507650460,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,18,0.0,47,254236931021470,23,31.93183708190918,-188.16285200183813,0.12005165044470728,4,-150642.84751108647,3.4028234663852886E38,,,,,0,,1
+507650461,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,20,0.0,47,254236930157847,26,31.02293586730957,437.22628226602524,0.13292077331047353,4,301687.65758901776,3.4028234663852886E38,,,,,0,,1
+507650462,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,21,0.0,47,254236930182518,17,34.55310821533203,26.996664818186858,0.08914340559659967,4,10861.192210027035,3.4028234663852886E38,,,,,0,,1
+507650463,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,26,0.0,47,254236922669459,59,24.062816619873047,433.21283443326865,0.2926178261540471,4,290377.5222198464,3.4028234663852886E38,,,,,0,,1
+507650463,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,27,0.0,47,254236922254880,25,31.265735626220703,-583.7842876422187,0.12788545647936672,4,-426708.02318997454,3.4028234663852886E38,,,,,0,,1
+507650464,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,29,0.0,47,254236924708948,13,36.75643539428711,664.765431308851,0.06859659781202096,4,467679.3188205097,3.4028234663852886E38,,,,,0,,1
+507650465,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,93,0.0,99,29921339342,84,18.12555694580078,80.04713098685295,4.200240996036911,4,20734.612674300315,3.4028234663852886E38,,,,,0,,3
+507650467,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,94,0.0,227,5819919894964,49,31.6155948638916,543.0038104337195,0.12602576587804298,4,366447.9675864921,3.4028234663852886E38,,,,,0,,3
+507650467,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,96,0.0,227,5819928820996,33,36.09895324707031,671.2457332622721,0.07466367031641247,4,461813.73340804054,3.4028234663852886E38,,,,,0,,3
+507650468,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,97,0.0,227,5819936113668,82,27.172992706298828,63.11555876900283,0.20710928625450353,4,19214.1548261368,3.4028234663852886E38,,,,,0,,3
+507650468,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,103,0.0,227,5819929158542,33,37.341461181640625,-587.497639445292,0.0649840696038651,4,-424533.7934256933,3.4028234663852886E38,,,,,0,,3
+507650468,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,104,0.0,227,5819927782725,64,29.393964767456055,631.6178565684613,0.1595357020343856,4,435073.33082675154,3.4028234663852886E38,,,,,0,,3
+507650468,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,105,0.0,227,5819936167924,34,34.70342254638672,-31.65174897744187,0.08872200963818055,4,-59010.55855126717,3.4028234663852886E38,,,,,0,,3
+507650469,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,106,0.0,227,5819928175451,82,27.137496948242188,-699.8126258459961,0.20651760282715392,4,-511710.82746786805,3.4028234663852886E38,,,,,0,,3
+507650469,731430000000,,,-1157840705570295009,0.0,12.262319150128878,,,0,26,0.0,5162,254236922378757,16,30.026002883911133,264.2687729225346,0.16521117992753487,4,175338.04447128822,3.4028234663852886E38,,,,,0,,6
+507651481,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,10,0.0,47,254237924115458,45,26.37266731262207,-560.8588936744329,0.22466136860178798,4,-409435.9294474795,3.4028234663852886E38,,,,,0,,1
+507651482,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,13,0.0,47,254237923379666,34,28.796592712402344,191.5957222289569,0.17000219477536294,4,109948.40119142713,3.4028234663852886E38,,,,,0,,1
+507651482,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,15,0.0,47,254237927661244,39,27.64740753173828,-46.68893518576641,0.19473424251554672,4,-64165.56162390628,3.4028234663852886E38,,,,,0,,1
+507651483,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,16,0.0,47,254237924062790,19,33.75801467895508,144.75896290863693,0.09641223833219031,4,75713.21723444825,3.4028234663852886E38,,,,,0,,1
+507651483,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,18,0.0,47,254237931022084,13,36.873870849609375,-187.80307759078335,0.06882237328420399,4,-150830.67256726534,3.4028234663852886E38,,,,,0,,1
+507651483,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,20,0.0,47,254237930156302,14,36.396522521972656,437.3659180903992,0.07244272731031876,4,302124.9498956329,3.4028234663852886E38,,,,,0,,1
+507651484,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,21,0.0,47,254237930182414,19,33.906646728515625,27.219436274634077,0.09588962679732016,4,10888.290176063718,3.4028234663852886E38,,,,,0,,1
+507651484,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,26,0.0,47,254237922668059,41,27.131183624267578,433.3941871844265,0.20567605904715125,4,290810.9616422555,3.4028234663852886E38,,,,,0,,1
+507651484,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,27,0.0,47,254237922256919,24,31.69364356994629,-583.6729743392152,0.12175775364796021,4,-427291.5588811393,3.4028234663852886E38,,,,,0,,1
+507651485,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,29,0.0,47,254237924706738,13,37.20519256591797,664.8121242742873,0.06518480745112695,4,468344.0551675415,3.4028234663852886E38,,,,,0,,1
+507651485,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,93,0.0,99,921339149,73,20.207908630371094,80.35889173728123,4.200240996036911,4,20814.684749169115,3.4028234663852886E38,,,,,0,,3
+507651486,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,94,0.0,227,5820919893106,37,33.966590881347656,543.4672977599732,0.09698947665589647,4,366991.2785203542,3.4028234663852886E38,,,,,0,,3
+507651486,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,96,0.0,227,5820928818809,33,37.83513259887695,671.1324431767903,0.06142355541810282,4,462484.8779806435,3.4028234663852886E38,,,,,0,,3
+507651487,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,97,0.0,227,5820936113522,37,34.00124740600586,63.166068969569636,0.09593764678183997,4,19277.336147701506,3.4028234663852886E38,,,,,0,,3
+507651487,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,103,0.0,227,5820929160478,33,37.06915283203125,-587.3489717699395,0.06700150389892204,4,-425121.23355776165,3.4028234663852886E38,,,,,0,,3
+507651488,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,104,0.0,227,5820927780518,60,29.938867568969727,631.663663390028,0.1499195565985577,4,435705.0672760025,3.4028234663852886E38,,,,,0,,3
+507651488,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,105,0.0,227,5820936167887,35,34.482173919677734,-31.790779838212543,0.09093597139890741,4,-59042.61315303385,3.4028234663852886E38,,,,,0,,3
+507651489,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,106,0.0,227,5820928177789,96,25.792407989501953,-699.5468508500312,0.24086210151813237,4,-512410.1416905156,3.4028234663852886E38,,,,,0,,3
+507651489,732430000000,,,-1157840705570294917,0.0,12.234611637567308,,,0,26,0.0,5162,254237922377879,17,29.840965270996094,264.44920544736635,0.1687591170544509,4,175602.37374942645,3.4028234663852886E38,,,,,0,,6
+507652468,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,10,0.0,47,254238924117275,36,28.319093704223633,-561.0419505484169,0.1797078732268611,4,-409996.9499594284,3.4028234663852886E38,,,,,0,,1
+507652469,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,13,0.0,47,254238923379010,25,31.258663177490234,191.71311925044972,0.12819151627326858,4,110140.04618314684,3.4028234663852886E38,,,,,0,,1
+507652469,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,15,0.0,47,254238927661406,65,23.172893524169922,-46.515566250049005,0.3250341364941667,4,-64212.13175043128,3.4028234663852886E38,,,,,0,,1
+507652469,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,16,0.0,47,254238924062378,26,31.188390731811523,144.92344484381601,0.12935083569160283,4,75858.08949021569,3.4028234663852886E38,,,,,0,,1
+507652470,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,18,0.0,47,254238931022685,166,30.828886032104492,-187.36614049816092,0.13603803666182618,4,-151018.31315824328,3.4028234663852886E38,,,,,1,,1
+507652470,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,20,0.0,47,254238930154835,17,34.51249694824219,437.38275482392146,0.08954760222942487,4,302562.3126254779,3.4028234663852886E38,,,,,0,,1
+507652470,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,21,0.0,47,254238930182284,18,34.09134292602539,27.150619534607458,0.09391066423999106,4,10915.421781893734,3.4028234663852886E38,,,,,0,,1
+507652471,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,26,0.0,47,254238922666649,37,27.918495178222656,433.5082611664084,0.18789436944759863,4,291244.48085115815,3.4028234663852886E38,,,,,0,,1
+507652471,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,27,0.0,47,254238922258869,32,29.182819366455078,-583.4759095756003,0.16243332658633003,4,-427875.0036051948,3.4028234663852886E38,,,,,0,,1
+507652471,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,29,0.0,47,254238924704502,13,37.120872497558594,664.9897620376842,0.06581203365509697,4,469008.9502752876,3.4028234663852886E38,,,,,0,,1
+507652472,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,93,0.0,99,1921338998,166,20.18486785888672,80.43062678764761,4.200240996036911,4,20894.663198492966,3.4028234663852886E38,,,,,1,,3
+507652472,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,94,0.0,227,5821919891408,166,30.24643325805664,544.1282929217766,0.14693096783403825,4,367535.0663235365,3.4028234663852886E38,,,,,1,,3
+507652472,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,96,0.0,227,5821928816525,33,38.373348236083984,671.1100850853113,0.05782790201996363,4,463155.96178481466,3.4028234663852886E38,,,,,0,,3
+507652473,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,97,0.0,227,5821936113274,33,36.076759338378906,63.27716073660574,0.07616234149850887,4,19340.60679106134,3.4028234663852886E38,,,,,0,,3
+507652473,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,103,0.0,227,5821929162432,40,33.35597229003906,-587.4666244098562,0.10186241088469794,4,-425708.72280056175,3.4028234663852886E38,,,,,0,,3
+507652473,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,104,0.0,227,5821927778311,60,29.90810775756836,631.6715023550282,0.15044603735761808,4,436336.8132986198,3.4028234663852886E38,,,,,0,,3
+507652474,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,105,0.0,227,5821936167971,40,33.47404479980469,-32.356467670656954,0.10176946629501049,4,-59074.86509212974,3.4028234663852886E38,,,,,0,,3
+507652474,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,106,0.0,227,5821928179892,77,27.693737030029297,-699.5953842681197,0.19379893869645737,4,-513109.8510187055,3.4028234663852886E38,,,,,0,,3
+507652475,733430000000,,,-1157840705570294823,0.0,11.381911347927494,,,0,26,0.0,5162,254238922377004,17,29.54343032836914,264.5094461892704,0.17462506062870542,4,175866.8864165223,3.4028234663852886E38,,,,,0,,6
+507653471,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,10,0.0,47,254239924119203,32,29.324832916259766,-560.8999289520864,0.16014038272664943,4,-410557.832255889,3.4028234663852886E38,,,,,0,,1
+507653471,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,13,0.0,47,254239923378394,33,29.11572265625,191.80548270762654,0.1638911670520794,4,110331.83592415373,3.4028234663852886E38,,,,,0,,1
+507653472,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,15,0.0,47,254239927661546,68,21.343273162841797,-46.50567381704326,4.201378231754168,4,-64258.71491261994,3.4028234663852886E38,,,,,0,,1
+507653472,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,16,0.0,47,254239924061921,35,28.410778045654297,145.44100398734315,0.17781879316351623,4,76003.33997789117,3.4028234663852886E38,,,,,0,,1
+507653472,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,18,0.0,47,254239931023317,27,30.754352569580078,-187.00883706520403,0.13719342028867232,4,-151205.55633785203,3.4028234663852886E38,,,,,0,,1
+507653473,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,20,0.0,47,254239930153393,15,35.66658020019531,437.2732819735702,0.07863308661086998,4,302999.62971196976,3.4028234663852886E38,,,,,0,,1
+507653473,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,21,0.0,47,254239930182263,25,31.403545379638672,27.385954636590398,0.1273047649770822,4,10942.706396219453,3.4028234663852886E38,,,,,0,,1
+507653473,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,26,0.0,47,254239922665178,50,25.377534866333008,433.5605777371709,0.2515822156640939,4,291678.07840384624,3.4028234663852886E38,,,,,0,,1
+507653473,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,27,0.0,47,254239922260887,25,31.241540908813477,-583.2780949979419,0.1282421240614941,4,-428458.2687666593,3.4028234663852886E38,,,,,0,,1
+507653474,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,29,0.0,47,254239924702168,17,34.7032585144043,664.9006023314205,0.08666124419264937,4,469673.85084795265,3.4028234663852886E38,,,,,0,,1
+507653474,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,93,0.0,99,2921338679,59,22.961956024169922,80.45621419188211,4.200240729767719,4,20975.07411067296,3.4028234663852886E38,,,,,0,,3
+507653474,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,94,0.0,227,5822919889679,80,27.39638328552246,544.4454301797214,0.20260341242721347,4,368079.1743012335,3.4028234663852886E38,,,,,0,,3
+507653475,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,96,0.0,227,5822928814353,33,37.71156311035156,671.2657055817945,0.062280118444693305,4,463827.1812775573,3.4028234663852886E38,,,,,0,,3
+507653475,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,97,0.0,227,5822936113075,38,33.73060989379883,63.24965193388476,0.09888215967423997,4,19403.957090806787,3.4028234663852886E38,,,,,0,,3
+507653475,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,103,0.0,227,5822929164419,42,33.03738021850586,-587.6165872185566,0.10560679642861764,4,-426296.2284706673,3.4028234663852886E38,,,,,0,,3
+507653476,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,104,0.0,227,5822927776244,47,31.897056579589844,631.7319646328997,0.11994165630584619,4,436968.5858287051,3.4028234663852886E38,,,,,0,,3
+507653476,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,105,0.0,227,5822936168330,166,30.667221069335938,-32.52411075367853,0.13948206223672638,4,-59107.35230396387,3.4028234663852886E38,,,,,1,,3
+507653477,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,106,0.0,227,5822928182090,96,25.863033294677734,-699.6067678085983,0.23892424426725412,4,-513809.5291280434,3.4028234663852886E38,,,,,0,,3
+507653477,734430000000,,,-1157840705570294734,0.0,11.271667418139254,,,0,26,0.0,5162,254239922376067,14,31.337759017944336,264.45123335352946,0.1421129100214399,4,176131.39275236402,3.4028234663852886E38,,,,,0,,6
+507654476,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,10,0.0,47,254240924121062,24,31.55960464477539,-560.854531119998,0.12398026098555448,4,-411118.63647154777,3.4028234663852886E38,,,,,0,,1
+507654477,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,13,0.0,47,254240923377785,37,28.07006072998047,191.8315557868665,0.18478031796836947,4,110523.67898692461,3.4028234663852886E38,,,,,0,,1
+507654477,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,15,0.0,47,254240927661761,64,23.2684326171875,-46.13304605957231,0.321493654904615,4,-64304.904652383666,3.4028234663852886E38,,,,,0,,1
+507654477,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,16,0.0,47,254240924061361,28,30.401569366455078,145.63737006059932,0.14154585649431184,4,76148.72189210558,3.4028234663852886E38,,,,,0,,1
+507654478,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,18,0.0,47,254240931023948,41,27.097156524658203,-186.71678449526007,0.20798449644541717,4,-151392.60993856512,3.4028234663852886E38,,,,,0,,1
+507654478,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,20,0.0,47,254240930151935,18,34.31312942504883,437.5226973904041,0.0915838293047691,4,303437.1006467512,3.4028234663852886E38,,,,,0,,1
+507654478,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,21,0.0,47,254240930182137,20,33.35054016113281,27.007961022370637,0.10210852682684435,4,10969.789948088177,3.4028234663852886E38,,,,,0,,1
+507654479,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,26,0.0,47,254240922663695,74,20.157085418701172,433.4704978045811,4.200479040694187,4,292111.95516893466,3.4028234663852886E38,,,,,0,,1
+507654479,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,27,0.0,47,254240922262843,30,29.92071533203125,-583.067465416631,0.14923775769168124,4,-429041.3644961643,3.4028234663852886E38,,,,,0,,1
+507654479,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,29,0.0,47,254240924700117,166,30.41912078857422,664.4777753757985,0.14137649264663965,4,470338.6476918143,3.4028234663852886E38,,,,,1,,1
+507654480,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,93,0.0,99,3921338389,61,22.581932067871094,80.32573802769866,4.200240729767719,4,21055.37200779906,3.4028234663852886E38,,,,,0,,3
+507654480,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,94,0.0,227,5823919887818,67,28.894742965698242,544.3250850257393,0.17106825340934473,4,368623.20475878555,3.4028234663852886E38,,,,,0,,3
+507654480,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,96,0.0,227,5823928812184,166,31.534992218017578,671.7526757205924,0.12517380431591957,4,464498.7072310289,3.4028234663852886E38,,,,,1,,3
+507654481,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,97,0.0,227,5823936112843,33,35.102806091308594,63.3185155372891,0.08485570608816412,4,19467.28429238986,3.4028234663852886E38,,,,,0,,3
+507654481,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,103,0.0,227,5823929166344,46,32.088134765625,-587.460285072943,0.11761236670151431,4,-426883.64132767427,3.4028234663852886E38,,,,,0,,3
+507654481,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,104,0.0,227,5823927774169,63,29.50779151916504,631.7635249876398,0.1574753609553785,4,437600.44380399224,3.4028234663852886E38,,,,,0,,3
+507654482,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,105,0.0,227,5823936168430,75,27.992725372314453,-32.64991549116482,0.18872814149557193,4,-59139.76506655472,3.4028234663852886E38,,,,,0,,3
+507654482,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,106,0.0,227,5823928184576,44,32.47270965576172,-699.6994039254273,0.11241340248944215,4,-514509.19832383737,3.4028234663852886E38,,,,,0,,3
+507654482,735430000000,,,-1157840705570294648,0.0,12.747750157590653,,,0,26,0.0,5162,254240922375206,15,30.879859924316406,264.36716897451595,0.14978246124854067,4,176395.85378554338,3.4028234663852886E38,,,,,0,,6
+507655474,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,10,0.0,47,254241924122969,34,28.727495193481445,-560.7552148416905,0.17148882559745238,4,-411679.4132053678,3.4028234663852886E38,,,,,0,,1
+507655475,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,13,0.0,47,254241923377144,34,28.815677642822266,191.83873014396454,0.16962996708735234,4,110715.52075997148,3.4028234663852886E38,,,,,0,,1
+507655475,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,15,0.0,47,254241927661899,66,21.76074981689453,-45.58055239810929,4.201378231754168,4,-64350.72023920159,3.4028234663852886E38,,,,,0,,1
+507655475,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,16,0.0,47,254241924060901,31,29.53385353088379,145.54585866483558,0.15633982270421765,4,76294.15791992997,3.4028234663852886E38,,,,,0,,1
+507655476,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,18,0.0,47,254241931024522,40,27.302892684936523,-186.74212480168478,0.20316256108771635,4,-151579.64237237765,3.4028234663852886E38,,,,,0,,1
+507655476,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,20,0.0,47,254241930150552,22,32.41721725463867,437.6025866684936,0.11347810481472931,4,303874.6345743321,3.4028234663852886E38,,,,,0,,1
+507655476,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,21,0.0,47,254241930182073,22,32.40093231201172,27.114602898676978,0.11369327528426626,4,10996.96942702516,3.4028234663852886E38,,,,,0,,1
+507655477,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,26,0.0,47,254241922662294,38,27.833688735961914,433.7142214511757,0.18973239239345718,4,292546.0167955423,3.4028234663852886E38,,,,,0,,1
+507655477,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,27,0.0,47,254241922264768,48,25.761472702026367,-583.0014817808028,0.24065258094800435,4,-429624.37667948194,3.4028234663852886E38,,,,,0,,1
+507655477,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,29,0.0,47,254241924697926,20,33.22430419921875,664.5394646221048,0.10259009130164931,4,471003.34870888805,3.4028234663852886E38,,,,,0,,1
+507655477,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,93,0.0,99,4921338103,70,20.945556640625,80.30237450375228,4.200240729767719,4,21135.825637213904,3.4028234663852886E38,,,,,0,,3
+507655478,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,94,0.0,227,5824919885952,92,26.189403533935547,544.3420240066312,0.23227278993600098,4,369167.22653161816,3.4028234663852886E38,,,,,0,,3
+507655478,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,96,0.0,227,5824928809860,33,37.513885498046875,671.6511781650674,0.06367645488764279,4,465170.2705485353,3.4028234663852886E38,,,,,0,,3
+507655478,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,97,0.0,227,5824936112688,46,32.23395538330078,63.15323266438173,0.11693132499765141,4,19530.646686811913,3.4028234663852886E38,,,,,0,,3
+507655479,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,103,0.0,227,5824929168343,49,31.645809173583984,-586.9243043616652,0.12367109749138822,4,-427470.7974762982,3.4028234663852886E38,,,,,0,,3
+507655479,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,104,0.0,227,5824927772185,33,35.31930160522461,632.1924867854359,0.08133788234263384,4,438232.5257128481,3.4028234663852886E38,,,,,0,,3
+507655480,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,105,0.0,227,5824936168542,115,24.25732421875,-32.55460603165231,0.28857669191701874,4,-59172.304716297745,3.4028234663852886E38,,,,,0,,3
+507655480,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,106,0.0,227,5824928186976,48,31.887737274169922,-699.6294667246425,0.12014279771735153,4,-515208.90197892,3.4028234663852886E38,,,,,0,,3
+507655480,736430000000,,,-1157840705570294561,0.0,13.639598840265938,,,0,26,0.0,5162,254241922374326,17,29.642738342285156,264.3558365577221,0.17264423418703523,4,176660.29784736116,3.4028234663852886E38,,,,,0,,6
+507656503,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,10,0.0,47,254242924124888,41,27.192777633666992,-560.5490159797275,0.20448814897437062,4,-412240.05259436835,3.4028234663852886E38,,,,,0,,1
+507656504,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,13,0.0,47,254242923376481,36,28.145803451538086,192.08555529410273,0.18318103863641533,4,110907.6007520667,3.4028234663852886E38,,,,,0,,1
+507656505,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,15,0.0,47,254242927662004,30,29.874595642089844,-45.64751590456248,0.15100127518936957,4,-64396.56176221459,3.4028234663852886E38,,,,,0,,1
+507656505,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,16,0.0,47,254242924060438,24,31.882892608642578,145.60212880055474,0.1194667402399186,4,76439.68228578118,3.4028234663852886E38,,,,,0,,1
+507656506,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,18,0.0,47,254242931025181,32,29.25139045715332,-186.9644276243548,0.16273607465716156,4,-151766.7990919938,3.4028234663852886E38,,,,,0,,1
+507656506,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,20,0.0,47,254242930149069,25,31.40650749206543,437.92827862302556,0.12725603771502225,4,304312.4459508975,3.4028234663852886E38,,,,,0,,1
+507656507,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,21,0.0,47,254242930181986,18,34.13986587524414,27.295395419455758,0.09339766335875466,4,11024.213463435042,3.4028234663852886E38,,,,,0,,1
+507656507,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,26,0.0,47,254242922660856,44,26.556299209594727,433.9720893172273,0.21971540172628223,4,292979.9104942173,3.4028234663852886E38,,,,,0,,1
+507656508,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,27,0.0,47,254242922266653,62,22.48953628540039,-582.9633094294973,4.200407680550843,4,-430207.35933084006,3.4028234663852886E38,,,,,0,,1
+507656508,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,29,0.0,47,254242924695596,11,37.98827362060547,664.6893592658921,0.05963616106275038,4,471668.1106343877,3.4028234663852886E38,,,,,0,,1
+507656508,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,93,0.0,99,5921337820,109,24.708477020263672,80.48691396459503,0.27144992467781703,4,21216.360534931948,3.4028234663852886E38,,,,,0,,3
+507656509,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,94,0.0,227,5825919884254,83,27.037940979003906,543.9806477201198,0.2109874637462822,4,369711.08940474084,3.4028234663852886E38,,,,,0,,3
+507656509,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,96,0.0,227,5825928807648,33,36.36796951293945,671.583354076587,0.07243265900651197,4,465841.82884623925,3.4028234663852886E38,,,,,0,,3
+507656509,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,97,0.0,227,5825936112500,48,31.8023681640625,63.5706149475742,0.12274050330862502,4,19594.282661912577,3.4028234663852886E38,,,,,0,,3
+507656510,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,103,0.0,227,5825929170276,36,34.23609924316406,-586.7363055314854,0.09220677439939318,4,-428057.7963899661,3.4028234663852886E38,,,,,0,,3
+507656510,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,104,0.0,227,5825927770085,33,35.500404357910156,632.4682820236185,0.07968800354336641,4,438864.8558600191,3.4028234663852886E38,,,,,0,,3
+507656510,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,105,0.0,227,5825936168609,166,30.292146682739258,-31.92227208563108,0.14550884072361014,4,-59204.419064530295,3.4028234663852886E38,,,,,1,,3
+507656511,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,106,0.0,227,5825928189425,33,35.003334045410156,-699.8418685936927,0.08437441620346298,4,-515908.6602788281,3.4028234663852886E38,,,,,0,,3
+507656511,737430000000,,,-1157840705570294480,0.0,14.340206040358192,,,0,26,0.0,5162,254242922373439,17,29.57338523864746,264.64127713110065,0.1740246735271559,4,176925.0125650239,3.4028234663852886E38,,,,,0,,6
+507657508,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,10,0.0,47,254243924126670,50,25.457748413085938,-560.7837759402566,0.24953688551076236,4,-412800.61367499316,3.4028234663852886E38,,,,,0,,1
+507657508,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,13,0.0,47,254243923375844,40,27.40046501159668,192.3255980353929,0.19953943619782666,1,111099.92301953334,0.003653980791568756,,,,,0,,1
+507657508,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,15,0.0,47,254243927662130,16,35.072021484375,-45.822848841837015,0.08362657421616132,1,-64442.45255815658,0.001602376694791019,,,,,0,,1
+507657509,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,16,0.0,47,254243924059922,18,33.919288635253906,145.69863327619908,0.09465156658648705,1,76585.3421327359,0.0018297899514436722,,,,,0,,1
+507657509,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,18,0.0,47,254243931025795,51,25.334369659423828,-187.53016232017694,0.25433710328752457,4,-151952.76763892645,3.4028234663852886E38,,,,,0,,1
+507657509,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,20,0.0,47,254243930147577,13,36.816673278808594,437.8612725135017,0.06910667389260605,1,304750.2571816104,0.001310786814428866,,,,,0,,1
+507657509,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,21,0.0,47,254243930181877,13,36.861446380615234,27.451043607934835,0.06876688944140757,1,11051.646240422215,0.0013040475314483047,,,,,0,,1
+507657510,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,26,0.0,47,254243922659343,39,27.531627655029297,434.1638031351681,0.19642911248727968,1,293414.04352189635,0.0035992171615362167,,,,,0,,1
+507657510,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,27,0.0,47,254243922268646,65,23.144683837890625,-582.3952912090881,0.3251169794963984,4,-430790.7218051811,3.4028234663852886E38,,,,,0,,1
+507657510,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,29,0.0,47,254243924693435,13,37.04621124267578,665.2133429524738,0.06637086612093485,1,472333.32113986823,0.0012766009895130992,,,,,0,,1
+507657511,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,93,0.0,99,6921337478,113,24.41958236694336,81.24222380421116,0.2806220329530289,4,21297.25859472707,3.4028234663852886E38,,,,,0,,3
+507657511,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,94,0.0,227,5826919882441,89,26.45582389831543,544.0259773872951,0.22536393650560804,4,370255.03315796074,3.4028234663852886E38,,,,,0,,3
+507657511,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,96,0.0,227,5826928805419,33,35.007415771484375,671.7324307414178,0.0844462922433663,1,466513.52213912987,0.0015897880075499415,,,,,0,,3
+507657512,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,97,0.0,227,5826936112228,41,33.21836853027344,64.05203816657303,0.10471276433422388,1,19658.288648501875,0.0019527148688212037,,,,,0,,3
+507657512,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,103,0.0,227,5826929172220,33,35.72233581542969,-587.1452950097591,0.07796515866469261,1,-428644.97971788584,0.001460580388084054,,,,,0,,3
+507657513,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,104,0.0,227,5826927767968,34,34.85816955566406,632.3517881872235,0.08569578538761308,1,439497.1816362046,0.0016128037823364139,,,,,0,,3
+507657513,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,105,0.0,227,5826936168486,43,32.709259033203125,-30.615388810878045,0.1108689496482177,4,-59235.807078651036,3.4028234663852886E38,,,,,0,,3
+507657513,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,106,0.0,227,5826928191649,33,36.71826171875,-699.4989990810732,0.06952145056534062,1,-516608.1220960757,0.0013009856920689344,,,,,0,,3
+507657513,738430000000,,,-1157840705570294397,0.0,14.464961421975106,,,0,26,0.0,1074,2372564,17,29.84306526184082,264.7003249870264,0.16871744592596793,4,177189.81298877878,3.4028234663852886E38,,,,,0,,6
+507658447,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,10,0.0,47,254244924128539,58,24.106096267700195,-560.6990810357975,0.2914282685406435,4,-413361.26573335513,3.4028234663852886E38,,,,,0,,1
+507658449,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,13,0.0,47,254244923375209,47,25.958776473999023,192.58201739704225,0.23545655401795185,4,111292.43816103834,3.4028234663852886E38,,,,,0,,1
+507658450,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,15,0.0,47,254244927662278,15,35.72450637817383,-45.94979321146329,0.077674484237517,4,-64488.34743883076,3.4028234663852886E38,,,,,0,,1
+507658451,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,16,0.0,47,254244924059409,15,35.80331039428711,145.99601975058886,0.07633733028285328,4,76731.20802061234,3.4028234663852886E38,,,,,0,,1
+507658452,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,18,0.0,47,254244931026361,70,20.924331665039062,-188.20266031105677,4.201983461626639,4,-152140.68061933166,3.4028234663852886E38,,,,,0,,1
+507658453,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,20,0.0,47,254244930146128,13,36.6235466003418,437.6681613148435,0.07061911618445471,4,305187.9998517062,3.4028234663852886E38,,,,,0,,1
+507658454,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,21,0.0,47,254244930181803,15,35.564361572265625,27.537238140481023,0.07954743837294653,4,11079.172451001892,3.4028234663852886E38,,,,,0,,1
+507658455,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,26,0.0,47,254244922657910,34,28.653106689453125,434.27682056099775,0.17269389339126573,4,293848.2566053389,3.4028234663852886E38,,,,,0,,1
+507658456,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,27,0.0,47,254244922270632,46,26.203947067260742,-582.5944690850074,0.22872164093696146,4,-431373.4186181016,3.4028234663852886E38,,,,,0,,1
+507658457,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,29,0.0,47,254244924691151,12,37.730796813964844,665.3356308064776,0.061404200976239526,4,472998.591973093,3.4028234663852886E38,,,,,0,,1
+507658457,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,93,0.0,99,7921337179,124,23.625932693481445,81.30905098083826,0.30744802161583284,4,21378.455543110955,3.4028234663852886E38,,,,,0,,3
+507658458,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,94,0.0,227,5827919880441,69,28.636398315429688,544.0185474117732,0.17612342393704905,4,370799.0153204915,3.4028234663852886E38,,,,,0,,3
+507658458,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,96,0.0,227,5827928803144,33,35.345458984375,671.6252754981101,0.08128293935913283,4,467185.1362484718,3.4028234663852886E38,,,,,0,,3
+507658458,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,97,0.0,227,5827936111988,33,34.91218566894531,64.28206066564547,0.08667405839749437,4,19722.505359915573,3.4028234663852886E38,,,,,0,,3
+507658459,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,103,0.0,227,5827929174179,33,37.536312103271484,-587.8291935823459,0.06358186275733241,4,-429232.5240591476,3.4028234663852886E38,,,,,0,,3
+507658459,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,104,0.0,227,5827927765864,34,34.781005859375,632.1721736413483,0.08644761309187626,4,440129.4220231282,3.4028234663852886E38,,,,,0,,3
+507658459,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,105,0.0,227,5827936168483,41,33.19457244873047,-30.690246666323333,0.10500221558730066,4,-59266.71900514459,3.4028234663852886E38,,,,,0,,3
+507658460,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,106,0.0,227,5827928193934,33,36.35721969604492,-699.4251083153317,0.07240999284157834,4,-517307.56022540166,3.4028234663852886E38,,,,,0,,3
+507658460,739430000000,,,-1157840705570294300,0.0,12.14103197925482,,,0,26,0.0,1074,2371679,16,30.33322525024414,264.9556366688388,0.1594833468545903,4,177454.69618581916,3.4028234663852886E38,,,,,0,,6
+507659476,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,10,0.0,47,254245924130375,54,24.824180603027344,-560.7571234592558,0.2683634819853903,4,-413921.91922877316,3.4028234663852886E38,,,,,0,,1
+507659477,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,13,0.0,47,254245923374577,66,21.623506546020508,192.77068083512427,4.200607116175339,4,111485.29278597285,3.4028234663852886E38,,,,,0,,1
+507659477,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,15,0.0,47,254245927662459,28,30.25425910949707,-46.08640421782084,0.14460216084261612,4,-64534.24267784908,3.4028234663852886E38,,,,,0,,1
+507659477,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,16,0.0,47,254245924058966,20,33.29997253417969,146.35749828446978,0.10159263026814946,4,76877.24095173899,3.4028234663852886E38,,,,,0,,1
+507659478,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,18,0.0,47,254245931027029,32,29.263107299804688,-187.7861897335763,0.16251969765535024,4,-152328.06934989168,3.4028234663852886E38,,,,,0,,1
+507659478,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,20,0.0,47,254245930144669,15,35.41638946533203,437.78261020384707,0.08087606339256731,4,305625.80389970855,3.4028234663852886E38,,,,,0,,1
+507659478,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,21,0.0,47,254245930181706,13,36.86554718017578,27.439875212963017,0.06873526997490692,4,11106.672899611152,3.4028234663852886E38,,,,,0,,1
+507659479,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,26,0.0,47,254245922656430,29,30.016277313232422,434.3234794439775,0.1476800662790877,4,294282.49116546905,3.4028234663852886E38,,,,,0,,1
+507659479,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,27,0.0,47,254245922272512,34,28.824357986450195,-582.7209831636201,0.16926243239384342,4,-431956.13848978764,3.4028234663852886E38,,,,,0,,1
+507659479,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,29,0.0,47,254245924688992,13,37.00312042236328,665.1678087905593,0.06669596832249111,4,473663.8378653663,3.4028234663852886E38,,,,,0,,1
+507659480,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,93,0.0,99,8921336923,75,19.945077896118164,80.88826897260765,4.2002404634985275,4,21459.48978332994,3.4028234663852886E38,,,,,0,,3
+507659480,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,94,0.0,227,5828919878669,63,29.5120792388916,544.199048101518,0.15957564241312328,4,371343.17562358594,3.4028234663852886E38,,,,,0,,3
+507659480,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,96,0.0,227,5828928800854,34,34.76817321777344,671.7756472962888,0.08675955577072969,4,467856.90322971233,3.4028234663852886E38,,,,,0,,3
+507659481,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,97,0.0,227,5828936111801,33,37.1536865234375,63.74620350327265,0.0676189613519258,4,19786.44496437154,3.4028234663852886E38,,,,,0,,3
+507659482,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,103,0.0,227,5828929176160,33,36.89515686035156,-587.5516942213371,0.06832671318406952,4,-429819.9507902304,3.4028234663852886E38,,,,,0,,3
+507659482,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,104,0.0,227,5828927763632,33,35.62073516845703,632.371896836572,0.07860971316839621,4,440761.7399193052,3.4028234663852886E38,,,,,0,,3
+507659482,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,105,0.0,227,5828936168669,37,34.11908721923828,-30.614847751880745,0.09469383682065108,4,-59297.55579661955,3.4028234663852886E38,,,,,0,,3
+507659483,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,106,0.0,227,5828928196449,33,35.64555358886719,-699.2812803488055,0.07846724250907405,4,-518006.8800831409,3.4028234663852886E38,,,,,0,,3
+507659483,740430000000,,,-1157840705570294211,0.0,11.440556000160635,,,0,26,0.0,1074,2370805,14,30.971837997436523,264.9794773471765,0.14820842756431363,4,177719.64795960498,3.4028234663852886E38,,,,,0,,6
+507660486,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,10,0.0,47,254246924132318,41,27.043657302856445,-560.4853840333994,0.20801764695976943,4,-414482.41026886646,3.4028234663852886E38,,,,,0,,1
+507660487,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,13,0.0,47,254246923373941,64,23.24919319152832,192.46531906590815,0.3214322798559548,4,111677.62226712103,3.4028234663852886E38,,,,,0,,1
+507660487,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,15,0.0,47,254246927662642,16,35.13117218017578,-45.814051307747064,0.08306849063242477,4,-64579.977695816175,3.4028234663852886E38,,,,,0,,1
+507660488,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,16,0.0,47,254246924058496,20,33.380271911621094,146.21196619511738,0.10066435761990039,4,77023.47405267546,3.4028234663852886E38,,,,,0,,1
+507660488,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,18,0.0,47,254246931027672,33,28.9066162109375,-187.46371857118572,0.1692457240020715,4,-152515.07649805522,3.4028234663852886E38,,,,,0,,1
+507660488,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,20,0.0,47,254246930143186,18,34.043724060058594,437.8579324327625,0.09440983576508954,4,306063.67485527316,3.4028234663852886E38,,,,,0,,1
+507660489,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,21,0.0,47,254246930181606,12,37.23513412475586,27.38175397382396,0.06594819706294347,4,11134.14487814814,3.4028234663852886E38,,,,,0,,1
+507660489,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,26,0.0,47,254246922655008,28,30.30788230895996,434.4649898034602,0.14281995457604346,4,294716.9363682546,3.4028234663852886E38,,,,,0,,1
+507660489,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,27,0.0,47,254246922274445,28,30.285795211791992,-582.726913511055,0.14311394904720165,4,-432538.87001698307,3.4028234663852886E38,,,,,0,,1
+507660490,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,29,0.0,47,254246924686777,10,39.27708053588867,665.2530830967794,0.05152744040869223,4,474329.1294372285,3.4028234663852886E38,,,,,0,,1
+507660490,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,93,0.0,99,9921336691,71,20.599021911621094,80.79906666327332,4.2002404634985275,4,21540.485693117567,3.4028234663852886E38,,,,,0,,3
+507660490,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,94,0.0,227,5829919876956,88,26.557016372680664,544.26175982152,0.2227940726866796,4,371887.4033864616,3.4028234663852886E38,,,,,0,,3
+507660490,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,96,0.0,227,5829928798586,166,30.06635284423828,671.9723712353384,0.14793871351506305,4,468528.9986625245,3.4028234663852886E38,,,,,1,,3
+507660491,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,97,0.0,227,5829936111570,33,35.489410400390625,63.69415533185526,0.08128757410724885,4,19850.332587803478,3.4028234663852886E38,,,,,0,,3
+507660491,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,103,0.0,227,5829929178182,45,32.37467575073242,-587.1568830449769,0.113851389258594,4,-430407.0695775976,3.4028234663852886E38,,,,,0,,3
+507660491,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,104,0.0,227,5829927761615,33,35.115997314453125,632.5241090874028,0.0832291175222481,4,441394.2496938077,3.4028234663852886E38,,,,,0,,3
+507660492,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,105,0.0,227,5829936168869,57,30.388904571533203,-30.854575230448063,0.1439291654608864,4,-59328.45491450713,3.4028234663852886E38,,,,,0,,3
+507660492,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,106,0.0,227,5829928198672,41,33.173824310302734,-699.0082117071447,0.10381279942940513,4,-518706.0365068887,3.4028234663852886E38,,,,,0,,3
+507660492,741430000000,,,-1157840705570294128,0.0,11.490219569174549,,,0,26,0.0,1074,2369922,12,32.28252410888672,264.91507854557665,0.12750923475348236,4,177984.55836827116,3.4028234663852886E38,,,,,0,,6
+507661508,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,10,0.0,47,254247924134237,36,28.213111877441406,-560.3091095682635,0.18190800563145004,4,-415042.7910229614,3.4028234663852886E38,,,,,0,,1
+507661508,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,13,0.0,47,254247923373290,48,25.82754898071289,192.2734007532282,0.23903131776592002,4,111869.43820574222,3.4028234663852886E38,,,,,0,,1
+507661509,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,15,0.0,47,254247927662796,26,31.162494659423828,-46.029188293933174,0.13038247903257233,4,-64625.69871044193,3.4028234663852886E38,,,,,0,,1
+507661509,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,16,0.0,47,254247924057832,29,30.100156784057617,146.57042843159604,0.14651748506315654,4,77169.84202318429,3.4028234663852886E38,,,,,0,,1
+507661509,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,18,0.0,47,254247931028303,24,31.65566635131836,-187.1167591637835,0.12386727131828806,4,-152702.08627435798,3.4028234663852886E38,,,,,0,,1
+507661510,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,20,0.0,47,254247930141696,16,34.98078536987305,438.0421481102683,0.08494111193136483,4,306501.66641452385,3.4028234663852886E38,,,,,0,,1
+507661510,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,21,0.0,47,254247930181527,13,36.93680953979492,27.49171249918068,0.06818859436184732,4,11161.729489677842,3.4028234663852886E38,,,,,0,,1
+507661510,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,26,0.0,47,254247922653556,37,28.101181030273438,434.5511161710933,0.18399134571188025,4,295151.47356328025,3.4028234663852886E38,,,,,0,,1
+507661511,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,27,0.0,47,254247922276352,10,38.852203369140625,-582.8071436137097,0.053634769679101746,4,-433121.58631762944,3.4028234663852886E38,,,,,0,,1
+507661511,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,29,0.0,47,254247924684513,13,36.87976837158203,665.5056340996134,0.06763700108965565,4,474994.56410867383,3.4028234663852886E38,,,,,0,,1
+507661511,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,93,0.0,99,10921336377,131,23.15435218811035,80.69389672305806,0.3245880690309648,4,21621.507066779806,3.4028234663852886E38,,,,,0,,3
+507661512,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,94,0.0,227,5830919875024,36,34.3131217956543,544.2538526916067,0.09333286009425279,4,372431.6446583915,3.4028234663852886E38,,,,,0,,3
+507661512,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,96,0.0,227,5830928796368,72,28.335145950317383,672.0714148539937,0.1802191433583522,4,469201.56331417215,3.4028234663852886E38,,,,,0,,3
+507661512,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,97,0.0,227,5830936111353,33,37.25630187988281,64.23729761930983,0.06685872952630323,4,19914.582654151473,3.4028234663852886E38,,,,,0,,3
+507661513,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,103,0.0,227,5830929180086,33,35.75881576538086,-586.7803400653129,0.07764671735338208,4,-430993.94184126623,3.4028234663852886E38,,,,,0,,3
+507661513,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,104,0.0,227,5830927759461,51,31.329906463623047,633.0193953455923,0.12793725415804214,4,442027.09135802917,3.4028234663852886E38,,,,,0,,3
+507661514,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,105,0.0,227,5830936169012,46,32.26274108886719,-30.961283141513917,0.11656414810336868,4,-59359.341602172695,3.4028234663852886E38,,,,,0,,3
+507661514,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,106,0.0,227,5830928200975,43,32.71714401245117,-698.8192585681822,0.10933781026657247,4,-519404.9866465771,3.4028234663852886E38,,,,,0,,3
+507661515,742430000000,,,-1157840705570294035,0.0,11.2527143343457,,,0,26,0.0,1074,2369040,14,31.330995559692383,264.91008546569606,0.14222199718086714,4,178249.57535482998,3.4028234663852886E38,,,,,0,,6
+507662483,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,10,0.0,47,254248924136120,60,23.83422088623047,-560.1092500432137,0.30067223621393424,4,-415603.0620332272,3.4028234663852886E38,,,,,0,,1
+507662484,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,13,0.0,47,254248923372649,45,26.311973571777344,192.39916501779737,0.22609789089038612,4,112061.52958485659,3.4028234663852886E38,,,,,0,,1
+507662484,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,15,0.0,47,254248927662905,16,35.347801208496094,-45.75545504437022,0.08105636091891893,4,-64671.27010713904,3.4028234663852886E38,,,,,0,,1
+507662485,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,16,0.0,47,254248924057492,17,34.57022476196289,146.2169933574545,0.08786977348595332,4,77316.07545614515,3.4028234663852886E38,,,,,0,,1
+507662486,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,18,0.0,47,254248931028959,23,32.06200408935547,-186.7686579940878,0.11829681165848216,4,-152888.87441403136,3.4028234663852886E38,,,,,0,,1
+507662487,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,20,0.0,47,254248930140286,14,36.486122131347656,438.23099900186116,0.07171514674431423,4,306939.87442087743,3.4028234663852886E38,,,,,0,,1
+507662487,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,21,0.0,47,254248930181452,12,37.22446060180664,27.733478534678767,0.06602700026228411,4,11189.401283761705,3.4028234663852886E38,,,,,0,,1
+507662488,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,26,0.0,47,254248922652092,46,26.10382843017578,434.6010128874427,0.23143717064551106,4,295586.01590745035,3.4028234663852886E38,,,,,0,,1
+507662488,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,27,0.0,47,254248922278256,17,34.584049224853516,-582.6463425838351,0.08741114144527357,4,-433704.18842717743,3.4028234663852886E38,,,,,0,,1
+507662489,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,29,0.0,47,254248924682296,12,37.66620635986328,665.3727125191745,0.06185461195562911,4,475659.9585159233,3.4028234663852886E38,,,,,0,,1
+507662489,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,93,0.0,99,11921336104,66,21.679290771484375,80.96848203403408,4.2002404634985275,4,21702.72152454125,3.4028234663852886E38,,,,,0,,3
+507662490,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,94,0.0,227,5831919873180,48,31.83182716369629,544.5067104365494,0.12301119090460733,4,372976.0788778537,3.4028234663852886E38,,,,,0,,3
+507662490,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,96,0.0,227,5831928794174,52,31.09269142150879,672.2611859719127,0.131626913062179,4,469874.25732208695,3.4028234663852886E38,,,,,0,,3
+507662490,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,97,0.0,227,5831936111136,33,36.6684684753418,64.7859229219575,0.0713372025895968,4,19979.271212270614,3.4028234663852886E38,,,,,0,,3
+507662491,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,103,0.0,227,5831929182026,48,31.793367385864258,-586.2302492170347,0.12161812041971087,4,-431580.4704762438,3.4028234663852886E38,,,,,0,,3
+507662491,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,104,0.0,227,5831927757379,33,35.39265823364258,633.2028952915111,0.08066291490470395,4,442660.0674924363,3.4028234663852886E38,,,,,0,,3
+507662492,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,105,0.0,227,5831936169128,51,31.244308471679688,-30.900220160346237,0.13070315866927462,4,-59390.06374611597,3.4028234663852886E38,,,,,0,,3
+507662492,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,106,0.0,227,5831928203257,64,29.307823181152344,-698.6304417590459,0.1611874197552574,4,-520103.72380831256,3.4028234663852886E38,,,,,0,,3
+507662493,743430000000,,,-1157840705570293944,0.0,11.107626060258594,,,0,26,0.0,1074,2368154,8,36.07912826538086,265.0545269164397,0.08250967480841137,4,178514.60424076472,3.4028234663852886E38,,,,,0,,6
+507663448,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,10,0.0,47,254249924137880,51,25.20187759399414,-560.4320449889412,0.25697696262019076,4,-416163.3985067144,3.4028234663852886E38,,,,,0,,1
+507663448,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,13,0.0,47,254249923372044,30,29.719228744506836,192.91922922187894,0.152930046004085,4,112254.44306920952,3.4028234663852886E38,,,,,0,,1
+507663448,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,15,0.0,47,254249927663087,15,35.437469482421875,-45.31436841266614,0.08023804080496977,4,-64716.60334156125,3.4028234663852886E38,,,,,0,,1
+507663448,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,16,0.0,47,254249924057019,14,36.177005767822266,146.39853356212325,0.07315301702069477,4,77462.44344262217,3.4028234663852886E38,,,,,0,,1
+507663448,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,18,0.0,47,254249931029539,15,35.91508483886719,-186.40487889439157,0.07662437679229356,4,-153075.43061010743,3.4028234663852886E38,,,,,0,,1
+507663449,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,20,0.0,47,254249930138833,11,38.4541015625,438.31122910451586,0.05754528639628956,4,307378.0984555754,3.4028234663852886E38,,,,,0,,1
+507663449,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,21,0.0,47,254249930181388,14,36.559104919433594,27.88858992446761,0.07113774200236334,4,11217.17359333735,3.4028234663852886E38,,,,,0,,1
+507663449,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,26,0.0,47,254249922650659,39,27.58184814453125,434.6590893933576,0.1952978844686576,4,296020.6635658506,3.4028234663852886E38,,,,,0,,1
+507663449,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,27,0.0,47,254249922279931,166,30.40627098083496,-582.7787188449697,0.14114923189162232,4,-434286.8909063499,3.4028234663852886E38,,,,,1,,1
+507663450,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,29,0.0,47,254249924680085,9,39.769737243652344,665.5508274369627,0.04873147244154741,4,476325.47976704524,3.4028234663852886E38,,,,,0,,1
+507663450,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,93,0.0,99,12921335806,62,22.37272071838379,81.34150600006211,4.200240197229336,4,21784.239531294388,3.4028234663852886E38,,,,,0,,3
+507663450,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,94,0.0,227,5832919871351,75,27.96453094482422,545.120910385547,0.1899983620322011,4,373520.83998183627,3.4028234663852886E38,,,,,0,,3
+507663450,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,96,0.0,227,5832928791893,51,31.215396881103516,672.1007257666033,0.1298022535013731,4,470546.3273931531,3.4028234663852886E38,,,,,0,,3
+507663450,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,97,0.0,227,5832936110952,33,35.99570846557617,65.12672192534322,0.07684879179532583,4,20044.20970670357,3.4028234663852886E38,,,,,0,,3
+507663451,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,103,0.0,227,5832929184052,56,30.506393432617188,-586.0485215588551,0.140778102564027,4,-432166.84834008006,3.4028234663852886E38,,,,,0,,3
+507663451,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,104,0.0,227,5832927755288,33,36.24457931518555,633.2555867692954,0.07325702842365744,4,443293.1185824397,3.4028234663852886E38,,,,,0,,3
+507663451,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,105,0.0,227,5832936169243,67,28.976238250732422,-30.820669576668465,0.16883520347594616,4,-59420.741755698626,3.4028234663852886E38,,,,,0,,3
+507663451,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,106,0.0,227,5832928205576,49,31.702590942382812,-698.8653380494011,0.12270285118075253,4,-520802.6406536876,3.4028234663852886E38,,,,,0,,3
+507663452,744430000000,,,-1157840705570293856,0.0,10.892995428868565,,,0,26,0.0,1074,2367298,8,35.558074951171875,265.0284879196563,0.0875842913080136,4,178779.63075795662,3.4028234663852886E38,,,,,0,,6
+507664488,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,10,0.0,47,254250924139753,52,25.043682098388672,-560.4940068948997,0.26168683193188347,4,-416723.7989206479,3.4028234663852886E38,,,,,0,,1
+507664489,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,13,0.0,47,254250923371400,62,23.998653411865234,193.22128499281234,299.7930707273142,4,112447.64257827525,3.4028234663852886E38,,,,,0,,1
+507664489,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,15,0.0,47,254250927663209,16,34.91399002075195,-44.93964458411904,0.08513692795903849,4,-64761.61628430852,3.4028234663852886E38,,,,,0,,1
+507664490,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,16,0.0,47,254250924056513,15,35.57181930541992,146.58504980544433,0.07837895763023933,4,77608.94561250192,3.4028234663852886E38,,,,,0,,1
+507664490,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,18,0.0,47,254250931030183,13,36.76213073730469,-186.1267830903937,0.06968922511877554,4,-153261.82588369865,3.4028234663852886E38,,,,,0,,1
+507664491,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,20,0.0,47,254250930137343,15,35.495689392089844,438.0498507454424,0.08015632112589005,4,307816.23814960406,3.4028234663852886E38,,,,,0,,1
+507664491,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,21,0.0,47,254250930181257,12,37.877777099609375,27.758642038360264,0.06137556871723196,4,11244.940737490251,3.4028234663852886E38,,,,,0,,1
+507664491,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,26,0.0,47,254250922649233,54,24.720670700073242,434.72169886599,0.2713053405067867,4,296455.36112835445,3.4028234663852886E38,,,,,0,,1
+507664492,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,27,0.0,47,254250922281938,166,25.883628845214844,-582.9262277168004,0.23730058466244552,4,-434869.7158307216,3.4028234663852886E38,,,,,1,,1
+507664492,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,29,0.0,47,254250924677869,10,39.209171295166016,665.4666437693513,0.05192366560759437,4,476990.97139998013,3.4028234663852886E38,,,,,0,,1
+507664492,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,93,0.0,99,13921335542,67,21.547319412231445,81.3365896057087,4.200240197229336,4,21865.80376504922,3.4028234663852886E38,,,,,0,,3
+507664493,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,94,0.0,227,5833919869553,94,25.964725494384766,544.9545539152591,0.23826269846076253,4,374065.63481003646,3.4028234663852886E38,,,,,0,,3
+507664493,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,96,0.0,227,5833928789736,42,32.98191833496094,671.9843000951214,0.10620536125038726,4,471218.353959833,3.4028234663852886E38,,,,,0,,3
+507664493,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,97,0.0,227,5833936110733,33,37.6378059387207,64.92710523779618,0.06411013251252373,4,20109.070334823406,3.4028234663852886E38,,,,,0,,3
+507664494,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,103,0.0,227,5833929185966,89,26.516159057617188,-585.9689731053309,0.2219046170940162,4,-432753.22952778044,3.4028234663852886E38,,,,,0,,3
+507664494,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,104,0.0,227,5833927753145,34,34.64114761352539,632.974065678417,0.08782589731572754,4,443926.083193236,3.4028234663852886E38,,,,,0,,3
+507664494,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,105,0.0,227,5833936169445,70,28.579601287841797,-30.619010071883594,0.17658786397447024,4,-59451.30673742405,3.4028234663852886E38,,,,,0,,3
+507664495,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,106,0.0,227,5833928207965,47,32.01557159423828,-699.1318628594095,0.11841283845871509,4,-521501.6762764538,3.4028234663852886E38,,,,,0,,3
+507664495,745430000000,,,-1157840705570293768,0.0,10.952518864149368,,,0,26,0.0,1074,2366379,8,35.936195373535156,265.23187497895617,0.08387127560322744,4,179044.8642663709,3.4028234663852886E38,,,,,0,,6
+507665479,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,10,0.0,47,254251924141628,61,23.781455993652344,-560.5627171272497,0.3025007067525447,4,-417284.1194451359,3.4028234663852886E38,,,,,0,,1
+507665479,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,13,0.0,47,254251923370759,57,24.363056182861328,193.54968650263788,0.2828183543798133,4,112641.09686076127,3.4028234663852886E38,,,,,0,,1
+507665480,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,15,0.0,47,254251927663344,20,33.41388702392578,-44.58635010011065,0.10092677422911911,4,-64806.32515193759,3.4028234663852886E38,,,,,0,,1
+507665480,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,16,0.0,47,254251924055994,13,36.67841720581055,146.76054037408028,0.06909042731146328,4,77755.65021684924,3.4028234663852886E38,,,,,0,,1
+507665481,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,18,0.0,47,254251931030791,16,35.31446075439453,-186.34162185508524,0.08196857420655057,4,-153448.20916612944,3.4028234663852886E38,,,,,0,,1
+507665481,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,20,0.0,47,254251930135887,17,34.764198303222656,438.4121813407364,0.08703869741354481,4,308254.6007604266,3.4028234663852886E38,,,,,0,,1
+507665481,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,21,0.0,47,254251930181157,13,37.06364440917969,27.903226209390624,0.06722657209356492,4,11272.81113372872,3.4028234663852886E38,,,,,0,,1
+507665482,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,26,0.0,47,254251922647798,61,22.64032745361328,434.5878570592249,4.200476378002271,4,296890.0134820574,3.4028234663852886E38,,,,,0,,1
+507665482,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,27,0.0,47,254251922284252,166,28.811601638793945,-582.7730611571869,0.16951269215028386,4,-435452.4508119776,3.4028234663852886E38,,,,,1,,1
+507665483,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,29,0.0,47,254251924675659,17,34.5562629699707,665.5437382860059,0.08812112328189681,4,477656.549976752,3.4028234663852886E38,,,,,0,,1
+507665483,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,93,0.0,99,14921335216,131,23.169219970703125,81.77702867073884,0.3240331640357028,4,21947.607989968652,3.4028234663852886E38,,,,,0,,3
+507665484,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,94,0.0,227,5834919867793,66,29.05567741394043,544.8612020668431,0.16798988200178788,4,374610.3377801002,3.4028234663852886E38,,,,,0,,3
+507665484,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,96,0.0,227,5834928787379,36,34.21077346801758,672.2061768870849,0.09240234912061196,4,471890.56929343526,3.4028234663852886E38,,,,,0,,3
+507665485,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,97,0.0,227,5834936110530,33,36.54941177368164,64.930939514155,0.0722816427703224,4,20173.94768237303,3.4028234663852886E38,,,,,0,,3
+507665486,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,103,0.0,227,5834929187938,61,29.688800811767578,-586.2061188378166,0.15451073641810165,4,-433339.699839467,3.4028234663852886E38,,,,,0,,3
+507665486,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,104,0.0,227,5834927751124,43,32.65882110595703,632.8470062805,0.10998362954893609,4,444558.95711139514,3.4028234663852886E38,,,,,0,,3
+507665487,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,105,0.0,227,5834936169499,53,30.933523178100586,-30.29444922887747,0.13535856761037607,4,-59481.608111279675,3.4028234663852886E38,,,,,0,,3
+507665487,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,106,0.0,227,5834928210267,66,29.013940811157227,-699.2634211415875,0.16668491333565694,4,-522200.64613975224,3.4028234663852886E38,,,,,0,,3
+507665488,746430000000,,,-1157840705570293681,0.0,11.048524918007937,,,0,26,0.0,1074,2365484,11,33.428321838378906,265.3759756051346,0.1118029387631736,4,179310.24067151264,3.4028234663852886E38,,,,,0,,6
+507666459,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,10,0.0,47,254252924143543,61,22.634634017944336,-560.8979180871515,4.200745309885772,4,-417844.65917269664,3.4028234663852886E38,,,,,0,,1
+507666460,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,13,0.0,47,254252923370080,59,22.995254516601562,193.82433997852695,4.200606317367765,4,112834.70631880584,3.4028234663852886E38,,,,,0,,1
+507666460,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,15,0.0,47,254252927663541,24,31.827409744262695,-44.23825319072199,0.12087572862992446,4,-64850.806772032636,3.4028234663852886E38,,,,,0,,1
+507666460,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,16,0.0,47,254252924055570,22,32.61366653442383,146.56785520612857,0.10988486032068273,4,77902.22934208567,3.4028234663852886E38,,,,,0,,1
+507666461,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,18,0.0,47,254252931031425,21,32.68997573852539,-186.5690711286902,0.1101848541695638,4,-153634.80637806316,3.4028234663852886E38,,,,,0,,1
+507666461,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,20,0.0,47,254252930134497,22,32.35515213012695,438.55280555634954,0.11427588891727752,4,308693.10503960727,3.4028234663852886E38,,,,,0,,1
+507666461,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,21,0.0,47,254252930181066,14,36.44595718383789,27.938835985996363,0.07204641890229424,4,11300.739040244267,3.4028234663852886E38,,,,,0,,1
+507666462,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,26,0.0,47,254252922646379,67,21.415225982666016,434.7058505237069,4.20047611173308,4,297324.69723070005,3.4028234663852886E38,,,,,0,,1
+507666462,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,27,0.0,47,254252922286141,18,34.20547866821289,-582.5949462393987,0.0912883037857593,4,-436035.0665217613,3.4028234663852886E38,,,,,0,,1
+507666462,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,29,0.0,47,254252924673369,20,33.2411994934082,665.5773435881374,0.10238793473885105,4,478322.20481617743,3.4028234663852886E38,,,,,0,,1
+507666463,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,93,0.0,99,15921335009,107,24.853965759277344,82.04180675485043,0.2669444668961388,4,22029.66866081305,3.4028234663852886E38,,,,,0,,3
+507666463,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,94,0.0,227,5835919866027,55,30.57079315185547,544.6074240955743,0.1416718517474047,4,375154.96372236096,3.4028234663852886E38,,,,,0,,3
+507666463,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,96,0.0,227,5835928785138,39,33.48230743408203,672.2716152036087,0.10034748064009041,4,472562.7905339431,3.4028234663852886E38,,,,,0,,3
+507666464,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,97,0.0,227,5835936110318,33,36.96263122558594,65.0608320162705,0.06905805064194906,4,20238.952229738898,3.4028234663852886E38,,,,,0,,3
+507666464,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,103,0.0,227,5835929189941,46,32.21663284301758,-586.4213836332146,0.1159136857519768,4,-433926.217464159,3.4028234663852886E38,,,,,0,,3
+507666464,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,104,0.0,227,5835927749008,49,31.665870666503906,632.8020174378898,0.12313429048024171,4,445191.83740316913,3.4028234663852886E38,,,,,0,,3
+507666465,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,105,0.0,227,5835936169465,54,30.831239700317383,-29.88319539739851,0.13692748393357734,4,-59511.583187934404,3.4028234663852886E38,,,,,0,,3
+507666465,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,106,0.0,227,5835928212576,77,27.73830223083496,-699.187962582846,0.19282054919380476,4,-522899.6345384408,3.4028234663852886E38,,,,,0,,3
+507666465,747430000000,,,-1157840705570293597,0.0,11.32619729798452,,,0,26,0.0,1074,2364651,10,33.92287063598633,265.38994941230897,0.10563844085785501,4,179575.61826773532,3.4028234663852886E38,,,,,0,,6
+507667497,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,10,0.0,47,254253924145408,51,25.18126106262207,-560.9217076418045,0.25758723496547786,4,-418405.3170278662,3.4028234663852886E38,,,,,0,,1
+507667498,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,13,0.0,47,254253923369393,34,28.785757064819336,193.69528675690333,0.1702118151964378,4,113028.32196925793,3.4028234663852886E38,,,,,0,,1
+507667499,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,15,0.0,47,254253927663608,17,34.55241775512695,-44.46537016037587,0.08869722164062649,4,-64895.329397493806,3.4028234663852886E38,,,,,0,,1
+507667500,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,16,0.0,47,254253924055004,16,35.05296325683594,146.50437663085484,0.0831584396937069,4,78048.8490135244,3.4028234663852886E38,,,,,0,,1
+507667501,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,18,0.0,47,254253931031989,25,31.265892028808594,-186.5316826738847,0.12946193651179144,4,-153821.33047915026,3.4028234663852886E38,,,,,0,,1
+507667502,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,20,0.0,47,254253930132997,25,31.204666137695312,438.80395917846613,0.13020200676706373,4,309131.70498571673,3.4028234663852886E38,,,,,0,,1
+507667503,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,21,0.0,47,254253930180939,14,36.42926025390625,27.948830666371677,0.07218150891246217,4,11328.641018571156,3.4028234663852886E38,,,,,0,,1
+507667504,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,26,0.0,47,254253922644898,43,26.659923553466797,434.7412621960341,0.21711252052759733,4,297759.44840336114,3.4028234663852886E38,,,,,0,,1
+507667505,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,27,0.0,47,254253922287942,12,37.22739028930664,-582.5040824103089,0.06458550206816824,4,-436617.5272106844,3.4028234663852886E38,,,,,0,,1
+507667512,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,29,0.0,47,254253924671133,12,37.45502471923828,665.8487762718851,0.06335421507989605,4,478987.91644184483,3.4028234663852886E38,,,,,0,,1
+507667516,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,93,0.0,99,16921334834,131,23.149883270263672,82.54623563200215,0.3247546869775988,4,22112.098972820848,3.4028234663852886E38,,,,,0,,3
+507667521,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,94,0.0,227,5836919864181,45,32.29280471801758,544.5756933285516,0.1168360755152743,4,375699.6350447513,3.4028234663852886E38,,,,,0,,3
+507667522,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,96,0.0,227,5836928782900,33,39.270042419433594,672.2964272319573,0.052305316728713386,4,473235.07797748613,3.4028234663852886E38,,,,,0,,3
+507667525,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,97,0.0,227,5836936110063,33,35.42621612548828,65.07594758573836,0.081859686749017,4,20304.043466220028,3.4028234663852886E38,,,,,0,,3
+507667527,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,103,0.0,227,5836929191833,47,31.963350296020508,-586.5437396521315,0.11929496332769768,4,-434512.8333789329,3.4028234663852886E38,,,,,0,,3
+507667529,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,104,0.0,227,5836927746806,34,34.83809280395508,632.8945172248928,0.08588703323446861,4,445824.7700714845,3.4028234663852886E38,,,,,0,,3
+507667530,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,105,0.0,227,5836936169607,33,36.325721740722656,-29.49205873588214,0.07410232493507901,4,-59541.2403046232,3.4028234663852886E38,,,,,0,,3
+507667532,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,106,0.0,227,5836928215077,52,31.127099990844727,-698.9987367842314,0.1310085943947587,4,-523598.5277930281,3.4028234663852886E38,,,,,0,,3
+507667534,748430000000,,,-1157840705570293506,0.0,11.119077279356587,,,0,26,0.0,1074,2363761,14,31.18637466430664,265.1320815462574,0.14460174479700427,4,179840.7635494099,3.4028234663852886E38,,,,,0,,6
+507668494,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,10,0.0,47,254254924147311,12,37.24645233154297,-560.3395111194818,0.06477926699097547,4,-418965.6501859136,3.4028234663852886E38,,,,,0,,1
+507668495,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,13,0.0,47,254254923368738,36,28.334291458129883,193.69612177708814,0.17926039120857895,4,113222.0190854876,3.4028234663852886E38,,,,,0,,1
+507668495,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,15,0.0,47,254254927663785,22,32.56618881225586,-44.582890730773585,0.1111321733859234,4,-64939.91688890273,3.4028234663852886E38,,,,,0,,1
+507668495,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,16,0.0,47,254254924054552,13,36.57966995239258,146.80273445525552,0.06987178177279951,4,78195.63387978883,3.4028234663852886E38,,,,,0,,1
+507668496,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,18,0.0,47,254254931032655,12,37.2479362487793,-186.56184564790738,0.06600684701284606,4,-154007.85619197713,3.4028234663852886E38,,,,,0,,1
+507668496,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,20,0.0,47,254254930131441,20,33.46774673461914,439.06649634106134,0.10075537175794885,4,309570.5118716562,3.4028234663852886E38,,,,,0,,1
+507668496,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,21,0.0,47,254254930180890,24,31.84454917907715,28.017662317473025,0.12109297932752067,4,11356.639165513892,3.4028234663852886E38,,,,,0,,1
+507668497,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,26,0.0,47,254254922643499,14,36.35718536376953,434.7526457365127,0.07141189941874848,4,298194.275094603,3.4028234663852886E38,,,,,0,,1
+507668497,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,27,0.0,47,254254922289912,20,33.249332427978516,-582.430941458611,0.10186414995535548,4,-437199.93455787376,3.4028234663852886E38,,,,,0,,1
+507668498,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,29,0.0,47,254254924669064,15,35.867740631103516,665.8329620120585,0.07588824232850938,4,479653.62301033747,3.4028234663852886E38,,,,,0,,1
+507668498,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,93,0.0,99,17921334657,67,21.55509376525879,82.68021376859332,4.200240197229336,4,22194.694330345847,3.4028234663852886E38,,,,,0,,3
+507668499,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,94,0.0,227,5837919862326,35,34.4217643737793,544.7076946826644,0.09221487064699979,4,376244.3737230764,3.4028234663852886E38,,,,,0,,3
+507668500,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,96,0.0,227,5837928780706,33,37.7942008972168,672.4431862897445,0.06169935205419866,4,473907.53298451885,3.4028234663852886E38,,,,,0,,3
+507668500,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,97,0.0,227,5837936109830,33,36.4483757019043,65.03096726374238,0.07309332279630643,4,20369.123217204407,3.4028234663852886E38,,,,,0,,3
+507668501,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,103,0.0,227,5837929193756,66,29.069355010986328,-586.7606404054427,0.1658111842671215,4,-435099.5822138377,3.4028234663852886E38,,,,,0,,3
+507668501,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,104,0.0,227,5837927744624,50,31.494503021240234,633.0301654018535,0.12555922064982583,4,446457.777266375,3.4028234663852886E38,,,,,0,,3
+507668502,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,105,0.0,227,5837936169676,33,36.88127899169922,-29.560952161435935,0.06969130950729091,4,-59570.88597474337,3.4028234663852886E38,,,,,0,,3
+507668502,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,106,0.0,227,5837928217459,77,27.73186492919922,-698.7517753042671,0.19296326948049403,4,-524297.3869928593,3.4028234663852886E38,,,,,0,,3
+507668503,749430000000,,,-1157840705570293422,0.0,11.03349812553231,,,0,26,0.0,1074,2362793,9,35.37135696411133,265.33197515376366,0.08947738205105671,4,180106.0652227077,3.4028234663852886E38,,,,,0,,6
+507669463,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,10,0.0,47,254255924149152,12,37.43938064575195,-560.0090476210366,0.06337300786018335,4,-419525.66293502215,3.4028234663852886E38,,,,,0,,1
+507669464,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,13,0.0,47,254255923368138,40,27.43819808959961,193.68901558490313,0.19867575879127353,4,113415.74170460449,3.4028234663852886E38,,,,,0,,1
+507669466,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,15,0.0,47,254255927663992,19,33.77091598510742,-44.220837055438835,0.0969179750570438,4,-64984.23966860398,3.4028234663852886E38,,,,,0,,1
+507669467,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,16,0.0,47,254255924054029,14,35.97327423095703,146.90450467043263,0.07487128539763821,4,78342.60187389232,3.4028234663852886E38,,,,,0,,1
+507669468,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,18,0.0,47,254255931033289,21,32.99346923828125,-186.4795705978613,0.10646986640857747,4,-154194.35282072535,3.4028234663852886E38,,,,,0,,1
+507669469,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,20,0.0,47,254255930130095,23,32.21875,439.0597480146698,0.1160549748417613,4,310009.48054947203,3.4028234663852886E38,,,,,0,,1
+507669470,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,21,0.0,47,254255930180813,17,34.859901428222656,28.036703759901613,0.08611296264352802,4,11384.634640600623,3.4028234663852886E38,,,,,0,,1
+507669471,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,26,0.0,47,254255922642036,26,30.934541702270508,435.18828769578727,0.1329097980272329,4,298629.2633377694,3.4028234663852886E38,,,,,0,,1
+507669472,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,27,0.0,47,254255922291956,21,32.930938720703125,-582.4517317570899,0.10565242831132543,4,-437782.3705203689,3.4028234663852886E38,,,,,0,,1
+507669473,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,29,0.0,47,254255924666890,31,29.541133880615234,665.3984106913927,0.15631843795976852,4,480319.3097761734,3.4028234663852886E38,,,,,0,,1
+507669474,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,93,0.0,99,18921334276,101,25.404136657714844,82.74264430832898,0.2505749858796278,4,22277.414895932063,3.4028234663852886E38,,,,,0,,3
+507669475,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,94,0.0,227,5838919860479,45,32.29475784301758,544.8015918503847,0.1168099728135868,4,376789.1581367875,3.4028234663852886E38,,,,,0,,3
+507669476,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,96,0.0,227,5838928778401,33,38.85295104980469,672.6302308111417,0.05479976395958164,4,474580.13956382347,3.4028234663852886E38,,,,,0,,3
+507669478,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,97,0.0,227,5838936109663,33,35.818206787109375,65.05581337454751,0.07837531307067952,4,20434.272061962023,3.4028234663852886E38,,,,,0,,3
+507669479,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,103,0.0,227,5838929195775,58,30.11517906188965,-586.900037652621,0.1471897482046094,4,-435686.37633491977,3.4028234663852886E38,,,,,0,,3
+507669480,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,104,0.0,227,5838927742513,66,29.09200668334961,632.9959466155046,0.16512259549585961,4,447090.83827354835,3.4028234663852886E38,,,,,0,,3
+507669481,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,105,0.0,227,5838936169826,33,35.37244415283203,-29.383231322051273,0.08236078872575447,4,-59600.354817623585,3.4028234663852886E38,,,,,0,,3
+507669482,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,106,0.0,227,5838928219792,33,35.583316802978516,-698.656071766351,0.07902508478635573,4,-524996.031140389,3.4028234663852886E38,,,,,0,,3
+507669482,750430000000,,,-1157840705570293342,0.0,11.471614817484959,,,0,26,0.0,1074,2361937,12,32.56291580200195,265.38756364035237,0.1234708630593167,4,180371.47016889477,3.4028234663852886E38,,,,,0,,6
+507670513,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,10,0.0,47,254256924151009,12,37.33714294433594,-559.7457265619414,0.06411482966748153,4,-420085.58370922075,3.4028234663852886E38,,,,,0,,1
+507670514,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,13,0.0,47,254256923367507,62,22.5226993560791,193.7351291485785,4.200605784829381,4,113609.44787547007,3.4028234663852886E38,,,,,0,,1
+507670515,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,15,0.0,47,254256927664112,10,39.15399932861328,-44.157234931260206,0.052786307060573995,4,-65028.485846877,3.4028234663852886E38,,,,,0,,1
+507670516,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,16,0.0,47,254256924053545,17,34.78581237792969,146.74745271077552,0.08573280512615555,4,78489.51502589535,3.4028234663852886E38,,,,,0,,1
+507670517,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,18,0.0,47,254256931033911,30,29.860509872436523,-186.56862805675541,0.15185064062687503,4,-154380.73182045767,3.4028234663852886E38,,,,,0,,1
+507670518,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,20,0.0,47,254256930128545,11,38.271881103515625,438.80637903287925,0.058724784026798565,4,310448.2175973465,3.4028234663852886E38,,,,,0,,1
+507670519,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,21,0.0,47,254256930180694,19,33.85301971435547,27.561340827703248,0.09647184102654405,4,11412.364245169578,3.4028234663852886E38,,,,,0,,1
+507670520,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,26,0.0,47,254256922640554,18,34.13855743408203,435.4544375987739,0.0920549260719799,4,299064.5416127359,3.4028234663852886E38,,,,,0,,1
+507670521,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,27,0.0,47,254256922293868,27,30.73897933959961,-583.127246045372,0.13586273168281676,4,-438365.18285976595,3.4028234663852886E38,,,,,0,,1
+507670522,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,29,0.0,47,254256924664598,41,27.112428665161133,665.1288866252103,0.20647876080883154,4,480984.736563361,3.4028234663852886E38,,,,,0,,1
+507670522,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,93,0.0,99,19921333912,77,27.705291748046875,82.82595887329899,0.19231182526145818,4,22360.255951673505,3.4028234663852886E38,,,,,0,,3
+507670523,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,94,0.0,227,5839919858712,39,33.5872917175293,544.6207162536182,0.10115275356365194,4,377333.9204779179,3.4028234663852886E38,,,,,0,,3
+507670524,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,96,0.0,227,5839928776229,40,33.43353271484375,672.8700349752362,0.10090207776159965,4,475252.8413702225,3.4028234663852886E38,,,,,0,,3
+507670524,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,97,0.0,227,5839936109417,33,35.938987731933594,65.2045193926636,0.07733299399930993,4,20499.542663322725,3.4028234663852886E38,,,,,0,,3
+507670525,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,103,0.0,227,5839929197834,49,31.613231658935547,-586.8154449955314,0.12413491346039163,4,-436273.11628399405,3.4028234663852886E38,,,,,0,,3
+507670526,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,104,0.0,227,5839927740372,66,29.10257339477539,633.0657474864634,0.1649231931550118,4,447723.90134817624,3.4028234663852886E38,,,,,0,,3
+507670527,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,105,0.0,227,5839936170015,41,33.085418701171875,-29.428045492071703,0.10629358788283633,4,-59629.75898603615,3.4028234663852886E38,,,,,0,,3
+507670527,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,106,0.0,227,5839928221903,33,35.76971435546875,-698.5644581232177,0.07737906689036628,4,-525694.5959247965,3.4028234663852886E38,,,,,0,,3
+507670528,751430000000,,,-1157840705570293253,0.0,11.439391712032329,,,0,26,0.0,1074,2361032,11,33.39229965209961,265.422157333723,0.112264999019695,4,180636.88696729374,3.4028234663852886E38,,,,,0,,6
+507671484,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,10,0.0,47,254257924152848,13,36.9342155456543,-559.4889834169551,0.06712398356659477,4,-420645.26084181,3.4028234663852886E38,,,,,0,,1
+507671485,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,13,0.0,47,254257923366890,65,21.859477996826172,193.87106702641972,4.20060551856019,4,113803.35940059491,3.4028234663852886E38,,,,,0,,1
+507671485,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,15,0.0,47,254257927664247,17,34.73957824707031,-43.91550084806511,0.08683596670780219,4,-65072.49008704146,3.4028234663852886E38,,,,,0,,1
+507671485,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,16,0.0,47,254257924053111,24,31.669466018676758,146.81677642734292,0.12241911639438258,4,78636.50885021899,3.4028234663852886E38,,,,,0,,1
+507671486,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,18,0.0,47,254257931034547,23,31.895626068115234,-186.26628258494156,0.1205472772611928,4,-154566.9713418611,3.4028234663852886E38,,,,,0,,1
+507671486,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,20,0.0,47,254257930127106,12,37.89301300048828,438.7437013953338,0.06126147236863802,4,310886.91535933653,3.4028234663852886E38,,,,,0,,1
+507671487,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,21,0.0,47,254257930180589,18,34.3111686706543,27.935214724990814,0.09160924969165318,4,11440.247519407103,3.4028234663852886E38,,,,,0,,1
+507671487,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,26,0.0,47,254257922639103,15,35.913787841796875,435.39789480340255,0.07512628807405375,4,299499.8394071036,3.4028234663852886E38,,,,,0,,1
+507671487,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,27,0.0,47,254257922295761,22,32.39757537841797,-582.9903708999764,0.1123179865888203,4,-438947.88538613246,3.4028234663852886E38,,,,,0,,1
+507671488,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,29,0.0,47,254257924662397,23,32.1119270324707,665.2955498376068,0.11648501622799468,4,481650.24776087253,3.4028234663852886E38,,,,,0,,1
+507671488,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,93,0.0,99,20921333606,112,24.458925247192383,83.0367673875067,0.27935422548094846,4,22443.246834661273,3.4028234663852886E38,,,,,0,,3
+507671488,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,94,0.0,227,5840919856915,33,35.000484466552734,544.9183924288884,0.08650034271272222,4,377878.8176201442,3.4028234663852886E38,,,,,0,,3
+507671489,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,96,0.0,227,5840928774009,40,33.46223068237305,672.7014631452744,0.10057402579665536,4,475925.47701742174,3.4028234663852886E38,,,,,0,,3
+507671489,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,97,0.0,227,5840936109192,33,35.660160064697266,65.44976822918761,0.07976120260831543,4,20565.055471161,3.4028234663852886E38,,,,,0,,3
+507671490,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,103,0.0,227,5840929199695,38,33.86165237426758,-586.5644617856974,0.09620137809519214,4,-436859.7823591033,3.4028234663852886E38,,,,,0,,3
+507671490,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,104,0.0,227,5840927738283,78,27.600454330444336,633.319184633167,0.19579614069341,4,448357.1573563217,3.4028234663852886E38,,,,,0,,3
+507671490,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,105,0.0,227,5840936169925,166,30.0036678314209,-29.016065278238102,0.15032470181537794,4,-59658.90550572947,3.4028234663852886E38,,,,,1,,3
+507671491,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,106,0.0,227,5840928224175,33,35.12910461425781,-698.1770087574664,0.08318895247888003,4,-526392.931127616,3.4028234663852886E38,,,,,0,,3
+507671491,752430000000,,,-1157840705570293161,0.0,11.071600726977122,,,0,26,0.0,1074,2360136,10,34.28645706176758,265.62206798245757,0.1013243806994526,4,180902.46798696305,3.4028234663852886E38,,,,,0,,6
diff --git a/opensource/demoFiles/workshop_trials01.txt b/ProcessGNSSMeas/demoFiles/workshop_trials01.txt
similarity index 100%
rename from opensource/demoFiles/workshop_trials01.txt
rename to ProcessGNSSMeas/demoFiles/workshop_trials01.txt