Compare commits

...

No commits in common. "main" and "master" have entirely different histories.
main ... master

348 changed files with 8298 additions and 169248 deletions

0
Code/MowingRobot/pibot_ros/pibot_init_env.sh Executable file → Normal file
View File

34
Code/MowingRobot/pibot_ros/pypibot/pypibot/__init__.py Executable file → Normal file
View File

@ -1,17 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import pypibot.assistant
import pypibot.log as Logger
import pypibot.err
log=Logger.log
import sys
def createNamedLog(name):
return Logger.NamedLog(name)
class Object():
pass
isDebug="-d" in sys.argv
import platform
isWindows=False
if platform.system()=='Windows':
isWindows=True
#!/usr/bin/python
# -*- coding: utf-8 -*-
import pypibot.assistant
import pypibot.log as Logger
import pypibot.err
log=Logger.log
import sys
def createNamedLog(name):
return Logger.NamedLog(name)
class Object():
pass
isDebug="-d" in sys.argv
import platform
isWindows=False
if platform.system()=='Windows':
isWindows=True

468
Code/MowingRobot/pibot_ros/pypibot/pypibot/assistant.py Executable file → Normal file
View File

@ -1,234 +1,234 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os, sys, inspect
import datetime
import signal
import threading
import time
# function: get directory of current script, if script is built
# into an executable file, get directory of the excutable file
def current_file_directory():
path = os.path.realpath(sys.path[0]) # interpreter starter's path
if os.path.isfile(path): # starter is excutable file
path = os.path.dirname(path)
path = os.path.abspath(path) # return excutable file's directory
else: # starter is python script
caller_file = inspect.stack()[0][1] # function caller's filename
path = os.path.abspath(os.path.dirname(caller_file))# return function caller's file's directory
if path[-1]!=os.path.sep:path+=os.path.sep
return path
"""格式化字符串"""
def formatString(string,*argv):
string=string%argv
if string.find('$(scriptpath)')>=0:
string=string.replace('$(scriptpath)',current_file_directory())
if string.find('$(filenumber2)')>=0:
i=0
path=""
while True:
path=string.replace('$(scriptpath)',"%02d"%i)
if not os.path.lexists(path):break
i+=1
string=path
#8位日期20140404
if string.find('$(Date8)')>=0:
now=datetime.datetime.now()
string=string.replace('$(Date8)', now.strftime("%Y%m%d"))
#6位日期140404
if string.find('$(Date6)')>=0:
now=datetime.datetime.now()
string=string.replace('$(Date6)', now.strftime("%y%m%d"))
#6位时间121212
if string.find('$(Time6)')>=0:
now=datetime.datetime.now()
string=string.replace('$(Time6)', now.strftime("%H%M%S"))
#4位时间1212
if string.find('$(Time4)')>=0:
now=datetime.datetime.now()
string=string.replace('$(Time4)', now.strftime("%H%M"))
#文件编号2位必须在最后
if string.find('$(filenumber2)')>=0:
i=0
path=""
while True:
path=string.replace('$(filenumber2)',"%02d"%i)
if not os.path.lexists(path):break
i+=1
string=path
#文件编号3位必须在最后
if string.find('$(filenumber3)')>=0:
i=0
path=""
while True:
path=string.replace('$(filenumber3)',"%03d"%i)
if not os.path.lexists(path):break
i+=1
string=path
return string
"""
取得进程列表
格式(PID,cmd)
"""
def getProcessList():
processList = []
try:
for line in os.popen("ps xa"):
fields = line.split()
# spid = fields[0]
pid = 0
try:pid = int(fields[0])
except:None
cmd = line[27:-1]
# print "PS:%d,%s"%(npid,process)
if pid != 0 and len(cmd) > 0:
processList.append((pid, cmd))
except Exception as e:
print("getProcessList except:%s" % (e))
return processList
def killCommand(cmd):
try:
processList = getProcessList()
for p in processList:
if p[1].find(cmd) != -1:
pid = p[0]
os.kill(pid, signal.SIGKILL)
except Exception as e:
print("killCommand %s except:%s" % (cmd,e))
def check_pid(pid):
""" Check For the existence of a unix pid. """
if pid == 0:return False
try:
os.kill(pid, 0)
except OSError:
return False
else:
return True
SF=formatString
#全局异常捕获
def excepthook(excType, excValue, tb):
'''''write the unhandle exception to log'''
from log import log
import traceback
log.e('Unhandled Error: %s',''.join(traceback.format_exception(excType, excValue, tb)))
sys.exit(-1)
#sys.__excepthook__(type, value, trace)
#sys.__excepthook__(excType, excValue, tb)
_defaultGlobalExcept=sys.excepthook
def enableGlobalExcept(enable=True):
if enable:
sys.excepthook = excepthook
else:
sys.excepthook=_defaultGlobalExcept
# 默认启动全局异常处理
enableGlobalExcept()
#创建线程
def createThread(name,target,args=(),autoRun=True,daemon=True):
from log import log
def threadProc():
log.i("thread %s started!",name)
try:
target(*args)
log.i("thread %s ended!",name)
except Exception as e:
log.e("thread %s crash!err=%s",name,e)
thd=threading.Thread(name=name,target=threadProc)
thd.setDaemon(daemon)
if autoRun:thd.start()
return thd
#定时器
class Timer():
def __init__(self, timer_proc, args=(),first=0,period=0,name="Timer"):
self.name=name
self.first=first
self.period=period
self.args=args
self.timer_proc=timer_proc
self.thdWork=None
self.stopFlag=False
from log import NamedLog
self.log=NamedLog(name)
def run(self):
if self.first>0:
time.sleep(self.first)
try:
self.timer_proc(*self.args)
except Exception as e:
self.log.error("timer proc crash!err=%s",e)
while self.period>0 and not self.stopFlag:
time.sleep(self.period)
try:
self.timer_proc(*self.args)
except Exception as e:
self.log.error("timer proc crash!err=%s",e)
def start(self):
if self.isAlive():
self.log.d("already running!")
return True
self.stopFlag=False
self.thdWork=threading.Thread(name=self.name,target=self.run)
self.thdWork.setDaemon(True)
self.thdWork.start()
def stop(self,timeout=3):
if self.isAlive():
self.stopFlag=True
try:
self.thdWork.join(timeout)
except Exception as e:
self.log.e("stop timeout!")
def isAlive(self):
return self.thdWork and self.thdWork.isAlive()
#计时器
class Ticker():
def __init__(self):
self.reset()
# 片段,可以判断时长是否在一个特定毫秒段内
self.section=[]
def reset(self):
self.tick=time.time()
self.end=0
def stop(self):
self.end=time.time()
@property
def ticker(self):
if self.end==0:
return int((time.time()-self.tick)*1000)
else:
return int((self.end-self.tick)*1000)
def addSection(self,a,b):
a,b=int(a),int(b)
assert a<b
self.section.append((a,b))
def removeSection(self,a,b):
a,b=int(a),int(b)
self.section.remove((a,b))
def removeAllSectioin(self):
self.section=[]
def inSection(self):
tick=self.ticker
for (a,b) in self.section:
if tick>=a and tick<=b:
return True
return False
def __call__(self):
return self.ticker
def waitExit():
import log
log.log.i("start waiting to exit...")
try:
while(True):
time.sleep(1)
except Exception as e:
log.log.w("recv exit sign!")
def is_python3():
return sys.hexversion > 0x03000000
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os, sys, inspect
import datetime
import signal
import threading
import time
# function: get directory of current script, if script is built
# into an executable file, get directory of the excutable file
def current_file_directory():
path = os.path.realpath(sys.path[0]) # interpreter starter's path
if os.path.isfile(path): # starter is excutable file
path = os.path.dirname(path)
path = os.path.abspath(path) # return excutable file's directory
else: # starter is python script
caller_file = inspect.stack()[0][1] # function caller's filename
path = os.path.abspath(os.path.dirname(caller_file))# return function caller's file's directory
if path[-1]!=os.path.sep:path+=os.path.sep
return path
"""格式化字符串"""
def formatString(string,*argv):
string=string%argv
if string.find('$(scriptpath)')>=0:
string=string.replace('$(scriptpath)',current_file_directory())
if string.find('$(filenumber2)')>=0:
i=0
path=""
while True:
path=string.replace('$(scriptpath)',"%02d"%i)
if not os.path.lexists(path):break
i+=1
string=path
#8位日期20140404
if string.find('$(Date8)')>=0:
now=datetime.datetime.now()
string=string.replace('$(Date8)', now.strftime("%Y%m%d"))
#6位日期140404
if string.find('$(Date6)')>=0:
now=datetime.datetime.now()
string=string.replace('$(Date6)', now.strftime("%y%m%d"))
#6位时间121212
if string.find('$(Time6)')>=0:
now=datetime.datetime.now()
string=string.replace('$(Time6)', now.strftime("%H%M%S"))
#4位时间1212
if string.find('$(Time4)')>=0:
now=datetime.datetime.now()
string=string.replace('$(Time4)', now.strftime("%H%M"))
#文件编号2位必须在最后
if string.find('$(filenumber2)')>=0:
i=0
path=""
while True:
path=string.replace('$(filenumber2)',"%02d"%i)
if not os.path.lexists(path):break
i+=1
string=path
#文件编号3位必须在最后
if string.find('$(filenumber3)')>=0:
i=0
path=""
while True:
path=string.replace('$(filenumber3)',"%03d"%i)
if not os.path.lexists(path):break
i+=1
string=path
return string
"""
取得进程列表
格式(PID,cmd)
"""
def getProcessList():
processList = []
try:
for line in os.popen("ps xa"):
fields = line.split()
# spid = fields[0]
pid = 0
try:pid = int(fields[0])
except:None
cmd = line[27:-1]
# print "PS:%d,%s"%(npid,process)
if pid != 0 and len(cmd) > 0:
processList.append((pid, cmd))
except Exception as e:
print("getProcessList except:%s" % (e))
return processList
def killCommand(cmd):
try:
processList = getProcessList()
for p in processList:
if p[1].find(cmd) != -1:
pid = p[0]
os.kill(pid, signal.SIGKILL)
except Exception as e:
print("killCommand %s except:%s" % (cmd,e))
def check_pid(pid):
""" Check For the existence of a unix pid. """
if pid == 0:return False
try:
os.kill(pid, 0)
except OSError:
return False
else:
return True
SF=formatString
#全局异常捕获
def excepthook(excType, excValue, tb):
'''''write the unhandle exception to log'''
from log import log
import traceback
log.e('Unhandled Error: %s',''.join(traceback.format_exception(excType, excValue, tb)))
sys.exit(-1)
#sys.__excepthook__(type, value, trace)
#sys.__excepthook__(excType, excValue, tb)
_defaultGlobalExcept=sys.excepthook
def enableGlobalExcept(enable=True):
if enable:
sys.excepthook = excepthook
else:
sys.excepthook=_defaultGlobalExcept
# 默认启动全局异常处理
enableGlobalExcept()
#创建线程
def createThread(name,target,args=(),autoRun=True,daemon=True):
from log import log
def threadProc():
log.i("thread %s started!",name)
try:
target(*args)
log.i("thread %s ended!",name)
except Exception as e:
log.e("thread %s crash!err=%s",name,e)
thd=threading.Thread(name=name,target=threadProc)
thd.setDaemon(daemon)
if autoRun:thd.start()
return thd
#定时器
class Timer():
def __init__(self, timer_proc, args=(),first=0,period=0,name="Timer"):
self.name=name
self.first=first
self.period=period
self.args=args
self.timer_proc=timer_proc
self.thdWork=None
self.stopFlag=False
from log import NamedLog
self.log=NamedLog(name)
def run(self):
if self.first>0:
time.sleep(self.first)
try:
self.timer_proc(*self.args)
except Exception as e:
self.log.error("timer proc crash!err=%s",e)
while self.period>0 and not self.stopFlag:
time.sleep(self.period)
try:
self.timer_proc(*self.args)
except Exception as e:
self.log.error("timer proc crash!err=%s",e)
def start(self):
if self.isAlive():
self.log.d("already running!")
return True
self.stopFlag=False
self.thdWork=threading.Thread(name=self.name,target=self.run)
self.thdWork.setDaemon(True)
self.thdWork.start()
def stop(self,timeout=3):
if self.isAlive():
self.stopFlag=True
try:
self.thdWork.join(timeout)
except Exception as e:
self.log.e("stop timeout!")
def isAlive(self):
return self.thdWork and self.thdWork.isAlive()
#计时器
class Ticker():
def __init__(self):
self.reset()
# 片段,可以判断时长是否在一个特定毫秒段内
self.section=[]
def reset(self):
self.tick=time.time()
self.end=0
def stop(self):
self.end=time.time()
@property
def ticker(self):
if self.end==0:
return int((time.time()-self.tick)*1000)
else:
return int((self.end-self.tick)*1000)
def addSection(self,a,b):
a,b=int(a),int(b)
assert a<b
self.section.append((a,b))
def removeSection(self,a,b):
a,b=int(a),int(b)
self.section.remove((a,b))
def removeAllSectioin(self):
self.section=[]
def inSection(self):
tick=self.ticker
for (a,b) in self.section:
if tick>=a and tick<=b:
return True
return False
def __call__(self):
return self.ticker
def waitExit():
import log
log.log.i("start waiting to exit...")
try:
while(True):
time.sleep(1)
except Exception as e:
log.log.w("recv exit sign!")
def is_python3():
return sys.hexversion > 0x03000000

112
Code/MowingRobot/pibot_ros/pypibot/pypibot/configer.py Executable file → Normal file
View File

@ -1,56 +1,56 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import ConfigParser
from log import PLOG
import os
def getdefaultfilename():
pass
def openconfiger(filename):
return configer(filename)
class configer:
def __init__(self,fullfilepath):
self._filepath=fullfilepath
if not os.path.isdir(os.path.dirname(fullfilepath)):
os.makedirs(os.path.dirname(fullfilepath))
self._conf=ConfigParser.ConfigParser()
if os.path.isfile(fullfilepath):
try:
self._conf.readfp(open(fullfilepath,"r"))
except Exception,e:
PLOG.error("配置文件'%s'打开失败,err=%s"%(self._filepath,e))
def save(self):
try:
self._conf.write(open(self._filepath,"w"))
except Exception,e:
PLOG.error("配置文件'%s'保存失败,err=%s"%(self._filepath,e))
def changeConfValue(self,section,option,value):
if self._conf.has_section(section):
self._conf.set(section,option,value)
else:
self._conf.add_section(section)
self._conf.set(section,option,value)
def _readvalue(self,fn,section,option,default):
result=default
if self._conf.has_section(section):
if self._conf.has_option(section,option):
result=fn(section,option)
PLOG.debug("Option[%s][%s]=%s"%(section,option,str(result)))
else:
self._conf.set(section,option,str(default))
result=default
else:
self._conf.add_section(section)
self._conf.set(section,option,str(default))
result=default
return result
def getstr(self,section,option,default=""):
return self._readvalue(self._conf.get, section, option, default)
def getint(self,section,option,default=0):
return self._readvalue(self._conf.getint, section, option, default)
def getfloat(self,section,option,default=0.0):
return self._readvalue(self._conf.getfloat, section, option, default)
def getboolean(self,section,option,default=False):
return self._readvalue(self._conf.getboolean, section, option, default)
#!/usr/bin/python
# -*- coding: utf-8 -*-
import ConfigParser
from log import PLOG
import os
def getdefaultfilename():
pass
def openconfiger(filename):
return configer(filename)
class configer:
def __init__(self,fullfilepath):
self._filepath=fullfilepath
if not os.path.isdir(os.path.dirname(fullfilepath)):
os.makedirs(os.path.dirname(fullfilepath))
self._conf=ConfigParser.ConfigParser()
if os.path.isfile(fullfilepath):
try:
self._conf.readfp(open(fullfilepath,"r"))
except Exception,e:
PLOG.error("配置文件'%s'打开失败,err=%s"%(self._filepath,e))
def save(self):
try:
self._conf.write(open(self._filepath,"w"))
except Exception,e:
PLOG.error("配置文件'%s'保存失败,err=%s"%(self._filepath,e))
def changeConfValue(self,section,option,value):
if self._conf.has_section(section):
self._conf.set(section,option,value)
else:
self._conf.add_section(section)
self._conf.set(section,option,value)
def _readvalue(self,fn,section,option,default):
result=default
if self._conf.has_section(section):
if self._conf.has_option(section,option):
result=fn(section,option)
PLOG.debug("Option[%s][%s]=%s"%(section,option,str(result)))
else:
self._conf.set(section,option,str(default))
result=default
else:
self._conf.add_section(section)
self._conf.set(section,option,str(default))
result=default
return result
def getstr(self,section,option,default=""):
return self._readvalue(self._conf.get, section, option, default)
def getint(self,section,option,default=0):
return self._readvalue(self._conf.getint, section, option, default)
def getfloat(self,section,option,default=0.0):
return self._readvalue(self._conf.getfloat, section, option, default)
def getboolean(self,section,option,default=False):
return self._readvalue(self._conf.getboolean, section, option, default)

280
Code/MowingRobot/pibot_ros/pypibot/pypibot/daemon.py Executable file → Normal file
View File

@ -1,140 +1,140 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys, os, time, atexit
from signal import SIGTERM
def check_pid(pid):
""" Check For the existence of a unix pid. """
if pid == 0:return False
try:
os.kill(pid, 0)
except OSError:
return False
else:
return True
class daemon:
"""
A generic daemon class.
Usage: subclass the Daemon class and override the run() method
"""
def __init__(self, pidfile, stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'):
self.stdin = stdin
self.stdout = stdout
self.stderr = stderr
self.pidfile = pidfile
def daemonize(self):
"""
do the UNIX double-fork magic, see Stevens' "Advanced
Programming in the UNIX Environment" for details (ISBN 0201563177)
http://www.erlenstar.demon.co.uk/unix/faq_2.html#SEC16
"""
try:
pid = os.fork()
if pid > 0:
# exit first parent
sys.exit(0)
except OSError, e:
sys.stderr.write("fork #1 failed: %d (%s)\n" % (e.errno, e.strerror))
sys.exit(1)
# decouple from parent environment
os.chdir("/")
os.setsid()
os.umask(0)
# do second fork
try:
pid = os.fork()
if pid > 0:
# exit from second parent
sys.exit(0)
except OSError, e:
sys.stderr.write("fork #2 failed: %d (%s)\n" % (e.errno, e.strerror))
sys.exit(1)
# redirect standard file descriptors
sys.stdout.flush()
sys.stderr.flush()
si = file(self.stdin, 'r')
so = file(self.stdout, 'a+')
se = file(self.stderr, 'a+', 0)
os.dup2(si.fileno(), sys.stdin.fileno())
os.dup2(so.fileno(), sys.stdout.fileno())
os.dup2(se.fileno(), sys.stderr.fileno())
# write pidfile
atexit.register(self.delpid)
pid = str(os.getpid())
file(self.pidfile, 'w+').write("%s\n" % pid)
def delpid(self):
os.remove(self.pidfile)
def start(self):
"""
Start the daemon
"""
# Check for a pidfile to see if the daemon already runs
try:
pf = file(self.pidfile, 'r')
pid = int(pf.read().strip())
pf.close()
except IOError:
pid = None
if pid and check_pid(pid):
message = "pidfile %s already exist. Daemon already running?\n"
sys.stderr.write(message % self.pidfile)
sys.exit(1)
print("daemon start...")
# Start the daemon
self.daemonize()
self.run()
def stop(self):
"""
Stop the daemon
"""
# Get the pid from the pidfile
try:
pf = file(self.pidfile, 'r')
pid = int(pf.read().strip())
pf.close()
except IOError:
pid = None
if not pid:
message = "pidfile %s does not exist. Daemon not running?\n"
sys.stderr.write(message % self.pidfile)
return # not an error in a restart
# Try killing the daemon process
try:
while 1:
os.kill(pid, SIGTERM)
time.sleep(0.1)
except OSError, err:
err = str(err)
if err.find("No such process") > 0:
if os.path.exists(self.pidfile):
os.remove(self.pidfile)
else:
print(str(err))
sys.exit(1)
def restart(self):
"""
Restart the daemon
"""
self.stop()
self.start()
def run(self):
"""
You should override this method when you subclass Daemon. It will be called after the process has been
daemonized by start() or restart().
"""
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys, os, time, atexit
from signal import SIGTERM
def check_pid(pid):
""" Check For the existence of a unix pid. """
if pid == 0:return False
try:
os.kill(pid, 0)
except OSError:
return False
else:
return True
class daemon:
"""
A generic daemon class.
Usage: subclass the Daemon class and override the run() method
"""
def __init__(self, pidfile, stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'):
self.stdin = stdin
self.stdout = stdout
self.stderr = stderr
self.pidfile = pidfile
def daemonize(self):
"""
do the UNIX double-fork magic, see Stevens' "Advanced
Programming in the UNIX Environment" for details (ISBN 0201563177)
http://www.erlenstar.demon.co.uk/unix/faq_2.html#SEC16
"""
try:
pid = os.fork()
if pid > 0:
# exit first parent
sys.exit(0)
except OSError, e:
sys.stderr.write("fork #1 failed: %d (%s)\n" % (e.errno, e.strerror))
sys.exit(1)
# decouple from parent environment
os.chdir("/")
os.setsid()
os.umask(0)
# do second fork
try:
pid = os.fork()
if pid > 0:
# exit from second parent
sys.exit(0)
except OSError, e:
sys.stderr.write("fork #2 failed: %d (%s)\n" % (e.errno, e.strerror))
sys.exit(1)
# redirect standard file descriptors
sys.stdout.flush()
sys.stderr.flush()
si = file(self.stdin, 'r')
so = file(self.stdout, 'a+')
se = file(self.stderr, 'a+', 0)
os.dup2(si.fileno(), sys.stdin.fileno())
os.dup2(so.fileno(), sys.stdout.fileno())
os.dup2(se.fileno(), sys.stderr.fileno())
# write pidfile
atexit.register(self.delpid)
pid = str(os.getpid())
file(self.pidfile, 'w+').write("%s\n" % pid)
def delpid(self):
os.remove(self.pidfile)
def start(self):
"""
Start the daemon
"""
# Check for a pidfile to see if the daemon already runs
try:
pf = file(self.pidfile, 'r')
pid = int(pf.read().strip())
pf.close()
except IOError:
pid = None
if pid and check_pid(pid):
message = "pidfile %s already exist. Daemon already running?\n"
sys.stderr.write(message % self.pidfile)
sys.exit(1)
print("daemon start...")
# Start the daemon
self.daemonize()
self.run()
def stop(self):
"""
Stop the daemon
"""
# Get the pid from the pidfile
try:
pf = file(self.pidfile, 'r')
pid = int(pf.read().strip())
pf.close()
except IOError:
pid = None
if not pid:
message = "pidfile %s does not exist. Daemon not running?\n"
sys.stderr.write(message % self.pidfile)
return # not an error in a restart
# Try killing the daemon process
try:
while 1:
os.kill(pid, SIGTERM)
time.sleep(0.1)
except OSError, err:
err = str(err)
if err.find("No such process") > 0:
if os.path.exists(self.pidfile):
os.remove(self.pidfile)
else:
print(str(err))
sys.exit(1)
def restart(self):
"""
Restart the daemon
"""
self.stop()
self.start()
def run(self):
"""
You should override this method when you subclass Daemon. It will be called after the process has been
daemonized by start() or restart().
"""

116
Code/MowingRobot/pibot_ros/pypibot/pypibot/err.py Executable file → Normal file
View File

@ -1,58 +1,58 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# 异常类
class PibotError(Exception):
def __init__(self, errcode, errmsg):
self.errcode = errcode
self.errmsg = errmsg
#Exception.__init__(self,self.__str__())
def msg(self, msg):
if not msg is None:return PibotError(self.errcode, msg)
return PibotError(8,"unknow error")
def __str__(self):
return "PibotError:%s(%d)"%(self.errmsg,self.errcode)
@property
def message(self):
return str(self)
# 声明
# 成功
success=PibotError(0,"null")
# 通用失败
fail=PibotError(1,"fail")
# 参数无效
invalidParameter=PibotError(2,"invalid parameter")
# 不支持
noSupport=PibotError(3,"no support")
# 不存在
noExist=PibotError(4,"no exist")
# 超时
timeout=PibotError(5,"timeout")
# 繁忙
busy=PibotError(6,"busy")
# 缺少参数
missParameter=PibotError(7,"miss parameter")
# 系统错误(通用错误)
systemError=PibotError(8,"system error")
# 密码错误
invalidPassword=PibotError(9,"invalid password")
# 编码失败
encodeFailed=PibotError(10,"encode failed")
# 数据库操作失败
dbOpertationFailed=PibotError(11,"db error")
# 已占用
occupied=PibotError(12,"occupied")
# session不存在
noSession = PibotError(13,'cannot find session')
#没有找到
noFound = PibotError(14, "no found")
#已经存在
existed = PibotError(15, "existed")
#已经锁定
locked = PibotError(16, "locked")
#已经过期
expired = PibotError(17, "is expired")
#无效的参数
invalidParameter = PibotError(18, "invalid parameter")
#!/usr/bin/python
# -*- coding: utf-8 -*-
# 异常类
class PibotError(Exception):
def __init__(self, errcode, errmsg):
self.errcode = errcode
self.errmsg = errmsg
#Exception.__init__(self,self.__str__())
def msg(self, msg):
if not msg is None:return PibotError(self.errcode, msg)
return PibotError(8,"unknow error")
def __str__(self):
return "PibotError:%s(%d)"%(self.errmsg,self.errcode)
@property
def message(self):
return str(self)
# 声明
# 成功
success=PibotError(0,"null")
# 通用失败
fail=PibotError(1,"fail")
# 参数无效
invalidParameter=PibotError(2,"invalid parameter")
# 不支持
noSupport=PibotError(3,"no support")
# 不存在
noExist=PibotError(4,"no exist")
# 超时
timeout=PibotError(5,"timeout")
# 繁忙
busy=PibotError(6,"busy")
# 缺少参数
missParameter=PibotError(7,"miss parameter")
# 系统错误(通用错误)
systemError=PibotError(8,"system error")
# 密码错误
invalidPassword=PibotError(9,"invalid password")
# 编码失败
encodeFailed=PibotError(10,"encode failed")
# 数据库操作失败
dbOpertationFailed=PibotError(11,"db error")
# 已占用
occupied=PibotError(12,"occupied")
# session不存在
noSession = PibotError(13,'cannot find session')
#没有找到
noFound = PibotError(14, "no found")
#已经存在
existed = PibotError(15, "existed")
#已经锁定
locked = PibotError(16, "locked")
#已经过期
expired = PibotError(17, "is expired")
#无效的参数
invalidParameter = PibotError(18, "invalid parameter")

518
Code/MowingRobot/pibot_ros/pypibot/pypibot/log.py Executable file → Normal file
View File

@ -1,259 +1,259 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys,os
import datetime
import threading
import pypibot.assistant as assistant
import platform
if assistant.is_python3():
import _thread
else:
import thread
import traceback
"""
%a Locales abbreviated weekday name.
%A Locales full weekday name.
%b Locales abbreviated month name.
%B Locales full month name.
%c Locales appropriate date and time representation.
%d Day of the month as a decimal number [01,31].
%H Hour (24-hour clock) as a decimal number [00,23].
%I Hour (12-hour clock) as a decimal number [01,12].
%j Day of the year as a decimal number [001,366].
%m Month as a decimal number [01,12].
%M Minute as a decimal number [00,59].
%p Locales equivalent of either AM or PM. (1)
%S Second as a decimal number [00,61]. (2)
%U Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0. (3)
%w Weekday as a decimal number [0(Sunday),6].
%W Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0. (3)
%x Locales appropriate date representation.
%X Locales appropriate time representation.
%y Year without century as a decimal number [00,99].
%Y Year with century as a decimal number.
%Z Time zone name (no characters if no time zone exists).
%% A literal '%' character.
"""
isWindows=False
if platform.system()=='Windows':
isWindows=True
defaultEncodeing="utf8"
if "-utf8" in sys.argv:
defaultEncodeing="utf-8"
if "-gbk" in sys.argv:
defaultEncodeing="gbk"
TRACE=5
DEBUG=4
INFORMATION=3
WARNING=2
ERROR=1
NONE=0
MAX_MSG_SIZE = 4096
def getLevelFromString(level):
level=level.lower()
if level=='t' or level=='trace':return 5
elif level=='d' or level=='debug':return 4
elif level=='i' or level=='info':return 3
elif level=='w' or level=='wran':return 2
elif level=='e' or level=='error':return 1
else :return 0
def getLevelString(level):
if level==TRACE:return "T"
elif level==DEBUG:return "D"
elif level==INFORMATION:return "I"
elif level==WARNING:return "W"
elif level==ERROR:return "E"
else:return "N"
class PibotLog:
def __init__(self):
self.isEnableControlLog=True
self.fileTemple=None
self.filePath=""
self.level=5
self._lock=threading.RLock()
self.fd=None
self.fd_day=-1
def setLevel(self,level):
self.level=getLevelFromString(level)
def enableControllog(self,enable):
self.isEnableControlLog=enable
def enableFileLog(self,fileName):
self.fileTemple=fileName
self.updateFilelog()
def updateFilelog(self):
fn=assistant.SF(self.fileTemple)
if fn!=self.filePath:
self.i("new log file:%s",fn)
if self.fd:
self.fd.close()
self.fd=None
self.fd_day=-1
self.filePath=""
try:
path=os.path.dirname(fn)
if path!="" and not os.path.isdir(path):os.makedirs(path)
self.fd=open(fn,mode="w")
try:
linkfn = fn.split(".log.", 1)[0] + ".INFO"
if os.path.exists(linkfn):
os.remove(linkfn)
(filepath, tempfilename) = os.path.split(fn)
os.symlink(tempfilename, linkfn)
except:
pass
self.fd_day=datetime.datetime.now().day
self.filePath=fn
except Exception as e:
print("open file fail!file=%s,err=%s"%(fn,e))
def _output(self,level,msg,args):
if self.level<level:return
try:
if len(args)>0:
t=[]
for arg in args:
if isinstance(arg,Exception):
t.append(traceback.format_exc(arg).decode('utf-8'))
elif isinstance(arg,bytes) :
t.append(arg.decode('utf-8'))
else:
t.append(arg)
args=tuple(t)
try:
msg=msg%args
except:
try:
for arg in args:
msg=msg+str(arg)+" "
except Exception as e:
msg=msg+"==LOG ERROR==>%s"%(e)
if len(msg)>MAX_MSG_SIZE:msg=msg[0:MAX_MSG_SIZE]
now=datetime.datetime.now()
msg=msg+"\r\n"
if assistant.is_python3():
id = _thread.get_ident()
else:
id = thread.get_ident()
s="[%s] %04d-%02d-%02d %02d:%02d:%02d.%03d (0x%04X):%s"%(getLevelString(level),now.year,now.month,now.day,now.hour,now.minute,now.second,now.microsecond/1000,(id>>8)&0xffff,msg)
prefix=''
suffix=''
if not isWindows:
suffix='\033[0m'
if level==TRACE:
prefix='\033[0;37m'
elif level==DEBUG:
prefix='\033[1m'
elif level==INFORMATION:
prefix='\033[0;32m'
elif level==WARNING:
prefix='\033[0;33m'
elif level==ERROR:
prefix='\033[0;31m'
else:
pass
self._lock.acquire()
try:
if self.isEnableControlLog:
sys.stdout.write((prefix+s+suffix))
if self.fd:
if self.fd_day!=now.day:
self.updateFilelog()
if assistant.is_python3():
self.fd.write(s)
else:
self.fd.write(s.encode('utf-8'))
self.fd.flush()
finally:
self._lock.release()
except Exception as e:
if assistant.is_python3():
print(e)
else:
print("PibotLog._output crash!err=%s"%traceback.format_exc(e))
def trace(self,msg,*args):
self._output(TRACE,msg,args)
def t(self,msg,*args):
self._output(TRACE,msg,args)
def debug(self,msg,*args):
self._output(DEBUG, msg,args)
def d(self,msg,*args):
self._output(DEBUG, msg,args)
def info(self,msg,*args):
self._output(INFORMATION, msg,args)
def i(self,msg,*args):
self._output(INFORMATION, msg,args)
def warn(self,msg,*args):
self._output(WARNING, msg,args)
def w(self,msg,*args):
self._output(WARNING, msg,args)
def error(self,msg,*args):
self._output(ERROR, msg,args)
def e(self,msg,*args):
self._output(ERROR, msg,args)
def _log(self,level,msg,args):
self._output(level, msg,args)
def createNamedLog(self,name):
return NamedLog(name)
log=PibotLog()
class NamedLog:
def __init__(self,name=None):
global log
self.name=''
if name:
self.name='['+name+']'
self.log=log
def trace(self,msg,*args):
msg=self.name+msg
self.log._log(TRACE,msg,args)
def t(self,msg,*args):
msg=self.name+msg
self.log._log(TRACE,msg,args)
def debug(self,msg,*args):
msg=self.name+msg
self.log._log(DEBUG, msg,args)
def d(self,msg,*args):
msg=self.name+msg
self.log._log(DEBUG, msg,args)
def info(self,msg,*args):
msg=self.name+msg
self.log._log(INFORMATION, msg,args)
def i(self,msg,*args):
msg=self.name+msg
self.log._log(INFORMATION, msg,args)
def warn(self,msg,*args):
msg=self.name+msg
self.log._log(WARNING, msg,args)
def w(self,msg,*args):
msg=self.name+msg
self.log._log(WARNING, msg,args)
def error(self,msg,*args):
msg=self.name+msg
self.log._log(ERROR, msg,args)
def e(self,msg,*args):
msg=self.name+msg
self.log._log(ERROR, msg,args)
if __name__ == "__main__":
log.trace("1%s","hello")
log.debug("2%d",12)
try:
raise Exception("EXC")
except Exception as e:
log.info("3%s",e)
log.warn("1")
log.error("1")
#log.enableFileLog("$(scriptpath)test_$(Date8)_$(filenumber2).log")
log.trace("1")
log.debug("1")
log.info("1")
log.warn("1")
log.error("1")
log=NamedLog("test")
log.d("1")
log.i("1")
log.warn("1")
log.error("1=%d,%s",100,e)
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys,os
import datetime
import threading
import pypibot.assistant as assistant
import platform
if assistant.is_python3():
import _thread
else:
import thread
import traceback
"""
%a Locales abbreviated weekday name.
%A Locales full weekday name.
%b Locales abbreviated month name.
%B Locales full month name.
%c Locales appropriate date and time representation.
%d Day of the month as a decimal number [01,31].
%H Hour (24-hour clock) as a decimal number [00,23].
%I Hour (12-hour clock) as a decimal number [01,12].
%j Day of the year as a decimal number [001,366].
%m Month as a decimal number [01,12].
%M Minute as a decimal number [00,59].
%p Locales equivalent of either AM or PM. (1)
%S Second as a decimal number [00,61]. (2)
%U Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0. (3)
%w Weekday as a decimal number [0(Sunday),6].
%W Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0. (3)
%x Locales appropriate date representation.
%X Locales appropriate time representation.
%y Year without century as a decimal number [00,99].
%Y Year with century as a decimal number.
%Z Time zone name (no characters if no time zone exists).
%% A literal '%' character.
"""
isWindows=False
if platform.system()=='Windows':
isWindows=True
defaultEncodeing="utf8"
if "-utf8" in sys.argv:
defaultEncodeing="utf-8"
if "-gbk" in sys.argv:
defaultEncodeing="gbk"
TRACE=5
DEBUG=4
INFORMATION=3
WARNING=2
ERROR=1
NONE=0
MAX_MSG_SIZE = 4096
def getLevelFromString(level):
level=level.lower()
if level=='t' or level=='trace':return 5
elif level=='d' or level=='debug':return 4
elif level=='i' or level=='info':return 3
elif level=='w' or level=='wran':return 2
elif level=='e' or level=='error':return 1
else :return 0
def getLevelString(level):
if level==TRACE:return "T"
elif level==DEBUG:return "D"
elif level==INFORMATION:return "I"
elif level==WARNING:return "W"
elif level==ERROR:return "E"
else:return "N"
class PibotLog:
def __init__(self):
self.isEnableControlLog=True
self.fileTemple=None
self.filePath=""
self.level=5
self._lock=threading.RLock()
self.fd=None
self.fd_day=-1
def setLevel(self,level):
self.level=getLevelFromString(level)
def enableControllog(self,enable):
self.isEnableControlLog=enable
def enableFileLog(self,fileName):
self.fileTemple=fileName
self.updateFilelog()
def updateFilelog(self):
fn=assistant.SF(self.fileTemple)
if fn!=self.filePath:
self.i("new log file:%s",fn)
if self.fd:
self.fd.close()
self.fd=None
self.fd_day=-1
self.filePath=""
try:
path=os.path.dirname(fn)
if path!="" and not os.path.isdir(path):os.makedirs(path)
self.fd=open(fn,mode="w")
try:
linkfn = fn.split(".log.", 1)[0] + ".INFO"
if os.path.exists(linkfn):
os.remove(linkfn)
(filepath, tempfilename) = os.path.split(fn)
os.symlink(tempfilename, linkfn)
except:
pass
self.fd_day=datetime.datetime.now().day
self.filePath=fn
except Exception as e:
print("open file fail!file=%s,err=%s"%(fn,e))
def _output(self,level,msg,args):
if self.level<level:return
try:
if len(args)>0:
t=[]
for arg in args:
if isinstance(arg,Exception):
t.append(traceback.format_exc(arg).decode('utf-8'))
elif isinstance(arg,bytes) :
t.append(arg.decode('utf-8'))
else:
t.append(arg)
args=tuple(t)
try:
msg=msg%args
except:
try:
for arg in args:
msg=msg+str(arg)+" "
except Exception as e:
msg=msg+"==LOG ERROR==>%s"%(e)
if len(msg)>MAX_MSG_SIZE:msg=msg[0:MAX_MSG_SIZE]
now=datetime.datetime.now()
msg=msg+"\r\n"
if assistant.is_python3():
id = _thread.get_ident()
else:
id = thread.get_ident()
s="[%s] %04d-%02d-%02d %02d:%02d:%02d.%03d (0x%04X):%s"%(getLevelString(level),now.year,now.month,now.day,now.hour,now.minute,now.second,now.microsecond/1000,(id>>8)&0xffff,msg)
prefix=''
suffix=''
if not isWindows:
suffix='\033[0m'
if level==TRACE:
prefix='\033[0;37m'
elif level==DEBUG:
prefix='\033[1m'
elif level==INFORMATION:
prefix='\033[0;32m'
elif level==WARNING:
prefix='\033[0;33m'
elif level==ERROR:
prefix='\033[0;31m'
else:
pass
self._lock.acquire()
try:
if self.isEnableControlLog:
sys.stdout.write((prefix+s+suffix))
if self.fd:
if self.fd_day!=now.day:
self.updateFilelog()
if assistant.is_python3():
self.fd.write(s)
else:
self.fd.write(s.encode('utf-8'))
self.fd.flush()
finally:
self._lock.release()
except Exception as e:
if assistant.is_python3():
print(e)
else:
print("PibotLog._output crash!err=%s"%traceback.format_exc(e))
def trace(self,msg,*args):
self._output(TRACE,msg,args)
def t(self,msg,*args):
self._output(TRACE,msg,args)
def debug(self,msg,*args):
self._output(DEBUG, msg,args)
def d(self,msg,*args):
self._output(DEBUG, msg,args)
def info(self,msg,*args):
self._output(INFORMATION, msg,args)
def i(self,msg,*args):
self._output(INFORMATION, msg,args)
def warn(self,msg,*args):
self._output(WARNING, msg,args)
def w(self,msg,*args):
self._output(WARNING, msg,args)
def error(self,msg,*args):
self._output(ERROR, msg,args)
def e(self,msg,*args):
self._output(ERROR, msg,args)
def _log(self,level,msg,args):
self._output(level, msg,args)
def createNamedLog(self,name):
return NamedLog(name)
log=PibotLog()
class NamedLog:
def __init__(self,name=None):
global log
self.name=''
if name:
self.name='['+name+']'
self.log=log
def trace(self,msg,*args):
msg=self.name+msg
self.log._log(TRACE,msg,args)
def t(self,msg,*args):
msg=self.name+msg
self.log._log(TRACE,msg,args)
def debug(self,msg,*args):
msg=self.name+msg
self.log._log(DEBUG, msg,args)
def d(self,msg,*args):
msg=self.name+msg
self.log._log(DEBUG, msg,args)
def info(self,msg,*args):
msg=self.name+msg
self.log._log(INFORMATION, msg,args)
def i(self,msg,*args):
msg=self.name+msg
self.log._log(INFORMATION, msg,args)
def warn(self,msg,*args):
msg=self.name+msg
self.log._log(WARNING, msg,args)
def w(self,msg,*args):
msg=self.name+msg
self.log._log(WARNING, msg,args)
def error(self,msg,*args):
msg=self.name+msg
self.log._log(ERROR, msg,args)
def e(self,msg,*args):
msg=self.name+msg
self.log._log(ERROR, msg,args)
if __name__ == "__main__":
log.trace("1%s","hello")
log.debug("2%d",12)
try:
raise Exception("EXC")
except Exception as e:
log.info("3%s",e)
log.warn("1")
log.error("1")
#log.enableFileLog("$(scriptpath)test_$(Date8)_$(filenumber2).log")
log.trace("1")
log.debug("1")
log.info("1")
log.warn("1")
log.error("1")
log=NamedLog("test")
log.d("1")
log.i("1")
log.warn("1")
log.error("1=%d,%s",100,e)

View File

0
Code/MowingRobot/pibot_ros/pypibot/pypibot/proxy.py Executable file → Normal file
View File

View File

@ -1,240 +1,240 @@
import struct
params_size=29
# main board
class MessageID:
ID_GET_VERSION = 0
ID_SET_ROBOT_PARAMETER = 1
ID_GET_ROBOT_PARAMETER = 2
ID_INIT_ODOM = 3
ID_SET_VEL = 4
ID_GET_ODOM = 5
ID_GET_PID_DEBUG = 6
ID_GET_IMU = 7
ID_GET_ENCODER_COUNT = 8
ID_SET_MOTOR_PWM = 9
class RobotMessage:
def pack(self):
return b''
def unpack(self):
return True
class RobotFirmwareInfo(RobotMessage):
def __init__(self):
self.version = ''
self.build_time = ''
def unpack(self, data):
try:
upk = struct.unpack('16s16s', bytes(data))
except:
return False
[self.version, self.build_time] = upk
return True
class RobotImuType:
IMU_TYPE_GY65 = 49
IMU_TYPE_GY85 = 69
IMU_TYPE_GY87 = 71
class RobotModelType:
MODEL_TYPE_2WD_DIFF = 1
MODEL_TYPE_4WD_DIFF = 2
MODEL_TYPE_3WD_OMNI = 101
MODEL_TYPE_4WD_OMNI = 102
MODEL_TYPE_4WD_MECANUM = 201
class RobotParameters():
def __init__(self, wheel_diameter=0, \
wheel_track=0, \
encoder_resolution=0, \
do_pid_interval=0, \
kp=0, \
ki=0, \
kd=0, \
ko=0, \
cmd_last_time=0, \
max_v_liner_x=0, \
max_v_liner_y=0, \
max_v_angular_z=0, \
imu_type=0, \
motor_ratio=0, \
model_type=0, \
motor_nonexchange_flag=255, \
encoder_nonexchange_flag=255, \
):
self.wheel_diameter = wheel_diameter
self.wheel_track = wheel_track
self.encoder_resolution = encoder_resolution
self.do_pid_interval = do_pid_interval
self.kp = kp
self.ki = ki
self.kd = kd
self.ko = ko
self.cmd_last_time = cmd_last_time
self.max_v_liner_x = max_v_liner_x
self.max_v_liner_y = max_v_liner_y
self.max_v_angular_z = max_v_angular_z
self.imu_type = imu_type
self.motor_ratio = motor_ratio
self.model_type = model_type
self.motor_nonexchange_flag = motor_nonexchange_flag
self.encoder_nonexchange_flag = encoder_nonexchange_flag
reserve=b'\xff'
self.reserve=b''
for i in range(64-params_size):
self.reserve+=reserve
robotParam = RobotParameters()
class GetRobotParameters(RobotMessage):
def __init__(self):
self.param = robotParam
def unpack(self, data):
#print(bytes(data), len(bytes(data)))
upk = struct.unpack('<3H1B8H1B1H3B%ds'%(64-params_size), bytes(data))
[self.param.wheel_diameter,
self.param.wheel_track,
self.param.encoder_resolution,
self.param.do_pid_interval,
self.param.kp,
self.param.ki,
self.param.kd,
self.param.ko,
self.param.cmd_last_time,
self.param.max_v_liner_x,
self.param.max_v_liner_y,
self.param.max_v_angular_z,
self.param.imu_type,
self.param.motor_ratio,
self.param.model_type,
self.param.motor_nonexchange_flag,
self.param.encoder_nonexchange_flag,
self.param.reserve] = upk
return True
class SetRobotParameters(RobotMessage):
def __init__(self):
self.param = robotParam
def pack(self):
data = [self.param.wheel_diameter,
self.param.wheel_track,
self.param.encoder_resolution,
self.param.do_pid_interval,
self.param.kp,
self.param.ki,
self.param.kd,
self.param.ko,
self.param.cmd_last_time,
self.param.max_v_liner_x,
self.param.max_v_liner_y,
self.param.max_v_angular_z,
self.param.imu_type,
self.param.motor_ratio,
self.param.model_type,
self.param.motor_nonexchange_flag,
self.param.encoder_nonexchange_flag,
self.param.reserve]
print(data)
pk = struct.pack('<3H1B8H1B1H3B%ds'%(64-(3*2+1+8*2+1+2+3)), *data)
return pk
def unpack(self, data):
return True
class RobotVel(RobotMessage):
def __init__(self):
self.v_liner_x = 0
self.v_liner_y = 0
self.v_angular_z = 0
def pack(self):
data = [self.v_liner_x,
self.v_liner_y,
self.v_angular_z]
pk = struct.pack('3h', *data)
return pk
def unpack(self, data):
return True
#todo the rest of the message classes
class RobotOdom(RobotMessage):
def __init__(self):
self.v_liner_x = 0
self.v_liner_y = 0
self.v_angular_z = 0
self.x = 0
self.y = 0
self.yaw = 0
def unpack(self, data):
try:
upk = struct.unpack('<3H2l1H', bytes(data))
except:
return False
[self.v_liner_x,
self.v_liner_y,
self.v_angular_z,
self.x,
self.y,
self.yaw] = upk
return True
class RobotPIDData(RobotMessage):
pass
class RobotIMU(RobotMessage):
def __init__(self):
self.imu = [0]*9
def unpack(self, data):
try:
upk = struct.unpack('<9f', bytes(data))
except:
return False
self.imu = upk
return True
class RobotEncoderCount(RobotMessage):
def __init__(self):
self.encoder = [0]*4
def unpack(self, data):
try:
upk = struct.unpack('<4f', bytes(data))
except:
return False
self.encoder = upk
return True
class RobotMotorPWM(RobotMessage):
def __init__(self):
self.pwm = [0]*4
def pack(self):
pk = struct.pack('4h', *self.pwm)
return pk
def unpack(self, data):
return True
BoardDataDict = {MessageID.ID_GET_VERSION:RobotFirmwareInfo(),
MessageID.ID_GET_ROBOT_PARAMETER:GetRobotParameters(),
MessageID.ID_SET_ROBOT_PARAMETER:SetRobotParameters(),
MessageID.ID_SET_VEL:RobotVel(),
MessageID.ID_GET_ODOM:RobotOdom(),
MessageID.ID_GET_PID_DEBUG: RobotPIDData(),
MessageID.ID_GET_IMU: RobotIMU(),
MessageID.ID_GET_ENCODER_COUNT: RobotEncoderCount(),
MessageID.ID_SET_MOTOR_PWM: RobotMotorPWM(),
}
import struct
params_size=29
# main board
class MessageID:
ID_GET_VERSION = 0
ID_SET_ROBOT_PARAMETER = 1
ID_GET_ROBOT_PARAMETER = 2
ID_INIT_ODOM = 3
ID_SET_VEL = 4
ID_GET_ODOM = 5
ID_GET_PID_DEBUG = 6
ID_GET_IMU = 7
ID_GET_ENCODER_COUNT = 8
ID_SET_MOTOR_PWM = 9
class RobotMessage:
def pack(self):
return b''
def unpack(self):
return True
class RobotFirmwareInfo(RobotMessage):
def __init__(self):
self.version = ''
self.build_time = ''
def unpack(self, data):
try:
upk = struct.unpack('16s16s', bytes(data))
except:
return False
[self.version, self.build_time] = upk
return True
class RobotImuType:
IMU_TYPE_GY65 = 49
IMU_TYPE_GY85 = 69
IMU_TYPE_GY87 = 71
class RobotModelType:
MODEL_TYPE_2WD_DIFF = 1
MODEL_TYPE_4WD_DIFF = 2
MODEL_TYPE_3WD_OMNI = 101
MODEL_TYPE_4WD_OMNI = 102
MODEL_TYPE_4WD_MECANUM = 201
class RobotParameters():
def __init__(self, wheel_diameter=0, \
wheel_track=0, \
encoder_resolution=0, \
do_pid_interval=0, \
kp=0, \
ki=0, \
kd=0, \
ko=0, \
cmd_last_time=0, \
max_v_liner_x=0, \
max_v_liner_y=0, \
max_v_angular_z=0, \
imu_type=0, \
motor_ratio=0, \
model_type=0, \
motor_nonexchange_flag=255, \
encoder_nonexchange_flag=255, \
):
self.wheel_diameter = wheel_diameter
self.wheel_track = wheel_track
self.encoder_resolution = encoder_resolution
self.do_pid_interval = do_pid_interval
self.kp = kp
self.ki = ki
self.kd = kd
self.ko = ko
self.cmd_last_time = cmd_last_time
self.max_v_liner_x = max_v_liner_x
self.max_v_liner_y = max_v_liner_y
self.max_v_angular_z = max_v_angular_z
self.imu_type = imu_type
self.motor_ratio = motor_ratio
self.model_type = model_type
self.motor_nonexchange_flag = motor_nonexchange_flag
self.encoder_nonexchange_flag = encoder_nonexchange_flag
reserve=b'\xff'
self.reserve=b''
for i in range(64-params_size):
self.reserve+=reserve
robotParam = RobotParameters()
class GetRobotParameters(RobotMessage):
def __init__(self):
self.param = robotParam
def unpack(self, data):
#print(bytes(data), len(bytes(data)))
upk = struct.unpack('<3H1B8H1B1H3B%ds'%(64-params_size), bytes(data))
[self.param.wheel_diameter,
self.param.wheel_track,
self.param.encoder_resolution,
self.param.do_pid_interval,
self.param.kp,
self.param.ki,
self.param.kd,
self.param.ko,
self.param.cmd_last_time,
self.param.max_v_liner_x,
self.param.max_v_liner_y,
self.param.max_v_angular_z,
self.param.imu_type,
self.param.motor_ratio,
self.param.model_type,
self.param.motor_nonexchange_flag,
self.param.encoder_nonexchange_flag,
self.param.reserve] = upk
return True
class SetRobotParameters(RobotMessage):
def __init__(self):
self.param = robotParam
def pack(self):
data = [self.param.wheel_diameter,
self.param.wheel_track,
self.param.encoder_resolution,
self.param.do_pid_interval,
self.param.kp,
self.param.ki,
self.param.kd,
self.param.ko,
self.param.cmd_last_time,
self.param.max_v_liner_x,
self.param.max_v_liner_y,
self.param.max_v_angular_z,
self.param.imu_type,
self.param.motor_ratio,
self.param.model_type,
self.param.motor_nonexchange_flag,
self.param.encoder_nonexchange_flag,
self.param.reserve]
print(data)
pk = struct.pack('<3H1B8H1B1H3B%ds'%(64-(3*2+1+8*2+1+2+3)), *data)
return pk
def unpack(self, data):
return True
class RobotVel(RobotMessage):
def __init__(self):
self.v_liner_x = 0
self.v_liner_y = 0
self.v_angular_z = 0
def pack(self):
data = [self.v_liner_x,
self.v_liner_y,
self.v_angular_z]
pk = struct.pack('3h', *data)
return pk
def unpack(self, data):
return True
#todo the rest of the message classes
class RobotOdom(RobotMessage):
def __init__(self):
self.v_liner_x = 0
self.v_liner_y = 0
self.v_angular_z = 0
self.x = 0
self.y = 0
self.yaw = 0
def unpack(self, data):
try:
upk = struct.unpack('<3H2l1H', bytes(data))
except:
return False
[self.v_liner_x,
self.v_liner_y,
self.v_angular_z,
self.x,
self.y,
self.yaw] = upk
return True
class RobotPIDData(RobotMessage):
pass
class RobotIMU(RobotMessage):
def __init__(self):
self.imu = [0]*9
def unpack(self, data):
try:
upk = struct.unpack('<9f', bytes(data))
except:
return False
self.imu = upk
return True
class RobotEncoderCount(RobotMessage):
def __init__(self):
self.encoder = [0]*4
def unpack(self, data):
try:
upk = struct.unpack('<4f', bytes(data))
except:
return False
self.encoder = upk
return True
class RobotMotorPWM(RobotMessage):
def __init__(self):
self.pwm = [0]*4
def pack(self):
pk = struct.pack('4h', *self.pwm)
return pk
def unpack(self, data):
return True
BoardDataDict = {MessageID.ID_GET_VERSION:RobotFirmwareInfo(),
MessageID.ID_GET_ROBOT_PARAMETER:GetRobotParameters(),
MessageID.ID_SET_ROBOT_PARAMETER:SetRobotParameters(),
MessageID.ID_SET_VEL:RobotVel(),
MessageID.ID_GET_ODOM:RobotOdom(),
MessageID.ID_GET_PID_DEBUG: RobotPIDData(),
MessageID.ID_GET_IMU: RobotIMU(),
MessageID.ID_GET_ENCODER_COUNT: RobotEncoderCount(),
MessageID.ID_SET_MOTOR_PWM: RobotMotorPWM(),
}

230
Code/MowingRobot/pibot_ros/pypibot/transport/main.py Executable file → Normal file
View File

@ -1,115 +1,115 @@
import platform
import sys
sys.path.append("..")
import pypibot
from pypibot import log
from transport import Transport
from dataholder import MessageID
import params
import time
import signal
#for linux
port="/dev/pibot"
#for windows
#port="com3"
pypibot.assistant.enableGlobalExcept()
#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log")
log.setLevel("i")
run_flag = True
def exit(signum, frame):
global run_flag
run_flag = False
if __name__ == '__main__':
signal.signal(signal.SIGINT, exit)
mboard = Transport(port, params.pibotBaud)
if not mboard.start():
log.error("can not open %s"%port)
sys.exit()
DataHolder = mboard.getDataHolder()
for num in range(0,3):
log.info("****************get robot version*****************")
boardVersion = DataHolder[MessageID.ID_GET_VERSION]
p = mboard.request(MessageID.ID_GET_VERSION)
if p:
log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode()))
break
else:
log.error('read firmware version err\r\n')
import time
time.sleep(1)
if num == 2:
log.error('please check connection or baudrate\r\n')
sys.exit()
# get robot parameter
robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER]
p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER)
if p:
log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \
%(robotParam.param.model_type, \
robotParam.param.wheel_diameter, \
robotParam.param.wheel_track, \
robotParam.param.encoder_resolution
))
log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \
%(robotParam.param.do_pid_interval, \
robotParam.param.kp, \
robotParam.param.ki, \
robotParam.param.kd, \
robotParam.param.ko))
log.info("cmd_last_time:%d imu_type:%d" \
%(robotParam.param.cmd_last_time,\
robotParam.param.imu_type
))
log.info("max_v:%d %d %d\r\n" \
%(robotParam.param.max_v_liner_x,\
robotParam.param.max_v_liner_y, \
robotParam.param.max_v_angular_z
))
log.info("motor flag:%d encoder flag: %d\r\n" \
%(robotParam.param.motor_nonexchange_flag,\
robotParam.param.encoder_nonexchange_flag
))
else:
log.error('get params err\r\n')
quit(1)
log.info("****************get odom&imu*****************")
while run_flag:
robotOdom = DataHolder[MessageID.ID_GET_ODOM]
p = mboard.request(MessageID.ID_GET_ODOM)
if p:
log.info('request get odom success, vx=%d vy=%d vangular=%d, x=%d y=%d yaw=%d'%(robotOdom.v_liner_x, \
robotOdom.v_liner_y, \
robotOdom.v_angular_z, \
robotOdom.x, \
robotOdom.y, \
robotOdom.yaw))
else:
log.error('get odom err')
quit(1)
robotIMU = DataHolder[MessageID.ID_GET_IMU].imu
p = mboard.request(MessageID.ID_GET_IMU)
if p:
log.info('get imu success, imu=[%f %f %f %f %f %f %f %f %f]'%(robotIMU[0], robotIMU[1], robotIMU[2], \
robotIMU[3], robotIMU[4], robotIMU[5], \
robotIMU[6], robotIMU[7], robotIMU[8]))
else:
log.error('get imu err')
quit(1)
time.sleep(0.1)
import platform
import sys
sys.path.append("..")
import pypibot
from pypibot import log
from transport import Transport
from dataholder import MessageID
import params
import time
import signal
#for linux
port="/dev/pibot"
#for windows
#port="com3"
pypibot.assistant.enableGlobalExcept()
#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log")
log.setLevel("i")
run_flag = True
def exit(signum, frame):
global run_flag
run_flag = False
if __name__ == '__main__':
signal.signal(signal.SIGINT, exit)
mboard = Transport(port, params.pibotBaud)
if not mboard.start():
log.error("can not open %s"%port)
sys.exit()
DataHolder = mboard.getDataHolder()
for num in range(0,3):
log.info("****************get robot version*****************")
boardVersion = DataHolder[MessageID.ID_GET_VERSION]
p = mboard.request(MessageID.ID_GET_VERSION)
if p:
log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode()))
break
else:
log.error('read firmware version err\r\n')
import time
time.sleep(1)
if num == 2:
log.error('please check connection or baudrate\r\n')
sys.exit()
# get robot parameter
robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER]
p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER)
if p:
log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \
%(robotParam.param.model_type, \
robotParam.param.wheel_diameter, \
robotParam.param.wheel_track, \
robotParam.param.encoder_resolution
))
log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \
%(robotParam.param.do_pid_interval, \
robotParam.param.kp, \
robotParam.param.ki, \
robotParam.param.kd, \
robotParam.param.ko))
log.info("cmd_last_time:%d imu_type:%d" \
%(robotParam.param.cmd_last_time,\
robotParam.param.imu_type
))
log.info("max_v:%d %d %d\r\n" \
%(robotParam.param.max_v_liner_x,\
robotParam.param.max_v_liner_y, \
robotParam.param.max_v_angular_z
))
log.info("motor flag:%d encoder flag: %d\r\n" \
%(robotParam.param.motor_nonexchange_flag,\
robotParam.param.encoder_nonexchange_flag
))
else:
log.error('get params err\r\n')
quit(1)
log.info("****************get odom&imu*****************")
while run_flag:
robotOdom = DataHolder[MessageID.ID_GET_ODOM]
p = mboard.request(MessageID.ID_GET_ODOM)
if p:
log.info('request get odom success, vx=%d vy=%d vangular=%d, x=%d y=%d yaw=%d'%(robotOdom.v_liner_x, \
robotOdom.v_liner_y, \
robotOdom.v_angular_z, \
robotOdom.x, \
robotOdom.y, \
robotOdom.yaw))
else:
log.error('get odom err')
quit(1)
robotIMU = DataHolder[MessageID.ID_GET_IMU].imu
p = mboard.request(MessageID.ID_GET_IMU)
if p:
log.info('get imu success, imu=[%f %f %f %f %f %f %f %f %f]'%(robotIMU[0], robotIMU[1], robotIMU[2], \
robotIMU[3], robotIMU[4], robotIMU[5], \
robotIMU[6], robotIMU[7], robotIMU[8]))
else:
log.error('get imu err')
quit(1)
time.sleep(0.1)

148
Code/MowingRobot/pibot_ros/pypibot/transport/params.py Executable file → Normal file
View File

@ -1,75 +1,75 @@
import dataholder
import os
from dataholder import RobotImuType
from dataholder import RobotModelType
pibotModel = os.environ['PIBOT_MODEL']
boardType = os.environ['PIBOT_BOARD']
pibotBaud = os.environ['PIBOT_DRIVER_BAUDRATE']
print(pibotModel)
print(boardType)
print(pibotBaud)
pibotParam = dataholder.RobotParameters()
if pibotModel == "apollo" and boardType == "arduino":
pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \
75, 2500, 0, 10, \
250, 40, 0, 200, \
RobotImuType.IMU_TYPE_GY85, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "apollo" and boardType == "stm32f1":
pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \
320, 2700, 0, 10, \
250, 50, 0, 200, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "apollo" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \
320, 2700, 0, 10, \
250, 40, 0, 200, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "zeus" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(58, 230, 44, 10, \
320, 2700, 0, 10, \
250, 50, 50, 250, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_3WD_OMNI)
elif pibotModel == "hades" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(76, 470, 44, 10, \
320, 2700, 0, 10, \
250, 50, 50, 250, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_4WD_MECANUM)
elif pibotModel == "hadesX" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(150, 565, 44, 10, \
250, 2750, 0, 10, \
250, 50, 50, 250, \
RobotImuType.IMU_TYPE_GY87, 72, \
RobotModelType.MODEL_TYPE_4WD_MECANUM)
elif pibotModel == "hera" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(82, 338, 44, 10, \
320, 2700, 0, 10, \
250, 50, 50, 250, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_4WD_DIFF)
elif pibotModel == "apolloX" and boardType == "arduino":
pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \
75, 2500, 0, 10, \
250, 40, 0, 200, \
RobotImuType.IMU_TYPE_GY85, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "apolloX" and boardType == "stm32f1":
pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \
250, 1200, 0, 10, \
250, 50, 0, 200, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "apolloX" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \
250, 1200, 0, 10, \
250, 50, 0, 200, \
RobotImuType.IMU_TYPE_GY87, 90, \
import dataholder
import os
from dataholder import RobotImuType
from dataholder import RobotModelType
pibotModel = os.environ['PIBOT_MODEL']
boardType = os.environ['PIBOT_BOARD']
pibotBaud = os.environ['PIBOT_DRIVER_BAUDRATE']
print(pibotModel)
print(boardType)
print(pibotBaud)
pibotParam = dataholder.RobotParameters()
if pibotModel == "apollo" and boardType == "arduino":
pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \
75, 2500, 0, 10, \
250, 40, 0, 200, \
RobotImuType.IMU_TYPE_GY85, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "apollo" and boardType == "stm32f1":
pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \
320, 2700, 0, 10, \
250, 50, 0, 200, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "apollo" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \
320, 2700, 0, 10, \
250, 40, 0, 200, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "zeus" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(58, 230, 44, 10, \
320, 2700, 0, 10, \
250, 50, 50, 250, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_3WD_OMNI)
elif pibotModel == "hades" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(76, 470, 44, 10, \
320, 2700, 0, 10, \
250, 50, 50, 250, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_4WD_MECANUM)
elif pibotModel == "hadesX" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(150, 565, 44, 10, \
250, 2750, 0, 10, \
250, 50, 50, 250, \
RobotImuType.IMU_TYPE_GY87, 72, \
RobotModelType.MODEL_TYPE_4WD_MECANUM)
elif pibotModel == "hera" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(82, 338, 44, 10, \
320, 2700, 0, 10, \
250, 50, 50, 250, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_4WD_DIFF)
elif pibotModel == "apolloX" and boardType == "arduino":
pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \
75, 2500, 0, 10, \
250, 40, 0, 200, \
RobotImuType.IMU_TYPE_GY85, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "apolloX" and boardType == "stm32f1":
pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \
250, 1200, 0, 10, \
250, 50, 0, 200, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)
elif pibotModel == "apolloX" and boardType == "stm32f4":
pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \
250, 1200, 0, 10, \
250, 50, 0, 200, \
RobotImuType.IMU_TYPE_GY87, 90, \
RobotModelType.MODEL_TYPE_2WD_DIFF)

View File

@ -1,90 +1,90 @@
import platform
import sys
sys.path.append("..")
import pypibot
from pypibot import log
from transport import Transport
from dataholder import MessageID
import params
#for linux
port="/dev/pibot"
#for windows
#port="com3"
pypibot.assistant.enableGlobalExcept()
#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log")
log.setLevel("i")
if __name__ == '__main__':
mboard = Transport(port, params.pibotBaud)
if not mboard.start():
log.error("can not open %s"%port)
sys.exit()
DataHolder = mboard.getDataHolder()
for num in range(0,3):
log.info("****************get robot version*****************")
boardVersion = DataHolder[MessageID.ID_GET_VERSION]
p = mboard.request(MessageID.ID_GET_VERSION)
if p:
log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode()))
break
else:
log.error('read firmware version err\r\n')
import time
time.sleep(1)
if num == 2:
log.error('please check connection or baudrate\r\n')
sys.exit()
# set robot parameter
log.info("****************set robot parameter*****************")
DataHolder[MessageID.ID_SET_ROBOT_PARAMETER].param = params.pibotParam
p = mboard.request(MessageID.ID_SET_ROBOT_PARAMETER)
if p:
log.info('set parameter success')
else:
log.error('set parameter err')
quit(1)
# get robot parameter
robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER]
p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER)
if p:
log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \
%(robotParam.param.model_type, \
robotParam.param.wheel_diameter, \
robotParam.param.wheel_track, \
robotParam.param.encoder_resolution
))
log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \
%(robotParam.param.do_pid_interval, \
robotParam.param.kp, \
robotParam.param.ki, \
robotParam.param.kd, \
robotParam.param.ko))
log.info("cmd_last_time:%d imu_type:%d" \
%(robotParam.param.cmd_last_time,\
robotParam.param.imu_type
))
log.info("max_v:%d %d %d\r\n" \
%(robotParam.param.max_v_liner_x,\
robotParam.param.max_v_liner_y, \
robotParam.param.max_v_angular_z
))
log.info("motor flag:%d encoder flag: %d\r\n" \
%(robotParam.param.motor_nonexchange_flag,\
robotParam.param.encoder_nonexchange_flag
))
else:
log.error('get param err\r\n')
import platform
import sys
sys.path.append("..")
import pypibot
from pypibot import log
from transport import Transport
from dataholder import MessageID
import params
#for linux
port="/dev/pibot"
#for windows
#port="com3"
pypibot.assistant.enableGlobalExcept()
#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log")
log.setLevel("i")
if __name__ == '__main__':
mboard = Transport(port, params.pibotBaud)
if not mboard.start():
log.error("can not open %s"%port)
sys.exit()
DataHolder = mboard.getDataHolder()
for num in range(0,3):
log.info("****************get robot version*****************")
boardVersion = DataHolder[MessageID.ID_GET_VERSION]
p = mboard.request(MessageID.ID_GET_VERSION)
if p:
log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode()))
break
else:
log.error('read firmware version err\r\n')
import time
time.sleep(1)
if num == 2:
log.error('please check connection or baudrate\r\n')
sys.exit()
# set robot parameter
log.info("****************set robot parameter*****************")
DataHolder[MessageID.ID_SET_ROBOT_PARAMETER].param = params.pibotParam
p = mboard.request(MessageID.ID_SET_ROBOT_PARAMETER)
if p:
log.info('set parameter success')
else:
log.error('set parameter err')
quit(1)
# get robot parameter
robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER]
p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER)
if p:
log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \
%(robotParam.param.model_type, \
robotParam.param.wheel_diameter, \
robotParam.param.wheel_track, \
robotParam.param.encoder_resolution
))
log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \
%(robotParam.param.do_pid_interval, \
robotParam.param.kp, \
robotParam.param.ki, \
robotParam.param.kd, \
robotParam.param.ko))
log.info("cmd_last_time:%d imu_type:%d" \
%(robotParam.param.cmd_last_time,\
robotParam.param.imu_type
))
log.info("max_v:%d %d %d\r\n" \
%(robotParam.param.max_v_liner_x,\
robotParam.param.max_v_liner_y, \
robotParam.param.max_v_angular_z
))
log.info("motor flag:%d encoder flag: %d\r\n" \
%(robotParam.param.motor_nonexchange_flag,\
robotParam.param.encoder_nonexchange_flag
))
else:
log.error('get param err\r\n')
quit(1)

View File

@ -1,122 +1,122 @@
import platform
import sys
sys.path.append("..")
import pypibot
from pypibot import log
from transport import Transport
from dataholder import MessageID
import params
import signal
#for linux
port="/dev/pibot"
#for windows
#port="com3"
pypibot.assistant.enableGlobalExcept()
#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log")
log.setLevel("i")
run_flag = True
def exit(signum, frame):
global run_flag
run_flag = False
if __name__ == '__main__':
signal.signal(signal.SIGINT, exit)
mboard = Transport(port, params.pibotBaud)
if not mboard.start():
log.error("can not open %s"%port)
sys.exit()
pwm=[0]*4
for i in range(len(sys.argv)-1):
pwm[i] = int(sys.argv[i+1])
DataHolder = mboard.getDataHolder()
for num in range(0,3):
log.info("****************get robot version*****************")
boardVersion = DataHolder[MessageID.ID_GET_VERSION]
p = mboard.request(MessageID.ID_GET_VERSION)
if p:
log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode()))
break
else:
log.error('read firmware version err\r\n')
import time
time.sleep(1)
if num == 2:
log.error('please check connection or baudrate\r\n')
sys.exit()
# get robot parameter
robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER]
p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER)
if p:
log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \
%(robotParam.param.model_type, \
robotParam.param.wheel_diameter, \
robotParam.param.wheel_track, \
robotParam.param.encoder_resolution
))
log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \
%(robotParam.param.do_pid_interval, \
robotParam.param.kp, \
robotParam.param.ki, \
robotParam.param.kd, \
robotParam.param.ko))
log.info("cmd_last_time:%d imu_type:%d" \
%(robotParam.param.cmd_last_time,\
robotParam.param.imu_type
))
log.info("max_v:%d %d %d\r\n" \
%(robotParam.param.max_v_liner_x,\
robotParam.param.max_v_liner_y, \
robotParam.param.max_v_angular_z
))
log.info("motor flag:%d encoder flag: %d\r\n" \
%(robotParam.param.motor_nonexchange_flag,\
robotParam.param.encoder_nonexchange_flag
))
else:
log.error('get params err\r\n')
quit(1)
DataHolder[MessageID.ID_SET_MOTOR_PWM].pwm = pwm
p = mboard.request(MessageID.ID_SET_MOTOR_PWM)
if p:
log.info('set pwm success')
else:
log.error('set pwm err')
quit(1)
log.info("****************get encoder count*****************")
while run_flag:
robotEncoder = DataHolder[MessageID.ID_GET_ENCODER_COUNT].encoder
p = mboard.request(MessageID.ID_GET_ENCODER_COUNT)
if p:
log.info('encoder count: %s'%(('\t\t').join([str(x) for x in robotEncoder])))
else:
log.error('get encoder count err')
quit(1)
import time
time.sleep(0.5)
DataHolder[MessageID.ID_SET_MOTOR_PWM].pwm = [0]*4
p = mboard.request(MessageID.ID_SET_MOTOR_PWM)
if p:
log.info('set pwm success')
else:
log.error('set pwm err')
import platform
import sys
sys.path.append("..")
import pypibot
from pypibot import log
from transport import Transport
from dataholder import MessageID
import params
import signal
#for linux
port="/dev/pibot"
#for windows
#port="com3"
pypibot.assistant.enableGlobalExcept()
#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log")
log.setLevel("i")
run_flag = True
def exit(signum, frame):
global run_flag
run_flag = False
if __name__ == '__main__':
signal.signal(signal.SIGINT, exit)
mboard = Transport(port, params.pibotBaud)
if not mboard.start():
log.error("can not open %s"%port)
sys.exit()
pwm=[0]*4
for i in range(len(sys.argv)-1):
pwm[i] = int(sys.argv[i+1])
DataHolder = mboard.getDataHolder()
for num in range(0,3):
log.info("****************get robot version*****************")
boardVersion = DataHolder[MessageID.ID_GET_VERSION]
p = mboard.request(MessageID.ID_GET_VERSION)
if p:
log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode()))
break
else:
log.error('read firmware version err\r\n')
import time
time.sleep(1)
if num == 2:
log.error('please check connection or baudrate\r\n')
sys.exit()
# get robot parameter
robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER]
p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER)
if p:
log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \
%(robotParam.param.model_type, \
robotParam.param.wheel_diameter, \
robotParam.param.wheel_track, \
robotParam.param.encoder_resolution
))
log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \
%(robotParam.param.do_pid_interval, \
robotParam.param.kp, \
robotParam.param.ki, \
robotParam.param.kd, \
robotParam.param.ko))
log.info("cmd_last_time:%d imu_type:%d" \
%(robotParam.param.cmd_last_time,\
robotParam.param.imu_type
))
log.info("max_v:%d %d %d\r\n" \
%(robotParam.param.max_v_liner_x,\
robotParam.param.max_v_liner_y, \
robotParam.param.max_v_angular_z
))
log.info("motor flag:%d encoder flag: %d\r\n" \
%(robotParam.param.motor_nonexchange_flag,\
robotParam.param.encoder_nonexchange_flag
))
else:
log.error('get params err\r\n')
quit(1)
DataHolder[MessageID.ID_SET_MOTOR_PWM].pwm = pwm
p = mboard.request(MessageID.ID_SET_MOTOR_PWM)
if p:
log.info('set pwm success')
else:
log.error('set pwm err')
quit(1)
log.info("****************get encoder count*****************")
while run_flag:
robotEncoder = DataHolder[MessageID.ID_GET_ENCODER_COUNT].encoder
p = mboard.request(MessageID.ID_GET_ENCODER_COUNT)
if p:
log.info('encoder count: %s'%(('\t\t').join([str(x) for x in robotEncoder])))
else:
log.error('get encoder count err')
quit(1)
import time
time.sleep(0.5)
DataHolder[MessageID.ID_SET_MOTOR_PWM].pwm = [0]*4
p = mboard.request(MessageID.ID_SET_MOTOR_PWM)
if p:
log.info('set pwm success')
else:
log.error('set pwm err')
quit(1)

394
Code/MowingRobot/pibot_ros/pypibot/transport/transport.py Executable file → Normal file
View File

@ -1,197 +1,197 @@
import sys
sys.path.append("..")
import pypibot
from pypibot import log
from pypibot import assistant
import serial
import threading
import struct
import time
from dataholder import MessageID, BoardDataDict
FIX_HEAD = 0x5a
class Recstate():
WAITING_HD = 0
WAITING_MSG_ID = 1
RECEIVE_LEN = 2
RECEIVE_PACKAGE = 3
RECEIVE_CHECK = 4
def checksum(d):
sum = 0
if assistant.is_python3():
for i in d:
sum += i
sum = sum&0xff
else:
for i in d:
sum += ord(i)
sum = sum&0xff
return sum
class Transport:
def __init__(self, port, baudrate=921600):
self._Port = port
self._Baudrate = baudrate
self._KeepRunning = False
self.receive_state = Recstate.WAITING_HD
self.rev_msg = []
self.rev_data = []
self.wait_event = threading.Event()
def getDataHolder(self):
return BoardDataDict
def start(self):
try:
self._Serial = serial.Serial(port=self._Port, baudrate=self._Baudrate, timeout=0.2)
self._KeepRunning = True
self._ReceiverThread = threading.Thread(target=self._Listen)
self._ReceiverThread.setDaemon(True)
self._ReceiverThread.start()
return True
except:
return False
def Stop(self):
self._KeepRunning = False
time.sleep(0.1)
self._Serial.close()
def _Listen(self):
while self._KeepRunning:
if self.receiveFiniteStates(self._Serial.read()):
self.packageAnalysis()
def receiveFiniteStates(self, s):
if len(s) == 0:
return False
val = s[0]
val_int = val
if not assistant.is_python3():
val_int = ord(val)
if self.receive_state == Recstate.WAITING_HD:
if val_int == FIX_HEAD:
log.trace('got head')
self.rev_msg = []
self.rev_data =[]
self.rev_msg.append(val)
self.receive_state = Recstate.WAITING_MSG_ID
elif self.receive_state == Recstate.WAITING_MSG_ID:
log.trace('got msg id')
self.rev_msg.append(val)
self.receive_state = Recstate.RECEIVE_LEN
elif self.receive_state == Recstate.RECEIVE_LEN:
log.trace('got len:%d', val_int)
self.rev_msg.append(val)
if val_int == 0:
self.receive_state = Recstate.RECEIVE_CHECK
else:
self.receive_state = Recstate.RECEIVE_PACKAGE
elif self.receive_state == Recstate.RECEIVE_PACKAGE:
# if assistant.is_python3():
# self.rev_data.append((chr(val)).encode('latin1'))
# else:
self.rev_data.append(val)
r = False
if assistant.is_python3():
r = len(self.rev_data) == int(self.rev_msg[-1])
else:
r = len(self.rev_data) == ord(self.rev_msg[-1])
if r:
self.rev_msg.extend(self.rev_data)
self.receive_state = Recstate.RECEIVE_CHECK
elif self.receive_state == Recstate.RECEIVE_CHECK:
log.trace('got check')
self.receive_state = Recstate.WAITING_HD
if val_int == checksum(self.rev_msg):
log.trace('got a complete message')
return True
else:
self.receive_state = Recstate.WAITING_HD
# continue receiving
return False
def packageAnalysis(self):
if assistant.is_python3():
in_msg_id = int(self.rev_msg[1])
else:
in_msg_id = ord(self.rev_msg[1])
if assistant.is_python3():
log.debug("recv body:" + " ".join("{:02x}".format(c) for c in self.rev_data))
r = BoardDataDict[in_msg_id].unpack(bytes(self.rev_data))
else:
log.debug("recv body:" + " ".join("{:02x}".format(ord(c)) for c in self.rev_data))
r = BoardDataDict[in_msg_id].unpack(''.join(self.rev_data))
if r:
self.res_id = in_msg_id
if in_msg_id<100:
self.set_response()
else:#notify
log.debug('msg %d'%self.rev_msg[4],'data incoming')
pass
else:
log.debug ('error unpacking pkg')
def request(self, id, timeout=0.5):
if not self.write(id):
log.debug ('Serial send error!')
return False
if self.wait_for_response(timeout):
if id == self.res_id:
log.trace ('OK')
else:
log.error ('Got unmatched response!')
else:
log.error ('Request got no response!')
return False
# clear response
self.res_id = None
return True
def write(self, id):
cmd = self.make_command(id)
if assistant.is_python3():
log.d("write:" + " ".join("{:02x}".format(c) for c in cmd))
else:
log.d("write:" + " ".join("{:02x}".format(ord(c)) for c in cmd))
self._Serial.write(cmd)
return True
def wait_for_response(self, timeout):
self.wait_event.clear()
return self.wait_event.wait(timeout)
def set_response(self):
self.wait_event.set()
def make_command(self, id):
#print(DataDict[id])
data = BoardDataDict[id].pack()
l = [FIX_HEAD, id, len(data)]
head = struct.pack("3B", *l)
body = head + data
if assistant.is_python3():
return body + chr(checksum(body)).encode('latin1')
else:
return body + chr(checksum(body))
if __name__ == '__main__':
mboard = Transport('com10')
if not mboard.start():
import sys
sys.exit()
p = mboard.request(MessageID.ID_GET_VERSION)
log.i("result=%s"%p)
print('Version =[',mboard.getDataHolder()[MessageID.ID_GET_VERSION].version.decode(), mboard.getDataHolder()[MessageID.ID_GET_VERSION].build_time.decode(),"]\r\n")
import sys
sys.path.append("..")
import pypibot
from pypibot import log
from pypibot import assistant
import serial
import threading
import struct
import time
from dataholder import MessageID, BoardDataDict
FIX_HEAD = 0x5a
class Recstate():
WAITING_HD = 0
WAITING_MSG_ID = 1
RECEIVE_LEN = 2
RECEIVE_PACKAGE = 3
RECEIVE_CHECK = 4
def checksum(d):
sum = 0
if assistant.is_python3():
for i in d:
sum += i
sum = sum&0xff
else:
for i in d:
sum += ord(i)
sum = sum&0xff
return sum
class Transport:
def __init__(self, port, baudrate=921600):
self._Port = port
self._Baudrate = baudrate
self._KeepRunning = False
self.receive_state = Recstate.WAITING_HD
self.rev_msg = []
self.rev_data = []
self.wait_event = threading.Event()
def getDataHolder(self):
return BoardDataDict
def start(self):
try:
self._Serial = serial.Serial(port=self._Port, baudrate=self._Baudrate, timeout=0.2)
self._KeepRunning = True
self._ReceiverThread = threading.Thread(target=self._Listen)
self._ReceiverThread.setDaemon(True)
self._ReceiverThread.start()
return True
except:
return False
def Stop(self):
self._KeepRunning = False
time.sleep(0.1)
self._Serial.close()
def _Listen(self):
while self._KeepRunning:
if self.receiveFiniteStates(self._Serial.read()):
self.packageAnalysis()
def receiveFiniteStates(self, s):
if len(s) == 0:
return False
val = s[0]
val_int = val
if not assistant.is_python3():
val_int = ord(val)
if self.receive_state == Recstate.WAITING_HD:
if val_int == FIX_HEAD:
log.trace('got head')
self.rev_msg = []
self.rev_data =[]
self.rev_msg.append(val)
self.receive_state = Recstate.WAITING_MSG_ID
elif self.receive_state == Recstate.WAITING_MSG_ID:
log.trace('got msg id')
self.rev_msg.append(val)
self.receive_state = Recstate.RECEIVE_LEN
elif self.receive_state == Recstate.RECEIVE_LEN:
log.trace('got len:%d', val_int)
self.rev_msg.append(val)
if val_int == 0:
self.receive_state = Recstate.RECEIVE_CHECK
else:
self.receive_state = Recstate.RECEIVE_PACKAGE
elif self.receive_state == Recstate.RECEIVE_PACKAGE:
# if assistant.is_python3():
# self.rev_data.append((chr(val)).encode('latin1'))
# else:
self.rev_data.append(val)
r = False
if assistant.is_python3():
r = len(self.rev_data) == int(self.rev_msg[-1])
else:
r = len(self.rev_data) == ord(self.rev_msg[-1])
if r:
self.rev_msg.extend(self.rev_data)
self.receive_state = Recstate.RECEIVE_CHECK
elif self.receive_state == Recstate.RECEIVE_CHECK:
log.trace('got check')
self.receive_state = Recstate.WAITING_HD
if val_int == checksum(self.rev_msg):
log.trace('got a complete message')
return True
else:
self.receive_state = Recstate.WAITING_HD
# continue receiving
return False
def packageAnalysis(self):
if assistant.is_python3():
in_msg_id = int(self.rev_msg[1])
else:
in_msg_id = ord(self.rev_msg[1])
if assistant.is_python3():
log.debug("recv body:" + " ".join("{:02x}".format(c) for c in self.rev_data))
r = BoardDataDict[in_msg_id].unpack(bytes(self.rev_data))
else:
log.debug("recv body:" + " ".join("{:02x}".format(ord(c)) for c in self.rev_data))
r = BoardDataDict[in_msg_id].unpack(''.join(self.rev_data))
if r:
self.res_id = in_msg_id
if in_msg_id<100:
self.set_response()
else:#notify
log.debug('msg %d'%self.rev_msg[4],'data incoming')
pass
else:
log.debug ('error unpacking pkg')
def request(self, id, timeout=0.5):
if not self.write(id):
log.debug ('Serial send error!')
return False
if self.wait_for_response(timeout):
if id == self.res_id:
log.trace ('OK')
else:
log.error ('Got unmatched response!')
else:
log.error ('Request got no response!')
return False
# clear response
self.res_id = None
return True
def write(self, id):
cmd = self.make_command(id)
if assistant.is_python3():
log.d("write:" + " ".join("{:02x}".format(c) for c in cmd))
else:
log.d("write:" + " ".join("{:02x}".format(ord(c)) for c in cmd))
self._Serial.write(cmd)
return True
def wait_for_response(self, timeout):
self.wait_event.clear()
return self.wait_event.wait(timeout)
def set_response(self):
self.wait_event.set()
def make_command(self, id):
#print(DataDict[id])
data = BoardDataDict[id].pack()
l = [FIX_HEAD, id, len(data)]
head = struct.pack("3B", *l)
body = head + data
if assistant.is_python3():
return body + chr(checksum(body)).encode('latin1')
else:
return body + chr(checksum(body))
if __name__ == '__main__':
mboard = Transport('com10')
if not mboard.start():
import sys
sys.exit()
p = mboard.request(MessageID.ID_GET_VERSION)
log.i("result=%s"%p)
print('Version =[',mboard.getDataHolder()[MessageID.ID_GET_VERSION].version.decode(), mboard.getDataHolder()[MessageID.ID_GET_VERSION].build_time.decode(),"]\r\n")

View File

@ -1,49 +0,0 @@
#!/usr/bin/env python
import sys
from pynput.keyboard import Key, Listener
import subprocess
running_process = None
def execute_launch(key):
global running_process
launch_files = {
'a': ('/home/firefly/pibot_ros/ros_ws/src/upbot_vision/launch/upbot_vision.launch', []), # stereo
'b': ('/home/firefly/pibot_ros/ros_ws/src/pibot_navigation/launch/nav.launch', ['map_name:=10_10m']), # nav
'c': ('/home/firefly/pibot_ros/ros_ws/src/ipa_coverage_planning/ipa_room_exploration/ros/test/room_exploration_client.launch', ['robot_env:=10_10m']), # client
'd': ('/home/firefly/pibot_ros/ros_ws/src/ipa_coverage_planning/ipa_room_exploration/ros/launch/room_exploration_action_server.launch', []), # server
}
# 检查按键是否对应一个.launch文件
if key in launch_files:
# 获取对应的.launch文件和参数
launch_file, launch_args = launch_files[key]
# 构造启动命令
launch_command = ["roslaunch", launch_file] + launch_args
# 执行对应的.launch文件
running_process = subprocess.Popen(launch_command)
# 监听按键事件
def on_press(key):
global running_process
if key.char == 'q':
print("stop1")
if running_process:
running_process.terminate()
running_process = None # 清除已结束的进程
print("stop2")
return False # 停止监听器
try:
if key.char == 's':
print("按下 's' 键,程序停止")
return False # 停止监听器
execute_launch(key.char)
except AttributeError:
# 按下的不是字符键,忽略
pass
with Listener(on_press=on_press) as listener:
listener.join()

View File

@ -1,32 +0,0 @@
#!/usr/bin/env python
import subprocess
import keyboard
def execute_launch(launch_file, launch_args=[]):
# 构造启动命令
launch_command = ["roslaunch", launch_file] + launch_args
# 启动一个新的终端并执行对应的.launch文件
subprocess.Popen(['gnome-terminal', '--', 'bash',' '.join(launch_command)])
# 监听按键事件
def on_press(event):
key = event.name
# 检查按键是否对应一个.launch文件
launch_files = {
'a': ('/home/firefly/pibot_ros/ros_ws/src/upbot_vision/launch/upbot_vision.launch', []), # stereo
'b': ('/home/firefly/pibot_ros/ros_ws/src/pibot_navigation/launch/nav.launch', ['map_name:=10_10m']), # nav
'c': ('/home/firefly/pibot_ros/ros_ws/src/ipa_coverage_planning/ipa_room_exploration/ros/test/room_exploration_client.launch', ['robot_env:=10_10m']), # client
'd': ('/home/firefly/pibot_ros/ros_ws/src/ipa_coverage_planning/ipa_room_exploration/ros/launch/room_exploration_action_server.launch', []), # server
}
if key in launch_files:
# 获取对应的.launch文件和参数
launch_file, launch_args = launch_files[key]
# 执行对应的.launch文件
execute_launch(launch_file, launch_args)
keyboard.on_press(on_press)
# 运行程序
keyboard.wait('q') # 等待按下 'q' 键

View File

@ -1,68 +0,0 @@
import socket
import threading
import subprocess
import netifaces
def create_server_socket(host, port):
socket_server = socket.socket()
socket_server.bind((host, port))
socket_server.listen(5)
print(f"服务端已启动,地址{host},端口{port}")
print(f"正在等待客户端连接...")
# 开启多线程,收发来自多个客户端的数据
num = 0 # 标记客户端的编号
while True:
num += 1
conn, address = socket_server.accept()
print(f"服务端已接受到客户端 {num}号 的连接请求,客户端信息:{address}")
client_handler = threading.Thread(target=handle_client, args=(conn, address, num))
client_handler.start()
# 处理收发数据
def handle_client(conn, address, num):
while True:
# 接收客户端发来的数据
data_from_client: str = conn.recv(1024).decode("UTF-8")
print(f"客户端 {num}号:{address}发来的消息是:{data_from_client}")
# 发送消息到客户端
msg = input(f"请输入你要回复客户端 {num}号:{address}的消息:")
if msg == 'exit':
break
conn.send(msg.encode("UTF-8")) # encode将字符串编码为字节数组对象
conn.close()
# def handle_client(conn, address, client_num):
# try:
# while True:
# data_from_client = conn.recv(1024).decode("UTF-8")
# if not data_from_client:
# break
# print(f"客户端 {client_num} 号({address}) 发来的消息是:{data_from_client}")
# if data_from_client.strip() == '1':
# print("执行 roscore 命令...")
# subprocess.run(['roscore'])
# else:
# msg = input(f"请输入你要回复客户端 {client_num} 号({address}) 的消息:")
# if msg.lower() == 'exit':
# break
# conn.send(msg.encode("UTF-8"))
# except Exception as e:
# print(f"客户端 {client_num} 号({address}) 处理时发生错误:{e}")
# finally:
# conn.close()
# print(f"客户端 {client_num} 号({address}) 已断开连接。")
if __name__ == '__main__':
# 获取本机(计算机)名
hostname = socket.gethostname()
# 获取本机计算机ip
ip = socket.gethostbyname(hostname)
print(hostname, ip)
server_host = ip
server_port = int(input("请输入服务端port:"))
create_server_socket(server_host, server_port)

View File

@ -1,110 +0,0 @@
import socket
import threading
import subprocess
import netifaces
# LAUNCH_FILES = {
# '0x00': ['roslaunch', 'pibot_navigation', 'nav.launch'],
# '0x01': ['roslaunch', 'upbot_location', 'upbot_location.launch'],
# 'launch_file_1': ['roslaunch', 'package_name', 'launch_file_1.launch'],
# 'launch_file_2': ['roslaunch', 'package_name', 'launch_file_2.launch']
# }
client_processes = {}
process_id_counter = 0
def get_local_ip():
interfaces = netifaces.interfaces()
for interface in interfaces:
addresses = netifaces.ifaddresses(interface)
if netifaces.AF_INET in addresses:
for address_info in addresses[netifaces.AF_INET]:
ip_address = address_info['addr']
if ip_address.startswith('192.168.') or ip_address.startswith('10.'):
return ip_address
def create_server_socket(host, port):
try:
socket_server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
socket_server.bind((host, port))
socket_server.listen(5)
print(f"服务端已启动,地址{host},端口{port}")
print("正在等待客户端连接...")
client_num = 0
while True:
client_num += 1
conn, address = socket_server.accept()
print(f"服务端已接受到客户端 {client_num} 号的连接请求,客户端信息:{address}")
client_handler = threading.Thread(target=handle_client, args=(conn, address, client_num))
client_handler.start()
except Exception as e:
print(f"错误:{e}")
finally:
socket_server.close()
def handle_client(conn, address, client_num):
global process_id_counter
try:
while True:
data_from_client = conn.recv(1024).decode("UTF-8")
if not data_from_client:
break
print(f"客户端 {client_num} 号({address}) 发来的消息是:{data_from_client}")
data = data_from_client.strip()
if data == '1':
process_id_counter += 1
process_id = process_id_counter
process = subprocess.Popen(['roslaunch', 'pibot_navigation', 'nav.launch'])
client_processes.setdefault(client_num, []).append((process_id, process))
conn.send(f"定位导航已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == '2':
process_id_counter += 1
process_id = process_id_counter
process = subprocess.Popen(['roslaunch', 'upbot_mapping', 'upbot_mapping.launch'])
client_processes.setdefault(client_num, []).append((process_id, process))
conn.send(f"手持标签划定范围已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == '3':
process_id_counter += 1
process_id = process_id_counter
process = subprocess.Popen(['roslaunch', 'ipa_room_exploration', 'room_exploration_action_server.launch'])
client_processes.setdefault(client_num, []).append((process_id, process))
conn.send(f"全覆盖服务端已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == '4':
process_id_counter += 1
process_id = process_id_counter
process = subprocess.Popen(['roslaunch', 'ipa_room_exploration', 'room_exploration_client.launch', 'robot_env:=4_'])
client_processes.setdefault(client_num, []).append((process_id, process))
conn.send(f"全覆盖客户端已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data.startswith('stop'):
stop_data = data.split()
if len(stop_data) == 2:
process_id_to_stop = int(stop_data[1])
if client_num in client_processes:
for process_tuple in client_processes[client_num]:
if process_tuple[0] == process_id_to_stop:
process_tuple[1].terminate()
client_processes[client_num].remove(process_tuple)
conn.send(f"已停止客户端 {client_num} 号的进程 {process_id_to_stop}".encode("UTF-8"))
break
else:
conn.send(f"客户端 {client_num} 号没有标识符为 {process_id_to_stop} 的进程".encode("UTF-8"))
else:
conn.send("没有启动的进程需要停止".encode("UTF-8"))
else:
conn.send("无效的停止命令格式".encode("UTF-8"))
else:
response = f"已收到消息: {data}"
conn.send(response.encode("UTF-8"))
except Exception as e:
print(f"客户端 {client_num} 号({address}) 处理时发生错误:{e}")
finally:
conn.close()
print(f"客户端 {client_num} 号({address}) 已断开连接。")
if __name__ == '__main__':
local_ip = get_local_ip()
print("本机在局域网内的IP地址:", local_ip)
server_port = int(input("请输入服务端端口号: "))
create_server_socket(local_ip, server_port)

View File

@ -1,102 +0,0 @@
import socket
import threading
import time
import subprocess
import netifaces
# 初始化全局变量
client_processes = {}
process_id_counter = 0
lock = threading.Lock()
def get_local_ip():
interfaces = netifaces.interfaces()
for interface in interfaces:
addresses = netifaces.ifaddresses(interface)
if netifaces.AF_INET in addresses:
for address_info in addresses[netifaces.AF_INET]:
ip_address = address_info['addr']
if ip_address.startswith('192.168.') or ip_address.startswith('10.'):
return ip_address
def create_server_socket(host, port):
socket_server = socket.socket() # 创建socket对象
socket_server.bind((host, port)) # 绑定主机和端口
socket_server.listen(5) # 监听传入的连接
print(f"服务端已启动,地址{host},端口{port}")
print(f"正在等待客户端连接...")
num = 0
try:
while True:
num += 1
conn, address = socket_server.accept() # 接受连接
print(f"服务端已接受到客户端 {num}号 的连接请求,客户端信息:{address}")
client_handler = threading.Thread(target=handle_client, args=(conn, address, num))
client_handler.start()
except KeyboardInterrupt:
print("服务器正在关闭...")
socket_server.close()
for thread in threading.enumerate():
if thread != threading.current_thread():
thread.join()
except Exception as e:
print(f"服务器发生错误:{e}")
socket_server.close()
def handle_client(conn, address, num):
global process_id_counter
with conn:
while True:
time.sleep(0.01)
try:
data_from_client_bytes = conn.recv(1024)
if len(data_from_client_bytes) == 0:
print(f"客户端 {num}号 已断开连接")
break
data_from_client_hex = ' '.join([hex(x) for x in data_from_client_bytes])
print(f"客户端 {num}号:{address} 发来的消息是:{data_from_client_hex}")
if len(data_from_client_bytes) > 4:
data = data_from_client_bytes[4]
with lock:
process_id_counter += 1
process_id = process_id_counter
log_file = open(f"process_{process_id}.log", "w")
if data == 0x0:
process = subprocess.Popen(['roslaunch', 'upbot_vision', 'upbot_vision.launch'], stdout=log_file, stderr=log_file)
# process = subprocess.Popen(['roslaunch', 'pibot_navigation', 'nav.launch'],stdout=log_file, stderr=log_file)
print("启动定位导航")
conn.send(f"定位导航已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == 0x5:
process = subprocess.Popen(['roslaunch', 'upbot_mapping', 'upbot_mapping.launch'], stdout=log_file, stderr=log_file)
conn.send(f"手持标签划定范围已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == 0x2:
process = subprocess.Popen(['roslaunch', 'ipa_room_exploration', 'room_exploration_action_server.launch'], stdout=log_file, stderr=log_file)
conn.send(f"全覆盖服务端已启动,进程标识符为 {process_id}".encode("UTF-8"))
process = subprocess.Popen(['roslaunch', 'ipa_room_exploration', 'room_exploration_client.launch', 'robot_env:=4_'], stdout=log_file, stderr=log_file)
conn.send(f"全覆盖客户端已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == 0x7:
conn.send(f"返回充电已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == 0x10:
conn.send(f"基站初始化已启动,进程标识符为 {process_id}".encode("UTF-8"))
client_processes.setdefault(num, []).append((process_id, process))
except ConnectionResetError:
print(f"客户端 {num}号:{address} 连接重置")
break
except Exception as e:
print(f"客户端 {num}号:{address} 发生异常:{e}")
break
if __name__ == '__main__':
local_ip = get_local_ip()
print("本机在局域网内的IP地址:", local_ip)
server_host = local_ip
server_port = 19890
create_server_socket(server_host, server_port)

View File

@ -1,100 +0,0 @@
import socket
import threading
import time
import subprocess
import netifaces
# 初始化全局变量
client_processes = {}
process_id_counter = 0
lock = threading.Lock()
def get_local_ip():
interfaces = netifaces.interfaces()
for interface in interfaces:
addresses = netifaces.ifaddresses(interface)
if netifaces.AF_INET in addresses:
for address_info in addresses[netifaces.AF_INET]:
ip_address = address_info['addr']
if ip_address.startswith('192.168.') or ip_address.startswith('10.'):
return ip_address
def create_server_socket(host, port):
socket_server = socket.socket() # 创建socket对象
socket_server.bind((host, port)) # 绑定主机和端口
socket_server.listen(5) # 监听传入的连接
print(f"服务端已启动,地址{host},端口{port}")
print(f"正在等待客户端连接...")
num = 0
try:
while True:
num += 1
conn, address = socket_server.accept() # 接受连接
print(f"服务端已接受到客户端 {num}号 的连接请求,客户端信息:{address}")
client_handler = threading.Thread(target=handle_client, args=(conn, address, num))
client_handler.start()
except KeyboardInterrupt:
print("服务器正在关闭...")
socket_server.close()
for thread in threading.enumerate():
if thread != threading.current_thread():
thread.join()
except Exception as e:
print(f"服务器发生错误:{e}")
socket_server.close()
def handle_client(conn, address, num):
global process_id_counter
with conn:
while True:
time.sleep(0.01)
try:
data_from_client_bytes = conn.recv(1024)
if len(data_from_client_bytes) == 0:
print(f"客户端 {num}号 已断开连接")
break
data_from_client_hex = ' '.join([hex(x) for x in data_from_client_bytes])
print(f"客户端 {num}号:{address} 发来的消息是:{data_from_client_hex}")
if len(data_from_client_bytes) > 4:
data = data_from_client_bytes[4]
with lock:
process_id_counter += 1
process_id = process_id_counter
if data == 0x0:
# process = subprocess.Popen(['roslaunch', 'pibot_navigation', 'nav.launch'])
process = subprocess.Popen(['roslaunch', 'upbot_vision', 'upbot_vision.launch'])
print("启动定位导航")
conn.send(f"定位导航已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == 0x5:
process = subprocess.Popen(['roslaunch', 'upbot_mapping', 'upbot_mapping.launch'])
conn.send(f"手持标签划定范围已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == 0x2:
process = subprocess.Popen(['roslaunch', 'ipa_room_exploration', 'room_exploration_action_server.launch'])
conn.send(f"全覆盖服务端已启动,进程标识符为 {process_id}".encode("UTF-8"))
process = subprocess.Popen(['roslaunch', 'ipa_room_exploration', 'room_exploration_client.launch', 'robot_env:=4_'])
conn.send(f"全覆盖客户端已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == 0x7:
conn.send(f"返回充电已启动,进程标识符为 {process_id}".encode("UTF-8"))
elif data == 0x10:
conn.send(f"基站初始化已启动,进程标识符为 {process_id}".encode("UTF-8"))
client_processes.setdefault(num, []).append((process_id, process))
except ConnectionResetError:
print(f"客户端 {num}号:{address} 连接重置")
break
except Exception as e:
print(f"客户端 {num}号:{address} 发生异常:{e}")
break
if __name__ == '__main__':
local_ip = get_local_ip()
print("本机在局域网内的IP地址:", local_ip)
server_host = local_ip
server_port = 19890
create_server_socket(server_host, server_port)

View File

@ -1,53 +1,53 @@
cmake_minimum_required(VERSION 3.0.2)
project(upbot_following)
find_package(catkin REQUIRED COMPONENTS
roscpp
rospy
std_msgs
message_generation
geometry_msgs
pibot_msgs
)
# OpenCV
find_package(OpenCV REQUIRED)
# Boost
find_package(Boost REQUIRED)
# catkin_package(
# # INCLUDE_DIRS include
# # LIBRARIES upbot_following
# # CATKIN_DEPENDS roscpp rospy std_msgs
# # DEPENDS system_lib
# CATKIN_DEPENDS message_runtime std_msgs geometry_msgs
# )
include_directories(
# include
${OpenCV_INCLUDE_DIRS}
${catkin_INCLUDE_DIRS}
include
)
add_library(${PROJECT_NAME} SHARED
src/uwb.cpp
src/mapping.cpp
src/align.cpp
src/Mat.cpp
src/lighthouse.cpp
include/senddata.h src/senddata.cpp)
generate_messages(DEPENDENCIES std_msgs geometry_msgs)
catkin_package(CATKIN_DEPENDS message_runtime std_msgs geometry_msgs)
add_executable(${PROJECT_NAME}_node src/main.cpp)
target_link_libraries(${PROJECT_NAME}_node ${catkin_LIBRARIES} ${OpenCV_LIBS} ${Boost_LIBRARIES} pthread ${PROJECT_NAME})
cmake_minimum_required(VERSION 3.0.2)
project(FollowingCar)
find_package(catkin REQUIRED COMPONENTS
roscpp
rospy
std_msgs
message_generation
geometry_msgs
pibot_msgs
)
# OpenCV
find_package(OpenCV REQUIRED)
# Boost
find_package(Boost REQUIRED)
# catkin_package(
# # INCLUDE_DIRS include
# # LIBRARIES FollowingCar
# # CATKIN_DEPENDS roscpp rospy std_msgs
# # DEPENDS system_lib
# CATKIN_DEPENDS message_runtime std_msgs geometry_msgs
# )
include_directories(
# include
${OpenCV_INCLUDE_DIRS}
${catkin_INCLUDE_DIRS}
include
)
add_library(${PROJECT_NAME} SHARED
src/uwb.cpp
src/mapping.cpp
src/align.cpp
src/Mat.cpp
src/lighthouse.cpp
include/senddata.h src/senddata.cpp)
generate_messages(DEPENDENCIES std_msgs geometry_msgs)
catkin_package(CATKIN_DEPENDS message_runtime std_msgs geometry_msgs)
add_executable(${PROJECT_NAME}_node src/main.cpp)
target_link_libraries(${PROJECT_NAME}_node ${catkin_LIBRARIES} ${OpenCV_LIBS} ${Boost_LIBRARIES} pthread ${PROJECT_NAME})

View File

@ -1,83 +1,83 @@
/******************** (C) COPYRIGHT 2022 Geek************************************
* File Name : Mat.h
* Current Version : V1.0
* Author : logzhan
* Date of Issued : 2022.09.14
* Comments : <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
********************************************************************************/
/* Header File Including -----------------------------------------------------*/
#ifndef _H_MAT_
#define _H_MAT_
#define MAT_MAX 15 //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܴ<EFBFBD><DCB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
#include <string.h>
#define _USE_MATH_DEFINES
#include <math.h>
class Mat
{
public:
Mat();
Mat(int setm,int setn,int kind);//kind=1<><31>λ<EFBFBD><CEBB>kind=0<><30><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD>
void Init(int setm,int setn,int kind);//kind=1<><31>λ<EFBFBD><CEBB>kind=0<><30><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD>
void Zero(void);
//<2F><>Щ<EFBFBD>ؼ<EFBFBD><D8BC><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD>Ϊprivate<74>ġ<EFBFBD><C4A1><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD>˷<EFBFBD><CBB7><EFBFBD><E3A3AC>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>public
int m;//<2F><><EFBFBD><EFBFBD>
int n;//<2F><><EFBFBD><EFBFBD>
double mat[MAT_MAX][MAT_MAX];//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//<2F><><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD>
Mat SubMat(int a,int b,int lm,int ln);//<2F><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>
void FillSubMat(int a,int b,Mat s);//<2F><><EFBFBD><EFBFBD>Ӿ<EFBFBD><D3BE><EFBFBD>
//<2F><><EFBFBD><EFBFBD>ר<EFBFBD><D7A8>
double absvec();//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ij<EFBFBD><C4B3>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>Ǹ<EFBFBD><C7B8><EFBFBD>Ԫ<EFBFBD>صľ<D8B5><C4BE><EFBFBD>ֵ<EFBFBD><D6B5>
double Sqrt();//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȵ<EFBFBD>ƽ<EFBFBD><C6BD>
friend Mat operator ^(Mat a,Mat b);//<2F><><EFBFBD>
//<2F><><EFBFBD><EFBFBD>
friend Mat operator *(double k,Mat a);
friend Mat operator *(Mat a,double k);
friend Mat operator /(Mat a,double k);
friend Mat operator *(Mat a,Mat b);
friend Mat operator +(Mat a,Mat b);
friend Mat operator -(Mat a,Mat b);
friend Mat operator ~(Mat a);//ת<><D7AA>
friend Mat operator /(Mat a,Mat b);//a*inv(b)
friend Mat operator %(Mat a,Mat b);//inv(a)*b
//MAT inv();//<2F><><EFBFBD><EFBFBD><EFBFBD>
private:
// Ϊ<><CEAA><EFBFBD>ø<EFBFBD>˹<EFBFBD><CBB9>Ԫ<EFBFBD><D4AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һЩ<D2BB><D0A9><EFBFBD><EFBFBD>
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
void RowExchange(int a, int b);
// ijһ<C4B3>г<EFBFBD><D0B3><EFBFBD>ϵ<EFBFBD><CFB5>
void RowMul(int a,double k);
// <20><>ijһ<C4B3>мӼ<D0BC><D3BC><EFBFBD>һ<EFBFBD>еı<D0B5><C4B1><EFBFBD>
void RowAdd(int a,int b, double k);
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
void ColExchange(int a, int b);
// ijһ<C4B3>г<EFBFBD><D0B3><EFBFBD>ϵ<EFBFBD><CFB5>
void ColMul(int a,double k);
// <20><>ijһ<C4B3>мӼ<D0BC><D3BC><EFBFBD>һ<EFBFBD>еı<D0B5><C4B1><EFBFBD>
void ColAdd(int a,int b,double k);
};
#endif
/******************** (C) COPYRIGHT 2022 Geek************************************
* File Name : Mat.h
* Current Version : V1.0
* Author : logzhan
* Date of Issued : 2022.09.14
* Comments : <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
********************************************************************************/
/* Header File Including -----------------------------------------------------*/
#ifndef _H_MAT_
#define _H_MAT_
#define MAT_MAX 15 //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܴ<EFBFBD><DCB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
#include <string.h>
#define _USE_MATH_DEFINES
#include <math.h>
class Mat
{
public:
Mat();
Mat(int setm,int setn,int kind);//kind=1<><31>λ<EFBFBD><CEBB>kind=0<><30><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD>
void Init(int setm,int setn,int kind);//kind=1<><31>λ<EFBFBD><CEBB>kind=0<><30><EFBFBD><EFBFBD><EFBFBD>,<2C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD><EFBFBD>ݡ<EFBFBD>
void Zero(void);
//<2F><>Щ<EFBFBD>ؼ<EFBFBD><D8BC><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD><EFBFBD>Ϊprivate<74>ġ<EFBFBD><C4A1><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD>˷<EFBFBD><CBB7><EFBFBD><E3A3AC>Ҳ<EFBFBD><D2B2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>public
int m;//<2F><><EFBFBD><EFBFBD>
int n;//<2F><><EFBFBD><EFBFBD>
double mat[MAT_MAX][MAT_MAX];//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
//<2F><><EFBFBD><EFBFBD>ľ<EFBFBD><C4BE><EFBFBD>
Mat SubMat(int a,int b,int lm,int ln);//<2F><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>
void FillSubMat(int a,int b,Mat s);//<2F><><EFBFBD><EFBFBD>Ӿ<EFBFBD><D3BE><EFBFBD>
//<2F><><EFBFBD><EFBFBD>ר<EFBFBD><D7A8>
double absvec();//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ij<EFBFBD><C4B3>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>Ǹ<EFBFBD><C7B8><EFBFBD>Ԫ<EFBFBD>صľ<D8B5><C4BE><EFBFBD>ֵ<EFBFBD><D6B5>
double Sqrt();//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȵ<EFBFBD>ƽ<EFBFBD><C6BD>
friend Mat operator ^(Mat a,Mat b);//<2F><><EFBFBD>
//<2F><><EFBFBD><EFBFBD>
friend Mat operator *(double k,Mat a);
friend Mat operator *(Mat a,double k);
friend Mat operator /(Mat a,double k);
friend Mat operator *(Mat a,Mat b);
friend Mat operator +(Mat a,Mat b);
friend Mat operator -(Mat a,Mat b);
friend Mat operator ~(Mat a);//ת<><D7AA>
friend Mat operator /(Mat a,Mat b);//a*inv(b)
friend Mat operator %(Mat a,Mat b);//inv(a)*b
//MAT inv();//<2F><><EFBFBD><EFBFBD><EFBFBD>
private:
// Ϊ<><CEAA><EFBFBD>ø<EFBFBD>˹<EFBFBD><CBB9>Ԫ<EFBFBD><D4AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һЩ<D2BB><D0A9><EFBFBD><EFBFBD>
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
void RowExchange(int a, int b);
// ijһ<C4B3>г<EFBFBD><D0B3><EFBFBD>ϵ<EFBFBD><CFB5>
void RowMul(int a,double k);
// <20><>ijһ<C4B3>мӼ<D0BC><D3BC><EFBFBD>һ<EFBFBD>еı<D0B5><C4B1><EFBFBD>
void RowAdd(int a,int b, double k);
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
void ColExchange(int a, int b);
// ijһ<C4B3>г<EFBFBD><D0B3><EFBFBD>ϵ<EFBFBD><CFB5>
void ColMul(int a,double k);
// <20><>ijһ<C4B3>мӼ<D0BC><D3BC><EFBFBD>һ<EFBFBD>еı<D0B5><C4B1><EFBFBD>
void ColAdd(int a,int b,double k);
};
#endif

View File

@ -1,44 +1,44 @@
#include <cmath>
#include <ros/ros.h>
#include <opencv2/opencv.hpp>
#include <nav_msgs/Odometry.h>
#include <utility>
#include <queue>
#include <fstream>
#include "pibot_msgs/RawImu.h"
#include "type.h"
#include "uwb.h"
#include "lighthouse.h"
#include "Mat.h"
#ifndef ALIGN_H
#define AlIGN_H
namespace uwb_slam{
class Align
{
public:
Align(){
};
void Run();
void wheel_odomCB(const nav_msgs::Odometry& wheel_odom);
void imuCB(const pibot_msgs::RawImu& imu);
void odomCB(const nav_msgs::Odometry& odom);
public:
ros::NodeHandle nh_;
ros::Subscriber wheel_odom_sub_;
ros::Subscriber imu_sub_;
ros::Subscriber odom_sub_;
Imu_odom_pose_data imu_odom_;
Uwb_data uwb_data_;
ros::Time imuDataRxTime, uwbDataRxTime, odomDataRxTime;
ros::Time odom_tmp_ ;
bool write_data_ = false;
cv::Mat img1;
std::queue<std::pair<Imu_odom_pose_data,Uwb_data>> data_queue;
std::shared_ptr<uwb_slam::Uwb> uwb_;
std::shared_ptr<uwb_slam::Lighthouse> lighthouse_;
};
};
#endif
#include <cmath>
#include <ros/ros.h>
#include <opencv2/opencv.hpp>
#include <nav_msgs/Odometry.h>
#include <utility>
#include <queue>
#include <fstream>
#include "pibot_msgs/RawImu.h"
#include "type.h"
#include "uwb.h"
#include "lighthouse.h"
#include "Mat.h"
#ifndef ALIGN_H
#define AlIGN_H
namespace uwb_slam{
class Align
{
public:
Align(){
};
void Run();
void wheel_odomCB(const nav_msgs::Odometry& wheel_odom);
void imuCB(const pibot_msgs::RawImu& imu);
void odomCB(const nav_msgs::Odometry& odom);
public:
ros::NodeHandle nh_;
ros::Subscriber wheel_odom_sub_;
ros::Subscriber imu_sub_;
ros::Subscriber odom_sub_;
Imu_odom_pose_data imu_odom_;
Uwb_data uwb_data_;
ros::Time imuDataRxTime, uwbDataRxTime, odomDataRxTime;
ros::Time odom_tmp_ ;
bool write_data_ = false;
cv::Mat img1;
std::queue<std::pair<Imu_odom_pose_data,Uwb_data>> data_queue;
std::shared_ptr<uwb_slam::Uwb> uwb_;
std::shared_ptr<uwb_slam::Lighthouse> lighthouse_;
};
};
#endif

View File

@ -1,29 +1,29 @@
#include <ros/ros.h>
#include <mutex>
#include <boost/asio.hpp>
#include <iostream>
#include <string>
#include <cstdint>
#include "type.h"
#include <queue>
#include <chrono>
#ifndef __LIGHTHOUSE_H__
#define __LIGHTHOUSE_H__
namespace uwb_slam{
class Lighthouse{
public:
Lighthouse();
~Lighthouse();
void Run();
void UDPRead();
// Listen PORT
int PORT = 12345;
int UdpSocket = -1;
LightHouseData data;
std::mutex mMutexLighthouse;
};
};
#endif
#include <ros/ros.h>
#include <mutex>
#include <boost/asio.hpp>
#include <iostream>
#include <string>
#include <cstdint>
#include "type.h"
#include <queue>
#include <chrono>
#ifndef __LIGHTHOUSE_H__
#define __LIGHTHOUSE_H__
namespace uwb_slam{
class Lighthouse{
public:
Lighthouse();
~Lighthouse();
void Run();
void UDPRead();
// Listen PORT
int PORT = 12345;
int UdpSocket = -1;
LightHouseData data;
std::mutex mMutexLighthouse;
};
};
#endif

View File

@ -1,40 +1,40 @@
#include <queue>
#include <opencv2/opencv.hpp>
#include <mutex>
#include "uwb.h"
#include "align.h"
#ifndef MAPPING_H
#define MAPPING_H
namespace uwb_slam{
class Mapping
{
public:
const double PIXEL_SCALE = 1.0; //xiangsudian cm
const int AREA_SIZE = 1000; //map size cm
Mapping() {};
void Run();
bool checkQueue();
void feedPos(const cv::Point2d & imuPosData, const cv::Point2d & uwbPosData, const cv::Point2d & syncPosData);
void process();
std::mutex mMutexMap;
std::shared_ptr<uwb_slam::Uwb> uwb_;
std::shared_ptr<uwb_slam::Align> align_;
private:
int realWidth, realHeight;
std::queue<std::vector<cv::Point2d>> posDataQueue;
std::vector<cv::Point2d> posData = std::vector<cv::Point2d>(3, {-1, -1});
//cv::Point2d imuPoint = {-1,-1};
// std::queue<cv::Point2d> posDataQueue;
bool readPos = false;
cv::Mat img;
};
}
#endif
#include <queue>
#include <opencv2/opencv.hpp>
#include <mutex>
#include "uwb.h"
#include "align.h"
#ifndef MAPPING_H
#define MAPPING_H
namespace uwb_slam{
class Mapping
{
public:
const double PIXEL_SCALE = 1.0; //xiangsudian cm
const int AREA_SIZE = 1000; //map size cm
Mapping() {};
void Run();
bool checkQueue();
void feedPos(const cv::Point2d & imuPosData, const cv::Point2d & uwbPosData, const cv::Point2d & syncPosData);
void process();
std::mutex mMutexMap;
std::shared_ptr<uwb_slam::Uwb> uwb_;
std::shared_ptr<uwb_slam::Align> align_;
private:
int realWidth, realHeight;
std::queue<std::vector<cv::Point2d>> posDataQueue;
std::vector<cv::Point2d> posData = std::vector<cv::Point2d>(3, {-1, -1});
//cv::Point2d imuPoint = {-1,-1};
// std::queue<cv::Point2d> posDataQueue;
bool readPos = false;
cv::Mat img;
};
}
#endif

View File

@ -1,50 +1,50 @@
#include <ros/ros.h>
#include <nav_msgs/Odometry.h>
#include <geometry_msgs/Point.h>
#include <geometry_msgs/Quaternion.h>
#include <tf2/LinearMath/Quaternion.h>
#include <mutex>
#include "uwb.h"
#include <geometry_msgs/Twist.h>
#include "pibot_msgs/dis_info.h"
#include "pibot_msgs/dis_info_array.h"
#ifndef SENDDATA_H
#define SENDDATA_H
namespace uwb_slam{
class Senddata
{
public:
Senddata(){};
void publishOdometry( std::shared_ptr<uwb_slam::Uwb>uwb);
void Run(std::shared_ptr<uwb_slam::Uwb>uwb);
void odomCB(const nav_msgs::Odometry& odom);
void stereoCB(const pibot_msgs::dis_info_array::ConstPtr& stereo);
std::shared_ptr<uwb_slam::Uwb> uwb_;
std::mutex mMutexSend;
private:
ros::Publisher position_pub_;
ros::Publisher cmd_vel_pub_;
ros::Subscriber odom_sub_;
ros::Subscriber obstacles_sub_;
ros::NodeHandle nh_;
nav_msgs::Odometry odom_;//odom的消息类型
nav_msgs::Odometry sub_odom_;//odom的消息类型
geometry_msgs::Twist cmd_vel_;
bool flag_ = 0;
};
}
#include <ros/ros.h>
#include <nav_msgs/Odometry.h>
#include <geometry_msgs/Point.h>
#include <geometry_msgs/Quaternion.h>
#include <tf2/LinearMath/Quaternion.h>
#include <mutex>
#include "uwb.h"
#include <geometry_msgs/Twist.h>
#include "pibot_msgs/dis_info.h"
#include "pibot_msgs/dis_info_array.h"
#ifndef SENDDATA_H
#define SENDDATA_H
namespace uwb_slam{
class Senddata
{
public:
Senddata(){};
void publishOdometry( std::shared_ptr<uwb_slam::Uwb>uwb);
void Run(std::shared_ptr<uwb_slam::Uwb>uwb);
void odomCB(const nav_msgs::Odometry& odom);
void stereoCB(const pibot_msgs::dis_info_array::ConstPtr& stereo);
std::shared_ptr<uwb_slam::Uwb> uwb_;
std::mutex mMutexSend;
private:
ros::Publisher position_pub_;
ros::Publisher cmd_vel_pub_;
ros::Subscriber odom_sub_;
ros::Subscriber obstacles_sub_;
ros::NodeHandle nh_;
nav_msgs::Odometry odom_;//odom的消息类型
nav_msgs::Odometry sub_odom_;//odom的消息类型
geometry_msgs::Twist cmd_vel_;
bool flag_ = 0;
};
}
#endif

View File

@ -1,50 +1,50 @@
#include <ros/ros.h>
#include <ros/time.h>
#ifndef TYPE_H
#define TYPE_H
namespace uwb_slam{
struct Imu_data
{
ros::Time imu_t_;
double a_[3];
double g_[3];
double m_[3];
Imu_data(){};
Imu_data(double ax,double ay,double az, double gx, double gy, double gz, double mx, double my, double mz)
:a_{ax,ay,az},g_{gx,gy,gz},m_{mx,my,mz}{};
};
struct Imu_odom_pose_data
{
Imu_data imu_data_;
double pose_[3];
double quat_[4];
double vxy_;
double angle_v_;
Imu_odom_pose_data(){};
Imu_odom_pose_data( Imu_data imu_data,double x,double y,double z, double qw, double qx, double qy, double qz,double vxy, double angle_v):imu_data_(imu_data),pose_{x,y,z},quat_{qw,qx,qy,qz},vxy_(vxy),angle_v_(angle_v){};
};
struct Uwb_data
{
float x_,y_;
ros::Time uwb_t_;
Uwb_data(){};
Uwb_data(float x,float y,float t):x_(x),y_(y),uwb_t_(t){};
};
struct LightHouseData
{
float x_,y_,z_;
float qw_,qx_,qy_,qz_;
ros::Time lighthouse_t_;
LightHouseData(){};
LightHouseData(float x,float y,float z, float qw, float qx, float qy, float qz, float t):
x_(x),y_(y),z_(z),qw_(qw), qx_(qx), qy_(qy), qz_(qz), lighthouse_t_(t){};
};
}
#include <ros/ros.h>
#include <ros/time.h>
#ifndef TYPE_H
#define TYPE_H
namespace uwb_slam{
struct Imu_data
{
ros::Time imu_t_;
double a_[3];
double g_[3];
double m_[3];
Imu_data(){};
Imu_data(double ax,double ay,double az, double gx, double gy, double gz, double mx, double my, double mz)
:a_{ax,ay,az},g_{gx,gy,gz},m_{mx,my,mz}{};
};
struct Imu_odom_pose_data
{
Imu_data imu_data_;
double pose_[3];
double quat_[4];
double vxy_;
double angle_v_;
Imu_odom_pose_data(){};
Imu_odom_pose_data( Imu_data imu_data,double x,double y,double z, double qw, double qx, double qy, double qz,double vxy, double angle_v):imu_data_(imu_data),pose_{x,y,z},quat_{qw,qx,qy,qz},vxy_(vxy),angle_v_(angle_v){};
};
struct Uwb_data
{
float x_,y_;
ros::Time uwb_t_;
Uwb_data(){};
Uwb_data(float x,float y,float t):x_(x),y_(y),uwb_t_(t){};
};
struct LightHouseData
{
float x_,y_,z_;
float qw_,qx_,qy_,qz_;
ros::Time lighthouse_t_;
LightHouseData(){};
LightHouseData(float x,float y,float z, float qw, float qx, float qy, float qz, float t):
x_(x),y_(y),z_(z),qw_(qw), qx_(qx), qy_(qy), qz_(qz), lighthouse_t_(t){};
};
}
#endif

View File

@ -1,60 +1,60 @@
#include <ros/ros.h>
#include <mutex>
#include <boost/asio.hpp>
#include <iostream>
#include <string>
#include <cstdint>
#include "type.h"
#include <queue>
#include <chrono>
#ifndef UWB_H
#define UWB_H
#define PI acos(-1)
namespace uwb_slam{
class Uwb
{
public:
Uwb();
void Run();
bool checknewdata();
void feed_imu_odom_pose_data();
void Serread();
public:
int pre_seq = -1;
int cur_seq = -1;
int AnchorNum = 3;
int AnchorPos[3][3]={
-240, 400, 113,\
240, 400, 113,\
-400, -240, 113
};//基站坐标,序号+三维坐标
int d[3];
int aoa[3];
// std::queue<Imu_odom_pose_data> v_buffer_imu_odom_pose_data_;
Uwb_data uwb_data_;
// ros_merge_test::RawImu sub_imu_;
// std::queue<Imu_odom_pose_data > imu_odom_queue_;
// std::queue<Uwb_data> uwb_data_queue_;
std::mutex mMutexUwb;
//boost::asio::io_service io;
//boost::asio::serial_port s_port;
// Imu_odom_pose_data imu_odom_pose_data_;
};
};
#endif
#include <ros/ros.h>
#include <mutex>
#include <boost/asio.hpp>
#include <iostream>
#include <string>
#include <cstdint>
#include "type.h"
#include <queue>
#include <chrono>
#ifndef UWB_H
#define UWB_H
#define PI acos(-1)
namespace uwb_slam{
class Uwb
{
public:
Uwb();
void Run();
bool checknewdata();
void feed_imu_odom_pose_data();
void Serread();
public:
int pre_seq = -1;
int cur_seq = -1;
int AnchorNum = 3;
int AnchorPos[3][3]={
-240, 400, 113,\
240, 400, 113,\
-400, -240, 113
};//基站坐标,序号+三维坐标
int d[3];
int aoa[3];
// std::queue<Imu_odom_pose_data> v_buffer_imu_odom_pose_data_;
Uwb_data uwb_data_;
// ros_merge_test::RawImu sub_imu_;
// std::queue<Imu_odom_pose_data > imu_odom_queue_;
// std::queue<Uwb_data> uwb_data_queue_;
std::mutex mMutexUwb;
//boost::asio::io_service io;
//boost::asio::serial_port s_port;
// Imu_odom_pose_data imu_odom_pose_data_;
};
};
#endif

View File

@ -1,75 +1,75 @@
<?xml version="1.0"?>
<package format="2">
<name>upbot_following</name>
<version>0.0.0</version>
<description>The FollowingCar package</description>
<!-- One maintainer tag required, multiple allowed, one person per tag -->
<!-- Example: -->
<!-- <maintainer email="jane.doe@example.com">Jane Doe</maintainer> -->
<maintainer email="luoruidi@todo.todo">luoruidi</maintainer>
<!-- One license tag required, multiple allowed, one license per tag -->
<!-- Commonly used license strings: -->
<!-- BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 -->
<license>TODO</license>
<!-- Url tags are optional, but multiple are allowed, one per tag -->
<!-- Optional attribute type can be: website, bugtracker, or repository -->
<!-- Example: -->
<!-- <url type="website">http://wiki.ros.org/FollowingCar</url> -->
<!-- Author tags are optional, multiple are allowed, one per tag -->
<!-- Authors do not have to be maintainers, but could be -->
<!-- Example: -->
<!-- <author email="jane.doe@example.com">Jane Doe</author> -->
<!-- The *depend tags are used to specify dependencies -->
<!-- Dependencies can be catkin packages or system dependencies -->
<!-- Examples: -->
<!-- Use depend as a shortcut for packages that are both build and exec dependencies -->
<!-- <depend>roscpp</depend> -->
<!-- Note that this is equivalent to the following: -->
<!-- <build_depend>roscpp</build_depend> -->
<!-- <exec_depend>roscpp</exec_depend> -->
<!-- Use build_depend for packages you need at compile time: -->
<!-- <build_depend>message_generation</build_depend> -->
<!-- Use build_export_depend for packages you need in order to build against this package: -->
<!-- <build_export_depend>message_generation</build_export_depend> -->
<!-- Use buildtool_depend for build tool packages: -->
<!-- <buildtool_depend>catkin</buildtool_depend> -->
<!-- Use exec_depend for packages you need at runtime: -->
<!-- <exec_depend>message_runtime</exec_depend> -->
<!-- Use test_depend for packages you need only for testing: -->
<!-- <test_depend>gtest</test_depend> -->
<!-- Use doc_depend for packages you need only for building documentation: -->
<!-- <doc_depend>doxygen</doc_depend> -->
<buildtool_depend>catkin</buildtool_depend>
<build_depend>roscpp</build_depend>
<build_depend>rospy</build_depend>
<build_depend>std_msgs</build_depend>
<build_depend>pibot_msgs</build_depend>
<build_depend>geometry_msgs</build_depend>
<build_depend>message_generation</build_depend>
<build_export_depend>roscpp</build_export_depend>
<build_export_depend>rospy</build_export_depend>
<build_export_depend>std_msgs</build_export_depend>
<exec_depend>roscpp</exec_depend>
<exec_depend>rospy</exec_depend>
<exec_depend>std_msgs</exec_depend>
<exec_depend>message_runtime</exec_depend>
<exec_depend>geometry_msgs</exec_depend>
<!-- The export tag contains other, unspecified, tags -->
<export>
<!-- Other tools can request additional information be placed here -->
</export>
</package>
<?xml version="1.0"?>
<package format="2">
<name>FollowingCar</name>
<version>0.0.0</version>
<description>The FollowingCar package</description>
<!-- One maintainer tag required, multiple allowed, one person per tag -->
<!-- Example: -->
<!-- <maintainer email="jane.doe@example.com">Jane Doe</maintainer> -->
<maintainer email="luoruidi@todo.todo">luoruidi</maintainer>
<!-- One license tag required, multiple allowed, one license per tag -->
<!-- Commonly used license strings: -->
<!-- BSD, MIT, Boost Software License, GPLv2, GPLv3, LGPLv2.1, LGPLv3 -->
<license>TODO</license>
<!-- Url tags are optional, but multiple are allowed, one per tag -->
<!-- Optional attribute type can be: website, bugtracker, or repository -->
<!-- Example: -->
<!-- <url type="website">http://wiki.ros.org/FollowingCar</url> -->
<!-- Author tags are optional, multiple are allowed, one per tag -->
<!-- Authors do not have to be maintainers, but could be -->
<!-- Example: -->
<!-- <author email="jane.doe@example.com">Jane Doe</author> -->
<!-- The *depend tags are used to specify dependencies -->
<!-- Dependencies can be catkin packages or system dependencies -->
<!-- Examples: -->
<!-- Use depend as a shortcut for packages that are both build and exec dependencies -->
<!-- <depend>roscpp</depend> -->
<!-- Note that this is equivalent to the following: -->
<!-- <build_depend>roscpp</build_depend> -->
<!-- <exec_depend>roscpp</exec_depend> -->
<!-- Use build_depend for packages you need at compile time: -->
<!-- <build_depend>message_generation</build_depend> -->
<!-- Use build_export_depend for packages you need in order to build against this package: -->
<!-- <build_export_depend>message_generation</build_export_depend> -->
<!-- Use buildtool_depend for build tool packages: -->
<!-- <buildtool_depend>catkin</buildtool_depend> -->
<!-- Use exec_depend for packages you need at runtime: -->
<!-- <exec_depend>message_runtime</exec_depend> -->
<!-- Use test_depend for packages you need only for testing: -->
<!-- <test_depend>gtest</test_depend> -->
<!-- Use doc_depend for packages you need only for building documentation: -->
<!-- <doc_depend>doxygen</doc_depend> -->
<buildtool_depend>catkin</buildtool_depend>
<build_depend>roscpp</build_depend>
<build_depend>rospy</build_depend>
<build_depend>std_msgs</build_depend>
<build_depend>pibot_msgs</build_depend>
<build_depend>geometry_msgs</build_depend>
<build_depend>message_generation</build_depend>
<build_export_depend>roscpp</build_export_depend>
<build_export_depend>rospy</build_export_depend>
<build_export_depend>std_msgs</build_export_depend>
<exec_depend>roscpp</exec_depend>
<exec_depend>rospy</exec_depend>
<exec_depend>std_msgs</exec_depend>
<exec_depend>message_runtime</exec_depend>
<exec_depend>geometry_msgs</exec_depend>
<!-- The export tag contains other, unspecified, tags -->
<export>
<!-- Other tools can request additional information be placed here -->
</export>
</package>

View File

@ -1,368 +1,368 @@
/******************** (C) COPYRIGHT 2022 Geek************************************
* File Name : Mat.cpp
* Current Version : V1.0
* Author : logzhan
* Date of Issued : 2022.09.14
* Comments : <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
********************************************************************************/
/* Header File Including -----------------------------------------------------*/
#include "Mat.h"
double mind(double a,double b)
{
double c = a;
if(b < c){
c = b;
}
return c;
}
int mini(int a,int b)
{
int c=a;
if(b<c)
{
c=b;
}
return c;
}
//<2F><>Ҫ<EFBFBD>ڳ<EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5>ù<EFBFBD><C3B9><EFBFBD><ECBAAF>
Mat::Mat()
{
Init(1,1,0);
}
Mat::Mat(int setm,int setn,int kind)
{
Init(setm,setn,kind);
}
void Mat::Init(int setm,int setn,int kind)
{
this->m = setm;
this->n = setn;
if((kind==0)||(kind==1))
{
memset(mat,0,MAT_MAX*MAT_MAX*sizeof(double));
}
if(kind==1)
{
int x;
//Cԭ<43>е<EFBFBD>max min<69><EFBFBD><E1B5BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>и<EFBFBD><D0B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD>Ҫֱ<D2AA>ӷŵ<D3B7>max<61><78><EFBFBD>
int xend = mini(this->m, this->n);
for(x=0;x < xend;x++){
mat[x][x] = 1;
}
}
}
void Mat::Zero() {
}
Mat Mat::SubMat(int a,int b,int lm,int ln)
{
int aend=a+lm-1;
int bend=b+ln-1;
Mat s(lm,ln,-1);
int x,y;
for(x=0;x<lm;x++)
{
for(y=0;y<ln;y++)
{
s.mat[x][y]=mat[a+x][b+y];
}
}
return s;
}
void Mat::FillSubMat(int a,int b,Mat s)
{
int x,y;
for(x=0;x<s.m;x++)
{
for(y=0;y<s.n;y++)
{
mat[a+x][b+y]=s.mat[x][y];
}
}
}
Mat operator *(double k, Mat a)
{
Mat b(a.m,a.n,-1);
int x,y;
for(x=0;x<a.m;x++)
{
for(y=0;y<a.n;y++)
{
b.mat[x][y]=k*a.mat[x][y];
}
}
return b;
}
Mat operator *(Mat a,double k)
{
return k*a;
}
Mat operator /(Mat a,double k)
{
return (1/k)*a;
}
Mat operator *(Mat a,Mat b)
{
Mat c(a.m,b.n,-1);
int x,y,z;
double s;
for(x=0;x<a.m;x++)
{
for(y=0;y<b.n;y++)
{
s=0;
for(z=0;z<a.n;z++)
{
s=s+a.mat[x][z]*b.mat[z][y];
}
c.mat[x][y]=s;
}
}
return c;
}
Mat operator +(Mat a,Mat b)
{
Mat c=a;
int x,y;
for(x=0;x<c.m;x++)
{
for(y=0;y<c.n;y++)
{
c.mat[x][y]+=b.mat[x][y];
}
}
return c;
}
Mat operator -(Mat a,Mat b)
{
Mat c=a;
int x,y;
for(x=0;x<c.m;x++)
{
for(y=0;y<c.n;y++)
{
c.mat[x][y]-=b.mat[x][y];
}
}
return c;
}
Mat operator ~(Mat a)
{
Mat b(a.n,a.m,-1);
int x,y;
for(x=0;x<a.m;x++)
{
for(y=0;y<a.n;y++)
{
b.mat[y][x]=a.mat[x][y];
}
}
return b;
}
Mat operator /(Mat a,Mat b)
{
//<2F><>˹<EFBFBD><CBB9>Ԫ<EFBFBD><D4AA>
int x,xb;
for(x=0;x<b.n;x++)
{
//<2F><><EFBFBD><EFBFBD><EFBFBD>ҵ<EFBFBD><D2B5><EFBFBD>ѵ<EFBFBD><D1B5>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD>ʼԪ<CABC><D4AA><EFBFBD><EFBFBD><EFBFBD>
double s=0;
int p=x;
double sxb;
for(xb=x;xb<b.n;xb++)
{
sxb=fabs(b.mat[x][xb]);
if(sxb>s)
{
p=xb;
s=sxb;
}
}
//ͬʱ<CDAC><EFBFBD><E4BBBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if(x!=p)
{
a.ColExchange(x,p);
b.ColExchange(x,p);
}
//<2F><>һ<EFBFBD>й<EFBFBD>һ
double k=1/b.mat[x][x];//<2F><>һ<EFBFBD>䲻ҪǶ<D2AA>׵<EFBFBD><D7B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>²<EFBFBD>ͬ<EFBFBD><CDAC><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
a.ColMul(x,k);
b.ColMul(x,k);
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>й<EFBFBD><D0B9><EFBFBD>
for(xb=0;xb<b.n;xb++)
{
if(xb!=x)
{
k=(-b.mat[x][xb]);
a.ColAdd(xb,x,k);
b.ColAdd(xb,x,k);
}
}
}
return a;
}
Mat operator %(Mat a,Mat b)
{
//<2F><>˹<EFBFBD><CBB9>Ԫ<EFBFBD><D4AA>
int x,xb;
for(x=0;x<a.m;x++)
{
//<2F><><EFBFBD><EFBFBD><EFBFBD>ҵ<EFBFBD><D2B5><EFBFBD>ѵ<EFBFBD><D1B5>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD>ʼԪ<CABC><D4AA><EFBFBD><EFBFBD><EFBFBD>
double s=0;
int p=x;
double sxb;
for(xb=x;xb<a.m;xb++)
{
sxb=fabs(a.mat[xb][x]);
if(sxb>s)
{
p=xb;
s=sxb;
}
}
//ͬʱ<CDAC><EFBFBD><E4BBBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if(x!=p)
{
a.RowExchange(x,p);
b.RowExchange(x,p);
}
//<2F><>һ<EFBFBD>й<EFBFBD>һ
double k=1/a.mat[x][x];//<2F><>һ<EFBFBD>䲻ҪǶ<D2AA>׵<EFBFBD><D7B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>²<EFBFBD>ͬ<EFBFBD><CDAC><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
a.RowMul(x,k);
b.RowMul(x,k);
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>й<EFBFBD><D0B9><EFBFBD>
for(xb=0;xb<a.m;xb++)
{
if(xb!=x)
{
k=(-a.mat[xb][x]);
a.RowAdd(xb,x,k);
b.RowAdd(xb,x,k);
}
}
}
return b;
}
void Mat::RowExchange(int a, int b)
{
double s[MAT_MAX];
int ncpy=n*sizeof(double);
memcpy(s,mat[a],ncpy);
memcpy(mat[a],mat[b],ncpy);
memcpy(mat[b],s,ncpy);
}
void Mat::RowMul(int a,double k)
{
int y;
for(y=0;y<n;y++)
{
mat[a][y]= mat[a][y]*k;
}
}
void Mat::RowAdd(int a,int b,double k)
{
int y;
for(y=0;y<n;y++)
{
mat[a][y]= mat[a][y]+ mat[b][y]*k;
}
}
void Mat::ColExchange(int a, int b)
{
double s;
int x;
for(x=0;x<m;x++)
{
s=mat[x][a];
mat[x][a]=mat[x][b];
mat[x][b]=s;
}
}
void Mat::ColMul(int a,double k)
{
int x;
for(x=0;x<m;x++)
{
mat[x][a]=mat[x][a]*k;
}
}
void Mat::ColAdd(int a,int b,double k)
{
int x;
for(x=0;x<m;x++)
{
mat[x][a]=mat[x][a]+mat[x][b]*k;
}
}
double Mat::Sqrt()
{
int x;
double numx;
double s=0;
for(x=0;x<m;x++)
{
numx=mat[x][0];
s+=(numx*numx);
}
return s;
}
double Mat::absvec()
{
return sqrt(Sqrt());
}
Mat operator ^(Mat a, Mat b)
{
double ax=a.mat[0][0];
double ay=a.mat[1][0];
double az=a.mat[2][0];
double bx=b.mat[0][0];
double by=b.mat[1][0];
double bz=b.mat[2][0];
Mat c(3,1,-1);
c.mat[0][0]=ay*bz-az*by;
c.mat[1][0]=(-(ax*bz-az*bx));
c.mat[2][0]=ax*by-ay*bx;
return c;
}
/******************** (C) COPYRIGHT 2022 Geek************************************
* File Name : Mat.cpp
* Current Version : V1.0
* Author : logzhan
* Date of Issued : 2022.09.14
* Comments : <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
********************************************************************************/
/* Header File Including -----------------------------------------------------*/
#include "Mat.h"
double mind(double a,double b)
{
double c = a;
if(b < c){
c = b;
}
return c;
}
int mini(int a,int b)
{
int c=a;
if(b<c)
{
c=b;
}
return c;
}
//<2F><>Ҫ<EFBFBD>ڳ<EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD>ڵ<EFBFBD><DAB5>ù<EFBFBD><C3B9><EFBFBD><ECBAAF>
Mat::Mat()
{
Init(1,1,0);
}
Mat::Mat(int setm,int setn,int kind)
{
Init(setm,setn,kind);
}
void Mat::Init(int setm,int setn,int kind)
{
this->m = setm;
this->n = setn;
if((kind==0)||(kind==1))
{
memset(mat,0,MAT_MAX*MAT_MAX*sizeof(double));
}
if(kind==1)
{
int x;
//Cԭ<43>е<EFBFBD>max min<69><EFBFBD><E1B5BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><D4B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>и<EFBFBD><D0B8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ķ<EFBFBD><C4B6><EFBFBD><EFBFBD><EFBFBD>Ҫֱ<D2AA>ӷŵ<D3B7>max<61><78><EFBFBD>
int xend = mini(this->m, this->n);
for(x=0;x < xend;x++){
mat[x][x] = 1;
}
}
}
void Mat::Zero() {
}
Mat Mat::SubMat(int a,int b,int lm,int ln)
{
int aend=a+lm-1;
int bend=b+ln-1;
Mat s(lm,ln,-1);
int x,y;
for(x=0;x<lm;x++)
{
for(y=0;y<ln;y++)
{
s.mat[x][y]=mat[a+x][b+y];
}
}
return s;
}
void Mat::FillSubMat(int a,int b,Mat s)
{
int x,y;
for(x=0;x<s.m;x++)
{
for(y=0;y<s.n;y++)
{
mat[a+x][b+y]=s.mat[x][y];
}
}
}
Mat operator *(double k, Mat a)
{
Mat b(a.m,a.n,-1);
int x,y;
for(x=0;x<a.m;x++)
{
for(y=0;y<a.n;y++)
{
b.mat[x][y]=k*a.mat[x][y];
}
}
return b;
}
Mat operator *(Mat a,double k)
{
return k*a;
}
Mat operator /(Mat a,double k)
{
return (1/k)*a;
}
Mat operator *(Mat a,Mat b)
{
Mat c(a.m,b.n,-1);
int x,y,z;
double s;
for(x=0;x<a.m;x++)
{
for(y=0;y<b.n;y++)
{
s=0;
for(z=0;z<a.n;z++)
{
s=s+a.mat[x][z]*b.mat[z][y];
}
c.mat[x][y]=s;
}
}
return c;
}
Mat operator +(Mat a,Mat b)
{
Mat c=a;
int x,y;
for(x=0;x<c.m;x++)
{
for(y=0;y<c.n;y++)
{
c.mat[x][y]+=b.mat[x][y];
}
}
return c;
}
Mat operator -(Mat a,Mat b)
{
Mat c=a;
int x,y;
for(x=0;x<c.m;x++)
{
for(y=0;y<c.n;y++)
{
c.mat[x][y]-=b.mat[x][y];
}
}
return c;
}
Mat operator ~(Mat a)
{
Mat b(a.n,a.m,-1);
int x,y;
for(x=0;x<a.m;x++)
{
for(y=0;y<a.n;y++)
{
b.mat[y][x]=a.mat[x][y];
}
}
return b;
}
Mat operator /(Mat a,Mat b)
{
//<2F><>˹<EFBFBD><CBB9>Ԫ<EFBFBD><D4AA>
int x,xb;
for(x=0;x<b.n;x++)
{
//<2F><><EFBFBD><EFBFBD><EFBFBD>ҵ<EFBFBD><D2B5><EFBFBD>ѵ<EFBFBD><D1B5>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD>ʼԪ<CABC><D4AA><EFBFBD><EFBFBD><EFBFBD>
double s=0;
int p=x;
double sxb;
for(xb=x;xb<b.n;xb++)
{
sxb=fabs(b.mat[x][xb]);
if(sxb>s)
{
p=xb;
s=sxb;
}
}
//ͬʱ<CDAC><EFBFBD><E4BBBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if(x!=p)
{
a.ColExchange(x,p);
b.ColExchange(x,p);
}
//<2F><>һ<EFBFBD>й<EFBFBD>һ
double k=1/b.mat[x][x];//<2F><>һ<EFBFBD>䲻ҪǶ<D2AA>׵<EFBFBD><D7B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>²<EFBFBD>ͬ<EFBFBD><CDAC><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
a.ColMul(x,k);
b.ColMul(x,k);
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>й<EFBFBD><D0B9><EFBFBD>
for(xb=0;xb<b.n;xb++)
{
if(xb!=x)
{
k=(-b.mat[x][xb]);
a.ColAdd(xb,x,k);
b.ColAdd(xb,x,k);
}
}
}
return a;
}
Mat operator %(Mat a,Mat b)
{
//<2F><>˹<EFBFBD><CBB9>Ԫ<EFBFBD><D4AA>
int x,xb;
for(x=0;x<a.m;x++)
{
//<2F><><EFBFBD><EFBFBD><EFBFBD>ҵ<EFBFBD><D2B5><EFBFBD>ѵ<EFBFBD><D1B5>С<EFBFBD><D0A1><EFBFBD><EFBFBD><EFBFBD>ʼԪ<CABC><D4AA><EFBFBD><EFBFBD><EFBFBD>
double s=0;
int p=x;
double sxb;
for(xb=x;xb<a.m;xb++)
{
sxb=fabs(a.mat[xb][x]);
if(sxb>s)
{
p=xb;
s=sxb;
}
}
//ͬʱ<CDAC><EFBFBD><E4BBBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
if(x!=p)
{
a.RowExchange(x,p);
b.RowExchange(x,p);
}
//<2F><>һ<EFBFBD>й<EFBFBD>һ
double k=1/a.mat[x][x];//<2F><>һ<EFBFBD>䲻ҪǶ<D2AA>׵<EFBFBD><D7B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>У<EFBFBD><D0A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>²<EFBFBD>ͬ<EFBFBD><CDAC><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
a.RowMul(x,k);
b.RowMul(x,k);
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>й<EFBFBD><D0B9><EFBFBD>
for(xb=0;xb<a.m;xb++)
{
if(xb!=x)
{
k=(-a.mat[xb][x]);
a.RowAdd(xb,x,k);
b.RowAdd(xb,x,k);
}
}
}
return b;
}
void Mat::RowExchange(int a, int b)
{
double s[MAT_MAX];
int ncpy=n*sizeof(double);
memcpy(s,mat[a],ncpy);
memcpy(mat[a],mat[b],ncpy);
memcpy(mat[b],s,ncpy);
}
void Mat::RowMul(int a,double k)
{
int y;
for(y=0;y<n;y++)
{
mat[a][y]= mat[a][y]*k;
}
}
void Mat::RowAdd(int a,int b,double k)
{
int y;
for(y=0;y<n;y++)
{
mat[a][y]= mat[a][y]+ mat[b][y]*k;
}
}
void Mat::ColExchange(int a, int b)
{
double s;
int x;
for(x=0;x<m;x++)
{
s=mat[x][a];
mat[x][a]=mat[x][b];
mat[x][b]=s;
}
}
void Mat::ColMul(int a,double k)
{
int x;
for(x=0;x<m;x++)
{
mat[x][a]=mat[x][a]*k;
}
}
void Mat::ColAdd(int a,int b,double k)
{
int x;
for(x=0;x<m;x++)
{
mat[x][a]=mat[x][a]+mat[x][b]*k;
}
}
double Mat::Sqrt()
{
int x;
double numx;
double s=0;
for(x=0;x<m;x++)
{
numx=mat[x][0];
s+=(numx*numx);
}
return s;
}
double Mat::absvec()
{
return sqrt(Sqrt());
}
Mat operator ^(Mat a, Mat b)
{
double ax=a.mat[0][0];
double ay=a.mat[1][0];
double az=a.mat[2][0];
double bx=b.mat[0][0];
double by=b.mat[1][0];
double bz=b.mat[2][0];
Mat c(3,1,-1);
c.mat[0][0]=ay*bz-az*by;
c.mat[1][0]=(-(ax*bz-az*bx));
c.mat[2][0]=ax*by-ay*bx;
return c;
}

View File

@ -1,94 +1,94 @@
#include "align.h"
namespace uwb_slam{
void Align::Run()
{
imuDataRxTime = ros::Time::now();
uwbDataRxTime = ros::Time::now();
wheel_odom_sub_= nh_.subscribe("wheel_odom",10,&Align::wheel_odomCB,this);
imu_sub_= nh_.subscribe("raw_imu",10,&Align::imuCB,this);
odom_sub_= nh_.subscribe("odom",10,&Align::odomCB,this);
std::ofstream outfile("data.txt",std::ofstream::out);
if(outfile.is_open()) {
std::cout << "start saving data" << std::endl;
outfile << "imuDataRxTime,odomDataRxTime,uwbDataRxTime,"\
<< "aX,aY,aZ,"\
<< "gX,gY,gZ"\
<< "mX,mY,mZ,"\
<< "qW,qX,qY,qZ,"\
<< "vXY,angleV,"\
<< "imuPosX,imuPosY,"\
<< "lightHousePosX,lightHousePosY,lightHousePosZ,"\
<< "lightHouseQW,lightHouseQX,lightHouseQY,lightHouseQZ"\
<< "d1,d2,d3\n";
} else {
std::cout<<"file can not open"<<std::endl;
}
while(1){
if(imuDataRxTime!=imu_odom_.imu_data_.imu_t_){
//std::cout << "imu received" << std::endl;
imuDataRxTime = imu_odom_.imu_data_.imu_t_;
odomDataRxTime = odom_tmp_;
uwbDataRxTime = uwb_->uwb_data_.uwb_t_;
outfile << imuDataRxTime << "," << odomDataRxTime << "," << uwbDataRxTime <<","\
<< imu_odom_.imu_data_.a_[0] << "," << imu_odom_.imu_data_.a_[1] << "," << imu_odom_.imu_data_.a_[2] << ","\
<< imu_odom_.imu_data_.g_[0] << "," << imu_odom_.imu_data_.g_[1] << "," << imu_odom_.imu_data_.g_[2] << ","\
<< imu_odom_.imu_data_.m_[0] << "," << imu_odom_.imu_data_.m_[1] << "," << imu_odom_.imu_data_.m_[2] << ","\
<< imu_odom_.quat_[0] << "," << imu_odom_.quat_[0] << "," << imu_odom_.quat_[0] << "," << imu_odom_.quat_[0] << ","\
<< imu_odom_.vxy_ << "," << imu_odom_.angle_v_ << ","\
<< imu_odom_.pose_[0] << "," << imu_odom_.pose_[1] << ","\
<< lighthouse_->data.x_ << "," << lighthouse_->data.y_ << "," << lighthouse_->data.z_ << ","\
<< lighthouse_->data.qw_ << "," << lighthouse_->data.qx_ << "," << lighthouse_->data.qy_ << "," << lighthouse_->data.qz_ << ","\
<< uwb_->d[0] << "," << uwb_->d[1] << "," << uwb_->d[2] << "\n";
}
}
// outfile.close();
// std::cout<< "Data written to file." << std::endl;
}
void Align::wheel_odomCB(const nav_msgs::Odometry& wheel_odom)
{
imu_odom_.vxy_= wheel_odom.twist.twist.linear.x;
imu_odom_.angle_v_ = wheel_odom.twist.twist.angular.z;
return;
}
void Align::imuCB(const pibot_msgs::RawImu& imu)
{
imu_odom_.imu_data_.imu_t_ = imu.header.stamp;
imu_odom_.imu_data_.a_[0] = imu.raw_linear_acceleration.x;
imu_odom_.imu_data_.a_[1] = imu.raw_linear_acceleration.y;
imu_odom_.imu_data_.a_[2] = imu.raw_linear_acceleration.z;
imu_odom_.imu_data_.g_[0] = imu.raw_angular_velocity.x;
imu_odom_.imu_data_.g_[1] = imu.raw_angular_velocity.y;
imu_odom_.imu_data_.g_[2] = imu.raw_angular_velocity.z;
imu_odom_.imu_data_.m_[0] = imu.raw_magnetic_field.x;
imu_odom_.imu_data_.m_[1] = imu.raw_magnetic_field.y;
imu_odom_.imu_data_.m_[2] = imu.raw_magnetic_field.z;
return;
}
void Align::odomCB(const nav_msgs::Odometry& odom)
{
odom_tmp_ = odom.header.stamp;
imu_odom_.pose_[0] = odom.pose.pose.position.x;
imu_odom_.pose_[1] = odom.pose.pose.position.y;
imu_odom_.pose_[2] = odom.pose.pose.position.z;
imu_odom_.quat_[0] = odom.pose.pose.orientation.w;
imu_odom_.quat_[1] = odom.pose.pose.orientation.x;
imu_odom_.quat_[2] = odom.pose.pose.orientation.y;
imu_odom_.quat_[3] = odom.pose.pose.orientation.z;
}
};
#include "align.h"
namespace uwb_slam{
void Align::Run()
{
imuDataRxTime = ros::Time::now();
uwbDataRxTime = ros::Time::now();
wheel_odom_sub_= nh_.subscribe("wheel_odom",10,&Align::wheel_odomCB,this);
imu_sub_= nh_.subscribe("raw_imu",10,&Align::imuCB,this);
odom_sub_= nh_.subscribe("odom",10,&Align::odomCB,this);
std::ofstream outfile("data.txt",std::ofstream::out);
if(outfile.is_open()) {
std::cout << "start saving data" << std::endl;
outfile << "imuDataRxTime,odomDataRxTime,uwbDataRxTime,"\
<< "aX,aY,aZ,"\
<< "gX,gY,gZ"\
<< "mX,mY,mZ,"\
<< "qW,qX,qY,qZ,"\
<< "vXY,angleV,"\
<< "imuPosX,imuPosY,"\
<< "lightHousePosX,lightHousePosY,lightHousePosZ,"\
<< "lightHouseQW,lightHouseQX,lightHouseQY,lightHouseQZ"\
<< "d1,d2,d3\n";
} else {
std::cout<<"file can not open"<<std::endl;
}
while(1){
if(imuDataRxTime!=imu_odom_.imu_data_.imu_t_){
//std::cout << "imu received" << std::endl;
imuDataRxTime = imu_odom_.imu_data_.imu_t_;
odomDataRxTime = odom_tmp_;
uwbDataRxTime = uwb_->uwb_data_.uwb_t_;
outfile << imuDataRxTime << "," << odomDataRxTime << "," << uwbDataRxTime <<","\
<< imu_odom_.imu_data_.a_[0] << "," << imu_odom_.imu_data_.a_[1] << "," << imu_odom_.imu_data_.a_[2] << ","\
<< imu_odom_.imu_data_.g_[0] << "," << imu_odom_.imu_data_.g_[1] << "," << imu_odom_.imu_data_.g_[2] << ","\
<< imu_odom_.imu_data_.m_[0] << "," << imu_odom_.imu_data_.m_[1] << "," << imu_odom_.imu_data_.m_[2] << ","\
<< imu_odom_.quat_[0] << "," << imu_odom_.quat_[0] << "," << imu_odom_.quat_[0] << "," << imu_odom_.quat_[0] << ","\
<< imu_odom_.vxy_ << "," << imu_odom_.angle_v_ << ","\
<< imu_odom_.pose_[0] << "," << imu_odom_.pose_[1] << ","\
<< lighthouse_->data.x_ << "," << lighthouse_->data.y_ << "," << lighthouse_->data.z_ << ","\
<< lighthouse_->data.qw_ << "," << lighthouse_->data.qx_ << "," << lighthouse_->data.qy_ << "," << lighthouse_->data.qz_ << ","\
<< uwb_->d[0] << "," << uwb_->d[1] << "," << uwb_->d[2] << "\n";
}
}
// outfile.close();
// std::cout<< "Data written to file." << std::endl;
}
void Align::wheel_odomCB(const nav_msgs::Odometry& wheel_odom)
{
imu_odom_.vxy_= wheel_odom.twist.twist.linear.x;
imu_odom_.angle_v_ = wheel_odom.twist.twist.angular.z;
return;
}
void Align::imuCB(const pibot_msgs::RawImu& imu)
{
imu_odom_.imu_data_.imu_t_ = imu.header.stamp;
imu_odom_.imu_data_.a_[0] = imu.raw_linear_acceleration.x;
imu_odom_.imu_data_.a_[1] = imu.raw_linear_acceleration.y;
imu_odom_.imu_data_.a_[2] = imu.raw_linear_acceleration.z;
imu_odom_.imu_data_.g_[0] = imu.raw_angular_velocity.x;
imu_odom_.imu_data_.g_[1] = imu.raw_angular_velocity.y;
imu_odom_.imu_data_.g_[2] = imu.raw_angular_velocity.z;
imu_odom_.imu_data_.m_[0] = imu.raw_magnetic_field.x;
imu_odom_.imu_data_.m_[1] = imu.raw_magnetic_field.y;
imu_odom_.imu_data_.m_[2] = imu.raw_magnetic_field.z;
return;
}
void Align::odomCB(const nav_msgs::Odometry& odom)
{
odom_tmp_ = odom.header.stamp;
imu_odom_.pose_[0] = odom.pose.pose.position.x;
imu_odom_.pose_[1] = odom.pose.pose.position.y;
imu_odom_.pose_[2] = odom.pose.pose.position.z;
imu_odom_.quat_[0] = odom.pose.pose.orientation.w;
imu_odom_.quat_[1] = odom.pose.pose.orientation.x;
imu_odom_.quat_[2] = odom.pose.pose.orientation.y;
imu_odom_.quat_[3] = odom.pose.pose.orientation.z;
}
};

View File

@ -1,79 +1,79 @@
#include "lighthouse.h"
#include <cmath>
#include <string>
namespace uwb_slam{
Lighthouse::Lighthouse(){
std::cout << "Start Run. " << std::endl;
// 创建UDP套接字
UdpSocket = socket(AF_INET, SOCK_DGRAM, 0);
if (UdpSocket == -1) {
std::cerr << "Error creating UDP socket." << std::endl;
return;
}
std::cout << "Creating UDP socket sucess. " << std::endl;
// 设置套接字地址结构
sockaddr_in udpAddress;
std::memset(&udpAddress, 0, sizeof(udpAddress));
udpAddress.sin_family = AF_INET;
udpAddress.sin_addr.s_addr = htonl(INADDR_ANY);
udpAddress.sin_port = htons(PORT);
// 将套接字绑定到地址
if (bind(UdpSocket, (struct sockaddr*)&udpAddress, sizeof(udpAddress)) == -1) {
std::cerr << "Error binding UDP socket." << std::endl;
close(UdpSocket);
}
}
Lighthouse::~Lighthouse(){
close(UdpSocket);
}
void Lighthouse::Run() {
while(1){
// 这是一个阻塞线程
this->UDPRead();
}
}
void Lighthouse::UDPRead(){
char buffer[1024];
ssize_t bytesRead = recvfrom(UdpSocket, buffer, sizeof(buffer), 0, nullptr, nullptr);
if (bytesRead == -1) {
std::cerr << "Error receiving data." << std::endl;
return;
}
std::string data(buffer);
float x,y,z,qw,qx,qy,qz;
qw = 1.0;
sscanf(data.c_str(),"%f %f %f %f %f %f",&x,&y,&z,&qx,&qy,&qz);
mMutexLighthouse.lock();
this->data.x_ = x;
this->data.y_ = y;
this->data.z_ = z;
this->data.qw_ = qw;
this->data.qx_ = qx;
this->data.qy_ = qy;
this->data.qz_ = qz;
mMutexLighthouse.unlock();
// 打印接收到的消息
buffer[bytesRead] = '\0';
//std::cout << "Received: " << buffer << std::endl;
}
#include "lighthouse.h"
#include <cmath>
#include <string>
namespace uwb_slam{
Lighthouse::Lighthouse(){
std::cout << "Start Run. " << std::endl;
// 创建UDP套接字
UdpSocket = socket(AF_INET, SOCK_DGRAM, 0);
if (UdpSocket == -1) {
std::cerr << "Error creating UDP socket." << std::endl;
return;
}
std::cout << "Creating UDP socket sucess. " << std::endl;
// 设置套接字地址结构
sockaddr_in udpAddress;
std::memset(&udpAddress, 0, sizeof(udpAddress));
udpAddress.sin_family = AF_INET;
udpAddress.sin_addr.s_addr = htonl(INADDR_ANY);
udpAddress.sin_port = htons(PORT);
// 将套接字绑定到地址
if (bind(UdpSocket, (struct sockaddr*)&udpAddress, sizeof(udpAddress)) == -1) {
std::cerr << "Error binding UDP socket." << std::endl;
close(UdpSocket);
}
}
Lighthouse::~Lighthouse(){
close(UdpSocket);
}
void Lighthouse::Run() {
while(1){
// 这是一个阻塞线程
this->UDPRead();
}
}
void Lighthouse::UDPRead(){
char buffer[1024];
ssize_t bytesRead = recvfrom(UdpSocket, buffer, sizeof(buffer), 0, nullptr, nullptr);
if (bytesRead == -1) {
std::cerr << "Error receiving data." << std::endl;
return;
}
std::string data(buffer);
float x,y,z,qw,qx,qy,qz;
qw = 1.0;
sscanf(data.c_str(),"%f %f %f %f %f %f",&x,&y,&z,&qx,&qy,&qz);
mMutexLighthouse.lock();
this->data.x_ = x;
this->data.y_ = y;
this->data.z_ = z;
this->data.qw_ = qw;
this->data.qx_ = qx;
this->data.qy_ = qy;
this->data.qz_ = qz;
mMutexLighthouse.unlock();
// 打印接收到的消息
buffer[bytesRead] = '\0';
//std::cout << "Received: " << buffer << std::endl;
}
};

View File

@ -1,60 +1,60 @@
#include "Mat.h"
// #include "align.h"
#include "mapping.h"
#include <iostream>
#include <ros/ros.h>
#include <thread>
#include "senddata.h"
int main(int argc, char** argv)
{
ros::init(argc, argv, "locate_info_pub_node"); // Initialize the ROS node
std::shared_ptr<uwb_slam::Mapping> mp = std::make_shared<uwb_slam::Mapping>();
std::shared_ptr<uwb_slam::Uwb> uwb = std::make_shared<uwb_slam::Uwb>();
std::shared_ptr<uwb_slam::Senddata> sender = std::make_shared<uwb_slam::Senddata>();
std::shared_ptr<uwb_slam::Align> align = std::make_shared<uwb_slam::Align>();
std::shared_ptr<uwb_slam::Lighthouse> lighthouse = std::make_shared<uwb_slam::Lighthouse>();
mp->uwb_ = uwb;
mp->align_ = align;
align->uwb_ =uwb;
align->lighthouse_ = lighthouse;
sender->uwb_ = uwb;
// // control data fllow in system
// std::thread rose_trd ([&system]() {
// system->Run();
// });
// uwb serried read
std::thread uwb_trd([&uwb]() {
uwb->Run();
});
// build map
// std::thread map_trd ([&mp]() {
// mp->Run();
// });
std::thread sender_trd ([&sender, uwb]() {
sender->Run(uwb);
});
// std::thread align_trd ([&align]() {
// align->Run();
// });
// std::thread lighthouse_trd ([&lighthouse]() {
// lighthouse->Run();
// });
ros::spin();
}
#include "Mat.h"
// #include "align.h"
#include "mapping.h"
#include <iostream>
#include <ros/ros.h>
#include <thread>
#include "senddata.h"
int main(int argc, char** argv)
{
ros::init(argc, argv, "locate_info_pub_node"); // Initialize the ROS node
std::shared_ptr<uwb_slam::Mapping> mp = std::make_shared<uwb_slam::Mapping>();
std::shared_ptr<uwb_slam::Uwb> uwb = std::make_shared<uwb_slam::Uwb>();
std::shared_ptr<uwb_slam::Senddata> sender = std::make_shared<uwb_slam::Senddata>();
std::shared_ptr<uwb_slam::Align> align = std::make_shared<uwb_slam::Align>();
std::shared_ptr<uwb_slam::Lighthouse> lighthouse = std::make_shared<uwb_slam::Lighthouse>();
mp->uwb_ = uwb;
mp->align_ = align;
align->uwb_ =uwb;
align->lighthouse_ = lighthouse;
sender->uwb_ = uwb;
// // control data fllow in system
// std::thread rose_trd ([&system]() {
// system->Run();
// });
// uwb serried read
std::thread uwb_trd([&uwb]() {
uwb->Run();
});
// build map
// std::thread map_trd ([&mp]() {
// mp->Run();
// });
std::thread sender_trd ([&sender, uwb]() {
sender->Run(uwb);
});
// std::thread align_trd ([&align]() {
// align->Run();
// });
// std::thread lighthouse_trd ([&lighthouse]() {
// lighthouse->Run();
// });
ros::spin();
}

View File

@ -1,149 +1,149 @@
#include "mapping.h"
#include <mutex>
#include <unistd.h>// 包含 usleep() 函数所在的头文件
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
namespace uwb_slam
{
bool Mapping::checkQueue()
{
//std::unique_lock<std::mutex> lock(mMutexMap);
return !posDataQueue.empty();
}
void Mapping::feedPos(const cv::Point2d & imuPosData, const cv::Point2d & uwbPosData, const cv::Point2d & syncPosData)
{
//std::unique_lock<std::mutex> lock(mMutexMap);
posDataQueue.push({imuPosData, uwbPosData, syncPosData});
}
void Mapping::process()
{
{
//std::unique_lock<std::mutex> lock(mMutexMap);
//std::cout << "SIZE: " <<posDataQueue.size() << std::endl;
posData = posDataQueue.front();
//std::cout << "x: " <<cur_point.x << " y:" << cur_point.y << std::endl;
posDataQueue.pop();
}
/*生成图*/
int imuPosPointX = posData[0].x / PIXEL_SCALE + ( fmod(posData[0].x ,PIXEL_SCALE) != 0) + realWidth / 2;
int imuPosPointY = posData[0].y / PIXEL_SCALE + ( fmod(posData[0].y ,PIXEL_SCALE) != 0) + realHeight / 2;
int uwbPosPointX = posData[1].x / PIXEL_SCALE + ( fmod(posData[1].x ,PIXEL_SCALE) != 0) + realWidth / 2;
int uwbPosPointY = posData[1].y / PIXEL_SCALE + ( fmod(posData[1].y ,PIXEL_SCALE) != 0) + realHeight / 2;
int syncPosPointX = posData[2].x / PIXEL_SCALE + ( fmod(posData[2].x ,PIXEL_SCALE) != 0) + realWidth / 2;
int syncPosPointY = posData[2].y / PIXEL_SCALE + ( fmod(posData[2].y ,PIXEL_SCALE) != 0) + realHeight / 2;
// std::cout << "syncPos:" <<posData[2].x << " " << posData[2].y;
// std::cout << " uwbPos:" <<posData[1].x << " " << posData[1].x;
// std::cout << " imuPos:" <<posData[0].x << " " << posData[0].y << std::endl;
// std::cout << "syncPos:" <<syncPosPointX << " " << syncPosPointY;
// std::cout << " uwbPos:" <<uwbPosPointX << " " << uwbPosPointY;
// std::cout << " imuPos:" <<imuPosPointX << " " << imuPosPointY << std::endl;
// img.at<unsigned char>(imuPosPointY, imuPosPointX) = 0;
img.at<cv::Vec3b>(imuPosPointY, imuPosPointX) = cv::Vec3b(0,0,255); //imu trace is red
img.at<cv::Vec3b>(uwbPosPointY, uwbPosPointX) = cv::Vec3b(0,255,0); //uwb trace is green
img.at<cv::Vec3b>(syncPosPointY, syncPosPointX) = cv::Vec3b(255,0,0); //sync trace is blue
}
void Mapping::Run()
{
//int key = cv::waitKey(0);//等待用户按下按键
//std::cout << key << std::endl;
realWidth = AREA_SIZE / PIXEL_SCALE;
realHeight = AREA_SIZE / PIXEL_SCALE;
img = cv::Mat(realHeight, realWidth, CV_8UC3, cv::Scalar(255,255,255));
//cankao
for (int j=0;j<AREA_SIZE / PIXEL_SCALE;j+=10)
for (int i=0;i<AREA_SIZE / PIXEL_SCALE;i+=10)
img.at<cv::Vec3b>(j,i)= cv::Vec3b(0,0,0);
for (int j=realHeight/2-1; j<=realHeight/2+1; j+=1)
for (int i=realWidth/2-1; i<=realWidth/2+1; i+=1)
img.at<cv::Vec3b>(j,i)= cv::Vec3b(0,0,0);
int i = 0, j = 0;
img.at<cv::Vec3b>(j,i)= cv::Vec3b(0,0,0);
cv::imshow("Image",img);
// bool printFlag = 0;
// std::ofstream outfile("data.txt",std::ofstream::out);
// if(outfile.is_open()) {
// std::cout << "start saving data" << key << std::endl;
// printFlag = 1;
// } else {
// std::cout<<"file can not open"<<std::endl;
// }
/*
std::cout << "waiting" <<std::endl;
int key = cv::waitKey(0);
if (key == 'q' || key == 27) {
this->feed_uwb_data(cv::Point2d(uwb_->x,uwb_->y));
readPos = true;
std::cout << "non" << key << std::endl;
cv::destroyAllWindows();
}
*/
while(1){
int key = cv::waitKey(0);
if (key == 'q' ) {
readPos = true;
std::cout << "start mapping" << key << std::endl;
//cv::destroyAllWindows();
}
while( readPos )//按下空格键
{
int key2 = cv::waitKey(1);
if (key2 == 'q') {
//TODO: save
std::string pngimage="/home/firefly/Project_Ros11/Project_Ros1/src/pibot_msgs/Map/output_image.png";//保存的图片文件路径
cv::imwrite(pngimage,img);
readPos = false;
// outfile.close();
// printFlag = 0;
// std::cout<< "Data written to file." << std::endl;
break;
}
//this->feedPos(cv::Point2d(align_->imuPos.mat[0][0], align_->imuPos.mat[1][0]), cv::Point2d(align_->uwbPos.mat[0][0], align_->uwbPos.mat[1][0]), cv::Point2d(align_->syncPos.mat[0][0], align_->syncPos.mat[1][0]));
//this->feedPos(cv::Point2d(uwb_->x, uwb_->y));
//uwb xieru
//std::cout << "cur_SEQ: " <<uwb_->cur_seq << std::endl;
if(checkQueue())
{
//std::cout << " start process" << std::endl;
process();
//std::cout << " end process" << std::endl;
}
}
// std::cout << "out" << key << std::endl;
}
//std::string pngimage="../Map/pngimage.png";//保存的图片文件路径
//cv::imwrite(pngimage,img);
/*ros 发送图片给导航 */
}
} // namespace uwb_slam
#include "mapping.h"
#include <mutex>
#include <unistd.h>// 包含 usleep() 函数所在的头文件
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
namespace uwb_slam
{
bool Mapping::checkQueue()
{
//std::unique_lock<std::mutex> lock(mMutexMap);
return !posDataQueue.empty();
}
void Mapping::feedPos(const cv::Point2d & imuPosData, const cv::Point2d & uwbPosData, const cv::Point2d & syncPosData)
{
//std::unique_lock<std::mutex> lock(mMutexMap);
posDataQueue.push({imuPosData, uwbPosData, syncPosData});
}
void Mapping::process()
{
{
//std::unique_lock<std::mutex> lock(mMutexMap);
//std::cout << "SIZE: " <<posDataQueue.size() << std::endl;
posData = posDataQueue.front();
//std::cout << "x: " <<cur_point.x << " y:" << cur_point.y << std::endl;
posDataQueue.pop();
}
/*生成图*/
int imuPosPointX = posData[0].x / PIXEL_SCALE + ( fmod(posData[0].x ,PIXEL_SCALE) != 0) + realWidth / 2;
int imuPosPointY = posData[0].y / PIXEL_SCALE + ( fmod(posData[0].y ,PIXEL_SCALE) != 0) + realHeight / 2;
int uwbPosPointX = posData[1].x / PIXEL_SCALE + ( fmod(posData[1].x ,PIXEL_SCALE) != 0) + realWidth / 2;
int uwbPosPointY = posData[1].y / PIXEL_SCALE + ( fmod(posData[1].y ,PIXEL_SCALE) != 0) + realHeight / 2;
int syncPosPointX = posData[2].x / PIXEL_SCALE + ( fmod(posData[2].x ,PIXEL_SCALE) != 0) + realWidth / 2;
int syncPosPointY = posData[2].y / PIXEL_SCALE + ( fmod(posData[2].y ,PIXEL_SCALE) != 0) + realHeight / 2;
// std::cout << "syncPos:" <<posData[2].x << " " << posData[2].y;
// std::cout << " uwbPos:" <<posData[1].x << " " << posData[1].x;
// std::cout << " imuPos:" <<posData[0].x << " " << posData[0].y << std::endl;
// std::cout << "syncPos:" <<syncPosPointX << " " << syncPosPointY;
// std::cout << " uwbPos:" <<uwbPosPointX << " " << uwbPosPointY;
// std::cout << " imuPos:" <<imuPosPointX << " " << imuPosPointY << std::endl;
// img.at<unsigned char>(imuPosPointY, imuPosPointX) = 0;
img.at<cv::Vec3b>(imuPosPointY, imuPosPointX) = cv::Vec3b(0,0,255); //imu trace is red
img.at<cv::Vec3b>(uwbPosPointY, uwbPosPointX) = cv::Vec3b(0,255,0); //uwb trace is green
img.at<cv::Vec3b>(syncPosPointY, syncPosPointX) = cv::Vec3b(255,0,0); //sync trace is blue
}
void Mapping::Run()
{
//int key = cv::waitKey(0);//等待用户按下按键
//std::cout << key << std::endl;
realWidth = AREA_SIZE / PIXEL_SCALE;
realHeight = AREA_SIZE / PIXEL_SCALE;
img = cv::Mat(realHeight, realWidth, CV_8UC3, cv::Scalar(255,255,255));
//cankao
for (int j=0;j<AREA_SIZE / PIXEL_SCALE;j+=10)
for (int i=0;i<AREA_SIZE / PIXEL_SCALE;i+=10)
img.at<cv::Vec3b>(j,i)= cv::Vec3b(0,0,0);
for (int j=realHeight/2-1; j<=realHeight/2+1; j+=1)
for (int i=realWidth/2-1; i<=realWidth/2+1; i+=1)
img.at<cv::Vec3b>(j,i)= cv::Vec3b(0,0,0);
int i = 0, j = 0;
img.at<cv::Vec3b>(j,i)= cv::Vec3b(0,0,0);
cv::imshow("Image",img);
// bool printFlag = 0;
// std::ofstream outfile("data.txt",std::ofstream::out);
// if(outfile.is_open()) {
// std::cout << "start saving data" << key << std::endl;
// printFlag = 1;
// } else {
// std::cout<<"file can not open"<<std::endl;
// }
/*
std::cout << "waiting" <<std::endl;
int key = cv::waitKey(0);
if (key == 'q' || key == 27) {
this->feed_uwb_data(cv::Point2d(uwb_->x,uwb_->y));
readPos = true;
std::cout << "non" << key << std::endl;
cv::destroyAllWindows();
}
*/
while(1){
int key = cv::waitKey(0);
if (key == 'q' ) {
readPos = true;
std::cout << "start mapping" << key << std::endl;
//cv::destroyAllWindows();
}
while( readPos )//按下空格键
{
int key2 = cv::waitKey(1);
if (key2 == 'q') {
//TODO: save
std::string pngimage="/home/firefly/Project_Ros11/Project_Ros1/src/pibot_msgs/Map/output_image.png";//保存的图片文件路径
cv::imwrite(pngimage,img);
readPos = false;
// outfile.close();
// printFlag = 0;
// std::cout<< "Data written to file." << std::endl;
break;
}
//this->feedPos(cv::Point2d(align_->imuPos.mat[0][0], align_->imuPos.mat[1][0]), cv::Point2d(align_->uwbPos.mat[0][0], align_->uwbPos.mat[1][0]), cv::Point2d(align_->syncPos.mat[0][0], align_->syncPos.mat[1][0]));
//this->feedPos(cv::Point2d(uwb_->x, uwb_->y));
//uwb xieru
//std::cout << "cur_SEQ: " <<uwb_->cur_seq << std::endl;
if(checkQueue())
{
//std::cout << " start process" << std::endl;
process();
//std::cout << " end process" << std::endl;
}
}
// std::cout << "out" << key << std::endl;
}
//std::string pngimage="../Map/pngimage.png";//保存的图片文件路径
//cv::imwrite(pngimage,img);
/*ros 发送图片给导航 */
}
} // namespace uwb_slam

View File

@ -1,147 +1,147 @@
#include "senddata.h"
#define angleLimit 20
#define disLimit 200
namespace uwb_slam
{
void Senddata::Run(std::shared_ptr<uwb_slam::Uwb>uwb){
ros::Rate loop_rate(10);
// position_pub_=nh_.advertise<nav_msgs::Odometry>("uwb_odom",50);
cmd_vel_pub_ = nh_.advertise<geometry_msgs::Twist>("cmd_vel",50);
obstacles_sub_ = nh_.subscribe<pibot_msgs::dis_info_array>("ceju_info",1,boost::bind(&Senddata::stereoCB,this,_1));
// odom_sub_=nh_.subscribe("odom",10,&Senddata::odomCB,this);
while(ros::ok()){
// publishOdometry(uwb);
if (flag_)
{
cmd_vel_.linear.x = 0;
cmd_vel_.angular.z = -1;
for (int i = 0; i < 17; ++i) {
cmd_vel_pub_.publish(cmd_vel_);
loop_rate.sleep();
}
cmd_vel_.linear.x = 0.2;
cmd_vel_.angular.z = 0;
for (int i = 0; i < 20; ++i) {
cmd_vel_pub_.publish(cmd_vel_);
loop_rate.sleep();
}
cmd_vel_.linear.x = 0;
cmd_vel_.angular.z = 1;
for (int i = 0; i < 16; ++i) {
cmd_vel_pub_.publish(cmd_vel_);
loop_rate.sleep();
}
cmd_vel_.linear.x = 0;
cmd_vel_.angular.z = 0;
flag_ = 0;
}
else if(abs(uwb->aoa[0]) > 180 || abs(uwb->d[0]) > 2000)
{
cmd_vel_.angular.z = 0;
cmd_vel_.linear.x = 0;
}
else if(uwb->aoa[0] > angleLimit && uwb->aoa[0] <= 180)
{
float angularSpeed = (float)uwb->aoa[0] / 100 + 1;
cmd_vel_.angular.z = angularSpeed;
cmd_vel_.linear.x = 0;
}
else if(uwb->aoa[0] < -angleLimit)
{
float angularSpeed = (float)uwb->aoa[0] / 100 - 1;
cmd_vel_.angular.z = angularSpeed;
cmd_vel_.linear.x = 0;
}
else if(uwb->d[0] > disLimit)
{
float lineSpeed = (float)uwb->d[0] / 1000 + 0.1;
cmd_vel_.angular.z = 0;
cmd_vel_.linear.x = lineSpeed;
}
else if(uwb->d[0] < disLimit - 30)
{
cmd_vel_.angular.z = 0;
cmd_vel_.linear.x = -0.2;
}
else
{
cmd_vel_.angular.z = 0;
cmd_vel_.linear.x = 0;
}
cmd_vel_pub_.publish(cmd_vel_);
ros::spinOnce();
loop_rate.sleep();
}
}
// void Senddata::odomCB(const nav_msgs::Odometry& odom){
// sub_odom_ = odom;
// return;
// }
void Senddata::stereoCB(const pibot_msgs::dis_info_array::ConstPtr& stereo)
{
for (const auto& obstacle_info :stereo->dis)
{
float distance = obstacle_info.distance;
// float width = obstacle_info.width;
// float height = obstacle_info.height;
// float angle = obstacle_info.angle;
// if(distance>5&&distance<45&&cmd_vel_.linear.x!=0)
if(distance>5&&distance<45)
{
flag_ = 1;
}
}
return;
}
// void Senddata::publishOdometry(std::shared_ptr<uwb_slam::Uwb>uwb)
// {
// std::mutex mMutexSend;
// ros::Time current_time = ros::Time::now();
// // 设置 Odometry 消息的头部信息
// odom_.header.stamp = current_time;
// odom_.header.frame_id = "odom"; // 设置坐标系为 "map"
// odom_.child_frame_id = "base_link"; // 设置坐标系为 "base_link"
// // 填充 Odometry 消息的位置信息
// odom_.pose.pose.position.x = uwb->uwb_data_.x_;
// odom_.pose.pose.position.y = uwb->uwb_data_.y_;
// odom_.pose.pose.position.z = 0.0;
// // 填充 Odometry 消息的姿态信息(使用四元数来表示姿态)
// // tf2::Quaternion quat;
// // quat.setRPY(0, 0, uwb->theta); // 设置了 yaw 角度,其他 roll 和 pitch 设置为 0
// // odom.pose.pose.orientation.x = quat.x();
// // odom.pose.pose.orientation.y = quat.y();
// // odom.pose.pose.orientation.z = quat.z();
// // odom.pose.pose.orientation.w = quat.w();
// odom_.pose.pose.orientation.x = sub_odom_.pose.pose.orientation.x;
// odom_.pose.pose.orientation.y = sub_odom_.pose.pose.orientation.y;
// odom_.pose.pose.orientation.z = sub_odom_.pose.pose.orientation.z;
// odom_.pose.pose.orientation.w = sub_odom_.pose.pose.orientation.w;
// // 发布 Odometry 消息
// position_pub_.publish(odom_);
// }
#include "senddata.h"
#define angleLimit 20
#define disLimit 200
namespace uwb_slam
{
void Senddata::Run(std::shared_ptr<uwb_slam::Uwb>uwb){
ros::Rate loop_rate(10);
// position_pub_=nh_.advertise<nav_msgs::Odometry>("uwb_odom",50);
cmd_vel_pub_ = nh_.advertise<geometry_msgs::Twist>("cmd_vel",50);
obstacles_sub_ = nh_.subscribe<pibot_msgs::dis_info_array>("ceju_info",1,boost::bind(&Senddata::stereoCB,this,_1));
// odom_sub_=nh_.subscribe("odom",10,&Senddata::odomCB,this);
while(ros::ok()){
// publishOdometry(uwb);
if (flag_)
{
cmd_vel_.linear.x = 0;
cmd_vel_.angular.z = -1;
for (int i = 0; i < 17; ++i) {
cmd_vel_pub_.publish(cmd_vel_);
loop_rate.sleep();
}
cmd_vel_.linear.x = 0.2;
cmd_vel_.angular.z = 0;
for (int i = 0; i < 20; ++i) {
cmd_vel_pub_.publish(cmd_vel_);
loop_rate.sleep();
}
cmd_vel_.linear.x = 0;
cmd_vel_.angular.z = 1;
for (int i = 0; i < 16; ++i) {
cmd_vel_pub_.publish(cmd_vel_);
loop_rate.sleep();
}
cmd_vel_.linear.x = 0;
cmd_vel_.angular.z = 0;
flag_ = 0;
}
else if(abs(uwb->aoa[0]) > 180 || abs(uwb->d[0]) > 2000)
{
cmd_vel_.angular.z = 0;
cmd_vel_.linear.x = 0;
}
else if(uwb->aoa[0] > angleLimit && uwb->aoa[0] <= 180)
{
float angularSpeed = (float)uwb->aoa[0] / 100 + 1;
cmd_vel_.angular.z = angularSpeed;
cmd_vel_.linear.x = 0;
}
else if(uwb->aoa[0] < -angleLimit)
{
float angularSpeed = (float)uwb->aoa[0] / 100 - 1;
cmd_vel_.angular.z = angularSpeed;
cmd_vel_.linear.x = 0;
}
else if(uwb->d[0] > disLimit)
{
float lineSpeed = (float)uwb->d[0] / 1000 + 0.1;
cmd_vel_.angular.z = 0;
cmd_vel_.linear.x = lineSpeed;
}
else if(uwb->d[0] < disLimit - 30)
{
cmd_vel_.angular.z = 0;
cmd_vel_.linear.x = -0.2;
}
else
{
cmd_vel_.angular.z = 0;
cmd_vel_.linear.x = 0;
}
cmd_vel_pub_.publish(cmd_vel_);
ros::spinOnce();
loop_rate.sleep();
}
}
// void Senddata::odomCB(const nav_msgs::Odometry& odom){
// sub_odom_ = odom;
// return;
// }
void Senddata::stereoCB(const pibot_msgs::dis_info_array::ConstPtr& stereo)
{
for (const auto& obstacle_info :stereo->dis)
{
float distance = obstacle_info.distance;
// float width = obstacle_info.width;
// float height = obstacle_info.height;
// float angle = obstacle_info.angle;
// if(distance>5&&distance<45&&cmd_vel_.linear.x!=0)
if(distance>5&&distance<45)
{
flag_ = 1;
}
}
return;
}
// void Senddata::publishOdometry(std::shared_ptr<uwb_slam::Uwb>uwb)
// {
// std::mutex mMutexSend;
// ros::Time current_time = ros::Time::now();
// // 设置 Odometry 消息的头部信息
// odom_.header.stamp = current_time;
// odom_.header.frame_id = "odom"; // 设置坐标系为 "map"
// odom_.child_frame_id = "base_link"; // 设置坐标系为 "base_link"
// // 填充 Odometry 消息的位置信息
// odom_.pose.pose.position.x = uwb->uwb_data_.x_;
// odom_.pose.pose.position.y = uwb->uwb_data_.y_;
// odom_.pose.pose.position.z = 0.0;
// // 填充 Odometry 消息的姿态信息(使用四元数来表示姿态)
// // tf2::Quaternion quat;
// // quat.setRPY(0, 0, uwb->theta); // 设置了 yaw 角度,其他 roll 和 pitch 设置为 0
// // odom.pose.pose.orientation.x = quat.x();
// // odom.pose.pose.orientation.y = quat.y();
// // odom.pose.pose.orientation.z = quat.z();
// // odom.pose.pose.orientation.w = quat.w();
// odom_.pose.pose.orientation.x = sub_odom_.pose.pose.orientation.x;
// odom_.pose.pose.orientation.y = sub_odom_.pose.pose.orientation.y;
// odom_.pose.pose.orientation.z = sub_odom_.pose.pose.orientation.z;
// odom_.pose.pose.orientation.w = sub_odom_.pose.pose.orientation.w;
// // 发布 Odometry 消息
// position_pub_.publish(odom_);
// }
} // namespace uwb_slam

View File

@ -1,121 +1,121 @@
#include "uwb.h"
#include <cmath>
#include "Mat.h"
#define CARHEIGHT 20
#define DISINDEX 3
#define AOAINDEX 15
#define DATALENGTH 27
namespace uwb_slam{
Uwb::Uwb(){
}
void Uwb::Run() {
while(1){
this->Serread();
}
}
void Uwb::Serread(){
try {
boost::asio::io_service io;
boost::asio::serial_port serial(io, "/dev/ttyUSB1"); // 替换成你的串口设备路径
serial.set_option(boost::asio::serial_port_base::baud_rate(115200)); // 设置波特率
serial.set_option(boost::asio::serial_port_base::character_size(8)); // 设置数据位
serial.set_option(boost::asio::serial_port_base::parity(boost::asio::serial_port_base::parity::none)); // 设置校验位
serial.set_option(boost::asio::serial_port_base::stop_bits(boost::asio::serial_port_base::stop_bits::one)); // 设置停止位
uint8_t tmpdata[DATALENGTH];
// std::cerr << "befor read" << std::endl;
size_t bytesRead = boost::asio::read(serial, boost::asio::buffer(tmpdata, sizeof(tmpdata))); // 读取串口数据
// std::cerr << "after read" << std::endl;
this->uwb_data_.uwb_t_ = ros::Time::now();
for (int i=0;i< bytesRead;i++)
{
std::cout << std::hex<<static_cast<int>(tmpdata[i]) << " ";
}
std::cout << std::endl;
memcpy(&this->d[0], &tmpdata[DISINDEX], sizeof(d[0]));
memcpy(&this->d[1], &tmpdata[DISINDEX + sizeof(d[0])], sizeof(d[0]));
memcpy(&this->d[2], &tmpdata[DISINDEX + sizeof(d[0]) * 2], sizeof(d[0]));
memcpy(&this->aoa[0], &tmpdata[AOAINDEX], sizeof(aoa[0]));
memcpy(&this->aoa[1], &tmpdata[AOAINDEX + sizeof(aoa[0])], sizeof(aoa[0]));
memcpy(&this->aoa[2], &tmpdata[AOAINDEX + sizeof(aoa[0]) * 2], sizeof(aoa[0]));
//std::cout << "d:" << d[0] << " " << d[1] << " " << d[2] << std::endl;
// if(abs(d[0]) > 2000 || abs(d[1]) > 2000 || abs(d[2]) > 2000) {
// return;
// }
// for(int i=0; i<3; i++)
// {
// this->d[i] = sqrt(this->d[i] * this->d[i] - (AnchorPos[i][2] - CARHEIGHT) * (AnchorPos[i][2] - CARHEIGHT));
// }
std::cout<<"d: "<<this->d[0]<<" aoa: "<<this->aoa[0]<<std::endl;
d[0] = ((((-1.4229e-07 * d[0]) + 1.8784e-04) * d[0]) + 0.9112) * d[0] + 2.4464;
// d[1] = ((((-2.3004e-07 * d[1]) + 3.2942e-04) * d[1]) + 0.8385) * d[1] + 6.2770;
// d[2] = ((((-2.0616e-07 * d[2]) + 3.3886e-04) * d[2]) + 0.8231) * d[2] + 8.1566;
} catch (const std::exception& ex) {
std::cerr << "Exception: " << ex.what() << std::endl;
}
}
void fusion()
{
}
};
// bool Uwb::checknewdata()
// {
// std::unique_lock<std::mutex> lock(mMutexUwb);
// return !v_buffer_imu_odom_pose_data_.empty();
// }
// void Uwb::Run() {
// while(1)
// {
// if(checknewdata())
// {
// {
// std::unique_lock<std::mutex> lock(mMutexUwb);
// Imu_odom_pose_data imu_odom_pose_data = v_buffer_imu_odom_pose_data_.front();
// v_buffer_imu_odom_pose_data_.pop();
// }
// }
// }
// }
// void Uwb::feed_imu_odom_pose_data(const Imu_odom_pose_data& imu_odom_pose_data){
// std::unique_lock<std::mutex> lock(mMutexUwb);
// v_buffer_imu_odom_pose_data_.push(imu_odom_pose_data);
// }
#include "uwb.h"
#include <cmath>
#include "Mat.h"
#define CARHEIGHT 20
#define DISINDEX 3
#define AOAINDEX 15
#define DATALENGTH 27
namespace uwb_slam{
Uwb::Uwb(){
}
void Uwb::Run() {
while(1){
this->Serread();
}
}
void Uwb::Serread(){
try {
boost::asio::io_service io;
boost::asio::serial_port serial(io, "/dev/ttyUSB1"); // 替换成你的串口设备路径
serial.set_option(boost::asio::serial_port_base::baud_rate(115200)); // 设置波特率
serial.set_option(boost::asio::serial_port_base::character_size(8)); // 设置数据位
serial.set_option(boost::asio::serial_port_base::parity(boost::asio::serial_port_base::parity::none)); // 设置校验位
serial.set_option(boost::asio::serial_port_base::stop_bits(boost::asio::serial_port_base::stop_bits::one)); // 设置停止位
uint8_t tmpdata[DATALENGTH];
// std::cerr << "befor read" << std::endl;
size_t bytesRead = boost::asio::read(serial, boost::asio::buffer(tmpdata, sizeof(tmpdata))); // 读取串口数据
// std::cerr << "after read" << std::endl;
this->uwb_data_.uwb_t_ = ros::Time::now();
for (int i=0;i< bytesRead;i++)
{
std::cout << std::hex<<static_cast<int>(tmpdata[i]) << " ";
}
std::cout << std::endl;
memcpy(&this->d[0], &tmpdata[DISINDEX], sizeof(d[0]));
memcpy(&this->d[1], &tmpdata[DISINDEX + sizeof(d[0])], sizeof(d[0]));
memcpy(&this->d[2], &tmpdata[DISINDEX + sizeof(d[0]) * 2], sizeof(d[0]));
memcpy(&this->aoa[0], &tmpdata[AOAINDEX], sizeof(aoa[0]));
memcpy(&this->aoa[1], &tmpdata[AOAINDEX + sizeof(aoa[0])], sizeof(aoa[0]));
memcpy(&this->aoa[2], &tmpdata[AOAINDEX + sizeof(aoa[0]) * 2], sizeof(aoa[0]));
//std::cout << "d:" << d[0] << " " << d[1] << " " << d[2] << std::endl;
// if(abs(d[0]) > 2000 || abs(d[1]) > 2000 || abs(d[2]) > 2000) {
// return;
// }
// for(int i=0; i<3; i++)
// {
// this->d[i] = sqrt(this->d[i] * this->d[i] - (AnchorPos[i][2] - CARHEIGHT) * (AnchorPos[i][2] - CARHEIGHT));
// }
std::cout<<"d: "<<this->d[0]<<" aoa: "<<this->aoa[0]<<std::endl;
d[0] = ((((-1.4229e-07 * d[0]) + 1.8784e-04) * d[0]) + 0.9112) * d[0] + 2.4464;
// d[1] = ((((-2.3004e-07 * d[1]) + 3.2942e-04) * d[1]) + 0.8385) * d[1] + 6.2770;
// d[2] = ((((-2.0616e-07 * d[2]) + 3.3886e-04) * d[2]) + 0.8231) * d[2] + 8.1566;
} catch (const std::exception& ex) {
std::cerr << "Exception: " << ex.what() << std::endl;
}
}
void fusion()
{
}
};
// bool Uwb::checknewdata()
// {
// std::unique_lock<std::mutex> lock(mMutexUwb);
// return !v_buffer_imu_odom_pose_data_.empty();
// }
// void Uwb::Run() {
// while(1)
// {
// if(checknewdata())
// {
// {
// std::unique_lock<std::mutex> lock(mMutexUwb);
// Imu_odom_pose_data imu_odom_pose_data = v_buffer_imu_odom_pose_data_.front();
// v_buffer_imu_odom_pose_data_.pop();
// }
// }
// }
// }
// void Uwb::feed_imu_odom_pose_data(const Imu_odom_pose_data& imu_odom_pose_data){
// std::unique_lock<std::mutex> lock(mMutexUwb);
// v_buffer_imu_odom_pose_data_.push(imu_odom_pose_data);
// }

View File

@ -36,7 +36,6 @@ add_message_files(
RoomSequence.msg
dis_info.msg
dis_info_array.msg
avoid.msg
)
## Generate services in the 'srv' folder

View File

@ -1,6 +0,0 @@
Header header
float32 ultrasonic_range
bool l1
bool l2
bool r1
bool r2

View File

@ -0,0 +1,226 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1712649995.270271216,-2.14681,-1.24004,-0.0680199,0.000126608,-0.118708,0.00108108,0,0.0666667,-0.2842111712649995.270350534,
1712649995.420440111,-2.14681,-1.24004,-0.0680199,0.0001273,-0.119356,0.00107517,0,0.0666667,-0.2842111712649995.420477729,
1712649995.570565265,-2.14681,-1.24004,-0.0680199,0.000128683,-0.120654,0.00116402,0,0.0666667,-0.2842111712649995.570598800,
1712649995.720681087,-2.14681,-1.24004,-0.0680199,0.000129375,-0.121302,0.00119952,0,0.0666667,-0.2842111712649995.720718121,
1712649995.870816156,-2.14681,-1.24004,-0.0680199,0.000130759,-0.122599,0.00120747,0,0.0666667,-0.2842111712649995.870869520,
1712649996.020970483,-2.14681,-1.24004,-0.0680199,0.00013145,-0.123248,0.00114803,0,0.0666667,-0.2842111712649996.021015099,
1712649996.171096324,-2.14681,-1.24004,-0.0680199,0.000132833,-0.124544,0.001076,0,0.0666667,-0.2842111712649996.171133650,
1712649996.321217790,-2.14681,-1.24004,-0.0680199,0.000133525,-0.125193,0.00109211,0,0.0666667,-0.2842111712649996.321256574,
1712649996.471346839,-2.14681,-1.24004,-0.0680199,0.000134907,-0.126489,0.00103656,0,0.0666667,-0.2842111712649996.471384457,
1712649996.621469181,-2.14681,-1.24004,-0.0680199,0.000135598,-0.127137,0.000994454,0,0.0666667,-0.2842111712649996.621506215,
1712649996.771591231,-2.14681,-1.24004,-0.0680199,0.00013698,-0.128432,0.0010035,0,0.0666667,-0.2842111712649996.771628265,
1712649996.921712698,-2.14681,-1.24004,-0.0680199,0.00013767,-0.12908,0.00104683,0,0.0666667,-0.2842111712649996.921751190,
1712649997.071835087,-2.14681,-1.24004,-0.0680199,0.000139051,-0.130374,0.00105186,0,0.0666667,-0.2842111712649997.071873288,
1712649997.221955782,-2.14681,-1.24004,-0.0680199,0.000139741,-0.131021,0.00110925,0,0.0666667,-0.3221051712649997.221995441,
1712649997.372082310,-2.14681,-1.24004,-0.0680199,0.00014112,-0.132314,0.0011201,0,0.0666667,-0.3221051712649997.372122844,
1712649997.522205338,-2.14681,-1.24004,-0.0680199,0.000141809,-0.132961,0.00117067,0,0.0666667,-0.3221051712649997.522241498,
1712649997.672329825,-2.14681,-1.24004,-0.0680199,0.000143187,-0.134252,0.00117975,0,0.0666667,-0.3221051712649997.672369192,
1712649997.822454020,-2.14681,-1.24004,-0.0680199,0.000143876,-0.134898,0.00118662,0,0.0666667,-0.3221051712649997.822491054,
1712649997.972573549,-2.14681,-1.24004,-0.0680199,0.000145252,-0.136188,0.00126379,0,0.0666667,-0.3221051712649997.972612333,
1712649998.122701325,-2.14681,-1.24004,-0.0680199,0.000145939,-0.136833,0.00130866,0,0.0666667,-0.3221051712649998.122738943,
1712649998.272825040,-2.14681,-1.24004,-0.0680199,0.000147314,-0.138121,0.00137592,0,0.0666667,-0.3221051712649998.272859742,
1712649998.422944089,-2.14681,-1.24004,-0.0680199,0.000148,-0.138765,0.00133704,0,0.0666667,-0.3221051712649998.422981999,
1712649998.573071303,-2.14681,-1.24004,-0.0680199,0.000149372,-0.140051,0.00127659,0,0.0666667,-0.3221051712649998.573108921,
1712649998.723195310,-2.14681,-1.24004,-0.0680199,0.000150058,-0.140694,0.00119922,0,0.0666667,-0.3221051712649998.723232344,
1712649998.873317275,-2.14681,-1.24004,-0.0680199,0.000151427,-0.141978,0.00111597,0,0.0666667,-0.3221051712649998.873365682,
1712649999.023461125,-2.14681,-1.24004,-0.0680199,0.000152112,-0.14262,0.00108041,0,0.0666667,-0.3221051712649999.023499617,
1712649999.173584068,-2.14681,-1.24004,-0.0680199,0.000153479,-0.143902,0.00103988,0,0.0666667,-0.3221051712649999.173622560,
1712649999.323710510,-2.14681,-1.24004,-0.0680199,0.000154162,-0.144542,0.000980021,0,0.0666667,-0.3221051712649999.323746961,
1712649999.473836660,-2.14681,-1.24004,-0.0680199,0.000155526,-0.145821,0.000966117,0,0.0666667,-0.3221051712649999.473876902,
1712649999.623965435,-2.14681,-1.24004,-0.0680199,0.000156208,-0.14646,0.00102357,0,0.0666667,-0.3221051712649999.624005969,
1712649999.774090127,-2.14681,-1.24004,-0.0680199,0.000157569,-0.147737,0.00106862,0,0.0666667,-0.3221051712649999.774130078,
1712649999.924217736,-2.14681,-1.24004,-0.0680199,0.000158249,-0.148375,0.00111583,0,0.0666667,-0.3221051712649999.924256812,
1712650000.074355597,-2.14681,-1.24004,-0.0680199,0.000159608,-0.149648,0.00110795,0,0.0666667,-0.3221051712650000.074403421,
1712650000.224490015,-2.14681,-1.24004,-0.0680199,0.000160286,-0.150284,0.00118314,0,0.0666667,-0.3221051712650000.224530841,
1712650000.374632890,-2.14681,-1.24004,-0.0680199,0.000161642,-0.151555,0.00126415,0,0.0666667,-0.3221051712650000.374725913,
1712650000.524859456,-2.14681,-1.24004,-0.0680199,0.000162318,-0.15219,0.00128455,0,0.0666667,-0.3221051712650000.524944023,
1712650000.675087481,-2.14681,-1.24004,-0.0680199,0.00016367,-0.153457,0.00121758,0,0.0666667,-0.3221051712650000.675172048,
1712650000.825302675,-2.14681,-1.24004,-0.0680199,0.000164345,-0.15409,0.00117079,0,0.0666667,-0.2842111712650000.825393949,
1712650000.975527492,-2.14681,-1.24004,-0.0680199,0.000165694,-0.155354,0.00121616,0,0.0666667,-0.2842111712650000.975614100,
1712650001.125749765,-2.14681,-1.24004,-0.0680199,0.000166367,-0.155985,0.0011577,0,0.0666667,-0.2842111712650001.125834915,
1712650001.275972351,-2.14681,-1.24004,-0.0680199,0.000167711,-0.157246,0.00106305,0,0.0666667,-0.2842111712650001.276111449,
1712650001.426252385,-2.14681,-1.24004,-0.0680199,0.000168383,-0.157876,0.00114053,0,0.0666667,-0.2842111712650001.426341617,
1712650001.576473221,-2.14681,-1.24004,-0.0680199,0.000169723,-0.159132,0.00113743,0,0.0666667,-0.2842111712650001.576555455,
1712650001.726689683,-2.14681,-1.24004,-0.0680199,0.000170393,-0.15976,0.00118093,0,0.0666667,-0.2842111712650001.726776291,
1712650001.876913144,-2.14681,-1.24004,-0.0680199,0.000171729,-0.161013,0.00121736,0,0.0666667,-0.2842111712650001.877012000,
1712650002.027164031,-2.14681,-1.24004,-0.0680199,0.000172396,-0.161639,0.00118472,0,0.0666667,-0.2842111712650002.027246848,
1712650002.177380011,-2.14681,-1.24004,-0.0680199,0.000173729,-0.162888,0.00118799,0,0.0666667,-0.2842111712650002.177459329,
1712650002.327596283,-2.14681,-1.24004,-0.0680199,0.000174394,-0.163512,0.00121916,0,0.0666667,-0.2842111712650002.327682892,
1712650002.477820138,-2.14681,-1.24004,-0.0680199,0.000175722,-0.164757,0.00124341,0,0.0666667,-0.2842111712650002.477902955,
1712650002.628034660,-2.14681,-1.24004,-0.0680199,0.000176385,-0.165378,0.00116129,0,0.0666667,-0.2842111712650002.628126517,
1712650002.778313920,-2.14681,-1.24004,-0.0680199,0.000177708,-0.166619,0.00117145,0,0.0666667,-0.2842111712650002.778402570,
1712650002.928534567,-2.14681,-1.24004,-0.0680199,0.000178369,-0.167239,0.00117384,0,0.0666667,-0.2842111712650002.928620300,
1712650003.078752057,-2.14681,-1.24004,-0.0680199,0.000179688,-0.168475,0.00120156,0,0.0666667,-0.2842111712650003.078843039,
1712650003.228978928,-2.14681,-1.24004,-0.0680199,0.000180346,-0.169093,0.00112874,0,0.0666667,-0.2842111712650003.229063787,
1712650003.379197051,-2.14681,-1.24004,-0.0680199,0.00018166,-0.170325,0.0011095,0,0.0666667,-0.2842111712650003.379288325,
1712650003.529385722,-2.14681,-1.24004,-0.0680199,0.000182316,-0.17094,0.00108477,0,0.0666667,-0.2842111712650003.529469997,
1712650003.679597721,-2.14681,-1.24004,-0.0680199,0.000183625,-0.172167,0.00108061,0,0.0666667,-0.2842111712650003.679637088,
1712650003.829726028,-2.14681,-1.24004,-0.0680199,0.000184279,-0.17278,0.00104604,0,0.0666667,-0.2842111712650003.829764812,
1712650003.979849086,-2.14681,-1.24004,-0.0680199,0.000185583,-0.174003,0.00108798,0,0.0666667,-0.2842111712650003.979884371,
1712650004.129970189,-2.14681,-1.24004,-0.0680199,0.000186234,-0.174613,0.00101155,0,0.0666667,-0.2842111712650004.130008973,
1712650004.280097139,-2.14681,-1.24004,-0.0680199,0.000187533,-0.175831,0.00106254,0,0.0666667,-0.2842111712650004.280133882,
1712650004.430223214,-2.14681,-1.24004,-0.0680199,0.000188182,-0.176439,0.00102951,0,0.0666667,-0.2842111712650004.430262873,
1712650004.580351038,-2.14681,-1.24004,-0.0680199,0.000189476,-0.177652,0.00101661,0,0.0666667,-0.2842111712650004.580386906,
1712650004.730471281,-2.14681,-1.24004,-0.0680199,0.000190121,-0.178258,0.00101095,0,0.0666667,-0.2842111712650004.730509482,
1712650004.880612228,-2.14681,-1.24004,-0.0680199,0.00019141,-0.179466,0.000984505,0,0.0666667,-0.2842111712650004.880659469,
1712650005.030763984,-2.14681,-1.24004,-0.0680199,0.000192053,-0.180069,0.000969288,0,0.0666667,-0.2842111712650005.030804226,
1712650005.180892201,-2.14681,-1.24004,-0.0680199,0.000193336,-0.181272,0.000960705,0,0.0666667,-0.2842111712650005.180939442,
1712650005.331036164,-2.14681,-1.24004,-0.0680199,0.000193976,-0.181872,0.00100667,0,0.0666667,-0.3221051712650005.331074949,
1712650005.481160007,-2.14681,-1.24004,-0.0680199,0.000195254,-0.18307,0.00101509,0,0.0666667,-0.3221051712650005.481198499,
1712650005.631284724,-2.14681,-1.24004,-0.0680199,0.000195891,-0.183668,0.00103061,0,0.0666667,-0.3221051712650005.631324092,
1712650005.781408858,-2.14681,-1.24004,-0.0680199,0.000197163,-0.18486,0.00104498,0,0.0666667,-0.3221051712650005.781445893,
1712650005.931534742,-2.14681,-1.24004,-0.0680199,0.000197798,-0.185455,0.00105974,0,0.0666667,-0.3221051712650005.931571777,
1712650006.081656304,-2.14681,-1.24004,-0.0680199,0.000199064,-0.186643,0.0010127,0,0.0666667,-0.3221051712650006.081692173,
1712650006.231775873,-2.14681,-1.24004,-0.0680199,0.000199696,-0.187235,0.00100173,0,0.0666667,-0.3221051712650006.231814074,
1712650006.381896024,-2.14681,-1.24004,-0.0680199,0.000200956,-0.188417,0.000971277,0,0.0666667,-0.3221051712650006.381935975,
1712650006.532020842,-2.14681,-1.24004,-0.0680199,0.000201585,-0.189006,0.000959253,0,0.0666667,-0.3221051712650006.532059334,
1712650006.682143326,-2.14681,-1.24004,-0.0680199,0.00020284,-0.190183,0.00100463,0,0.0666667,-0.3221051712650006.682181527,
1712650006.832266977,-2.14681,-1.24004,-0.0680199,0.000203466,-0.190769,0.000926351,0,0.0666667,-0.3221051712650006.832304303,
1712650006.982387420,-2.14681,-1.24004,-0.0680199,0.000204714,-0.19194,0.00089476,0,0.0666667,-0.3221051712650006.982424455,
1712650007.132511449,-2.14681,-1.24004,-0.0680199,0.000205337,-0.192524,0.000978409,0,0.0666667,-0.3221051712650007.132548484,
1712650007.282631409,-2.14681,-1.24004,-0.0680199,0.000206579,-0.193689,0.000971347,0,0.0666667,-0.3221051712650007.282669318,
1712650007.432759242,-2.14681,-1.24004,-0.0680199,0.000207199,-0.19427,0.000971158,0,0.0666667,-0.3221051712650007.432799484,
1712650007.582884742,-2.14681,-1.24004,-0.0680199,0.000208436,-0.195429,0.00103298,0,0.0666667,-0.3221051712650007.582919152,
1712650007.733006159,-2.14681,-1.24004,-0.0680199,0.000209052,-0.196007,0.00101848,0,0.0666667,-0.3221051712650007.733044652,
1712650007.883129327,-2.14681,-1.24004,-0.0680199,0.000210282,-0.197161,0.000998235,0,0.0666667,-0.3221051712650007.883168111,
1712650008.033253097,-2.14681,-1.24004,-0.0680199,0.000210896,-0.197736,0.00106163,0,0.0666667,-0.3221051712650008.033293631,
1712650008.183376364,-2.14681,-1.24004,-0.0680199,0.00021212,-0.198883,0.00110045,0,0.0666667,-0.3221051712650008.183419522,
1712650008.333508962,-2.14681,-1.24004,-0.0680199,0.00021273,-0.199456,0.00106078,0,0.0666667,-0.3221051712650008.333548913,
1712650008.483635145,-2.14681,-1.24004,-0.0680199,0.000213947,-0.200597,0.00102402,0,0.0666667,-0.3221051712650008.483672179,
1712650008.633758703,-2.14681,-1.24004,-0.0680199,0.000214555,-0.201166,0.000965161,0,0.0666667,-0.3221051712650008.633796029,
1712650008.783880219,-2.14681,-1.24004,-0.0680199,0.000215766,-0.202302,0.00100398,0,0.0666667,-0.3221051712650008.783917254,
1712650008.934006985,-2.14681,-1.24004,-0.0680199,0.00021637,-0.202868,0.000972837,0,0.0666667,-0.3221051712650008.934095635,
1712650009.084226829,-2.14681,-1.24004,-0.0680199,0.000217574,-0.203998,0.000949887,0,0.0666667,-0.2842111712650009.084307897,
1712650009.234436803,-2.14681,-1.24004,-0.0680199,0.000218175,-0.204561,0.00101149,0,0.0666667,-0.2842111712650009.234476754,
1712650009.384561043,-2.14681,-1.24004,-0.0680199,0.000219373,-0.205684,0.0010289,0,0.0666667,-0.2842111712650009.384600119,
1712650009.534687616,-2.14681,-1.24004,-0.0680199,0.00021997,-0.206244,0.000992854,0,0.0666667,-0.2842111712650009.534725234,
1712650009.684810398,-2.14681,-1.24004,-0.0680199,0.000221162,-0.207361,0.000981248,0,0.0666667,-0.2842111712650009.684846266,
1712650009.834932014,-2.14681,-1.24004,-0.0680199,0.000221756,-0.207918,0.00101184,0,0.0666667,-0.2842111712650009.834981004,
1712650009.985064711,-2.14681,-1.24004,-0.0680199,0.000222941,-0.209029,0.000984676,0,0.0666667,-0.2842111712650009.985104370,
1712650010.135193995,-2.14681,-1.24004,-0.0680199,0.000223531,-0.209583,0.000999382,0,0.0666667,-0.2842111712650010.135233363,
1712650010.285316292,-2.14681,-1.24004,-0.0680199,0.000224709,-0.210688,0.00102042,0,0.0666667,-0.2842111712650010.285352744,
1712650010.435437423,-2.14681,-1.24004,-0.0680199,0.000225297,-0.211238,0.000984065,0,0.0666667,-0.2842111712650010.435476207,
1712650010.585559137,-2.14681,-1.24004,-0.0680199,0.000226468,-0.212337,0.000963806,0,0.0666667,-0.2842111712650010.585595589,
1712650010.735680560,-2.14681,-1.24004,-0.0680199,0.000227052,-0.212884,0.000984273,0,0.0666667,-0.2842111712650010.735718469,
1712650010.885803440,-2.14681,-1.24004,-0.0680199,0.000228217,-0.213976,0.000952735,0,0.0666667,-0.2842111712650010.885840767,
1712650011.035926342,-2.14681,-1.24004,-0.0680199,0.000228798,-0.214521,0.000984479,0,0.0666667,-0.2842111712650011.035964835,
1712650011.186038240,-2.14681,-1.24004,-0.0680199,0.000229955,-0.215606,0.000987991,0,0.0666667,-0.2842111712650011.186081107,
1712650011.336166176,-2.14681,-1.24004,-0.0680199,0.000230533,-0.216147,0.000958061,0,0.0666667,-0.2842111712650011.336204377,
1712650011.486289446,-2.14681,-1.24004,-0.0680199,0.000231683,-0.217226,0.000900327,0,0.0666667,-0.2842111712650011.486327064,
1712650011.636414174,-2.14681,-1.24004,-0.0680199,0.000232257,-0.217764,0.000921967,0,0.0666667,-0.2842111712650011.636453542,
1712650011.786539777,-2.14681,-1.24004,-0.0680199,0.000233401,-0.218837,0.000800684,0,0.0666667,-0.2842111712650011.786577104,
1712650011.936661589,-2.14681,-1.24004,-0.0680199,0.000233972,-0.219372,0.000883642,0,0.0666667,-0.2842111712650011.936699207,
1712650012.086782290,-2.14681,-1.24004,-0.0680199,0.000235109,-0.220438,0.000891447,0,0.0666667,-0.2842111712650012.086818158,
1712650012.236904491,-2.14681,-1.24004,-0.0680199,0.000235676,-0.220969,0.000863855,0,0.0666667,-0.2842111712650012.236942692,
1712650012.387025526,-2.14681,-1.24004,-0.0680199,0.000236806,-0.222029,0.000871535,0,0.0666667,-0.2842111712650012.387063436,
1712650012.537147436,-2.14681,-1.24004,-0.0680199,0.000237369,-0.222557,0.000958014,0,0.0666667,-0.2842111712650012.537186512,
1712650012.687273720,-2.14681,-1.24004,-0.0680199,0.000238492,-0.22361,0.000988933,0,0.0666667,-0.2842111712650012.687313379,
1712650012.837399421,-2.14681,-1.24004,-0.0680199,0.000239611,-0.224659,0.00092467,0,0.0666667,-0.2842111712650012.837438788,
1712650012.987523080,-2.14681,-1.24004,-0.0680199,0.000240168,-0.225182,0.000884944,0,0.0666667,-0.2842111712650012.987559240,
1712650013.137642453,-2.14681,-1.24004,-0.0680199,0.00024128,-0.226224,0.00084285,0,0.0666667,-0.2842111712650013.137681237,
1712650013.287764751,-2.14681,-1.24004,-0.0680199,0.000241834,-0.226744,0.000789407,0,0.0666667,-0.2842111712650013.287802953,
1712650013.437892882,-2.14681,-1.24004,-0.0680199,0.000242387,-0.227262,0.000809928,0,0.0666667,-0.2842111712650013.437929917,
1712650013.588015764,-2.14681,-1.24004,-0.0680199,0.000243489,-0.228295,0.000809845,0,0.0666667,-0.2842111712650013.588054840,
1712650013.738140104,-2.14681,-1.24004,-0.0680199,0.000244586,-0.229324,0.000811764,0,0.0666667,-0.2842111712650013.738179472,
1712650013.888266194,-2.14681,-1.24004,-0.0680199,0.000245133,-0.229837,0.000814022,0,0.0666667,-0.2842111712650013.888303520,
1712650014.038391723,-2.14681,-1.24004,-0.0680199,0.000246224,-0.230859,0.000762338,0,0.0666667,-0.2842111712650014.038431383,
1712650014.188518785,-2.14681,-1.24004,-0.0680199,0.000246767,-0.231369,0.000717226,0,0.0666667,-0.3221051712650014.188562527,
1712650014.338648471,-2.14681,-1.24004,-0.0680199,0.000247309,-0.231877,0.000773305,0,0.0666667,-0.3221051712650014.338686380,
1712650014.488790987,-2.14681,-1.24004,-0.0680199,0.00024839,-0.232891,0.000829193,0,0.0666667,-0.3221051712650014.488832688,
1712650014.638929422,-2.14681,-1.24004,-0.0680199,0.000248929,-0.233396,0.000781615,0,0.0666667,-0.3221051712650014.638967623,
1712650014.789061441,-2.14681,-1.24004,-0.0680199,0.000250003,-0.234402,0.000791172,0,0.0666667,-0.3221051712650014.789098184,
1712650014.939183836,-2.14681,-1.24004,-0.0680199,0.000250538,-0.234904,0.00077134,0,0.0666667,-0.3221051712650014.939273653,
1712650015.089382398,-2.14681,-1.24004,-0.0680199,0.000251604,-0.235904,0.00071539,0,0.0666667,-0.3221051712650015.090052233,
1712650015.240194846,-2.14681,-1.24004,-0.0680199,0.000252666,-0.2369,0.000751086,0,0.0666667,-0.3221051712650015.240278539,
1712650015.390409196,-2.14681,-1.24004,-0.0680199,0.000253196,-0.237396,0.000719424,0,0.0666667,-0.3221051712650015.390497263,
1712650015.540642501,-2.14681,-1.24004,-0.0680199,0.00025425,-0.238385,0.00075578,0,0.0666667,-0.3221051712650015.540729110,
1712650015.690868516,-2.14681,-1.24004,-0.0680199,0.000254776,-0.238878,0.000705747,0,0.0666667,-0.3221051712650015.690951917,
1712650015.841086657,-2.14681,-1.24004,-0.0680199,0.0002553,-0.23937,0.000740916,0,0.0666667,-0.3221051712650015.841168017,
1712650015.991302173,-2.14681,-1.24004,-0.0680199,0.000256346,-0.24035,0.000748809,0,0.0666667,-0.3221051712650015.991339208,
1712650016.141425629,-2.14681,-1.24004,-0.0680199,0.000256866,-0.240838,0.000755643,0,0.0666667,-0.3221051712650016.141462664,
1712650016.291547634,-2.14681,-1.24004,-0.0680199,0.000257905,-0.241811,0.000774634,0,0.0666667,-0.3221051712650016.291583794,
1712650016.441668473,-2.14681,-1.24004,-0.0680199,0.000258422,-0.242296,0.000740156,0,0.0666667,-0.3221051712650016.441703466,
1712650016.591789894,-2.14681,-1.24004,-0.0680199,0.000259453,-0.243263,0.000749979,0,0.0666667,-0.3221051712650016.591826638,
1712650016.741909275,-2.14681,-1.24004,-0.0680199,0.000259967,-0.243745,0.000732085,0,0.0666667,-0.3221051712650016.741944852,
1712650016.892031863,-2.14681,-1.24004,-0.0680199,0.00026099,-0.244705,0.000712447,0,0.0666667,-0.3221051712650016.892069190,
1712650017.042155058,-2.14681,-1.24004,-0.0680199,0.000262009,-0.24566,0.000646661,0,0.0666667,-0.3221051712650017.042188593,
1712650017.192272493,-2.14681,-1.24004,-0.0680199,0.000262517,-0.246136,0.000675837,0,0.0666667,-0.3221051712650017.192312444,
1712650017.342398676,-2.14681,-1.24004,-0.0680199,0.000263529,-0.247085,0.000643946,0,0.0666667,-0.3221051712650017.342433961,
1712650017.492521069,-2.14681,-1.24004,-0.0680199,0.000264033,-0.247558,0.000574093,0,0.0666667,-0.3221051712650017.492558687,
1712650017.642643753,-2.14681,-1.24004,-0.0680199,0.000264536,-0.248029,0.000571024,0,0.0666667,-0.3221051712650017.642679621,
1712650017.792769644,-2.14681,-1.24004,-0.0680199,0.000265539,-0.248969,0.00045018,0,0.0666667,-0.3221051712650017.792807554,
1712650017.942896703,-2.14681,-1.24004,-0.0680199,0.000266038,-0.249437,0.000458294,0,0.0666667,-0.3221051712650017.942930821,
1712650018.093016817,-2.14681,-1.24004,-0.0680199,0.000267033,-0.250371,0.000399107,0,0.0666667,-0.3221051712650018.093055310,
1712650018.243140472,-2.14681,-1.24004,-0.0680199,0.000267529,-0.250836,0.000428482,0,0.0666667,-0.3221051712650018.243176340,
1712650018.393246629,-2.14681,-1.24004,-0.0680199,0.000268518,-0.251762,0.000490516,0,0.0666667,-0.3221051712650018.393329447,
1712650018.543458642,-2.14681,-1.24004,-0.0680199,0.00026901,-0.252224,0.00047376,0,0.0666667,-0.3221051712650018.543545251,
1712650018.693683486,-2.14681,-1.24004,-0.0680199,0.000269991,-0.253143,0.000448858,0,0.0666667,-0.3221051712650018.693767471,
1712650018.843912121,-2.14681,-1.24004,-0.0680199,0.00027048,-0.253602,0.000448338,0,0.0666667,-0.2842111712650018.844000188,
1712650018.994134049,-2.14681,-1.24004,-0.0680199,0.000271454,-0.254515,0.00044846,0,0.0666667,-0.2842111712650018.994219492,
1712650019.144352565,-2.14681,-1.24004,-0.0680199,0.000271939,-0.25497,0.000448679,0,0.0666667,-0.2842111712650019.144434509,
1712650019.294564673,-2.14681,-1.24004,-0.0680199,0.000272906,-0.255876,0.000495307,0,0.0666667,-0.2842111712650019.294666738,
1712650019.444804776,-2.14681,-1.24004,-0.0680199,0.000273387,-0.256328,0.000473128,0,0.0666667,-0.2842111712650019.444887595,
1712650019.595041380,-2.14681,-1.24004,-0.0680199,0.000274347,-0.257228,0.000453949,0,0.0666667,-0.2842111712650019.595124490,
1712650019.745257571,-2.14681,-1.24004,-0.0680199,0.000274825,-0.257676,0.00047574,0,0.0666667,-0.2842111712650019.745350304,
1712650019.895479011,-2.14681,-1.24004,-0.0680199,0.000275778,-0.258569,0.000448803,0,0.0666667,-0.2842111712650019.895563870,
1712650020.045749175,-2.14681,-1.24004,-0.0680199,0.000276726,-0.259458,0.000418479,0,0.0666667,-0.2842111712650020.045837242,
1712650020.195966918,-2.14681,-1.24004,-0.0680199,0.000277198,-0.259901,0.000446133,0,0.0666667,-0.2842111712650020.196078023,
1712650020.346207408,-2.14681,-1.24004,-0.0680199,0.000278139,-0.260783,0.000354167,0,0.0666667,-0.2842111712650020.346295767,
1712650020.496425151,-2.14681,-1.24004,-0.0680199,0.000278608,-0.261223,0.000374248,0,0.0666667,-0.2842111712650020.496517010,
1712650020.646651643,-2.14681,-1.24004,-0.0680199,0.000279076,-0.261661,0.000396016,0,0.0666667,-0.2842111712650020.646734753,
1712650020.796863846,-2.14681,-1.24004,-0.0680199,0.000280007,-0.262535,0.000378342,0,0.0666667,-0.2842111712650020.796955121,
1712650020.947090046,-2.14681,-1.24004,-0.0680199,0.000280934,-0.263404,0.000408464,0,0.0666667,-0.2842111712650020.947178989,
1712650021.097308433,-2.14681,-1.24004,-0.0680199,0.000281396,-0.263837,0.000460383,0,0.0666667,-0.2842111712650021.097398833,
1712650021.247527729,-2.14681,-1.24004,-0.0680199,0.000282316,-0.264699,0.000459459,0,0.0666667,-0.2842111712650021.247617837,
1712650021.397801556,-2.14681,-1.24004,-0.0680199,0.000282774,-0.265129,0.000461955,0,0.0666667,-0.2842111712650021.397886999,
1712650021.548018811,-2.14681,-1.24004,-0.0680199,0.000283687,-0.265985,0.000456465,0,0.0666667,-0.2842111712650021.548109211,
1712650021.698244522,-2.14681,-1.24004,-0.0680199,0.000284142,-0.266411,0.000350532,0,0.0666667,-0.2842111712650021.698333465,
1712650021.848473442,-2.14681,-1.24004,-0.0680199,0.000285048,-0.267261,0.000439192,0,0.0666667,-0.2842111712650021.848561801,
1712650021.998710526,-2.14681,-1.24004,-0.0680199,0.000285499,-0.267684,0.000424507,0,0.0666667,-0.2842111712650021.998805009,
1712650022.148936037,-2.14681,-1.24004,-0.0680199,0.000285949,-0.268106,0.000381845,0,0.0666667,-0.2842111712650022.149018564,
1712650022.299151928,-2.14681,-1.24004,-0.0680199,0.000286846,-0.268947,0.00033205,0,0.0666667,-0.2842111712650022.299234746,
1712650022.449371609,-2.14681,-1.24004,-0.0680199,0.000287293,-0.269366,0.000318832,0,0.0666667,-0.2842111712650022.449457635,
1712650022.599592166,-2.14681,-1.24004,-0.0680199,0.000288183,-0.2702,0.000388174,0,0.0666667,-0.2842111712650022.599678775,
1712650022.749808931,-2.14681,-1.24004,-0.0680199,0.000289068,-0.27103,0.000415709,0,0.0666667,-0.2842111712650022.749891166,
1712650022.900024530,-2.14681,-1.24004,-0.0680199,0.000289509,-0.271444,0.000482984,0,0.0666667,-0.2842111712650022.900107348,
1712650023.050238700,-2.14681,-1.24004,-0.0680199,0.000289949,-0.271856,0.00049082,0,0.0666667,-0.2842111712650023.050327351,
1712650023.200459642,-2.14681,-1.24004,-0.0680199,0.000290825,-0.272678,0.000430166,0,0.0666667,-0.2842111712650023.200546251,
1712650023.350681458,-2.14681,-1.24004,-0.0680199,0.000291697,-0.273495,0.000508655,0,0.0666667,-0.2842111712650023.350767776,
1712650023.500897151,-2.14681,-1.24004,-0.0680199,0.000292131,-0.273902,0.000545735,0,0.0666667,-0.2842111712650023.500985510,
1712650023.651168250,-2.14681,-1.24004,-0.0680199,0.000292996,-0.274713,0.000552631,0,0.0666667,-0.2842111712650023.651251652,
1712650023.801377527,-2.14681,-1.24004,-0.0680199,0.000293427,-0.275117,0.000697735,0,0.0666667,-0.2842111712650023.801460346,
1712650023.951597011,-2.14681,-1.24004,-0.0680199,0.000294285,-0.275922,0.000699751,0,0.0666667,-0.2842111712650023.951685953,
1712650024.101808682,-2.14681,-1.24004,-0.0680199,0.000294712,-0.276322,0.000729655,0,0.0666667,-0.2842111712650024.101846884,
1712650024.251935526,-2.14681,-1.24004,-0.0680199,0.000295564,-0.27712,0.000713918,0,0.0666667,-0.2842111712650024.251973144,
1712650024.402055370,-2.14681,-1.24004,-0.0680199,0.000295988,-0.277518,0.000707845,0,0.0666667,-0.2842111712650024.402100862,
1712650024.552185713,-2.14681,-1.24004,-0.0680199,0.000296411,-0.277915,0.00063214,0,0.0666667,-0.2842111712650024.552224789,
1712650024.702312265,-2.14681,-1.24004,-0.0680199,0.000297253,-0.278704,0.000635502,0,0.0666667,-0.2842111712650024.702350758,
1712650024.852438233,-2.14681,-1.24004,-0.0680199,0.000298091,-0.27949,0.000622344,0,0.0666667,-0.2842111712650024.852479351,
1712650025.002565077,-2.14681,-1.24004,-0.0680199,0.000298508,-0.279881,0.000601836,0,0.0666667,-0.2842111712650025.002605611,
1712650025.152699887,-2.14681,-1.24004,-0.0680199,0.00029934,-0.280661,0.000594835,0,0.0666667,-0.2842111712650025.152742171,
1712650025.302834988,-2.14681,-1.24004,-0.0680199,0.000299754,-0.281049,0.000606105,0,0.0666667,-0.3221051712650025.302872606,
1712650025.452960175,-2.14681,-1.24004,-0.0680199,0.000300166,-0.281436,0.000580545,0,0.0666667,-0.3221051712650025.453010915,
1712650025.603103441,-2.14681,-1.24004,-0.0680199,0.000300989,-0.282207,0.000544385,0,0.0666667,-0.3221051712650025.603141351,
1712650025.753228045,-2.14681,-1.24004,-0.0680199,0.000301807,-0.282974,0.000597542,0,0.0666667,-0.3221051712650025.753267704,
1712650025.903367812,-2.14681,-1.24004,-0.0680199,0.000302214,-0.283356,0.000542551,0,0.0666667,-0.3221051712650025.903450630,
1712650026.053584305,-2.14681,-1.24004,-0.0680199,0.000303026,-0.284117,0.00053232,0,0.0666667,-0.3221051712650026.053672956,
1712650026.203866181,-2.14681,-1.24004,-0.0680199,0.00030343,-0.284496,0.000516088,0,0.0666667,-0.3221051712650026.203951916,
1712650026.354134643,-2.14681,-1.24004,-0.0680199,0.000304235,-0.285251,0.000491474,0,0.0666667,-0.3221051712650026.354225335,
1712650026.504353822,-2.14681,-1.24004,-0.0680199,0.000304636,-0.285627,0.000543828,0,0.0666667,-0.3221051712650026.504390857,
1712650026.654479101,-2.14681,-1.24004,-0.0680199,0.000305036,-0.286001,0.000581778,0,0.0666667,-0.3221051712650026.654521677,
1712650026.804608171,-2.14681,-1.24004,-0.0680199,0.000305832,-0.286748,0.000636136,0,0.0666667,-0.3221051712650026.804646956,
1712650026.954731117,-2.14681,-1.24004,-0.0680199,0.000306624,-0.28749,0.000658923,0,0.0666667,-0.3221051712650026.954765236,
1712650027.104850626,-2.14681,-1.24004,-0.0680199,0.000307018,-0.28786,0.000721557,0,0.0666667,-0.3221051712650027.104889703,
1712650027.254975997,-2.14681,-1.24004,-0.0680199,0.000307804,-0.288597,0.000685725,0,0.0666667,-0.3221051712650027.255014199,
1712650027.405098744,-2.14681,-1.24004,-0.0680199,0.000308195,-0.288964,0.000675105,0,0.0666667,-0.3221051712650027.405137529,
1712650027.555225281,-2.14681,-1.24004,-0.0680199,0.000308974,-0.289694,0.000572315,0,0.0666667,-0.3221051712650027.555261150,
1712650027.705346570,-2.14681,-1.24004,-0.0680199,0.000309362,-0.290058,0.000523304,0,0.0666667,-0.3221051712650027.705381855,
1712650027.855468150,-2.14681,-1.24004,-0.0680199,0.000310135,-0.290782,0.000522364,0,0.0666667,-0.3221051712650027.855511601,
1712650028.005598772,-2.14681,-1.24004,-0.0680199,0.00031052,-0.291143,0.000521173,0,0.0666667,-0.3221051712650028.005643389,
1712650028.155733275,-2.14681,-1.24004,-0.0680199,0.000310903,-0.291503,0.000515363,0,0.0666667,-0.3221051712650028.155772935,
1712650028.305864570,-2.14681,-1.24004,-0.0680199,0.000311668,-0.29222,0.000552286,0,0.0666667,-0.3221051712650028.305912395,
1712650028.456013945,-2.14681,-1.24004,-0.0680199,0.000312428,-0.292932,0.000550537,0,0.0666667,-0.3221051712650028.456069061,
1712650028.606180526,-2.14681,-1.24004,-0.0680199,0.000312806,-0.293287,0.000544279,0,0.0666667,-0.3221051712650028.606256637,
1712650028.756352355,-2.14681,-1.24004,-0.0680199,0.00031356,-0.293994,0.000532592,0,0,11712650028.756443339,
1712650028.906635582,-2.14681,-1.24004,-0.0680199,0.00031356,-0.293994,0.000484469,0,0,11712650028.906731232,

View File

@ -1,166 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1712805704.485612191,4.78476,-4.59912,1.84639,-0.0316338,0.592477,0.0038213,0,0.177778,-0.36,0
1712805704.635969052,4.78476,-4.59912,1.84639,-0.031645,0.592687,0.00378168,0,0.177778,-0.36,0
1712805704.786246279,4.78476,-4.59912,1.84639,-0.0316506,0.592791,0.00379043,0,0.177778,-0.36,0
1712805704.936497838,4.78476,-4.59912,1.84639,-0.0316617,0.592999,0.00376956,0,0.177778,-0.36,0
1712805705.086754037,4.78476,-4.59912,1.84639,-0.0316672,0.593102,0.00379787,0,0.177778,-0.36,0
1712805705.237086932,4.78476,-4.59912,1.84639,-0.0316782,0.593308,0.00377723,0,0.177778,-0.36,0
1712805705.387409326,4.78476,-4.59912,1.84639,-0.0316836,0.593411,0.00382155,0,0.177778,-0.36,0
1712805705.537599873,4.78476,-4.59912,1.84639,-0.0316945,0.593615,0.00375469,0,0.177778,-0.36,0
1712805705.687976522,4.78476,-4.59912,1.84639,-0.0316999,0.593716,0.0037584,0,0.177778,-0.36,0
1712805705.838158902,4.78476,-4.59912,1.84639,-0.0317107,0.593918,0.00372506,0,0.177778,-0.36,0
1712805705.988452418,4.78476,-4.59912,1.84639,-0.0317161,0.594018,0.00375223,0,0.177778,-0.36,0
1712805706.138683468,4.78476,-4.59912,1.84639,-0.0317268,0.594218,0.00380225,0,0.177778,-0.36,0
1712805706.288926182,4.78476,-4.59912,1.84639,-0.0317321,0.594318,0.00380023,0,0.177778,-0.36,0
1712805706.439174731,4.78476,-4.59912,1.84639,-0.0317374,0.594417,0.00378743,0,0.177778,-0.36,0
1712805706.589400527,4.78476,-4.59912,1.84639,-0.0317479,0.594615,0.00376657,0,0.177778,-0.36,0
1712805706.739580818,4.78476,-4.59912,1.84639,-0.0317584,0.594811,0.00378893,0,0.177778,-0.36,0
1712805706.889828491,4.78476,-4.59912,1.84639,-0.0317636,0.594909,0.00369091,0,0.177778,-0.36,0
1712805707.040198665,4.78476,-4.59912,1.84639,-0.031774,0.595103,0.00370918,0,0.177778,-0.36,0
1712805707.190443959,4.78476,-4.59912,1.84639,-0.0317792,0.5952,0.00364317,0,0.177778,-0.36,0
1712805707.340768301,4.78476,-4.59912,1.84639,-0.0317894,0.595393,0.00363444,0,0.177778,-0.36,0
1712805707.491066100,4.78476,-4.59912,1.84639,-0.0317946,0.595488,0.00365162,0,0.177778,-0.36,0
1712805707.641359523,4.78476,-4.59912,1.84639,-0.0318048,0.595679,0.00360384,0,0.177778,-0.36,0
1712805707.791594898,4.78476,-4.59912,1.84639,-0.0318098,0.595774,0.00360011,0,0.177778,-0.36,0
1712805707.941852735,4.78476,-4.59912,1.84639,-0.0318199,0.595963,0.00357646,0,0.177778,-0.36,0
1712805708.092104419,4.78476,-4.59912,1.84639,-0.0318249,0.596057,0.00355452,0,0.177778,-0.36,0
1712805708.242335373,4.78476,-4.59912,1.84639,-0.0318349,0.596245,0.0035605,0,0.177778,-0.36,0
1712805708.392521115,4.78476,-4.59912,1.84639,-0.0318399,0.596338,0.0035797,0,0.177778,-0.36,0
1712805708.542775405,4.78476,-4.59912,1.84639,-0.0318498,0.596523,0.00359655,0,0.177778,-0.36,0
1712805708.693024152,4.78476,-4.59912,1.84639,-0.0318547,0.596615,0.00356917,0,0.177778,-0.36,0
1712805708.843272317,4.78476,-4.59912,1.84639,-0.0318646,0.596799,0.00360208,0,0.177778,-0.36,0
1712805708.993561318,4.78476,-4.59912,1.84639,-0.0318694,0.596891,0.00365154,0,0.177778,-0.36,0
1712805709.143834818,4.78476,-4.59912,1.84639,-0.0318791,0.597073,0.00365862,0,0.177778,-0.36,0
1712805709.294102189,4.78476,-4.59912,1.84639,-0.031884,0.597163,0.00380474,0,0.177778,-0.36,0
1712805709.444352058,4.78476,-4.59912,1.84639,-0.0318936,0.597343,0.00380493,0,0.177778,-0.36,0
1712805709.594611261,4.78476,-4.59912,1.84639,-0.0318984,0.597433,0.00388299,0,0.177778,-0.36,0
1712805709.744860547,4.78476,-4.59912,1.84639,-0.0319079,0.597612,0.00401461,0,0.177778,-0.36,0
1712805709.895131710,4.78476,-4.59912,1.84639,-0.0319127,0.597701,0.00404974,0,0.177778,-0.36,0
1712805710.045433197,4.78476,-4.59912,1.84639,-0.0319221,0.597878,0.00408914,0,0.177778,-0.36,0
1712805710.195674561,4.78476,-4.59912,1.84639,-0.0319268,0.597966,0.00408986,0,0.177778,-0.36,0
1712805710.345917093,4.78476,-4.59912,1.84639,-0.0319362,0.598141,0.00413241,0,0.177778,-0.36,0
1712805710.496172167,4.78476,-4.59912,1.84639,-0.0319408,0.598228,0.00424216,0,0.177778,-0.36,0
1712805710.646414699,4.78476,-4.59912,1.84639,-0.0319501,0.598402,0.00426972,0,0.177778,-0.36,0
1712805710.796656647,4.78476,-4.59912,1.84639,-0.0319547,0.598488,0.00434734,0,0.177778,-0.36,0
1712805710.946932140,4.78476,-4.59912,1.84639,-0.0319639,0.59866,0.00431528,0,0.2,-0.36,0
1712805711.097173477,4.78476,-4.59912,1.84639,-0.0319685,0.598746,0.00431076,0,0.2,-0.36,0
1712805711.247419173,4.78476,-4.59912,1.84639,-0.0319776,0.598916,0.00425824,0,0.2,-0.36,0
1712805711.397680036,4.78476,-4.59912,1.84639,-0.0319821,0.599001,0.00425239,0,0.2,-0.36,0
1712805711.547928649,4.78476,-4.59912,1.84639,-0.0319911,0.599169,0.00419546,0,0.2,-0.36,0
1712805711.698106671,4.78476,-4.59912,1.84639,-0.0319956,0.599253,0.00413045,0,0.2,-0.36,0
1712805711.848338657,4.78476,-4.59912,1.84639,-0.0320045,0.599421,0.00411787,0,0.2,-0.36,0
1712805711.998654359,4.78476,-4.59912,1.84639,-0.0320089,0.599504,0.00413717,0,0.2,-0.36,0
1712805712.148871717,4.78476,-4.59912,1.84639,-0.0320178,0.599669,0.00416719,0,0.2,-0.36,0
1712805712.299195251,4.78476,-4.59912,1.84639,-0.0320222,0.599752,0.00409018,0,0.2,-0.36,0
1712805712.449499532,4.78476,-4.59912,1.84639,-0.0320309,0.599916,0.00410574,0,0.2,-0.36,0
1712805712.600720320,4.78476,-4.59912,1.84639,-0.0320353,0.599997,0.00411205,0,0.2,-0.36,0
1712805712.751071564,4.78476,-4.59912,1.84639,-0.032044,0.60016,0.00408827,0,0.2,-0.36,0
1712805712.901410557,4.78476,-4.59912,1.84639,-0.0320483,0.600241,0.00409029,0,0.2,-0.36,0
1712805713.051680405,4.78476,-4.59912,1.84639,-0.0320569,0.600402,0.00403691,0,0.2,-0.36,0
1712805713.201904718,4.78476,-4.59912,1.84639,-0.0320612,0.600482,0.00406251,0,0.2,-0.36,0
1712805713.352155867,4.78476,-4.59912,1.84639,-0.0320697,0.600641,0.00405108,0,0.2,-0.36,0
1712805713.502403516,4.78476,-4.59912,1.84639,-0.0320739,0.60072,0.00406138,0,0.2,-0.36,0
1712805713.652710379,4.78476,-4.59912,1.84639,-0.0320823,0.600878,0.00409183,0,0.2,-0.36,0
1712805713.802955986,4.78476,-4.59912,1.84639,-0.0320865,0.600957,0.00409273,0,0.2,-0.36,0
1712805713.953192550,4.78476,-4.59912,1.84639,-0.0320949,0.601113,0.00410593,0,0.2,-0.36,0
1712805714.103501134,4.78476,-4.59912,1.84639,-0.032099,0.601191,0.00410325,0,0.2,-0.36,0
1712805714.253789868,4.78476,-4.59912,1.84639,-0.0321073,0.601346,0.00402028,0,0.2,-0.36,0
1712805714.404037765,4.78476,-4.59912,1.84639,-0.0321114,0.601423,0.00407366,0,0.2,-0.36,0
1712805714.554299955,4.78476,-4.59912,1.84639,-0.0321196,0.601577,0.0040792,0,0.2,-0.36,0
1712805714.704526849,4.78476,-4.59912,1.84639,-0.0321237,0.601653,0.00402183,0,0.2,-0.36,0
1712805714.854899300,4.78476,-4.59912,1.84639,-0.0321318,0.601805,0.00404076,0,0.2,-0.36,0
1712805715.005137862,4.78476,-4.59912,1.84639,-0.0321359,0.601881,0.00402385,0,0.2,-0.36,0
1712805715.155460097,4.78476,-4.59912,1.84639,-0.0321439,0.602031,0.00405091,0,0.2,-0.36,0
1712805715.305651945,4.78476,-4.59912,1.84639,-0.0321479,0.602106,0.00409217,0,0.2,-0.36,0
1712805715.455917300,4.78476,-4.59912,1.84639,-0.0321559,0.602256,0.00417234,0,0.2,-0.36,0
1712805715.606167779,4.78476,-4.59912,1.84639,-0.0321598,0.60233,0.00428277,0,0.2,-0.36,0
1712805715.758448161,4.78476,-4.59912,1.84639,-0.0321677,0.602478,0.00427061,0,0.2,-0.36,0
1712805715.908724892,4.78476,-4.59912,1.84639,-0.0321717,0.602551,0.00420857,0,0.2,-0.36,0
1712805716.058978563,4.78476,-4.59912,1.84639,-0.0321795,0.602698,0.00419497,0,0.2,-0.36,0
1712805716.209231916,4.78476,-4.59912,1.84639,-0.0321834,0.60277,0.00431709,0,0.2,-0.36,0
1712805716.359494311,4.78476,-4.59912,1.84639,-0.0321911,0.602916,0.0043439,0,0.2,-0.36,0
1712805716.509758456,4.78476,-4.59912,1.84639,-0.032195,0.602988,0.00432665,0,0.2,-0.36,0
1712805716.660001599,4.78476,-4.59912,1.84639,-0.0322026,0.603131,0.00428875,0,0.2,-0.36,0
1712805716.810248242,4.78476,-4.59912,1.84639,-0.0322065,0.603203,0.00430948,0,0.2,-0.36,0
1712805716.960503637,4.78476,-4.59912,1.84639,-0.0322141,0.603345,0.00432923,0,0.2,-0.36,0
1712805717.110755792,4.78476,-4.59912,1.84639,-0.0322178,0.603416,0.00432583,0,0.2,-0.36,0
1712805717.260996851,4.78476,-4.59912,1.84639,-0.0322254,0.603557,0.00435865,0,0.2,-0.36,0
1712805717.411257453,4.78476,-4.59912,1.84639,-0.0322291,0.603627,0.00436897,0,0.2,-0.36,0
1712805717.561550141,4.78476,-4.59912,1.84639,-0.0322366,0.603767,0.00432007,0,0.2,-0.36,0
1712805717.711751237,4.78476,-4.59912,1.84639,-0.0322403,0.603836,0.00428298,0,0.2,-0.36,0
1712805717.862001047,4.78476,-4.59912,1.84639,-0.0322477,0.603974,0.00437234,0,0.2,-0.36,0
1712805718.012322611,4.78476,-4.59912,1.84639,-0.0322513,0.604043,0.0043706,0,0.2,-0.36,0
1712805718.162579378,4.78476,-4.59912,1.84639,-0.0322586,0.60418,0.0043883,0,0.2,-0.36,0
1712805718.312825645,4.78476,-4.59912,1.84639,-0.0322623,0.604249,0.00445404,0,0.2,-0.36,0
1712805718.463088830,4.78476,-4.59912,1.84639,-0.0322695,0.604384,0.00452011,0,0.2,-0.36,0
1712805718.613335388,4.78476,-4.59912,1.84639,-0.0322731,0.604452,0.0045163,0,0.2,-0.36,0
1712805718.763588072,4.78476,-4.59912,1.84639,-0.0322803,0.604586,0.00451136,0,0.2,-0.36,0
1712805718.913827338,4.78476,-4.59912,1.84639,-0.0322839,0.604653,0.00452675,0,0.2,-0.36,0
1712805719.064087006,4.78476,-4.59912,1.84639,-0.032291,0.604786,0.00457593,0,0.2,-0.36,0
1712805719.214357733,4.78476,-4.59912,1.84639,-0.0322945,0.604853,0.00458182,0,0.2,-0.36,0
1712805719.364628751,4.78476,-4.59912,1.84639,-0.0323016,0.604985,0.00460789,0,0.2,-0.36,0
1712805719.514859808,4.78476,-4.59912,1.84639,-0.0323051,0.60505,0.0045888,0,0.2,-0.36,0
1712805719.665096115,4.78476,-4.59912,1.84639,-0.0323121,0.605181,0.00462265,0,0.2,-0.36,0
1712805719.815332713,4.78476,-4.59912,1.84639,-0.0323155,0.605246,0.00471025,0,0.2,-0.36,0
1712805719.965573396,4.78476,-4.59912,1.84639,-0.0323224,0.605375,0.00466721,0,0.2,-0.36,0
1712805720.115838258,4.78476,-4.59912,1.84639,-0.0323259,0.60544,0.00470638,0,0.2,-0.36,0
1712805720.266076565,4.78476,-4.59912,1.84639,-0.0323327,0.605568,0.00476077,0,0.2,-0.36,0
1712805720.416343458,4.78476,-4.59912,1.84639,-0.0323361,0.605632,0.00474549,0,0.2,-0.36,0
1712805720.566599558,4.78476,-4.59912,1.84639,-0.0323429,0.605759,0.0047666,0,0.2,-0.36,0
1712805720.716899996,4.78476,-4.59912,1.84639,-0.0323463,0.605822,0.00469509,0,0.2,-0.36,0
1712805720.867103008,4.78476,-4.59912,1.84639,-0.032353,0.605948,0.00471448,0,0.2,-0.36,0
1712805721.017321185,4.78476,-4.59912,1.84639,-0.0323564,0.60601,0.00470575,0,0.2,-0.36,0
1712805721.167766845,4.78476,-4.59912,1.84639,-0.032363,0.606135,0.00468425,0,0.2,-0.36,0
1712805721.318167001,4.78476,-4.59912,1.84639,-0.0323663,0.606197,0.00467556,0,0.2,-0.36,0
1712805721.468456897,4.78476,-4.59912,1.84639,-0.0323729,0.606321,0.00462881,0,0.2,-0.36,0
1712805721.618766044,4.78476,-4.59912,1.84639,-0.0323762,0.606382,0.00459044,0,0.2,-0.36,0
1712805721.768948888,4.78476,-4.59912,1.84639,-0.0323827,0.606504,0.0045629,0,0.2,-0.36,0
1712805721.919144858,4.78476,-4.59912,1.84639,-0.032386,0.606565,0.0045911,0,0.2,-0.36,0
1712805722.069384564,4.78476,-4.59912,1.84639,-0.0323924,0.606686,0.00456372,0,0.2,-0.36,0
1712805722.219589827,4.78476,-4.59912,1.84639,-0.0323957,0.606747,0.0046587,0,0.2,-0.36,0
1712805722.369788965,4.78476,-4.59912,1.84639,-0.0324021,0.606867,0.00463655,0,0.2,-0.36,0
1712805722.520048775,4.78476,-4.59912,1.84639,-0.0324053,0.606926,0.00464368,0,0.2,-0.36,0
1712805722.670285249,4.78476,-4.59912,1.84639,-0.0324116,0.607045,0.00460014,0,0.2,-0.36,0
1712805722.820515598,4.78476,-4.59912,1.84639,-0.0324179,0.607163,0.0046201,0,0.2,-0.36,0
1712805722.970753531,4.78476,-4.59912,1.84639,-0.032421,0.607222,0.00460747,0,0.2,-0.36,0
1712805723.121019726,4.78476,-4.59912,1.84639,-0.0324242,0.607281,0.00461483,0,0.2,-0.36,0
1712805723.271350669,4.78476,-4.59912,1.84639,-0.0324304,0.607397,0.00461302,0,0.2,-0.36,0
1712805723.421606646,4.78476,-4.59912,1.84639,-0.0324335,0.607455,0.00466529,0,0.2,-0.36,0
1712805723.571860290,4.78476,-4.59912,1.84639,-0.0324397,0.607571,0.00469372,0,0.2,-0.36,0
1712805723.722125309,4.78476,-4.59912,1.84639,-0.0324458,0.607686,0.00464039,0,0.2,-0.36,0
1712805723.872362326,4.78476,-4.59912,1.84639,-0.0324489,0.607743,0.00458799,0,0.2,-0.36,0
1712805724.022602839,4.78476,-4.59912,1.84639,-0.0324519,0.6078,0.00464696,0,0.2,-0.36,0
1712805724.172869276,4.78476,-4.59912,1.84639,-0.0324579,0.607913,0.00476227,0,0.2,-0.36,0
1712805724.323111503,4.78476,-4.59912,1.84639,-0.032461,0.60797,0.00478373,0,0.2,-0.36,0
1712805724.473352564,4.78476,-4.59912,1.84639,-0.032467,0.608082,0.00476265,0,0.2,-0.36,0
1712805724.623639712,4.78476,-4.59912,1.84639,-0.0324699,0.608138,0.00478363,0,0,1,0
1712805724.773871729,4.78476,-4.59912,1.84639,-0.0324759,0.608249,0.00486347,0,0,1,0
1712805724.924116874,4.78476,-4.59912,1.84639,-0.0324818,0.608359,0.00494273,0,0,1,0
1712805725.074377459,4.78476,-4.59912,1.84639,-0.0324847,0.608414,0.00419359,0,0,1,0
1712805725.224635689,4.78476,-4.59912,1.84639,-0.0324906,0.608524,0.00465793,0,0,1,0
1712805725.374879626,4.78476,-4.59912,1.84639,-0.0324935,0.608578,0.00485792,0,0,1,0
1712805725.525135231,4.78476,-4.59912,1.84639,-0.0324964,0.608633,0.00478399,0,0,1,0
1712805725.675373917,4.78476,-4.59912,1.84639,-0.0325021,0.608741,0.00482811,0,0,1,0
1712805725.825620771,4.78476,-4.59912,1.84639,-0.0325079,0.608848,0.00492557,0,0,1,0
1712805725.975876668,4.78476,-4.59912,1.84639,-0.0325107,0.608902,0.00490433,0,0,1,0
1712805726.126118239,4.78476,-4.59912,1.84639,-0.0325136,0.608955,0.00502085,0,0,1,0
1712805726.276409683,4.78476,-4.59912,1.84639,-0.0325192,0.609061,0.00501804,0,0,1,0
1712805726.426651538,4.78476,-4.59912,1.84639,-0.0325221,0.609114,0.00506273,0,0,1,0
1712805726.576907395,4.78476,-4.59912,1.84639,-0.0325277,0.609219,0.00504736,0,0,1,0
1712805726.727218090,4.78476,-4.59912,1.84639,-0.0325333,0.609324,0.00523898,0,0,1,0
1712805726.877454987,4.78476,-4.59912,1.84639,-0.032536,0.609375,0.00526759,0,0,1,0
1712805727.036192708,4.78476,-4.59912,1.84639,-0.0325388,0.609427,0.0053156,0,0,1,0
1712805727.186421981,4.78476,-4.59912,1.84639,-0.0325443,0.60953,0.00536043,0,0,1,0
1712805727.336736720,4.78476,-4.59912,1.84639,-0.0325498,0.609633,0.00539112,0,0,1,0
1712805727.486926614,4.78476,-4.59912,1.84639,-0.0325525,0.609684,0.00546745,0,0,1,0
1712805727.637187390,4.78476,-4.59912,1.84639,-0.0325579,0.609785,0.00546009,0,0,1,0
1712805727.787503880,4.78476,-4.59912,1.84639,-0.0325606,0.609836,0.00537387,0,0,1,0
1712805727.937729069,4.78476,-4.59912,1.84639,-0.032566,0.609936,0.00534059,0,0,1,0
1712805728.088167465,4.78476,-4.59912,1.84639,-0.0325686,0.609986,0.00531141,0,0,1,0
1712805728.238478081,4.78476,-4.59912,1.84639,-0.032574,0.610086,0.00520803,0,0,1,0
1712805728.388717233,4.78476,-4.59912,1.84639,-0.0325766,0.610136,0.00524163,0,0,1,0
1712805728.539028433,4.78476,-4.59912,1.84639,-0.0325819,0.610234,0.00528393,0,0,1,0
1712805728.689230831,4.78476,-4.59912,1.84639,-0.0325845,0.610283,0.00524671,0,0,1,0
1712805728.839596286,4.78476,-4.59912,1.84639,-0.0325897,0.610381,0.00526285,0,0,1,0
1712805728.989911569,4.78476,-4.59912,1.84639,-0.0325923,0.61043,0.00527587,0,0,1,0
1712805729.140088555,4.78476,-4.59912,1.84639,-0.0325949,0.610478,0.00528042,0,0,1,0

View File

@ -1 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez

View File

@ -1,629 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1712829060.162163947,-2.14681,-1.24004,-0.0680199,1.64548,1.13302,-0.135341,0,0.0666667,-0.284211,0
1712829060.312334258,-2.14681,-1.24004,-0.0680199,1.64548,1.13313,-0.142534,0,0.0666667,-0.36,0
1712829060.462477443,-2.14681,-1.24004,-0.0680199,1.65527,1.13163,-0.157202,0,0.0666667,-0.36,0
1712829060.612659420,-2.14681,-1.24004,-0.0680199,1.6552,1.13164,-0.171837,0,0.0666667,-0.36,0
1712829060.762794438,-2.14681,-1.24004,-0.0680199,1.6651,1.13021,-0.205719,0,0.0666667,-0.322105,0
1712829060.912919248,-2.14681,-1.24004,-0.0680199,1.67008,1.12961,-0.241236,0,0.0666667,-0.36,0
1712829061.063056017,-2.14681,-1.24004,-0.0680199,1.67479,1.12892,-0.271849,0,0.0666667,-0.36,0
1712829061.213195701,-2.14681,-1.24004,-0.0680199,1.68378,1.12215,-0.322571,0,0.0666667,-0.322105,0
1712829061.363342677,-2.14681,-1.24004,-0.0680199,1.69303,1.1165,-0.348078,0,0.0666667,-0.322105,0
1712829061.513484403,-2.14681,-1.24004,-0.0680199,1.7029,1.11526,-0.385198,0,0.0666667,-0.36,0
1712829061.663613880,-2.14681,-1.24004,-0.0680199,1.71279,1.1141,-0.443259,0,0.0666667,-0.36,0
1712829061.813742772,-2.14681,-1.24004,-0.0680199,1.72269,1.11287,-0.476472,0,0.0666667,-0.36,0
1712829061.963885957,-2.14681,-1.24004,-0.0680199,1.73139,1.10186,-0.525003,0,0.0666667,-0.36,0
1712829062.114034391,-2.14681,-1.24004,-0.0680199,1.73138,1.10206,-0.559208,0,0.0666667,-0.36,0
1712829062.264171450,-2.14681,-1.24004,-0.0680199,1.74124,1.10088,-0.599884,0,0.0666667,-0.322105,0
1712829062.414308217,-2.14681,-1.24004,-0.0680199,1.74965,1.0899,-0.650689,0,0.0666667,-0.36,0
1712829062.564447609,-2.14681,-1.24004,-0.0680199,1.75956,1.08884,-0.685948,0,0.0666667,-0.36,0
1712829062.714582043,-2.14681,-1.24004,-0.0680199,1.75835,1.07901,-0.723951,0,0.0666667,-0.322105,0
1712829062.864717060,-2.14681,-1.24004,-0.0680199,1.76706,1.0682,-0.795256,0,0.0666667,-0.322105,0
1712829063.014857911,-2.14681,-1.24004,-0.0680199,1.7769,1.06738,-0.832354,0,0.0666667,-0.36,0
1712829063.165048928,-2.14681,-1.24004,-0.0680199,1.77592,1.05761,-0.873507,0,0.0666667,-0.36,0
1712829063.315283987,-2.14681,-1.24004,-0.0680199,1.78575,1.05662,-0.930432,0,0.0666667,-0.36,0
1712829063.465517005,-2.14681,-1.24004,-0.0680199,1.78483,1.04675,-0.959404,0,0.0666667,-0.36,0
1712829063.615746523,-2.14681,-1.24004,-0.0680199,1.79368,1.03585,-1.02053,0,0.0666667,-0.36,0
1712829063.765977791,-2.14681,-1.24004,-0.0680199,1.80357,1.03509,-1.06996,0,0.0666667,-0.36,0
1712829063.916207017,-2.14681,-1.24004,-0.0680199,1.80284,1.02518,-1.11194,0,0.0666667,-0.36,0
1712829064.066355158,-2.14681,-1.24004,-0.0680199,1.81194,1.01436,-1.16366,0,0.0666667,-0.36,0
1712829064.216498633,-2.14681,-1.24004,-0.0680199,1.81177,1.01442,-1.19237,0,0.0666667,-0.36,0
1712829064.366715025,-2.14681,-1.24004,-0.0680199,1.81105,1.00455,-1.25038,0,0.111111,-0.36,0
1712829064.516985667,-2.14681,-1.24004,-0.0680199,1.81033,0.994595,-1.30348,0,0.0666667,-0.36,0
1712829064.667223060,-2.14681,-1.24004,-0.0680199,1.81975,0.984076,-1.35448,0,0.0666667,-0.36,0
1712829064.817461619,-2.14681,-1.24004,-0.0680199,1.81919,0.974421,-1.39283,0,0.0888889,-0.36,0
1712829064.967701344,-2.14681,-1.24004,-0.0680199,1.8186,0.964488,-1.4346,0,0.0666667,-0.36,0
1712829065.117850652,-2.14681,-1.24004,-0.0680199,1.81804,0.954645,-1.49836,0,0.177778,-0.36,0
1712829065.267996167,-2.14681,-1.24004,-0.0680199,1.82744,0.944164,-1.54266,0,0.155556,-0.36,0
1712829065.418128557,-2.14681,-1.24004,-0.0680199,1.82643,0.924456,-1.60147,0,0.155556,-0.36,0
1712829065.568251031,-2.14681,-1.24004,-0.0680199,1.8254,0.904565,-1.65174,0,0.177778,-0.36,0
1712829065.718376129,-2.14681,-1.24004,-0.0680199,1.82495,0.894844,-1.68557,0,0.2,-0.36,0
1712829065.868508520,-2.14681,-1.24004,-0.0680199,1.81367,0.865445,-1.74935,0,0.2,-0.36,0
1712829066.018643827,-2.14681,-1.24004,-0.0680199,1.81297,0.845759,-1.80948,0,0.177778,-0.36,0
1712829066.168797800,-2.14681,-1.24004,-0.0680199,1.80199,0.818928,-1.85458,0,0.2,-0.36,0
1712829066.318949732,-2.14681,-1.24004,-0.0680199,1.80152,0.8006,-1.89618,0,0.2,-0.36,0
1712829066.469188581,-2.14681,-1.24004,-0.0680199,1.79079,0.776585,-1.94496,0,0.2,-0.36,0
1712829066.619449597,-2.14681,-1.24004,-0.0680199,1.78057,0.757089,-1.98554,0,0.177778,-0.36,0
1712829066.769674155,-2.14681,-1.24004,-0.0680199,1.77006,0.727313,-2.03066,0,0.2,-0.36,0
1712829066.919950338,-2.14681,-1.24004,-0.0680199,1.75001,0.697695,-2.09075,0,0.2,-0.36,0
1712829067.070192687,-2.14681,-1.24004,-0.0680199,1.74012,0.677837,-2.13203,0,0.2,-0.36,0
1712829067.220489870,-2.14681,-1.24004,-0.0680199,1.73037,0.65817,-2.16617,0,0.2,-0.36,0
1712829067.370728135,-2.14681,-1.24004,-0.0680199,1.7105,0.638257,-2.21714,0,0.2,-0.36,0
1712829067.520867816,-2.14681,-1.24004,-0.0680199,1.69114,0.608271,-2.26401,0,0.2,-0.322105,0
1712829067.671003414,-2.14681,-1.24004,-0.0680199,1.67316,0.589875,-2.30832,0,0.2,-0.322105,0
1712829067.821105177,-2.14681,-1.24004,-0.0680199,1.66196,0.57811,-2.34423,0,0.2,-0.246316,0
1712829067.971234358,-2.14681,-1.24004,-0.0680199,1.64231,0.557822,-2.39227,0,0.2,-0.208421,0
1712829068.121354205,-2.14681,-1.24004,-0.0680199,1.61309,0.531281,-2.44465,0,0.2,-0.170526,0
1712829068.271497677,-2.14681,-1.24004,-0.0680199,1.60342,0.516873,-2.47009,0,0.2,-0.246316,0
1712829068.421636482,-2.14681,-1.24004,-0.0680199,1.58404,0.506258,-2.49411,0,0.2,-0.170526,0
1712829068.571774121,-2.14681,-1.24004,-0.0680199,1.55468,0.485354,-2.5337,0,0.2,-0.170526,0
1712829068.721905926,-2.14681,-1.24004,-0.0680199,1.52964,0.464588,-2.56091,0,0.2,-0.132632,0
1712829068.872037439,-2.14681,-1.24004,-0.0680199,1.50606,0.453781,-2.58471,0,0.2,0,0
1712829069.022168953,-2.14681,-1.24004,-0.0680199,1.48675,0.442798,-2.60337,0,0.2,-0.0189474,0
1712829069.173056767,-2.14681,-1.24004,-0.0680199,1.4575,0.421638,-2.6233,0,0.2,-0.0189474,0
1712829069.323213364,-2.14681,-1.24004,-0.0680199,1.43802,0.410682,-2.6309,0,0.2,-0.0189474,0
1712829069.473350710,-2.14681,-1.24004,-0.0680199,1.4185,0.399741,-2.63825,0,0.2,0.0189474,0
1712829069.623480764,-2.14681,-1.24004,-0.0680199,1.38909,0.38851,-2.64595,0,0.2,0,0
1712829069.773663611,-2.14681,-1.24004,-0.0680199,1.36299,0.367475,-2.64985,0,0.2,0,0
1712829069.923815833,-2.14681,-1.24004,-0.0680199,1.34034,0.356512,-2.65172,0,0.2,0,0
1712829070.073967762,-2.14681,-1.24004,-0.0680199,1.31094,0.345119,-2.65549,0,0.2,0.0189474,0
1712829070.224108900,-2.14681,-1.24004,-0.0680199,1.29171,0.334149,-2.6562,0,0.2,0,0
1712829070.374237204,-2.14681,-1.24004,-0.0680199,1.27223,0.323328,-2.65795,0,0.2,0,0
1712829070.524367257,-2.14681,-1.24004,-0.0680199,1.23635,0.301896,-2.65938,0,0.2,-0.0189474,0
1712829070.674514520,-2.14681,-1.24004,-0.0680199,1.2138,0.290725,-2.65921,0,0.2,0.0189474,0
1712829070.824720408,-2.14681,-1.24004,-0.0680199,1.19474,0.279603,-2.6597,0,0.2,-0.0568421,0
1712829070.974884588,-2.14681,-1.24004,-0.0680199,1.17524,0.268628,-2.66062,0,0.2,-0.0568421,0
1712829071.125155226,-2.14681,-1.24004,-0.0680199,1.14065,0.251164,-2.66262,0,0.2,-0.0189474,0
1712829071.275443656,-2.14681,-1.24004,-0.0680199,1.12658,0.245989,-2.66674,0,0.2,-0.0189474,0
1712829071.425673461,-2.14681,-1.24004,-0.0680199,1.09745,0.224604,-2.67503,0,0.2,0.0189474,0
1712829071.575897141,-2.14681,-1.24004,-0.0680199,1.06797,0.21337,-2.6786,0,0.2,0.0189474,0
1712829071.726129862,-2.14681,-1.24004,-0.0680199,1.04878,0.202262,-2.67871,0,0.2,-0.0189474,0
1712829071.876370167,-2.14681,-1.24004,-0.0680199,1.01944,0.191047,-2.67585,0,0.2,-0.0189474,0
1712829072.026638180,-2.14681,-1.24004,-0.0680199,0.990581,0.173525,-2.67469,0,0.2,0,0
1712829072.176872067,-2.14681,-1.24004,-0.0680199,0.971279,0.158503,-2.67484,0,0.2,0,0
1712829072.327101871,-2.14681,-1.24004,-0.0680199,0.952148,0.147254,-2.67637,0,0.2,0.0189474,0
1712829072.477282092,-2.14681,-1.24004,-0.0680199,0.922923,0.136169,-2.67792,0,0.2,-0.0189474,0
1712829072.627415644,-2.14681,-1.24004,-0.0680199,0.903782,0.125022,-2.67711,0,0.2,0,0
1712829072.777556781,-2.14681,-1.24004,-0.0680199,0.874431,0.113749,-2.67659,0,0.2,0,0
1712829072.927695292,-2.14681,-1.24004,-0.0680199,0.845191,0.102224,-2.67605,0,0.2,-0.0189474,0
1712829073.077849261,-2.14681,-1.24004,-0.0680199,0.825771,0.091186,-2.67576,0,0.2,-0.0189474,0
1712829073.227983980,-2.14681,-1.24004,-0.0680199,0.796556,0.0795152,-2.67595,0,0.2,-0.0189474,0
1712829073.378128616,-2.14681,-1.24004,-0.0680199,0.777513,0.0584821,-2.67712,0,0.2,-0.0568421,0
1712829073.528260710,-2.14681,-1.24004,-0.0680199,0.748622,0.0467534,-2.67964,0,0.2,-0.0189474,0
1712829073.678391928,-2.14681,-1.24004,-0.0680199,0.719358,0.0353033,-2.684,0,0.2,-0.0189474,0
1712829073.828520522,-2.14681,-1.24004,-0.0680199,0.700462,0.0240363,-2.68435,0,0.2,0.0189474,0
1712829073.978928245,-2.14681,-1.24004,-0.0680199,0.681129,0.0130763,-2.68239,0,0.2,0,0
1712829074.129086588,-2.14681,-1.24004,-0.0680199,0.652186,0.00119276,-2.68085,0,0.2,-0.0189474,0
1712829074.279225390,-2.14681,-1.24004,-0.0680199,0.623342,-0.0202651,-2.68011,0,0.2,-0.0189474,0
1712829074.429360983,-2.14681,-1.24004,-0.0680199,0.604534,-0.0316361,-2.67951,0,0.2,0,0
1712829074.579493951,-2.14681,-1.24004,-0.0680199,0.575268,-0.0432593,-2.68034,0,0.2,0,0
1712829074.729634795,-2.14681,-1.24004,-0.0680199,0.550503,-0.0553543,-2.68015,0,0.2,-0.0189474,0
1712829074.879760471,-2.14681,-1.24004,-0.0680199,0.527257,-0.0670216,-2.6796,0,0.2,-0.0189474,0
1712829075.029891981,-2.14681,-1.24004,-0.0680199,0.498241,-0.0793862,-2.67971,0,0.2,0,0
1712829075.180019699,-2.14681,-1.24004,-0.0680199,0.479137,-0.0907408,-2.67865,0,0.2,0,0
1712829075.330162000,-2.14681,-1.24004,-0.0680199,0.460297,-0.102655,-2.67866,0,0.2,-0.0189474,0
1712829075.480313343,-2.14681,-1.24004,-0.0680199,0.431613,-0.121482,-2.6788,0,0.2,-0.0189474,0
1712829075.630447477,-2.14681,-1.24004,-0.0680199,0.402848,-0.137068,-2.6799,0,0.2,-0.0189474,0
1712829075.780588903,-2.14681,-1.24004,-0.0680199,0.383717,-0.148487,-2.67862,0,0.2,0,0
1712829075.930715163,-2.14681,-1.24004,-0.0680199,0.354934,-0.160875,-2.68083,0,0.2,-0.0189474,0
1712829076.080843463,-2.14681,-1.24004,-0.0680199,0.335731,-0.172308,-2.68261,0,0.2,-0.0189474,0
1712829076.230973805,-2.14681,-1.24004,-0.0680199,0.306798,-0.184675,-2.6819,0,0.2,-0.0189474,0
1712829076.381114647,-2.14681,-1.24004,-0.0680199,0.287479,-0.196214,-2.68196,0,0.2,-0.0189474,0
1712829076.531291948,-2.14681,-1.24004,-0.0680199,0.258938,-0.208441,-2.68143,0,0.2,-0.0189474,0
1712829076.681430166,-2.14681,-1.24004,-0.0680199,0.239901,-0.220116,-2.68073,0,0.2,-0.0189474,0
1712829076.831566924,-2.14681,-1.24004,-0.0680199,0.211091,-0.232985,-2.68026,0,0.2,-0.0568421,0
1712829076.981699017,-2.14681,-1.24004,-0.0680199,0.182692,-0.253042,-2.67961,0,0.2,-0.0189474,0
1712829077.131827900,-2.14681,-1.24004,-0.0680199,0.163535,-0.257347,-2.67854,0,0.2,-0.0189474,0
1712829077.281959991,-2.14681,-1.24004,-0.0680199,0.144429,-0.269197,-2.67766,0,0.2,-0.0189474,0
1712829077.432111916,-2.14681,-1.24004,-0.0680199,0.106937,-0.292507,-2.67749,0,0.2,-0.0568421,0
1712829077.582263841,-2.14681,-1.24004,-0.0680199,0.0880615,-0.304309,-2.6788,0,0.2,-0.0189474,0
1712829077.732485476,-2.14681,-1.24004,-0.0680199,0.0692937,-0.316941,-2.67955,0,0.177778,-0.0189474,0
1712829077.882613776,-2.14681,-1.24004,-0.0680199,0.0404613,-0.329544,-2.68298,0,0.2,-0.0189474,0
1712829078.032747617,-2.14681,-1.24004,-0.0680199,0.0122999,-0.342536,-2.68409,0,0.2,-0.0568421,0
1712829078.182880875,-2.14681,-1.24004,-0.0680199,-0.00625448,-0.354359,-2.68148,0,0.2,-0.0189474,0
1712829078.333018799,-2.14681,-1.24004,-0.0680199,-0.034356,-0.367635,-2.68463,0,0.2,-0.0189474,0
1712829078.483170140,-2.14681,-1.24004,-0.0680199,-0.0629101,-0.380521,-2.68807,0,0.2,-0.0189474,0
1712829078.633304273,-2.14681,-1.24004,-0.0680199,-0.0812482,-0.393345,-2.68679,0,0.2,-0.0568421,0
1712829078.783451239,-2.14681,-1.24004,-0.0680199,-0.109924,-0.40633,-2.68803,0,0.2,0,0
1712829078.933685706,-2.14681,-1.24004,-0.0680199,-0.128304,-0.419243,-2.69065,0,0.2,-0.0947368,0
1712829079.083937090,-2.14681,-1.24004,-0.0680199,-0.146757,-0.431475,-2.69396,0,0.2,-0.0189474,0
1712829079.234266058,-2.14681,-1.24004,-0.0680199,-0.184831,-0.445823,-2.70326,0,0.2,-0.0568421,0
1712829079.386462008,-2.14681,-1.24004,-0.0680199,-0.203516,-0.458167,-2.70473,0,0.2,-0.0568421,0
1712829079.536782517,-2.14681,-1.24004,-0.0680199,-0.221635,-0.471093,-2.70603,0,0.2,-0.0568421,0
1712829079.687018442,-2.14681,-1.24004,-0.0680199,-0.250058,-0.484219,-2.71137,0,0.2,-0.0189474,0
1712829079.837161325,-2.14681,-1.24004,-0.0680199,-0.277985,-0.49798,-2.71582,0,0.177778,-0.0189474,0
1712829079.987289623,-2.14681,-1.24004,-0.0680199,-0.306679,-0.511375,-2.72284,0,0.2,-0.0189474,0
1712829080.137419963,-2.14681,-1.24004,-0.0680199,-0.335524,-0.515181,-2.7238,0,0.2,-0.0568421,0
1712829080.287548844,-2.14681,-1.24004,-0.0680199,-0.344391,-0.52674,-2.72468,0,0.2,-0.0568421,0
1712829080.437681518,-2.14681,-1.24004,-0.0680199,-0.38238,-0.541785,-2.72856,0,0.2,-0.0189474,0
1712829080.587827607,-2.14681,-1.24004,-0.0680199,-0.411001,-0.555167,-2.73473,0,0.2,-0.0189474,0
1712829080.737969322,-2.14681,-1.24004,-0.0680199,-0.429081,-0.568288,-2.73936,0,0.2,-0.0189474,0
1712829080.888099370,-2.14681,-1.24004,-0.0680199,-0.45718,-0.582289,-2.74336,0,0.2,-0.0568421,0
1712829081.038238752,-2.14681,-1.24004,-0.0680199,-0.482685,-0.592148,-2.74508,0,0.2,-0.0568421,0
1712829081.188359466,-2.14681,-1.24004,-0.0680199,-0.495249,-0.597492,-2.74802,0,0.2,-0.0568421,0
1712829081.338505847,-2.14681,-1.24004,-0.0680199,-0.533399,-0.612797,-2.75346,0,0.2,-0.0947368,0
1712829081.488639978,-2.14681,-1.24004,-0.0680199,-0.551797,-0.625375,-2.75765,0,0.2,-0.0189474,0
1712829081.638773234,-2.14681,-1.24004,-0.0680199,-0.56963,-0.638656,-2.7624,0,0.2,-0.0189474,0
1712829081.788906198,-2.14681,-1.24004,-0.0680199,-0.599137,-0.642367,-2.76577,0,0.2,-0.0568421,0
1712829081.939043246,-2.14681,-1.24004,-0.0680199,-0.627113,-0.656875,-2.76717,0,0.2,-0.0189474,0
1712829082.089177085,-2.14681,-1.24004,-0.0680199,-0.655543,-0.670751,-2.76992,0,0.2,-0.0189474,0
1712829082.239319090,-2.14681,-1.24004,-0.0680199,-0.673419,-0.684286,-2.7707,0,0.2,-0.0189474,0
1712829082.389466637,-2.14681,-1.24004,-0.0680199,-0.702635,-0.687981,-2.77401,0,0.2,0,0
1712829082.539614768,-2.14681,-1.24004,-0.0680199,-0.735254,-0.703119,-2.77476,0,0.2,0,0
1712829082.689869358,-2.14681,-1.24004,-0.0680199,-0.758442,-0.716464,-2.77608,0,0.2,0,0
1712829082.840094489,-2.14681,-1.24004,-0.0680199,-0.786282,-0.731331,-2.77418,0,0.2,-0.0189474,0
1712829082.990347330,-2.14681,-1.24004,-0.0680199,-0.815527,-0.735382,-2.77131,0,0.2,-0.0189474,0
1712829083.140576252,-2.14681,-1.24004,-0.0680199,-0.833416,-0.749084,-2.77038,0,0.2,0,0
1712829083.290744799,-2.14681,-1.24004,-0.0680199,-0.861679,-0.763144,-2.77438,0,0.2,0,0
1712829083.440998222,-2.14681,-1.24004,-0.0680199,-0.886268,-0.767764,-2.77506,0,0.2,-0.0189474,0
1712829083.591272645,-2.14681,-1.24004,-0.0680199,-0.908793,-0.781071,-2.77679,0,0.2,-0.0189474,0
1712829083.741501276,-2.14681,-1.24004,-0.0680199,-0.926115,-0.794505,-2.77978,0,0.2,0.0189474,0
1712829083.891801366,-2.14681,-1.24004,-0.0680199,-0.95528,-0.798552,-2.78181,0,0.2,-0.0568421,0
1712829084.042062956,-2.14681,-1.24004,-0.0680199,-0.982604,-0.813061,-2.78463,0,0.2,-0.0189474,0
1712829084.192304420,-2.14681,-1.24004,-0.0680199,-1.01069,-0.826907,-2.78864,0,0.2,-0.0189474,0
1712829084.342537134,-2.14681,-1.24004,-0.0680199,-1.03473,-0.837239,-2.79149,0,0.2,-0.0189474,0
1712829084.492771598,-2.14681,-1.24004,-0.0680199,-1.05752,-0.844624,-2.79309,0,0.2,-0.0189474,0
1712829084.643002561,-2.14681,-1.24004,-0.0680199,-1.09197,-0.860087,-2.79419,0,0.2,0.0189474,0
1712829084.793292443,-2.14681,-1.24004,-0.0680199,-1.11312,-0.873284,-2.79776,0,0.2,0,0
1712829084.943541198,-2.14681,-1.24004,-0.0680199,-1.14145,-0.877828,-2.79871,0,0.2,-0.0189474,0
1712829085.093775953,-2.14681,-1.24004,-0.0680199,-1.1696,-0.891639,-2.79866,0,0.2,-0.0189474,0
1712829085.244006333,-2.14681,-1.24004,-0.0680199,-1.18828,-0.895577,-2.80019,0,0.2,0.0189474,0
1712829085.394162337,-2.14681,-1.24004,-0.0680199,-1.20627,-0.908384,-2.8011,0,0.2,0.0568421,0
1712829085.544301133,-2.14681,-1.24004,-0.0680199,-1.24356,-0.924049,-2.80157,0,0.2,0,0
1712829085.694439345,-2.14681,-1.24004,-0.0680199,-1.26273,-0.927035,-2.79976,0,0.2,-0.0189474,0
1712829085.844579015,-2.14681,-1.24004,-0.0680199,-1.29027,-0.941977,-2.79672,0,0.2,-0.0189474,0
1712829085.994758936,-2.14681,-1.24004,-0.0680199,-1.31823,-0.955668,-2.79504,0,0.2,-0.0189474,0
1712829086.144901814,-2.14681,-1.24004,-0.0680199,-1.34618,-0.960138,-2.79575,0,0.2,-0.0568421,0
1712829086.296565753,-2.14681,-1.24004,-0.0680199,-1.36424,-0.973187,-2.79559,0,0.2,-0.0568421,0
1712829086.446715340,-2.14681,-1.24004,-0.0680199,-1.39154,-0.988442,-2.7994,0,0.2,-0.0189474,0
1712829086.596866093,-2.14681,-1.24004,-0.0680199,-1.41068,-0.991542,-2.80032,0,0.2,-0.0189474,0
1712829086.747001388,-2.14681,-1.24004,-0.0680199,-1.43796,-1.0068,-2.80419,0,0.2,-0.0189474,0
1712829086.897189475,-2.14681,-1.24004,-0.0680199,-1.46695,-1.01123,-2.80609,0,0.2,-0.0189474,0
1712829087.047444355,-2.14681,-1.24004,-0.0680199,-1.49392,-1.0263,-2.80783,0,0.2,-0.0568421,0
1712829087.197721984,-2.14681,-1.24004,-0.0680199,-1.51181,-1.03924,-2.80932,0,0.177778,-0.0568421,0
1712829087.347978321,-2.14681,-1.24004,-0.0680199,-1.54984,-1.04558,-2.81612,0,0.2,-0.0568421,0
1712829087.498245451,-2.14681,-1.24004,-0.0680199,-1.56756,-1.05858,-2.81989,0,0.2,-0.0568421,0
1712829087.648485746,-2.14681,-1.24004,-0.0680199,-1.60469,-1.07513,-2.82604,0,0.2,-0.0568421,0
1712829087.798723708,-2.14681,-1.24004,-0.0680199,-1.62257,-1.07911,-2.83076,0,0.177778,-0.0568421,0
1712829087.948967795,-2.14681,-1.24004,-0.0680199,-1.64738,-1.08301,-2.83642,0,0.2,-0.0947368,0
1712829088.099206049,-2.14681,-1.24004,-0.0680199,-1.66884,-1.09796,-2.84241,0,0.2,-0.0947368,0
1712829088.249435552,-2.14681,-1.24004,-0.0680199,-1.6881,-1.10147,-2.84792,0,0.2,-0.0568421,0
1712829088.399669139,-2.14681,-1.24004,-0.0680199,-1.71489,-1.11686,-2.85561,0,0.2,-0.0568421,0
1712829088.549905934,-2.14681,-1.24004,-0.0680199,-1.74367,-1.12123,-2.86765,0,0.2,-0.0947368,0
1712829088.700159937,-2.14681,-1.24004,-0.0680199,-1.7717,-1.13583,-2.87637,0,0.177778,-0.0568421,0
1712829088.850298439,-2.14681,-1.24004,-0.0680199,-1.7897,-1.13977,-2.8852,0,0.177778,-0.0568421,0
1712829089.000437233,-2.14681,-1.24004,-0.0680199,-1.81836,-1.14412,-2.8945,0,0.155556,-0.0947368,0
1712829089.150572526,-2.14681,-1.24004,-0.0680199,-1.84101,-1.15874,-2.90275,0,0.155556,0,0
1712829089.300700819,-2.14681,-1.24004,-0.0680199,-1.86437,-1.16242,-2.91103,0,0.155556,0,0
1712829089.450836404,-2.14681,-1.24004,-0.0680199,-1.8823,-1.16647,-2.91388,0,0.133333,-0.0568421,0
1712829089.600971697,-2.14681,-1.24004,-0.0680199,-1.90118,-1.16966,-2.91561,0,0.133333,0,0
1712829089.751114282,-2.14681,-1.24004,-0.0680199,-1.91824,-1.18389,-2.91849,0,0.111111,-0.0568421,0
1712829089.901260075,-2.14681,-1.24004,-0.0680199,-1.93706,-1.18691,-2.92189,0,0.111111,0,0
1712829090.051389243,-2.14681,-1.24004,-0.0680199,-1.955,-1.19107,-2.92436,0,0.0888889,0.0189474,0
1712829090.201526285,-2.14681,-1.24004,-0.0680199,-1.96931,-1.1936,-2.92527,0,0.0888889,-0.0568421,0
1712829090.351661286,-2.14681,-1.24004,-0.0680199,-1.9816,-1.19691,-2.92611,0,0.0888889,0,0
1712829090.501799204,-2.14681,-1.24004,-0.0680199,-1.99068,-1.19908,-2.92953,0,0.0888889,0.0568421,0
1712829090.651934496,-2.14681,-1.24004,-0.0680199,-2.00757,-1.21292,-2.93466,0,0,0.5,0
1712829090.802083497,-2.14681,-1.24004,-0.0680199,-2.01561,-1.21558,-2.93261,0,0,0.5,0
1712829090.952219082,-2.14681,-1.24004,-0.0680199,-2.02459,-1.21728,-2.91134,0,0,0.5,0
1712829091.102350290,-2.14681,-1.24004,-0.0680199,-2.02358,-1.21817,-2.89873,0,0,0.5,0
1712829091.252479166,-2.14681,-1.24004,-0.0680199,-2.03153,-1.22066,-2.85939,0,0,0.5,0
1712829091.402609499,-2.14681,-1.24004,-0.0680199,-2.03971,-1.22294,-2.8279,0,0,0.5,0
1712829091.552762875,-2.14681,-1.24004,-0.0680199,-2.03863,-1.22357,-2.77956,0,0,0.5,0
1712829091.702899917,-2.14681,-1.24004,-0.0680199,-2.04776,-1.22521,-2.7398,0,0,0.5,0
1712829091.853066126,-2.14681,-1.24004,-0.0680199,-2.04507,-1.23676,-2.66598,0,0,0.5,0
1712829092.003408795,-2.14681,-1.24004,-0.0680199,-2.04406,-1.23746,-2.62034,0,0,0.5,0
1712829092.153660755,-2.14681,-1.24004,-0.0680199,-2.04183,-1.2391,-2.55801,0,0,0.5,0
1712829092.303898423,-2.14681,-1.24004,-0.0680199,-2.04094,-1.23992,-2.48229,0,0,0.5,0
1712829092.454142507,-2.14681,-1.24004,-0.0680199,-2.03895,-1.24141,-2.42338,0,0,0.5,0
1712829092.604389508,-2.14681,-1.24004,-0.0680199,-2.03806,-1.24229,-2.36067,0,0,0.5,0
1712829092.754681427,-2.14681,-1.24004,-0.0680199,-2.03615,-1.24382,-2.28203,0,0,0.5,0
1712829092.904905094,-2.14681,-1.24004,-0.0680199,-2.0341,-1.24536,-2.20744,0,0,0.5,0
1712829093.055039802,-2.14681,-1.24004,-0.0680199,-2.03329,-1.24607,-2.14908,0,0,0.5,0
1712829093.205179760,-2.14681,-1.24004,-0.0680199,-2.03161,-1.24794,-2.07234,0,0,0.5,0
1712829093.355310676,-2.14681,-1.24004,-0.0680199,-2.03073,-1.24871,-2.02933,0,0,0.5,0
1712829093.505446258,-2.14681,-1.24004,-0.0680199,-2.02994,-1.2493,-1.95618,0,0,0.5,0
1712829093.655621508,-2.14681,-1.24004,-0.0680199,-2.02819,-1.25084,-1.88772,0,0,0.5,0
1712829093.805750091,-2.14681,-1.24004,-0.0680199,-2.02671,-1.25241,-1.81254,0,0,0.5,0
1712829093.955883340,-2.14681,-1.24004,-0.0680199,-2.02597,-1.25342,-1.74777,0,0,0.5,0
1712829094.106009589,-2.14681,-1.24004,-0.0680199,-2.0243,-1.25489,-1.68188,0,0,0.5,0
1712829094.256138754,-2.14681,-1.24004,-0.0680199,-2.02341,-1.25567,-1.61799,0,0,0.5,0
1712829094.406265294,-2.14681,-1.24004,-0.0680199,-2.02258,-1.25662,-1.56669,0,0,0.5,0
1712829094.556395918,-2.14681,-1.24004,-0.0680199,-2.02049,-1.25821,-1.48606,0,0,0.5,0
1712829094.706544625,-2.14681,-1.24004,-0.0680199,-2.01884,-1.25998,-1.43052,0,0,0.5,0
1712829094.856699749,-2.14681,-1.24004,-0.0680199,-2.01788,-1.26054,-1.34669,0,0,0.5,0
1712829095.006828914,-2.14681,-1.24004,-0.0680199,-2.01611,-1.26247,-1.28773,0,0,0.5,0
1712829095.156958371,-2.14681,-1.24004,-0.0680199,-2.01517,-1.2632,-1.22191,0,0,0.5,0
1712829095.307091910,-2.14681,-1.24004,-0.0680199,-2.0142,-1.26392,-1.17219,0,0,0.5,0
1712829095.457224283,-2.14681,-1.24004,-0.0680199,-2.01218,-1.26536,-1.08945,0,0,0.5,0
1712829095.607354907,-2.14681,-1.24004,-0.0680199,-2.00995,-1.2668,-1.02271,0,0,0.5,0
1712829095.757486405,-2.14681,-1.24004,-0.0680199,-2.00884,-1.2675,-0.974058,0,0,0.5,0
1712829095.908667333,-2.14681,-1.24004,-0.0680199,-2.00683,-1.26901,-0.895801,0,0,0.5,0
1712829096.058815456,-2.14681,-1.24004,-0.0680199,-2.00623,-1.26981,-0.816239,0,0,0.5,0
1712829096.208945787,-2.14681,-1.24004,-0.0680199,-2.00502,-1.27154,-0.770885,0,0,0.5,0
1712829096.359075826,-2.14681,-1.24004,-0.0680199,-2.004,-1.27189,-0.719405,0,0,0.5,0
1712829096.509209657,-2.14681,-1.24004,-0.0680199,-2.00305,-1.27248,-0.646992,0,0,0.5,0
1712829096.659379363,-2.14681,-1.24004,-0.0680199,-2.0018,-1.27398,-0.55637,0,0,0.5,0
1712829096.809613237,-2.14681,-1.24004,-0.0680199,-2.00003,-1.2752,-0.492061,0,0.0666667,0.36,0
1712829096.959846236,-2.14681,-1.24004,-0.0680199,-1.99961,-1.27611,-0.439356,0,0.0666667,0.322105,0
1712829097.110092943,-2.14681,-1.24004,-0.0680199,-1.99827,-1.27739,-0.381299,0,0.0666667,0.36,0
1712829097.260342858,-2.14681,-1.24004,-0.0680199,-1.98763,-1.27938,-0.34275,0,0.0666667,0.36,0
1712829097.410566231,-2.14681,-1.24004,-0.0680199,-1.98705,-1.28,-0.284542,0,0.0666667,0.322105,0
1712829097.564611070,-2.14681,-1.24004,-0.0680199,-1.97609,-1.28296,-0.219846,0,0.0666667,0.284211,0
1712829097.714900361,-2.14681,-1.24004,-0.0680199,-1.97056,-1.28608,-0.185086,0,0.0666667,0.322105,0
1712829097.865049066,-2.14681,-1.24004,-0.0680199,-1.96536,-1.28819,-0.150886,0,0.0666667,0.246316,0
1712829098.015185230,-2.14681,-1.24004,-0.0680199,-1.95421,-1.29094,-0.111853,0,0.0666667,0.208421,0
1712829098.165328977,-2.14681,-1.24004,-0.0680199,-1.94365,-1.29326,-0.0741895,0,0.0666667,0.208421,0
1712829098.315459890,-2.14681,-1.24004,-0.0680199,-1.9328,-1.29623,-0.0245437,0,0.0666667,0.170526,0
1712829098.465587011,-2.14681,-1.24004,-0.0680199,-1.93217,-1.29675,-0.00522519,0,0.0666667,0.170526,0
1712829098.615733383,-2.14681,-1.24004,-0.0680199,-1.92127,-1.29991,0.0278615,0,0.0666667,0.208421,0
1712829098.765877713,-2.14681,-1.24004,-0.0680199,-1.91085,-1.30235,0.0625747,0,0.0666667,0.132632,0
1712829098.916040418,-2.14681,-1.24004,-0.0680199,-1.89954,-1.30539,0.102639,0,0.0666667,0.0947368,0
1712829099.066208665,-2.14681,-1.24004,-0.0680199,-1.89892,-1.3061,0.128945,0,0.0666667,0.0568421,0
1712829099.216339869,-2.14681,-1.24004,-0.0680199,-1.88605,-1.29942,0.16076,0,0.0666667,0.0568421,0
1712829099.366473990,-2.14681,-1.24004,-0.0680199,-1.88548,-1.30024,0.180176,0,0.0666667,0.0568421,0
1712829099.516613069,-2.14681,-1.24004,-0.0680199,-1.87441,-1.30361,0.209561,0,0.0666667,0.0189474,0
1712829099.666749232,-2.14681,-1.24004,-0.0680199,-1.86387,-1.30615,0.237566,0,0.0666667,0.0189474,0
1712829099.816901437,-2.14681,-1.24004,-0.0680199,-1.86314,-1.30677,0.244085,0,0.0666667,-0.0189474,0
1712829099.967042266,-2.14681,-1.24004,-0.0680199,-1.8499,-1.29983,0.270499,0,0.0666667,0.284211,0
1712829100.117175220,-2.14681,-1.24004,-0.0680199,-1.84901,-1.30136,0.283876,0,0.0666667,-0.0189474,0
1712829100.267309632,-2.14681,-1.24004,-0.0680199,-1.83848,-1.30376,0.312347,0,0.0666667,-0.0568421,0
1712829100.417441419,-2.14681,-1.24004,-0.0680199,-1.82602,-1.2974,0.332583,0,0.0666667,-0.0568421,0
1712829100.567525372,-2.14681,-1.24004,-0.0680199,-1.82543,-1.29817,0.344955,0,0.0666667,-0.0189474,0
1712829100.717659493,-2.14681,-1.24004,-0.0680199,-1.81262,-1.29118,0.349882,0,0.0666667,-0.246316,0
1712829100.867810822,-2.14681,-1.24004,-0.0680199,-1.8022,-1.29359,0.355703,0,0.0666667,-0.246316,0
1712829101.017968859,-2.14681,-1.24004,-0.0680199,-1.80133,-1.29531,0.34627,0,0.0666667,-0.246316,0
1712829101.168149938,-2.14681,-1.24004,-0.0680199,-1.78949,-1.28791,0.332251,0,0.0666667,-0.0947368,0
1712829101.318280558,-2.14681,-1.24004,-0.0680199,-1.77835,-1.29047,0.316997,0,0.0666667,-0.208421,0
1712829101.468407094,-2.14681,-1.24004,-0.0680199,-1.7664,-1.28273,0.305573,0,0.0666667,-0.208421,0
1712829101.618535089,-2.14681,-1.24004,-0.0680199,-1.75503,-1.28515,0.292139,0,0.0666667,-0.208421,0
1712829101.769670222,-2.14681,-1.24004,-0.0680199,-1.75444,-1.28567,0.276096,0,0.0666667,-0.208421,0
1712829101.919834967,-2.14681,-1.24004,-0.0680199,-1.74222,-1.27853,0.255677,0,0.0666667,-0.208421,0
1712829102.069970545,-2.14681,-1.24004,-0.0680199,-1.73173,-1.28029,0.236454,0,0.0666667,-0.246316,0
1712829102.220101456,-2.14681,-1.24004,-0.0680199,-1.72048,-1.28303,0.203882,0,0.0666667,-0.170526,0
1712829102.370229159,-2.14681,-1.24004,-0.0680199,-1.70867,-1.27497,0.185755,0,0.0666667,-0.132632,0
1712829102.520389820,-2.14681,-1.24004,-0.0680199,-1.70756,-1.27609,0.16886,0,0.0666667,-0.132632,0
1712829102.670636233,-2.14681,-1.24004,-0.0680199,-1.69726,-1.27807,0.145455,0,0.0666667,-0.0947368,0
1712829102.821494278,-2.14681,-1.24004,-0.0680199,-1.68643,-1.28041,0.130377,0,0.0666667,-0.0947368,0
1712829102.971770733,-2.14681,-1.24004,-0.0680199,-1.67485,-1.27239,0.110165,0,0.0666667,-0.0947368,0
1712829103.122013061,-2.14681,-1.24004,-0.0680199,-1.66399,-1.27469,0.088134,0,0.0666667,-0.0568421,0
1712829103.272246640,-2.14681,-1.24004,-0.0680199,-1.66337,-1.27508,0.0760943,0,0.0666667,-0.0568421,0
1712829103.422561303,-2.14681,-1.24004,-0.0680199,-1.65641,-1.27765,0.058488,0,0.0666667,-0.0568421,0
1712829103.572807715,-2.14681,-1.24004,-0.0680199,-1.64623,-1.27939,0.0450298,0,0.0666667,-0.0568421,0
1712829103.723048877,-2.14681,-1.24004,-0.0680199,-1.63563,-1.28176,0.034326,0,0.0666667,-0.0189474,0
1712829103.873990923,-2.14681,-1.24004,-0.0680199,-1.62539,-1.28336,0.0289747,0,0.0666667,-0.0189474,0
1712829104.024324836,-2.14681,-1.24004,-0.0680199,-1.61345,-1.27554,0.0191673,0,0.0666667,-0.0189474,0
1712829104.174569497,-2.14681,-1.24004,-0.0680199,-1.60332,-1.27749,0.0143951,0,0.0666667,-0.0189474,0
1712829104.324795783,-2.14681,-1.24004,-0.0680199,-1.59297,-1.28003,0.00978627,0,0.0666667,-0.0189474,0
1712829104.475032278,-2.14681,-1.24004,-0.0680199,-1.59256,-1.2805,0.0057074,0,0.0666667,-0.0189474,0
1712829104.625282481,-2.14681,-1.24004,-0.0680199,-1.58093,-1.28355,0.0014858,0,0.0666667,0.132632,0
1712829104.775541434,-2.14681,-1.24004,-0.0680199,-1.57803,-1.2845,-0.000300325,0,0.0666667,-0.0189474,0
1712829104.925777346,-2.14681,-1.24004,-0.0680199,-1.56736,-1.28696,0.00750503,0,0.0666667,-0.0189474,0
1712829105.076003632,-2.14681,-1.24004,-0.0680199,-1.55713,-1.28872,0.00812747,0,0.0666667,-0.0189474,0
1712829105.226230792,-2.14681,-1.24004,-0.0680199,-1.55047,-1.28091,0.00798878,0,0.0666667,-0.0189474,0
1712829105.376515704,-2.14681,-1.24004,-0.0680199,-1.55037,-1.2814,0.00698805,0,0.0666667,-0.0189474,0
1712829105.526764156,-2.14681,-1.24004,-0.0680199,-1.54587,-1.28339,0.00652817,0,0.0666667,0.0568421,0
1712829105.676898857,-2.14681,-1.24004,-0.0680199,-1.53536,-1.28486,0.00760891,0,0.0666667,-0.0189474,0
1712829105.827039100,-2.14681,-1.24004,-0.0680199,-1.52497,-1.28696,0.00979406,0,0.0666667,-0.0189474,0
1712829105.977165926,-2.14681,-1.24004,-0.0680199,-1.51466,-1.28861,0.0114377,0,0.0666667,-0.0189474,0
1712829106.127273210,-2.14681,-1.24004,-0.0680199,-1.50417,-1.29076,0.0116759,0,0.0666667,-0.0189474,0
1712829106.277401494,-2.14681,-1.24004,-0.0680199,-1.49409,-1.29249,0.0115079,0,0.0666667,-0.0189474,0
1712829106.427528028,-2.14681,-1.24004,-0.0680199,-1.48369,-1.29473,0.0110404,0,0.0666667,0.0947368,0
1712829106.577661562,-2.14681,-1.24004,-0.0680199,-1.4756,-1.28628,0.0113397,0,0.0666667,-0.0189474,0
1712829106.727797138,-2.14681,-1.24004,-0.0680199,-1.47815,-1.2877,0.0151229,0,0.0666667,-0.0189474,0
1712829106.877930672,-2.14681,-1.24004,-0.0680199,-1.46795,-1.28938,0.019269,0,0.0666667,-0.0189474,0
1712829107.028055747,-2.14681,-1.24004,-0.0680199,-1.45761,-1.29166,0.0202935,0,0.0666667,-0.0189474,0
1712829107.178192781,-2.14681,-1.24004,-0.0680199,-1.44754,-1.29328,0.0222446,0,0.0666667,-0.0189474,0
1712829107.328474774,-2.14681,-1.24004,-0.0680199,-1.43817,-1.29515,0.0235414,0,0.0666667,0.0947368,0
1712829107.478755018,-2.14681,-1.24004,-0.0680199,-1.43335,-1.2966,0.0248955,0,0.0666667,0.0947368,0
1712829107.629743437,-2.14681,-1.24004,-0.0680199,-1.42756,-1.29771,0.0277019,0,0.0666667,-0.0189474,0
1712829107.780017556,-2.14681,-1.24004,-0.0680199,-1.42159,-1.28867,0.0322542,0,0.0666667,-0.0189474,0
1712829107.930291966,-2.14681,-1.24004,-0.0680199,-1.41102,-1.2906,0.0398282,0,0.0666667,-0.0189474,0
1712829108.080544792,-2.14681,-1.24004,-0.0680199,-1.40346,-1.29201,0.0413874,0,0.0666667,-0.0189474,0
1712829108.230780702,-2.14681,-1.24004,-0.0680199,-1.39556,-1.29365,0.0426006,0,0.0666667,-0.0189474,0
1712829108.381003486,-2.14681,-1.24004,-0.0680199,-1.39104,-1.29489,0.0420064,0,0.0666667,-0.0189474,0
1712829108.531239687,-2.14681,-1.24004,-0.0680199,-1.38021,-1.29634,0.0421445,0,0.0666667,0.0947368,0
1712829108.681968227,-2.14681,-1.24004,-0.0680199,-1.37974,-1.29649,0.0428322,0,0.0666667,-0.0189474,0
1712829108.832429014,-2.14681,-1.24004,-0.0680199,-1.36762,-1.28822,0.048574,0,0.0666667,-0.0189474,0
1712829108.982680382,-2.14681,-1.24004,-0.0680199,-1.3573,-1.28975,0.0513237,0,0.0666667,-0.0189474,0
1712829109.132937874,-2.14681,-1.24004,-0.0680199,-1.34687,-1.29162,0.052578,0,0.0666667,-0.0189474,0
1712829109.283190992,-2.14681,-1.24004,-0.0680199,-1.33675,-1.29309,0.0539037,0,0.0666667,-0.0189474,0
1712829109.433426317,-2.14681,-1.24004,-0.0680199,-1.32642,-1.29503,0.0549977,0,0.0666667,-0.0189474,0
1712829109.583672143,-2.14681,-1.24004,-0.0680199,-1.31841,-1.2963,0.0559683,0,0.0666667,-0.0189474,0
1712829109.733909801,-2.14681,-1.24004,-0.0680199,-1.31567,-1.29716,0.0562191,0,0.0666667,-0.0189474,0
1712829109.884146294,-2.14681,-1.24004,-0.0680199,-1.30453,-1.28858,0.0552558,0,0.0666667,-0.0189474,0
1712829110.034387452,-2.14681,-1.24004,-0.0680199,-1.2939,-1.29027,0.0564672,0,0.0666667,0.0568421,0
1712829110.184767446,-2.14681,-1.24004,-0.0680199,-1.28391,-1.29177,0.0567916,0,0.0666667,-0.0189474,0
1712829110.335093480,-2.14681,-1.24004,-0.0680199,-1.27321,-1.29329,0.0574828,0,0.0666667,-0.0189474,0
1712829110.485336972,-2.14681,-1.24004,-0.0680199,-1.26299,-1.29491,0.0577851,0,0.0666667,-0.0189474,0
1712829110.635567046,-2.14681,-1.24004,-0.0680199,-1.25266,-1.29665,0.0563703,0,0.0666667,-0.0189474,0
1712829110.785804705,-2.14681,-1.24004,-0.0680199,-1.25256,-1.29708,0.0561542,0,0.0666667,-0.0189474,0
1712829110.936031571,-2.14681,-1.24004,-0.0680199,-1.24097,-1.28887,0.0559537,0,0.0666667,0.0947368,0
1712829111.086182895,-2.14681,-1.24004,-0.0680199,-1.23093,-1.29023,0.0547926,0,0.0666667,-0.0189474,0
1712829111.236324010,-2.14681,-1.24004,-0.0680199,-1.22051,-1.29195,0.0559071,0,0.0666667,0.0947368,0
1712829111.386454624,-2.14681,-1.24004,-0.0680199,-1.21027,-1.29347,0.0571054,0,0.0666667,0.0947368,0
1712829111.536593697,-2.14681,-1.24004,-0.0680199,-1.20021,-1.29539,0.0583052,0,0.0666667,-0.0189474,0
1712829111.686726354,-2.14681,-1.24004,-0.0680199,-1.19,-1.29681,0.0646249,0,0.0666667,-0.0189474,0
1712829111.836852010,-2.14681,-1.24004,-0.0680199,-1.19579,-1.29745,0.0653008,0,0.0666667,0,0
1712829111.986985542,-2.14681,-1.24004,-0.0680199,-1.1844,-1.28886,0.0656421,0,0.0666667,0.0568421,0
1712829112.137115572,-2.14681,-1.24004,-0.0680199,-1.1743,-1.29076,0.0649802,0,0.0666667,-0.0568421,0
1712829112.287249103,-2.14681,-1.24004,-0.0680199,-1.16414,-1.29219,0.0660195,0,0.0666667,-0.0568421,0
1712829112.437678096,-2.14681,-1.24004,-0.0680199,-1.15347,-1.29389,0.0607482,0,0.0666667,-0.0189474,0
1712829112.587833503,-2.14681,-1.24004,-0.0680199,-1.14326,-1.2953,0.0589423,0,0.0666667,-0.0189474,0
1712829112.737981909,-2.14681,-1.24004,-0.0680199,-1.14256,-1.29575,0.058367,0,0.0666667,0.0568421,0
1712829112.888130898,-2.14681,-1.24004,-0.0680199,-1.13222,-1.29705,0.0581504,0,0.0666667,-0.0568421,0
1712829113.038433889,-2.14681,-1.24004,-0.0680199,-1.12044,-1.28858,0.0576485,0,0.0666667,-0.0568421,0
1712829113.188716463,-2.14681,-1.24004,-0.0680199,-1.11014,-1.28999,0.0568864,0,0.0666667,-0.0189474,0
1712829113.338951203,-2.14681,-1.24004,-0.0680199,-1.09968,-1.2913,0.0552149,0,0.0666667,-0.0189474,0
1712829113.489912494,-2.14681,-1.24004,-0.0680199,-1.08959,-1.29264,0.0522339,0,0.0666667,-0.0189474,0
1712829113.640195943,-2.14681,-1.24004,-0.0680199,-1.08931,-1.29302,0.0512801,0,0.0666667,0.0947368,0
1712829113.790436808,-2.14681,-1.24004,-0.0680199,-1.07905,-1.29433,0.0502485,0,0.0666667,-0.0189474,0
1712829113.940696924,-2.14681,-1.24004,-0.0680199,-1.06848,-1.2957,0.0575745,0,0.0666667,-0.0189474,0
1712829114.090935164,-2.14681,-1.24004,-0.0680199,-1.05719,-1.28705,0.0578464,0,0.0666667,-0.0568421,0
1712829114.241188278,-2.14681,-1.24004,-0.0680199,-1.04657,-1.28844,0.0574144,0,0.0666667,-0.0568421,0
1712829114.391429726,-2.14681,-1.24004,-0.0680199,-1.03648,-1.28962,0.0558224,0,0.0666667,-0.0189474,0
1712829114.542243140,-2.14681,-1.24004,-0.0680199,-1.03196,-1.29091,0.0547086,0,0.0666667,-0.0189474,0
1712829114.692504130,-2.14681,-1.24004,-0.0680199,-1.02165,-1.29207,0.0544889,0,0.0666667,-0.0189474,0
1712829114.842734202,-2.14681,-1.24004,-0.0680199,-1.02153,-1.2925,0.0581514,0,0.0666667,-0.0189474,0
1712829114.992982650,-2.14681,-1.24004,-0.0680199,-1.01137,-1.29365,0.0569186,0,0.0666667,-0.0189474,0
1712829115.143218264,-2.14681,-1.24004,-0.0680199,-1.00115,-1.29494,0.0569223,0,0.0666667,-0.0568421,0
1712829115.293369586,-2.14681,-1.24004,-0.0680199,-0.990033,-1.28621,0.0567697,0,0.0666667,-0.0568421,0
1712829115.443508657,-2.14681,-1.24004,-0.0680199,-0.979533,-1.28737,0.0548194,0,0.0666667,0.0947368,0
1712829115.593645103,-2.14681,-1.24004,-0.0680199,-0.969212,-1.28848,0.0515827,0,0.0666667,-0.0568421,0
1712829115.743776591,-2.14681,-1.24004,-0.0680199,-0.961793,-1.2895,0.0567107,0,0.0666667,-0.0189474,0
1712829115.893923245,-2.14681,-1.24004,-0.0680199,-0.958646,-1.28994,0.0553884,0,0.0666667,-0.0189474,0
1712829116.044076025,-2.14681,-1.24004,-0.0680199,-0.948653,-1.29151,0.0534928,0,0.0666667,-0.0189474,0
1712829116.194210429,-2.14681,-1.24004,-0.0680199,-0.938451,-1.29266,0.0529017,0,0.0666667,-0.0189474,0
1712829116.344339291,-2.14681,-1.24004,-0.0680199,-0.928289,-1.29402,0.0519708,0,0.0666667,-0.0568421,0
1712829116.494469320,-2.14681,-1.24004,-0.0680199,-0.917192,-1.28563,0.0517502,0,0.0666667,-0.0568421,0
1712829116.644618016,-2.14681,-1.24004,-0.0680199,-0.907071,-1.28684,0.053953,0,0.0666667,-0.0568421,0
1712829116.794775461,-2.14681,-1.24004,-0.0680199,-0.906661,-1.28687,0.0516956,0,0.0666667,-0.0189474,0
1712829116.945028867,-2.14681,-1.24004,-0.0680199,-0.896362,-1.28802,0.0481783,0,0.0666667,-0.0189474,0
1712829117.095169687,-2.14681,-1.24004,-0.0680199,-0.886187,-1.28901,0.0467435,0,0.0666667,-0.0189474,0
1712829117.245307007,-2.14681,-1.24004,-0.0680199,-0.876097,-1.29035,0.0448677,0,0.0666667,-0.0189474,0
1712829117.395437911,-2.14681,-1.24004,-0.0680199,-0.865931,-1.29135,0.0439208,0,0.0666667,-0.0189474,0
1712829117.545574064,-2.14681,-1.24004,-0.0680199,-0.85564,-1.29241,0.0424879,0,0.0666667,-0.0189474,0
1712829117.695709634,-2.14681,-1.24004,-0.0680199,-0.844506,-1.28357,0.0405348,0,0.0666667,-0.0189474,0
1712829117.845843454,-2.14681,-1.24004,-0.0680199,-0.844325,-1.28366,0.0373058,0,0.0666667,0.0568421,0
1712829117.995997400,-2.14681,-1.24004,-0.0680199,-0.834271,-1.2847,0.034714,0,0.0666667,-0.0189474,0
1712829118.146130344,-2.14681,-1.24004,-0.0680199,-0.824053,-1.28598,0.0343311,0,0.0666667,-0.0189474,0
1712829118.296283122,-2.14681,-1.24004,-0.0680199,-0.813951,-1.28711,0.0344449,0,0.0666667,-0.0189474,0
1712829118.446518443,-2.14681,-1.24004,-0.0680199,-0.803818,-1.28825,0.0329325,0,0.0666667,-0.0189474,0
1712829118.596770681,-2.14681,-1.24004,-0.0680199,-0.793551,-1.28927,0.0310406,0,0.0666667,-0.0189474,0
1712829118.747018835,-2.14681,-1.24004,-0.0680199,-0.78318,-1.2903,0.0295345,0,0.0666667,0.0947368,0
1712829118.897300824,-2.14681,-1.24004,-0.0680199,-0.783099,-1.2905,0.028356,0,0.0666667,-0.0189474,0
1712829119.047533811,-2.14681,-1.24004,-0.0680199,-0.771804,-1.28165,0.0336103,0,0.0666667,-0.0189474,0
1712829119.197768548,-2.14681,-1.24004,-0.0680199,-0.761488,-1.28268,0.0344884,0,0.0666667,-0.0189474,0
1712829119.347905575,-2.14681,-1.24004,-0.0680199,-0.751422,-1.28369,0.0340748,0,0.0666667,-0.0189474,0
1712829119.498039978,-2.14681,-1.24004,-0.0680199,-0.745632,-1.28471,0.0341951,0,0.0666667,-0.0189474,0
1712829119.648170297,-2.14681,-1.24004,-0.0680199,-0.735222,-1.28575,0.0339131,0,0.0666667,0.0568421,0
1712829119.798302366,-2.14681,-1.24004,-0.0680199,-0.725098,-1.28676,0.0343161,0,0.0666667,-0.0189474,0
1712829119.949762119,-2.14681,-1.24004,-0.0680199,-0.714576,-1.2878,0.0391659,0,0.0666667,-0.0189474,0
1712829120.099917229,-2.14681,-1.24004,-0.0680199,-0.71422,-1.28776,0.0393472,0,0.0666667,-0.0189474,0
1712829120.250058340,-2.14681,-1.24004,-0.0680199,-0.70388,-1.28896,0.0397047,0,0.0666667,-0.0189474,0
1712829120.400193325,-2.14681,-1.24004,-0.0680199,-0.692545,-1.28013,0.039823,0,0.0666667,-0.0568421,0
1712829120.550325977,-2.14681,-1.24004,-0.0680199,-0.682611,-1.28128,0.0395789,0,0.0666667,0.0947368,0
1712829120.700467962,-2.14681,-1.24004,-0.0680199,-0.682038,-1.28136,0.0378054,0,0.0666667,-0.0189474,0
1712829120.850783200,-2.14681,-1.24004,-0.0680199,-0.671845,-1.28237,0.0412361,0,0.0666667,-0.0568421,0
1712829121.001015603,-2.14681,-1.24004,-0.0680199,-0.661635,-1.28347,0.0427071,0,0.0666667,-0.0189474,0
1712829121.151183255,-2.14681,-1.24004,-0.0680199,-0.651343,-1.28449,0.0411157,0,0.0666667,-0.0189474,0
1712829121.301338073,-2.14681,-1.24004,-0.0680199,-0.641378,-1.28563,0.0399388,0,0.0666667,0.0568421,0
1712829121.451544517,-2.14681,-1.24004,-0.0680199,-0.631335,-1.2869,0.0385758,0,0.0666667,-0.0189474,0
1712829121.601679210,-2.14681,-1.24004,-0.0680199,-0.620974,-1.28773,0.0400519,0,0.0666667,-0.0189474,0
1712829121.751813320,-2.14681,-1.24004,-0.0680199,-0.609867,-1.27898,0.0451086,0,0.0666667,-0.0568421,0
1712829121.901948013,-2.14681,-1.24004,-0.0680199,-0.599503,-1.28012,0.0458077,0,0.0666667,-0.0568421,0
1712829122.052687922,-2.14681,-1.24004,-0.0680199,-0.599474,-1.28018,0.0441743,0,0.0666667,-0.0568421,0
1712829122.202844490,-2.14681,-1.24004,-0.0680199,-0.5896,-1.28126,0.0420509,0,0.0666667,-0.0568421,0
1712829122.352978016,-2.14681,-1.24004,-0.0680199,-0.57943,-1.28215,0.0377239,0,0.0666667,-0.0189474,0
1712829122.503121751,-2.14681,-1.24004,-0.0680199,-0.569511,-1.28324,0.0341453,0,0.0666667,-0.0189474,0
1712829122.653261402,-2.14681,-1.24004,-0.0680199,-0.559183,-1.28423,0.0351216,0,0.0666667,-0.0189474,0
1712829122.803396386,-2.14681,-1.24004,-0.0680199,-0.549258,-1.28528,0.0347892,0,0.0666667,-0.0189474,0
1712829122.953526412,-2.14681,-1.24004,-0.0680199,-0.548951,-1.28532,0.0340976,0,0.0666667,-0.0568421,0
1712829123.103663146,-2.14681,-1.24004,-0.0680199,-0.537875,-1.27615,0.032349,0,0.0666667,-0.0568421,0
1712829123.253794046,-2.14681,-1.24004,-0.0680199,-0.527872,-1.27745,0.0284101,0,0.0666667,-0.0189474,0
1712829123.403966656,-2.14681,-1.24004,-0.0680199,-0.517882,-1.27833,0.0238055,0,0.0666667,-0.0189474,0
1712829123.554100181,-2.14681,-1.24004,-0.0680199,-0.507575,-1.27932,0.023167,0,0.0666667,-0.0189474,0
1712829123.704313333,-2.14681,-1.24004,-0.0680199,-0.497602,-1.2803,0.0218199,0,0.0666667,-0.0189474,0
1712829123.854463775,-2.14681,-1.24004,-0.0680199,-0.487555,-1.28127,0.0199312,0,0.0666667,-0.0189474,0
1712829124.004609259,-2.14681,-1.24004,-0.0680199,-0.477322,-1.28206,0.0184996,0,0.0666667,-0.0189474,0
1712829124.154758826,-2.14681,-1.24004,-0.0680199,-0.477255,-1.28207,0.0168999,0,0.0666667,-0.0189474,0
1712829124.305043436,-2.14681,-1.24004,-0.0680199,-0.467178,-1.28293,0.0145114,0,0.0666667,-0.0189474,0
1712829124.455275837,-2.14681,-1.24004,-0.0680199,-0.456913,-1.28374,0.0104503,0,0.0666667,-0.0189474,0
1712829124.605532447,-2.14681,-1.24004,-0.0680199,-0.445903,-1.27471,0.00749588,0,0.0666667,-0.0189474,0
1712829124.755794307,-2.14681,-1.24004,-0.0680199,-0.435907,-1.27572,0.00525715,0,0.0666667,-0.0189474,0
1712829124.905948832,-2.14681,-1.24004,-0.0680199,-0.425535,-1.27659,0.00432151,0,0.0666667,-0.0189474,0
1712829125.056098982,-2.14681,-1.24004,-0.0680199,-0.425449,-1.27652,0.00373422,0,0.0666667,-0.0189474,0
1712829125.206227548,-2.14681,-1.24004,-0.0680199,-0.409524,-1.27779,0.00279039,0,0.0666667,-0.0189474,0
1712829125.356357573,-2.14681,-1.24004,-0.0680199,-0.404951,-1.27825,0.00184518,0,0.0666667,-0.0189474,0
1712829125.506482639,-2.14681,-1.24004,-0.0680199,-0.394606,-1.27913,1.24569e-05,0,0.0666667,0.0947368,0
1712829125.656612663,-2.14681,-1.24004,-0.0680199,-0.384176,-1.27988,-0.00208203,0,0.0666667,-0.0189474,0
1712829125.806769230,-2.14681,-1.24004,-0.0680199,-0.37402,-1.28066,0.00325979,0,0.0666667,-0.0189474,0
1712829125.957075132,-2.14681,-1.24004,-0.0680199,-0.363956,-1.28158,0.00472221,0,0.0666667,-0.0189474,0
1712829126.107299949,-2.14681,-1.24004,-0.0680199,-0.353949,-1.28268,0.00458644,0,0.0666667,-0.0189474,0
1712829126.257556849,-2.14681,-1.24004,-0.0680199,-0.353752,-1.28277,0.00490726,0,0.0666667,-0.0189474,0
1712829126.407816083,-2.14681,-1.24004,-0.0680199,-0.336747,-1.27814,0.00547612,0,0.0666667,0.0947368,0
1712829126.558127234,-2.14681,-1.24004,-0.0680199,-0.33203,-1.27436,0.00630771,0,0.0666667,-0.0189474,0
1712829126.708377135,-2.14681,-1.24004,-0.0680199,-0.321722,-1.2751,0.0133711,0,0.0666667,-0.0189474,0
1712829126.858607785,-2.14681,-1.24004,-0.0680199,-0.311424,-1.27596,0.0146544,0,0.0666667,-0.0189474,0
1712829127.008837852,-2.14681,-1.24004,-0.0680199,-0.301053,-1.27677,0.0152432,0,0.0666667,-0.0189474,0
1712829127.159071418,-2.14681,-1.24004,-0.0680199,-0.290872,-1.2776,0.0156296,0,0.0666667,-0.0189474,0
1712829127.309303527,-2.14681,-1.24004,-0.0680199,-0.290465,-1.27745,0.015901,0,0.0666667,-0.0189474,0
1712829127.459537968,-2.14681,-1.24004,-0.0680199,-0.280232,-1.27828,0.0149485,0,0.0666667,-0.0189474,0
1712829127.609775326,-2.14681,-1.24004,-0.0680199,-0.269634,-1.27907,0.0144712,0,0.0666667,-0.0189474,0
1712829127.760007726,-2.14681,-1.24004,-0.0680199,-0.259575,-1.27997,0.0140774,0,0.0666667,-0.0189474,0
1712829127.910252084,-2.14681,-1.24004,-0.0680199,-0.249456,-1.28085,0.0129485,0,0.0666667,-0.0189474,0
1712829128.060525318,-2.14681,-1.24004,-0.0680199,-0.239261,-1.28174,0.0125983,0,0.0666667,-0.0189474,0
1712829128.210757426,-2.14681,-1.24004,-0.0680199,-0.238265,-1.27162,0.0110916,0,0.0666667,-0.0189474,0
1712829128.361067993,-2.14681,-1.24004,-0.0680199,-0.227819,-1.27221,0.0107817,0,0.0666667,-0.0189474,0
1712829128.511306225,-2.14681,-1.24004,-0.0680199,-0.217521,-1.27282,0.0103477,0,0.0666667,-0.0189474,0
1712829128.661439165,-2.14681,-1.24004,-0.0680199,-0.207699,-1.27382,0.00992857,0,0.0666667,-0.0189474,0
1712829128.811573563,-2.14681,-1.24004,-0.0680199,-0.197361,-1.27432,0.00919196,0,0.0666667,-0.0189474,0
1712829128.961701836,-2.14681,-1.24004,-0.0680199,-0.187317,-1.27502,0.00879267,0,0.0666667,-0.0189474,0
1712829129.111840901,-2.14681,-1.24004,-0.0680199,-0.177,-1.27568,0.00811635,0,0.0666667,-0.0189474,0
1712829129.261986673,-2.14681,-1.24004,-0.0680199,-0.166925,-1.27656,0.00731778,0,0.0666667,-0.0189474,0
1712829129.412142655,-2.14681,-1.24004,-0.0680199,-0.166611,-1.27635,0.00613746,0,0.0666667,-0.0189474,0
1712829129.562275302,-2.14681,-1.24004,-0.0680199,-0.156569,-1.27716,0.00481498,0,0.0666667,-0.0189474,0
1712829129.712405616,-2.14681,-1.24004,-0.0680199,-0.146519,-1.27782,0.00350541,0,0.0666667,-0.0189474,0
1712829129.862535056,-2.14681,-1.24004,-0.0680199,-0.136505,-1.27867,0.00142766,0,0.0666667,-0.0189474,0
1712829130.012665370,-2.14681,-1.24004,-0.0680199,-0.125172,-1.26935,-0.000749639,0,0.0666667,-0.0189474,0
1712829130.162800642,-2.14681,-1.24004,-0.0680199,-0.114931,-1.27023,-0.00200891,0,0.0666667,-0.0189474,0
1712829130.312940872,-2.14681,-1.24004,-0.0680199,-0.104762,-1.27101,-0.00268073,0,0.0666667,-0.0189474,0
1712829130.463078478,-2.14681,-1.24004,-0.0680199,-0.0945841,-1.27162,-0.00401811,0,0.0666667,-0.0189474,0
1712829130.613221625,-2.14681,-1.24004,-0.0680199,-0.0883812,-1.27184,-0.0047512,0,0.0666667,-0.0947368,0
1712829130.763353981,-2.14681,-1.24004,-0.0680199,-0.0840338,-1.27206,-0.00734568,0,0.0666667,-0.0189474,0
1712829130.913480794,-2.14681,-1.24004,-0.0680199,-0.0733858,-1.27242,-0.0164536,0,0.0666667,-0.0189474,0
1712829131.063608191,-2.14681,-1.24004,-0.0680199,-0.062979,-1.27304,-0.0204476,0,0.0666667,-0.0189474,0
1712829131.213748130,-2.14681,-1.24004,-0.0680199,-0.0525179,-1.27318,-0.0230794,0,0.0666667,-0.0189474,0
1712829131.363908193,-2.14681,-1.24004,-0.0680199,-0.042359,-1.27385,-0.0254177,0,0.0666667,-0.0189474,0
1712829131.514040840,-2.14681,-1.24004,-0.0680199,-0.0323075,-1.2745,-0.028777,0,0.0666667,-0.0947368,0
1712829131.664175528,-2.14681,-1.24004,-0.0680199,-0.0322111,-1.27413,-0.0304995,0,0.0666667,0,0
1712829131.814308467,-2.14681,-1.24004,-0.0680199,-0.0216805,-1.27448,-0.0367321,0,0.0666667,0,0
1712829131.964439947,-2.14681,-1.24004,-0.0680199,-0.0115664,-1.2753,-0.0399741,0,0.0666667,0,0
1712829132.114576676,-2.14681,-1.24004,-0.0680199,-0.00144733,-1.27599,-0.0412842,0,0.0666667,0,0
1712829132.264716323,-2.14681,-1.24004,-0.0680199,0.00893095,-1.27616,-0.0446333,0,0.0666667,0,0
1712829132.414863552,-2.14681,-1.24004,-0.0680199,0.0194174,-1.27643,-0.0469285,0,0.0666667,0,0
1712829132.565005240,-2.14681,-1.24004,-0.0680199,0.0295302,-1.27715,-0.0479734,0,0.0666667,0,0
1712829132.715141678,-2.14681,-1.24004,-0.0680199,0.0397303,-1.27745,-0.0491151,0,0.0666667,0,0
1712829132.865277824,-2.14681,-1.24004,-0.0680199,0.0400652,-1.27703,-0.0503663,0,0.0666667,0.0189474,0
1712829133.015406387,-2.14681,-1.24004,-0.0680199,0.0512488,-1.26746,-0.0521851,0,0.0666667,-0.0947368,0
1712829133.165538450,-2.14681,-1.24004,-0.0680199,0.0671726,-1.26865,-0.0517891,0,0.0666667,-0.0947368,0
1712829133.315665845,-2.14681,-1.24004,-0.0680199,0.0716359,-1.26835,-0.0522396,0,0.0666667,0,0
1712829133.465803449,-2.14681,-1.24004,-0.0680199,0.0818063,-1.2688,-0.0586193,0,0.0666667,0,0
1712829133.615943095,-2.14681,-1.24004,-0.0680199,0.0920164,-1.26914,-0.0591527,0,0.0666667,0,0
1712829133.766076324,-2.14681,-1.24004,-0.0680199,0.102159,-1.26974,-0.0608561,0,0.0666667,0,0
1712829133.916206928,-2.14681,-1.24004,-0.0680199,0.108294,-1.26958,-0.0616679,0,0.0666667,0,0
1712829134.066340157,-2.14681,-1.24004,-0.0680199,0.122551,-1.27047,-0.0613743,0,0.0666667,0,0
1712829134.216472511,-2.14681,-1.24004,-0.0680199,0.122793,-1.2699,-0.061326,0,0.0666667,0,0
1712829134.366612739,-2.14681,-1.24004,-0.0680199,0.132951,-1.27045,-0.0614396,0,0.0666667,0,0
1712829134.516768426,-2.14681,-1.24004,-0.0680199,0.143453,-1.27047,-0.0625587,0,0.0666667,0,0
1712829134.666904863,-2.14681,-1.24004,-0.0680199,0.153573,-1.27105,-0.063661,0,0.0666667,0,0
1712829134.817043634,-2.14681,-1.24004,-0.0680199,0.163777,-1.27114,-0.0649343,0,0.0666667,0.0189474,0
1712829134.967177737,-2.14681,-1.24004,-0.0680199,0.173988,-1.2716,-0.0655831,0,0.0666667,0.0189474,0
1712829135.117333424,-2.14681,-1.24004,-0.0680199,0.174207,-1.27128,-0.0662046,0,0.0666667,0.0189474,0
1712829135.267480653,-2.14681,-1.24004,-0.0680199,0.194481,-1.27243,-0.0651777,0,0.0666667,0.0189474,0
1712829135.417628173,-2.14681,-1.24004,-0.0680199,0.194539,-1.27206,-0.0651718,0,0.0666667,0.0189474,0
1712829135.567763734,-2.14681,-1.24004,-0.0680199,0.204629,-1.27262,-0.0654444,0,0.0666667,-0.0568421,0
1712829135.717849420,-2.14681,-1.24004,-0.0680199,0.214846,-1.27274,-0.0645166,0,0.0666667,0.0189474,0
1712829135.867986148,-2.14681,-1.24004,-0.0680199,0.224904,-1.27325,-0.0654964,0,0.0666667,0.0189474,0
1712829136.018114418,-2.14681,-1.24004,-0.0680199,0.235103,-1.27353,-0.0663623,0,0.0666667,0.0189474,0
1712829136.168258729,-2.14681,-1.24004,-0.0680199,0.245189,-1.27404,-0.0645639,0,0.0666667,0.0189474,0
1712829136.318390498,-2.14681,-1.24004,-0.0680199,0.255592,-1.27439,-0.0645081,0,0.0666667,0.0189474,0
1712829136.468520518,-2.14681,-1.24004,-0.0680199,0.26118,-1.27448,-0.0643744,0,0.0666667,-0.0568421,0
1712829136.618654912,-2.14681,-1.24004,-0.0680199,0.266567,-1.27399,-0.06383,0,0.0666667,0.0189474,0
1712829136.768789306,-2.14681,-1.24004,-0.0680199,0.276886,-1.2744,-0.065263,0,0.0666667,0.0189474,0
1712829136.918898617,-2.14681,-1.24004,-0.0680199,0.287265,-1.27442,-0.064094,0,0.0666667,0.0189474,0
1712829137.069184971,-2.14681,-1.24004,-0.0680199,0.297579,-1.2748,-0.0638914,0,0.0666667,0.0189474,0
1712829137.219456159,-2.14681,-1.24004,-0.0680199,0.307994,-1.27497,-0.0635954,0,0.0666667,-0.0568421,0
1712829137.369694679,-2.14681,-1.24004,-0.0680199,0.317933,-1.27557,-0.0631247,0,0.0666667,-0.0568421,0
1712829137.519953908,-2.14681,-1.24004,-0.0680199,0.318156,-1.27509,-0.0623417,0,0.0666667,0.0189474,0
1712829137.670187761,-2.14681,-1.24004,-0.0680199,0.328297,-1.27507,-0.0647272,0,0.0666667,0.0189474,0
1712829137.820454282,-2.14681,-1.24004,-0.0680199,0.338101,-1.27532,-0.0641932,0,0.0666667,0.0189474,0
1712829137.970702427,-2.14681,-1.24004,-0.0680199,0.34804,-1.27593,-0.0639027,0,0.0666667,0.0189474,0
1712829138.120939488,-2.14681,-1.24004,-0.0680199,0.357865,-1.27627,-0.0635102,0,0.0666667,-0.0568421,0
1712829138.271189675,-2.14681,-1.24004,-0.0680199,0.368021,-1.27666,-0.0632736,0,0.0666667,-0.0568421,0
1712829138.421436653,-2.14681,-1.24004,-0.0680199,0.367835,-1.27595,-0.0623276,0,0.0666667,0.0189474,0
1712829138.571699673,-2.14681,-1.24004,-0.0680199,0.377809,-1.27631,-0.0652379,0,0.0666667,0.0189474,0
1712829138.721935860,-2.14681,-1.24004,-0.0680199,0.388202,-1.27646,-0.0648693,0,0.0666667,0.0189474,0
1712829138.872173213,-2.14681,-1.24004,-0.0680199,0.398556,-1.27704,-0.0641586,0,0.0666667,0.0189474,0
1712829139.022456066,-2.14681,-1.24004,-0.0680199,0.409266,-1.27733,-0.0635016,0,0.0666667,0.0189474,0
1712829139.172684085,-2.14681,-1.24004,-0.0680199,0.419554,-1.27789,-0.0630446,0,0.0666667,0.0189474,0
1712829139.322971605,-2.14681,-1.24004,-0.0680199,0.471802,-1.27797,-0.0622769,0,0.0666667,0.0189474,0
1712829139.473227333,-2.14681,-1.24004,-0.0680199,0.523594,-1.27834,-0.0622997,0,0.0666667,0.0189474,0
1712829139.623478978,-2.14681,-1.24004,-0.0680199,0.524942,-1.27747,-0.0617808,0,0.0666667,0.0189474,0
1712829139.773723914,-2.14681,-1.24004,-0.0680199,0.535828,-1.2778,-0.0620329,0,0.0666667,0.0189474,0
1712829139.924006184,-2.14681,-1.24004,-0.0680199,0.546679,-1.27813,-0.0602601,0,0.0666667,0.0189474,0
1712829140.074232744,-2.14681,-1.24004,-0.0680199,0.558252,-1.2783,-0.058625,0,0.0666667,0.0189474,0
1712829140.224467180,-2.14681,-1.24004,-0.0680199,0.569754,-1.27845,-0.0577069,0,0.0666667,0.0189474,0
1712829140.374778324,-2.14681,-1.24004,-0.0680199,0.587576,-1.27897,-0.0547994,0,0.0666667,0.0189474,0
1712829140.525025593,-2.14681,-1.24004,-0.0680199,0.667436,-1.27906,-0.0527702,0,0.0666667,0.0189474,0
1712829140.675275196,-2.14681,-1.24004,-0.0680199,0.677342,-1.27934,-0.0505059,0,0.0666667,0.0189474,0
1712829140.825509631,-2.14681,-1.24004,-0.0680199,0.677158,-1.27828,-0.0519877,0,0.0666667,0.0189474,0
1712829140.975744358,-2.14681,-1.24004,-0.0680199,0.687001,-1.27857,-0.0512872,0,0.0666667,0.0189474,0
1712829141.125973835,-2.14681,-1.24004,-0.0680199,0.690046,-1.27839,-0.0507396,0,0.0666667,0.0189474,0
1712829141.276246187,-2.14681,-1.24004,-0.0680199,0.693203,-1.27873,-0.0506031,0,0.0666667,0,0
1712829141.426505706,-2.14681,-1.24004,-0.0680199,0.690393,-1.2687,-0.0505007,0,0.0666667,0,0
1712829141.576773099,-2.14681,-1.24004,-0.0680199,0.693582,-1.26908,-0.0499842,0,0.0666667,0,0
1712829141.727009284,-2.14681,-1.24004,-0.0680199,0.689962,-1.269,-0.0498668,0,0.0666667,0,0
1712829141.877246928,-2.14681,-1.24004,-0.0680199,0.683185,-1.26856,-0.0499831,0,0.0666667,0,0
1712829142.027477863,-2.14681,-1.24004,-0.0680199,0.689548,-1.26929,-0.0493668,0,0.0666667,0,0
1712829142.177701797,-2.14681,-1.24004,-0.0680199,0.682772,-1.26885,-0.0480124,0,0.0666667,0,0
1712829142.327832397,-2.14681,-1.24004,-0.0680199,0.679222,-1.26876,-0.0508631,0,0.0666667,0,0
1712829142.477969705,-2.14681,-1.24004,-0.0680199,0.682445,-1.26913,-0.0503981,0,0.0666667,0,0
1712829142.628113139,-2.14681,-1.24004,-0.0680199,0.685661,-1.26904,-0.0506592,0,0.0666667,0,0
1712829142.778262114,-2.14681,-1.24004,-0.0680199,0.695297,-1.26942,-0.0505679,0,0.0666667,0,0
1712829142.928485173,-2.14681,-1.24004,-0.0680199,0.704991,-1.26912,-0.0505623,0,0.0666667,0,0
1712829143.078718441,-2.14681,-1.24004,-0.0680199,0.70478,-1.26856,-0.0498362,0,0.0666667,-0.0947368,0
1712829143.228948500,-2.14681,-1.24004,-0.0680199,0.720638,-1.26864,-0.0484965,0,0.0666667,0,0
1712829143.379172434,-2.14681,-1.24004,-0.0680199,0.724352,-1.26864,-0.0507848,0,0.0666667,0,0
1712829143.529408326,-2.14681,-1.24004,-0.0680199,0.734407,-1.26712,-0.0524094,0,0.0666667,0,0
1712829143.679678344,-2.14681,-1.24004,-0.0680199,0.74425,-1.2675,-0.0531695,0,0.0666667,0,0
1712829143.829940779,-2.14681,-1.24004,-0.0680199,0.754459,-1.26739,-0.0549397,0,0.0666667,-0.0947368,0
1712829143.980186588,-2.14681,-1.24004,-0.0680199,0.764682,-1.26761,-0.0564063,0,0.0666667,-0.0947368,0
1712829144.130417230,-2.14681,-1.24004,-0.0680199,0.774758,-1.26741,-0.0581729,0,0.0666667,0,0
1712829144.280651372,-2.14681,-1.24004,-0.0680199,0.774903,-1.26686,-0.0642074,0,0.0666667,0,0
1712829144.430883472,-2.14681,-1.24004,-0.0680199,0.784911,-1.26654,-0.0663231,0,0.0666667,0,0
1712829144.584897954,-2.14681,-1.24004,-0.0680199,0.794903,-1.2668,-0.0678271,0,0.0666667,0,0
1712829144.735152221,-2.14681,-1.24004,-0.0680199,0.805063,-1.26658,-0.0682348,0,0.0666667,0,0
1712829144.885292737,-2.14681,-1.24004,-0.0680199,0.814896,-1.2669,-0.0694273,0,0.0666667,-0.0568421,0
1712829145.035423336,-2.14681,-1.24004,-0.0680199,0.824654,-1.26681,-0.0707624,0,0.0666667,0,0
1712829145.185541684,-2.14681,-1.24004,-0.0680199,0.8345,-1.26714,-0.0736932,0,0.0666667,0,0
1712829145.335671116,-2.14681,-1.24004,-0.0680199,0.844109,-1.26703,-0.0750434,0,0.0666667,0,0
1712829145.485800839,-2.14681,-1.24004,-0.0680199,0.844249,-1.2665,-0.0763618,0,0.0666667,0,0
1712829145.635929688,-2.14681,-1.24004,-0.0680199,0.861048,-1.26675,-0.0753628,0,0.0666667,0,0
1712829145.786050370,-2.14681,-1.24004,-0.0680199,0.864169,-1.26656,-0.0739336,0,0.0666667,0,0
1712829145.936314845,-2.14681,-1.24004,-0.0680199,0.874163,-1.26624,-0.0733487,0,0.0666667,0,0
1712829146.086549861,-2.14681,-1.24004,-0.0680199,0.884084,-1.26654,-0.073407,0,0.0666667,0,0
1712829146.236782252,-2.14681,-1.24004,-0.0680199,0.893841,-1.26651,-0.0727462,0,0.0666667,0,0
1712829146.387080269,-2.14681,-1.24004,-0.0680199,0.904038,-1.26673,-0.0722658,0,0.0666667,0,0
1712829146.537303910,-2.14681,-1.24004,-0.0680199,0.904082,-1.26576,-0.0718997,0,0.0666667,0,0
1712829146.687544760,-2.14681,-1.24004,-0.0680199,0.914239,-1.26588,-0.0716882,0,0.0666667,0,0
1712829146.837779193,-2.14681,-1.24004,-0.0680199,0.924019,-1.26585,-0.0714706,0,0.0666667,0,0
1712829146.988020334,-2.14681,-1.24004,-0.0680199,0.933902,-1.26604,-0.0708867,0,0.0666667,0,0
1712829147.138266433,-2.14681,-1.24004,-0.0680199,0.943734,-1.26586,-0.0707756,0,0.0666667,0,0
1712829147.288495323,-2.14681,-1.24004,-0.0680199,0.953898,-1.26578,-0.0717582,0,0.0666667,0,0
1712829147.438737923,-2.14681,-1.24004,-0.0680199,0.963934,-1.26603,-0.0731021,0,0.0666667,0,0
1712829147.589004439,-2.14681,-1.24004,-0.0680199,0.969508,-1.26524,-0.0736393,0,0.0666667,0,0
1712829147.739234204,-2.14681,-1.24004,-0.0680199,0.973959,-1.2649,-0.0749461,0,0.0666667,0,0
1712829147.889505387,-2.14681,-1.24004,-0.0680199,0.984364,-1.26509,-0.074351,0,0.0666667,0,0
1712829148.039736903,-2.14681,-1.24004,-0.0680199,0.994701,-1.26468,-0.073913,0,0.0666667,0,0
1712829148.189981251,-2.14681,-1.24004,-0.0680199,1.00482,-1.26486,-0.0744951,0,0.0666667,0,0
1712829148.340220058,-2.14681,-1.24004,-0.0680199,1.01483,-1.26486,-0.074405,0,0.0666667,0,0
1712829148.490493574,-2.14681,-1.24004,-0.0680199,1.0248,-1.26524,-0.0739956,0,0.0666667,0,0
1712829148.640756006,-2.14681,-1.24004,-0.0680199,1.03492,-1.26513,-0.0737777,0,0.0666667,0,0
1712829148.791086106,-2.14681,-1.24004,-0.0680199,1.03511,-1.26468,-0.0736181,0,0.0666667,0,0
1712829148.941338330,-2.14681,-1.24004,-0.0680199,1.05169,-1.26487,-0.0747658,0,0.0666667,0,0
1712829149.091578595,-2.14681,-1.24004,-0.0680199,1.05521,-1.26464,-0.0746641,0,0.0666667,0,0
1712829149.241809234,-2.14681,-1.24004,-0.0680199,1.06507,-1.2644,-0.0745277,0,0.0666667,0,0
1712829149.392038707,-2.14681,-1.24004,-0.0680199,1.07495,-1.26457,-0.0739747,0,0.0666667,0,0
1712829149.542287431,-2.14681,-1.24004,-0.0680199,1.08421,-1.26433,-0.0757414,0,0.0666667,0,0
1712829149.692585155,-2.14681,-1.24004,-0.0680199,1.09397,-1.26459,-0.0764761,0,0.0666667,0,0
1712829149.842809961,-2.14681,-1.24004,-0.0680199,1.09959,-1.26389,-0.0774886,0,0.0666667,0,0
1712829149.992957183,-2.14681,-1.24004,-0.0680199,1.10893,-1.26421,-0.0771854,0,0.0666667,0,0
1712829150.143096529,-2.14681,-1.24004,-0.0680199,1.11332,-1.2633,-0.0769493,0,0.0666667,0,0
1712829150.293228001,-2.14681,-1.24004,-0.0680199,1.12348,-1.26327,-0.0763816,0,0.0666667,0,0
1712829150.443358889,-2.14681,-1.24004,-0.0680199,1.13331,-1.26301,-0.077064,0,0.0666667,0,0
1712829150.593495902,-2.14681,-1.24004,-0.0680199,1.14328,-1.26316,-0.077758,0,0.0666667,0,0
1712829150.743634957,-2.14681,-1.24004,-0.0680199,1.15321,-1.26293,-0.0775485,0,0.0666667,0,0
1712829150.893777803,-2.14681,-1.24004,-0.0680199,1.16308,-1.26246,-0.076062,0,0.0666667,0,0
1712829151.043911900,-2.14681,-1.24004,-0.0680199,1.16851,-1.26227,-0.0750746,0,0.0666667,0,0
1712829151.194039287,-2.14681,-1.24004,-0.0680199,1.17275,-1.2622,-0.0747809,0,0.0666667,0,0
1712829151.344169591,-2.14681,-1.24004,-0.0680199,1.1829,-1.26162,-0.0766432,0,0.0666667,0,0
1712829151.494303396,-2.14681,-1.24004,-0.0680199,1.19304,-1.26168,-0.0765448,0,0.0666667,0,0
1712829151.644456450,-2.14681,-1.24004,-0.0680199,1.20286,-1.26124,-0.0751504,0,0.0666667,0,0
1712829151.794643630,-2.14681,-1.24004,-0.0680199,1.21289,-1.26141,-0.0751568,0,0.0666667,0,0
1712829151.944785893,-2.14681,-1.24004,-0.0680199,1.2229,-1.26091,-0.0752867,0,0.0666667,0,0
1712829152.095014198,-2.14681,-1.24004,-0.0680199,1.23266,-1.2606,-0.0750525,0,0.0666667,0,0
1712829152.245245128,-2.14681,-1.24004,-0.0680199,1.23283,-1.25985,-0.074493,0,0.0666667,0,0
1712829152.395483350,-2.14681,-1.24004,-0.0680199,1.24258,-1.25943,-0.0742656,0,0.0666667,0,0
1712829152.545710780,-2.14681,-1.24004,-0.0680199,1.25233,-1.25963,-0.0744236,0,0.0666667,0,0
1712829152.695862959,-2.14681,-1.24004,-0.0680199,1.26215,-1.25985,-0.0735396,0,0.0666667,0,0
1712829152.846001722,-2.14681,-1.24004,-0.0680199,1.27189,-1.25953,-0.0731128,0,0.0666667,-0.0947368,0
1712829152.996132901,-2.14681,-1.24004,-0.0680199,1.28189,-1.25972,-0.0729463,0,0.0666667,0,0
1712829153.146262912,-2.14681,-1.24004,-0.0680199,1.29177,-1.25927,-0.0787929,0,0.0666667,0,0
1712829153.296392341,-2.14681,-1.24004,-0.0680199,1.29728,-1.25897,-0.079175,0,0.0666667,0,0
1712829153.446524977,-2.14681,-1.24004,-0.0680199,1.30765,-1.25841,-0.0807534,0,0.0666667,0,0
1712829153.596658489,-2.14681,-1.24004,-0.0680199,1.31157,-1.2582,-0.0817477,0,0.0666667,0,0
1712829153.746809501,-2.14681,-1.24004,-0.0680199,1.32111,-1.25794,-0.0824777,0,0.0666667,0,0
1712829153.896946805,-2.14681,-1.24004,-0.0680199,1.33111,-1.25801,-0.0832363,0,0.0666667,0,0
1712829154.047083233,-2.14681,-1.24004,-0.0680199,1.34082,-1.25753,-0.0839673,0,0.0666667,0,0
1712829154.197227245,-2.14681,-1.24004,-0.0680199,1.35066,-1.2575,-0.0847324,0,0.0666667,0,0
1712829154.347387590,

View File

@ -1,364 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1712829710.640285970,-2.14681,-1.24004,-0.0680199,-1.14373,-2.74442,-0.00213704,0,0.0666667,0.36,0
1712829710.790621710,-2.14681,-1.24004,-0.0680199,-1.13227,-2.73473,0.00575164,0,0.0666667,0.36,0
1712829710.940856233,-2.14681,-1.24004,-0.0680199,-1.12691,-2.73022,0.0263598,0,0.0666667,0.36,0
1712829711.091006259,-2.14681,-1.24004,-0.0680199,-1.10614,-2.72156,0.0646702,0,0.0666667,0.322105,0
1712829711.241119284,-2.14681,-1.24004,-0.0680199,-1.10057,-2.71687,0.088276,0,0.0666667,0.284211,0
1712829711.391242176,-2.14681,-1.24004,-0.0680199,-1.07954,-2.70786,0.121441,0,0.0666667,0.322105,0
1712829711.541357232,-2.14681,-1.24004,-0.0680199,-1.0641,-2.70358,0.151956,0,0.0666667,0.322105,0
1712829711.691466484,-2.14681,-1.24004,-0.0680199,-1.05326,-2.69434,0.187355,0,0.0666667,0.322105,0
1712829711.841588796,-2.14681,-1.24004,-0.0680199,-1.0379,-2.69014,0.235704,0,0.0666667,0.36,0
1712829711.991732582,-2.14681,-1.24004,-0.0680199,-1.01693,-2.6814,0.261426,0,0.0666667,0.36,0
1712829712.141977771,-2.14681,-1.24004,-0.0680199,-1.00081,-2.66721,0.306621,0,0.0666667,0.36,0
1712829712.292192955,-2.14681,-1.24004,-0.0680199,-0.97953,-2.65835,0.348387,0,0.0666667,0.36,0
1712829712.442406978,-2.14681,-1.24004,-0.0680199,-0.963331,-2.64439,0.383792,0,0.0666667,0.36,0
1712829712.592600094,-2.14681,-1.24004,-0.0680199,-0.942384,-2.63577,0.437403,0,0.0666667,0.36,0
1712829712.742795824,-2.14681,-1.24004,-0.0680199,-0.936309,-2.62579,0.471704,0,0.0666667,0.36,0
1712829712.892997651,-2.14681,-1.24004,-0.0680199,-0.915127,-2.61266,0.508265,0,0.0666667,0.322105,0
1712829713.043216311,-2.14681,-1.24004,-0.0680199,-0.899986,-2.60887,0.543673,0,0.0666667,0.322105,0
1712829713.193456806,-2.14681,-1.24004,-0.0680199,-0.888665,-2.59002,0.575758,0,0.0666667,0.36,0
1712829713.343683938,-2.14681,-1.24004,-0.0680199,-0.872563,-2.57651,0.624685,0,0.0666667,0.322105,0
1712829713.493911070,-2.14681,-1.24004,-0.0680199,-0.85209,-2.56854,0.675167,0,0.0666667,0.322105,0
1712829713.644113508,-2.14681,-1.24004,-0.0680199,-0.845909,-2.55424,0.685762,0,0.0666667,0.322105,0
1712829713.794316236,-2.14681,-1.24004,-0.0680199,-0.825215,-2.54646,0.739797,0,0.0666667,0.36,0
1712829713.944519256,-2.14681,-1.24004,-0.0680199,-0.808927,-2.53314,0.783134,0,0.0666667,0.36,0
1712829714.094734246,-2.14681,-1.24004,-0.0680199,-0.791667,-2.51521,0.833434,0,0.0666667,0.322105,0
1712829714.245046511,-2.14681,-1.24004,-0.0680199,-0.781381,-2.50146,0.866,0,0.0666667,0.36,0
1712829714.395267807,-2.14681,-1.24004,-0.0680199,-0.770868,-2.49289,0.905194,0,0.0666667,0.36,0
1712829714.545483580,-2.14681,-1.24004,-0.0680199,-0.754411,-2.47972,0.952422,0,0.0666667,0.36,0
1712829714.695674940,-2.14681,-1.24004,-0.0680199,-0.743141,-2.46143,0.994948,0,0.0666667,0.36,0
1712829714.845880831,-2.14681,-1.24004,-0.0680199,-0.721768,-2.44426,1.04232,0,0.0666667,0.322105,0
1712829714.996078875,-2.14681,-1.24004,-0.0680199,-0.715457,-2.4302,1.08092,0,0.0666667,0.322105,0
1712829715.146215645,-2.14681,-1.24004,-0.0680199,-0.704018,-2.41177,1.12296,0,0.0666667,0.322105,0
1712829715.296330457,-2.14681,-1.24004,-0.0680199,-0.687925,-2.39916,1.16544,0,0.155556,0.36,0
1712829715.446537436,-2.14681,-1.24004,-0.0680199,-0.676823,-2.38112,1.21268,0,0.0666667,0.36,0
1712829715.596715922,-2.14681,-1.24004,-0.0680199,-0.670356,-2.36704,1.24881,0,0.0666667,0.36,0
1712829715.746854285,-2.14681,-1.24004,-0.0680199,-0.664007,-2.35312,1.30148,0,0.133333,0.36,0
1712829715.896981309,-2.14681,-1.24004,-0.0680199,-0.652459,-2.33521,1.34416,0,0.111111,0.36,0
1712829716.047105673,-2.14681,-1.24004,-0.0680199,-0.641121,-2.31723,1.40865,0,0.0666667,0.36,0
1712829716.197225152,-2.14681,-1.24004,-0.0680199,-0.634494,-2.30338,1.44838,0,0.0888889,0.36,0
1712829716.347342887,-2.14681,-1.24004,-0.0680199,-0.621333,-2.27578,1.51816,0,0.177778,0.36,0
1712829716.497461203,-2.14681,-1.24004,-0.0680199,-0.614599,-2.26202,1.56484,0,0.177778,0.36,0
1712829716.647580392,-2.14681,-1.24004,-0.0680199,-0.603225,-2.24447,1.61527,0,0.2,0.36,0
1712829716.797730411,-2.14681,-1.24004,-0.0680199,-0.604372,-2.21902,1.69444,0,0.2,0.36,0
1712829716.948019745,-2.14681,-1.24004,-0.0680199,-0.596341,-2.18332,1.77436,0,0.2,0.36,0
1712829717.098261545,-2.14681,-1.24004,-0.0680199,-0.592143,-2.16618,1.83132,0,0.2,0.36,0
1712829717.248478074,-2.14681,-1.24004,-0.0680199,-0.588529,-2.13679,1.88413,0,0.2,0.36,0
1712829717.398674528,-2.14681,-1.24004,-0.0680199,-0.589827,-2.11138,1.9349,0,0.2,0.36,0
1712829717.548797958,-2.14681,-1.24004,-0.0680199,-0.596169,-2.08036,1.98613,0,0.2,0.36,0
1712829717.698927208,-2.14681,-1.24004,-0.0680199,-0.604974,-2.0432,2.04632,0,0.2,0.36,0
1712829717.849135299,-2.14681,-1.24004,-0.0680199,-0.60814,-2.01218,2.10349,0,0.2,0.36,0
1712829717.999343390,-2.14681,-1.24004,-0.0680199,-0.613758,-1.99588,2.13296,0,0.2,0.36,0
1712829718.149564110,-2.14681,-1.24004,-0.0680199,-0.619541,-1.96422,2.18658,0,0.2,0.36,0
1712829718.299835026,-2.14681,-1.24004,-0.0680199,-0.629956,-1.93642,2.23079,0,0.2,0.36,0
1712829718.450057344,-2.14681,-1.24004,-0.0680199,-0.64521,-1.90263,2.28909,0,0.2,0.322105,0
1712829718.600266567,-2.14681,-1.24004,-0.0680199,-0.657703,-1.88449,2.32662,0,0.2,0.322105,0
1712829718.750520022,-2.14681,-1.24004,-0.0680199,-0.653859,-1.85531,2.36736,0,0.2,0.322105,0
1712829718.900754563,-2.14681,-1.24004,-0.0680199,-0.673842,-1.82517,2.42185,0,0.2,0.322105,0
1712829719.050979295,-2.14681,-1.24004,-0.0680199,-0.691513,-1.80089,2.47423,0,0.2,0.246316,0
1712829719.201189529,-2.14681,-1.24004,-0.0680199,-0.704057,-1.78273,2.5049,0,0.2,0.246316,0
1712829719.351400054,-2.14681,-1.24004,-0.0680199,-0.721543,-1.75821,2.54881,0,0.2,0.208421,0
1712829719.501602429,-2.14681,-1.24004,-0.0680199,-0.734105,-1.74014,2.58399,0,0.2,0.170526,0
1712829719.651810917,-2.14681,-1.24004,-0.0680199,-0.757302,-1.71412,2.62446,0,0.2,0.170526,0
1712829719.802011255,-2.14681,-1.24004,-0.0680199,-0.783344,-1.69234,2.65939,0,0.2,0.132632,0
1712829719.952145520,-2.14681,-1.24004,-0.0680199,-0.793626,-1.68007,2.68063,0,0.2,0.132632,0
1712829720.102274527,-2.14681,-1.24004,-0.0680199,-0.815594,-1.65905,2.70695,0,0.2,0.132632,0
1712829720.252402118,-2.14681,-1.24004,-0.0680199,-0.835666,-1.64431,2.72797,0,0.2,0.132632,0
1712829720.402520101,-2.14681,-1.24004,-0.0680199,-0.857838,-1.62361,2.74774,0,0.2,0.0947368,0
1712829720.552637502,-2.14681,-1.24004,-0.0680199,-0.868201,-1.61126,2.76573,0,0.2,0.0568421,0
1712829720.702752574,-2.14681,-1.24004,-0.0680199,-0.902494,-1.59762,2.78729,0,0.2,0.0568421,0
1712829720.852876671,-2.14681,-1.24004,-0.0680199,-0.912999,-1.5854,2.7972,0,0.2,0.0568421,0
1712829721.003024931,-2.14681,-1.24004,-0.0680199,-0.934661,-1.56434,2.80784,0,0.2,0.0568421,0
1712829721.153161646,-2.14681,-1.24004,-0.0680199,-0.954918,-1.54987,2.8174,0,0.2,0.0568421,0
1712829721.303279491,-2.14681,-1.24004,-0.0680199,-0.979531,-1.53866,2.83197,0,0.2,0.132632,0
1712829721.453398791,-2.14681,-1.24004,-0.0680199,-0.999907,-1.52441,2.8427,0,0.2,0.0568421,0
1712829721.603531194,-2.14681,-1.24004,-0.0680199,-1.02462,-1.51336,2.85354,0,0.2,0.0568421,0
1712829721.753761723,-2.14681,-1.24004,-0.0680199,-1.03507,-1.50117,2.86262,0,0.2,0.0568421,0
1712829721.903964590,-2.14681,-1.24004,-0.0680199,-1.06927,-1.48722,2.87313,0,0.2,0.0568421,0
1712829722.054103656,-2.14681,-1.24004,-0.0680199,-1.08974,-1.47266,2.88333,0,0.2,0.0189474,0
1712829722.204250493,-2.14681,-1.24004,-0.0680199,-1.10499,-1.46424,2.88981,0,0.2,0.0568421,0
1712829722.354370539,-2.14681,-1.24004,-0.0680199,-1.11574,-1.45206,2.89586,0,0.2,0.0568421,0
1712829722.504487963,-2.14681,-1.24004,-0.0680199,-1.15015,-1.43861,2.90594,0,0.2,0.0568421,0
1712829722.654605387,-2.14681,-1.24004,-0.0680199,-1.17077,-1.42399,2.91223,0,0.2,0.0947368,0
1712829722.804725724,-2.14681,-1.24004,-0.0680199,-1.19556,-1.41305,2.91752,0,0.2,0.0947368,0
1712829722.954844022,-2.14681,-1.24004,-0.0680199,-1.21608,-1.39856,2.9262,0,0.2,0.0189474,0
1712829723.104976687,-2.14681,-1.24004,-0.0680199,-1.23141,-1.39013,2.93301,0,0.2,0.0189474,0
1712829723.255113616,-2.14681,-1.24004,-0.0680199,-1.26464,-1.38284,2.93894,0,0.2,0.0189474,0
1712829723.405244138,-2.14681,-1.24004,-0.0680199,-1.28,-1.37486,2.94513,0,0.2,0.0568421,0
1712829723.555362719,-2.14681,-1.24004,-0.0680199,-1.30095,-1.3608,2.95129,0,0.2,0.0568421,0
1712829723.705494114,-2.14681,-1.24004,-0.0680199,-1.31644,-1.35278,2.95323,0,0.2,0.0568421,0
1712829723.855612986,-2.14681,-1.24004,-0.0680199,-1.35256,-1.33526,2.96335,0,0.2,0.0568421,0
1712829724.005739119,-2.14681,-1.24004,-0.0680199,-1.3747,-1.3355,2.97174,0,0.2,0.0568421,0
1712829724.155866608,-2.14681,-1.24004,-0.0680199,-1.40261,-1.32009,2.98076,0,0.2,0,0
1712829724.306031091,-2.14681,-1.24004,-0.0680199,-1.42098,-1.31117,2.9846,0,0.2,0.0189474,0
1712829724.456241598,-2.14681,-1.24004,-0.0680199,-1.44222,-1.29736,2.98876,0,0.2,0.0568421,0
1712829724.606455600,-2.14681,-1.24004,-0.0680199,-1.46972,-1.29621,2.99176,0,0.2,0.0568421,0
1712829724.756663485,-2.14681,-1.24004,-0.0680199,-1.49087,-1.28233,2.99522,0,0.2,0.0568421,0
1712829724.906948561,-2.14681,-1.24004,-0.0680199,-1.51619,-1.27173,3.00038,0,0.177778,0.0189474,0
1712829725.057169663,-2.14681,-1.24004,-0.0680199,-1.53996,-1.26754,3.00613,0,0.2,0.0568421,0
1712829725.207417249,-2.14681,-1.24004,-0.0680199,-1.55553,-1.25949,3.00897,0,0.2,0.0568421,0
1712829725.357629585,-2.14681,-1.24004,-0.0680199,-1.5771,-1.2458,3.01602,0,0.2,0.0568421,0
1712829725.507849496,-2.14681,-1.24004,-0.0680199,-1.59509,-1.24744,3.02024,0,0.177778,0.0568421,0
1712829725.658056007,-2.14681,-1.24004,-0.0680199,-1.62181,-1.23236,3.0283,0,0.2,0.0568421,0
1712829725.808260769,-2.14681,-1.24004,-0.0680199,-1.64431,-1.23292,3.03555,0,0.2,0.132632,0
1712829725.958467862,-2.14681,-1.24004,-0.0680199,-1.66575,-1.2193,3.04243,0,0.2,0.132632,0
1712829726.108666347,-2.14681,-1.24004,-0.0680199,-1.69356,-1.21819,3.05163,0,0.2,0.132632,0
1712829726.258807265,-2.14681,-1.24004,-0.0680199,-1.7221,-1.20259,3.06791,0,0.2,0.132632,0
1712829726.408948183,-2.14681,-1.24004,-0.0680199,-1.73327,-1.20599,3.07856,0,0.2,0.0947368,0
1712829726.559068998,-2.14681,-1.24004,-0.0680199,-1.7606,-1.19084,3.09484,0,0.177778,0.0947368,0
1712829726.709187191,-2.14681,-1.24004,-0.0680199,-1.7827,-1.19107,3.10852,0,0.177778,0.0947368,0
1712829726.859308880,-2.14681,-1.24004,-0.0680199,-1.8073,-1.18726,3.11756,0,0.155556,0.132632,0
1712829727.009447056,-2.14681,-1.24004,-0.0680199,-1.82285,-1.17895,3.12985,0,0.155556,0.170526,0
1712829727.159565315,-2.14681,-1.24004,-0.0680199,-1.83752,-1.17759,-3.1413,0,0.155556,0.170526,0
1712829727.309680077,-2.14681,-1.24004,-0.0680199,-1.86553,-1.17642,-3.12209,0,0.133333,0.170526,0
1712829727.459799792,-2.14681,-1.24004,-0.0680199,-1.8778,-1.16549,-3.1037,0,0.133333,0.170526,0
1712829727.609916302,-2.14681,-1.24004,-0.0680199,-1.90578,-1.16404,-3.08286,0,0.133333,0.132632,0
1712829727.760035726,-2.14681,-1.24004,-0.0680199,-1.9178,-1.163,-3.06482,0,0.111111,0.170526,0
1712829727.910162434,-2.14681,-1.24004,-0.0680199,-1.92637,-1.15645,-3.0522,0,0.111111,0.208421,0
1712829728.060293809,-2.14681,-1.24004,-0.0680199,-1.94144,-1.15481,-3.02881,0,0.111111,0.208421,0
1712829728.210518224,-2.14681,-1.24004,-0.0680199,-1.95047,-1.15869,-3.01162,0,0.111111,0.208421,0
1712829728.360722824,-2.14681,-1.24004,-0.0680199,-1.96269,-1.14715,-2.99018,0,0.0888889,0.208421,0
1712829728.510927425,-2.14681,-1.24004,-0.0680199,-1.9716,-1.15094,-2.96162,0,0.0888889,0.246316,0
1712829728.661131734,-2.14681,-1.24004,-0.0680199,-1.97706,-1.15193,-2.94356,0,0.0888889,0.208421,0
1712829728.811921144,-2.14681,-1.24004,-0.0680199,-1.99255,-1.14306,-2.91933,0,0.0888889,0.170526,0
1712829728.962068342,-2.14681,-1.24004,-0.0680199,-1.99795,-1.14382,-2.89318,0,0.0888889,0.208421,0
1712829729.112200612,-2.14681,-1.24004,-0.0680199,-2.00716,-1.14755,-2.87342,0,0.0888889,0.208421,0
1712829729.262331791,-2.14681,-1.24004,-0.0680199,-2.01293,-1.14847,-2.84866,0,0.0666667,0.322105,0
1712829729.412488031,-2.14681,-1.24004,-0.0680199,-2.01879,-1.14242,-2.83367,0,0.0888889,0.284211,0
1712829729.562620085,-2.14681,-1.24004,-0.0680199,-2.02431,-1.14283,-2.79719,0,0.0888889,0.284211,0
1712829729.712748641,-2.14681,-1.24004,-0.0680199,-2.02103,-1.14017,-2.77006,0,0.0666667,0.246316,0
1712829729.862892059,-2.14681,-1.24004,-0.0680199,-2.02696,-1.14083,-2.7287,0,0,0.5,0
1712829730.013063253,-2.14681,-1.24004,-0.0680199,-2.03635,-1.14414,-2.70433,0,0.0666667,0.170526,0
1712829730.163204882,-2.14681,-1.24004,-0.0680199,-2.04236,-1.14454,-2.67234,0,0,0.5,0
1712829730.313331929,-2.14681,-1.24004,-0.0680199,-2.03894,-1.14163,-2.64587,0,0,0.5,0
1712829730.463462476,-2.14681,-1.24004,-0.0680199,-2.04529,-1.14222,-2.61122,0,0,0.5,0
1712829730.613585440,-2.14681,-1.24004,-0.0680199,-2.04183,-1.13951,-2.57329,0,0,0.5,0
1712829730.763705488,-2.14681,-1.24004,-0.0680199,-2.0386,-1.14354,-2.52784,0,0,0.5,0
1712829730.913826995,-2.14681,-1.24004,-0.0680199,-2.04029,-1.13903,-2.4733,0,0,0.5,0
1712829731.063966806,-2.14681,-1.24004,-0.0680199,-2.03779,-1.13196,-2.42657,0,0.0888889,0,0
1712829731.214097795,-2.14681,-1.24004,-0.0680199,-2.03509,-1.13617,-2.36072,0,0.0888889,-0.0568421,0
1712829731.364222077,-2.14681,-1.24004,-0.0680199,-2.03185,-1.13361,-2.33154,0,0.0666667,-0.132632,0
1712829731.514343443,-2.14681,-1.24004,-0.0680199,-2.02925,-1.13758,-2.29978,0,0.0888889,-0.0568421,0
1712829731.664464226,-2.14681,-1.24004,-0.0680199,-2.02592,-1.13494,-2.27963,0,0.0888889,-0.0947368,0
1712829731.814581801,-2.14681,-1.24004,-0.0680199,-2.03581,-1.13776,-2.26456,0,0.0888889,-0.0947368,0
1712829731.964706666,-2.14681,-1.24004,-0.0680199,-2.0295,-1.13283,-2.25002,0,0.0666667,-0.170526,0
1712829732.114848359,-2.14681,-1.24004,-0.0680199,-2.03001,-1.13959,-2.23972,0,0,0.5,0
1712829732.264975024,-2.14681,-1.24004,-0.0680199,-2.02718,-1.14391,-2.23479,0,0,0.5,0
1712829732.415105189,-2.14681,-1.24004,-0.0680199,-2.02777,-1.15044,-2.21766,0,0,0.5,0
1712829732.565225439,-2.14681,-1.24004,-0.0680199,-2.03076,-1.14182,-2.2087,0,0,0.5,0
1712829732.715346272,-2.14681,-1.24004,-0.0680199,-2.03151,-1.14863,-2.18783,0,0.0666667,-0.322105,0
1712829732.865468272,-2.14681,-1.24004,-0.0680199,-2.02917,-1.15274,-2.16284,0,0.0666667,-0.322105,0
1712829733.015592968,-2.14681,-1.24004,-0.0680199,-2.02602,-1.15022,-2.15296,0,0.0888889,-0.36,0
1712829733.165734444,-2.14681,-1.24004,-0.0680199,-2.0198,-1.1452,-2.12971,0,0.0666667,-0.36,0
1712829733.315870670,-2.14681,-1.24004,-0.0680199,-2.0206,-1.15191,-2.1273,0,0.0666667,-0.36,0
1712829733.466003397,-2.14681,-1.24004,-0.0680199,-2.01844,-1.15636,-2.14116,0,0.0666667,-0.36,0
1712829733.616131167,-2.14681,-1.24004,-0.0680199,-2.01541,-1.15397,-2.15741,0,0.0888889,-0.284211,0
1712829733.766256312,-2.14681,-1.24004,-0.0680199,-2.01321,-1.15835,-2.17996,0,0.0666667,-0.322105,0
1712829733.916375916,-2.14681,-1.24004,-0.0680199,-2.0203,-1.15899,-2.20509,0,0.0666667,-0.322105,0
1712829734.066497086,-2.14681,-1.24004,-0.0680199,-2.01731,-1.15647,-2.22414,0,0,0.5,0
1712829734.216617088,-2.14681,-1.24004,-0.0680199,-2.01791,-1.16346,-2.25684,0,0,0.5,0
1712829734.366744963,-2.14681,-1.24004,-0.0680199,-2.01548,-1.16816,-2.28704,0,0.0666667,-0.36,0
1712829734.516861466,-2.14681,-1.24004,-0.0680199,-2.01243,-1.16569,-2.25977,0,0.0666667,-0.284211,0
1712829734.666986133,-2.14681,-1.24004,-0.0680199,-2.01937,-1.16645,-2.25672,0,0.0666667,-0.284211,0
1712829734.817169997,-2.14681,-1.24004,-0.0680199,-2.01646,-1.16407,-2.26719,0,0,0.5,0
1712829734.967428220,-2.14681,-1.24004,-0.0680199,-2.01416,-1.16862,-2.25477,0,0.0666667,-0.36,0
1712829735.117645570,-2.14681,-1.24004,-0.0680199,-2.01125,-1.16634,-2.24438,0,0.0666667,-0.322105,0
1712829735.267863813,-2.14681,-1.24004,-0.0680199,-2.00877,-1.17075,-2.25854,0,0.0666667,-0.36,0
1712829735.418069517,-2.14681,-1.24004,-0.0680199,-2.00592,-1.16849,-2.27013,0,0,0.5,0
1712829735.568276096,-2.14681,-1.24004,-0.0680199,-2.01303,-1.16966,-2.29842,0,0.0666667,-0.322105,0
1712829735.720814613,-2.14681,-1.24004,-0.0680199,-2.01384,-1.17663,-2.28801,0,0.0666667,-0.36,0
1712829735.871119461,-2.14681,-1.24004,-0.0680199,-2.00823,-1.1722,-2.30671,0,0.0666667,-0.322105,0
1712829736.021343271,-2.14681,-1.24004,-0.0680199,-2.00876,-1.17927,-2.32759,0,0,0.5,0
1712829736.171580002,-2.14681,-1.24004,-0.0680199,-2.01283,-1.17153,-2.35713,0,0,0.5,0
1712829736.321790490,-2.14681,-1.24004,-0.0680199,-2.01326,-1.17846,-2.35304,0,0,0.5,0
1712829736.471992229,-2.14681,-1.24004,-0.0680199,-2.01096,-1.1832,-2.35767,0,0.0666667,-0.322105,0
1712829736.622239166,-2.14681,-1.24004,-0.0680199,-2.00497,-1.17825,-2.35964,0,0,0.5,0
1712829736.772513222,-2.14681,-1.24004,-0.0680199,-2.01487,-1.18185,-2.3584,0,0,0.5,0
1712829736.924538610,-2.14681,-1.24004,-0.0680199,-2.00946,-1.1775,-2.33351,0,0,0.5,0
1712829737.074766190,-2.14681,-1.24004,-0.0680199,-2.01018,-1.18461,-2.31069,0,0.0666667,-0.36,0
1712829737.224974892,-2.14681,-1.24004,-0.0680199,-2.00475,-1.18032,-2.31071,0,0.0666667,-0.36,0
1712829737.375187968,-2.14681,-1.24004,-0.0680199,-2.00232,-1.17832,-2.30031,0,0,0.5,0
1712829737.525428454,-2.14681,-1.24004,-0.0680199,-2.01015,-1.18013,-2.30907,0,0.0666667,-0.36,0
1712829737.675650278,-2.14681,-1.24004,-0.0680199,-2.0076,-1.17804,-2.3119,0,0,0.5,0
1712829737.828321193,-2.14681,-1.24004,-0.0680199,-2.00587,-1.18324,-2.28987,0,0.0666667,-0.36,0
1712829737.978586173,-2.14681,-1.24004,-0.0680199,-2.00325,-1.18105,-2.27648,0,0.0666667,-0.36,0
1712829738.128853317,-2.14681,-1.24004,-0.0680199,-2.00135,-1.18599,-2.28295,0,0.0666667,-0.36,0
1712829738.279136760,-2.14681,-1.24004,-0.0680199,-1.99856,-1.18375,-2.30035,0,0.0666667,-0.36,0
1712829738.429346431,-2.14681,-1.24004,-0.0680199,-2.00597,-1.1851,-2.3145,0,0.0666667,-0.36,0
1712829738.579604215,-2.14681,-1.24004,-0.0680199,-2.00316,-1.18284,-2.33417,0,0.0666667,-0.36,0
1712829738.729864039,-2.14681,-1.24004,-0.0680199,-2.00126,-1.18794,-2.36883,0,0.0666667,-0.36,0
1712829738.880065838,-2.14681,-1.24004,-0.0680199,-1.99862,-1.1857,-2.38718,0,0.0666667,-0.36,0
1712829739.030336998,-2.14681,-1.24004,-0.0680199,-2.00598,-1.18769,-2.42282,0,0,0.5,0
1712829739.180551842,-2.14681,-1.24004,-0.0680199,-2.00647,-1.19493,-2.46451,0,0,0.5,0
1712829739.330759396,-2.14681,-1.24004,-0.0680199,-2.01387,-1.19729,-2.4895,0,0,0.5,0
1712829739.480969575,-2.14681,-1.24004,-0.0680199,-2.01137,-1.19515,-2.47323,0,0,0.5,0
1712829739.631175963,-2.14681,-1.24004,-0.0680199,-2.00614,-1.19102,-2.45165,0,0,0.5,0
1712829739.781381184,-2.14681,-1.24004,-0.0680199,-2.00688,-1.19843,-2.43116,0,0,0.5,0
1712829739.931593113,-2.14681,-1.24004,-0.0680199,-2.01147,-1.19122,-2.41145,0,0,0.5,0
1712829740.081832430,-2.14681,-1.24004,-0.0680199,-2.01269,-1.19863,-2.39049,0,0,0.5,0
1712829740.232055768,-2.14681,-1.24004,-0.0680199,-2.00773,-1.19452,-2.34105,0,0,0.5,0
1712829740.382279981,-2.14681,-1.24004,-0.0680199,-2.0051,-1.19234,-2.28446,0,0.0888889,-0.36,0
1712829740.532497779,-2.14681,-1.24004,-0.0680199,-2.00004,-1.18839,-2.24779,0,0.0888889,-0.36,0
1712829740.682709746,-2.14681,-1.24004,-0.0680199,-2.00134,-1.19567,-2.2106,0,0.0888889,-0.36,0
1712829740.832923462,-2.14681,-1.24004,-0.0680199,-1.99659,-1.1919,-2.20486,0,0.0888889,-0.36,0
1712829740.984362699,-2.14681,-1.24004,-0.0680199,-1.99791,-1.19925,-2.20036,0,0.0888889,-0.36,0
1712829741.134604171,-2.14681,-1.24004,-0.0680199,-2.0023,-1.19176,-2.20853,0,0.0888889,-0.36,0
1712829741.284817449,-2.14681,-1.24004,-0.0680199,-1.99993,-1.18993,-2.22432,0,0.0888889,-0.36,0
1712829741.435036558,-2.14681,-1.24004,-0.0680199,-1.99894,-1.19564,-2.24901,0,0.0888889,-0.36,0
1712829741.585245171,-2.14681,-1.24004,-0.0680199,-1.99637,-1.19354,-2.27102,0,0,0.5,0
1712829741.735450576,-2.14681,-1.24004,-0.0680199,-2.00809,-1.20521,-2.30553,0,0,0.5,0
1712829741.885649567,-2.14681,-1.24004,-0.0680199,-2.006,-1.20348,-2.31305,0,0,0.5,0
1712829742.036620909,-2.14681,-1.24004,-0.0680199,-2.00473,-1.20896,-2.28525,0,0,0.5,0
1712829742.186888083,-2.14681,-1.24004,-0.0680199,-2.00228,-1.20693,-2.26271,0,0.0888889,-0.36,0
1712829742.337121141,-2.14681,-1.24004,-0.0680199,-2.00136,-1.21252,-2.23961,0,0,0.5,0
1712829742.487246317,-2.14681,-1.24004,-0.0680199,-2.00827,-1.20689,-2.22934,0,0,0.5,0
1712829742.637366827,-2.14681,-1.24004,-0.0680199,-2.00731,-1.21228,-2.19794,0,0,0.5,0
1712829742.787486463,-2.14681,-1.24004,-0.0680199,-2.00507,-1.21062,-2.15567,0,0,0.5,0
1712829742.937604057,-2.14681,-1.24004,-0.0680199,-2.00077,-1.20714,-2.10597,0,0,0.5,0
1712829743.088614825,-2.14681,-1.24004,-0.0680199,-2.00244,-1.21449,-2.0572,0,0,0.5,0
1712829743.238769207,-2.14681,-1.24004,-0.0680199,-1.9979,-1.21068,-2.01654,0,0.0666667,-0.36,0
1712829743.388895014,-2.14681,-1.24004,-0.0680199,-1.99574,-1.20889,-1.93909,0,0.0666667,-0.36,0
1712829743.539019655,-2.14681,-1.24004,-0.0680199,-1.99136,-1.20513,-1.9396,0,0.0666667,-0.36,0
1712829743.689135549,-2.14681,-1.24004,-0.0680199,-1.9889,-1.20306,-1.93784,0,0.0666667,-0.36,0
1712829743.839254358,-2.14681,-1.24004,-0.0680199,-1.98856,-1.20871,-1.94042,0,0.0666667,-0.36,0
1712829743.989370835,-2.14681,-1.24004,-0.0680199,-1.98651,-1.20682,-1.9576,0,0.0666667,-0.36,0
1712829744.140300181,-2.14681,-1.24004,-0.0680199,-1.9858,-1.21217,-1.97439,0,0.0666667,-0.36,0
1712829744.290444785,-2.14681,-1.24004,-0.0680199,-1.9873,-1.21959,-1.9984,0,0.0888889,-0.36,0
1712829744.440574811,-2.14681,-1.24004,-0.0680199,-1.98304,-1.21589,-2.01608,0,0.0666667,-0.36,0
1712829744.590703962,-2.14681,-1.24004,-0.0680199,-1.98437,-1.22339,-2.04429,0,0.0666667,-0.36,0
1712829744.740827574,-2.14681,-1.24004,-0.0680199,-1.98375,-1.22919,-2.06601,0,0.0666667,-0.36,0
1712829744.890948561,-2.14681,-1.24004,-0.0680199,-1.98516,-1.23678,-2.11151,0,0.0666667,-0.36,0
1712829745.041066613,-2.14681,-1.24004,-0.0680199,-1.983,-1.23501,-2.12799,0,0.0888889,-0.36,0
1712829745.191186070,-2.14681,-1.24004,-0.0680199,-1.99484,-1.24691,-2.19226,0,0.0888889,-0.36,0
1712829745.341310192,-2.14681,-1.24004,-0.0680199,-1.99048,-1.24332,-2.23227,0,0.0666667,-0.36,0
1712829745.491465803,-2.14681,-1.24004,-0.0680199,-1.99227,-1.25141,-2.27733,0,0.0666667,-0.36,0
1712829745.641683519,-2.14681,-1.24004,-0.0680199,-2.00404,-1.26372,-2.32938,0,0,0.5,0
1712829745.791807933,-2.14681,-1.24004,-0.0680199,-2.00198,-1.262,-2.37275,0,0,0.5,0
1712829745.941948966,-2.14681,-1.24004,-0.0680199,-2.00123,-1.26806,-2.36472,0,0.0888889,-0.36,0
1712829746.092077358,-2.14681,-1.24004,-0.0680199,-2.00837,-1.26286,-2.33818,0,0,0.5,0
1712829746.242256883,-2.14681,-1.24004,-0.0680199,-2.00784,-1.26906,-2.32687,0,0,0.5,0
1712829746.392375179,-2.14681,-1.24004,-0.0680199,-2.00582,-1.26738,-2.32111,0,0,0.5,0
1712829746.542496390,-2.14681,-1.24004,-0.0680199,-2.00523,-1.27345,-2.29643,0,0,0.5,0
1712829746.692611187,-2.14681,-1.24004,-0.0680199,-2.00324,-1.27181,-2.27611,0,0,0.5,0
1712829746.844052612,-2.14681,-1.24004,-0.0680199,-1.99929,-1.26843,-2.2242,0,0.0666667,-0.36,0
1712829746.994197149,-2.14681,-1.24004,-0.0680199,-1.9975,-1.26671,-2.18714,0,0.0666667,-0.36,0
1712829747.144321420,-2.14681,-1.24004,-0.0680199,-1.99717,-1.2725,-2.16617,0,0.0666667,-0.36,0
1712829747.294447083,-2.14681,-1.24004,-0.0680199,-1.9953,-1.2709,-2.16556,0,0,0.5,0
1712829747.444569247,-2.14681,-1.24004,-0.0680199,-1.99934,-1.26448,-2.17144,0,0,0.5,0
1712829747.594687329,-2.14681,-1.24004,-0.0680199,-2.00043,-1.27221,-2.16338,0,0.0666667,-0.36,0
1712829747.744811533,-2.14681,-1.24004,-0.0680199,-1.99578,-1.26833,-2.13298,0,0.0888889,-0.36,0
1712829747.894936613,-2.14681,-1.24004,-0.0680199,-1.99727,-1.27581,-2.12451,0,0.0888889,-0.36,0
1712829748.045074529,-2.14681,-1.24004,-0.0680199,-1.99291,-1.27252,-2.13215,0,0.0888889,-0.36,0
1712829748.195201212,-2.14681,-1.24004,-0.0680199,-1.99436,-1.28021,-2.1486,0,0.0888889,-0.36,0
1712829748.345336350,-2.14681,-1.24004,-0.0680199,-1.9922,-1.28257,-2.16686,0,0.0888889,-0.36,0
1712829748.495461284,-2.14681,-1.24004,-0.0680199,-1.99151,-1.28485,-2.1879,0,0.0888889,-0.36,0
1712829748.645603419,-2.14681,-1.24004,-0.0680199,-1.99983,-1.28731,-2.21995,0,0.0666667,-0.36,0
1712829748.795746138,-2.14681,-1.24004,-0.0680199,-2.00278,-1.30047,-2.25286,0,0.0666667,-0.36,0
1712829748.945877195,-2.14681,-1.24004,-0.0680199,-1.99911,-1.30055,-2.28226,0,0.0666667,-0.36,0
1712829749.096014949,-2.14681,-1.24004,-0.0680199,-2.00944,-1.30495,-2.324,0,0,1,0
1712829749.246138926,-2.14681,-1.24004,-0.0680199,-2.00813,-1.31082,-2.35594,0,0,1,0
1712829749.396269317,-2.14681,-1.24004,-0.0680199,-2.00941,-1.31854,-2.37709,0,0,1,0
1712829749.546395918,-2.14681,-1.24004,-0.0680199,-2.01549,-1.31153,-2.31693,0,0,1,0
1712829749.696517562,-2.14681,-1.24004,-0.0680199,-2.01732,-1.31921,-2.24616,0,0,1,0
1712829749.846646787,-2.14681,-1.24004,-0.0680199,-2.01397,-1.31578,-2.17018,0,0,1,0
1712829749.996773388,-2.14681,-1.24004,-0.0680199,-2.01608,-1.3233,-2.083,0,0,1,0
1712829750.146895632,-2.14681,-1.24004,-0.0680199,-2.01016,-1.31996,-1.95765,0,0,1,0
1712829750.297027167,-2.14681,-1.24004,-0.0680199,-2.008,-1.31832,-1.84184,0,0,1,0
1712829750.447153162,-2.14681,-1.24004,-0.0680199,-2.0029,-1.31504,-1.69811,0,0,1,0
1712829750.597276242,-2.14681,-1.24004,-0.0680199,-2.00439,-1.3224,-1.59623,0,0,1,0
1712829750.747392324,-2.14681,-1.24004,-0.0680199,-1.99877,-1.31899,-1.45978,0,0,1,0
1712829750.897523567,-2.14681,-1.24004,-0.0680199,-1.99592,-1.31731,-1.35209,0,0,1,0
1712829751.047732699,-2.14681,-1.24004,-0.0680199,-1.99015,-1.31399,-1.20738,0,0,1,0
1712829751.197980891,-2.14681,-1.24004,-0.0680199,-1.98743,-1.31229,-1.08943,0,0,1,0
1712829751.348332002,-2.14681,-1.24004,-0.0680199,-1.98152,-1.30907,-0.938669,0,0,1,0
1712829751.498557160,-2.14681,-1.24004,-0.0680199,-1.979,-1.30732,-0.800253,0,0,1,0
1712829751.648766866,-2.14681,-1.24004,-0.0680199,-1.97346,-1.30403,-0.664752,0,0,1,0
1712829751.798976280,-2.14681,-1.24004,-0.0680199,-1.97038,-1.30251,-0.504959,0,0,1,0
1712829751.949180738,-2.14681,-1.24004,-0.0680199,-1.96683,-1.30001,-0.392235,0,0,1,0
1712829752.099388190,-2.14681,-1.24004,-0.0680199,-1.96452,-1.29903,-0.269918,0,0,1,0
1712829752.249602647,-2.14681,-1.24004,-0.0680199,-1.96079,-1.29673,-0.13446,0,0,1,0
1712829752.399852382,-2.14681,-1.24004,-0.0680199,-1.9588,-1.29564,-0.0368112,0,0,1,0
1712829752.550062465,-2.14681,-1.24004,-0.0680199,-1.95472,-1.29351,0.135911,0,0,1,0
1712829752.700283336,-2.14681,-1.24004,-0.0680199,-1.95464,-1.29375,0.255054,0,0,1,0
1712829752.850401870,-2.14681,-1.24004,-0.0680199,-1.95418,-1.29436,0.384097,0,0,1,0
1712829753.000523320,-2.14681,-1.24004,-0.0680199,-1.95409,-1.29459,0.513407,0,0,1,0
1712829753.150641422,-2.14681,-1.24004,-0.0680199,-1.95084,-1.29236,0.646886,0,0,1,0
1712829753.300760675,-2.14681,-1.24004,-0.0680199,-1.9497,-1.29115,0.78006,0,0,1,0
1712829753.450891590,-2.14681,-1.24004,-0.0680199,-1.94633,-1.28829,0.942771,0,0,1,0
1712829753.601029503,-2.14681,-1.24004,-0.0680199,-1.94454,-1.28689,1.03626,0,0,1,0
1712829753.751159836,-2.14681,-1.24004,-0.0680199,-1.94165,-1.28376,1.18121,0,0,1,0
1712829753.901297748,-2.14681,-1.24004,-0.0680199,-1.94007,-1.28227,1.29766,0,0,1,0
1712829754.051432524,-2.14681,-1.24004,-0.0680199,-1.93696,-1.2798,1.40048,0,0,1,0
1712829754.201568577,-2.14681,-1.24004,-0.0680199,-1.93545,-1.27857,1.55343,0,0,1,0
1712829754.351690053,-2.14681,-1.24004,-0.0680199,-1.93244,-1.27611,1.70924,0,0,1,0
1712829754.501807739,-2.14681,-1.24004,-0.0680199,-1.93094,-1.27488,1.81264,0,0,1,0
1712829754.651927174,-2.14681,-1.24004,-0.0680199,-1.9278,-1.27251,1.95182,0,0,1,0
1712829754.802051274,-2.14681,-1.24004,-0.0680199,-1.92647,-1.27154,2.12371,0,0,1,0
1712829754.952204529,-2.14681,-1.24004,-0.0680199,-1.92342,-1.26924,2.23209,0,0,1,0
1712829755.102334032,-2.14681,-1.24004,-0.0680199,-1.92214,-1.26804,2.36707,0,0,1,0
1712829755.252461272,-2.14681,-1.24004,-0.0680199,-1.91926,-1.26553,2.50474,0,0,1,0
1712829755.402583556,-2.14681,-1.24004,-0.0680199,-1.91782,-1.26434,2.60183,0,0,1,0
1712829755.552719543,-2.14681,-1.24004,-0.0680199,-1.91486,-1.26195,2.76947,0,0,1,0
1712829755.702851448,-2.14681,-1.24004,-0.0680199,-1.9136,-1.26083,2.9168,0,0,1,0
1712829755.852969359,-2.14681,-1.24004,-0.0680199,-1.9104,-1.25815,3.02294,0,0,1,0
1712829756.003096017,-2.14681,-1.24004,-0.0680199,-1.90911,-1.25696,3.13246,0,0,1,0
1712829756.153244224,-2.14681,-1.24004,-0.0680199,-1.90625,-1.25454,-2.98945,0,0,1,0
1712829756.303380185,-2.14681,-1.24004,-0.0680199,-1.90512,-1.25329,-2.86007,0,0,1,0
1712829756.453543260,-2.14681,-1.24004,-0.0680199,-1.90242,-1.25081,-2.74959,0,0,1,0
1712829756.603685343,-2.14681,-1.24004,-0.0680199,-1.90071,-1.24964,-2.60033,0,0,0.961495,0
1712829756.753812266,-2.14681,-1.24004,-0.0680199,-1.89801,-1.24717,-2.43079,0,0,0.777375,0
1712829756.903945603,-2.14681,-1.24004,-0.0680199,-1.89668,-1.24599,-2.30477,0,0.0888889,-0.36,0
1712829757.054063295,-2.14681,-1.24004,-0.0680199,-1.89426,-1.24368,-2.18565,0,0.0888889,-0.36,0
1712829757.204194895,-2.14681,-1.24004,-0.0680199,-1.88646,-1.25009,-2.15192,0,0.0666667,-0.36,0
1712829757.354313667,-2.14681,-1.24004,-0.0680199,-1.89132,-1.25379,-2.14522,0,0.0666667,-0.36,0
1712829757.504471797,-2.14681,-1.24004,-0.0680199,-1.8899,-1.25247,-2.14049,0,0.155556,-0.36,0
1712829757.654590278,-2.14681,-1.24004,-0.0680199,-1.89479,-1.25615,-2.13823,0,0.0666667,-0.36,0
1712829757.804709632,-2.14681,-1.24004,-0.0680199,-1.89336,-1.25481,-2.14924,0,0.0666667,-0.36,0
1712829757.954825197,-2.14681,-1.24004,-0.0680199,-1.89822,-1.25844,-2.16488,0,0.111111,-0.36,0
1712829758.104974802,-2.14681,-1.24004,-0.0680199,-1.89928,-1.27242,-2.19199,0,0.0666667,-0.36,0
1712829758.256143778,-2.14681,-1.24004,-0.0680199,-1.90643,-1.27831,-2.2067,0,0.111111,-0.36,0
1712829758.406383590,-2.14681,-1.24004,-0.0680199,-1.91402,-1.28456,-2.23625,0,0.0666667,-0.36,0
1712829758.556590166,-2.14681,-1.24004,-0.0680199,-1.922,-1.29169,-2.26001,0,0.0888889,-0.36,0
1712829758.706815984,-2.14681,-1.24004,-0.0680199,-1.92276,-1.30545,-2.29475,0,0.133333,-0.36,0
1712829758.857017894,-2.14681,-1.24004,-0.0680199,-1.93726,-1.31806,-2.34602,0,0.0666667,-0.36,0
1712829759.007224457,-2.14681,-1.24004,-0.0680199,-1.94831,-1.32771,-2.38445,0,0.0888889,-0.36,0
1712829759.157429947,-2.14681,-1.24004,-0.0680199,-1.95799,-1.33664,-2.41972,0,0.0888889,-0.36,0
1712829759.307701910,-2.14681,-1.24004,-0.0680199,-1.9645,-1.34269,-2.46737,0,0.0666667,-0.36,0
1712829759.457921395,-2.14681,-1.24004,-0.0680199,-1.96951,-1.34756,-2.50719,0,0.0666667,-0.36,0
1712829759.608132133,-2.14681,-1.24004,-0.0680199,-1.97541,-1.35302,-2.54751,0,0.0666667,-0.36,0
1712829759.758346661,-2.14681,-1.24004,-0.0680199,-1.98664,-1.34973,-2.5896,0,0.0666667,-0.36,0
1712829759.908550985,-2.14681,-1.24004,-0.0680199,-1.9911,-1.35372,-2.63931,0,0.0666667,-0.36,0
1712829760.058753969,-2.14681,-1.24004,-0.0680199,-1.99702,-1.35923,-2.69483,0,0.0666667,-0.36,0
1712829760.208956073,-2.14681,-1.24004,-0.0680199,-2.00183,-1.364,-2.72877,0,0.0666667,-0.36,0
1712829760.359100451,-2.14681,-1.24004,-0.0680199,-2.01454,-1.36254,-2.7705,0,0.0666667,-0.36,0
1712829760.509231710,-2.14681,-1.24004,-0.0680199,-2.01952,-1.36761,-2.81382,0,0.0666667,-0.36,0
1712829760.659360052,-2.14681,-1.24004,-0.0680199,-2.03258,-1.36622,-2.85778,0,0.0666667,-0.36,0
1712829760.809481107,-2.14681,-1.24004,-0.0680199,-2.03573,-1.36938,-2.90955,0,0.0666667,-0.36,0
1712829760.959596330,-2.14681,-1.24004,-0.0680199,-2.04296,-1.36248,-2.94665,0,0.0666667,-0.36,0
1712829761.109717071,-2.14681,-1.24004,-0.0680199,-2.04759,-1.36721,-2.98445,0,0.0888889,-0.36,0
1712829761.259839725,-2.14681,-1.24004,-0.0680199,-2.06047,-1.36622,-3.02166,0,0.0666667,-0.36,0
1712829761.409978706,-2.14681,-1.24004,-0.0680199,-2.06613,-1.37236,-3.06671,0,0,0.5,0
1712829761.560115937,-2.14681,-1.24004,-0.0680199,-2.08089,-1.37184,-3.11456,0,0.0666667,-0.36,0
1712829761.710240340,-2.14681,-1.24004,-0.0680199,-2.08602,-1.37725,-3.13376,0,0,0.5,0
1712829761.860364452,-2.14681,-1.24004,-0.0680199,-2.09233,-1.36941,3.13528,0,0,0.5,0
1712829762.010442188,-2.14681,-1.24004,-0.0680199,-2.09742,-1.37496,3.10944,0,0,0.5,0
1712829762.160619822,-2.14681,-1.24004,-0.0680199,-2.10373,-1.36718,3.12329,0,0,0.5,0
1712829762.310823695,-2.14681,-1.24004,-0.0680199,-2.10079,-1.36497,-3.14019,0,0,0.5,0
1712829762.460959055,-2.14681,-1.24004,-0.0680199,-2.09936,-1.36386,-3.12932,0,0,0.5,0
1712829762.611087418,-2.14681,-1.24004,-0.0680199,-2.10365,-1.36881,-3.10027,0,0,0.5,0
1712829762.761213740,-2.14681,-1.24004,-0.0680199,-2.10942,-1.36065,-3.0677,0,0,0.5,0
1712829762.911335980,-2.14681,-1.24004,-0.0680199,-2.10703,-1.3586,-3.0183,0,0,0.5,0
1712829763.061455447,-2.14681,-1.24004,-0.0680199,-2.1059,-1.35777,-2.97801,0,0,0.5,0
1712829763.211574092,-2.14681,-1.24004,-0.0680199,-2.10319,-1.35587,-2.94735,0,0,0.5,0
1712829763.361695945,-2.14681,-1.24004,-0.0680199,-2.10195,-1.35476,-2.86815,0,0,0.5,0
1712829763.511860363,-2.14681,-1.24004,-0.0680199,-2.10718,-1.36015,-2.81743,0,0,0.5,0
1712829763.662005831,-2.14681,-1.24004,-0.0680199,-2.10584,-1.35917,-2.75516,0,0,0.5,0
1712829763.812178412,-2.14681,-1.24004,-0.0680199,-2.10336,-1.35746,-2.69469,0,0,0.5,0
1712829763.962299390,-2.14681,-1.24004,-0.0680199,-2.10214,-1.35649,-2.63343,0,0,0.5,0
1712829764.112421271,-2.14681,-1.24004,-0.0680199,-2.09951,-1.35437,-2.5569,0,0,0.5,0
1712829764.262542468,-2.14681,-1.24004,-0.0680199,-2.09816,-1.35315,-2.49826,0,0,0.5,0
1712829764.413147045,-2.14681,-1.24004,-0.0680199,-2.09685,-1.3522,-2.43094,0,0,0.5,0
1712829764.563305269,-2.14681,-1.24004,-0.0680199,-2.09418,-1.3501,-2.36031,0,0,0.5,0
1712829764.713440461,-2.14681,-1.24004,-0.0680199,-2.09154,-1.348,-2.29259,0,0,0.5,0
1712829764.863572154,-2.14681,-1.24004,-0.0680199,-2.09022,-1.34684,-2.23201,0,0,0.5,0
1712829765.013715485,-2.14681,-1.24004,-0.0680199,-2.08793,-1.34471,-2.1671,0,0,0.5,0

View File

@ -1,134 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1712893799.843726174,-2.14681,-1.24004,-0.0680199,0.42981,0.0131569,-0.000630633,0,0.0666667,-0.246316,0
1712893799.993867420,-2.14681,-1.24004,-0.0680199,0.430304,0.013172,-0.0033217,0,0.0666667,-0.246316,0
1712893800.143998457,-2.14681,-1.24004,-0.0680199,0.431289,0.0132022,-0.0259321,0,0.0666667,-0.246316,0
1712893800.294123369,-2.14681,-1.24004,-0.0680199,0.435949,0.0132531,-0.042643,0,0.0666667,-0.36,0
1712893800.444256157,-2.14681,-1.24004,-0.0680199,0.436901,0.0132827,-0.0806737,0,0.0666667,-0.36,0
1712893800.594388070,-2.14681,-1.24004,-0.0680199,0.447344,0.0133934,-0.10993,0,0.0666667,-0.36,0
1712893800.744516191,-2.14681,-1.24004,-0.0680199,0.458195,0.013581,-0.148498,0,0.0666667,-0.36,0
1712893800.894641103,-2.14681,-1.24004,-0.0680199,0.468584,0.0137821,-0.17914,0,0.0666667,-0.36,0
1712893801.044775349,-2.14681,-1.24004,-0.0680199,0.479305,0.0140512,-0.215075,0,0.0666667,-0.36,0
1712893801.194904055,-2.14681,-1.24004,-0.0680199,0.479651,0.0140636,-0.245486,0,0.0666667,-0.36,0
1712893801.345028676,-2.14681,-1.24004,-0.0680199,0.500521,0.00468899,-0.3129,0,0.0666667,-0.36,0
1712893801.495144256,-2.14681,-1.24004,-0.0680199,0.500802,0.00472998,-0.341367,0,0.0666667,-0.36,0
1712893801.645278212,-2.14681,-1.24004,-0.0680199,0.511308,0.00514883,-0.37801,0,0.0666667,-0.36,0
1712893801.795402833,-2.14681,-1.24004,-0.0680199,0.521951,-0.00436982,-0.42628,0,0.0666667,-0.36,0
1712893801.945532122,-2.14681,-1.24004,-0.0680199,0.532341,-0.00379203,-0.468279,0,0.0666667,-0.36,0
1712893802.095660828,-2.14681,-1.24004,-0.0680199,0.533041,-0.0137119,-0.499106,0,0.0666667,-0.36,0
1712893802.245855453,-2.14681,-1.24004,-0.0680199,0.543331,-0.0130122,-0.558696,0,0.0666667,-0.36,0
1712893802.396079539,-2.14681,-1.24004,-0.0680199,0.554057,-0.0222867,-0.59635,0,0.0666667,-0.36,0
1712893802.546305082,-2.14681,-1.24004,-0.0680199,0.564269,-0.0213587,-0.648189,0,0.0666667,-0.36,0
1712893802.696535584,-2.14681,-1.24004,-0.0680199,0.565023,-0.0311995,-0.673924,0,0.0666667,-0.36,0
1712893802.846754419,-2.14681,-1.24004,-0.0680199,0.575136,-0.030183,-0.732318,0,0.0666667,-0.36,0
1712893802.996982004,-2.14681,-1.24004,-0.0680199,0.585916,-0.0392021,-0.784426,0,0.0666667,-0.36,0
1712893803.147205798,-2.14681,-1.24004,-0.0680199,0.586834,-0.0487802,-0.827234,0,0.0666667,-0.322105,0
1712893803.297430176,-2.14681,-1.24004,-0.0680199,0.586857,-0.0485776,-0.86267,0,0.0666667,-0.36,0
1712893803.447654554,-2.14681,-1.24004,-0.0680199,0.597688,-0.0572077,-0.905626,0,0.0666667,-0.36,0
1712893803.597930559,-2.14681,-1.24004,-0.0680199,0.598591,-0.0669128,-0.959264,0,0.0666667,-0.36,0
1712893803.748152895,-2.14681,-1.24004,-0.0680199,0.609432,-0.0753442,-1.00956,0,0.0666667,-0.36,0
1712893803.898388065,-2.14681,-1.24004,-0.0680199,0.610046,-0.0808783,-1.05962,0,0.0666667,-0.36,0
1712893804.048628777,-2.14681,-1.24004,-0.0680199,0.620259,-0.0832489,-1.10045,0,0.0666667,-0.36,0
1712893804.198861323,-2.14681,-1.24004,-0.0680199,0.621385,-0.0928352,-1.14377,0,0.0666667,-0.36,0
1712893804.349087160,-2.14681,-1.24004,-0.0680199,0.622503,-0.102041,-1.18282,0,0.0666667,-0.36,0
1712893804.499313581,-2.14681,-1.24004,-0.0680199,0.623812,-0.111574,-1.21482,0,0.0666667,-0.36,0
1712893804.649566253,-2.14681,-1.24004,-0.0680199,0.624775,-0.117687,-1.2577,0,0.0666667,-0.36,0
1712893804.799793257,-2.14681,-1.24004,-0.0680199,0.634971,-0.118637,-1.29263,0,0.0666667,-0.36,0
1712893804.950023761,-2.14681,-1.24004,-0.0680199,0.636462,-0.127594,-1.34226,0,0.0666667,-0.36,0
1712893805.100246974,-2.14681,-1.24004,-0.0680199,0.63813,-0.136951,-1.37356,0,0.155556,-0.36,0
1712893805.250478937,-2.14681,-1.24004,-0.0680199,0.639801,-0.145777,-1.42155,0,0.155556,-0.36,0
1712893805.400709151,-2.14681,-1.24004,-0.0680199,0.633954,-0.166887,-1.46987,0,0.0666667,-0.36,0
1712893805.550942281,-2.14681,-1.24004,-0.0680199,0.638193,-0.185189,-1.51102,0,0.2,-0.36,0
1712893805.701168411,-2.14681,-1.24004,-0.0680199,0.638053,-0.184565,-1.54071,0,0.155556,-0.36,0
1712893805.851396291,-2.14681,-1.24004,-0.0680199,0.637498,-0.211427,-1.58293,0,0.155556,-0.36,0
1712893806.001616004,-2.14681,-1.24004,-0.0680199,0.638034,-0.22377,-1.61319,0,0.2,-0.36,0
1712893806.151868387,-2.14681,-1.24004,-0.0680199,0.633794,-0.244271,-1.65472,0,0.2,-0.36,0
1712893806.302101518,-2.14681,-1.24004,-0.0680199,0.63956,-0.26254,-1.68755,0,0.2,-0.36,0
1712893806.452327941,-2.14681,-1.24004,-0.0680199,0.626567,-0.286027,-1.71959,0,0.177778,-0.36,0
1712893806.602561072,-2.14681,-1.24004,-0.0680199,0.623641,-0.307256,-1.7384,0,0.2,-0.36,0
1712893806.752790704,-2.14681,-1.24004,-0.0680199,0.621326,-0.3276,-1.73962,0,0.2,-0.36,0
1712893806.903011001,-2.14681,-1.24004,-0.0680199,0.620405,-0.348893,-1.73059,0,0.155556,-0.36,0
1712893807.053234216,-2.14681,-1.24004,-0.0680199,0.611992,-0.373649,-1.72925,0,0.2,-0.36,0
1712893807.203510808,-2.14681,-1.24004,-0.0680199,0.605082,-0.400163,-1.72914,0,0.155556,-0.36,0
1712893807.353739857,-2.14681,-1.24004,-0.0680199,0.607952,-0.419748,-1.72944,0,0.2,-0.36,0
1712893807.503964531,-2.14681,-1.24004,-0.0680199,0.597894,-0.438332,-1.72851,0,0.155556,-0.36,0
1712893807.654190080,-2.14681,-1.24004,-0.0680199,0.602756,-0.457221,-1.7284,0,0.177778,-0.36,0
1712893807.804420296,-2.14681,-1.24004,-0.0680199,0.596968,-0.487757,-1.72852,0,0.155556,-0.36,0
1712893807.954644970,-2.14681,-1.24004,-0.0680199,0.601183,-0.494373,-1.72842,0,0.155556,-0.36,0
1712893808.104868186,-2.14681,-1.24004,-0.0680199,0.592833,-0.525482,-1.72755,0,0.133333,-0.36,0
1712893808.255094611,-2.14681,-1.24004,-0.0680199,0.589761,-0.532571,-1.72761,0,0.133333,-0.36,0
1712893808.405338828,-2.14681,-1.24004,-0.0680199,0.585789,-0.552879,-1.72788,0,0.133333,-0.36,0
1712893808.555561461,-2.14681,-1.24004,-0.0680199,0.583082,-0.571591,-1.72808,0,0.133333,-0.36,0
1712893808.705787886,-2.14681,-1.24004,-0.0680199,0.58159,-0.591983,-1.72801,0,0.133333,-0.36,0
1712893808.856011686,-2.14681,-1.24004,-0.0680199,0.576895,-0.59698,-1.72807,0,0.133333,-0.36,0
1712893809.006245695,-2.14681,-1.24004,-0.0680199,0.577151,-0.617487,-1.7279,0,0.0666667,-0.36,0
1712893809.156477371,-2.14681,-1.24004,-0.0680199,0.569525,-0.631945,-1.72781,0,0.0666667,-0.36,0
1712893809.306700880,-2.14681,-1.24004,-0.0680199,0.575609,-0.642603,-1.72839,0,0.0666667,-0.36,0
1712893809.456937807,-2.14681,-1.24004,-0.0680199,0.572782,-0.648055,-1.72942,0,0.0666667,-0.36,0
1712893809.607171817,-2.14681,-1.24004,-0.0680199,0.570278,-0.65563,-1.73035,0,0.0666667,-0.36,0
1712893809.757395326,-2.14681,-1.24004,-0.0680199,0.568293,-0.661211,-1.73064,0,0.0666667,-0.36,0
1712893809.907673379,-2.14681,-1.24004,-0.0680199,0.565539,-0.678872,-1.73141,0,0.0666667,-0.36,0
1712893810.057905931,-2.14681,-1.24004,-0.0680199,0.564998,-0.684518,-1.73196,0,0.0666667,-0.36,0
1712893810.208133524,-2.14681,-1.24004,-0.0680199,0.564855,-0.692342,-1.73213,0,0.0666667,-0.36,0
1712893810.358412162,-2.14681,-1.24004,-0.0680199,0.555327,-0.698116,-1.73317,0,0.0666667,-0.36,0
1712893810.508661632,-2.14681,-1.24004,-0.0680199,0.555846,-0.701774,-1.73377,0,0.0666667,-0.36,0
1712893810.658899434,-2.14681,-1.24004,-0.0680199,0.557547,-0.711309,-1.73541,0,0.0666667,-0.36,0
1712893810.809129653,-2.14681,-1.24004,-0.0680199,0.557656,-0.709051,-1.73564,0,0.0666667,-0.36,0
1712893810.959358122,-2.14681,-1.24004,-0.0680199,0.551078,-0.721795,-1.7361,0,0.0888889,-0.36,0
1712893811.109601467,-2.14681,-1.24004,-0.0680199,0.552166,-0.723732,-1.73697,0,0.0888889,-0.36,0
1712893811.259824395,-2.14681,-1.24004,-0.0680199,0.555104,-0.728747,-1.73688,0,0.0666667,-0.36,0
1712893811.410049657,-2.14681,-1.24004,-0.0680199,0.548959,-0.738824,-1.73689,0,0.0666667,-0.36,0
1712893811.560181581,-2.14681,-1.24004,-0.0680199,0.552856,-0.743427,-1.73664,0,0.0666667,-0.36,0
1712893811.710312631,-2.14681,-1.24004,-0.0680199,0.547996,-0.754053,-1.73705,0,0.0666667,-0.36,0
1712893811.860443097,-2.14681,-1.24004,-0.0680199,0.539451,-0.753918,-1.73723,0,0.0666667,-0.36,0
1712893812.010572688,-2.14681,-1.24004,-0.0680199,0.544413,-0.760263,-1.73749,0,0.0888889,-0.36,0
1712893812.160700530,-2.14681,-1.24004,-0.0680199,0.541776,-0.769067,-1.73848,0,0.0666667,-0.36,0
1712893812.310828956,-2.14681,-1.24004,-0.0680199,0.541934,-0.766626,-1.73967,0,0.0888889,-0.36,0
1712893812.460967298,-2.14681,-1.24004,-0.0680199,0.540344,-0.77569,-1.74121,0,0.0888889,-0.36,0
1712893812.611098349,-2.14681,-1.24004,-0.0680199,0.539685,-0.787222,-1.74291,0,0.0666667,-0.36,0
1712893812.761225899,-2.14681,-1.24004,-0.0680199,0.540182,-0.796061,-1.74508,0,0.0666667,-0.36,0
1712893812.911360158,-2.14681,-1.24004,-0.0680199,0.533604,-0.800879,-1.74553,0,0.0666667,-0.36,0
1712893813.061491501,-2.14681,-1.24004,-0.0680199,0.535514,-0.80975,-1.74548,0,0.0666667,-0.36,0
1712893813.211621094,-2.14681,-1.24004,-0.0680199,0.529744,-0.815219,-1.74559,0,0.0666667,-0.36,0
1712893813.361747771,-2.14681,-1.24004,-0.0680199,0.524693,-0.818405,-1.74565,0,0.0666667,-0.36,0
1712893813.511882906,-2.14681,-1.24004,-0.0680199,0.528685,-0.82958,-1.74642,0,0.0666667,-0.36,0
1712893813.662081043,-2.14681,-1.24004,-0.0680199,0.529082,-0.824323,-1.74857,0,0.0666667,-0.36,0
1712893813.812212678,-2.14681,-1.24004,-0.0680199,0.524976,-0.830698,-1.74988,0,0.0666667,-0.36,0
1712893813.962346063,-2.14681,-1.24004,-0.0680199,0.521591,-0.834646,-1.75113,0,0.0666667,-0.36,0
1712893814.112476824,-2.14681,-1.24004,-0.0680199,0.518777,-0.838745,-1.75478,0,0.0666667,-0.36,0
1712893814.262604960,-2.14681,-1.24004,-0.0680199,0.525861,-0.848402,-1.7573,0,0.0666667,-0.36,0
1712893814.412734554,-2.14681,-1.24004,-0.0680199,0.524104,-0.852748,-1.75933,0,0.0666667,-0.36,0
1712893814.562861815,-2.14681,-1.24004,-0.0680199,0.522599,-0.859892,-1.7613,0,0.0666667,-0.36,0
1712893814.712992576,-2.14681,-1.24004,-0.0680199,0.51199,-0.863213,-1.76285,0,0.0666667,-0.36,0
1712893814.863120420,-2.14681,-1.24004,-0.0680199,0.511897,-0.866043,-1.76492,0,0.0666667,-0.36,0
1712893815.013250015,-2.14681,-1.24004,-0.0680199,0.512156,-0.864932,-1.76728,0,0.0666667,-0.36,0
1712893815.163380193,-2.14681,-1.24004,-0.0680199,0.512318,-0.872154,-1.77239,0,0.0666667,-0.36,0
1712893815.313511539,-2.14681,-1.24004,-0.0680199,0.51311,-0.87937,-1.77718,0,0.0666667,-0.36,0
1712893815.463638801,-2.14681,-1.24004,-0.0680199,0.514678,-0.883718,-1.77754,0,0.0888889,-0.36,0
1712893815.613772188,-2.14681,-1.24004,-0.0680199,0.506627,-0.892085,-1.77962,0,0.0888889,-0.36,0
1712893815.763900617,-2.14681,-1.24004,-0.0680199,0.507161,-0.886429,-1.78124,0,0.0888889,-0.36,0
1712893815.914029045,-2.14681,-1.24004,-0.0680199,0.499898,-0.895866,-1.78182,0,0.0666667,-0.36,0
1712893816.064158058,-2.14681,-1.24004,-0.0680199,0.50646,-0.909192,-1.78174,0,0.0666667,-0.36,0
1712893816.214290863,-2.14681,-1.24004,-0.0680199,0.497655,-0.906907,-1.78225,0,0.0666667,-0.36,0
1712893816.364418126,-2.14681,-1.24004,-0.0680199,0.501705,-0.913261,-1.78407,0,0.0666667,-0.36,0
1712893816.514565806,-2.14681,-1.24004,-0.0680199,0.497666,-0.920698,-1.78609,0,0.0666667,-0.36,0
1712893816.664812949,-2.14681,-1.24004,-0.0680199,0.500793,-0.922823,-1.78845,0,0.0666667,-0.36,0
1712893816.815053675,-2.14681,-1.24004,-0.0680199,0.494895,-0.925587,-1.79356,0,0.0666667,-0.36,0
1712893816.965288275,-2.14681,-1.24004,-0.0680199,0.492673,-0.936591,-1.79462,0,0.0666667,-0.36,0
1712893817.115521710,-2.14681,-1.24004,-0.0680199,0.492985,-0.933616,-1.79618,0,0.0666667,-0.36,0
1712893817.265805605,-2.14681,-1.24004,-0.0680199,0.492176,-0.941565,-1.80013,0,0.0666667,-0.36,0
1712893817.416030581,-2.14681,-1.24004,-0.0680199,0.485154,-0.945377,-1.80175,0,0.0666667,-0.36,0
1712893817.566259932,-2.14681,-1.24004,-0.0680199,0.485975,-0.953719,-1.80551,0,0.0666667,-0.36,0
1712893817.716486950,-2.14681,-1.24004,-0.0680199,0.486308,-0.950694,-1.80967,0,0.0666667,-0.36,0
1712893817.866718635,-2.14681,-1.24004,-0.0680199,0.488482,-0.9585,-1.81257,0,0.0666667,-0.36,0
1712893818.016959654,-2.14681,-1.24004,-0.0680199,0.483226,-0.960407,-1.8159,0,0.0666667,-0.36,0
1712893818.167189006,-2.14681,-1.24004,-0.0680199,0.478114,-0.9657,-1.81763,0,0.0666667,-0.36,0
1712893818.317468527,-2.14681,-1.24004,-0.0680199,0.479957,-0.97163,-1.82154,0,0.0666667,-0.36,0
1712893818.467692338,-2.14681,-1.24004,-0.0680199,0.482919,-0.969979,-1.82263,0,0.0666667,-0.36,0
1712893818.617927232,-2.14681,-1.24004,-0.0680199,0.479147,-0.972706,-1.82549,0,0.0666667,-0.36,0
1712893818.768167668,-2.14681,-1.24004,-0.0680199,0.475534,-0.97876,-1.83368,0,0.0666667,-0.36,0
1712893818.918393521,-2.14681,-1.24004,-0.0680199,0.472819,-0.981884,-1.83876,0,0.0666667,-0.36,0
1712893819.068654666,-2.14681,-1.24004,-0.0680199,0.470218,-0.98828,-1.84905,0,0.0666667,-0.36,0
1712893819.218892770,-2.14681,-1.24004,-0.0680199,0.46803,-0.994801,-1.8636,0,0.0666667,-0.36,0
1712893819.369132332,-2.14681,-1.24004,-0.0680199,0.46674,-0.998248,-1.87064,0,0.0666667,-0.36,0
1712893819.519355269,-2.14681,-1.24004,-0.0680199,0.465638,-1.00495,-1.8704,0,0.0666667,-0.36,0
1712893819.669580539,-2.14681,-1.24004,-0.0680199,0.46643,-0.998576,-1.87162,0,0.0666667,-0.36,0

View File

@ -1,522 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1712905937.474643823,-2.14681,-1.24004,-0.0680199,0.177242,0.0740896,-0.000899202,0,0.0666667,-0.170526,0
1712905937.624794476,-2.14681,-1.24004,-0.0680199,0.177757,0.0742772,-0.000913159,0,0.0666667,-0.284211,0
1712905937.774929383,-2.14681,-1.24004,-0.0680199,0.178817,0.0746688,-0.000962068,0,0.0666667,-0.284211,0
1712905937.925053208,-2.14681,-1.24004,-0.0680199,0.179338,0.074878,-0.000950099,0,0.0666667,-0.284211,0
1712905938.075205508,-2.14681,-1.24004,-0.0680199,0.180306,0.0753042,-0.00102252,0,0.0666667,-0.284211,0
1712905938.225337892,-2.14681,-1.24004,-0.0680199,0.180814,0.0755517,-0.00101609,0,0.0666667,-0.284211,0
1712905938.375469984,-2.14681,-1.24004,-0.0680199,0.181844,0.0759866,-0.00101553,0,0.0666667,-0.284211,0
1712905938.525605866,-2.14681,-1.24004,-0.0680199,0.182385,0.0762635,-0.00102405,0,0.0666667,-0.208421,0
1712905938.675737375,-2.14681,-1.24004,-0.0680199,0.183474,0.0768111,-0.00097332,0,0.0666667,-0.208421,0
1712905938.827142909,-2.14681,-1.24004,-0.0680199,0.183998,0.0769695,-0.000891447,0,0.0666667,-0.208421,0
1712905938.977312035,-2.14681,-1.24004,-0.0680199,0.185,0.0774093,-0.000772483,0,0.0666667,-0.284211,0
1712905939.127450865,-2.14681,-1.24004,-0.0680199,0.185528,0.0776405,-0.000799086,0,0.0666667,-0.284211,0
1712905939.277586263,-2.14681,-1.24004,-0.0680199,0.186455,0.0780198,-0.000809079,0,0.0666667,-0.284211,0
1712905939.427719036,-2.14681,-1.24004,-0.0680199,0.186935,0.0781997,-0.000762302,0,0.0666667,-0.284211,0
1712905939.577845685,-2.14681,-1.24004,-0.0680199,0.187891,0.0786168,-0.000782933,0,0.0666667,-0.284211,0
1712905939.727973210,-2.14681,-1.24004,-0.0680199,0.188397,0.0788153,-0.000766271,0,0.0666667,-0.284211,0
1712905939.878904402,-2.14681,-1.24004,-0.0680199,0.189425,0.079249,-0.000737069,0,0.0666667,-0.284211,0
1712905940.029044533,-2.14681,-1.24004,-0.0680199,0.189955,0.0795077,-0.000708431,0,0.0666667,-0.284211,0
1712905940.179175651,-2.14681,-1.24004,-0.0680199,0.190908,0.0798733,-0.000632896,0,0.0666667,-0.284211,0
1712905940.329373840,-2.14681,-1.24004,-0.0680199,0.191433,0.080129,-0.000645019,0,0.0666667,-0.284211,0
1712905940.479982028,-2.14681,-1.24004,-0.0680199,0.192425,0.080579,-0.000647875,0,0.0666667,-0.284211,0
1712905940.630230082,-2.14681,-1.24004,-0.0680199,0.192897,0.0807784,-0.000623585,0,0.0666667,-0.284211,0
1712905940.780472303,-2.14681,-1.24004,-0.0680199,0.193828,0.0812331,-0.000661228,0,0.0666667,-0.284211,0
1712905940.930732604,-2.14681,-1.24004,-0.0680199,0.194291,0.081459,-0.000683067,0,0.0666667,-0.284211,0
1712905941.080959569,-2.14681,-1.24004,-0.0680199,0.195334,0.0819141,-0.00060193,0,0.0666667,-0.284211,0
1712905941.231345938,-2.14681,-1.24004,-0.0680199,0.195787,0.082078,-0.000608807,0,0.0666667,-0.284211,0
1712905941.381590001,-2.14681,-1.24004,-0.0680199,0.196661,0.0824499,-0.000604553,0,0.0666667,-0.284211,0
1712905941.531828524,-2.14681,-1.24004,-0.0680199,0.197162,0.0826898,-0.000558547,0,0.0666667,-0.284211,0
1712905941.682065297,-2.14681,-1.24004,-0.0680199,0.198143,0.0830916,-0.00070162,0,0.0666667,-0.284211,0
1712905941.832295072,-2.14681,-1.24004,-0.0680199,0.198619,0.0832716,-0.000763311,0,0.0666667,-0.284211,0
1712905941.982533594,-2.14681,-1.24004,-0.0680199,0.199524,0.0836104,-0.000766307,0,0.0666667,-0.284211,0
1712905942.132773613,-2.14681,-1.24004,-0.0680199,0.200012,0.0838241,-0.000914778,0,0.0666667,-0.284211,0
1712905942.283089210,-2.14681,-1.24004,-0.0680199,0.200888,0.0842005,-0.00087009,0,0.0666667,-0.284211,0
1712905942.433338029,-2.14681,-1.24004,-0.0680199,0.201304,0.0843815,-0.00085026,0,0.0666667,-0.284211,0
1712905942.583573725,-2.14681,-1.24004,-0.0680199,0.202153,0.0847703,-0.000817696,0,0.0666667,-0.284211,0
1712905942.733804464,-2.14681,-1.24004,-0.0680199,0.202567,0.0849722,-0.000864205,0,0.0666667,-0.36,0
1712905942.884031412,-2.14681,-1.24004,-0.0680199,0.2035,0.0853325,-0.000928778,0,0.0666667,-0.36,0
1712905943.034258439,-2.14681,-1.24004,-0.0680199,0.203947,0.0855315,-0.000902488,0,0.0666667,-0.36,0
1712905943.184387492,-2.14681,-1.24004,-0.0680199,0.204853,0.0859248,-0.000915834,0,0.0666667,-0.36,0
1712905943.334515671,-2.14681,-1.24004,-0.0680199,0.205794,0.0862645,-0.000907011,0,0.0666667,-0.36,0
1712905943.484658139,-2.14681,-1.24004,-0.0680199,0.20623,0.0865009,-0.000962058,0,0.0666667,-0.36,0
1712905943.634801190,-2.14681,-1.24004,-0.0680199,0.206656,0.0866897,-0.0010258,0,0.0666667,-0.36,0
1712905943.785077506,-2.14681,-1.24004,-0.0680199,0.20749,0.0870485,-0.00105198,0,0.0666667,-0.36,0
1712905943.935303958,-2.14681,-1.24004,-0.0680199,0.207944,0.0872516,-0.00106728,0,0.0666667,-0.36,0
1712905944.085548403,-2.14681,-1.24004,-0.0680199,0.208853,0.0876224,-0.00102422,0,0.0666667,-0.36,0
1712905944.235772897,-2.14681,-1.24004,-0.0680199,0.20978,0.0880145,-0.000944232,0,0.0666667,-0.36,0
1712905944.386003514,-2.14681,-1.24004,-0.0680199,0.21019,0.0882043,-0.000921892,0,0.0666667,-0.36,0
1712905944.536293328,-2.14681,-1.24004,-0.0680199,0.211068,0.0885806,-0.000932709,0,0.0666667,-0.36,0
1712905944.686524529,-2.14681,-1.24004,-0.0680199,0.211484,0.0887821,-0.000958661,0,0.0666667,-0.36,0
1712905944.836693033,-2.14681,-1.24004,-0.0680199,0.211919,0.0889685,-0.00102539,0,0.0666667,-0.36,0
1712905944.986837334,-2.14681,-1.24004,-0.0680199,0.212751,0.0893299,-0.0010132,0,0.0666667,-0.36,0
1712905945.136976126,-2.14681,-1.24004,-0.0680199,0.213204,0.0895599,-0.000995667,0,0.0666667,-0.36,0
1712905945.287107093,-2.14681,-1.24004,-0.0680199,0.214121,0.089919,-0.00102461,0,0.0666667,-0.36,0
1712905945.437236019,-2.14681,-1.24004,-0.0680199,0.214945,0.090261,-0.00108942,0,0.0666667,-0.36,0
1712905945.587341616,-2.14681,-1.24004,-0.0680199,0.215408,0.0904457,-0.00103381,0,0.0666667,-0.36,0
1712905945.737880838,-2.14681,-1.24004,-0.0680199,0.215857,0.0906753,-0.000993523,0,0.0666667,-0.36,0
1712905945.888116202,-2.14681,-1.24004,-0.0680199,0.216694,0.0910702,-0.000992881,0,0.0666667,-0.36,0
1712905946.038413466,-2.14681,-1.24004,-0.0680199,0.217063,0.0912601,-0.00100584,0,0.0666667,-0.36,0
1712905946.188648616,-2.14681,-1.24004,-0.0680199,0.217883,0.0915349,-0.00104677,0,0.0666667,-0.36,0
1712905946.338881725,-2.14681,-1.24004,-0.0680199,0.218683,0.0918134,-0.00104798,0,0.0666667,-0.36,0
1712905946.489136704,-2.14681,-1.24004,-0.0680199,0.219074,0.0919515,-0.00107375,0,0.0666667,-0.36,0
1712905946.639369813,-2.14681,-1.24004,-0.0680199,0.219515,0.0920987,-0.001,0,0.0666667,-0.36,0
1712905946.789900948,-2.14681,-1.24004,-0.0680199,0.220397,0.0924783,-0.00104987,0,0.0666667,-0.36,0
1712905946.940137848,-2.14681,-1.24004,-0.0680199,0.220848,0.0926693,-0.00103211,0,0.0666667,-0.36,0
1712905947.090393915,-2.14681,-1.24004,-0.0680199,0.221617,0.0930801,-0.00103908,0,0.0666667,-0.36,0
1712905947.240807607,-2.14681,-1.24004,-0.0680199,0.222008,0.093215,-0.0010406,0,0.0666667,-0.36,0
1712905947.391049830,-2.14681,-1.24004,-0.0680199,0.222894,0.0936328,-0.000994994,0,0.0666667,-0.36,0
1712905947.541458564,-2.14681,-1.24004,-0.0680199,0.223756,0.0940547,-0.000998254,0,0.0666667,-0.36,0
1712905947.691692623,-2.14681,-1.24004,-0.0680199,0.224119,0.0942129,-0.000992358,0,0.0666667,-0.36,0
1712905947.841992877,-2.14681,-1.24004,-0.0680199,0.224986,0.0946476,-0.000976802,0,0.0666667,-0.36,0
1712905947.992250556,-2.14681,-1.24004,-0.0680199,0.22545,0.0948828,-0.000952109,0,0.0666667,-0.36,0
1712905948.142512655,-2.14681,-1.24004,-0.0680199,0.225864,0.0950244,-0.000938346,0,0.0666667,-0.36,0
1712905948.292760782,-2.14681,-1.24004,-0.0680199,0.226635,0.0953725,-0.00089331,0,0.0666667,-0.208421,0
1712905948.442996371,-2.14681,-1.24004,-0.0680199,0.227355,0.0957182,-0.000883435,0,0.0666667,-0.208421,0
1712905948.593225543,-2.14681,-1.24004,-0.0680199,0.227723,0.0958953,-0.000899749,0,0.0666667,-0.208421,0
1712905948.743457924,-2.14681,-1.24004,-0.0680199,0.22852,0.0962131,-0.00089945,0,0.0666667,-0.208421,0
1712905948.893698178,-2.14681,-1.24004,-0.0680199,0.22894,0.0963802,-0.000911411,0,0.0666667,-0.208421,0
1712905949.043934448,-2.14681,-1.24004,-0.0680199,0.22935,0.0965733,-0.000957894,0,0.0666667,-0.208421,0
1712905949.194189060,-2.14681,-1.24004,-0.0680199,0.230161,0.0969354,-0.000929589,0,0.0666667,-0.208421,0
1712905949.344433466,-2.14681,-1.24004,-0.0680199,0.231034,0.0973416,-0.000903548,0,0.0666667,-0.208421,0
1712905949.494686328,-2.14681,-1.24004,-0.0680199,0.231457,0.097519,-0.00089911,0,0.0666667,-0.208421,0
1712905949.644916445,-2.14681,-1.24004,-0.0680199,0.232243,0.0978629,-0.000894803,0,0.0666667,-0.208421,0
1712905949.795151227,-2.14681,-1.24004,-0.0680199,0.232651,0.0980678,-0.000962081,0,0.0666667,-0.246316,0
1712905949.945390967,-2.14681,-1.24004,-0.0680199,0.233484,0.0983862,-0.000902501,0,0.0666667,-0.246316,0
1712905950.095634428,-2.14681,-1.24004,-0.0680199,0.2339,0.0985329,-0.000901477,0,0.0666667,-0.246316,0
1712905950.245901937,-2.14681,-1.24004,-0.0680199,0.234361,0.0988224,-0.000930011,0,0.0666667,-0.246316,0
1712905950.396204732,-2.14681,-1.24004,-0.0680199,0.235243,0.0992555,-0.000916518,0,0.0666667,-0.246316,0
1712905950.546435790,-2.14681,-1.24004,-0.0680199,0.23596,0.0995947,-0.000913557,0,0.0666667,-0.246316,0
1712905950.696674721,-2.14681,-1.24004,-0.0680199,0.236333,0.0997504,-0.000953608,0,0.0666667,-0.246316,0
1712905950.846918319,-2.14681,-1.24004,-0.0680199,0.23711,0.100016,-0.000950758,0,0.0666667,-0.246316,0
1712905950.997157250,-2.14681,-1.24004,-0.0680199,0.237543,0.100208,-0.000969108,0,0.0666667,-0.246316,0
1712905951.147387483,-2.14681,-1.24004,-0.0680199,0.237907,0.100329,-0.000949051,0,0.0666667,-0.246316,0
1712905951.297613938,-2.14681,-1.24004,-0.0680199,0.238709,0.100736,-0.000942617,0,0.0666667,-0.246316,0
1712905951.447847101,-2.14681,-1.24004,-0.0680199,0.239079,0.100893,-0.000926366,0,0.0666667,-0.246316,0
1712905951.598081138,-2.14681,-1.24004,-0.0680199,0.239762,0.101118,-0.000847342,0,0.0666667,-0.246316,0
1712905951.748311093,-2.14681,-1.24004,-0.0680199,0.240456,0.10143,-0.000843008,0,0.0666667,-0.246316,0
1712905951.898603745,-2.14681,-1.24004,-0.0680199,0.240868,0.101592,-0.000736456,0,0.0666667,-0.284211,0
1712905952.048843723,-2.14681,-1.24004,-0.0680199,0.241573,0.101931,-0.00077075,0,0.0666667,-0.246316,0
1712905952.199079862,-2.14681,-1.24004,-0.0680199,0.241929,0.102079,-0.000778129,0,0.0666667,-0.246316,0
1712905952.349302004,-2.14681,-1.24004,-0.0680199,0.242663,0.102396,-0.000718903,0,0.0666667,-0.246316,0
1712905952.499534936,-2.14681,-1.24004,-0.0680199,0.243014,0.102506,-0.000749229,0,0.0666667,-0.322105,0
1712905952.649769909,-2.14681,-1.24004,-0.0680199,0.243725,0.102864,-0.000797322,0,0.0666667,-0.322105,0
1712905952.800007798,-2.14681,-1.24004,-0.0680199,0.244091,0.103029,-0.000865775,0,0.0666667,-0.322105,0
1712905952.950279223,-2.14681,-1.24004,-0.0680199,0.24481,0.103238,-0.000924428,0,0.0666667,-0.322105,0
1712905953.100426355,-2.14681,-1.24004,-0.0680199,0.2452,0.103396,-0.000988155,0,0.0666667,-0.322105,0
1712905953.250603063,-2.14681,-1.24004,-0.0680199,0.24592,0.103784,-0.000983985,0,0.0666667,-0.322105,0
1712905953.400833428,-2.14681,-1.24004,-0.0680199,0.246258,0.103969,-0.000893975,0,0.0666667,-0.322105,0
1712905953.551076332,-2.14681,-1.24004,-0.0680199,0.246947,0.104227,-0.000849889,0,0.0666667,-0.322105,0
1712905953.701313113,-2.14681,-1.24004,-0.0680199,0.247333,0.104354,-0.000854223,0,0.0666667,-0.322105,0
1712905953.851542895,-2.14681,-1.24004,-0.0680199,0.248001,0.104644,-0.00088516,0,0.0666667,-0.322105,0
1712905954.001770927,-2.14681,-1.24004,-0.0680199,0.248336,0.104787,-0.000897089,0,0.0666667,-0.322105,0
1712905954.152009802,-2.14681,-1.24004,-0.0680199,0.249064,0.105069,-0.000863162,0,0.0666667,-0.322105,0
1712905954.304677559,-2.14681,-1.24004,-0.0680199,0.24943,0.105229,-0.000826005,0,0.0666667,-0.322105,0
1712905954.455852528,-2.14681,-1.24004,-0.0680199,0.25006,0.105396,-0.000798232,0,0.0666667,-0.322105,0
1712905954.606086448,-2.14681,-1.24004,-0.0680199,0.250416,0.105555,-0.000778415,0,0.0666667,-0.322105,0
1712905954.756281582,-2.14681,-1.24004,-0.0680199,0.251038,0.105846,-0.000774999,0,0.0666667,-0.322105,0
1712905954.906418394,-2.14681,-1.24004,-0.0680199,0.251418,0.106022,-0.000769018,0,0.0666667,-0.322105,0
1712905955.056578074,-2.14681,-1.24004,-0.0680199,0.252151,0.106302,-0.000770188,0,0.0666667,-0.322105,0
1712905955.206718728,-2.14681,-1.24004,-0.0680199,0.252551,0.106519,-0.0006543,0,0.0666667,-0.322105,0
1712905955.356858800,-2.14681,-1.24004,-0.0680199,0.253269,0.106763,-0.000681739,0,0.0666667,-0.322105,0
1712905955.506992455,-2.14681,-1.24004,-0.0680199,0.253603,0.106919,-0.000545814,0,0.0666667,-0.322105,0
1712905955.657122903,-2.14681,-1.24004,-0.0680199,0.254304,0.107275,-0.000640904,0,0.0666667,-0.322105,0
1712905955.807253643,-2.14681,-1.24004,-0.0680199,0.254741,0.107497,-0.000639878,0,0.0666667,-0.322105,0
1712905955.957380591,-2.14681,-1.24004,-0.0680199,0.255378,0.107824,-0.000618668,0,0.0666667,-0.322105,0
1712905956.107518568,-2.14681,-1.24004,-0.0680199,0.255686,0.107911,-0.000608962,0,0.0666667,-0.322105,0
1712905956.257658397,-2.14681,-1.24004,-0.0680199,0.256386,0.108248,-0.000596849,0,0.0666667,-0.322105,0
1712905956.407799976,-2.14681,-1.24004,-0.0680199,0.256743,0.108486,-0.000565454,0,0.0666667,-0.322105,0
1712905956.557972758,-2.14681,-1.24004,-0.0680199,0.257396,0.10882,-0.000639159,0,0.0666667,-0.322105,0
1712905956.708370670,-2.14681,-1.24004,-0.0680199,0.257792,0.108997,-0.000627396,0,0.0666667,-0.322105,0
1712905956.858692469,-2.14681,-1.24004,-0.0680199,0.25845,0.109361,-0.000654499,0,0.0666667,-0.322105,0
1712905957.008957708,-2.14681,-1.24004,-0.0680199,0.258832,0.109562,-0.000657137,0,0.0666667,-0.322105,0
1712905957.159218898,-2.14681,-1.24004,-0.0680199,0.259487,0.109855,-0.000623737,0,0.0666667,-0.322105,0
1712905957.309533163,-2.14681,-1.24004,-0.0680199,0.25978,0.109956,-0.000670394,0,0.0666667,-0.322105,0
1712905957.459788520,-2.14681,-1.24004,-0.0680199,0.260035,0.110061,-0.000689354,0,0.0666667,-0.322105,0
1712905957.610055251,-2.14681,-1.24004,-0.0680199,0.260708,0.110355,-0.000689235,0,0.0666667,-0.322105,0
1712905957.760282613,-2.14681,-1.24004,-0.0680199,0.261346,0.110655,-0.000730614,0,0.0666667,-0.322105,0
1712905957.910523098,-2.14681,-1.24004,-0.0680199,0.261636,0.110845,-0.000742557,0,0.0666667,-0.322105,0
1712905958.060756130,-2.14681,-1.24004,-0.0680199,0.26223,0.11109,-0.000782073,0,0.0666667,-0.322105,0
1712905958.210973330,-2.14681,-1.24004,-0.0680199,0.262529,0.111169,-0.000792627,0,0.0666667,-0.322105,0
1712905958.361179740,-2.14681,-1.24004,-0.0680199,0.263095,0.111405,-0.000779999,0,0.0666667,-0.322105,0
1712905958.511423769,-2.14681,-1.24004,-0.0680199,0.263382,0.111571,-0.000745972,0,0.0666667,-0.36,0
1712905958.661764032,-2.14681,-1.24004,-0.0680199,0.263958,0.111811,-0.000794138,0,0.0666667,-0.36,0
1712905958.812128208,-2.14681,-1.24004,-0.0680199,0.264213,0.111956,-0.000795521,0,0.0666667,-0.36,0
1712905958.962345117,-2.14681,-1.24004,-0.0680199,0.264772,0.112189,-0.000718951,0,0.0666667,-0.36,0
1712905959.112598137,-2.14681,-1.24004,-0.0680199,0.265054,0.112275,-0.000721346,0,0.0666667,-0.36,0
1712905959.262839292,-2.14681,-1.24004,-0.0680199,0.265669,0.112576,-0.000707634,0,0,1,0
1712905959.413054784,-2.14681,-1.24004,-0.0680199,0.265965,0.112693,-0.000723691,0,0,1,0
1712905959.563382258,-2.14681,-1.24004,-0.0680199,0.266611,0.113071,-0.000764585,0,0,1,0
1712905959.713703317,-2.14681,-1.24004,-0.0680199,0.266895,0.113227,-0.000789944,0,0,1,0
1712905959.864053829,-2.14681,-1.24004,-0.0680199,0.267444,0.113565,-0.000890707,0,0,1,0
1712905960.014302883,-2.14681,-1.24004,-0.0680199,0.267714,0.113691,-0.000915756,0,0,1,0
1712905960.164546701,-2.14681,-1.24004,-0.0680199,0.268256,0.113928,-0.000878553,0,0,1,0
1712905960.314795186,-2.14681,-1.24004,-0.0680199,0.268593,0.114083,-0.000847262,0,0,1,0
1712905960.465040171,-2.14681,-1.24004,-0.0680199,0.269211,0.11437,-0.000864381,0,0,1,0
1712905960.615282531,-2.14681,-1.24004,-0.0680199,0.269522,0.114481,-0.000946923,0,0,1,0
1712905960.765498354,-2.14681,-1.24004,-0.0680199,0.270098,0.114758,-0.000899779,0,0,1,0
1712905960.915737506,-2.14681,-1.24004,-0.0680199,0.270386,0.114933,-0.000943839,0,0,1,0
1712905961.066066908,-2.14681,-1.24004,-0.0680199,0.271024,0.115158,-0.000870094,0,0,1,0
1712905961.216457449,-2.14681,-1.24004,-0.0680199,0.271321,0.115306,-0.000720313,0,0,1,0
1712905961.366782666,-2.14681,-1.24004,-0.0680199,0.271875,0.115526,-0.000720318,0,0,1,0
1712905961.517134713,-2.14681,-1.24004,-0.0680199,0.272144,0.115609,-0.000673207,0,0,1,0
1712905961.667351739,-2.14681,-1.24004,-0.0680199,0.272696,0.115865,-0.000754651,0,0,1,0
1712905961.817554476,-2.14681,-1.24004,-0.0680199,0.273017,0.116025,-0.000735383,0,0,1,0
1712905961.967777626,-2.14681,-1.24004,-0.0680199,0.273605,0.116298,-0.000683818,0,0,1,0
1712905962.118087637,-2.14681,-1.24004,-0.0680199,0.273855,0.11642,-0.000704622,0,0,1,0
1712905962.268344067,-2.14681,-1.24004,-0.0680199,0.274447,0.116687,-0.000749158,0,0,1,0
1712905962.418614785,-2.14681,-1.24004,-0.0680199,0.274688,0.116784,-0.000890097,0,0,1,0
1712905962.568858675,-2.14681,-1.24004,-0.0680199,0.275305,0.117056,-0.000946071,0,0,1,0
1712905962.719139308,-2.14681,-1.24004,-0.0680199,0.275588,0.11716,-0.000973272,0,0,1,0
1712905962.869439772,-2.14681,-1.24004,-0.0680199,0.276158,0.117458,-0.000955603,0,0,1,0
1712905963.019715776,-2.14681,-1.24004,-0.0680199,0.276428,0.117632,-0.00101864,0,0,1,0
1712905963.169976903,-2.14681,-1.24004,-0.0680199,0.277013,0.117904,-0.00102317,0,0,1,0
1712905963.320233947,-2.14681,-1.24004,-0.0680199,0.277295,0.117992,-0.00101729,0,0,1,0
1712905963.470458621,-2.14681,-1.24004,-0.0680199,0.277815,0.118269,-0.00102817,0,0,1,0
1712905963.620798486,-2.14681,-1.24004,-0.0680199,0.278128,0.11845,-0.00100999,0,0,1,0
1712905963.771143600,-2.14681,-1.24004,-0.0680199,0.278655,0.118699,-0.00106078,0,0,1,0
1712905963.921480549,-2.14681,-1.24004,-0.0680199,0.278925,0.118833,-0.00111671,0,0,1,0
1712905964.071806563,-2.14681,-1.24004,-0.0680199,0.279433,0.119067,-0.0011034,0,0,1,0
1712905964.222139458,-2.14681,-1.24004,-0.0680199,0.279699,0.119167,-0.00108369,0,0,1,0
1712905964.372399156,-2.14681,-1.24004,-0.0680199,0.280317,0.119438,-0.00116458,0,0,1,0
1712905964.522697931,-2.14681,-1.24004,-0.0680199,0.280587,0.119567,-0.00112508,0,0,1,0
1712905964.672986208,-2.14681,-1.24004,-0.0680199,0.281147,0.119838,-0.00114178,0,0,1,0
1712905964.823237449,-2.14681,-1.24004,-0.0680199,0.281478,0.119981,-0.00121373,0,0,1,0
1712905964.973562762,-2.14681,-1.24004,-0.0680199,0.28201,0.120193,-0.00124442,0,0,1,0
1712905965.123952190,-2.14681,-1.24004,-0.0680199,0.282278,0.120359,-0.00120595,0,0,1,0
1712905965.274323606,-2.14681,-1.24004,-0.0680199,0.282778,0.120546,-0.00116075,0,0,1,0
1712905965.424593246,-2.14681,-1.24004,-0.0680199,0.283022,0.12062,-0.00132819,0,0,1,0
1712905965.574832556,-2.14681,-1.24004,-0.0680199,0.283442,0.120824,-0.00130864,0,0,1,0
1712905965.725059327,-2.14681,-1.24004,-0.0680199,0.283705,0.120928,-0.0012537,0,0,1,0
1712905965.875292805,-2.14681,-1.24004,-0.0680199,0.284228,0.121173,-0.00127332,0,0,1,0
1712905966.025555486,-2.14681,-1.24004,-0.0680199,0.284489,0.121276,-0.00122718,0,0,1,0
1712905966.175813193,-2.14681,-1.24004,-0.0680199,0.285035,0.12158,-0.0012244,0,0,1,0
1712905966.326067984,-2.14681,-1.24004,-0.0680199,0.285236,0.121722,-0.00116842,0,0,1,0
1712905966.476370893,-2.14681,-1.24004,-0.0680199,0.285638,0.121963,-0.00114843,0,0,1,0
1712905966.626623351,-2.14681,-1.24004,-0.0680199,0.285878,0.122109,-0.00108738,0,0,1,0
1712905966.776954547,-2.14681,-1.24004,-0.0680199,0.286384,0.122369,-0.00108519,0,0,1,0
1712905966.927293035,-2.14681,-1.24004,-0.0680199,0.286643,0.122514,-0.00116835,0,0,1,0
1712905967.081470345,-2.14681,-1.24004,-0.0680199,0.287072,0.122648,-0.00122601,0,0,1,0
1712905967.231799522,-2.14681,-1.24004,-0.0680199,0.287319,0.12274,-0.00116225,0,0,1,0
1712905967.382129573,-2.14681,-1.24004,-0.0680199,0.287796,0.122917,-0.00106976,0,0,1,0
1712905967.532470124,-2.14681,-1.24004,-0.0680199,0.288017,0.122982,-0.00117228,0,0,1,0
1712905967.682718229,-2.14681,-1.24004,-0.0680199,0.288545,0.123248,-0.00121712,0,0,1,0
1712905967.832958168,-2.14681,-1.24004,-0.0680199,0.288998,0.123445,-0.00115216,0,0,1,0
1712905967.983271014,-2.14681,-1.24004,-0.0680199,0.289193,0.123496,-0.00120242,0,0,1,0
1712905968.133531346,-2.14681,-1.24004,-0.0680199,0.289382,0.123548,-0.00117504,0,0,1,0
1712905968.283793760,-2.14681,-1.24004,-0.0680199,0.289863,0.123845,-0.00106166,0,0,1,0
1712905968.434044217,-2.14681,-1.24004,-0.0680199,0.290108,0.123916,-0.00106097,0,0,1,0
1712905968.584438155,-2.14681,-1.24004,-0.0680199,0.290529,0.124072,-0.000988147,0,0,1,0
1712905968.734934744,-2.14681,-1.24004,-0.0680199,0.290721,0.124145,-0.00106206,0,0,1,0
1712905968.885431334,-2.14681,-1.24004,-0.0680199,0.291207,0.124353,-0.00108571,0,0,1,0
1712905969.035671943,-2.14681,-1.24004,-0.0680199,0.291676,0.124541,-0.00103797,0,0,1,0
1712905969.185939040,-2.14681,-1.24004,-0.0680199,0.291922,0.12464,-0.00101638,0,0,1,0
1712905969.336280210,-2.14681,-1.24004,-0.0680199,0.292158,0.124766,-0.000995927,0,0,1,0
1712905969.486510853,-2.14681,-1.24004,-0.0680199,0.292537,0.124921,-0.000914108,0,0,1,0
1712905969.636833651,-2.14681,-1.24004,-0.0680199,0.292713,0.124947,-0.000883504,0,0,1,0
1712905969.787139242,-2.14681,-1.24004,-0.0680199,0.293105,0.125115,-0.000942906,0,0,1,0
1712905969.937386217,-2.14681,-1.24004,-0.0680199,0.29358,0.125313,-0.000931842,0,0,1,0
1712905970.087710645,-2.14681,-1.24004,-0.0680199,0.29379,0.125407,-0.00092003,0,0,1,0
1712905970.238024417,-2.14681,-1.24004,-0.0680199,0.294213,0.125684,-0.000924719,0,0,1,0
1712905970.388303193,-2.14681,-1.24004,-0.0680199,0.294454,0.125769,-0.000932172,0,0,1,0
1712905970.538564471,-2.14681,-1.24004,-0.0680199,0.294674,0.125909,-0.000789589,0,0,1,0
1712905970.688768299,-2.14681,-1.24004,-0.0680199,0.295101,0.126028,-0.000764034,0,0,1,0
1712905970.839026078,-2.14681,-1.24004,-0.0680199,0.295489,0.126283,-0.000845542,0,0,1,0
1712905970.989342475,-2.14681,-1.24004,-0.0680199,0.295744,0.126412,-0.000857318,0,0,1,0
1712905971.139583032,-2.14681,-1.24004,-0.0680199,0.296288,0.126602,-0.000958886,0,0,1,0
1712905971.289831783,-2.14681,-1.24004,-0.0680199,0.296452,0.126721,-0.000926911,0,0,1,0
1712905971.440059828,-2.14681,-1.24004,-0.0680199,0.296885,0.126945,-0.000950963,0,0,1,0
1712905971.590303037,-2.14681,-1.24004,-0.0680199,0.297033,0.126994,-0.00100046,0,0,1,0
1712905971.740536331,-2.14681,-1.24004,-0.0680199,0.29747,0.127217,-0.000948831,0,0,1,0
1712905971.892942254,-2.14681,-1.24004,-0.0680199,0.297679,0.127271,-0.000961533,0,0,1,0
1712905972.043219956,-2.14681,-1.24004,-0.0680199,0.297889,0.127376,-0.00100361,0,0,1,0
1712905972.193545415,-2.14681,-1.24004,-0.0680199,0.298277,0.127596,-0.000984523,0,0,1,0
1712905972.343797966,-2.14681,-1.24004,-0.0680199,0.298714,0.12773,-0.00101499,0,0,1,0
1712905972.494123716,-2.14681,-1.24004,-0.0680199,0.298985,0.127833,-0.00097946,0,0,1,0
1712905972.644354103,-2.14681,-1.24004,-0.0680199,0.299172,0.127932,-0.00109444,0,0,1,0
1712905972.794639609,-2.14681,-1.24004,-0.0680199,0.299558,0.128019,-0.00112827,0,0,1,0
1712905972.944882828,-2.14681,-1.24004,-0.0680199,0.299816,0.128193,-0.00103288,0,0,1,0
1712905973.095145478,-2.14681,-1.24004,-0.0680199,0.300247,0.12828,-0.00102982,0,0,1,0
1712905973.245389871,-2.14681,-1.24004,-0.0680199,0.300637,0.128519,-0.000961566,0,0,1,0
1712905973.395623765,-2.14681,-1.24004,-0.0680199,0.30088,0.128596,-0.00101922,0,0,1,0
1712905973.545914819,-2.14681,-1.24004,-0.0680199,0.301359,0.128786,-0.00102949,0,0,1,0
1712905973.696208205,-2.14681,-1.24004,-0.0680199,0.301522,0.12882,-0.00107885,0,0,1,0
1712905973.846469804,-2.14681,-1.24004,-0.0680199,0.301899,0.129004,-0.00101296,0,0,1,0
1712905974.000360436,-2.14681,-1.24004,-0.0680199,0.302127,0.129069,-0.000992018,0,0,1,0
1712905974.150626117,-2.14681,-1.24004,-0.0680199,0.302467,0.129174,-0.000983887,0,0,1,0
1712905974.300864099,-2.14681,-1.24004,-0.0680199,0.302754,0.129327,-0.00105742,0,0,1,0
1712905974.451107914,-2.14681,-1.24004,-0.0680199,0.303053,0.129422,-0.00107438,0,0,1,0
1712905974.601342396,-2.14681,-1.24004,-0.0680199,0.303199,0.129448,-0.00102748,0,0,1,0
1712905974.751579212,-2.14681,-1.24004,-0.0680199,0.303532,0.12958,-0.000986598,0,0,1,0
1712905974.901875811,-2.14681,-1.24004,-0.0680199,0.303715,0.129675,-0.00103365,0,0,1,0
1712905975.052155593,-2.14681,-1.24004,-0.0680199,0.30403,0.129835,-0.00101263,0,0,1,0
1712905975.202431197,-2.14681,-1.24004,-0.0680199,0.304247,0.129887,-0.00101276,0,0,1,0
1712905975.352674723,-2.14681,-1.24004,-0.0680199,0.304606,0.130001,-0.000998832,0,0,1,0
1712905975.502954702,-2.14681,-1.24004,-0.0680199,0.30478,0.130128,-0.00106148,0,0,1,0
1712905975.653202019,-2.14681,-1.24004,-0.0680199,0.305174,0.130305,-0.00101026,0,0,1,0
1712905975.803481998,-2.14681,-1.24004,-0.0680199,0.305338,0.130278,-0.000999537,0,0,1,0
1712905975.953787932,-2.14681,-1.24004,-0.0680199,0.305661,0.130353,-0.000881369,0,0,1,0
1712905976.104121476,-2.14681,-1.24004,-0.0680199,0.305847,0.130443,-0.000831479,0,0,1,0
1712905976.254451908,-2.14681,-1.24004,-0.0680199,0.306175,0.13062,-0.000976196,0,0,1,0
1712905976.404673853,-2.14681,-1.24004,-0.0680199,0.306371,0.13067,-0.00100252,0,0,1,0
1712905976.554976871,-2.14681,-1.24004,-0.0680199,0.306763,0.130772,-0.00106317,0,0,1,0
1712905976.705179569,-2.14681,-1.24004,-0.0680199,0.306934,0.130862,-0.00110245,0,0,1,0
1712905976.855318691,-2.14681,-1.24004,-0.0680199,0.307276,0.131049,-0.00119703,0,0,1,0
1712905977.005461025,-2.14681,-1.24004,-0.0680199,0.307443,0.131174,-0.00106173,0,0,1,0
1712905977.155614143,-2.14681,-1.24004,-0.0680199,0.307756,0.131312,-0.00114577,0,0,1,0
1712905977.305795549,-2.14681,-1.24004,-0.0680199,0.307888,0.131345,-0.00111913,0,0,1,0
1712905977.455983080,-2.14681,-1.24004,-0.0680199,0.308267,0.131396,-0.00115218,0,0,1,0
1712905977.606240310,-2.14681,-1.24004,-0.0680199,0.308378,0.13143,-0.00111251,0,0,1,0
1712905977.756503373,-2.14681,-1.24004,-0.0680199,0.308734,0.131684,-0.00110183,0,0,1,0
1712905977.906744272,-2.14681,-1.24004,-0.0680199,0.308956,0.131777,-0.00114231,0,0,1,0
1712905978.056987608,-2.14681,-1.24004,-0.0680199,0.309298,0.131884,-0.00118583,0,0,1,0
1712905978.207233168,-2.14681,-1.24004,-0.0680199,0.309442,0.131911,-0.00123323,0,0,1,0
1712905978.357495352,-2.14681,-1.24004,-0.0680199,0.309793,0.132107,-0.00127533,0,0,1,0
1712905978.507728373,-2.14681,-1.24004,-0.0680199,0.309947,0.132144,-0.00135866,0,0,1,0
1712905978.693401380,-2.14681,-1.24004,-0.0680199,0.310367,0.132322,-0.00135896,0,0,1,0
1712906003.847430543,-2.14681,-1.24004,-0.0680199,3.57445e-05,1.51978e-05,0,0,0,1,0
1712906003.997799259,-2.14681,-1.24004,-0.0680199,5.38157e-05,2.31777e-05,0,0,0,1,0
1712906004.148040170,-2.14681,-1.24004,-0.0680199,0.000100689,4.31383e-05,0,0,0,1,0
1712906004.298314627,-2.14681,-1.24004,-0.0680199,0.000129833,5.58025e-05,0,0,0,1,0
1712906004.448613875,-2.14681,-1.24004,-0.0680199,0.000200897,8.82191e-05,0,0,0,1,0
1712906004.598867918,-2.14681,-1.24004,-0.0680199,0.000240034,0.000104592,0,0,0,1,0
1712906004.749111753,-2.14681,-1.24004,-0.0680199,0.000329964,0.000143108,0,0,0,1,0
1712906004.899421208,-2.14681,-1.24004,-0.0680199,0.000382003,0.000166438,0,0,0,1,0
1712906005.049708279,-2.14681,-1.24004,-0.0680199,0.00049133,0.00021611,0,0,0,1,0
1712906005.199954388,-2.14681,-1.24004,-0.0680199,0.000554231,0.000239864,0,0,0,1,0
1712906005.350095797,-2.14681,-1.24004,-0.0680199,0.000684391,0.000297525,0,0,0,1,0
1712906005.500231664,-2.14681,-1.24004,-0.0680199,0.00075738,0.000326217,0,0,0,1,0
1712906005.650382988,-2.14681,-1.24004,-0.0680199,0.000915334,0.000389539,0,0,0,1,0
1712906005.801040026,-2.14681,-1.24004,-0.0680199,0.000999324,0.000427615,0,0,0,1,0
1712906005.951657983,-2.14681,-1.24004,-0.0680199,0.00117536,0.000510778,0,0,0,1,0
1712906006.101794294,-2.14681,-1.24004,-0.0680199,0.00127064,0.000554108,0,0,0,1,0
1712906006.251935641,-2.14681,-1.24004,-0.0680199,0.00147289,0.000634928,0,0,0,1,0
1712906006.402153400,-2.14681,-1.24004,-0.0680199,0.00157971,0.000676371,0,0,0,1,0
1712906006.552425988,-2.14681,-1.24004,-0.0680199,0.00180474,0.000780108,0,0,0,1,0
1712906006.702751364,-2.14681,-1.24004,-0.0680199,0.00192197,0.000829696,0,0,0,1,0
1712906006.853006453,-2.14681,-1.24004,-0.0680199,0.00216553,0.000938142,0,0,0,1,0
1712906007.003414948,-2.14681,-1.24004,-0.0680199,0.00228944,0.000988183,0,0,0,1,0
1712906007.153670850,-2.14681,-1.24004,-0.0680199,0.0025508,0.00108944,0,0,0,1,0
1712906007.303910711,-2.14681,-1.24004,-0.0680199,0.0026915,0.00114471,0,0,0,1,0
1712906007.454075618,-2.14681,-1.24004,-0.0680199,0.00297403,0.00125717,0,0,0,1,0
1712906007.604214278,-2.14681,-1.24004,-0.0680199,0.00311643,0.00131763,0,0,0,1,0
1712906007.754372770,-2.14681,-1.24004,-0.0680199,0.0034265,0.0014483,0,0,0,1,0
1712906007.904508804,-2.14681,-1.24004,-0.0680199,0.00358134,0.00150744,9.42028e-06,0,0,1,0
1712906008.054645501,-2.14681,-1.24004,-0.0680199,0.00390926,0.00164538,3.38926e-05,0,0,1,0
1712906008.204779721,-2.14681,-1.24004,-0.0680199,0.00407466,0.00171965,7.99995e-05,0,0,1,0
1712906008.354915982,-2.14681,-1.24004,-0.0680199,0.00442416,0.00186022,8.79222e-05,0,0,1,0
1712906008.505063618,-2.14681,-1.24004,-0.0680199,0.00460086,0.00192928,9.20095e-05,0,0,1,0
1712906008.655207171,-2.14681,-1.24004,-0.0680199,0.00497609,0.00208969,7.55902e-05,0,0,1,0
1712906008.805339641,-2.14681,-1.24004,-0.0680199,0.00516291,0.00215862,7.2619e-05,0,0,1,0
1712906008.955472403,-2.14681,-1.24004,-0.0680199,0.0055479,0.00232559,3.36213e-05,0,0,1,0
1712906009.105628359,-2.14681,-1.24004,-0.0680199,0.00574851,0.00241899,-2.54037e-05,0,0,1,0
1712906009.255768346,-2.14681,-1.24004,-0.0680199,0.00616822,0.00258232,5.33208e-08,0,0,1,0
1712906009.405903666,-2.14681,-1.24004,-0.0680199,0.00637727,0.00267195,7.74819e-06,0,0,1,0
1712906009.556048028,-2.14681,-1.24004,-0.0680199,0.00679392,0.00285053,5.96537e-05,0,0,1,0
1712906009.706195014,-2.14681,-1.24004,-0.0680199,0.007011,0.00295133,1.52073e-05,0,0,1,0
1712906009.856348416,-2.14681,-1.24004,-0.0680199,0.00747179,0.0031608,7.88506e-05,0,0,1,0
1712906010.006482867,-2.14681,-1.24004,-0.0680199,0.00769769,0.00325139,8.30244e-05,0,0,1,0
1712906010.156621618,-2.14681,-1.24004,-0.0680199,0.00815316,0.00342623,0.000116375,0,0,1,0
1712906010.306758620,-2.14681,-1.24004,-0.0680199,0.00838929,0.00352369,0.000134943,0,0,1,0
1712906010.456895039,-2.14681,-1.24004,-0.0680199,0.00887642,0.00372718,-3.22111e-05,0,0,1,0
1712906010.607038749,-2.14681,-1.24004,-0.0680199,0.00913418,0.00383877,-2.13416e-05,0,0,1,0
1712906010.757189458,-2.14681,-1.24004,-0.0680199,0.00964921,0.00406049,-2.98476e-05,0,0,1,0
1712906010.907361749,-2.14681,-1.24004,-0.0680199,0.00990716,0.0041569,-2.91779e-05,0,0,1,0
1712906011.057498832,-2.14681,-1.24004,-0.0680199,0.0104406,0.00438469,-6.46123e-05,0,0,1,0
1712906011.207634889,-2.14681,-1.24004,-0.0680199,0.0106969,0.00448246,-0.000103807,0,0,1,0
1712906011.357768029,-2.14681,-1.24004,-0.0680199,0.0112412,0.00469476,-0.00012307,0,0,1,0
1712906011.507903211,-2.14681,-1.24004,-0.0680199,0.0115143,0.00480425,-0.000159281,0,0,1,0
1712906011.658171676,-2.14681,-1.24004,-0.0680199,0.0120718,0.00504879,-0.000173799,0,0,1,0
1712906011.808327565,-2.14681,-1.24004,-0.0680199,0.0123571,0.00515833,-0.000150959,0,0,1,0
1712906011.959200325,-2.14681,-1.24004,-0.0680199,0.0129501,0.00541495,-0.000170531,0,0,1,0
1712906012.109452614,-2.14681,-1.24004,-0.0680199,0.0132393,0.00552192,-0.000164902,0,0,1,0
1712906012.259704384,-2.14681,-1.24004,-0.0680199,0.0138406,0.0057457,-0.000179042,0,0,1,0
1712906012.410021483,-2.14681,-1.24004,-0.0680199,0.0141547,0.00588142,-0.000155678,0,0,1,0
1712906012.560258087,-2.14681,-1.24004,-0.0680199,0.0147777,0.00614812,-0.000162651,0,0,1,0
1712906012.710498774,-2.14681,-1.24004,-0.0680199,0.0150872,0.00627437,-0.00018548,0,0,1,0
1712906012.860652549,-2.14681,-1.24004,-0.0680199,0.0157144,0.00652437,-0.000213005,0,0,1,0
1712906013.010800504,-2.14681,-1.24004,-0.0680199,0.0160367,0.00666134,-0.000211701,0,0,1,0
1712906013.160934082,-2.14681,-1.24004,-0.0680199,0.0166861,0.00691503,-9.76499e-05,0,0,1,0
1712906013.311069702,-2.14681,-1.24004,-0.0680199,0.017012,0.00704567,-8.61322e-05,0,0,1,0
1712906013.461207364,-2.14681,-1.24004,-0.0680199,0.0176886,0.00729808,-0.000103142,0,0,1,0
1712906013.611344442,-2.14681,-1.24004,-0.0680199,0.0180326,0.00744623,-9.57062e-05,0,0,1,0
1712906013.761478604,-2.14681,-1.24004,-0.0680199,0.0187126,0.00770647,-0.000113813,0,0,1,0
1712906013.911611016,-2.14681,-1.24004,-0.0680199,0.0190504,0.00782441,-0.00010685,0,0,1,0
1712906014.061749929,-2.14681,-1.24004,-0.0680199,0.0197468,0.00809494,-0.000119426,0,0,1,0
1712906014.211882849,-2.14681,-1.24004,-0.0680199,0.0201029,0.00823837,-0.000137843,0,0,1,0
1712906014.362016936,-2.14681,-1.24004,-0.0680199,0.0208098,0.00851466,-0.000123544,0,0,1,0
1712906014.512182229,-2.14681,-1.24004,-0.0680199,0.0211684,0.00865843,-0.000129961,0,0,1,0
1712906014.662318357,-2.14681,-1.24004,-0.0680199,0.0219034,0.00893695,-0.000159768,0,0,1,0
1712906014.812452736,-2.14681,-1.24004,-0.0680199,0.0222647,0.00907966,-0.000199414,0,0,1,0
1712906014.962582156,-2.14681,-1.24004,-0.0680199,0.0230145,0.00936749,-0.00016269,0,0,1,0
1712906015.112717566,-2.14681,-1.24004,-0.0680199,0.0233896,0.00952248,-0.000212199,0,0,1,0
1712906015.262848076,-2.14681,-1.24004,-0.0680199,0.0241353,0.0098319,-0.00021714,0,0,1,0
1712906015.413000752,-2.14681,-1.24004,-0.0680199,0.0245212,0.00999762,-0.000219734,0,0,1,0
1712906015.563166843,-2.14681,-1.24004,-0.0680199,0.0252822,0.0102867,-0.000178777,0,0,1,0
1712906015.713304644,-2.14681,-1.24004,-0.0680199,0.0256535,0.0104298,-0.000193433,0,0,1,0
1712906015.863432821,-2.14681,-1.24004,-0.0680199,0.0264302,0.0107304,-0.000188838,0,0,1,0
1712906016.013566263,-2.14681,-1.24004,-0.0680199,0.0268137,0.0108534,-0.000265918,0,0,1,0
1712906016.163698736,-2.14681,-1.24004,-0.0680199,0.0289457,0.0111837,-0.000272061,0,0,1,0
1712906016.313831501,-2.14681,-1.24004,-0.0680199,0.0293503,0.0113455,-0.000302713,0,0,1,0
1712906016.463961641,-2.14681,-1.24004,-0.0680199,0.0301505,0.0117043,-0.000292492,0,0,1,0
1712906016.614102571,-2.14681,-1.24004,-0.0680199,0.0305515,0.0118695,-0.000308653,0,0,1,0
1712906016.764237669,-2.14681,-1.24004,-0.0680199,0.0313807,0.0122057,-0.000305631,0,0,1,0
1712906016.914369559,-2.14681,-1.24004,-0.0680199,0.0318021,0.0123681,-0.000359857,0,0,1,0
1712906017.064502119,-2.14681,-1.24004,-0.0680199,0.0326457,0.0126855,-0.000384739,0,0,1,0
1712906017.214650844,-2.14681,-1.24004,-0.0680199,0.0330738,0.0128455,-0.000395785,0,0,1,0
1712906017.364784112,-2.14681,-1.24004,-0.0680199,0.0339066,0.0131629,-0.000358302,0,0,1,0
1712906017.514991751,-2.14681,-1.24004,-0.0680199,0.0343291,0.0133356,-0.000397393,0,0,1,0
1712906017.665143976,-2.14681,-1.24004,-0.0680199,0.0351945,0.0136958,-0.000384261,0,0,1,0
1712906017.815282785,-2.14681,-1.24004,-0.0680199,0.0356325,0.0138709,-0.000358228,0,0,1,0
1712906017.965420136,-2.14681,-1.24004,-0.0680199,0.0365188,0.0142486,-0.000361149,0,0,1,0
1712906018.115569602,-2.14681,-1.24004,-0.0680199,0.0369691,0.0144398,-0.000374045,0,0,1,0
1712906018.265803116,-2.14681,-1.24004,-0.0680199,0.0378141,0.0147579,-0.000437861,0,0,1,0
1712906018.416048296,-2.14681,-1.24004,-0.0680199,0.038271,0.0149112,-0.000432807,0,0,1,0
1712906018.566293767,-2.14681,-1.24004,-0.0680199,0.0391896,0.0152677,-0.0004461,0,0,1,0
1712906018.716581528,-2.14681,-1.24004,-0.0680199,0.0396479,0.0154439,-0.000528627,0,0,1,0
1712906018.866830791,-2.14681,-1.24004,-0.0680199,0.0405465,0.015856,-0.000522799,0,0,1,0
1712906019.017097865,-2.14681,-1.24004,-0.0680199,0.0409975,0.0160537,-0.000512441,0,0,1,0
1712906019.167457289,-2.14681,-1.24004,-0.0680199,0.0419227,0.0164302,-0.000599805,0,0,1,0
1712906019.317697136,-2.14681,-1.24004,-0.0680199,0.0423946,0.0166155,-0.000587977,0,0,1,0
1712906019.467935816,-2.14681,-1.24004,-0.0680199,0.0433309,0.0169875,-0.000555548,0,0,1,0
1712906019.618217077,-2.14681,-1.24004,-0.0680199,0.043797,0.0171766,-0.000614489,0,0,1,0
1712906019.768522254,-2.14681,-1.24004,-0.0680199,0.0447403,0.0175445,-0.000596118,0,0,1,0
1712906019.918771434,-2.14681,-1.24004,-0.0680199,0.0451863,0.0176909,-0.000503198,0,0,1,0
1712906020.069030621,-2.14681,-1.24004,-0.0680199,0.0461467,0.0180546,-0.000531674,0,0,1,0
1712906020.219412125,-2.14681,-1.24004,-0.0680199,0.0466042,0.0182161,-0.000510266,0,0,1,0
1712906020.369675219,-2.14681,-1.24004,-0.0680199,0.0475871,0.018587,-0.000593476,0,0,1,0
1712906020.519988477,-2.14681,-1.24004,-0.0680199,0.0480969,0.018804,-0.000634041,0,0,1,0
1712906020.670238447,-2.14681,-1.24004,-0.0680199,0.0490846,0.019202,-0.000662075,0,0,1,0
1712906020.820531873,-2.14681,-1.24004,-0.0680199,0.0495742,0.0194055,-0.000670976,0,0,1,0
1712906020.970777760,-2.14681,-1.24004,-0.0680199,0.0505677,0.0198321,-0.000733348,0,0,1,0
1712906021.121027599,-2.14681,-1.24004,-0.0680199,0.0510732,0.0200564,-0.000663645,0,0,1,0
1712906021.271296439,-2.14681,-1.24004,-0.0680199,0.0520733,0.0204725,-0.000661171,0,0,1,0
1712906021.421535823,-2.14681,-1.24004,-0.0680199,0.0530546,0.0208793,-0.000627257,0,0,1,0
1712906021.571775498,-2.14681,-1.24004,-0.0680199,0.0535686,0.0211114,-0.000561047,0,0,1,0
1712906021.722039089,-2.14681,-1.24004,-0.0680199,0.0540727,0.0213185,-0.000547964,0,0,1,0
1712906021.874243625,-2.14681,-1.24004,-0.0680199,0.0550954,0.0217106,-0.000517058,0,0,1,0
1712906022.024492663,-2.14681,-1.24004,-0.0680199,0.0561367,0.0221187,-0.000577139,0,0,1,0
1712906022.174808080,-2.14681,-1.24004,-0.0680199,0.0566528,0.022323,-0.000600499,0,0,1,0
1712906022.325059625,-2.14681,-1.24004,-0.0680199,0.0571316,0.0225241,-0.000546293,0,0,1,0
1712906022.475310878,-2.14681,-1.24004,-0.0680199,0.0581445,0.0229496,-0.000554653,0,0,1,0
1712906022.625558631,-2.14681,-1.24004,-0.0680199,0.0586739,0.0231561,-0.000473554,0,0,1,0
1712906022.775824467,-2.14681,-1.24004,-0.0680199,0.0597206,0.0236174,-0.000538564,0,0,1,0
1712906022.926095553,-2.14681,-1.24004,-0.0680199,0.0602273,0.0238534,-0.000511243,0,0,1,0
1712906023.076365279,-2.14681,-1.24004,-0.0680199,0.0612935,0.0242906,-0.000536661,0,0,1,0
1712906023.226650566,-2.14681,-1.24004,-0.0680199,0.0618155,0.0245352,-0.000567881,0,0,1,0
1712906023.376894729,-2.14681,-1.24004,-0.0680199,0.0628807,0.0249412,-0.000550002,0,0,1,0
1712906023.527134518,-2.14681,-1.24004,-0.0680199,0.0639552,0.0253381,-0.000559029,0,0,1,0
1712906023.677377516,-2.14681,-1.24004,-0.0680199,0.0644787,0.0255575,-0.000593638,0,0,1,0
1712906023.827625179,-2.14681,-1.24004,-0.0680199,0.0650226,0.0257555,-0.000560237,0,0,1,0
1712906023.977866135,-2.14681,-1.24004,-0.0680199,0.0660946,0.0261506,-0.000497022,0,0,1,0
1712906024.128112215,-2.14681,-1.24004,-0.0680199,0.0666237,0.0263728,-0.000554194,0,0,1,0
1712906024.278379328,-2.14681,-1.24004,-0.0680199,0.0676637,0.0267901,-0.000516738,0,0,1,0
1712906024.428625442,-2.14681,-1.24004,-0.0680199,0.0681886,0.0269719,-0.000520189,0,0,1,0
1712906024.578862224,-2.14681,-1.24004,-0.0680199,0.0692328,0.0274337,-0.000538757,0,0,1,0
1712906024.729103379,-2.14681,-1.24004,-0.0680199,0.0697519,0.027645,-0.000601085,0,0,1,0
1712906024.879355327,-2.14681,-1.24004,-0.0680199,0.0708617,0.0280771,-0.000559499,0,0,1,0
1712906025.029627725,-2.14681,-1.24004,-0.0680199,0.0714162,0.0282926,-0.000557012,0,0,1,0
1712906025.180017239,-2.14681,-1.24004,-0.0680199,0.0725097,0.0287743,-0.000502316,0,0,1,0
1712906025.330266469,-2.14681,-1.24004,-0.0680199,0.0730685,0.0290213,-0.000548189,0,0,1,0
1712906025.480514240,-2.14681,-1.24004,-0.0680199,0.0741478,0.0294997,-0.000542248,0,0,1,0
1712906025.630779218,-2.14681,-1.24004,-0.0680199,0.0752271,0.0299398,-0.000593244,0,0,1,0
1712906025.781046822,-2.14681,-1.24004,-0.0680199,0.0758047,0.0301939,-0.000554553,0,0,1,0
1712906025.931289926,-2.14681,-1.24004,-0.0680199,0.076352,0.0304368,-0.000537961,0,0,1,0
1712906026.081559675,-2.14681,-1.24004,-0.0680199,0.0774756,0.0308597,-0.000533447,0,0,1,0
1712906026.231851683,-2.14681,-1.24004,-0.0680199,0.0786063,0.0313138,-0.000495814,0,0,1,0
1712906026.382094401,-2.14681,-1.24004,-0.0680199,0.0791765,0.0315715,-0.00042374,0,0,1,0
1712906026.534572357,-2.14681,-1.24004,-0.0680199,0.0802995,0.0320671,-0.000438749,0,0,1,0
1712906026.684915988,-2.14681,-1.24004,-0.0680199,0.0808763,0.0323024,-0.000398721,0,0,1,0
1712906026.835182330,-2.14681,-1.24004,-0.0680199,0.082015,0.032734,-0.000434626,0,0,1,0
1712906026.985436715,-2.14681,-1.24004,-0.0680199,0.0825984,0.0329547,-0.000435744,0,0,1,0
1712906027.135681939,-2.14681,-1.24004,-0.0680199,0.0831701,0.0331689,-0.000369817,0,0,1,0
1712906027.285920187,-2.14681,-1.24004,-0.0680199,0.0843045,0.0336629,-0.000312667,0,0,1,0
1712906027.436170684,-2.14681,-1.24004,-0.0680199,0.0854594,0.0341623,-0.00029915,0,0,1,0
1712906027.589076404,-2.14681,-1.24004,-0.0680199,0.0860104,0.0343805,-0.000248297,0,0,1,0
1712906027.739419647,-2.14681,-1.24004,-0.0680199,0.0865618,0.0346229,-0.000232308,0,0,1,0
1712906027.889681810,-2.14681,-1.24004,-0.0680199,0.0877055,0.0351186,-0.000194162,0,0,1,0
1712906028.039946063,-2.14681,-1.24004,-0.0680199,0.0888654,0.0355193,-0.000232531,0,0,1,0
1712906028.190093800,-2.14681,-1.24004,-0.0680199,0.0894347,0.0357443,-0.00021878,0,0,1,0
1712906028.340250287,-2.14681,-1.24004,-0.0680199,0.0905893,0.036219,-0.000282891,0,0,1,0
1712906028.490396274,-2.14681,-1.24004,-0.0680199,0.0911517,0.0364212,-0.000280317,0,0,1,0
1712906028.640532345,-2.14681,-1.24004,-0.0680199,0.0922935,0.0369135,-0.000217545,0,0,1,0
1712906028.791061566,-2.14681,-1.24004,-0.0680199,0.0928185,0.0370838,-0.000199434,0,0,1,0
1712906028.941379922,-2.14681,-1.24004,-0.0680199,0.0939575,0.0375358,-0.000185094,0,0,1,0
1712906029.091621102,-2.14681,-1.24004,-0.0680199,0.0945121,0.0377679,-0.000154537,0,0,1,0
1712906029.241866153,-2.14681,-1.24004,-0.0680199,0.0956623,0.0382335,-5.73828e-05,0,0,1,0
1712906029.392116162,-2.14681,-1.24004,-0.0680199,0.0962612,0.0384683,-3.42392e-05,0,0,1,0
1712906029.542359462,-2.14681,-1.24004,-0.0680199,0.0974267,0.0388639,-0.000143977,0,0,1,0
1712906029.692598680,-2.14681,-1.24004,-0.0680199,0.0979923,0.0390836,-0.000121846,0,0,1,0
1712906029.842818940,-2.14681,-1.24004,-0.0680199,0.0985695,0.0393177,-0.000151139,0,0,1,0
1712906029.993150029,-2.14681,-1.24004,-0.0680199,0.0997018,0.0397622,-0.000133267,0,0,1,0
1712906030.143397883,-2.14681,-1.24004,-0.0680199,0.100839,0.0402105,-0.000151893,0,0,1,0
1712906030.293711373,-2.14681,-1.24004,-0.0680199,0.101388,0.0404535,-0.000199266,0,0,1,0
1712906030.443970030,-2.14681,-1.24004,-0.0680199,0.102511,0.0408985,-0.00015347,0,0,1,0
1712906030.594205356,-2.14681,-1.24004,-0.0680199,0.103086,0.0411089,-0.000213026,0,0,1,0
1712906030.744517679,-2.14681,-1.24004,-0.0680199,0.104234,0.0415479,-0.000256039,0,0,1,0
1712906030.894810752,-2.14681,-1.24004,-0.0680199,0.104787,0.0417693,-0.000234288,0,0,1,0
1712906031.045064505,-2.14681,-1.24004,-0.0680199,0.105981,0.0421646,-0.000220264,0,0,1,0
1712906031.195312270,-2.14681,-1.24004,-0.0680199,0.106569,0.0424333,-0.000205698,0,0,1,0
1712906031.345602908,-2.14681,-1.24004,-0.0680199,0.10771,0.04284,-0.000192516,0,0,1,0
1712906031.495832881,-2.14681,-1.24004,-0.0680199,0.108273,0.0431016,-0.000166455,0,0,1,0
1712906031.645971567,-2.14681,-1.24004,-0.0680199,0.109409,0.0435697,-0.000147964,0,0,1,0
1712906031.796111419,-2.14681,-1.24004,-0.0680199,0.109999,0.0438137,-0.000118093,0,0,1,0
1712906031.946250104,-2.14681,-1.24004,-0.0680199,0.111206,0.044299,-0.000135118,0,0,1,0
1712906032.096398239,-2.14681,-1.24004,-0.0680199,0.111748,0.044529,-0.000170231,0,0,1,0
1712906032.246540904,-2.14681,-1.24004,-0.0680199,0.112918,0.045036,-0.000195577,0,0,1,0
1712906032.396675986,-2.14681,-1.24004,-0.0680199,0.113487,0.0452543,-0.000206673,0,0,1,0
1712906032.546808443,-2.14681,-1.24004,-0.0680199,0.114607,0.045701,-0.000161845,0,0,1,0
1712906032.696942650,-2.14681,-1.24004,-0.0680199,0.115213,0.0459421,-4.12561e-05,0,0,1,0
1712906032.847084439,-2.14681,-1.24004,-0.0680199,0.116365,0.0464489,-0.00011194,0,0,1,0
1712906032.997220688,-2.14681,-1.24004,-0.0680199,0.116948,0.0466388,-9.85593e-05,0,0,1,0
1712906033.147394739,-2.14681,-1.24004,-0.0680199,0.118101,0.0471928,-6.85056e-05,0,0,1,0
1712906033.297552465,-2.14681,-1.24004,-0.0680199,0.118666,0.0473933,-2.29193e-05,0,0,1,0
1712906033.447696483,-2.14681,-1.24004,-0.0680199,0.119753,0.047837,-4.21277e-05,0,0,1,0
1712906033.597851876,-2.14681,-1.24004,-0.0680199,0.120335,0.0480986,-6.97577e-05,0,0,1,0
1712906033.747991811,-2.14681,-1.24004,-0.0680199,0.121532,0.0485816,-9.37739e-05,0,0,1,0
1712906033.898131454,-2.14681,-1.24004,-0.0680199,0.122095,0.0487995,-6.8511e-05,0,0,1,0
1712906034.048270569,-2.14681,-1.24004,-0.0680199,0.123204,0.0492583,-8.63211e-05,0,0,1,0
1712906034.198409231,-2.14681,-1.24004,-0.0680199,0.123781,0.049493,1.52291e-05,0,0,1,0
1712906034.348544684,-2.14681,-1.24004,-0.0680199,0.124926,0.0499791,-8.6965e-05,0,0,1,0
1712906034.499526818,-2.14681,-1.24004,-0.0680199,0.125512,0.0502745,-0.00022216,0,0,1,0
1712906034.649699895,-2.14681,-1.24004,-0.0680199,0.126684,0.0507226,-0.000270333,0,0,1,0
1712906034.799840307,-2.14681,-1.24004,-0.0680199,0.127244,0.0509671,-0.000330059,0,0,1,0
1712906034.949995301,-2.14681,-1.24004,-0.0680199,0.127835,0.0512245,-0.000296023,0,0,1,0
1712906035.100136415,-2.14681,-1.24004,-0.0680199,0.128956,0.0517166,-0.000230289,0,0,1,0
1712906035.250270010,-2.14681,-1.24004,-0.0680199,0.130131,0.0522327,-0.000337889,0,0,1,0
1712906035.400404189,-2.14681,-1.24004,-0.0680199,0.13073,0.0524923,-0.000394116,0,0,1,0
1712906035.550538367,-2.14681,-1.24004,-0.0680199,0.131883,0.0529581,-0.000451501,0,0,1,0
1712906035.700676338,-2.14681,-1.24004,-0.0680199,0.132437,0.0532091,-0.00043536,0,0,1,0
1712906035.850814308,-2.14681,-1.24004,-0.0680199,0.133571,0.0536995,-0.000436525,0,0,1,0
1712906036.004770368,-2.14681,-1.24004,-0.0680199,0.134129,0.0539117,-0.00049551,0,0,1,0
1712906036.154923103,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906036.305098880,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906036.455280197,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906036.605471723,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906036.755705831,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906036.905904065,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906037.056101196,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906037.206368734,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906037.356676812,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906037.507152885,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906037.657520462,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906037.807708960,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906037.957882584,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906038.108059250,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906038.258336008,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906038.408658557,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906038.558949607,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906038.709324946,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906038.859676661,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906039.010049676,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906039.160351112,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906039.310718754,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906039.461099230,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906039.611394541,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906039.761554523,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906039.911719171,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906040.061888555,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906040.212060962,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906040.362221121,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906040.512382154,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0
1712906040.662596560,-2.14681,-1.24004,-0.0680199,0.134699,0.0541238,-0.000552669,0,0,1,0

View File

@ -1,166 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1712906350.384038597,-2.14681,-1.24004,-0.0680199,0.0837465,0.00463392,0.000325265,0,0.0666667,-0.246316,0
1712906350.534185664,-2.14681,-1.24004,-0.0680199,0.0852984,0.00475586,0.00022712,0,0.0666667,-0.246316,0
1712906350.684314353,-2.14681,-1.24004,-0.0680199,0.0861105,0.0047737,0.000200279,0,0.0666667,-0.246316,0
1712906350.834436042,-2.14681,-1.24004,-0.0680199,0.0877534,0.00483134,0.000182127,0,0.0666667,-0.246316,0
1712906350.984565606,-2.14681,-1.24004,-0.0680199,0.0886088,0.00486574,0.000185313,0,0.0666667,-0.246316,0
1712906351.134693434,-2.14681,-1.24004,-0.0680199,0.0894354,0.00493374,0.000183066,0,0.0666667,-0.246316,0
1712906351.284834682,-2.14681,-1.24004,-0.0680199,0.0909572,0.00499198,0.000212912,0,0.0666667,-0.284211,0
1712906351.435063731,-2.14681,-1.24004,-0.0680199,0.0925676,0.0051171,0.000170048,0,0.0666667,-0.322105,0
1712906351.585293947,-2.14681,-1.24004,-0.0680199,0.0933923,0.00516307,0.000154383,0,0.0666667,-0.322105,0
1712906351.735518329,-2.14681,-1.24004,-0.0680199,0.0950304,0.00529455,0.000112483,0,0.0666667,-0.322105,0
1712906351.885781798,-2.14681,-1.24004,-0.0680199,0.0957651,0.0053294,0.000176978,0,0.0666667,-0.322105,0
1712906352.036029228,-2.14681,-1.24004,-0.0680199,0.0974375,0.00539376,0.000130342,0,0.0666667,-0.322105,0
1712906352.186280753,-2.14681,-1.24004,-0.0680199,0.098266,0.00540599,6.85751e-05,0,0.0666667,-0.322105,0
1712906352.336503984,-2.14681,-1.24004,-0.0680199,0.0998332,0.00555781,6.31296e-05,0,0.0666667,-0.322105,0
1712906352.486725464,-2.14681,-1.24004,-0.0680199,0.100678,0.00559298,5.71625e-05,0,0.0666667,-0.322105,0
1712906352.636947528,-2.14681,-1.24004,-0.0680199,0.102343,0.00571124,0.000130291,0,0.0666667,-0.322105,0
1712906352.787173967,-2.14681,-1.24004,-0.0680199,0.103138,0.00572315,0.000118537,0,0.0666667,-0.322105,0
1712906352.937394572,-2.14681,-1.24004,-0.0680199,0.103959,0.00578855,6.47969e-05,0,0.0666667,-0.322105,0
1712906353.087633563,-2.14681,-1.24004,-0.0680199,0.105568,0.00591973,-4.20285e-05,0,0.0666667,-0.322105,0
1712906353.237861184,-2.14681,-1.24004,-0.0680199,0.107219,0.00597256,-9.34659e-06,0,0.0666667,-0.322105,0
1712906353.388091722,-2.14681,-1.24004,-0.0680199,0.107951,0.0060141,-6.82558e-05,0,0.0666667,-0.322105,0
1712906353.538320218,-2.14681,-1.24004,-0.0680199,0.108806,0.00608034,-7.95341e-05,0,0.0666667,-0.322105,0
1712906353.688593636,-2.14681,-1.24004,-0.0680199,0.11254,0.00620687,-2.87904e-05,0,0.0666667,-0.322105,0
1712906353.838864137,-2.14681,-1.24004,-0.0680199,0.113297,0.00626067,-4.72756e-05,0,0.0666667,-0.36,0
1712906353.989092342,-2.14681,-1.24004,-0.0680199,0.114896,0.00638806,-5.16661e-05,0,0.0666667,-0.36,0
1712906354.139315018,-2.14681,-1.24004,-0.0680199,0.116569,0.00647175,-7.39937e-07,0,0.0666667,-0.36,0
1712906354.289593118,-2.14681,-1.24004,-0.0680199,0.117353,0.00654531,4.33639e-05,0,0.0666667,-0.36,0
1712906354.439778749,-2.14681,-1.24004,-0.0680199,0.118994,0.00669265,2.63576e-05,0,0.0666667,-0.36,0
1712906354.589917125,-2.14681,-1.24004,-0.0680199,0.11986,0.0066849,4.44921e-05,0,0.0666667,-0.36,0
1712906354.740045292,-2.14681,-1.24004,-0.0680199,0.121528,0.00677608,9.48204e-05,0,0.0666667,-0.36,0
1712906354.890171709,-2.14681,-1.24004,-0.0680199,0.122397,0.00685632,-1.01225e-05,0,0.0666667,-0.36,0
1712906355.040297838,-2.14681,-1.24004,-0.0680199,0.124041,0.00700465,3.39219e-05,0,0.0666667,-0.36,0
1712906355.190441771,-2.14681,-1.24004,-0.0680199,0.124893,0.00706588,9.37225e-05,0,0.0666667,-0.36,0
1712906355.340570828,-2.14681,-1.24004,-0.0680199,0.125638,0.00709523,9.54136e-05,0,0.0666667,-0.170526,0
1712906355.490701927,-2.14681,-1.24004,-0.0680199,0.12731,0.00720567,5.70987e-05,0,0.0666667,-0.246316,0
1712906355.640828941,-2.14681,-1.24004,-0.0680199,0.128115,0.0072541,4.24497e-05,0,0.0666667,-0.246316,0
1712906355.790957707,-2.14681,-1.24004,-0.0680199,0.129891,0.00735197,1.53836e-05,0,0.0666667,-0.246316,0
1712906355.941084430,-2.14681,-1.24004,-0.0680199,0.130722,0.00740731,3.03361e-05,0,0.0666667,-0.246316,0
1712906356.091211745,-2.14681,-1.24004,-0.0680199,0.132387,0.00745935,9.38391e-05,0,0.0666667,-0.246316,0
1712906356.241350443,-2.14681,-1.24004,-0.0680199,0.133297,0.00752136,4.90073e-05,0,0.0666667,-0.246316,0
1712906356.391481265,-2.14681,-1.24004,-0.0680199,0.134874,0.0076462,7.43074e-05,0,0.0666667,-0.246316,0
1712906356.541610628,-2.14681,-1.24004,-0.0680199,0.136617,0.00776998,0.00015427,0,0.0666667,-0.246316,0
1712906356.691739116,-2.14681,-1.24004,-0.0680199,0.137525,0.00784571,9.51024e-05,0,0.0666667,-0.246316,0
1712906356.841870230,-2.14681,-1.24004,-0.0680199,0.139266,0.00792994,7.30339e-05,0,0.0666667,-0.246316,0
1712906356.991998718,-2.14681,-1.24004,-0.0680199,0.140113,0.00795902,5.4731e-05,0,0.0666667,-0.246316,0
1712906357.142126636,-2.14681,-1.24004,-0.0680199,0.141847,0.00805036,7.03826e-05,0,0.0666667,-0.246316,0
1712906357.292253681,-2.14681,-1.24004,-0.0680199,0.142642,0.00809285,0.000123896,0,0.0666667,-0.322105,0
1712906357.442383351,-2.14681,-1.24004,-0.0680199,0.144242,0.00810346,0.000110702,0,0.0666667,-0.322105,0
1712906357.592478600,-2.14681,-1.24004,-0.0680199,0.145054,0.00815975,3.65869e-05,0,0.0666667,-0.322105,0
1712906357.742610895,-2.14681,-1.24004,-0.0680199,0.146723,0.00833487,2.85434e-05,0,0.0666667,-0.322105,0
1712906357.892735022,-2.14681,-1.24004,-0.0680199,0.147529,0.00835016,-2.81884e-05,0,0.0666667,-0.322105,0
1712906358.042866154,-2.14681,-1.24004,-0.0680199,0.149124,0.00841462,1.3357e-05,0,0.0666667,-0.322105,0
1712906358.193020925,-2.14681,-1.24004,-0.0680199,0.149961,0.00847088,3.3676e-05,0,0.0666667,-0.322105,0
1712906358.343278373,-2.14681,-1.24004,-0.0680199,0.151546,0.0085913,2.70237e-06,0,0.0666667,-0.322105,0
1712906358.493502860,-2.14681,-1.24004,-0.0680199,0.152378,0.00862688,-1.70322e-06,0,0.0666667,-0.322105,0
1712906358.643727346,-2.14681,-1.24004,-0.0680199,0.154026,0.00872634,4.34081e-06,0,0.0666667,-0.322105,0
1712906358.793950958,-2.14681,-1.24004,-0.0680199,0.154843,0.00873442,5.12582e-06,0,0.0666667,-0.322105,0
1712906358.944179820,-2.14681,-1.24004,-0.0680199,0.156501,0.00882692,9.33138e-05,0,0.0666667,-0.322105,0
1712906359.094409274,-2.14681,-1.24004,-0.0680199,0.157378,0.00888329,9.16775e-05,0,0.0666667,-0.322105,0
1712906359.244651569,-2.14681,-1.24004,-0.0680199,0.159125,0.0089619,0.000133024,0,0.0666667,-0.322105,0
1712906359.394876361,-2.14681,-1.24004,-0.0680199,0.16003,0.00899033,0.000135793,0,0.0666667,-0.322105,0
1712906359.545101154,-2.14681,-1.24004,-0.0680199,0.161723,0.00906144,0.000199775,0,0.0666667,-0.322105,0
1712906359.695336740,-2.14681,-1.24004,-0.0680199,0.162567,0.00914083,0.000147883,0,0.0666667,-0.36,0
1712906359.845595369,-2.14681,-1.24004,-0.0680199,0.164268,0.00928524,5.63703e-05,0,0.0666667,-0.36,0
1712906359.995840873,-2.14681,-1.24004,-0.0680199,0.16511,0.00933531,4.07988e-05,0,0.0666667,-0.36,0
1712906360.146070638,-2.14681,-1.24004,-0.0680199,0.166833,0.00945744,9.95974e-05,0,0.0666667,-0.36,0
1712906360.296302446,-2.14681,-1.24004,-0.0680199,0.167724,0.00949256,7.29309e-05,0,0.0666667,-0.36,0
1712906360.446547380,-2.14681,-1.24004,-0.0680199,0.169506,0.00959166,6.64274e-05,0,0.0666667,-0.36,0
1712906360.596794356,-2.14681,-1.24004,-0.0680199,0.170428,0.0096267,8.69574e-05,0,0.0666667,-0.36,0
1712906360.747024706,-2.14681,-1.24004,-0.0680199,0.172209,0.0097407,6.18203e-05,0,0.0666667,-0.36,0
1712906360.897273724,-2.14681,-1.24004,-0.0680199,0.173068,0.00978291,4.725e-05,0,0.0666667,-0.36,0
1712906361.047555125,-2.14681,-1.24004,-0.0680199,0.174848,0.00989707,8.71449e-05,0,0.0666667,-0.36,0
1712906361.197777612,-2.14681,-1.24004,-0.0680199,0.17572,0.00995443,6.0139e-05,0,0.0666667,-0.36,0
1712906361.348021394,-2.14681,-1.24004,-0.0680199,0.177513,0.0100387,2.40807e-05,0,0.0666667,-0.246316,0
1712906361.498247966,-2.14681,-1.24004,-0.0680199,0.17836,0.0100148,-3.35097e-05,0,0.0666667,-0.246316,0
1712906361.648499623,-2.14681,-1.24004,-0.0680199,0.18009,0.0101067,-6.99327e-05,0,0.0666667,-0.246316,0
1712906361.798787160,-2.14681,-1.24004,-0.0680199,0.180969,0.0101564,-8.4414e-05,0,0.0666667,-0.246316,0
1712906361.949016065,-2.14681,-1.24004,-0.0680199,0.182767,0.0102852,-8.992e-06,0,0.0666667,-0.246316,0
1712906362.099244687,-2.14681,-1.24004,-0.0680199,0.18363,0.0103123,-5.18312e-05,0,0.0666667,-0.246316,0
1712906362.249558199,-2.14681,-1.24004,-0.0680199,0.185387,0.0103814,-0.000172611,0,0.0666667,-0.246316,0
1712906362.399798203,-2.14681,-1.24004,-0.0680199,0.18628,0.010431,-0.0001692,0,0.0666667,-0.246316,0
1712906362.550024789,-2.14681,-1.24004,-0.0680199,0.188022,0.0105458,-0.000139225,0,0.0666667,-0.246316,0
1712906362.700252249,-2.14681,-1.24004,-0.0680199,0.188913,0.0105956,-0.000105538,0,0.0666667,-0.246316,0
1712906362.850487878,-2.14681,-1.24004,-0.0680199,0.190635,0.0106716,-4.77347e-05,0,0.0666667,-0.284211,0
1712906363.000723214,-2.14681,-1.24004,-0.0680199,0.191533,0.0106905,-6.52587e-05,0,0.0666667,-0.246316,0
1712906363.150951272,-2.14681,-1.24004,-0.0680199,0.193321,0.0107902,2.2814e-06,0,0.0666667,-0.322105,0
1712906363.301172330,-2.14681,-1.24004,-0.0680199,0.194201,0.010832,5.29587e-05,0,0.0666667,-0.322105,0
1712906363.451452310,-2.14681,-1.24004,-0.0680199,0.195995,0.010955,0.00018476,0,0.0666667,-0.322105,0
1712906363.601695828,-2.14681,-1.24004,-0.0680199,0.196883,0.0110278,0.000249487,0,0.0666667,-0.322105,0
1712906363.751926512,-2.14681,-1.24004,-0.0680199,0.19869,0.0112048,0.00029744,0,0.0666667,-0.322105,0
1712906363.902149611,-2.14681,-1.24004,-0.0680199,0.199585,0.0113167,0.000295132,0,0.0666667,-0.322105,0
1712906364.052377673,-2.14681,-1.24004,-0.0680199,0.20138,0.0114374,0.000345794,0,0.0666667,-0.322105,0
1712906364.202611871,-2.14681,-1.24004,-0.0680199,0.202298,0.0115015,0.00034337,0,0.0666667,-0.322105,0
1712906364.352837901,-2.14681,-1.24004,-0.0680199,0.204105,0.0115987,0.000261716,0,0.0666667,-0.322105,0
1712906364.502972338,-2.14681,-1.24004,-0.0680199,0.205011,0.0116393,0.000254508,0,0.0666667,-0.322105,0
1712906364.653100649,-2.14681,-1.24004,-0.0680199,0.206727,0.0116655,0.000220111,0,0.0666667,-0.322105,0
1712906364.803227501,-2.14681,-1.24004,-0.0680199,0.207615,0.0117139,0.000186458,0,0.0666667,-0.322105,0
1712906364.953354354,-2.14681,-1.24004,-0.0680199,0.20932,0.0118348,0.000156812,0,0.0666667,-0.322105,0
1712906365.103481507,-2.14681,-1.24004,-0.0680199,0.210233,0.0118829,0.000298084,0,0.0666667,-0.322105,0
1712906365.253610123,-2.14681,-1.24004,-0.0680199,0.211975,0.0119795,0.000336851,0,0.0666667,-0.322105,0
1712906365.403737573,-2.14681,-1.24004,-0.0680199,0.212814,0.0120199,0.000351313,0,0.0666667,-0.36,0
1712906365.553869398,-2.14681,-1.24004,-0.0680199,0.214605,0.0121317,0.000262557,0,0.0666667,-0.36,0
1712906365.703998889,-2.14681,-1.24004,-0.0680199,0.215486,0.0121958,0.000271931,0,0.0666667,-0.36,0
1712906365.854125464,-2.14681,-1.24004,-0.0680199,0.217308,0.0123716,0.000343305,0,0.0666667,-0.36,0
1712906366.004254372,-2.14681,-1.24004,-0.0680199,0.218167,0.0124194,0.000401595,0,0.0666667,-0.36,0
1712906366.154382126,-2.14681,-1.24004,-0.0680199,0.219839,0.0124743,0.000415107,0,0.0666667,-0.36,0
1712906366.304510757,-2.14681,-1.24004,-0.0680199,0.220741,0.0125461,0.000429646,0,0.0666667,-0.36,0
1712906366.454637928,-2.14681,-1.24004,-0.0680199,0.222401,0.012553,0.000448882,0,0.0666667,-0.36,0
1712906366.604768600,-2.14681,-1.24004,-0.0680199,0.223291,0.0125925,0.000452102,0,0.0666667,-0.36,0
1712906366.754896355,-2.14681,-1.24004,-0.0680199,0.22505,0.0126471,0.000462619,0,0.0666667,-0.36,0
1712906366.905025860,-2.14681,-1.24004,-0.0680199,0.225938,0.0127191,0.000427741,0,0.0666667,-0.170526,0
1712906367.055152453,-2.14681,-1.24004,-0.0680199,0.227672,0.0127658,0.000402915,0,0.0666667,-0.246316,0
1712906367.205279346,-2.14681,-1.24004,-0.0680199,0.228574,0.0128298,0.000372546,0,0.0666667,-0.246316,0
1712906367.355411490,-2.14681,-1.24004,-0.0680199,0.230285,0.0128839,0.000459821,0,0.0666667,-0.246316,0
1712906367.505542176,-2.14681,-1.24004,-0.0680199,0.231149,0.0129641,0.000490487,0,0.0666667,-0.246316,0
1712906367.655670819,-2.14681,-1.24004,-0.0680199,0.2329,0.0130583,0.000416182,0,0.0666667,-0.246316,0
1712906367.805797713,-2.14681,-1.24004,-0.0680199,0.233779,0.0131219,0.000386194,0,0.0666667,-0.246316,0
1712906367.955931899,-2.14681,-1.24004,-0.0680199,0.235443,0.013291,0.000321777,0,0.0666667,-0.246316,0
1712906368.106076012,-2.14681,-1.24004,-0.0680199,0.236327,0.0133626,0.000310812,0,0.0666667,-0.246316,0
1712906368.256204669,-2.14681,-1.24004,-0.0680199,0.238008,0.0133729,0.000360132,0,0.0666667,-0.246316,0
1712906368.406337410,-2.14681,-1.24004,-0.0680199,0.238852,0.013403,0.000355682,0,0.0666667,-0.246316,0
1712906368.556467817,-2.14681,-1.24004,-0.0680199,0.240573,0.0134968,0.00031154,0,0.0666667,-0.284211,0
1712906368.706594724,-2.14681,-1.24004,-0.0680199,0.241404,0.013535,0.000331467,0,0.0666667,-0.246316,0
1712906368.856719881,-2.14681,-1.24004,-0.0680199,0.243164,0.0137304,0.000332424,0,0.0666667,-0.322105,0
1712906369.006847372,-2.14681,-1.24004,-0.0680199,0.244056,0.013793,0.000367545,0,0.0666667,-0.322105,0
1712906369.156974584,-2.14681,-1.24004,-0.0680199,0.245792,0.0139779,0.000367518,0,0.0666667,-0.322105,0
1712906369.307104712,-2.14681,-1.24004,-0.0680199,0.246663,0.0140571,0.000392593,0,0.0666667,-0.322105,0
1712906369.457228716,-2.14681,-1.24004,-0.0680199,0.248382,0.0141231,0.000356382,0,0.0666667,-0.322105,0
1712906369.607372555,-2.14681,-1.24004,-0.0680199,0.249221,0.0141352,0.000424409,0,0.0666667,-0.322105,0
1712906369.757502975,-2.14681,-1.24004,-0.0680199,0.250842,0.014218,0.000424244,0,0.0666667,-0.322105,0
1712906369.907630187,-2.14681,-1.24004,-0.0680199,0.251561,0.0142296,0.000465903,0,0.0666667,-0.322105,0
1712906370.057757696,-2.14681,-1.24004,-0.0680199,0.253026,0.0142866,0.000442854,0,0.0666667,-0.322105,0
1712906370.207891630,-2.14681,-1.24004,-0.0680199,0.253754,0.0142575,0.000411609,0,0.0666667,-0.322105,0
1712906370.358024398,-2.14681,-1.24004,-0.0680199,0.255158,0.0143145,0.000374955,0,0.0666667,-0.322105,0
1712906370.508161833,-2.14681,-1.24004,-0.0680199,0.255889,0.014377,0.000454958,0,0.0666667,-0.322105,0
1712906370.658291975,-2.14681,-1.24004,-0.0680199,0.257318,0.0143247,0.000494182,0,0.0666667,-0.322105,0
1712906370.808423867,-2.14681,-1.24004,-0.0680199,0.258001,0.0143361,0.000527738,0,0.0666667,-0.322105,0
1712906370.958556635,-2.14681,-1.24004,-0.0680199,0.259478,0.0142926,0.000559035,0,0.0666667,-0.322105,0
1712906371.108689995,-2.14681,-1.24004,-0.0680199,0.260203,0.0143554,0.000542395,0,0.0666667,-0.322105,0
1712906371.258817817,-2.14681,-1.24004,-0.0680199,0.261631,0.0143447,0.000600315,0,0.0666667,-0.322105,0
1712906371.408959057,-2.14681,-1.24004,-0.0680199,0.262269,0.0142717,0.000551897,0,0.0666667,-0.322105,0
1712906371.559093296,-2.14681,-1.24004,-0.0680199,0.263626,0.0142949,0.000456019,0,0.0666667,-0.36,0
1712906371.709222285,-2.14681,-1.24004,-0.0680199,0.264316,0.0143065,0.00041048,0,0.0666667,-0.36,0
1712906371.859347189,-2.14681,-1.24004,-0.0680199,0.265699,0.0143294,0.000351398,0,0.0666667,-0.36,0
1712906372.009476470,-2.14681,-1.24004,-0.0680199,0.266411,0.0143756,0.000257732,0,0.0666667,-0.36,0
1712906372.159607806,-2.14681,-1.24004,-0.0680199,0.267828,0.014477,0.00025745,0,0.0666667,-0.36,0
1712906372.309736516,-2.14681,-1.24004,-0.0680199,0.268648,0.0144883,0.000256011,0,0.0666667,-0.36,0
1712906372.459864059,-2.14681,-1.24004,-0.0680199,0.2702,0.0144344,0.000363314,0,0.0666667,-0.36,0
1712906372.610000353,-2.14681,-1.24004,-0.0680199,0.270932,0.0144201,0.000364174,0,0.0666667,-0.36,0
1712906372.760127604,-2.14681,-1.24004,-0.0680199,0.272411,0.0145037,0.000293047,0,0.0666667,-0.36,0
1712906372.910258940,-2.14681,-1.24004,-0.0680199,0.273087,0.0145236,0.000324768,0,0.0666667,-0.36,0
1712906373.060387655,-2.14681,-1.24004,-0.0680199,0.274277,0.0145277,0.000330872,0,0.0666667,-0.36,0
1712906373.210521336,-2.14681,-1.24004,-0.0680199,0.27487,0.0145387,0.000371302,0,0.0666667,-0.36,0
1712906373.360648893,-2.14681,-1.24004,-0.0680199,0.276088,0.0145879,0.00044215,0,0.0666667,-0.246316,0
1712906373.510785783,-2.14681,-1.24004,-0.0680199,0.276687,0.0146698,0.000469043,0,0.0666667,-0.246316,0
1712906373.660912172,-2.14681,-1.24004,-0.0680199,0.277909,0.0147348,0.000570763,0,0.0666667,-0.246316,0
1712906373.811043521,-2.14681,-1.24004,-0.0680199,0.278514,0.014711,0.000380885,0,0.0666667,-0.246316,0
1712906373.961171660,-2.14681,-1.24004,-0.0680199,0.279796,0.0148463,0.000434182,0,0.0666667,-0.246316,0
1712906374.111307977,-2.14681,-1.24004,-0.0680199,0.280412,0.0149538,0.000667448,0,0.0666667,-0.246316,0
1712906374.261437004,-2.14681,-1.24004,-0.0680199,0.281645,0.0150014,0.0010425,0,0.0666667,-0.246316,0
1712906374.411566615,-2.14681,-1.24004,-0.0680199,0.282183,0.014993,0.000636967,0,0.0666667,-0.246316,0
1712906374.561692434,-2.14681,-1.24004,-0.0680199,0.283428,0.0151019,0.00111613,0,0.0666667,-0.246316,0
1712906374.711829045,-2.14681,-1.24004,-0.0680199,0.284036,0.0150937,0.000678869,0,0.0666667,-0.246316,0
1712906374.861964199,-2.14681,-1.24004,-0.0680199,0.285312,0.0152016,0.000773351,0,0.0666667,-0.246316,0
1712906375.012144566,-2.14681,-1.24004,-0.0680199,0.285312,0.0152016,0.000773351,0,0.0666667,-0.246316,0

View File

@ -1,163 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713150388.882741802,-2.14681,-1.24004,-0.0680199,0.763981,-0.208801,-0.00965225,0,0.0666667,-0.36,0
1713150389.033009942,-2.14681,-1.24004,-0.0680199,0.764145,-0.208789,-0.0227542,0,0.0666667,-0.36,0
1713150389.183249499,-2.14681,-1.24004,-0.0680199,0.768206,-0.208866,-0.0610694,0,0.0666667,-0.322105,0
1713150389.333478847,-2.14681,-1.24004,-0.0680199,0.768361,-0.208955,-0.0829281,0,0.0666667,-0.322105,0
1713150389.483716654,-2.14681,-1.24004,-0.0680199,0.778593,-0.209123,-0.121817,0,0.0666667,-0.284211,0
1713150389.633947460,-2.14681,-1.24004,-0.0680199,0.788618,-0.209288,-0.158912,0,0.0666667,-0.36,0
1713150389.784156392,-2.14681,-1.24004,-0.0680199,0.788666,-0.209445,-0.196684,0,0.0666667,-0.322105,0
1713150389.934390699,-2.14681,-1.24004,-0.0680199,0.798757,-0.209856,-0.247415,0,0.0666667,-0.322105,0
1713150390.084637256,-2.14681,-1.24004,-0.0680199,0.808794,-0.210043,-0.289641,0,0.0666667,-0.284211,0
1713150390.234931354,-2.14681,-1.24004,-0.0680199,0.818694,-0.215593,-0.328463,0,0.0666667,-0.36,0
1713150390.385160994,-2.14681,-1.24004,-0.0680199,0.828646,-0.220528,-0.359749,0,0.0666667,-0.36,0
1713150390.535418051,-2.14681,-1.24004,-0.0680199,0.828799,-0.220612,-0.398435,0,0.0666667,-0.36,0
1713150390.685768733,-2.14681,-1.24004,-0.0680199,0.838933,-0.22065,-0.432746,0,0.0666667,-0.36,0
1713150390.836108623,-2.14681,-1.24004,-0.0680199,0.84905,-0.230558,-0.480431,0,0.0666667,-0.322105,0
1713150390.986433930,-2.14681,-1.24004,-0.0680199,0.858777,-0.2307,-0.525132,0,0.0666667,-0.36,0
1713150391.136859861,-2.14681,-1.24004,-0.0680199,0.868223,-0.241122,-0.574013,0,0.0666667,-0.36,0
1713150391.287212877,-2.14681,-1.24004,-0.0680199,0.867409,-0.241721,-0.615339,0,0.0666667,-0.36,0
1713150391.437501433,-2.14681,-1.24004,-0.0680199,0.877523,-0.25152,-0.656635,0,0.0666667,-0.36,0
1713150391.587756740,-2.14681,-1.24004,-0.0680199,0.887412,-0.25672,-0.733637,0,0.0666667,-0.36,0
1713150391.737994547,-2.14681,-1.24004,-0.0680199,0.887325,-0.261272,-0.776775,0,0.0666667,-0.36,0
1713150391.888230604,-2.14681,-1.24004,-0.0680199,0.897067,-0.26859,-0.82198,0,0.0666667,-0.36,0
1713150392.038470160,-2.14681,-1.24004,-0.0680199,0.896853,-0.271216,-0.854361,0,0.0666667,-0.322105,0
1713150392.188701259,-2.14681,-1.24004,-0.0680199,0.90671,-0.281069,-0.917056,0,0.0666667,-0.36,0
1713150392.338939066,-2.14681,-1.24004,-0.0680199,0.906136,-0.281085,-0.967359,0,0.0666667,-0.36,0
1713150392.489181247,-2.14681,-1.24004,-0.0680199,0.915539,-0.291002,-1.01257,0,0.0666667,-0.36,0
1713150392.639426054,-2.14681,-1.24004,-0.0680199,0.915439,-0.300924,-1.05429,0,0.0666667,-0.36,0
1713150392.789656861,-2.14681,-1.24004,-0.0680199,0.925282,-0.310718,-1.11476,0,0.0666667,-0.36,0
1713150392.939917418,-2.14681,-1.24004,-0.0680199,0.924576,-0.32075,-1.16461,0,0.0666667,-0.36,0
1713150393.090162808,-2.14681,-1.24004,-0.0680199,0.923715,-0.327681,-1.22287,0,0.0666667,-0.36,0
1713150393.240398865,-2.14681,-1.24004,-0.0680199,0.933129,-0.330487,-1.2693,0,0.0666667,-0.36,0
1713150393.390630546,-2.14681,-1.24004,-0.0680199,0.931742,-0.340738,-1.31541,0,0.0666667,-0.36,0
1713150393.540858145,-2.14681,-1.24004,-0.0680199,0.931151,-0.350844,-1.371,0,0.0666667,-0.36,0
1713150393.691123660,-2.14681,-1.24004,-0.0680199,0.929381,-0.361357,-1.43615,0,0.155556,-0.36,0
1713150393.841318300,-2.14681,-1.24004,-0.0680199,0.928531,-0.371576,-1.49118,0,0.0888889,-0.36,0
1713150393.991546773,-2.14681,-1.24004,-0.0680199,0.926511,-0.381857,-1.53388,0,0.155556,-0.36,0
1713150394.141777872,-2.14681,-1.24004,-0.0680199,0.925441,-0.39206,-1.59898,0,0.2,-0.36,0
1713150394.292009262,-2.14681,-1.24004,-0.0680199,0.924203,-0.412377,-1.65959,0,0.133333,-0.36,0
1713150394.442237735,-2.14681,-1.24004,-0.0680199,0.921371,-0.443053,-1.70994,0,0.155556,-0.36,0
1713150394.592455709,-2.14681,-1.24004,-0.0680199,0.908607,-0.463463,-1.77761,0,0.177778,-0.36,0
1713150394.742663474,-2.14681,-1.24004,-0.0680199,0.907217,-0.473525,-1.80892,0,0.2,-0.36,0
1713150394.892991697,-2.14681,-1.24004,-0.0680199,0.904211,-0.493653,-1.84913,0,0.155556,-0.36,0
1713150395.043312629,-2.14681,-1.24004,-0.0680199,0.892939,-0.523933,-1.89969,0,0.2,-0.36,0
1713150395.193684602,-2.14681,-1.24004,-0.0680199,0.87945,-0.544571,-1.95721,0,0.155556,-0.36,0
1713150395.344025076,-2.14681,-1.24004,-0.0680199,0.868087,-0.564593,-2.0049,0,0.2,-0.36,0
1713150395.494377799,-2.14681,-1.24004,-0.0680199,0.855006,-0.584554,-2.05692,0,0.2,-0.36,0
1713150395.644731398,-2.14681,-1.24004,-0.0680199,0.843775,-0.604502,-2.09485,0,0.2,-0.36,0
1713150395.795064871,-2.14681,-1.24004,-0.0680199,0.823189,-0.624556,-2.14692,0,0.2,-0.36,0
1713150395.945384053,-2.14681,-1.24004,-0.0680199,0.809265,-0.644624,-2.19379,0,0.2,-0.36,0
1713150396.095713735,-2.14681,-1.24004,-0.0680199,0.795887,-0.66447,-2.2368,0,0.2,-0.36,0
1713150396.246140833,-2.14681,-1.24004,-0.0680199,0.774512,-0.684641,-2.2732,0,0.2,-0.36,0
1713150396.396481598,-2.14681,-1.24004,-0.0680199,0.750764,-0.704794,-2.34038,0,0.2,-0.36,0
1713150396.546805155,-2.14681,-1.24004,-0.0680199,0.729168,-0.725048,-2.38597,0,0.2,-0.36,0
1713150396.697049962,-2.14681,-1.24004,-0.0680199,0.707259,-0.735278,-2.41605,0,0.2,-0.36,0
1713150396.847274935,-2.14681,-1.24004,-0.0680199,0.693503,-0.755104,-2.45965,0,0.2,-0.36,0
1713150396.997517700,-2.14681,-1.24004,-0.0680199,0.669473,-0.775407,-2.51302,0,0.2,-0.36,0
1713150397.147744424,-2.14681,-1.24004,-0.0680199,0.64741,-0.785765,-2.55321,0,0.2,-0.36,0
1713150397.297976397,-2.14681,-1.24004,-0.0680199,0.606022,-0.806714,-2.62326,0,0.2,-0.36,0
1713150397.448191162,-2.14681,-1.24004,-0.0680199,0.591017,-0.816852,-2.65406,0,0.2,-0.36,0
1713150397.598431011,-2.14681,-1.24004,-0.0680199,0.556153,-0.827684,-2.70747,0,0.2,-0.322105,0
1713150397.748660651,-2.14681,-1.24004,-0.0680199,0.523782,-0.838731,-2.76497,0,0.2,-0.284211,0
1713150397.898944249,-2.14681,-1.24004,-0.0680199,0.488698,-0.849842,-2.81006,0,0.2,-0.284211,0
1713150398.049171264,-2.14681,-1.24004,-0.0680199,0.466412,-0.860472,-2.84422,0,0.2,-0.246316,0
1713150398.199414613,-2.14681,-1.24004,-0.0680199,0.433715,-0.861371,-2.88466,0,0.2,-0.208421,0
1713150398.349645420,-2.14681,-1.24004,-0.0680199,0.40862,-0.871642,-2.92684,0,0.2,-0.208421,0
1713150398.499894018,-2.14681,-1.24004,-0.0680199,0.373046,-0.872131,-2.96904,0,0.2,-0.170526,0
1713150398.650127450,-2.14681,-1.24004,-0.0680199,0.340688,-0.882747,-3.00286,0,0.2,-0.0947368,0
1713150398.800368756,-2.14681,-1.24004,-0.0680199,0.305117,-0.882942,-3.04326,0,0.2,-0.0947368,0
1713150398.950598397,-2.14681,-1.24004,-0.0680199,0.272304,-0.883277,-3.06733,0,0.2,-0.0568421,0
1713150399.100831245,-2.14681,-1.24004,-0.0680199,0.236868,-0.883326,-3.08653,0,0.2,-0.0568421,0
1713150399.251068468,-2.14681,-1.24004,-0.0680199,0.214064,-0.883422,-3.10025,0,0.2,-0.0568421,0
1713150399.401326109,-2.14681,-1.24004,-0.0680199,0.178535,-0.883405,-3.1125,0,0.2,-0.0189474,0
1713150399.551564790,-2.14681,-1.24004,-0.0680199,0.145785,-0.883553,-3.12347,0,0.2,-0.0189474,0
1713150399.701799097,-2.14681,-1.24004,-0.0680199,0.104451,-0.883445,-3.13577,0,0.2,-0.0189474,0
1713150399.852033112,-2.14681,-1.24004,-0.0680199,0.082189,-0.883311,-3.14095,0,0.2,-0.0189474,0
1713150400.002258377,-2.14681,-1.24004,-0.0680199,0.0520813,-0.882901,3.13864,0,0.2,-0.0189474,0
1713150400.152494434,-2.14681,-1.24004,-0.0680199,0.0193695,-0.882855,3.13403,0,0.2,-0.0189474,0
1713150400.302720574,-2.14681,-1.24004,-0.0680199,-0.0061482,-0.882364,3.13167,0,0.2,-0.0189474,0
1713150400.452947006,-2.14681,-1.24004,-0.0680199,-0.0387811,-0.882307,3.13012,0,0.2,0.0568421,0
1713150400.603193271,-2.14681,-1.24004,-0.0680199,-0.0740297,-0.881706,3.12964,0,0.2,0.0568421,0
1713150400.753425244,-2.14681,-1.24004,-0.0680199,-0.106768,-0.881729,3.12942,0,0.2,0.0568421,0
1713150400.903648759,-2.14681,-1.24004,-0.0680199,-0.132109,-0.880941,3.12911,0,0.2,0.0568421,0
1713150401.053883650,-2.14681,-1.24004,-0.0680199,-0.174777,-0.880815,3.1327,0,0.2,0.0568421,0
1713150401.204173373,-2.14681,-1.24004,-0.0680199,-0.200075,-0.880322,3.13578,0,0.2,0.0568421,0
1713150401.354403596,-2.14681,-1.24004,-0.0680199,-0.232739,-0.880269,-3.14078,0,0.2,0.0189474,0
1713150401.504641112,-2.14681,-1.24004,-0.0680199,-0.268605,-0.88057,-3.13483,0,0.2,0.0189474,0
1713150401.654952418,-2.14681,-1.24004,-0.0680199,-0.301502,-0.880729,-3.12686,0,0.2,0.0189474,0
1713150401.805186433,-2.14681,-1.24004,-0.0680199,-0.33714,-0.880866,-3.1211,0,0.2,0.0189474,0
1713150401.955417240,-2.14681,-1.24004,-0.0680199,-0.369706,-0.880904,-3.11525,0,0.2,0,0
1713150402.105641047,-2.14681,-1.24004,-0.0680199,-0.402191,-0.880772,-3.10817,0,0.2,0,0
1713150402.255870104,-2.14681,-1.24004,-0.0680199,-0.427632,-0.881039,-3.10447,0,0.2,0.0568421,0
1713150402.406113160,-2.14681,-1.24004,-0.0680199,-0.463135,-0.881483,-3.10022,0,0.2,0.0568421,0
1713150402.556348051,-2.14681,-1.24004,-0.0680199,-0.485685,-0.881825,-3.09637,0,0.2,0,0
1713150402.706642732,-2.14681,-1.24004,-0.0680199,-0.530746,-0.88201,-3.09078,0,0.2,-0.0189474,0
1713150402.856865664,-2.14681,-1.24004,-0.0680199,-0.56337,-0.882361,-3.08722,0,0.2,-0.0189474,0
1713150403.007093262,-2.14681,-1.24004,-0.0680199,-0.594043,-0.882027,-3.08501,0,0.2,0.0568421,0
1713150403.157329903,-2.14681,-1.24004,-0.0680199,-0.626974,-0.882323,-3.0827,0,0.2,0.0568421,0
1713150403.307540584,-2.14681,-1.24004,-0.0680199,-0.65616,-0.881913,-3.07937,0,0.2,0.0568421,0
1713150403.457774891,-2.14681,-1.24004,-0.0680199,-0.688709,-0.882309,-3.07676,0,0.2,0.0568421,0
1713150403.607996656,-2.14681,-1.24004,-0.0680199,-0.723985,-0.881776,-3.07483,0,0.2,0.0947368,0
1713150403.758234755,-2.14681,-1.24004,-0.0680199,-0.752233,-0.891504,-3.07094,0,0.2,0.0947368,0
1713150403.908465561,-2.14681,-1.24004,-0.0680199,-0.791609,-0.890673,-3.06741,0,0.2,0.0947368,0
1713150404.058695201,-2.14681,-1.24004,-0.0680199,-0.819996,-0.89001,-3.06256,0,0.2,0.0568421,0
1713150404.208926008,-2.14681,-1.24004,-0.0680199,-0.849434,-0.888989,-3.05264,0,0.2,0.0568421,0
1713150404.359214273,-2.14681,-1.24004,-0.0680199,-0.872259,-0.8887,-3.04815,0,0.2,0.0947368,0
1713150404.509448288,-2.14681,-1.24004,-0.0680199,-0.907719,-0.888141,-3.03983,0,0.2,0.0947368,0
1713150404.659684345,-2.14681,-1.24004,-0.0680199,-0.940574,-0.898272,-3.02906,0,0.2,0.0947368,0
1713150404.809916319,-2.14681,-1.24004,-0.0680199,-0.976171,-0.898111,-3.01775,0,0.2,0.132632,0
1713150404.960161709,-2.14681,-1.24004,-0.0680199,-0.998956,-0.898134,-3.00964,0,0.177778,0.132632,0
1713150405.110394557,-2.14681,-1.24004,-0.0680199,-1.0348,-0.908388,-2.99748,0,0.2,0.132632,0
1713150405.260628572,-2.14681,-1.24004,-0.0680199,-1.07762,-0.908345,-2.97691,0,0.2,0.0947368,0
1713150405.410835171,-2.14681,-1.24004,-0.0680199,-1.1034,-0.91812,-2.96044,0,0.2,0.0947368,0
1713150405.561075311,-2.14681,-1.24004,-0.0680199,-1.13205,-0.918294,-2.9474,0,0.2,0.0568421,0
1713150405.711306701,-2.14681,-1.24004,-0.0680199,-1.17233,-0.928042,-2.92808,0,0.2,0.0568421,0
1713150405.861552674,-2.14681,-1.24004,-0.0680199,-1.19544,-0.928035,-2.91652,0,0.2,0.0568421,0
1713150406.011803898,-2.14681,-1.24004,-0.0680199,-1.23117,-0.937561,-2.89922,0,0.2,0.0568421,0
1713150406.162134163,-2.14681,-1.24004,-0.0680199,-1.25412,-0.937644,-2.88839,0,0.177778,0.0568421,0
1713150406.312384511,-2.14681,-1.24004,-0.0680199,-1.28994,-0.947678,-2.87479,0,0.2,0.0189474,0
1713150406.462631068,-2.14681,-1.24004,-0.0680199,-1.32268,-0.95817,-2.8623,0,0.2,0,0
1713150406.612920791,-2.14681,-1.24004,-0.0680199,-1.36448,-0.964873,-2.85509,0,0.2,-0.0189474,0
1713150406.763154807,-2.14681,-1.24004,-0.0680199,-1.38789,-0.969767,-2.85108,0,0.2,0.0568421,0
1713150406.913383572,-2.14681,-1.24004,-0.0680199,-1.41778,-0.980244,-2.84962,0,0.2,0.0568421,0
1713150407.063610295,-2.14681,-1.24004,-0.0680199,-1.45066,-0.99115,-2.84713,0,0.2,0.0189474,0
1713150407.213847519,-2.14681,-1.24004,-0.0680199,-1.47684,-0.991558,-2.84528,0,0.2,0.0568421,0
1713150407.364082117,-2.14681,-1.24004,-0.0680199,-1.50974,-1.00226,-2.84398,0,0.2,-0.0189474,0
1713150407.514325465,-2.14681,-1.24004,-0.0680199,-1.55598,-1.01289,-2.84284,0,0.2,0.0947368,0
1713150407.664559772,-2.14681,-1.24004,-0.0680199,-1.5791,-1.01902,-2.84109,0,0.2,0.0568421,0
1713150407.814791454,-2.14681,-1.24004,-0.0680199,-1.61543,-1.02344,-2.83798,0,0.2,0.0568421,0
1713150407.965023427,-2.14681,-1.24004,-0.0680199,-1.62831,-1.0331,-2.83462,0,0.2,-0.0189474,0
1713150408.115300317,-2.14681,-1.24004,-0.0680199,-1.66459,-1.04291,-2.82367,0,0.2,-0.0189474,0
1713150408.265531999,-2.14681,-1.24004,-0.0680199,-1.69772,-1.05328,-2.81687,0,0.2,0.132632,0
1713150408.415762806,-2.14681,-1.24004,-0.0680199,-1.73403,-1.05309,-2.81308,0,0.2,0.0568421,0
1713150408.565999154,-2.14681,-1.24004,-0.0680199,-1.75692,-1.06304,-2.8082,0,0.2,0.0189474,0
1713150408.716234919,-2.14681,-1.24004,-0.0680199,-1.80301,-1.07305,-2.80176,0,0.177778,0.0568421,0
1713150408.866465143,-2.14681,-1.24004,-0.0680199,-1.826,-1.08288,-2.79763,0,0.155556,0.0568421,0
1713150409.016700908,-2.14681,-1.24004,-0.0680199,-1.8584,-1.09253,-2.78944,0,0.155556,0.0568421,0
1713150409.166939590,-2.14681,-1.24004,-0.0680199,-1.8855,-1.10272,-2.78384,0,0.133333,0.0947368,0
1713150409.317222313,-2.14681,-1.24004,-0.0680199,-1.91204,-1.10279,-2.78041,0,0.133333,0.0568421,0
1713150409.467446412,-2.14681,-1.24004,-0.0680199,-1.93522,-1.113,-2.77608,0,0.111111,0.0568421,0
1713150409.617690927,-2.14681,-1.24004,-0.0680199,-1.95159,-1.12278,-2.77094,0,0.111111,0.0568421,0
1713150409.767923483,-2.14681,-1.24004,-0.0680199,-1.97494,-1.12302,-2.7577,0,0.0888889,0.0947368,0
1713150409.918180249,-2.14681,-1.24004,-0.0680199,-2.00151,-1.1331,-2.74665,0,0.0888889,0.0947368,0
1713150410.068415139,-2.14681,-1.24004,-0.0680199,-2.01482,-1.14328,-2.73947,0,0.0666667,0.208421,0
1713150410.218654695,-2.14681,-1.24004,-0.0680199,-2.03119,-1.14286,-2.73332,0,0,0.5,0
1713150410.368881127,-2.14681,-1.24004,-0.0680199,-2.05442,-1.15262,-2.71187,0,0,0.5,0
1713150410.519115434,-2.14681,-1.24004,-0.0680199,-2.06101,-1.15214,-2.69287,0,0,0.5,0
1713150410.669348866,-2.14681,-1.24004,-0.0680199,-2.07421,-1.15173,-2.65734,0,0,0.5,0
1713150410.819593381,-2.14681,-1.24004,-0.0680199,-2.09083,-1.16085,-2.61635,0,0,0.5,0
1713150410.969827396,-2.14681,-1.24004,-0.0680199,-2.094,-1.16037,-2.58041,0,0,0.5,0
1713150411.120066369,-2.14681,-1.24004,-0.0680199,-2.10029,-1.15944,-2.53858,0,0,0.5,0
1713150411.270315843,-2.14681,-1.24004,-0.0680199,-2.11339,-1.15854,-2.50538,0,0,0.5,0
1713150411.420548691,-2.14681,-1.24004,-0.0680199,-2.12003,-1.15768,-2.43331,0,0,0.5,0
1713150411.570798748,-2.14681,-1.24004,-0.0680199,-2.12441,-1.16733,-2.36612,0,0,0.5,0
1713150411.721037138,-2.14681,-1.24004,-0.0680199,-2.13198,-1.16702,-2.28496,0,0,0.5,0
1713150411.871267653,-2.14681,-1.24004,-0.0680199,-2.13576,-1.16684,-2.2268,0,0,0.5,0
1713150412.021497293,-2.14681,-1.24004,-0.0680199,-2.1423,-1.16603,-2.16257,0,0,0.5,0
1713150412.171727517,-2.14681,-1.24004,-0.0680199,-2.14595,-1.1663,-2.09071,0,0,0.5,0
1713150412.321964448,-2.14681,-1.24004,-0.0680199,-2.15206,-1.16656,-2.00248,0,0,0.5,0
1713150412.472199922,-2.14681,-1.24004,-0.0680199,-2.15542,-1.16714,-1.94043,0,0,0.5,0
1713150412.622435104,-2.14681,-1.24004,-0.0680199,-2.1625,-1.16912,-1.86642,0,0,0.5,0
1713150412.772672035,-2.14681,-1.24004,-0.0680199,-2.16571,-1.16958,-1.77638,0,0,0.5,0
1713150412.922899342,-2.14681,-1.24004,-0.0680199,-2.17211,-1.17048,-1.73115,0,0,0.5,0
1713150413.073198107,-2.14681,-1.24004,-0.0680199,-2.17526,-1.17093,-1.63631,0,0,0.5,0

View File

@ -1,52 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713151464.755506944,-2.14681,-1.24004,-0.0680199,0.0647155,-0.123901,0.000370491,0,0.0666667,-0.36,0
1713151464.905783250,-2.14681,-1.24004,-0.0680199,0.0647692,-0.123906,-0.0201506,0,0.0666667,-0.322105,0
1713151465.056033599,-2.14681,-1.24004,-0.0680199,0.0639438,-0.124406,-0.0511023,0,0.0666667,-0.322105,0
1713151465.206292697,-2.14681,-1.24004,-0.0680199,0.0637784,-0.124591,-0.0781078,0,0.0666667,-0.36,0
1713151465.356542171,-2.14681,-1.24004,-0.0680199,0.0738376,-0.124505,-0.109368,0,0.0666667,-0.284211,0
1713151465.506796019,-2.14681,-1.24004,-0.0680199,0.0833386,-0.12439,-0.153226,0,0.0666667,-0.322105,0
1713151465.657043743,-2.14681,-1.24004,-0.0680199,0.0920343,-0.124524,-0.1846,0,0.0666667,-0.322105,0
1713151465.807282133,-2.14681,-1.24004,-0.0680199,0.101534,-0.124584,-0.225409,0,0.0666667,-0.284211,0
1713151465.957540064,-2.14681,-1.24004,-0.0680199,0.100981,-0.124678,-0.258169,0,0.0666667,-0.284211,0
1713151466.107780788,-2.14681,-1.24004,-0.0680199,0.110383,-0.134636,-0.297263,0,0.0666667,-0.36,0
1713151466.258024428,-2.14681,-1.24004,-0.0680199,0.118412,-0.134907,-0.344387,0,0.0666667,-0.36,0
1713151466.408315610,-2.14681,-1.24004,-0.0680199,0.126967,-0.134852,-0.373855,0,0.0666667,-0.36,0
1713151466.558571208,-2.14681,-1.24004,-0.0680199,0.134213,-0.145313,-0.418507,0,0.0666667,-0.322105,0
1713151466.708813098,-2.14681,-1.24004,-0.0680199,0.130558,-0.146053,-0.467952,0,0.0666667,-0.36,0
1713151466.859056155,-2.14681,-1.24004,-0.0680199,0.138774,-0.146251,-0.514877,0,0.0666667,-0.36,0
1713151467.009299795,-2.14681,-1.24004,-0.0680199,0.146402,-0.156543,-0.566115,0,0.0666667,-0.36,0
1713151467.159605852,-2.14681,-1.24004,-0.0680199,0.14784,-0.157252,-0.605312,0,0.0666667,-0.36,0
1713151467.309845992,-2.14681,-1.24004,-0.0680199,0.150285,-0.167652,-0.645469,0,0.0666667,-0.36,0
1713151467.460085257,-2.14681,-1.24004,-0.0680199,0.155196,-0.168758,-0.69015,0,0.0666667,-0.36,0
1713151467.610334439,-2.14681,-1.24004,-0.0680199,0.149997,-0.179896,-0.738387,0,0.0666667,-0.322105,0
1713151467.760605496,-2.14681,-1.24004,-0.0680199,0.156832,-0.190097,-0.79549,0,0.0666667,-0.36,0
1713151467.910706219,-2.14681,-1.24004,-0.0680199,0.159127,-0.190854,-0.860624,0,0.0666667,-0.36,0
1713151468.060862359,-2.14681,-1.24004,-0.0680199,0.155582,-0.201491,-0.895591,0,0.0666667,-0.36,0
1713151468.211172791,-2.14681,-1.24004,-0.0680199,0.159333,-0.212427,-0.949786,0,0.0666667,-0.36,0
1713151468.361431306,-2.14681,-1.24004,-0.0680199,0.155647,-0.213309,-0.994882,0,0.0666667,-0.36,0
1713151468.511693904,-2.14681,-1.24004,-0.0680199,0.148587,-0.224852,-1.04657,0,0.0666667,-0.36,0
1713151468.661950378,-2.14681,-1.24004,-0.0680199,0.155161,-0.235565,-1.10184,0,0.0666667,-0.36,0
1713151468.812224351,-2.14681,-1.24004,-0.0680199,0.148431,-0.247907,-1.16293,0,0.0666667,-0.36,0
1713151468.962487533,-2.14681,-1.24004,-0.0680199,0.145752,-0.254572,-1.21885,0,0.0666667,-0.36,0
1713151469.112739048,-2.14681,-1.24004,-0.0680199,0.150442,-0.260092,-1.2689,0,0.0666667,-0.36,0
1713151469.263008938,-2.14681,-1.24004,-0.0680199,0.147492,-0.27068,-1.31502,0,0.0666667,-0.36,0
1713151469.413261328,-2.14681,-1.24004,-0.0680199,0.141368,-0.281655,-1.35293,0,0.177778,-0.36,0
1713151469.563526260,-2.14681,-1.24004,-0.0680199,0.137913,-0.292114,-1.40554,0,0.133333,-0.36,0
1713151469.713777192,-2.14681,-1.24004,-0.0680199,0.130687,-0.30312,-1.47894,0,0.2,-0.36,0
1713151469.864011499,-2.14681,-1.24004,-0.0680199,0.127138,-0.313535,-1.51745,0,0.177778,-0.36,0
1713151470.014268264,-2.14681,-1.24004,-0.0680199,0.120942,-0.334277,-1.57645,0,0.2,-0.36,0
1713151470.164521820,-2.14681,-1.24004,-0.0680199,0.117792,-0.354626,-1.64098,0,0.2,-0.36,0
1713151470.314770127,-2.14681,-1.24004,-0.0680199,0.110344,-0.380882,-1.69862,0,0.2,-0.36,0
1713151470.465005309,-2.14681,-1.24004,-0.0680199,0.101635,-0.395936,-1.73361,0,0.177778,-0.36,0
1713151470.615248949,-2.14681,-1.24004,-0.0680199,0.0885069,-0.436429,-1.79837,0,0.2,-0.36,0
1713151470.765487631,-2.14681,-1.24004,-0.0680199,0.0706669,-0.453491,-1.83477,0,0.2,-0.36,0
1713151470.915731271,-2.14681,-1.24004,-0.0680199,0.0577436,-0.478061,-1.88523,0,0.2,-0.36,0
1713151471.065992703,-2.14681,-1.24004,-0.0680199,0.0416174,-0.509368,-1.93725,0,0.2,-0.36,0
1713151471.216244509,-2.14681,-1.24004,-0.0680199,0.0290848,-0.530135,-1.9754,0,0.2,-0.36,0
1713151471.366491358,-2.14681,-1.24004,-0.0680199,0.0160041,-0.557135,-2.0275,0,0.2,-0.36,0
1713151471.516736456,-2.14681,-1.24004,-0.0680199,0.0056196,-0.581613,-2.07782,0,0.177778,-0.36,0
1713151471.666983013,-2.14681,-1.24004,-0.0680199,-0.015264,-0.602767,-2.12799,0,0.2,-0.36,0
1713151471.817224903,-2.14681,-1.24004,-0.0680199,-0.0247838,-0.623188,-2.17819,0,0.2,-0.36,0
1713151471.967503835,-2.14681,-1.24004,-0.0680199,-0.0435062,-0.644857,-2.21906,0,0.2,-0.36,0
1713151472.117775183,-2.14681,-1.24004,-0.0680199,-0.0619407,-0.671863,-2.26946,0,0.2,-0.36,0
1713151472.268042157,-2.14681,-1.24004,-0.0680199,-0.0619407,-0.671863,-2.26946,0,0.2,-0.36,0

View File

@ -1,574 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713431091.094312547,-2.14681,-1.24004,-0.0680199,-0.0155844,0.00141422,-0.00832702,0,0.0666667,-0.208421,0
1713431091.244622369,-2.14681,-1.24004,-0.0680199,-0.0154504,0.00164988,-0.0149623,0,0.0666667,-0.208421,0
1713431091.394884940,-2.14681,-1.24004,-0.0680199,-0.0154017,0.00156712,-0.020083,0,0.0666667,-0.208421,0
1713431091.546133655,-2.14681,-1.24004,-0.0680199,-0.0153587,0.00157462,-0.0314125,0,0.0666667,-0.36,0
1713431091.696442310,-2.14681,-1.24004,-0.0680199,-0.0153463,0.00141675,-0.0400028,0,0.0666667,-0.36,0
1713431091.846752716,-2.14681,-1.24004,-0.0680199,-0.00513875,0.00166152,-0.0976572,0,0.0666667,-0.284211,0
1713431091.997005078,-2.14681,-1.24004,-0.0680199,0.00496646,0.00154897,-0.133716,0,0.0666667,-0.36,0
1713431092.147261815,-2.14681,-1.24004,-0.0680199,0.0152403,0.000996286,-0.180505,0,0.0666667,-0.36,0
1713431092.297521468,-2.14681,-1.24004,-0.0680199,0.015408,0.000611331,-0.215912,0,0.0666667,-0.36,0
1713431092.447787246,-2.14681,-1.24004,-0.0680199,0.0258243,0.000228338,-0.249281,0,0.0666667,-0.36,0
1713431092.598053024,-2.14681,-1.24004,-0.0680199,0.0359649,0.000123981,-0.293469,0,0.0666667,-0.36,0
1713431092.748296344,-2.14681,-1.24004,-0.0680199,0.0462172,-0.0103892,-0.353627,0,0.0666667,-0.322105,0
1713431092.898547538,-2.14681,-1.24004,-0.0680199,0.0565446,-0.0111567,-0.394341,0,0.0666667,-0.36,0
1713431093.048797566,-2.14681,-1.24004,-0.0680199,0.0668325,-0.021789,-0.43942,0,0.0666667,-0.284211,0
1713431093.199048176,-2.14681,-1.24004,-0.0680199,0.077021,-0.0220779,-0.480821,0,0.0666667,-0.322105,0
1713431093.349297912,-2.14681,-1.24004,-0.0680199,0.0875423,-0.0331062,-0.517102,0,0.0666667,-0.36,0
1713431093.499558147,-2.14681,-1.24004,-0.0680199,0.0879355,-0.0346434,-0.56716,0,0.0666667,-0.36,0
1713431093.649810799,-2.14681,-1.24004,-0.0680199,0.0983402,-0.0452655,-0.613211,0,0.0666667,-0.36,0
1713431093.800073076,-2.14681,-1.24004,-0.0680199,0.108615,-0.0470418,-0.647587,0,0.0666667,-0.322105,0
1713431093.950329520,-2.14681,-1.24004,-0.0680199,0.119006,-0.0578511,-0.696065,0,0.0666667,-0.36,0
1713431094.100594130,-2.14681,-1.24004,-0.0680199,0.119423,-0.0602679,-0.740172,0,0.0666667,-0.36,0
1713431094.250843572,-2.14681,-1.24004,-0.0680199,0.129913,-0.0709573,-0.792259,0,0.0666667,-0.36,0
1713431094.401094473,-2.14681,-1.24004,-0.0680199,0.136324,-0.081908,-0.842429,0,0.0666667,-0.36,0
1713431094.551415375,-2.14681,-1.24004,-0.0680199,0.140786,-0.0840069,-0.887998,0,0.0666667,-0.36,0
1713431094.701779153,-2.14681,-1.24004,-0.0680199,0.141559,-0.0962682,-0.932721,0,0.0666667,-0.36,0
1713431094.852145265,-2.14681,-1.24004,-0.0680199,0.152056,-0.107309,-0.980842,0,0.0666667,-0.36,0
1713431095.002608211,-2.14681,-1.24004,-0.0680199,0.152438,-0.108509,-1.03023,0,0.0666667,-0.36,0
1713431095.152980447,-2.14681,-1.24004,-0.0680199,0.163625,-0.120787,-1.08811,0,0.0666667,-0.36,0
1713431095.303362016,-2.14681,-1.24004,-0.0680199,0.164446,-0.131949,-1.12944,0,0.0666667,-0.36,0
1713431095.453746210,-2.14681,-1.24004,-0.0680199,0.165792,-0.144567,-1.18661,0,0.0666667,-0.36,0
1713431095.604224614,-2.14681,-1.24004,-0.0680199,0.176276,-0.145549,-1.23571,0,0.0666667,-0.36,0
1713431095.754584891,-2.14681,-1.24004,-0.0680199,0.177377,-0.157799,-1.27915,0,0.0666667,-0.36,0
1713431095.904977835,-2.14681,-1.24004,-0.0680199,0.17802,-0.168898,-1.33087,0,0.177778,-0.36,0
1713431096.055351821,-2.14681,-1.24004,-0.0680199,0.178852,-0.180494,-1.38369,0,0.133333,-0.36,0
1713431096.205719097,-2.14681,-1.24004,-0.0680199,0.179272,-0.19111,-1.42691,0,0.0666667,-0.36,0
1713431096.356091623,-2.14681,-1.24004,-0.0680199,0.179956,-0.21265,-1.50174,0,0.177778,-0.36,0
1713431096.506450440,-2.14681,-1.24004,-0.0680199,0.180696,-0.224436,-1.55648,0,0.155556,-0.36,0
1713431096.656817716,-2.14681,-1.24004,-0.0680199,0.181446,-0.235541,-1.60397,0,0.2,-0.36,0
1713431096.807189367,-2.14681,-1.24004,-0.0680199,0.18285,-0.257009,-1.66502,0,0.2,-0.36,0
1713431096.957568310,-2.14681,-1.24004,-0.0680199,0.183788,-0.277737,-1.71276,0,0.177778,-0.36,0
1713431097.107941710,-2.14681,-1.24004,-0.0680199,0.175085,-0.304589,-1.7688,0,0.2,-0.36,0
1713431097.258344278,-2.14681,-1.24004,-0.0680199,0.17664,-0.330601,-1.8282,0,0.2,-0.36,0
1713431097.408697261,-2.14681,-1.24004,-0.0680199,0.16841,-0.360013,-1.88785,0,0.2,-0.36,0
1713431097.559054911,-2.14681,-1.24004,-0.0680199,0.159605,-0.384587,-1.92424,0,0.2,-0.36,0
1713431097.709434727,-2.14681,-1.24004,-0.0680199,0.151034,-0.404613,-1.971,0,0.2,-0.36,0
1713431097.859777793,-2.14681,-1.24004,-0.0680199,0.137254,-0.434361,-2.02414,0,0.2,-0.36,0
1713431098.010037150,-2.14681,-1.24004,-0.0680199,0.123901,-0.453353,-2.07539,0,0.2,-0.36,0
1713431098.160303797,-2.14681,-1.24004,-0.0680199,0.114773,-0.472682,-2.11654,0,0.2,-0.36,0
1713431098.310563443,-2.14681,-1.24004,-0.0680199,0.0963817,-0.501398,-2.16794,0,0.2,-0.36,0
1713431098.460826882,-2.14681,-1.24004,-0.0680199,0.0816405,-0.516685,-2.21293,0,0.2,-0.36,0
1713431098.611081279,-2.14681,-1.24004,-0.0680199,0.0676248,-0.529452,-2.2459,0,0.2,-0.36,0
1713431098.761356092,-2.14681,-1.24004,-0.0680199,0.0492993,-0.559766,-2.30706,0,0.2,-0.36,0
1713431098.911606114,-2.14681,-1.24004,-0.0680199,0.00806733,-0.532614,-2.35258,0,0.2,-0.284211,0
1713431099.061861969,-2.14681,-1.24004,-0.0680199,-0.0323975,-0.51533,-2.38948,0,0.2,-0.170526,0
1713431099.212115198,-2.14681,-1.24004,-0.0680199,-0.0944546,-0.460016,-2.4486,0,0.2,-0.0568421,0
1713431099.362366385,-2.14681,-1.24004,-0.0680199,-0.125448,-0.432355,-2.4744,0,0.2,0.0568421,0
1713431099.512621364,-2.14681,-1.24004,-0.0680199,-0.196881,-0.377593,-2.51583,0,0.2,0.170526,0
1713431099.662870218,-2.14681,-1.24004,-0.0680199,-0.24702,-0.360656,-2.5404,0,0.2,0.246316,0
1713431099.813097780,-2.14681,-1.24004,-0.0680199,-0.308188,-0.295582,-2.54606,0,0.2,-0.0568421,0
1713431099.963373467,-2.14681,-1.24004,-0.0680199,-0.348357,-0.268361,-2.53829,0,0.2,-0.0189474,0
1713431100.113629321,-2.14681,-1.24004,-0.0680199,-0.408437,-0.213357,-2.52838,0,0.2,0.0568421,0
1713431100.263882840,-2.14681,-1.24004,-0.0680199,-0.457644,-0.196791,-2.52243,0,0.2,0.0947368,0
1713431100.414132568,-2.14681,-1.24004,-0.0680199,-0.517284,-0.132186,-2.51641,0,0.2,0.132632,0
1713431100.564381712,-2.14681,-1.24004,-0.0680199,-0.56618,-0.11587,-2.50725,0,0.2,0.246316,0
1713431100.714660608,-2.14681,-1.24004,-0.0680199,-0.624914,-0.051522,-2.4996,0,0.2,0.246316,0
1713431100.864912085,-2.14681,-1.24004,-0.0680199,-0.663651,-0.0347026,-2.48003,0,0.2,0.0568421,0
1713431101.015167355,-2.14681,-1.24004,-0.0680199,-0.721695,0.0294765,-2.45317,0,0.2,0.0947368,0
1713431101.165426415,-2.14681,-1.24004,-0.0680199,-0.760067,0.0462851,-2.42991,0,0.2,0.132632,0
1713431101.315688392,-2.14681,-1.24004,-0.0680199,-0.826678,0.0999361,-2.40793,0,0.2,0.170526,0
1713431101.465936369,-2.14681,-1.24004,-0.0680199,-0.86433,0.11629,-2.38849,0,0.2,0.246316,0
1713431101.616218180,-2.14681,-1.24004,-0.0680199,-0.920259,0.169793,-2.3608,0,0.2,0.322105,0
1713431101.766431739,-2.14681,-1.24004,-0.0680199,-0.958039,0.196033,-2.34311,0,0.2,0.284211,0
1713431101.916689633,-2.14681,-1.24004,-0.0680199,-1.0135,0.249319,-2.30867,0,0.2,0.170526,0
1713431102.066944609,-2.14681,-1.24004,-0.0680199,-1.05083,0.265573,-2.27798,0,0.2,0.132632,0
1713431102.217208044,-2.14681,-1.24004,-0.0680199,-1.10531,0.308665,-2.24881,0,0.2,0.246316,0
1713431102.367465645,-2.14681,-1.24004,-0.0680199,-1.1325,0.335194,-2.23275,0,0.2,0.246316,0
1713431102.517720912,-2.14681,-1.24004,-0.0680199,-1.18604,0.37798,-2.2016,0,0.2,0.284211,0
1713431102.668000388,-2.14681,-1.24004,-0.0680199,-1.2053,0.357251,-2.17598,0,0.2,0.284211,0
1713431102.818255656,-2.14681,-1.24004,-0.0680199,-1.25884,0.410086,-2.14238,0,0.2,0.0947368,0
1713431102.968516174,-2.14681,-1.24004,-0.0680199,-1.27796,0.379495,-2.10093,0,0.2,0.0568421,0
1713431103.118829775,-2.14681,-1.24004,-0.0680199,-1.32127,0.432796,-2.07468,0,0.2,0.132632,0
1713431103.269094375,-2.14681,-1.24004,-0.0680199,-1.34701,0.439129,-2.04869,0,0.2,0.132632,0
1713431103.419357516,-2.14681,-1.24004,-0.0680199,-1.39932,0.491478,-2.02218,0,0.2,0.208421,0
1713431103.569636117,-2.14681,-1.24004,-0.0680199,-1.42443,0.497611,-2.00348,0,0.2,0.246316,0
1713431103.719917050,-2.14681,-1.24004,-0.0680199,-1.47608,0.549421,-1.9763,0,0.2,0.246316,0
1713431103.870204692,-2.14681,-1.24004,-0.0680199,-1.49143,0.565759,-1.9609,0,0.2,0.0947368,0
1713431104.020457042,-2.14681,-1.24004,-0.0680199,-1.54227,0.600681,-1.92575,0,0.2,0.132632,0
1713431104.170718433,-2.14681,-1.24004,-0.0680199,-1.5676,0.613702,-1.90756,0,0.2,0.170526,0
1713431104.320974281,-2.14681,-1.24004,-0.0680199,-1.60902,0.666017,-1.88284,0,0.2,0.208421,0
1713431104.471348549,-2.14681,-1.24004,-0.0680199,-1.63385,0.672,-1.85769,0,0.2,0.208421,0
1713431104.621712025,-2.14681,-1.24004,-0.0680199,-1.67389,0.719136,-1.83305,0,0.2,0.246316,0
1713431104.772197128,-2.14681,-1.24004,-0.0680199,-1.6981,0.72009,-1.80437,0,0.2,0.246316,0
1713431104.922674064,-2.14681,-1.24004,-0.0680199,-1.72813,0.771951,-1.78297,0,0.2,0.0568421,0
1713431105.073169376,-2.14681,-1.24004,-0.0680199,-1.75263,0.7775,-1.74946,0,0.2,0.132632,0
1713431105.223542184,-2.14681,-1.24004,-0.0680199,-1.7824,0.828916,-1.73299,0,0.2,0.132632,0
1713431105.373899825,-2.14681,-1.24004,-0.0680199,-1.80642,0.834185,-1.70953,0,0.2,0.0947368,0
1713431105.524283426,-2.14681,-1.24004,-0.0680199,-1.8358,0.875476,-1.68646,0,0.2,0.170526,0
1713431105.674660026,-2.14681,-1.24004,-0.0680199,-1.85961,0.880687,-1.66145,0,0.2,0.170526,0
1713431105.825071626,-2.14681,-1.24004,-0.0680199,-1.88839,0.921688,-1.64114,0,0.2,0.0189474,0
1713431105.975378517,-2.14681,-1.24004,-0.0680199,-1.91238,0.936645,-1.62623,0,0.2,0.0189474,0
1713431106.125628530,-2.14681,-1.24004,-0.0680199,-1.94016,0.970514,-1.60698,0,0.2,0.0568421,0
1713431106.275898669,-2.14681,-1.24004,-0.0680199,-1.95369,0.982736,-1.59606,0,0.2,0.0947368,0
1713431106.426375020,-2.14681,-1.24004,-0.0680199,-1.98137,1.02344,-1.58857,0,0.2,0.132632,0
1713431106.576771452,-2.14681,-1.24004,-0.0680199,-1.99447,1.02866,-1.5788,0,0.2,0.132632,0
1713431106.727242262,-2.14681,-1.24004,-0.0680199,-2.03287,1.0785,-1.56902,0,0.2,0.132632,0
1713431106.877632861,-2.14681,-1.24004,-0.0680199,-2.04669,1.08349,-1.56042,0,0.2,-0.0189474,0
1713431107.028007126,-2.14681,-1.24004,-0.0680199,-2.07449,1.11346,-1.5449,0,0.2,-0.0189474,0
1713431107.178365641,-2.14681,-1.24004,-0.0680199,-2.08806,1.12856,-1.53893,0,0.2,0.0568421,0
1713431107.328842574,-2.14681,-1.24004,-0.0680199,-2.11557,1.17298,-1.52832,0,0.2,0.0568421,0
1713431107.479208672,-2.14681,-1.24004,-0.0680199,-2.12845,1.17335,-1.51773,0,0.2,0.0189474,0
1713431107.629703689,-2.14681,-1.24004,-0.0680199,-2.1558,1.2228,-1.51146,0,0.2,0.0189474,0
1713431107.779926575,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431107.930094919,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431108.080270846,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431108.230462815,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431108.380687159,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431108.531091464,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431108.681596689,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431108.832043579,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431108.982422509,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431109.132876690,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431109.283299078,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431109.433807510,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431109.584313025,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431109.734810082,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431109.885318514,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431110.035817028,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431110.186321959,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431110.336924017,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431110.487324529,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431110.637833834,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431110.788227346,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431110.938615316,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431111.089000952,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431111.239394463,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431111.389888893,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431111.540390614,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431111.690810959,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431111.841224595,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431111.991729816,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431112.142256329,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431112.292750465,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431112.443236144,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431112.593744864,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431112.744254459,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431112.894751221,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431113.045241857,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431113.195646741,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431113.346150794,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431113.496562678,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431113.647088315,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431113.797581575,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431113.948082128,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431114.098576846,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431114.249080023,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431114.399567449,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431114.550084626,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431114.700579344,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431114.851076103,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431115.001569363,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431115.152064080,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431115.302451753,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431115.452948220,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431115.603465105,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431115.753960405,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431115.904353328,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431116.054831711,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431116.205331969,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431116.355810935,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431116.506247316,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431116.656760408,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431116.807152747,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431116.957657088,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431117.108135178,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431117.258515557,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431117.408995105,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431117.559375485,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431117.709868158,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431117.860241537,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431118.010712627,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431118.161086005,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431118.311565552,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431118.462039557,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431118.612428978,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431118.762909983,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431118.913416656,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431119.063803450,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431119.214297580,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431119.364771584,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431119.515252880,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431119.665725426,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431119.816214889,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431119.966628809,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431120.117113896,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431120.267598399,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431120.418085527,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431120.568565364,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431120.719054534,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431120.869536704,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431121.020057083,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431121.170537211,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431121.321028713,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431121.471410255,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431121.621806673,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431121.772285633,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431121.922780052,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431122.073305388,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431122.223686929,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431122.374086263,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431122.524480346,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431122.674965430,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431122.825488432,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431122.975981101,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431123.126466768,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431123.276955643,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431123.427445394,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431123.577964603,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431123.728441228,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431123.878935062,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431124.029415479,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431124.179925646,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431124.330425020,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431124.480829601,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431124.631321101,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431124.781813184,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431124.932314308,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431125.082796182,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431125.233299348,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431125.383799305,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431125.534296053,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431125.684780552,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431125.835268842,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431125.985754507,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431126.136240754,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431126.286660209,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431126.437153748,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431126.587558910,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431126.738039908,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431126.888422028,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431127.038906817,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431127.189293895,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431127.339670472,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431127.490067175,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431127.640546713,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431127.790929125,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431127.941417121,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431128.091894617,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431128.242380862,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431128.392859232,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431128.543378437,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431128.693774264,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431128.844168924,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431128.994560959,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431129.145054204,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431129.295427279,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431129.445594726,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431129.595778798,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431129.745921161,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431129.896078399,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431130.046242054,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431130.196408916,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431130.346563820,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431130.496726015,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431130.646882086,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431130.797043698,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431130.947200352,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431131.097357297,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431131.247508408,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431131.397662727,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431131.547814713,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431131.697974283,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431131.848132977,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431131.998292838,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431132.148447157,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431132.298611684,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431132.448771836,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431132.598934321,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431132.749095056,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431132.899259000,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431133.049420318,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431133.199580761,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431133.349742953,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431133.499936063,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431133.650088047,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431133.800251990,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431133.950407182,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431134.100569083,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431134.250725149,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431134.400886466,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431134.551044574,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431134.701245266,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431134.851596753,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431135.001904489,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431135.152084472,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431135.302254538,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431135.452408270,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431135.602569877,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431135.752720401,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431135.902880842,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431136.053034574,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431136.203199097,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431136.353350494,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431136.503511809,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431136.653676915,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431136.803833855,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431136.953979711,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431137.104140733,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431137.254289213,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431137.404446735,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431137.554591715,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431137.704749529,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431137.854901801,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431138.005055823,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431138.155204010,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431138.305359781,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431138.455507968,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431138.605667239,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431138.755812219,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431138.905967698,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431139.056120843,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431139.206287988,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431139.356436467,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431139.506587570,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431139.656738381,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431139.806895318,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431139.957042921,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431140.107194024,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431140.257339292,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431140.407496520,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431140.557644414,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431140.707814183,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431140.857969660,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431141.008126596,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431141.158275364,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431141.308433173,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431141.458584566,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431141.608749376,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431141.758895519,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431141.909055079,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431142.059208221,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431142.209366613,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431142.359518005,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431142.509682523,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431142.659843248,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431142.810003390,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431142.960158282,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431143.110339132,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431143.260495773,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431143.410660581,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431143.560818681,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431143.710986405,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431143.861142172,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431144.011317480,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431144.161469453,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431144.311631635,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431144.461786817,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431144.611942290,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431144.762093680,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431144.912254695,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431145.062407835,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431145.212564766,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431145.362719655,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431145.512882711,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431145.663036142,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431145.813199198,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431145.963350295,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431146.113512184,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431146.263673197,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431146.413838294,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431146.563992890,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431146.714153028,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431146.864309958,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431147.014468930,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431147.164620900,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431147.314780454,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431147.464934175,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431147.615096062,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431147.765247741,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431147.915415753,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431148.065586974,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431148.215753527,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431148.365920663,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431148.516090425,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431148.666261353,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431148.816436948,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431148.966846173,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431149.117177812,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431149.267498075,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431149.417828547,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431149.568221145,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431149.718559201,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431149.868899298,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431150.019268854,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431150.169601658,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431150.320012922,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431150.470461229,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431150.620857326,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431150.771152213,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431150.921455267,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431151.071611609,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431151.221760951,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431151.371910876,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431151.522081509,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431151.672353645,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431151.822675073,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431151.972938459,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431152.123253178,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431152.273526771,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431152.423799197,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431152.574071915,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431152.724350467,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431152.874622018,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431153.024972321,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431153.175394957,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431153.325658632,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431153.475934266,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431153.626220400,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431153.776503909,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431153.926785376,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431154.077073551,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431154.227346851,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431154.377637067,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431154.527919992,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431154.678215750,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431154.828484383,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431154.978705765,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431155.128987814,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431155.279262571,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431155.429585745,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431155.579860794,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431155.730129717,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431155.880404182,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431156.030662897,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431156.180950778,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431156.331216492,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431156.481487748,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431156.631757546,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431156.782023260,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431156.932346725,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431157.082610980,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431157.232888360,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431157.383178574,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431157.533436703,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431157.683581081,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431157.833727500,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431157.983872753,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431158.134016838,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431158.284161214,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431158.434314049,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431158.584471260,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431158.734617386,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431158.884762638,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431159.034904098,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431159.185049932,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431159.335192557,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431159.485344808,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431159.635490934,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431159.785637351,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431159.935791644,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431160.086151273,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431160.236517027,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431160.386875197,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431160.537252910,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431160.687626539,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431160.838054710,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431160.988452840,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431161.138976388,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431161.289492643,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431161.440018524,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431161.590521655,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431161.741020994,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431161.891503416,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431162.041997796,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431162.192493634,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431162.342982471,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431162.493497268,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431162.643986981,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431162.794539694,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431162.945034657,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431163.095405950,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431163.245572489,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431163.395743404,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431163.545903817,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431163.696059273,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431163.846216187,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431163.996382434,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431164.146543139,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431164.296700635,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431164.446852590,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431164.597010086,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431164.747160582,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431164.897318078,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431165.047472074,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431165.197644153,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431165.347796690,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431165.497957685,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431165.648120431,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431165.798281426,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431165.948437755,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431166.098602833,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431166.248762369,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431166.398923947,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431166.549086400,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431166.699250894,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431166.849410430,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431166.999578717,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431167.149744669,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431167.299907996,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431167.450064614,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431167.600228816,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431167.750388935,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431167.900554595,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431168.050729588,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431168.200886789,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431168.351037865,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431168.501206441,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431168.651363350,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431168.801529593,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431168.951683002,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431169.101848953,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431169.252000903,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431169.402174436,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431169.552326969,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431169.702483294,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431169.852634078,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431170.002790111,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431170.152941476,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431170.303099551,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431170.453260250,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431170.603444283,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431170.753597690,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431170.903760139,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431171.053918213,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431171.204078911,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431171.354228817,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431171.504392432,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431171.654551672,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431171.804707704,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431171.954859068,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431172.105015099,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431172.255168505,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431172.405327452,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431172.555481149,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431172.705638638,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431172.855790002,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431173.005952157,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431173.156103520,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431173.306260716,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431173.456417913,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431173.606580651,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431173.756731139,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431173.906891835,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431174.057054281,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431174.207219352,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431174.357376839,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431174.507547743,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431174.657722147,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431174.807883134,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431174.958037996,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431175.108202191,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431175.258363469,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431175.408536122,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431175.558692733,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431175.708854886,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431175.859031331,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431176.009198151,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431176.159355636,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431176.309520705,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431176.459682565,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431176.609861051,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431176.760015328,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431176.910191480,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0
1713431177.060416924,-2.14681,-1.24004,-0.0680199,-2.15542,1.21281,-1.51541,0,0.2,0.0189474,0

View File

@ -1,344 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713932541.227747772,-1.94987,-2.05048,-0.212555,-0.00112261,0.0244818,-0.0218011,0,0.0666667,-0.322105,0
1713932541.378062567,-1.94987,-2.05048,-0.212555,-0.00108305,0.0245819,-0.0366053,0,0.0666667,-0.246316,0
1713932541.528329843,-1.94987,-2.05048,-0.212555,-0.00104092,0.0248297,-0.0650225,0,0.0666667,-0.322105,0
1713932541.678594203,-1.94987,-2.05048,-0.212555,0.00170716,0.0247902,-0.0803201,0,0.0666667,-0.284211,0
1713932541.828933779,-1.94987,-2.05048,-0.212555,0.00770498,0.0247683,-0.112511,0,0.0666667,-0.284211,0
1713932541.979199888,-1.94987,-2.05048,-0.212555,0.0118597,0.0244995,-0.150664,0,0.0666667,-0.246316,0
1713932542.129465706,-1.94987,-2.05048,-0.212555,0.0219305,0.0240317,-0.192318,0,0.0666667,-0.36,0
1713932542.279731232,-1.94987,-2.05048,-0.212555,0.0320267,0.0229983,-0.23397,0,0.0666667,-0.36,0
1713932542.430008712,-1.94987,-2.05048,-0.212555,0.0420291,0.0223138,-0.276757,0,0.0666667,-0.322105,0
1713932542.580266366,-1.94987,-2.05048,-0.212555,0.0520141,0.0214203,-0.327608,0,0.0666667,-0.36,0
1713932542.730532476,-1.94987,-2.05048,-0.212555,0.0594234,0.0111846,-0.378214,0,0.0666667,-0.36,0
1713932542.880789547,-1.94987,-2.05048,-0.212555,0.0617656,0.0110375,-0.403094,0,0.0666667,-0.36,0
1713932543.031043995,-1.94987,-2.05048,-0.212555,0.071821,0.0106817,-0.460746,0,0.0666667,-0.284211,0
1713932543.181336051,-1.94987,-2.05048,-0.212555,0.0815075,0.000154114,-0.502865,0,0.0666667,-0.36,0
1713932543.331594289,-1.94987,-2.05048,-0.212555,0.0915148,-0.000567301,-0.547642,0,0.0666667,-0.36,0
1713932543.481864188,-1.94987,-2.05048,-0.212555,0.0915889,-0.0014775,-0.57517,0,0.0666667,-0.36,0
1713932543.632190062,-1.94987,-2.05048,-0.212555,0.101289,-0.012054,-0.629039,0,0.0666667,-0.36,0
1713932543.782460836,-1.94987,-2.05048,-0.212555,0.111238,-0.0216637,-0.670491,0,0.0666667,-0.36,0
1713932543.932712660,-1.94987,-2.05048,-0.212555,0.121319,-0.0210651,-0.720444,0,0.0666667,-0.36,0
1713932544.082967983,-1.94987,-2.05048,-0.212555,0.121226,-0.0293329,-0.769508,0,0.0666667,-0.36,0
1713932544.233237007,-1.94987,-2.05048,-0.212555,0.131315,-0.0297999,-0.830128,0,0.0666667,-0.36,0
1713932544.383516236,-1.94987,-2.05048,-0.212555,0.14109,-0.038416,-0.872154,0,0.0666667,-0.36,0
1713932544.533777972,-1.94987,-2.05048,-0.212555,0.140875,-0.0474502,-0.916368,0,0.0666667,-0.36,0
1713932544.684063906,-1.94987,-2.05048,-0.212555,0.151237,-0.0459802,-0.967563,0,0.0666667,-0.36,0
1713932544.834331181,-1.94987,-2.05048,-0.212555,0.150862,-0.0549869,-1.01864,0,0.0666667,-0.36,0
1713932544.984606911,-1.94987,-2.05048,-0.212555,0.160509,-0.0634379,-1.07209,0,0.0666667,-0.36,0
1713932545.134759905,-1.94987,-2.05048,-0.212555,0.160299,-0.0700017,-1.11823,0,0.0666667,-0.36,0
1713932545.284923102,-1.94987,-2.05048,-0.212555,0.170172,-0.0706181,-1.15368,0,0.0666667,-0.36,0
1713932545.435204080,-1.94987,-2.05048,-0.212555,0.169871,-0.0795517,-1.2095,0,0.0666667,-0.36,0
1713932545.585499925,-1.94987,-2.05048,-0.212555,0.16975,-0.090549,-1.24347,0,0.133333,-0.36,0
1713932545.735785276,-1.94987,-2.05048,-0.212555,0.169905,-0.0900459,-1.30273,0,0.0666667,-0.36,0
1713932545.886123395,-1.94987,-2.05048,-0.212555,0.17971,-0.109249,-1.36219,0,0.155556,-0.36,0
1713932546.036430319,-1.94987,-2.05048,-0.212555,0.179461,-0.118648,-1.42451,0,0.177778,-0.36,0
1713932546.186730246,-1.94987,-2.05048,-0.212555,0.179462,-0.127432,-1.46209,0,0.2,-0.36,0
1713932546.337006268,-1.94987,-2.05048,-0.212555,0.17935,-0.136778,-1.51105,0,0.155556,-0.36,0
1713932546.487265963,-1.94987,-2.05048,-0.212555,0.178688,-0.165948,-1.58582,0,0.2,-0.36,0
1713932546.637572304,-1.94987,-2.05048,-0.212555,0.178212,-0.185772,-1.63728,0,0.2,-0.36,0
1713932546.787842495,-1.94987,-2.05048,-0.212555,0.177739,-0.206929,-1.67889,0,0.177778,-0.36,0
1713932546.938103357,-1.94987,-2.05048,-0.212555,0.177036,-0.238132,-1.74274,0,0.2,-0.36,0
1713932547.088419319,-1.94987,-2.05048,-0.212555,0.176673,-0.259438,-1.78834,0,0.177778,-0.36,0
1713932547.238671726,-1.94987,-2.05048,-0.212555,0.166278,-0.289811,-1.83923,0,0.2,-0.36,0
1713932547.388983023,-1.94987,-2.05048,-0.212555,0.156393,-0.298243,-1.86852,0,0.2,-0.36,0
1713932547.539259919,-1.94987,-2.05048,-0.212555,0.156116,-0.327671,-1.92754,0,0.177778,-0.36,0
1713932547.689505913,-1.94987,-2.05048,-0.212555,0.136131,-0.356503,-1.98683,0,0.2,-0.36,0
1713932547.839769107,-1.94987,-2.05048,-0.212555,0.126141,-0.376222,-2.02841,0,0.2,-0.36,0
1713932547.990031426,-1.94987,-2.05048,-0.212555,0.115908,-0.40551,-2.0752,0,0.2,-0.322105,0
1713932548.140288206,-1.94987,-2.05048,-0.212555,0.105483,-0.425211,-2.12739,0,0.2,-0.246316,0
1713932548.290544695,-1.94987,-2.05048,-0.212555,0.0849719,-0.44423,-2.17299,0,0.2,-0.246316,0
1713932548.440808472,-1.94987,-2.05048,-0.212555,0.0742617,-0.473581,-2.21544,0,0.2,-0.246316,0
1713932548.591076913,-1.94987,-2.05048,-0.212555,0.053732,-0.492214,-2.26099,0,0.2,-0.246316,0
1713932548.741328737,-1.94987,-2.05048,-0.212555,0.0331732,-0.5214,-2.30736,0,0.2,-0.170526,0
1713932548.891579978,-1.94987,-2.05048,-0.212555,0.023518,-0.529923,-2.33212,0,0.2,-0.170526,0
1713932549.041834135,-1.94987,-2.05048,-0.212555,0.00281259,-0.548862,-2.3645,0,0.2,-0.0568421,0
1713932549.192100244,-1.94987,-2.05048,-0.212555,-0.0179815,-0.57331,-2.39832,0,0.2,-0.0568421,0
1713932549.342342447,-1.94987,-2.05048,-0.212555,-0.0384396,-0.587066,-2.41625,0,0.2,-0.0568421,0
1713932549.492617011,-1.94987,-2.05048,-0.212555,-0.0592151,-0.605926,-2.43462,0,0.2,-0.0568421,0
1713932549.642902070,-1.94987,-2.05048,-0.212555,-0.0799903,-0.624989,-2.45103,0,0.2,-0.0568421,0
1713932549.793164681,-1.94987,-2.05048,-0.212555,-0.100876,-0.644027,-2.46314,0,0.2,-0.0189474,0
1713932549.943432831,-1.94987,-2.05048,-0.212555,-0.121175,-0.653245,-2.47204,0,0.2,-0.0189474,0
1713932550.093699523,-1.94987,-2.05048,-0.212555,-0.141897,-0.672653,-2.4788,0,0.2,-0.0189474,0
1713932550.243842313,-1.94987,-2.05048,-0.212555,-0.16989,-0.691507,-2.48582,0,0.2,-0.0189474,0
1713932550.393980439,-1.94987,-2.05048,-0.212555,-0.183215,-0.711005,-2.48923,0,0.2,-0.0189474,0
1713932550.544127310,-1.94987,-2.05048,-0.212555,-0.213993,-0.729888,-2.4934,0,0.2,0,0
1713932550.694276513,-1.94987,-2.05048,-0.212555,-0.234414,-0.738978,-2.49521,0,0.2,-0.0189474,0
1713932550.844422219,-1.94987,-2.05048,-0.212555,-0.254932,-0.75823,-2.49858,0,0.2,0.0189474,0
1713932550.994560344,-1.94987,-2.05048,-0.212555,-0.275547,-0.777258,-2.49812,0,0.177778,-0.0189474,0
1713932551.144699052,-1.94987,-2.05048,-0.212555,-0.305854,-0.786348,-2.49874,0,0.2,-0.0189474,0
1713932551.294838927,-1.94987,-2.05048,-0.212555,-0.326473,-0.805387,-2.50073,0,0.2,-0.0189474,0
1713932551.444979676,-1.94987,-2.05048,-0.212555,-0.34307,-0.820725,-2.49935,0,0.2,0,0
1713932551.595122757,-1.94987,-2.05048,-0.212555,-0.367946,-0.843771,-2.49886,0,0.2,0,0
1713932551.745275750,-1.94987,-2.05048,-0.212555,-0.388296,-0.852911,-2.49838,0,0.2,0.0189474,0
1713932551.895415916,-1.94987,-2.05048,-0.212555,-0.409003,-0.871797,-2.49715,0,0.2,0.0189474,0
1713932552.045558123,-1.94987,-2.05048,-0.212555,-0.429311,-0.881098,-2.49493,0,0.2,-0.0189474,0
1713932552.195699455,-1.94987,-2.05048,-0.212555,-0.455149,-0.90019,-2.49378,0,0.2,-0.0189474,0
1713932552.345851574,-1.94987,-2.05048,-0.212555,-0.480378,-0.919429,-2.48938,0,0.2,-0.0189474,0
1713932552.496138383,-1.94987,-2.05048,-0.212555,-0.500677,-0.928851,-2.48972,0,0.2,-0.0189474,0
1713932552.646391956,-1.94987,-2.05048,-0.212555,-0.52096,-0.948597,-2.4887,0,0.2,-0.0189474,0
1713932552.796654567,-1.94987,-2.05048,-0.212555,-0.541402,-0.968159,-2.48724,0,0.2,0,0
1713932552.946915428,-1.94987,-2.05048,-0.212555,-0.571683,-0.987629,-2.48609,0,0.2,-0.0189474,0
1713932553.097185036,-1.94987,-2.05048,-0.212555,-0.59208,-1.00729,-2.48699,0,0.177778,0,0
1713932553.247445023,-1.94987,-2.05048,-0.212555,-0.612275,-1.01689,-2.48713,0,0.2,0,0
1713932553.397668568,-1.94987,-2.05048,-0.212555,-0.63824,-1.03672,-2.48852,0,0.2,0,0
1713932553.547924765,-1.94987,-2.05048,-0.212555,-0.652839,-1.04648,-2.48878,0,0.2,0.0189474,0
1713932553.698192041,-1.94987,-2.05048,-0.212555,-0.673205,-1.06635,-2.49324,0,0.2,0.0189474,0
1713932553.848463689,-1.94987,-2.05048,-0.212555,-0.703584,-1.08569,-2.49528,0,0.2,-0.0189474,0
1713932553.998765366,-1.94987,-2.05048,-0.212555,-0.724035,-1.10503,-2.49636,0,0.2,0.0189474,0
1713932554.149064710,-1.94987,-2.05048,-0.212555,-0.754431,-1.12437,-2.49807,0,0.2,0.0189474,0
1713932554.299345688,-1.94987,-2.05048,-0.212555,-0.764726,-1.13394,-2.49924,0,0.177778,0.0189474,0
1713932554.449634537,-1.94987,-2.05048,-0.212555,-0.795107,-1.1535,-2.50051,0,0.2,0.0189474,0
1713932554.599788113,-1.94987,-2.05048,-0.212555,-0.815541,-1.16876,-2.50118,0,0.2,0,0
1713932554.749937317,-1.94987,-2.05048,-0.212555,-0.835892,-1.18234,-2.50229,0,0.2,0,0
1713932554.900083022,-1.94987,-2.05048,-0.212555,-0.856671,-1.20125,-2.50151,0,0.2,0.0189474,0
1713932555.050235724,-1.94987,-2.05048,-0.212555,-0.887122,-1.22064,-2.49914,0,0.2,0,0
1713932555.200379097,-1.94987,-2.05048,-0.212555,-0.897484,-1.23003,-2.49754,0,0.2,-0.0189474,0
1713932555.350522470,-1.94987,-2.05048,-0.212555,-0.927832,-1.24905,-2.4955,0,0.177778,0,0
1713932555.500674880,-1.94987,-2.05048,-0.212555,-0.953649,-1.26859,-2.49396,0,0.2,0,0
1713932555.650832830,-1.94987,-2.05048,-0.212555,-0.968116,-1.27868,-2.49401,0,0.2,-0.0189474,0
1713932555.801103312,-1.94987,-2.05048,-0.212555,-0.988304,-1.29844,-2.49212,0,0.2,-0.0189474,0
1713932555.951381375,-1.94987,-2.05048,-0.212555,-1.00863,-1.31796,-2.49114,0,0.2,0,0
1713932556.101619497,-1.94987,-2.05048,-0.212555,-1.03905,-1.33727,-2.49147,0,0.2,0,0
1713932556.251944787,-1.94987,-2.05048,-0.212555,-1.05924,-1.34688,-2.49051,0,0.2,0.0568421,0
1713932556.402210605,-1.94987,-2.05048,-0.212555,-1.08989,-1.36553,-2.49057,0,0.2,0.0568421,0
1713932556.552484294,-1.94987,-2.05048,-0.212555,-1.10033,-1.38495,-2.48914,0,0.2,-0.0189474,0
1713932556.702743407,-1.94987,-2.05048,-0.212555,-1.13084,-1.39354,-2.48801,0,0.177778,0,0
1713932556.853034005,-1.94987,-2.05048,-0.212555,-1.15123,-1.41291,-2.48699,0,0.2,0.0189474,0
1713932557.003311193,-1.94987,-2.05048,-0.212555,-1.16099,-1.42303,-2.48767,0,0.2,0,0
1713932557.153594503,-1.94987,-2.05048,-0.212555,-1.19125,-1.44965,-2.48662,0,0.2,-0.0189474,0
1713932557.303864402,-1.94987,-2.05048,-0.212555,-1.21133,-1.46224,-2.48592,0,0.2,0.0189474,0
1713932557.454137217,-1.94987,-2.05048,-0.212555,-1.23161,-1.48126,-2.48475,0,0.2,-0.0189474,0
1713932557.604412363,-1.94987,-2.05048,-0.212555,-1.25198,-1.50035,-2.4845,0,0.2,-0.0189474,0
1713932557.754691009,-1.94987,-2.05048,-0.212555,-1.27795,-1.50994,-2.48257,0,0.2,0,0
1713932557.904957118,-1.94987,-2.05048,-0.212555,-1.30273,-1.52886,-2.4874,0,0.2,-0.0189474,0
1713932558.055216814,-1.94987,-2.05048,-0.212555,-1.32907,-1.54812,-2.48636,0,0.2,0.0568421,0
1713932558.205482340,-1.94987,-2.05048,-0.212555,-1.35455,-1.56592,-2.48736,0,0.2,0.0189474,0
1713932558.355825123,-1.94987,-2.05048,-0.212555,-1.37581,-1.58417,-2.48841,0,0.2,0.0568421,0
1713932558.506101727,-1.94987,-2.05048,-0.212555,-1.39567,-1.59429,-2.48926,0,0.2,0.0568421,0
1713932558.656377749,-1.94987,-2.05048,-0.212555,-1.42554,-1.6147,-2.48952,0,0.2,0,0
1713932558.806646774,-1.94987,-2.05048,-0.212555,-1.43596,-1.63471,-2.48695,0,0.177778,0,0
1713932558.956922212,-1.94987,-2.05048,-0.212555,-1.4664,-1.65422,-2.48419,0,0.2,0.0947368,0
1713932559.107188030,-1.94987,-2.05048,-0.212555,-1.48662,-1.66336,-2.48251,0,0.2,-0.0189474,0
1713932559.257450058,-1.94987,-2.05048,-0.212555,-1.49707,-1.68306,-2.47985,0,0.2,-0.0568421,0
1713932559.407598678,-1.94987,-2.05048,-0.212555,-1.52741,-1.69233,-2.47468,0,0.2,0.0189474,0
1713932559.557742342,-1.94987,-2.05048,-0.212555,-1.54812,-1.71153,-2.46979,0,0.2,-0.0189474,0
1713932559.707887465,-1.94987,-2.05048,-0.212555,-1.56907,-1.73048,-2.46616,0,0.177778,-0.0189474,0
1713932559.858030254,-1.94987,-2.05048,-0.212555,-1.59986,-1.74953,-2.46159,0,0.177778,-0.0568421,0
1713932560.008174502,-1.94987,-2.05048,-0.212555,-1.6113,-1.75792,-2.4616,0,0.2,-0.0189474,0
1713932560.158317292,-1.94987,-2.05048,-0.212555,-1.64241,-1.77628,-2.46094,0,0.2,0.0947368,0
1713932560.308462997,-1.94987,-2.05048,-0.212555,-1.65975,-1.79822,-2.46354,0,0.177778,-0.0189474,0
1713932560.458621530,-1.94987,-2.05048,-0.212555,-1.67453,-1.80786,-2.46415,0,0.177778,0.0947368,0
1713932560.608778896,-1.94987,-2.05048,-0.212555,-1.69484,-1.82823,-2.46117,0,0.155556,0.0568421,0
1713932560.758927517,-1.94987,-2.05048,-0.212555,-1.71499,-1.84818,-2.46317,0,0.155556,0.0568421,0
1713932560.909071181,-1.94987,-2.05048,-0.212555,-1.74091,-1.86441,-2.44821,0,0.133333,0,0
1713932561.059207849,-1.94987,-2.05048,-0.212555,-1.75463,-1.87897,-2.42734,0,0.133333,0.0568421,0
1713932561.209354428,-1.94987,-2.05048,-0.212555,-1.77438,-1.88954,-2.40539,0,0.111111,0,0
1713932561.359505090,-1.94987,-2.05048,-0.212555,-1.78412,-1.89962,-2.39167,0,0.111111,-0.0189474,0
1713932561.509651669,-1.94987,-2.05048,-0.212555,-1.79421,-1.90844,-2.37903,0,0.111111,-0.0189474,0
1713932561.659798249,-1.94987,-2.05048,-0.212555,-1.81364,-1.92708,-2.36082,0,0.0888889,-0.0189474,0
1713932561.809938707,-1.94987,-2.05048,-0.212555,-1.82388,-1.92865,-2.35022,0,0.0888889,-0.0568421,0
1713932561.960072750,-1.94987,-2.05048,-0.212555,-1.83263,-1.95362,-2.33574,0,0,0.5,0
1713932562.110219622,-1.94987,-2.05048,-0.212555,-1.84274,-1.95575,-2.32682,0,0,0.5,0
1713932562.260379612,-1.94987,-2.05048,-0.212555,-1.84182,-1.9678,-2.32226,0,0,0.5,0
1713932562.410524734,-1.94987,-2.05048,-0.212555,-1.85207,-1.97192,-2.35618,0,0,0.5,0
1713932562.560660819,-1.94987,-2.05048,-0.212555,-1.86237,-1.98307,-2.403,0,0,0.5,0
1713932562.710809731,-1.94987,-2.05048,-0.212555,-1.86262,-1.98285,-2.46939,0,0,0.5,0
1713932562.860943483,-1.94987,-2.05048,-0.212555,-1.86562,-1.98982,-2.60666,0,0,0.5,0
1713932563.011088605,-1.94987,-2.05048,-0.212555,-1.86546,-1.98925,-2.73985,0,0,0.5,0
1713932563.161231686,-1.94987,-2.05048,-0.212555,-1.86504,-1.98915,-2.84952,0,0,0.5,0
1713932563.311433366,-1.94987,-2.05048,-0.212555,-1.87099,-1.9799,-2.9524,0,0,0.5,0
1713932563.461688397,-1.94987,-2.05048,-0.212555,-1.86989,-1.9765,-3.03251,0,0,0.5,0
1713932563.611964419,-1.94987,-2.05048,-0.212555,-1.87804,-1.97945,-3.04278,0,0,0.5,0
1713932563.762236942,-1.94987,-2.05048,-0.212555,-1.87744,-1.97769,-3.00297,0,0,0.5,0
1713932563.912509756,-1.94987,-2.05048,-0.212555,-1.87604,-1.9747,-2.94266,0,0,0.5,0
1713932564.062773533,-1.94987,-2.05048,-0.212555,-1.87446,-1.97272,-2.8929,0,0,0.5,0
1713932564.213042558,-1.94987,-2.05048,-0.212555,-1.87364,-1.97177,-2.86251,0,0,0.5,0
1713932564.363306335,-1.94987,-2.05048,-0.212555,-1.87189,-1.97244,-2.83615,0,0,0.5,0
1713932564.513570112,-1.94987,-2.05048,-0.212555,-1.87094,-1.97226,-2.78211,0,0,0.5,0
1713932564.663816397,-1.94987,-2.05048,-0.212555,-1.86874,-1.97209,-2.72617,0,0,0.5,0
1713932564.814086879,-1.94987,-2.05048,-0.212555,-1.86743,-1.972,-2.68817,0,0,0.5,0
1713932564.964356487,-1.94987,-2.05048,-0.212555,-1.8647,-1.97281,-2.63938,0,0,0.5,0
1713932565.114632509,-1.94987,-2.05048,-0.212555,-1.86315,-1.97337,-2.58117,0,0,0.5,0
1713932565.264909405,-1.94987,-2.05048,-0.212555,-1.86005,-1.97383,-2.50291,0,0,0.5,0
1713932565.415174056,-1.94987,-2.05048,-0.212555,-1.8587,-1.97364,-2.44273,0,0,0.5,0
1713932565.565441332,-1.94987,-2.05048,-0.212555,-1.85588,-1.97372,-2.41658,0,0,0.5,0
1713932565.715593159,-1.94987,-2.05048,-0.212555,-1.85453,-1.97397,-2.42932,0,0,0.5,0
1713932565.865737698,-1.94987,-2.05048,-0.212555,-1.85183,-1.97387,-2.46529,0,0,0.5,0
1713932566.015881946,-1.94987,-2.05048,-0.212555,-1.85143,-1.98322,-2.51326,0,0,0.5,0
1713932566.166019779,-1.94987,-2.05048,-0.212555,-1.84959,-1.98254,-2.50604,0,0,0.5,0
1713932566.316168983,-1.94987,-2.05048,-0.212555,-1.84648,-1.97213,-2.489,0,0,0.5,0
1713932566.466306525,-1.94987,-2.05048,-0.212555,-1.84478,-1.97272,-2.45451,0,0,0.5,0
1713932566.616449606,-1.94987,-2.05048,-0.212555,-1.84404,-1.97796,-2.38223,0,0,0.5,0
1713932566.766586857,-1.94987,-2.05048,-0.212555,-1.84153,-1.97914,-2.31424,0,0,0.5,0
1713932566.916734894,-1.94987,-2.05048,-0.212555,-1.8404,-1.97947,-2.25878,0,0,0.5,0
1713932567.066877393,-1.94987,-2.05048,-0.212555,-1.83929,-1.98014,-2.1964,0,0,0.5,0
1713932567.217025139,-1.94987,-2.05048,-0.212555,-1.83701,-1.97888,-2.10305,0,0,0.5,0
1713932567.367161223,-1.94987,-2.05048,-0.212555,-1.83474,-1.97748,-2.03237,0,0,0.5,0
1713932567.517301972,-1.94987,-2.05048,-0.212555,-1.83357,-1.97727,-1.98414,0,0,0.5,0
1713932567.667453800,-1.94987,-2.05048,-0.212555,-1.83112,-1.9773,-1.86454,0,0,0.5,0
1713932567.817596298,-1.94987,-2.05048,-0.212555,-1.83029,-1.97671,-1.80487,0,0,0.5,0
1713932567.967735589,-1.94987,-2.05048,-0.212555,-1.82862,-1.97445,-1.72464,0,0,0.5,0
1713932568.117881003,-1.94987,-2.05048,-0.212555,-1.82764,-1.97338,-1.65846,0,0,0.5,0
1713932568.268021752,-1.94987,-2.05048,-0.212555,-1.82624,-1.9708,-1.59571,0,0,0.5,0
1713932568.418158711,-1.94987,-2.05048,-0.212555,-1.82553,-1.96997,-1.49855,0,0,0.5,0
1713932568.568289548,-1.94987,-2.05048,-0.212555,-1.82441,-1.96774,-1.43976,0,0.0666667,-0.36,0
1713932568.718436711,-1.94987,-2.05048,-0.212555,-1.82372,-1.96669,-1.37661,0,0.0666667,-0.36,0
1713932568.868573670,-1.94987,-2.05048,-0.212555,-1.8228,-1.96667,-1.32572,0,0,0.5,0
1713932569.018716168,-1.94987,-2.05048,-0.212555,-1.82381,-1.97608,-1.31793,0,0,0.5,0
1713932569.168854876,-1.94987,-2.05048,-0.212555,-1.82185,-1.97661,-1.30891,0,0,0.5,0
1713932569.318997958,-1.94987,-2.05048,-0.212555,-1.82083,-1.977,-1.25187,0,0,0.5,0
1713932569.469134917,-1.94987,-2.05048,-0.212555,-1.81849,-1.97748,-1.21726,0,0.0666667,-0.36,0
1713932569.619279456,-1.94987,-2.05048,-0.212555,-1.8079,-1.98071,-1.13047,0,0.0666667,-0.36,0
1713932569.769416998,-1.94987,-2.05048,-0.212555,-1.80564,-1.98103,-1.08059,0,0.0666667,-0.322105,0
1713932569.919562703,-1.94987,-2.05048,-0.212555,-1.80729,-1.99066,-1.07971,0,0.0666667,-0.284211,0
1713932570.069701411,-1.94987,-2.05048,-0.212555,-1.80498,-1.99089,-1.09543,0,0.0666667,-0.284211,0
1713932570.219843327,-1.94987,-2.05048,-0.212555,-1.79427,-1.99416,-1.11352,0,0.0666667,-0.36,0
1713932570.369985242,-1.94987,-2.05048,-0.212555,-1.7949,-2.00432,-1.1342,0,0.0666667,-0.36,0
1713932570.520139110,-1.94987,-2.05048,-0.212555,-1.79399,-2.00437,-1.15065,0,0.0666667,-0.36,0
1713932570.670279276,-1.94987,-2.05048,-0.212555,-1.78544,-2.01653,-1.17903,0,0.0666667,-0.36,0
1713932570.820422357,-1.94987,-2.05048,-0.212555,-1.7837,-2.01764,-1.21007,0,0.0666667,-0.36,0
1713932570.970556984,-1.94987,-2.05048,-0.212555,-1.77583,-2.02719,-1.22875,0,0.0666667,-0.36,0
1713932571.120700357,-1.94987,-2.05048,-0.212555,-1.77518,-2.02615,-1.26184,0,0.0666667,-0.36,0
1713932571.270844604,-1.94987,-2.05048,-0.212555,-1.77627,-2.03417,-1.27126,0,0.0666667,-0.36,0
1713932571.420988269,-1.94987,-2.05048,-0.212555,-1.76571,-2.03596,-1.30692,0,0.0666667,-0.36,0
1713932571.571132516,-1.94987,-2.05048,-0.212555,-1.76405,-2.03478,-1.36456,0,0.0666667,-0.36,0
1713932571.721278221,-1.94987,-2.05048,-0.212555,-1.7664,-2.04357,-1.46141,0,0.0666667,-0.36,0
1713932571.871503516,-1.94987,-2.05048,-0.212555,-1.76431,-2.04216,-1.55773,0,0.0666667,-0.36,0
1713932572.021647180,-1.94987,-2.05048,-0.212555,-1.76782,-2.05014,-1.6896,0,0.0666667,-0.36,0
1713932572.171789970,-1.94987,-2.05048,-0.212555,-1.76258,-2.06145,-1.83666,0,0.0666667,-0.36,0
1713932572.321937716,-1.94987,-2.05048,-0.212555,-1.76193,-2.05924,-1.95258,0,0.0666667,-0.36,0
1713932572.472079631,-1.94987,-2.05048,-0.212555,-1.76768,-2.06174,-2.20072,0,0.0666667,-0.36,0
1713932572.622222129,-1.94987,-2.05048,-0.212555,-1.76653,-2.05923,-2.33317,0,0.0888889,-0.36,0
1713932572.772357339,-1.94987,-2.05048,-0.212555,-1.76801,-2.06824,-2.47871,0,0.0888889,-0.36,0
1713932572.922513540,-1.94987,-2.05048,-0.212555,-1.77594,-2.07015,-2.66625,0,0.0888889,-0.36,0
1713932573.072649916,-1.94987,-2.05048,-0.212555,-1.78281,-2.06885,-2.72921,0,0.0888889,-0.36,0
1713932573.222799702,-1.94987,-2.05048,-0.212555,-1.79103,-2.06946,-2.77341,0,0.0666667,-0.322105,0
1713932573.372938994,-1.94987,-2.05048,-0.212555,-1.79792,-2.06873,-2.82521,0,0,0.5,0
1713932573.523083533,-1.94987,-2.05048,-0.212555,-1.80616,-2.06975,-2.8671,0,0,0.5,0
1713932573.673225156,-1.94987,-2.05048,-0.212555,-1.81332,-2.06836,-2.89388,0,0,0.5,0
1713932573.823371153,-1.94987,-2.05048,-0.212555,-1.81212,-2.06599,-2.86696,0,0,0.5,0
1713932573.973512777,-1.94987,-2.05048,-0.212555,-1.81917,-2.06471,-2.8399,0,0,0.5,0
1713932574.123656441,-1.94987,-2.05048,-0.212555,-1.81794,-2.06272,-2.81551,0,0,0.5,0
1713932574.273811767,-1.94987,-2.05048,-0.212555,-1.81556,-2.05903,-2.79233,0,0,0.5,0
1713932574.423952808,-1.94987,-2.05048,-0.212555,-1.82396,-2.05978,-2.75082,0,0,0.5,0
1713932574.574093557,-1.94987,-2.05048,-0.212555,-1.82136,-2.05649,-2.71101,0,0,0.5,0
1713932574.724236346,-1.94987,-2.05048,-0.212555,-1.82006,-2.05479,-2.68288,0,0,0.5,0
1713932574.874377387,-1.94987,-2.05048,-0.212555,-1.81756,-2.05113,-2.62099,0,0,0.5,0
1713932575.024519011,-1.94987,-2.05048,-0.212555,-1.81647,-2.04936,-2.53972,0,0,0.5,0
1713932575.174654804,-1.94987,-2.05048,-0.212555,-1.81411,-2.04416,-2.47141,0,0,0.5,0
1713932575.324798177,-1.94987,-2.05048,-0.212555,-1.81296,-2.04137,-2.4174,0,0,0.5,0
1713932575.474939509,-1.94987,-2.05048,-0.212555,-1.81063,-2.0376,-2.34975,0,0,0.5,0
1713932575.625084631,-1.94987,-2.05048,-0.212555,-1.80933,-2.03568,-2.27902,0,0,0.5,0
1713932575.775228587,-1.94987,-2.05048,-0.212555,-1.80688,-2.03169,-2.23166,0,0,0.5,0
1713932575.925611893,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932576.075873629,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932576.226244983,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932576.376536456,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932576.526892941,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932576.677175376,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932576.827474721,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932576.977776981,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932577.128138422,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932577.278423189,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932577.428786380,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932577.579144031,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932577.729465824,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932577.879766334,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932578.030074133,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932578.180421581,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932578.330762032,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932578.481043884,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932578.631386084,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932578.781723328,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932578.932045121,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932579.082369537,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932579.232694828,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932579.382969975,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932579.533304012,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932579.683613852,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932579.833894538,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932579.984162688,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932580.134489728,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932580.284903937,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932580.435169755,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932580.585513996,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932580.735841619,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932580.886163411,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932581.036432436,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932581.186719827,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932581.337044535,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932581.487391692,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932581.637679958,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932581.787985424,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932581.938321502,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932582.088632508,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932582.238951385,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932582.389275218,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932582.539608089,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932582.689947374,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932582.840259837,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932582.990544022,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932583.140860858,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932583.291174488,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932583.441444970,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932583.591788628,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932583.742116251,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932583.892424633,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932584.042758087,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932584.193099121,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932584.343439863,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932584.493772734,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932584.644110561,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932584.794429438,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932584.944755312,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932585.095079146,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932585.245407644,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932585.395733518,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932585.546064639,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932585.696400426,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932585.846716679,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932585.996994450,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932586.147301082,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932586.297658734,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932586.448004141,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932586.598330889,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932586.748657638,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932586.898975932,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932587.049314634,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932587.199666455,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932587.349989413,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932587.500275638,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932587.650605886,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932587.800925637,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932587.951240433,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932588.101561643,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932588.251891307,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932588.402217181,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932588.552566669,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932588.702945019,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932588.853263022,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932589.003588022,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932589.153914770,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932589.304245017,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932589.454573515,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932589.604904637,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932589.755238674,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932589.905571836,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932590.055909955,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932590.206181603,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932590.356454418,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932590.506771254,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932590.657054856,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932590.807339332,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932590.957692610,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932591.108104779,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932591.258451352,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932591.408778975,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932591.559104849,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932591.709458128,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932591.859730068,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932592.010017459,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932592.160303684,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932592.310614690,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932592.460927445,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0
1713932592.611197636,-1.94987,-2.05048,-0.212555,-1.80574,-2.0299,-2.15563,0,0,0.5,0

View File

@ -1,136 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713932635.880410830,-1.94987,-2.05048,-0.212555,0.0473207,0.0206828,-0.0768478,0,0.0666667,-0.284211,0
1713932636.030696180,-1.94987,-2.05048,-0.212555,0.0475916,0.0207048,-0.0860325,0,0.0666667,-0.36,0
1713932636.180973076,-1.94987,-2.05048,-0.212555,0.0481324,0.0207487,-0.0991654,0,0.0666667,-0.36,0
1713932636.331230148,-1.94987,-2.05048,-0.212555,0.0486722,0.0207925,-0.129623,0,0.0666667,-0.36,0
1713932636.481524245,-1.94987,-2.05048,-0.212555,0.0588981,0.020209,-0.157884,0,0.0666667,-0.36,0
1713932636.631775194,-1.94987,-2.05048,-0.212555,0.0693412,0.0196279,-0.204697,0,0.0666667,-0.36,0
1713932636.782022354,-1.94987,-2.05048,-0.212555,0.0695597,0.0196528,-0.233834,0,0.0666667,-0.36,0
1713932636.932294877,-1.94987,-2.05048,-0.212555,0.0797296,0.0190056,-0.280398,0,0.0666667,-0.322105,0
1713932637.082571773,-1.94987,-2.05048,-0.212555,0.0900677,0.018384,-0.32107,0,0.0666667,-0.36,0
1713932637.232827678,-1.94987,-2.05048,-0.212555,0.100352,0.0177366,-0.370609,0,0.0666667,-0.36,0
1713932637.383038104,-1.94987,-2.05048,-0.212555,0.109776,0.00711908,-0.413359,0,0.0666667,-0.322105,0
1713932637.533401878,-1.94987,-2.05048,-0.212555,0.117332,0.00668679,-0.4558,0,0.0666667,-0.36,0
1713932637.683758655,-1.94987,-2.05048,-0.212555,0.120055,0.00661128,-0.511912,0,0.0666667,-0.36,0
1713932637.834113391,-1.94987,-2.05048,-0.212555,0.129344,-0.00402652,-0.56073,0,0.0666667,-0.36,0
1713932637.984468127,-1.94987,-2.05048,-0.212555,0.139222,-0.00588737,-0.612418,0,0.0666667,-0.36,0
1713932638.134834816,-1.94987,-2.05048,-0.212555,0.13839,-0.0167968,-0.647194,0,0.0666667,-0.36,0
1713932638.285184304,-1.94987,-2.05048,-0.212555,0.148176,-0.0178473,-0.72625,0,0.0666667,-0.36,0
1713932638.435416304,-1.94987,-2.05048,-0.212555,0.157235,-0.0273157,-0.774837,0,0.0666667,-0.322105,0
1713932638.585772789,-1.94987,-2.05048,-0.212555,0.167206,-0.0273354,-0.833934,0,0.0666667,-0.36,0
1713932638.736201284,-1.94987,-2.05048,-0.212555,0.166451,-0.0363828,-0.870553,0,0.0666667,-0.36,0
1713932638.886574387,-1.94987,-2.05048,-0.212555,0.175622,-0.0467309,-0.924069,0,0.0666667,-0.36,0
1713932639.036855364,-1.94987,-2.05048,-0.212555,0.175563,-0.0458582,-0.961813,0,0.0666667,-0.36,0
1713932639.187128179,-1.94987,-2.05048,-0.212555,0.184701,-0.0557584,-1.01634,0,0.0666667,-0.36,0
1713932639.337383793,-1.94987,-2.05048,-0.212555,0.189613,-0.0660563,-1.07325,0,0.0666667,-0.36,0
1713932639.487657482,-1.94987,-2.05048,-0.212555,0.194076,-0.0660523,-1.11047,0,0.0666667,-0.36,0
1713932639.637923008,-1.94987,-2.05048,-0.212555,0.193399,-0.0775041,-1.15695,0,0.0666667,-0.36,0
1713932639.788201654,-1.94987,-2.05048,-0.212555,0.202564,-0.0888063,-1.20169,0,0.0666667,-0.36,0
1713932639.938462515,-1.94987,-2.05048,-0.212555,0.201608,-0.0999896,-1.26463,0,0.155556,-0.36,0
1713932640.088753988,-1.94987,-2.05048,-0.212555,0.20088,-0.109259,-1.32233,0,0.155556,-0.36,0
1713932640.239018348,-1.94987,-2.05048,-0.212555,0.210683,-0.108826,-1.35834,0,0.111111,-0.36,0
1713932640.389293787,-1.94987,-2.05048,-0.212555,0.208938,-0.128081,-1.44108,0,0.177778,-0.36,0
1713932640.539552316,-1.94987,-2.05048,-0.212555,0.207516,-0.136575,-1.47466,0,0.2,-0.36,0
1713932640.689849328,-1.94987,-2.05048,-0.212555,0.205835,-0.155609,-1.51753,0,0.155556,-0.36,0
1713932640.840110773,-1.94987,-2.05048,-0.212555,0.213662,-0.17426,-1.57802,0,0.2,-0.36,0
1713932640.990376008,-1.94987,-2.05048,-0.212555,0.211951,-0.194407,-1.63241,0,0.2,-0.36,0
1713932641.140634537,-1.94987,-2.05048,-0.212555,0.2096,-0.224091,-1.68212,0,0.177778,-0.36,0
1713932641.290905019,-1.94987,-2.05048,-0.212555,0.208176,-0.244686,-1.73853,0,0.177778,-0.36,0
1713932641.441165589,-1.94987,-2.05048,-0.212555,0.196796,-0.264461,-1.78516,0,0.2,-0.36,0
1713932641.591440736,-1.94987,-2.05048,-0.212555,0.194788,-0.294634,-1.83525,0,0.2,-0.36,0
1713932641.741670987,-1.94987,-2.05048,-0.212555,0.183445,-0.313758,-1.88734,0,0.2,-0.36,0
1713932641.891937387,-1.94987,-2.05048,-0.212555,0.175684,-0.342731,-1.93547,0,0.2,-0.36,0
1713932642.042201748,-1.94987,-2.05048,-0.212555,0.170301,-0.361713,-1.97185,0,0.177778,-0.36,0
1713932642.192492054,-1.94987,-2.05048,-0.212555,0.150239,-0.398153,-2.04384,0,0.2,-0.322105,0
1713932642.342838336,-1.94987,-2.05048,-0.212555,0.146688,-0.409801,-2.07559,0,0.2,-0.322105,0
1713932642.493122812,-1.94987,-2.05048,-0.212555,0.135326,-0.42895,-2.11053,0,0.2,-0.322105,0
1713932642.643379884,-1.94987,-2.05048,-0.212555,0.113015,-0.45694,-2.16787,0,0.2,-0.246316,0
1713932642.793647742,-1.94987,-2.05048,-0.212555,0.101544,-0.47595,-2.20836,0,0.2,-0.246316,0
1713932642.943882366,-1.94987,-2.05048,-0.212555,0.0792615,-0.503886,-2.25906,0,0.2,-0.170526,0
1713932643.094159553,-1.94987,-2.05048,-0.212555,0.0579189,-0.522215,-2.29597,0,0.2,-0.246316,0
1713932643.244422456,-1.94987,-2.05048,-0.212555,0.0459967,-0.540283,-2.32607,0,0.2,-0.170526,0
1713932643.394747455,-1.94987,-2.05048,-0.212555,0.0144634,-0.557977,-2.36718,0,0.2,-0.170526,0
1713932643.545009191,-1.94987,-2.05048,-0.212555,-0.00337741,-0.582111,-2.39759,0,0.2,-0.132632,0
1713932643.695289003,-1.94987,-2.05048,-0.212555,-0.00886218,-0.59585,-2.41585,0,0.2,-0.0568421,0
1713932643.845553363,-1.94987,-2.05048,-0.212555,-0.0410684,-0.618983,-2.44927,0,0.2,-0.0568421,0
1713932643.995843961,-1.94987,-2.05048,-0.212555,-0.0623689,-0.631888,-2.46711,0,0.2,-0.0189474,0
1713932644.146222020,-1.94987,-2.05048,-0.212555,-0.073693,-0.640561,-2.47932,0,0.2,-0.0189474,0
1713932644.296686373,-1.94987,-2.05048,-0.212555,-0.106005,-0.668066,-2.49256,0,0.2,0,0
1713932644.447079301,-1.94987,-2.05048,-0.212555,-0.117375,-0.676899,-2.4972,0,0.2,0,0
1713932644.597431121,-1.94987,-2.05048,-0.212555,-0.15971,-0.703828,-2.50489,0,0.2,-0.0189474,0
1713932644.747689651,-1.94987,-2.05048,-0.212555,-0.171036,-0.712944,-2.50726,0,0.2,0.0568421,0
1713932644.898020481,-1.94987,-2.05048,-0.212555,-0.192807,-0.731263,-2.51264,0,0.2,0,0
1713932645.048286007,-1.94987,-2.05048,-0.212555,-0.224804,-0.748696,-2.5137,0,0.2,-0.0189474,0
1713932645.198559988,-1.94987,-2.05048,-0.212555,-0.246446,-0.76691,-2.5166,0,0.2,0.0189474,0
1713932645.348834843,-1.94987,-2.05048,-0.212555,-0.257708,-0.775781,-2.51779,0,0.2,0.0189474,0
1713932645.499121360,-1.94987,-2.05048,-0.212555,-0.289451,-0.793393,-2.51949,0,0.2,-0.0189474,0
1713932645.649441403,-1.94987,-2.05048,-0.212555,-0.311493,-0.811512,-2.51923,0,0.2,0,0
1713932645.799720340,-1.94987,-2.05048,-0.212555,-0.343272,-0.828977,-2.52154,0,0.2,0.0189474,0
1713932645.950006857,-1.94987,-2.05048,-0.212555,-0.365305,-0.847101,-2.52111,0,0.2,-0.0189474,0
1713932646.100288126,-1.94987,-2.05048,-0.212555,-0.387042,-0.865187,-2.52074,0,0.2,-0.0189474,0
1713932646.250553944,-1.94987,-2.05048,-0.212555,-0.408297,-0.873242,-2.52054,0,0.2,0.0189474,0
1713932646.400964946,-1.94987,-2.05048,-0.212555,-0.430105,-0.89147,-2.52211,0,0.2,0,0
1713932646.551319974,-1.94987,-2.05048,-0.212555,-0.449241,-0.90971,-2.52145,0,0.2,0.0189474,0
1713932646.701670337,-1.94987,-2.05048,-0.212555,-0.481018,-0.927028,-2.5206,0,0.2,-0.0189474,0
1713932646.852007872,-1.94987,-2.05048,-0.212555,-0.505933,-0.944961,-2.52038,0,0.2,0,0
1713932647.002336079,-1.94987,-2.05048,-0.212555,-0.517,-0.953964,-2.51995,0,0.2,-0.0189474,0
1713932647.152694313,-1.94987,-2.05048,-0.212555,-0.549099,-0.971507,-2.52022,0,0.2,0.0189474,0
1713932647.303055171,-1.94987,-2.05048,-0.212555,-0.570874,-0.989774,-2.51858,0,0.2,-0.0189474,0
1713932647.453402911,-1.94987,-2.05048,-0.212555,-0.599011,-1.00758,-2.51889,0,0.2,0.0568421,0
1713932647.603756481,-1.94987,-2.05048,-0.212555,-0.614781,-1.02657,-2.51823,0,0.2,0.0568421,0
1713932647.754102179,-1.94987,-2.05048,-0.212555,-0.636822,-1.04502,-2.51842,0,0.2,-0.0189474,0
1713932647.904457498,-1.94987,-2.05048,-0.212555,-0.665378,-1.05976,-2.51587,0,0.2,-0.0189474,0
1713932648.054821563,-1.94987,-2.05048,-0.212555,-0.680002,-1.07157,-2.51522,0,0.2,0,0
1713932648.205272798,-1.94987,-2.05048,-0.212555,-0.71185,-1.08901,-2.51194,0,0.2,0,0
1713932648.355626659,-1.94987,-2.05048,-0.212555,-0.733037,-1.09737,-2.51022,0,0.177778,0,0
1713932648.505972066,-1.94987,-2.05048,-0.212555,-0.76562,-1.12484,-2.50821,0,0.2,0.0189474,0
1713932648.656234677,-1.94987,-2.05048,-0.212555,-0.776908,-1.13375,-2.50735,0,0.177778,0.0189474,0
1713932648.806673084,-1.94987,-2.05048,-0.212555,-0.79869,-1.15196,-2.50644,0,0.2,0.0568421,0
1713932648.956958143,-1.94987,-2.05048,-0.212555,-0.826176,-1.16919,-2.5019,0,0.2,0,0
1713932649.107240870,-1.94987,-2.05048,-0.212555,-0.842293,-1.18784,-2.5002,0,0.2,0,0
1713932649.257508145,-1.94987,-2.05048,-0.212555,-0.874008,-1.20496,-2.49386,0,0.2,0.0189474,0
1713932649.407784166,-1.94987,-2.05048,-0.212555,-0.893332,-1.22131,-2.4933,0,0.2,0.0189474,0
1713932649.558054066,-1.94987,-2.05048,-0.212555,-0.916356,-1.2319,-2.49238,0,0.2,0,0
1713932649.708319009,-1.94987,-2.05048,-0.212555,-0.937901,-1.25042,-2.48964,0,0.177778,0,0
1713932649.858595322,-1.94987,-2.05048,-0.212555,-0.959355,-1.26892,-2.48755,0,0.2,0,0
1713932650.008888544,-1.94987,-2.05048,-0.212555,-0.980148,-1.27748,-2.4851,0,0.2,-0.0189474,0
1713932650.159162816,-1.94987,-2.05048,-0.212555,-1.00206,-1.30194,-2.48226,0,0.2,0.0189474,0
1713932650.309474988,-1.94987,-2.05048,-0.212555,-1.0233,-1.31414,-2.48384,0,0.2,0,0
1713932650.459782787,-1.94987,-2.05048,-0.212555,-1.04532,-1.33182,-2.48361,0,0.2,-0.0189474,0
1713932650.610110410,-1.94987,-2.05048,-0.212555,-1.06706,-1.35014,-2.48335,0,0.2,-0.0189474,0
1713932650.760380601,-1.94987,-2.05048,-0.212555,-1.08828,-1.35808,-2.48235,0,0.2,0,0
1713932650.910654290,-1.94987,-2.05048,-0.212555,-1.10997,-1.37623,-2.48327,0,0.2,-0.0189474,0
1713932651.060916318,-1.94987,-2.05048,-0.212555,-1.13158,-1.39524,-2.48401,0,0.2,0.0189474,0
1713932651.211186509,-1.94987,-2.05048,-0.212555,-1.1636,-1.42346,-2.48435,0,0.2,0,0
1713932651.361452910,-1.94987,-2.05048,-0.212555,-1.18436,-1.43202,-2.48445,0,0.2,-0.0189474,0
1713932651.511727473,-1.94987,-2.05048,-0.212555,-1.20298,-1.4507,-2.48786,0,0.2,0.0189474,0
1713932651.662009617,-1.94987,-2.05048,-0.212555,-1.22757,-1.46863,-2.48608,0,0.2,0,0
1713932651.812263191,-1.94987,-2.05048,-0.212555,-1.23842,-1.4777,-2.48763,0,0.2,-0.0189474,0
1713932651.962542419,-1.94987,-2.05048,-0.212555,-1.27031,-1.49496,-2.49028,0,0.2,0.0568421,0
1713932652.112859547,-1.94987,-2.05048,-0.212555,-1.29207,-1.51316,-2.49207,0,0.2,0.0189474,0
1713932652.263131195,-1.94987,-2.05048,-0.212555,-1.31461,-1.53023,-2.49112,0,0.2,0,0
1713932652.413504881,-1.94987,-2.05048,-0.212555,-1.337,-1.54742,-2.49058,0,0.177778,0,0
1713932652.563858451,-1.94987,-2.05048,-0.212555,-1.3607,-1.56329,-2.48962,0,0.2,0.0189474,0
1713932652.714228639,-1.94987,-2.05048,-0.212555,-1.38096,-1.57259,-2.48883,0,0.2,0.0568421,0
1713932652.864591829,-1.94987,-2.05048,-0.212555,-1.40227,-1.59225,-2.48622,0,0.2,0.0568421,0
1713932653.015052976,-1.94987,-2.05048,-0.212555,-1.42401,-1.6109,-2.48636,0,0.2,0.0189474,0
1713932653.165410627,-1.94987,-2.05048,-0.212555,-1.44575,-1.62922,-2.48219,0,0.2,0.0947368,0
1713932653.315760699,-1.94987,-2.05048,-0.212555,-1.47758,-1.64632,-2.47751,0,0.2,0.132632,0
1713932653.466107272,-1.94987,-2.05048,-0.212555,-1.49959,-1.66414,-2.47498,0,0.2,-0.0568421,0
1713932653.616449472,-1.94987,-2.05048,-0.212555,-1.52149,-1.68216,-2.46841,0,0.2,-0.0947368,0
1713932653.766788173,-1.94987,-2.05048,-0.212555,-1.54375,-1.69996,-2.46446,0,0.2,-0.0189474,0
1713932653.917060988,-1.94987,-2.05048,-0.212555,-1.56632,-1.71722,-2.46033,0,0.2,-0.0189474,0
1713932654.067329138,-1.94987,-2.05048,-0.212555,-1.58866,-1.73454,-2.45899,0,0.177778,0.0189474,0
1713932654.217592332,-1.94987,-2.05048,-0.212555,-1.61202,-1.75076,-2.45864,0,0.2,0.0568421,0
1713932654.367869520,-1.94987,-2.05048,-0.212555,-1.63448,-1.76821,-2.45706,0,0.2,-0.0189474,0
1713932654.518130381,-1.94987,-2.05048,-0.212555,-1.65571,-1.77631,-2.45536,0,0.177778,0.0568421,0
1713932654.668399114,-1.94987,-2.05048,-0.212555,-1.67713,-1.79518,-2.45951,0,0.155556,0.0189474,0
1713932654.818664349,-1.94987,-2.05048,-0.212555,-1.6986,-1.81412,-2.43529,0,0.177778,0.0568421,0
1713932654.968931624,-1.94987,-2.05048,-0.212555,-1.71545,-1.83305,-2.41042,0,0.155556,0,0
1713932655.119272950,-1.94987,-2.05048,-0.212555,-1.72996,-1.8426,-2.39125,0,0.155556,0,0
1713932655.269546931,-1.94987,-2.05048,-0.212555,-1.7503,-1.8621,-2.37118,0,0.133333,-0.0189474,0
1713932655.419832281,-1.94987,-2.05048,-0.212555,-1.76033,-1.87174,-2.35634,0,0.133333,-0.0189474,0
1713932655.570110052,-1.94987,-2.05048,-0.212555,-1.77991,-1.89228,-2.33397,0,0.111111,-0.0568421,0
1713932655.720360710,-1.94987,-2.05048,-0.212555,-1.78958,-1.90246,-2.31997,0,0.111111,-0.0568421,0
1713932655.870634982,-1.94987,-2.05048,-0.212555,-1.79924,-1.91082,-2.30929,0,0.111111,-0.0568421,0
1713932656.020917126,-1.94987,-2.05048,-0.212555,-1.80867,-1.92033,-2.30072,0,0.111111,-0.0568421,0

View File

@ -1,911 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713933301.690160159,1.54995,0.507101,3.06359,0.0023379,0.0135635,-0.000120795,0,0.2,0.284211,0
1713933301.840548422,1.54995,0.507101,3.06359,0.0178082,0.012987,0.0295097,0,0.2,0.246316,0
1713933301.990901991,1.54995,0.507101,3.06359,0.0326928,0.0126256,0.0505671,0,0.2,0.208421,0
1713933302.141237195,1.54995,0.507101,3.06359,0.0528034,0.0119817,0.0829022,0,0.2,0.208421,0
1713933302.291581727,1.54995,0.507101,3.06359,0.0841358,0.0107995,0.114058,0,0.2,0.170526,0
1713933302.441917513,1.54995,0.507101,3.06359,0.106388,0.0199201,0.142129,0,0.2,0.0947368,0
1713933302.592264378,1.54995,0.507101,3.06359,0.137464,0.0186932,0.176523,0,0.2,0.132632,0
1713933302.742635148,1.54995,0.507101,3.06359,0.169842,0.0274974,0.201521,0,0.2,0.0947368,0
1713933302.892845574,1.54995,0.507101,3.06359,0.190877,0.0268538,0.223037,0,0.2,0.0947368,0
1713933303.043185734,1.54995,0.507101,3.06359,0.222711,0.0363194,0.244883,0,0.2,0.0568421,0
1713933303.193532307,1.54995,0.507101,3.06359,0.250476,0.0459319,0.266015,0,0.2,0.0189474,0
1713933303.343878880,1.54995,0.507101,3.06359,0.275127,0.0559279,0.28198,0,0.2,0.0568421,0
1713933303.494215249,1.54995,0.507101,3.06359,0.305926,0.0557972,0.292471,0,0.2,0.0568421,0
1713933303.644505847,1.54995,0.507101,3.06359,0.336574,0.0657886,0.300143,0,0.2,0.0568421,0
1713933303.794757088,1.54995,0.507101,3.06359,0.358084,0.0758362,0.308511,0,0.2,0,0
1713933303.945006580,1.54995,0.507101,3.06359,0.388789,0.0857384,0.314695,0,0.2,-0.0189474,0
1713933304.095264235,1.54995,0.507101,3.06359,0.410189,0.0957864,0.322588,0,0.2,0,0
1713933304.245522473,1.54995,0.507101,3.06359,0.451543,0.106144,0.326737,0,0.2,0.0189474,0
1713933304.395782751,1.54995,0.507101,3.06359,0.482179,0.116203,0.329213,0,0.2,0.0568421,0
1713933304.546077140,1.54995,0.507101,3.06359,0.492857,0.126375,0.330295,0,0.2,0,0
1713933304.696361907,1.54995,0.507101,3.06359,0.53411,0.136394,0.334085,0,0.2,-0.0189474,0
1713933304.846633264,1.54995,0.507101,3.06359,0.560836,0.146471,0.336487,0,0.2,0.0189474,0
1713933304.996899082,1.54995,0.507101,3.06359,0.596155,0.156567,0.337086,0,0.2,0.0189474,0
1713933305.147165191,1.54995,0.507101,3.06359,0.617421,0.166555,0.340166,0,0.2,0.0189474,0
1713933305.297429260,1.54995,0.507101,3.06359,0.638045,0.176436,0.340784,0,0.2,-0.0189474,0
1713933305.447701491,1.54995,0.507101,3.06359,0.659173,0.186368,0.343601,0,0.2,-0.0189474,0
1713933305.597981886,1.54995,0.507101,3.06359,0.699703,0.196312,0.346138,0,0.2,-0.0189474,0
1713933305.748249453,1.54995,0.507101,3.06359,0.730541,0.206647,0.347461,0,0.2,0,0
1713933305.898512938,1.54995,0.507101,3.06359,0.751082,0.216807,0.34803,0,0.2,0,0
1713933306.048784295,1.54995,0.507101,3.06359,0.782058,0.227109,0.348089,0,0.2,-0.0189474,0
1713933306.199044574,1.54995,0.507101,3.06359,0.80255,0.237172,0.349119,0,0.2,-0.0189474,0
1713933306.349312432,1.54995,0.507101,3.06359,0.833367,0.247452,0.349503,0,0.2,0.0189474,0
1713933306.499595742,1.54995,0.507101,3.06359,0.863804,0.257664,0.34878,0,0.2,0.0189474,0
1713933306.649853688,1.54995,0.507101,3.06359,0.890498,0.268519,0.348607,0,0.2,-0.0189474,0
1713933306.800126503,1.54995,0.507101,3.06359,0.920398,0.278727,0.349707,0,0.2,-0.0189474,0
1713933306.950382992,1.54995,0.507101,3.06359,0.945655,0.289189,0.347745,0,0.2,-0.0189474,0
1713933307.100641812,1.54995,0.507101,3.06359,0.971901,0.299332,0.348105,0,0.2,-0.0189474,0
1713933307.251006752,1.54995,0.507101,3.06359,0.996751,0.309641,0.349353,0,0.2,-0.0189474,0
1713933307.401358281,1.54995,0.507101,3.06359,1.02425,0.319945,0.348394,0,0.177778,-0.0189474,0
1713933307.551813889,1.54995,0.507101,3.06359,1.05772,0.33056,0.348242,0,0.2,-0.0189474,0
1713933307.702260167,1.54995,0.507101,3.06359,1.07799,0.340827,0.34779,0,0.177778,0,0
1713933307.852708194,1.54995,0.507101,3.06359,1.10852,0.351884,0.346314,0,0.2,-0.0947368,0
1713933308.003046896,1.54995,0.507101,3.06359,1.12863,0.362256,0.348029,0,0.2,-0.0947368,0
1713933308.153286476,1.54995,0.507101,3.06359,1.15902,0.368494,0.342983,0,0.2,0.0189474,0
1713933308.303642669,1.54995,0.507101,3.06359,1.18916,0.383568,0.336641,0,0.177778,0.0568421,0
1713933308.453997697,1.54995,0.507101,3.06359,1.21785,0.392389,0.33445,0,0.177778,0.0189474,0
1713933308.604369050,1.54995,0.507101,3.06359,1.23973,0.394779,0.333609,0,0.155556,0.0189474,0
1713933308.754819993,1.54995,0.507101,3.06359,1.25976,0.405373,0.334617,0,0.155556,0.0189474,0
1713933308.905204466,1.54995,0.507101,3.06359,1.27977,0.415748,0.333706,0,0.133333,0.0568421,0
1713933309.055527425,1.54995,0.507101,3.06359,1.29996,0.426506,0.331831,0,0.133333,0,0
1713933309.205876913,1.54995,0.507101,3.06359,1.33004,0.426782,0.331617,0,0.111111,0,0
1713933309.356268091,1.54995,0.507101,3.06359,1.34615,0.437275,0.33172,0,0.111111,-0.0189474,0
1713933309.506626326,1.54995,0.507101,3.06359,1.3667,0.447505,0.334499,0,0.0888889,0.0189474,0
1713933309.656983685,1.54995,0.507101,3.06359,1.38118,0.447814,0.336472,0,0.0888889,-0.0568421,0
1713933309.807329675,1.54995,0.507101,3.06359,1.39122,0.458091,0.335653,0,0.0888889,-0.0189474,0
1713933309.957683828,1.54995,0.507101,3.06359,1.41138,0.458692,0.336788,0,0,0.5,0
1713933310.107969179,1.54995,0.507101,3.06359,1.42137,0.469028,0.336258,0,0,0.5,0
1713933310.258247533,1.54995,0.507101,3.06359,1.43183,0.469086,0.351689,0,0,0.5,0
1713933310.408516266,1.54995,0.507101,3.06359,1.43207,0.46932,0.380756,0,0,0.5,0
1713933310.558798410,1.54995,0.507101,3.06359,1.44263,0.469544,0.420533,0,0,0.5,0
1713933310.709062770,1.54995,0.507101,3.06359,1.44294,0.479865,0.472746,0,0,0.5,0
1713933310.863600748,1.54995,0.507101,3.06359,1.45462,0.479796,0.51547,0,0,0.5,0
1713933311.013909130,1.54995,0.507101,3.06359,1.4554,0.479787,0.554762,0,0,0.5,0
1713933311.164188067,1.54995,0.507101,3.06359,1.45714,0.480183,0.65259,0,0,0.5,0
1713933311.314469919,1.54995,0.507101,3.06359,1.45788,0.480492,0.70599,0,0,0.5,0
1713933311.464730780,1.54995,0.507101,3.06359,1.45911,0.481485,0.769335,0,0,0.5,0
1713933311.615003887,1.54995,0.507101,3.06359,1.45941,0.482055,0.855734,0,0,0.5,0
1713933311.765278159,1.54995,0.507101,3.06359,1.45999,0.482948,0.928537,0,0,0.5,0
1713933311.915574296,1.54995,0.507101,3.06359,1.46057,0.493342,0.981278,0,0,0.5,0
1713933312.065842446,1.54995,0.507101,3.06359,1.47133,0.493849,1.07191,0,0,0.5,0
1713933312.216155784,1.54995,0.507101,3.06359,1.47165,0.494133,1.11626,0,0,0.5,0
1713933312.366432680,1.54995,0.507101,3.06359,1.47244,0.494632,1.19343,0,0,0.5,0
1713933312.516707244,1.54995,0.507101,3.06359,1.47295,0.494994,1.26077,0,0,0.5,0
1713933312.666961984,1.54995,0.507101,3.06359,1.47424,0.495513,1.356,0,0,0.5,0
1713933312.817233049,1.54995,0.507101,3.06359,1.47486,0.495742,1.4104,0,0,0.5,0
1713933312.967507321,1.54995,0.507101,3.06359,1.47572,0.496265,1.49021,0,0,0.5,0
1713933313.117775471,1.54995,0.507101,3.06359,1.47564,0.496415,1.5629,0,0,0.5,0
1713933313.268049452,1.54995,0.507101,3.06359,1.47635,0.496902,1.62645,0,0,0.5,0
1713933313.418331304,1.54995,0.507101,3.06359,1.4769,0.497062,1.68557,0,0,0.5,0
1713933313.568608784,1.54995,0.507101,3.06359,1.47799,0.497529,1.78131,0,0,0.5,0
1713933313.718890344,1.54995,0.507101,3.06359,1.47859,0.497771,1.83785,0,0,0.5,0
1713933313.869149165,1.54995,0.507101,3.06359,1.47995,0.498582,1.91852,0,0,0.5,0
1713933314.019431892,1.54995,0.507101,3.06359,1.47989,0.498981,1.98321,0,0,0.5,0
1713933314.169703540,1.54995,0.507101,3.06359,1.47978,0.499776,2.05152,0,0,0.5,0
1713933314.319988016,1.54995,0.507101,3.06359,1.47967,0.500153,2.13035,0,0,0.5,0
1713933314.470266079,1.54995,0.507101,3.06359,1.47987,0.500908,2.18481,0,0,0.5,0
1713933314.620537727,1.54995,0.507101,3.06359,1.48034,0.501157,2.27391,0,0,0.5,0
1713933314.770796548,1.54995,0.507101,3.06359,1.48195,0.501735,2.33304,0,0,0.5,0
1713933314.921063823,1.54995,0.507101,3.06359,1.48308,0.502101,2.42968,0,0,0.5,0
1713933315.071341011,1.54995,0.507101,3.06359,1.48481,0.502917,2.4923,0,0,0.5,0
1713933315.221612660,1.54995,0.507101,3.06359,1.48467,0.503173,2.55621,0,0,0.5,0
1713933315.371868565,1.54995,0.507101,3.06359,1.48529,0.503622,2.62449,0,0,0.5,0
1713933315.522230881,1.54995,0.507101,3.06359,1.48512,0.503779,2.6777,0,0,0.5,0
1713933315.672513608,1.54995,0.507101,3.06359,1.48485,0.50447,2.76883,0,0,0.5,0
1713933315.822826071,1.54995,0.507101,3.06359,1.48457,0.504647,2.83244,0,0,0,0
1713933316.846597648,1.2515,0.52522,3.0145,1.46941,0.507171,3,0,0.111111,0.0189474,0.96875
1713933317.708452485,0.952326,0.543165,2.96541,1.40612,0.510053,3.04271,0,0.2,0,0.96875
1713933318.645735702,0.651735,0.531519,2.98331,1.25281,0.522682,3.08136,0,0.2,0.0189474,0.988609
1713933319.613657543,0.35045,0.558906,2.96542,1.06967,0.534407,3.10132,0,0.2,0,0.98861
1713933320.559070809,0.0525812,0.532282,2.93421,0.890704,0.545936,3.10989,0,0.2,0.0568421,0.980137
1713933321.539711176,-0.249651,0.530171,2.9833,0.694174,0.548693,3.1302,0,0.2,0.0189474,0.96875
1713933322.453663103,-0.549165,0.513083,2.98331,0.522077,0.550957,-3.13632,0,0.2,0,0.999997
1713933322.603924548,-0.549165,0.513083,2.98331,0.491887,0.550984,-3.13567,0,0.2,0,0.999997
1713933322.754197362,-0.549165,0.513083,2.98331,0.461393,0.551082,-3.13243,0,0.2,0,0.999997
1713933322.904453560,-0.549165,0.513083,2.98331,0.431234,0.550051,-3.13066,0,0.2,0,0.999997
1713933323.835579548,-0.848678,0.495993,2.9833,0.249188,0.548891,-3.1243,0,0.2,0,0.999993
1713933323.985827582,-0.848678,0.495993,2.9833,0.22198,0.548787,-3.12476,0,0.2,0,0.999993
1713933324.136103604,-0.848678,0.495993,2.9833,0.193027,0.54854,-3.12406,0,0.2,0,0.999993
1713933324.286374669,-0.848678,0.495993,2.9833,0.168489,0.548365,-3.12524,0,0.2,-0.0189474,0.999993
1713933324.436654480,-0.848678,0.495993,2.9833,0.148207,0.538212,-3.12634,0,0.2,-0.0189474,0.999993
1713933325.447395589,-1.19453,0.497424,3.40323,-0.0436362,0.539893,-3.1343,0,0.2,0,0.73266
1713933325.597807175,-1.19453,0.497424,3.40323,-0.0638209,0.539999,-3.13535,0,0.2,0,0.73266
1713933325.748157829,-1.19453,0.497424,3.40323,-0.104141,0.540452,-3.13808,0,0.2,0,0.73266
1713933325.898496239,-1.19453,0.497424,3.40323,-0.134274,0.540782,-3.13826,0,0.2,0,0.73266
1713933326.048834649,-1.19453,0.497424,3.40323,-0.154572,0.541133,-3.14055,0,0.2,0,0.73266
1713933326.199182097,-1.19453,0.497424,3.40323,-0.194702,0.541224,3.14053,0,0.2,0,0.73266
1713933326.349535084,-1.19453,0.497424,3.40323,-0.224969,0.540986,3.14147,0,0.2,0,0.73266
1713933326.499878742,-1.19453,0.497424,3.40323,-0.251028,0.540526,3.14032,0,0.2,0,0.73266
1713933326.650254760,-1.19453,0.497424,3.40323,-0.285392,0.54003,3.13979,0,0.2,0,0.73266
1713933326.800527866,-1.19453,0.497424,3.40323,-0.312459,0.539833,3.14045,0,0.2,0,0.73266
1713933326.950789311,-1.19453,0.497424,3.40323,-0.342683,0.539712,3.14056,0,0.2,0,0.73266
1713933327.101050755,-1.19453,0.497424,3.40323,-0.365981,0.539654,3.14079,0,0.2,0,0.73266
1713933327.251313075,-1.19453,0.497424,3.40323,-0.396182,0.539254,3.14056,0,0.2,0,0.73266
1713933327.401573645,-1.19453,0.497424,3.40323,-0.426298,0.538946,3.14122,0,0.2,0,0.73266
1713933327.551860162,-1.19453,0.497424,3.40323,-0.456348,0.538015,3.14028,0,0.2,0.0568421,0.73266
1713933327.702124522,-1.19453,0.497424,3.40323,-0.476395,0.537796,-3.14062,0,0.2,0.0568421,0.73266
1713933328.579788159,-1.49366,0.341406,3.44695,-0.64725,0.534991,-3.11135,0,0.2,0.0568421,0.97217
1713933329.502188492,-1.58938,0.337848,3.67052,-0.827784,0.513737,-3.04965,0,0.2,0.0947368,0.857672
1713933330.442616501,-1.79071,0.169043,3.9106,-0.998466,0.491732,-2.97532,0,0.2,0.208421,0.847159
1713933330.592902435,-1.79071,0.169043,3.9106,-1.03853,0.481929,-2.95257,0,0.2,0.208421,0.847159
1713933331.491570326,-1.82114,-0.149269,0.934115,-1.20483,0.429739,-2.80959,0,0.2,0.322105,0
1713933331.641839351,-1.82114,-0.149269,0.934115,-1.22927,0.42975,-2.78433,0,0.2,0.284211,0
1713933331.792104585,-1.82114,-0.149269,0.934115,-1.24958,0.419681,-2.75165,0,0.2,0.284211,0
1713933331.942379149,-1.82114,-0.149269,0.934115,-1.28032,0.400555,-2.70533,0,0.2,0.284211,0
1713933332.092630973,-1.82114,-0.149269,0.934115,-1.31073,0.391626,-2.65729,0,0.2,0.208421,0
1713933332.242893001,-1.82114,-0.149269,0.934115,-1.33172,0.372958,-2.62239,0,0.2,0.284211,0
1713933332.393145408,-1.82114,-0.149269,0.934115,-1.36214,0.364201,-2.58515,0,0.2,0.208421,0
1713933332.543452332,-1.82114,-0.149269,0.934115,-1.38281,0.345564,-2.54667,0,0.2,0.0947368,0
1713933332.693709404,-1.82114,-0.149269,0.934115,-1.40323,0.336549,-2.51145,0,0.2,0.208421,0
1713933332.843993880,-1.82114,-0.149269,0.934115,-1.43387,0.317962,-2.48161,0,0.2,0.170526,0
1713933332.994260281,-1.82114,-0.149269,0.934115,-1.45434,0.298764,-2.46074,0,0.2,0.246316,0
1713933333.144526682,-1.82114,-0.149269,0.934115,-1.482,0.279833,-2.4286,0,0.2,0.170526,0
1713933333.294843227,-1.82114,-0.149269,0.934115,-1.49562,0.26015,-2.40552,0,0.2,0.246316,0
1713933333.445107004,-1.82114,-0.149269,0.934115,-1.51607,0.240162,-2.38436,0,0.2,0.246316,0
1713933333.595369323,-1.82114,-0.149269,0.934115,-1.53627,0.229899,-2.3609,0,0.177778,0.170526,0
1713933333.745640388,-1.82114,-0.149269,0.934115,-1.55711,0.199205,-2.32952,0,0.2,0.0189474,0
1713933333.895942940,-1.82114,-0.149269,0.934115,-1.57774,0.179384,-2.29333,0,0.2,0.0568421,0
1713933334.046218378,-1.82114,-0.149269,0.934115,-1.59822,0.150738,-2.26393,0,0.155556,0.132632,0
1713933334.196505478,-1.82114,-0.149269,0.934115,-1.60844,0.138222,-2.25174,0,0.155556,0.208421,0
1713933334.346856715,-1.82114,-0.149269,0.934115,-1.62895,0.10778,-2.23438,0,0.155556,-0.0568421,0
1713933334.497207079,-1.82114,-0.149269,0.934115,-1.63922,0.0975184,-2.22593,0,0.155556,-0.0568421,0
1713933334.647559191,-1.82114,-0.149269,0.934115,-1.65972,0.0772944,-2.214,0,0.133333,-0.0568421,0
1713933334.798013340,-1.82114,-0.149269,0.934115,-1.67002,0.0572737,-2.20894,0,0.133333,-0.0189474,0
1713933334.948373033,-1.82114,-0.149269,0.934115,-1.68012,0.0463848,-2.20567,0,0.111111,-0.0568421,0
1713933335.098824267,-1.82114,-0.149269,0.934115,-1.69003,0.0359164,-2.20942,0,0.111111,-0.0568421,0
1713933335.249276376,-1.82114,-0.149269,0.934115,-1.70684,0.0146788,-2.20658,0,0.0888889,-0.0568421,0
1713933335.399633444,-1.82114,-0.149269,0.934115,-1.71572,0.0043534,-2.20747,0,0.0888889,-0.0568421,0
1713933335.550003923,-1.82114,-0.149269,0.934115,-1.71983,-0.0167058,-2.20744,0,0.0888889,0,0
1713933335.700339418,-1.82114,-0.149269,0.934115,-1.72982,-0.0273509,-2.2089,0,0,-0.5,0
1713933335.850675496,-1.82114,-0.149269,0.934115,-1.73957,-0.0286052,-2.21014,0,0,-0.5,0
1713933336.001048015,-1.82114,-0.149269,0.934115,-1.7495,-0.0393404,-2.22839,0,0,-0.5,0
1713933336.151531610,-1.82114,-0.149269,0.934115,-1.74914,-0.0504197,-2.24935,0,0,-0.5,0
1713933336.302008791,-1.82114,-0.149269,0.934115,-1.74917,-0.0506218,-2.28087,0,0,-0.5,0
1713933336.452379853,-1.82114,-0.149269,0.934115,-1.74942,-0.0514401,-2.31079,0,0,-0.5,0
1713933336.602727009,-1.82114,-0.149269,0.934115,-1.75949,-0.052438,-2.36292,0,0,-0.5,0
1713933336.752954636,-1.82114,-0.149269,0.934115,-1.75886,-0.0620031,-2.42174,0,0,-0.5,0
1713933336.903303250,-1.82114,-0.149269,0.934115,-1.7589,-0.0618243,-2.50873,0,0,-0.5,0
1713933337.053599096,-1.82114,-0.149269,0.934115,-1.75884,-0.0614167,-2.59051,0,0,-0.5,0
1713933337.203883863,-1.82114,-0.149269,0.934115,-1.7588,-0.0612761,-2.64366,0,0,-0.5,0
1713933337.354156678,-1.82114,-0.149269,0.934115,-1.75841,-0.0619117,-2.70913,0,0,-0.5,0
1713933337.504423079,-1.82114,-0.149269,0.934115,-1.75815,-0.0625252,-2.78927,0,0,-0.5,0
1713933337.654685106,-1.82114,-0.149269,0.934115,-1.75771,-0.0635863,-2.85703,0,0,-0.5,0
1713933337.804962002,-1.82114,-0.149269,0.934115,-1.7575,-0.0639852,-2.92963,0,0,-0.5,0
1713933337.955234817,-1.82114,-0.149269,0.934115,-1.75715,-0.0648292,-3.01083,0,0,-0.5,0
1713933338.105502967,-1.82114,-0.149269,0.934115,-1.75717,-0.0649881,-3.06378,0,0,-0.5,0
1713933338.255764995,-1.82114,-0.149269,0.934115,-1.75724,-0.0648202,3.11651,0,0,-0.5,0
1713933338.406047430,-1.82114,-0.149269,0.934115,-1.75738,-0.0645898,3.0768,0,0,-0.5,0
1713933338.556332781,-1.82114,-0.149269,0.934115,-1.75774,-0.0637031,3.01422,0,0,-0.5,0
1713933338.706613758,-1.82114,-0.149269,0.934115,-1.75782,-0.0634299,2.93952,0,0,-0.5,0
1713933338.856878410,-1.82114,-0.149269,0.934115,-1.7575,-0.0636716,2.85676,0,0,-0.5,0
1713933339.007146852,-1.82114,-0.149269,0.934115,-1.75725,-0.0639403,2.79505,0,0,-0.5,0
1713933339.157420541,-1.82114,-0.149269,0.934115,-1.75689,-0.0644939,2.69566,0,0,-0.5,0
1713933339.307688399,-1.82114,-0.149269,0.934115,-1.75677,-0.0647749,2.6348,0,0,-0.5,0
1713933339.457993866,-1.82114,-0.149269,0.934115,-1.75663,-0.0649521,2.55805,0,0,-0.5,0
1713933339.608269887,-1.82114,-0.149269,0.934115,-1.75648,-0.0650999,2.50437,0,0,-0.5,0
1713933339.758535705,-1.82114,-0.149269,0.934115,-1.75617,-0.0650943,2.40915,0,0,-0.5,0
1713933339.908801231,-1.82114,-0.149269,0.934115,-1.75604,-0.0651601,2.35294,0,0,-0.5,0
1713933340.059068507,-1.82114,-0.149269,0.934115,-1.75559,-0.0655325,2.27807,0,0,-0.5,0
1713933340.209346569,-1.82114,-0.149269,0.934115,-1.75542,-0.0656376,2.21318,0,0,-0.5,0
1713933340.359611512,-1.82114,-0.149269,0.934115,-1.75491,-0.0657809,2.14514,0,0,-0.5,0
1713933340.509875581,-1.82114,-0.149269,0.934115,-1.75479,-0.065716,2.07841,0,0,-0.5,0
1713933340.660166179,-1.82114,-0.149269,0.934115,-1.75451,-0.0659451,2.0113,0,0,-0.5,0
1713933340.810439577,-1.82114,-0.149269,0.934115,-1.7545,-0.0659132,1.93716,0,0,-0.5,0
1713933340.960712100,-1.82114,-0.149269,0.934115,-1.75425,-0.0659217,1.84428,0,0,-0.5,0
1713933341.110980833,-1.82114,-0.149269,0.934115,-1.75403,-0.0657976,1.81858,0,0,-0.5,0
1713933341.261238196,-1.82114,-0.149269,0.934115,-1.75362,-0.0657798,1.72882,0,0,-0.5,0
1713933341.411507804,-1.82114,-0.149269,0.934115,-1.75353,-0.0656682,1.63014,0,0,-0.5,0
1713933341.561782951,-1.82114,-0.149269,0.934115,-1.75331,-0.0657056,1.56294,0,0,-0.5,0
1713933341.712057515,-1.82114,-0.149269,0.934115,-1.75313,-0.0660268,1.51752,0,0,-0.5,0
1713933341.862318959,-1.82114,-0.149269,0.934115,-1.75279,-0.0663609,1.43223,0,0,-0.5,0
1713933342.012595564,-1.82114,-0.149269,0.934115,-1.75258,-0.0668024,1.34931,0,0,-0.5,0
1713933342.162883247,-1.82114,-0.149269,0.934115,-1.75222,-0.0676025,1.30147,0,0,-0.5,0
1713933342.313189296,-1.82114,-0.149269,0.934115,-1.75213,-0.0676162,1.20272,0,0,-0.5,0
1713933342.463446951,-1.82114,-0.149269,0.934115,-1.75208,-0.0673576,1.13485,0,0,0,0
1713933343.348584391,-1.6541,-0.00858216,0.448646,-1.74956,-0.0710272,0.978861,0,0,-0.5,0.690941
1713933344.265189291,-1.42032,0.0985834,0.087152,-1.74805,-0.0716289,0.656585,0,0.177778,-0.322105,0.769866
1713933345.229778591,-1.12709,0.129541,0.0380545,-1.64085,-0.0159058,0.428855,0,0.2,-0.170526,0.968744
1713933346.066451180,-0.85039,0.234743,-0.256465,-1.49567,0.0461125,0.306553,0,0.2,-0.0568421,0.812503
1713933346.852657819,-0.550877,0.251831,-0.256465,-1.35683,0.0665366,0.250068,0,0.2,-0.0189474,1
1713933347.651686770,-0.251364,0.26892,-0.25646,-1.20839,0.104864,0.247911,0,0.2,-0.132632,0.999997
1713933348.400913013,0.0481485,0.286009,-0.256465,-1.07425,0.13657,0.205422,0,0.2,-0.170526,0.999997
1713933348.551167461,0.0481485,0.286009,-0.256465,-1.03987,0.139761,0.189617,0,0.2,-0.0947368,0.999997
1713933348.701437652,0.0481485,0.286009,-0.256465,-1.00992,0.142766,0.164143,0,0.2,-0.0947368,0.999997
1713933348.851739037,0.0481485,0.286009,-0.256465,-0.989849,0.144276,0.150294,0,0.2,-0.0947368,0.999997
1713933349.002062287,0.0481485,0.286009,-0.256465,-0.960812,0.15668,0.133453,0,0.2,-0.0947368,0.999997
1713933349.152331895,0.0481485,0.286009,-0.256465,-0.930747,0.158839,0.11727,0,0.2,-0.0947368,0.999997
1713933349.856261403,0.347662,0.303098,-0.256465,-0.800378,0.168062,0.0774282,0,0.2,-0.0568421,1
1713933350.006412356,0.347662,0.303098,-0.256465,-0.7702,0.170137,0.0693772,0,0.2,-0.0568421,1
1713933350.156557770,0.347662,0.303098,-0.256465,-0.739819,0.171775,0.0622804,0,0.2,-0.0568421,1
1713933350.306706099,0.347662,0.303098,-0.256465,-0.70902,0.16608,0.0545254,0,0.2,-0.0189474,1
1713933350.456853845,0.347662,0.303098,-0.256465,-0.68845,0.164999,0.048186,0,0.2,-0.0189474,1
1713933350.607001591,0.347662,0.303098,-0.256465,-0.658373,0.167138,0.0397452,0,0.2,0.0189474,1
1713933350.757140007,0.347662,0.303098,-0.256465,-0.628254,0.169083,0.0336759,0,0.2,0.0189474,1
1713933351.501328810,0.649157,0.305092,-0.207377,-0.481152,0.168313,0.0232496,0,0.2,0.0947368,0.96875
1713933351.651582967,0.649157,0.305092,-0.207377,-0.447299,0.17031,0.0251115,0,0.2,0.0568421,0.96875
1713933351.801865694,0.649157,0.305092,-0.207377,-0.427185,0.171344,0.0318678,0,0.2,0.0568421,0.96875
1713933351.952118684,0.649157,0.305092,-0.207377,-0.391441,0.173278,0.0405933,0,0.2,0.0568421,0.96875
1713933352.102419194,0.649157,0.305092,-0.207377,-0.366892,0.174806,0.0465656,0,0.2,0.0189474,0.96875
1713933352.252666645,0.649157,0.305092,-0.207377,-0.336848,0.176364,0.0560678,0,0.2,-0.0189474,0.96875
1713933352.402946457,0.649157,0.305092,-0.207377,-0.29967,0.179049,0.0672765,0,0.2,-0.0189474,0.96875
1713933353.215067097,0.94867,0.32218,-0.207373,-0.156714,0.17857,0.0886227,0,0.2,-0.0189474,0.999997
1713933353.365347492,0.94867,0.32218,-0.207373,-0.126771,0.181228,0.089673,0,0.2,-0.0189474,0.999997
1713933353.515662288,0.94867,0.32218,-0.207373,-0.0968582,0.183881,0.0879197,0,0.2,-0.0189474,0.999997
1713933353.665945306,0.94867,0.32218,-0.207373,-0.0671272,0.18641,0.0865604,0,0.2,-0.0189474,0.999997
1713933353.816234738,0.94867,0.32218,-0.207373,-0.0373924,0.189175,0.0842824,0,0.2,-0.0189474,0.999997
1713933354.615332491,1.25088,0.308568,5.85223,0.102225,0.200704,0.0706719,0,0.2,-0.0189474,0
1713933354.765475572,1.25088,0.308568,5.85223,0.122921,0.202156,0.0706153,0,0.2,-0.0189474,0
1713933354.915616030,1.25088,0.308568,5.85223,0.162778,0.205634,0.0676139,0,0.2,-0.0189474,0
1713933355.065756196,1.25088,0.308568,5.85223,0.183132,0.206957,0.0669222,0,0.2,-0.0568421,0
1713933355.215895779,1.25088,0.308568,5.85223,0.213589,0.209441,0.0668173,0,0.2,-0.0568421,0
1713933355.366044982,1.25088,0.308568,5.85223,0.244287,0.211713,0.0636016,0,0.2,-0.0568421,0
1713933355.516217800,1.25088,0.308568,5.85223,0.274302,0.214264,0.0585099,0,0.2,-0.0568421,0
1713933355.666348346,1.25088,0.308568,5.85223,0.294583,0.215766,0.056734,0,0.2,-0.0189474,0
1713933355.816494925,1.25088,0.308568,5.85223,0.315514,0.207567,0.0497465,0,0.2,-0.0189474,0
1713933355.966637424,1.25088,0.308568,5.85223,0.345711,0.210347,0.0509792,0,0.2,0.0189474,0
1713933356.116782254,1.25088,0.308568,5.85223,0.375813,0.213098,0.049885,0,0.2,0.0189474,0
1713933356.266920088,1.25088,0.308568,5.85223,0.405774,0.215798,0.0502171,0,0.2,0,0
1713933356.417065210,1.25088,0.308568,5.85223,0.435967,0.218405,0.0516111,0,0.2,0,0
1713933356.567209749,1.25088,0.308568,5.85223,0.456114,0.220198,0.0505099,0,0.2,0,0
1713933356.717362159,1.25088,0.308568,5.85223,0.494927,0.223623,0.0493422,0,0.2,0,0
1713933356.867504949,1.25088,0.308568,5.85223,0.516409,0.225489,0.0473953,0,0.2,0.0189474,0
1713933357.017648031,1.25088,0.308568,5.85223,0.537422,0.217236,0.0481881,0,0.2,0.0568421,0
1713933357.167791695,1.25088,0.308568,5.85223,0.572903,0.220698,0.0474438,0,0.2,0.0568421,0
1713933357.317935359,1.25088,0.308568,5.85223,0.607297,0.223963,0.0473634,0,0.2,0.0568421,0
1713933357.468075525,1.25088,0.308568,5.85223,0.627514,0.225626,0.0508114,0,0.2,0.0568421,0
1713933357.618219773,1.25088,0.308568,5.85223,0.657654,0.228295,0.0548012,0,0.2,0.0568421,0
1713933357.768389384,1.25088,0.308568,5.85223,0.693919,0.231654,0.0587888,0,0.2,0.0568421,0
1713933357.918537130,1.25088,0.308568,5.85223,0.718315,0.23363,0.0634748,0,0.2,0.0189474,0
1713933358.068692164,1.25088,0.308568,5.85223,0.738691,0.23581,0.0693795,0,0.2,0.0189474,0
1713933358.218839327,1.25088,0.308568,5.85223,0.779194,0.239721,0.0760158,0,0.2,0.0189474,0
1713933358.368982700,1.25088,0.308568,5.85223,0.80935,0.242487,0.0822853,0,0.2,0,0
1713933358.519123449,1.25088,0.308568,5.85223,0.839626,0.245609,0.0887929,0,0.2,0.0947368,0
1713933358.669288395,1.25088,0.308568,5.85223,0.860661,0.237814,0.094737,0,0.2,0.0947368,0
1713933358.819582492,1.25088,0.308568,5.85223,0.890956,0.241353,0.0995983,0,0.177778,0.0947368,0
1713933358.969843645,1.25088,0.308568,5.85223,0.919982,0.254479,0.106502,0,0.177778,0.0568421,0
1713933359.120115002,1.25088,0.308568,5.85223,0.947198,0.257537,0.115793,0,0.155556,0.0568421,0
1713933359.270376155,1.25088,0.308568,5.85223,0.969962,0.260042,0.121689,0,0.155556,0.0189474,0
1713933359.420665879,1.25088,0.308568,5.85223,0.999698,0.263179,0.129037,0,0.133333,0.0189474,0
1713933359.570982716,1.25088,0.308568,5.85223,1.01979,0.265647,0.13549,0,0.133333,0.0189474,0
1713933359.721252032,1.25088,0.308568,5.85223,1.04019,0.268148,0.140074,0,0.111111,0.0189474,0
1713933359.871525721,1.25088,0.308568,5.85223,1.06018,0.270335,0.146035,0,0.111111,0,0
1713933360.021837601,1.25088,0.308568,5.85223,1.08034,0.272829,0.150429,0,0.111111,0.0568421,0
1713933360.172171930,1.25088,0.308568,5.85223,1.1003,0.275197,0.15442,0,0,-0.5,0
1713933360.322489641,1.25088,0.308568,5.85223,1.1203,0.27781,0.159419,0,0,-0.5,0
1713933360.472779948,1.25088,0.308568,5.85223,1.12031,0.278098,0.154964,0,0,-0.5,0
1713933360.623019819,1.25088,0.308568,5.85223,1.13036,0.279958,0.115989,0,0,-0.5,0
1713933360.773289718,1.25088,0.308568,5.85223,1.1404,0.281425,0.0659509,0,0,-0.5,0
1713933360.923548247,1.25088,0.308568,5.85223,1.13989,0.281909,0.0226219,0,0,-0.5,0
1713933361.073811733,1.25088,0.308568,5.85223,1.13957,0.282187,-0.0391126,0,0,-0.5,0
1713933361.224071137,1.25088,0.308568,5.85223,1.1489,0.283574,-0.101086,0,0,-0.5,0
1713933361.374325876,1.25088,0.308568,5.85223,1.14861,0.28363,-0.202171,0,0,0,0
1713933362.125601323,1.5272,0.200446,5.59742,1.15708,0.286211,-0.347008,0,0.177778,0.170526,0.837783
1713933363.027097107,1.58659,0.171286,5.53585,1.26449,0.256866,-0.242724,0,0.155556,-0.0568421,0.960801
1713933363.895689911,1.84693,0.18614,3.27783,1.37914,0.239046,-0.22214,0,0.2,0.0947368,0
1713933364.045836199,1.84693,0.18614,3.27783,1.40934,0.232138,-0.212564,0,0.2,0.0947368,0
1713933364.195979572,1.84693,0.18614,3.27783,1.43006,0.224,-0.20383,0,0.2,0.0947368,0
1713933364.346122653,1.84693,0.18614,3.27783,1.45593,0.216551,-0.194278,0,0.177778,0.0947368,0
1713933364.496274189,1.84693,0.18614,3.27783,1.48642,0.209489,-0.18301,0,0.177778,0.0947368,0
1713933364.646441176,1.84693,0.18614,3.27783,1.51005,0.212133,-0.173394,0,0.155556,0.0568421,0
1713933364.796580759,1.84693,0.18614,3.27783,1.53051,0.204231,-0.164902,0,0.155556,0.0947368,0
1713933364.946723257,1.84693,0.18614,3.27783,1.56067,0.19711,-0.157465,0,0.133333,0.0568421,0
1713933365.096871586,1.84693,0.18614,3.27783,1.5802,0.198967,-0.148751,0,0.133333,0.0568421,0
1713933365.247013502,1.84693,0.18614,3.27783,1.59998,0.191131,-0.138174,0,0.111111,0.0568421,0
1713933365.397157749,1.84693,0.18614,3.27783,1.61951,0.192849,-0.131269,0,0.111111,0.0568421,0
1713933365.547295000,1.84693,0.18614,3.27783,1.63937,0.185033,-0.118291,0,0.111111,0.0568421,0
1713933365.697438373,1.84693,0.18614,3.27783,1.65883,0.187023,-0.108907,0,0.0888889,0.0568421,0
1713933365.847579413,1.84693,0.18614,3.27783,1.66801,0.188642,-0.102074,0,0.0888889,0.0189474,0
1713933365.997727451,1.84693,0.18614,3.27783,1.68835,0.180852,-0.0907807,0,0,-0.5,0
1713933366.147885109,1.84693,0.18614,3.27783,1.69743,0.182159,-0.0827728,0,0,-0.5,0
1713933366.298064924,1.84693,0.18614,3.27783,1.70696,0.183385,-0.0897594,0,0,-0.5,0
1713933366.448340945,1.84693,0.18614,3.27783,1.71577,0.18525,-0.135481,0,0,-0.5,0
1713933366.598602973,1.84693,0.18614,3.27783,1.71523,0.185617,-0.168456,0,0,-0.5,0
1713933366.748874330,1.84693,0.18614,3.27783,1.71411,0.186153,-0.215752,0,0,-0.5,0
1713933366.899137815,1.84693,0.18614,3.27783,1.72378,0.187489,-0.272999,0,0,-0.5,0
1713933367.049413545,1.84693,0.18614,3.27783,1.72343,0.187708,-0.336518,0,0,-0.5,0
1713933367.199684611,1.84693,0.18614,3.27783,1.7245,0.178117,-0.419643,0,0,-0.5,0
1713933367.349955968,1.84693,0.18614,3.27783,1.72438,0.178621,-0.479097,0,0,-0.5,0
1713933367.500221494,1.84693,0.18614,3.27783,1.72427,0.179114,-0.542814,0,0,-0.5,0
1713933367.650485562,1.84693,0.18614,3.27783,1.72401,0.179763,-0.610344,0,0,-0.5,0
1713933367.800760126,1.84693,0.18614,3.27783,1.72391,0.18017,-0.67245,0,0,-0.5,0
1713933367.951023612,1.84693,0.18614,3.27783,1.72354,0.181107,-0.763655,0,0,-0.5,0
1713933368.101291179,1.84693,0.18614,3.27783,1.72345,0.181593,-0.816933,0,0,-0.5,0
1713933368.251559912,1.84693,0.18614,3.27783,1.72347,0.182705,-0.886084,0,0,-0.5,0
1713933368.401894240,1.84693,0.18614,3.27783,1.72341,0.183169,-0.948451,0,0,-0.5,0
1713933368.552209619,1.84693,0.18614,3.27783,1.72292,0.184126,-1.02846,0,0,-0.5,0
1713933368.702471355,1.84693,0.18614,3.27783,1.7226,0.184498,-1.09293,0,0,-0.5,0
1713933368.852781486,1.84693,0.18614,3.27783,1.72181,0.185273,-1.1681,0,0,-0.5,0
1713933369.003090451,1.84693,0.18614,3.27783,1.7214,0.185466,-1.22849,0,0,-0.5,0
1713933369.153360934,1.84693,0.18614,3.27783,1.7209,0.185656,-1.30798,0,0,-0.5,0
1713933369.303629958,1.84693,0.18614,3.27783,1.72061,0.185833,-1.36005,0,0,-0.5,0
1713933369.453897234,1.84693,0.18614,3.27783,1.72024,0.186333,-1.44828,0,0,-0.5,0
1713933369.604174422,1.84693,0.18614,3.27783,1.71991,0.186734,-1.53131,0,0,-0.5,0
1713933369.754440531,1.84693,0.18614,3.27783,1.7194,0.187409,-1.60702,0,0,-0.5,0
1713933369.904700809,1.84693,0.18614,3.27783,1.71928,0.187873,-1.66671,0,0,-0.5,0
1713933370.054968668,1.84693,0.18614,3.27783,1.71875,0.188622,-1.73152,0,0,-0.5,0
1713933370.205242357,1.84693,0.18614,3.27783,1.71851,0.189118,-1.81352,0,0,-0.5,0
1713933370.355513714,1.84693,0.18614,3.27783,1.71821,0.19034,-1.87921,0,0,-0.5,0
1713933370.505832591,1.84693,0.18614,3.27783,1.71814,0.190959,-1.94828,0,0,-0.5,0
1713933370.656108613,1.84693,0.18614,3.27783,1.71784,0.192107,-2.02204,0,0,-0.5,0
1713933370.806377346,1.84693,0.18614,3.27783,1.71764,0.192532,-2.07259,0,0,-0.5,0
1713933370.956643455,1.84693,0.18614,3.27783,1.71708,0.19348,-2.15926,0,0,-0.5,0
1713933371.106921517,1.84693,0.18614,3.27783,1.71674,0.194026,-2.205,0,0,-0.5,0
1713933371.257193749,1.84693,0.18614,3.27783,1.71629,0.19488,-2.30925,0,0,-0.5,0
1713933371.407464231,1.84693,0.18614,3.27783,1.71624,0.195381,-2.37665,0,0,-0.5,0
1713933371.557609353,1.84693,0.18614,3.27783,1.71571,0.196245,-2.43865,0,0,-0.5,0
1713933371.707752726,1.84693,0.18614,3.27783,1.71535,0.196762,-2.52185,0,0,-0.5,0
1713933371.857897557,1.84693,0.18614,3.27783,1.71485,0.197488,-2.60276,0,0,-0.5,0
1713933372.008043553,1.84693,0.18614,3.27783,1.71467,0.197897,-2.65325,0,0,-0.5,0
1713933372.158192757,1.84693,0.18614,3.27783,1.71429,0.198754,-2.7525,0,0,-0.5,0
1713933372.308337588,1.84693,0.18614,3.27783,1.71361,0.199835,-2.81138,0,0,0,0
1713933373.120193223,1.55437,0.155506,3.22874,1.71146,0.204064,-2.9098,0,0.0888889,0,0.968747
1713933373.898684376,1.26113,0.12455,3.17965,1.67007,0.202627,-2.88924,0,0.2,-0.132632,0.96875
1713933374.773380766,0.96162,0.107462,3.17965,1.54119,0.172129,-2.95857,0,0.2,-0.0947368,1
1713933375.666919382,0.655827,0.104241,3.22874,1.38198,0.156542,-3.00554,0,0.2,-0.0568421,0.968747
1713933376.426110599,0.362594,0.0732835,3.17965,1.24362,0.142611,-3.05903,0,0.2,-0.0568421,0.968747
1713933377.275298221,0.0630815,0.0561952,3.17965,1.0842,0.137074,-3.09775,0,0.2,-0.0189474,1
1713933377.425444801,0.0630815,0.0561952,3.17965,1.06438,0.135828,-3.10091,0,0.2,-0.0189474,1
1713933377.575589048,0.0630815,0.0561952,3.17965,1.02474,0.131895,-3.10465,0,0.2,-0.0189474,1
1713933378.326446433,-0.242711,0.0529749,3.22874,0.884358,0.129879,-3.11082,0,0.2,-0.0189474,0.96875
1713933378.476717498,-0.242711,0.0529749,3.22874,0.853346,0.136876,-3.11061,0,0.2,0.0189474,0.96875
1713933378.626986523,-0.242711,0.0529749,3.22874,0.833482,0.13522,-3.11041,0,0.2,0.0189474,0.96875
1713933378.777308607,-0.242711,0.0529749,3.22874,0.813597,0.133372,-3.10963,0,0.2,0.0189474,0.96875
1713933378.927576757,-0.242711,0.0529749,3.22874,0.773924,0.129657,-3.10739,0,0.2,0.0189474,0.96875
1713933379.077842574,-0.242711,0.0529749,3.22874,0.75299,0.137797,-3.10586,0,0.2,-0.0189474,0.96875
1713933379.228170489,-0.242711,0.0529749,3.22874,0.72309,0.135006,-3.10312,0,0.2,-0.0189474,0.96875
1713933379.378320567,-0.242711,0.0529749,3.22874,0.687982,0.131365,-3.1021,0,0.2,-0.0189474,0.96875
1713933380.173955754,-0.535945,0.0220186,3.17966,0.543386,0.126413,-3.0998,0,0.2,-0.0568421,0.968753
1713933380.324137026,-0.535945,0.0220186,3.17966,0.506687,0.13228,-3.10114,0,0.2,-0.0189474,0.968753
1713933380.474289437,-0.535945,0.0220186,3.17966,0.492811,0.130764,-3.10261,0,0.2,-0.0189474,0.968753
1713933380.624435725,-0.535945,0.0220186,3.17966,0.455398,0.12656,-3.10699,0,0.2,0.0189474,0.968753
1713933380.774580847,-0.535945,0.0220186,3.17966,0.433334,0.124197,-3.11011,0,0.2,0.0189474,0.968753
1713933380.924855411,-0.535945,0.0220186,3.17966,0.402274,0.131295,-3.11196,0,0.2,0.0189474,0.968753
1713933381.701265293,-0.835457,0.00492874,3.17965,0.251896,0.126373,-3.11774,0,0.2,-0.0189474,0.999994
1713933381.851415372,-0.835457,0.00492874,3.17965,0.222048,0.123364,-3.11777,0,0.2,-0.0189474,0.999994
1713933382.001558744,-0.835457,0.00492874,3.17965,0.200953,0.131304,-3.11842,0,0.2,-0.0189474,0.999994
1713933382.151691330,-0.835457,0.00492874,3.17965,0.165573,0.127552,-3.11877,0,0.2,-0.0189474,0.999994
1713933382.301838785,-0.835457,0.00492874,3.17965,0.141219,0.125344,-3.11873,0,0.2,0.0189474,0.999994
1713933383.159773053,-1.14125,0.0017099,3.22874,-0.000330393,0.130327,-3.1153,0,0.2,0.0568421,0.968747
1713933383.310029542,-1.14125,0.0017099,3.22874,-0.0402096,0.126057,-3.112,0,0.2,0.0568421,0.968747
1713933383.460172331,-1.14125,0.0017099,3.22874,-0.0700131,0.123074,-3.10846,0,0.2,0.0568421,0.968747
1713933383.610317454,-1.14125,0.0017099,3.22874,-0.091265,0.131291,-3.10406,0,0.2,0.0568421,0.968747
1713933383.760458786,-1.14125,0.0017099,3.22874,-0.13101,0.127164,-3.09911,0,0.2,0.0568421,0.968747
1713933383.910603908,-1.14125,0.0017099,3.22874,-0.150847,0.125439,-3.09657,0,0.2,0,0.968747
1713933384.060743782,-1.14125,0.0017099,3.22874,-0.180729,0.122323,-3.09084,0,0.2,0,0.968747
1713933384.882579550,-1.43448,-0.0292464,3.17965,-0.331129,0.116627,-3.06784,0,0.2,-0.0189474,0.96875
1713933385.032859653,-1.43448,-0.0292464,3.17965,-0.361091,0.113098,-3.06527,0,0.2,-0.0189474,0.96875
1713933385.183128677,-1.43448,-0.0292464,3.17965,-0.390885,0.10936,-3.06379,0,0.2,-0.0189474,0.96875
1713933385.333386624,-1.43448,-0.0292464,3.17965,-0.420862,0.105841,-3.06497,0,0.2,-0.0189474,0.96875
1713933385.483655940,-1.43448,-0.0292464,3.17965,-0.451955,0.112125,-3.06489,0,0.2,0.0189474,0.96875
1713933385.633915635,-1.43448,-0.0292464,3.17965,-0.472058,0.109981,-3.06594,0,0.2,0.0189474,0.96875
1713933385.784176206,-1.43448,-0.0292464,3.17965,-0.501949,0.106394,-3.06646,0,0.2,0.0189474,0.96875
1713933386.535442906,-1.69462,-0.0657088,3.27888,-0.652161,0.0978507,-3.07033,0,0.2,0,0.936832
1713933386.685711930,-1.69462,-0.0657088,3.27888,-0.672091,0.0955394,-3.07002,0,0.2,0,0.936832
1713933386.835978331,-1.69462,-0.0657088,3.27888,-0.707823,0.0911375,-3.07145,0,0.2,0,0.936832
1713933386.986268930,-1.69462,-0.0657088,3.27888,-0.73171,0.0883216,-3.07114,0,0.2,0,0.936832
1713933387.136561277,-1.69462,-0.0657088,3.27888,-0.761567,0.0846654,-3.06968,0,0.2,0,0.936832
1713933387.286826512,-1.69462,-0.0657088,3.27888,-0.771704,0.083743,-3.06897,0,0.2,0.0568421,0.936832
1713933388.044965285,-1.99768,-0.20744,4.50501,-0.932447,0.0740583,-3.05642,0,0.2,0.0947368,0.219416
1713933388.195111865,-1.99768,-0.20744,4.50501,-0.952359,0.0718028,-3.05101,0,0.2,0.0568421,0.219416
1713933388.345250865,-1.99768,-0.20744,4.50501,-0.982232,0.0676261,-3.04553,0,0.2,0.0568421,0.219416
1713933388.495394821,-1.99768,-0.20744,4.50501,-1.01204,0.0641527,-3.03865,0,0.2,0.0947368,0.219416
1713933388.645534112,-1.99768,-0.20744,4.50501,-1.04173,0.0604209,-3.03225,0,0.2,0.0947368,0.219416
1713933388.795676319,-1.99768,-0.20744,4.50501,-1.06161,0.0579848,-3.02593,0,0.2,0.0947368,0.219416
1713933388.945813569,-1.99768,-0.20744,4.50501,-1.10125,0.0529922,-3.01564,0,0.2,0.170526,0.219416
1713933389.095959566,-1.99768,-0.20744,4.50501,-1.12106,0.0503988,-3.00449,0,0.2,0.132632,0.219416
1713933389.249328779,-1.99768,-0.20744,4.50501,-1.15641,0.0456223,-2.98745,0,0.2,0.132632,0.219416
1713933389.399493142,-1.99768,-0.20744,4.50501,-1.18042,0.0425902,-2.97138,0,0.2,0.0947368,0.219416
1713933389.549643512,-1.99768,-0.20744,4.50501,-1.20015,0.0394375,-2.95682,0,0.2,0.0568421,0.219416
1713933389.699792424,-1.99768,-0.20744,4.50501,-1.24576,0.0234481,-2.93337,0,0.2,0.132632,0.219416
1713933389.849929091,-1.99768,-0.20744,4.50501,-1.25842,0.0214989,-2.92079,0,0.2,0.0189474,0.219416
1713933390.000073339,-1.99768,-0.20744,4.50501,-1.28812,0.0176615,-2.90475,0,0.2,0.0568421,0.219416
1713933390.150209132,-1.99768,-0.20744,4.50501,-1.31789,0.0133507,-2.88893,0,0.2,0.0568421,0.219416
1713933390.300352505,-1.99768,-0.20744,4.50501,-1.34628,-0.00132303,-2.87423,0,0.2,0.0189474,0.219416
1713933390.450491796,-1.99768,-0.20744,4.50501,-1.37588,-0.00594274,-2.86464,0,0.177778,0.0189474,0.219416
1713933390.600646539,-1.99768,-0.20744,4.50501,-1.40416,-0.020677,-2.85744,0,0.2,0,0.219416
1713933390.750783206,-1.99768,-0.20744,4.50501,-1.42393,-0.0237788,-2.85541,0,0.177778,0,0.219416
1713933390.900942322,-1.99768,-0.20744,4.50501,-1.44345,-0.0275434,-2.85442,0,0.2,-0.0189474,0.219416
1713933391.051087444,-1.99768,-0.20744,4.50501,-1.48159,-0.0432509,-2.84967,0,0.177778,-0.0189474,0.219416
1713933391.201232858,-1.99768,-0.20744,4.50501,-1.50644,-0.0480884,-2.84789,0,0.2,-0.0568421,0.219416
1713933391.351373607,-1.99768,-0.20744,4.50501,-1.529,-0.0620373,-2.84828,0,0.2,-0.0568421,0.219416
1713933391.501518146,-1.99768,-0.20744,4.50501,-1.54811,-0.0665381,-2.84904,0,0.2,-0.0568421,0.219416
1713933391.651650440,-1.99768,-0.20744,4.50501,-1.57616,-0.0813823,-2.84946,0,0.2,-0.0568421,0.219416
1713933391.801792064,-1.99768,-0.20744,4.50501,-1.60523,-0.0868856,-2.85358,0,0.2,0.0189474,0.219416
1713933391.951933979,-1.99768,-0.20744,4.50501,-1.62476,-0.0902075,-2.85853,0,0.177778,0.0189474,0.219416
1713933392.102098343,-1.99768,-0.20744,4.50501,-1.653,-0.104838,-2.85792,0,0.177778,0,0.219416
1713933392.252234427,-1.99768,-0.20744,4.50501,-1.68244,-0.109965,-2.85988,0,0.155556,0.0568421,0.219416
1713933392.402382173,-1.99768,-0.20744,4.50501,-1.71055,-0.124783,-2.86177,0,0.155556,-0.0189474,0.219416
1713933392.552519424,-1.99768,-0.20744,4.50501,-1.73026,-0.127741,-2.8623,0,0.133333,0.0568421,0.219416
1713933392.702665712,-1.99768,-0.20744,4.50501,-1.74997,-0.130617,-2.86237,0,0.111111,-0.0189474,0.219416
1713933392.852803837,-1.99768,-0.20744,4.50501,-1.7783,-0.144946,-2.86039,0,0.111111,0,0.219416
1713933393.002944878,-1.99768,-0.20744,4.50501,-1.78784,-0.147442,-2.86463,0,0.111111,0.0189474,0.219416
1713933393.750818106,-1.95667,-0.54472,-0.207377,-1.86469,-0.171066,-2.85209,0,0.0888889,0.36,0
1713933393.901093836,-1.95667,-0.54472,-0.207377,-1.87429,-0.173119,-2.82656,0,0.0666667,0.36,0
1713933394.051339246,-1.95667,-0.54472,-0.207377,-1.88267,-0.185362,-2.78635,0,0.0666667,0.322105,0
1713933394.201612643,-1.95667,-0.54472,-0.207377,-1.89974,-0.18796,-2.73616,0,0.0666667,0.36,0
1713933394.351923066,-1.95667,-0.54472,-0.207377,-1.90171,-0.188677,-2.70546,0,0.0666667,0.36,0
1713933394.502188009,-1.95667,-0.54472,-0.207377,-1.91053,-0.196036,-2.66025,0,0.0666667,0.36,0
1713933394.652433128,-1.95667,-0.54472,-0.207377,-1.91989,-0.201561,-2.62931,0,0.0666667,0.36,0
1713933394.802576792,-1.95667,-0.54472,-0.207377,-1.9296,-0.202484,-2.57146,0,0.0666667,0.36,0
1713933394.952723372,-1.95667,-0.54472,-0.207377,-1.93565,-0.212775,-2.53294,0,0.0666667,0.36,0
1713933395.102870535,-1.95667,-0.54472,-0.207377,-1.93859,-0.213304,-2.48459,0,0.177778,0.36,0
1713933395.253007494,-1.95667,-0.54472,-0.207377,-1.9475,-0.224154,-2.43427,0,0.177778,0.36,0
1713933395.403151742,-1.95667,-0.54472,-0.207377,-1.96225,-0.235594,-2.38651,0,0.155556,0.36,0
1713933395.553297738,-1.95667,-0.54472,-0.207377,-1.97539,-0.247212,-2.33048,0,0.155556,0.36,0
1713933395.703442277,-1.95667,-0.54472,-0.207377,-1.99041,-0.259386,-2.27708,0,0.155556,0.36,0
1713933395.853586816,-1.95667,-0.54472,-0.207377,-1.99367,-0.270273,-2.24121,0,0.155556,0.36,0
1713933396.003729315,-1.95667,-0.54472,-0.207377,-2.01182,-0.292852,-2.18175,0,0.133333,0.322105,0
1713933396.153873271,-1.95667,-0.54472,-0.207377,-2.02087,-0.304082,-2.14332,0,0.133333,0.322105,0
1713933396.304024806,-1.95667,-0.54472,-0.207377,-2.03021,-0.315615,-2.10891,0,0.111111,0.36,0
1713933396.454161182,-1.95667,-0.54472,-0.207377,-2.03832,-0.342466,-2.04866,0,0.0888889,0.322105,0
1713933396.604311261,-1.95667,-0.54472,-0.207377,-2.04749,-0.357767,-2.00435,0,0.0666667,0.322105,0
1713933396.754456966,-1.95667,-0.54472,-0.207377,-2.05684,-0.368833,-1.9624,0,0.0666667,0.36,0
1713933396.904600047,-1.95667,-0.54472,-0.207377,-2.06367,-0.380992,-1.90296,0,0.0666667,0.322105,0
1713933397.054742545,-1.95667,-0.54472,-0.207377,-2.06508,-0.391571,-1.85446,0,0.0666667,0.36,0
1713933397.204887376,-1.95667,-0.54472,-0.207377,-2.06395,-0.402539,-1.80812,0,0.0666667,0.322105,0
1713933397.355024918,-1.95667,-0.54472,-0.207377,-2.06869,-0.413289,-1.74648,0,0.0666667,0.322105,0
1713933397.505182868,-1.95667,-0.54472,-0.207377,-2.07115,-0.425438,-1.71168,0,0.0666667,0.36,0
1713933397.655321285,-1.95667,-0.54472,-0.207377,-2.06986,-0.436447,-1.66549,0,0,0.5,0
1713933397.805465824,-1.95667,-0.54472,-0.207377,-2.06795,-0.449306,-1.62051,0,0,0.5,0
1713933397.955600159,-1.95667,-0.54472,-0.207377,-2.06658,-0.460884,-1.561,0,0,0.5,0
1713933398.105744406,-1.95667,-0.54472,-0.207377,-2.06472,-0.472977,-1.52187,0,0,0.5,0
1713933398.255885155,-1.95667,-0.54472,-0.207377,-2.06444,-0.473735,-1.48012,0,0,0.5,0
1713933398.406031735,-1.95667,-0.54472,-0.207377,-2.06417,-0.47515,-1.42114,0,0,0.5,0
1713933398.556169569,-1.95667,-0.54472,-0.207377,-2.06321,-0.486042,-1.36084,0,0,0.5,0
1713933398.706314691,-1.95667,-0.54472,-0.207377,-2.06275,-0.487072,-1.27222,0,0,0.5,0
1713933398.856457772,-1.95667,-0.54472,-0.207377,-2.06253,-0.487523,-1.22034,0,0,0.5,0
1713933399.006602311,-1.95667,-0.54472,-0.207377,-2.06192,-0.48842,-1.15938,0,0,0.5,0
1713933399.156752681,-1.95667,-0.54472,-0.207377,-2.0617,-0.489095,-1.08761,0,0,0.5,0
1713933399.306900718,-1.95667,-0.54472,-0.207377,-2.06152,-0.489538,-1.02151,0,0,0.5,0
1713933399.457045841,-1.95667,-0.54472,-0.207377,-2.06101,-0.490285,-0.934405,0,0,0.5,0
1713933399.607191546,-1.95667,-0.54472,-0.207377,-2.06048,-0.490888,-0.887305,0,0,0.5,0
1713933399.757329379,-1.95667,-0.54472,-0.207377,-2.06027,-0.491261,-0.825185,0,0,0.5,0
1713933399.907474210,-1.95667,-0.54472,-0.207377,-2.05963,-0.49197,-0.732785,0,0,0.5,0
1713933400.057619915,-1.95667,-0.54472,-0.207377,-2.05917,-0.492385,-0.65546,0,0,0.5,0
1713933400.207762705,-1.95667,-0.54472,-0.207377,-2.0589,-0.493068,-0.595903,0,0,0.5,0
1713933400.357900539,-1.95667,-0.54472,-0.207377,-2.05862,-0.493423,-0.52328,0,0,0.5,0
1713933400.508053532,-1.95667,-0.54472,-0.207377,-2.0583,-0.493907,-0.462741,0,0,0.5,0
1713933400.658214397,-1.95667,-0.54472,-0.207377,-2.05774,-0.494897,-0.378551,0,0,0,0
1713933401.512908249,-1.65443,-0.54261,-0.15829,-2.04479,-0.509191,-0.231032,0,0.2,0.132632,0.96875
1713933402.220263590,-1.35147,-0.540349,-0.109203,-1.95174,-0.525881,-0.129852,0,0.2,0.0947368,0.96875
1713933402.978723053,-1.05195,-0.52326,-0.109198,-1.81934,-0.535341,-0.0567311,0,0.2,0.0568421,0.999997
1713933403.736106167,-0.755894,-0.491344,-0.15829,-1.67809,-0.540514,-0.0245435,0,0.2,0.0568421,0.968747
1713933404.486771721,-0.452928,-0.489082,-0.109203,-1.53668,-0.546147,-0.00660567,0,0.2,0,0.96875
1713933404.637022670,-0.452928,-0.489082,-0.109203,-1.51649,-0.544022,-0.00329198,0,0.2,0,0.96875
1713933404.787294610,-0.452928,-0.489082,-0.109203,-1.48646,-0.541058,-0.00202423,0,0.2,0,0.96875
1713933404.937543810,-0.452928,-0.489082,-0.109203,-1.45515,-0.548481,0.000155672,0,0.2,0,0.96875
1713933405.087825079,-0.452928,-0.489082,-0.109203,-1.43492,-0.546661,0.000885562,0,0.2,0,0.96875
1713933405.238095853,-0.452928,-0.489082,-0.109203,-1.39441,-0.543127,0.00412051,0,0.2,0,0.96875
1713933406.032903662,-0.153416,-0.471994,-0.109203,-1.23961,-0.551065,0.00848649,0,0.2,0,1
1713933406.183197176,-0.153416,-0.471994,-0.109203,-1.21387,-0.548764,0.00936452,0,0.2,0,1
1713933406.333539668,-0.153416,-0.471994,-0.109203,-1.18891,-0.546759,0.00871963,0,0.2,0,1
1713933406.483887698,-0.153416,-0.471994,-0.109203,-1.15752,-0.554125,0.00828103,0,0.2,0,1
1713933406.634177422,-0.153416,-0.471994,-0.109203,-1.13753,-0.55197,0.00976863,0,0.2,0,1
1713933407.403659839,0.142644,-0.440079,-0.15829,-0.987146,-0.543128,0.00863516,0,0.2,0,0.96875
1713933407.553911372,0.142644,-0.440079,-0.15829,-0.956185,-0.549742,0.00862317,0,0.2,0,0.96875
1713933407.704225584,0.142644,-0.440079,-0.15829,-0.925634,-0.546528,0.00958725,0,0.2,0,0.96875
1713933407.854478283,0.142644,-0.440079,-0.15829,-0.895548,-0.5431,0.00960715,0,0.2,0,0.96875
1713933408.004745558,0.142644,-0.440079,-0.15829,-0.870126,-0.540537,0.010685,0,0.2,0,0.96875
1713933408.155022163,0.142644,-0.440079,-0.15829,-0.833884,-0.546921,0.00996656,0,0.2,0,0.96875
1713933408.305345122,0.142644,-0.440079,-0.15829,-0.803347,-0.543803,0.0107278,0,0.2,0,0.96875
1713933409.113476975,0.44561,-0.437817,-0.109203,-0.642178,-0.538586,0.0143385,0,0.2,0,0.96875
1713933409.263851244,0.44561,-0.437817,-0.109203,-0.6185,-0.54616,0.0156679,0,0.2,0,0.96875
1713933409.414132513,0.44561,-0.437817,-0.109203,-0.588194,-0.54261,0.0162292,0,0.2,-0.0189474,0.96875
1713933409.564406202,0.44561,-0.437817,-0.109203,-0.568148,-0.540351,0.0182181,0,0.2,-0.0189474,0.96875
1713933409.714669396,0.44561,-0.437817,-0.109203,-0.537817,-0.536575,0.0198349,0,0.2,-0.0189474,0.96875
1713933409.864933756,0.44561,-0.437817,-0.109203,-0.506987,-0.54288,0.0205467,0,0.2,0.0568421,0.96875
1713933410.612110506,0.749299,-0.435368,-0.0601101,-0.365531,-0.53439,0.0279498,0,0.2,-0.0189474,0.968747
1713933410.762254461,0.749299,-0.435368,-0.0601101,-0.345408,-0.532118,0.0290831,0,0.2,-0.0189474,0.968747
1713933410.912400167,0.749299,-0.435368,-0.0601101,-0.305273,-0.52748,0.0315368,0,0.2,-0.0189474,0.968747
1713933411.062540916,0.749299,-0.435368,-0.0601101,-0.264456,-0.533036,0.0314195,0,0.2,-0.0189474,0.968747
1713933411.212639975,0.749299,-0.435368,-0.0601101,-0.254025,-0.531556,0.0315019,0,0.2,-0.0189474,0.968747
1713933411.362785680,0.749299,-0.435368,-0.0601101,-0.223894,-0.528152,0.0313781,0,0.2,0.0189474,0.968747
1713933411.512920307,0.749299,-0.435368,-0.0601101,-0.193579,-0.524621,0.0300559,0,0.2,0.0189474,0.968747
1713933412.367861673,1.04881,-0.418278,-0.0601206,-0.0296495,-0.515121,0.0307125,0,0.2,0,0.999993
1713933412.518024287,1.04881,-0.418278,-0.0601206,0.0122644,-0.520287,0.0318431,0,0.2,0,0.999993
1713933412.668165327,1.04881,-0.418278,-0.0601206,0.0387443,-0.516933,0.0298092,0,0.2,0,0.999993
1713933412.818311324,1.04881,-0.418278,-0.0601206,0.0733678,-0.512428,0.0308704,0,0.2,0,0.999993
1713933413.615526633,1.34415,-0.386552,-0.109198,0.208014,-0.505788,0.0342139,0,0.2,-0.0189474,0.968757
1713933413.765778457,1.34415,-0.386552,-0.109198,0.23848,-0.502455,0.0330029,0,0.2,-0.0189474,0.968757
1713933413.916084506,1.34415,-0.386552,-0.109198,0.270724,-0.508637,0.0342626,0,0.2,0,0.968757
1713933414.066346826,1.34415,-0.386552,-0.109198,0.301172,-0.505142,0.0338805,0,0.2,-0.0189474,0.968757
1713933414.216619932,1.34415,-0.386552,-0.109198,0.339559,-0.500409,0.0316477,0,0.2,-0.0189474,0.968757
1713933414.366904116,1.34415,-0.386552,-0.109198,0.352643,-0.498778,0.0346109,0,0.2,-0.0189474,0.968757
1713933414.517055944,1.34415,-0.386552,-0.109198,0.383834,-0.494788,0.0329934,0,0.2,-0.0189474,0.968757
1713933415.377058364,1.64784,-0.384102,-0.0601153,0.550173,-0.494289,0.0341852,0,0.2,-0.0189474,0.968753
1713933415.527322141,1.64784,-0.384102,-0.0601153,0.591215,-0.489707,0.0363968,0,0.2,-0.0189474,0.968753
1713933415.677615072,1.64784,-0.384102,-0.0601153,0.611722,-0.487556,0.0362218,0,0.2,-0.0189474,0.968753
1713933415.827909169,1.64784,-0.384102,-0.0601153,0.652747,-0.483271,0.0367493,0,0.2,-0.0189474,0.968753
1713933415.978185773,1.64784,-0.384102,-0.0601153,0.674104,-0.490756,0.0374639,0,0.2,-0.0189474,0.968753
1713933416.128466751,1.64784,-0.384102,-0.0601153,0.694926,-0.487997,0.0369197,0,0.2,0.0189474,0.968753
1713933416.937212577,1.77102,-0.305099,5.48571,0.858004,-0.478767,0.0349801,0,0.2,0.0568421,0
1713933417.087359449,1.77102,-0.305099,5.48571,0.888331,-0.475343,0.039255,0,0.2,0.0568421,0
1713933417.237495825,1.77102,-0.305099,5.48571,0.918487,-0.472106,0.0465837,0,0.2,0.0947368,0
1713933417.387639781,1.77102,-0.305099,5.48571,0.939028,-0.469753,0.0527715,0,0.2,0.0947368,0
1713933417.537771492,1.77102,-0.305099,5.48571,0.96922,-0.466542,0.0588605,0,0.2,0.0947368,0
1713933417.687917489,1.77102,-0.305099,5.48571,1.00089,-0.473355,0.0666979,0,0.2,0.0947368,0
1713933417.838053865,1.77102,-0.305099,5.48571,1.02118,-0.471405,0.0751714,0,0.2,0.0947368,0
1713933417.988209191,1.77102,-0.305099,5.48571,1.05145,-0.468564,0.0924172,0,0.2,0.0568421,0
1713933418.138340902,1.77102,-0.305099,5.48571,1.08205,-0.465341,0.105559,0,0.2,0.0568421,0
1713933418.288485150,1.77102,-0.305099,5.48571,1.11282,-0.461809,0.116684,0,0.2,0.0568421,0
1713933418.438627939,1.77102,-0.305099,5.48571,1.14107,-0.458665,0.126558,0,0.2,0.0568421,0
1713933418.588786181,1.77102,-0.305099,5.48571,1.16352,-0.455945,0.133549,0,0.2,0.0189474,0
1713933418.738926347,1.77102,-0.305099,5.48571,1.1945,-0.452349,0.140578,0,0.2,0,0
1713933418.889071177,1.77102,-0.305099,5.48571,1.22954,-0.438266,0.1501,0,0.2,-0.0189474,0
1713933419.039205804,1.77102,-0.305099,5.48571,1.26439,-0.433906,0.156224,0,0.177778,-0.0189474,0
1713933419.189365794,1.77102,-0.305099,5.48571,1.29504,-0.429836,0.161085,0,0.2,0.0568421,0
1713933419.339535697,1.77102,-0.305099,5.48571,1.31537,-0.427232,0.160999,0,0.177778,0.0947368,0
1713933419.489688399,1.77102,-0.305099,5.48571,1.34607,-0.423148,0.159524,0,0.2,0.0568421,0
1713933419.639842850,1.77102,-0.305099,5.48571,1.36655,-0.420772,0.165618,0,0.2,0.0189474,0
1713933419.790142194,1.77102,-0.305099,5.48571,1.39641,-0.407333,0.170205,0,0.2,0.0568421,0
1713933419.940398975,1.77102,-0.305099,5.48571,1.42507,-0.404141,0.179468,0,0.177778,-0.0189474,0
1713933420.090676162,1.77102,-0.305099,5.48571,1.45767,-0.400023,0.185091,0,0.155556,0.0568421,0
1713933420.240925071,1.77102,-0.305099,5.48571,1.48794,-0.39654,0.192643,0,0.155556,0.0568421,0
1713933420.391310710,1.77102,-0.305099,5.48571,1.50851,-0.39349,0.195059,0,0.133333,0.0568421,0
1713933420.541570405,1.77102,-0.305099,5.48571,1.53763,-0.379868,0.200397,0,0.133333,0.0568421,0
1713933420.691856631,1.77102,-0.305099,5.48571,1.55851,-0.377349,0.205226,0,0.111111,0.132632,0
1713933420.842123031,1.77102,-0.305099,5.48571,1.57894,-0.374828,0.209429,0,0.111111,0.0947368,0
1713933420.992390015,1.77102,-0.305099,5.48571,1.59967,-0.372002,0.215254,0,0.111111,0.0947368,0
1713933421.142650002,1.77102,-0.305099,5.48571,1.61549,-0.369937,0.226139,0,0.0888889,0.0947368,0
1713933421.292919318,1.77102,-0.305099,5.48571,1.62967,-0.35778,0.234324,0,0,-0.5,0
1713933421.443175807,1.77102,-0.305099,5.48571,1.64006,-0.356418,0.242284,0,0,-0.5,0
1713933421.593462324,1.77102,-0.305099,5.48571,1.65109,-0.354619,0.249818,0,0,-0.5,0
1713933421.743723477,1.77102,-0.305099,5.48571,1.66146,-0.353119,0.23911,0,0,-0.5,0
1713933421.894012618,1.77102,-0.305099,5.48571,1.67209,-0.350858,0.183417,0,0,-0.5,0
1713933422.044269106,1.77102,-0.305099,5.48571,1.67229,-0.350236,0.13721,0,0,-0.5,0
1713933422.194536965,1.77102,-0.305099,5.48571,1.67259,-0.349133,0.091384,0,0,-0.5,0
1713933422.344784416,1.77102,-0.305099,5.48571,1.6825,-0.34728,0.0515661,0,0,-0.5,0
1713933422.495055481,1.77102,-0.305099,5.48571,1.68259,-0.34622,-0.0340552,0,0,-0.5,0
1713933422.645362989,1.77102,-0.305099,5.48571,1.68299,-0.345774,-0.0928277,0,0,-0.5,0
1713933422.795629389,1.77102,-0.305099,5.48571,1.68251,-0.344733,-0.175158,0,0,-0.5,0
1713933422.945930191,1.77102,-0.305099,5.48571,1.68224,-0.344392,-0.234159,0,0,-0.5,0
1713933423.096205921,1.77102,-0.305099,5.48571,1.68154,-0.343724,-0.330593,0,0,-0.5,0
1713933423.246464742,1.77102,-0.305099,5.48571,1.68135,-0.343426,-0.387387,0,0,-0.5,0
1713933423.396765544,1.77102,-0.305099,5.48571,1.68117,-0.342907,-0.439162,0,0,-0.5,0
1713933423.547025240,1.77102,-0.305099,5.48571,1.68116,-0.342769,-0.535447,0,0,-0.5,0
1713933423.697291641,1.77102,-0.305099,5.48571,1.68137,-0.342342,-0.583663,0,0,0,0
1713933424.500851635,1.94712,-0.436542,4.5853,1.6905,-0.337846,-0.751982,0,0.133333,0.36,0.42678
1713933425.358398161,1.95996,-0.649312,4.75,1.74636,-0.389458,-0.540753,0,0.177778,-0.322105,0.895152
1713933426.110141813,2.09688,-0.937129,1.47948,1.8332,-0.4463,-0.633831,0,0.2,-0.36,0
1713933426.260283437,2.09688,-0.937129,1.47948,1.85561,-0.46289,-0.679649,0,0.2,-0.36,0
1713933426.410426518,2.09688,-0.937129,1.47948,1.87784,-0.478898,-0.727472,0,0.2,-0.36,0
1713933426.560563477,2.09688,-0.937129,1.47948,1.88883,-0.486869,-0.75596,0,0.2,-0.322105,0
1713933426.710710057,2.09688,-0.937129,1.47948,1.9125,-0.512893,-0.803819,0,0.2,-0.36,0
1713933426.860849640,2.09688,-0.937129,1.47948,1.93502,-0.529414,-0.853172,0,0.2,-0.36,0
1713933427.010990389,2.09688,-0.937129,1.47948,1.94757,-0.546969,-0.898847,0,0.2,-0.36,0
1713933427.161128806,2.09688,-0.937129,1.47948,1.96127,-0.5704,-0.9421,0,0.155556,-0.322105,0
1713933427.311287047,2.09688,-0.937129,1.47948,1.97494,-0.59237,-0.981578,0,0.177778,-0.322105,0
1713933427.461426047,2.09688,-0.937129,1.47948,1.99365,-0.609485,-1.04048,0,0.155556,-0.246316,0
1713933427.611568545,2.09688,-0.937129,1.47948,2.00933,-0.636704,-1.08787,0,0.155556,-0.208421,0
1713933427.761706670,2.09688,-0.937129,1.47948,2.01401,-0.645889,-1.12204,0,0.133333,-0.132632,0
1713933427.911851792,2.09688,-0.937129,1.47948,2.02805,-0.673438,-1.16105,0,0.133333,-0.170526,0
1713933428.061991375,2.09688,-0.937129,1.47948,2.03067,-0.692761,-1.19533,0,0.133333,-0.170526,0
1713933428.212136497,2.09688,-0.937129,1.47948,2.04274,-0.710106,-1.21046,0,0.111111,-0.0947368,0
1713933428.362275497,2.09688,-0.937129,1.47948,2.04388,-0.719478,-1.22573,0,0.111111,-0.132632,0
1713933428.512418870,2.09688,-0.937129,1.47948,2.0462,-0.738214,-1.25718,0,0.111111,-0.0568421,0
1713933428.662557287,2.09688,-0.937129,1.47948,2.04889,-0.757286,-1.276,0,0.0888889,-0.0568421,0
1713933428.812702992,2.09688,-0.937129,1.47948,2.06099,-0.774258,-1.29487,0,0.0888889,-0.0947368,0
1713933428.962842866,2.09688,-0.937129,1.47948,2.06222,-0.783492,-1.30655,0,0,0.5,0
1713933429.112987114,2.09688,-0.937129,1.47948,2.06306,-0.792386,-1.32406,0,0,0.5,0
1713933429.263130195,2.09688,-0.937129,1.47948,2.0642,-0.801796,-1.32404,0,0,0.5,0
1713933429.413272402,2.09688,-0.937129,1.47948,2.06501,-0.810479,-1.29995,0,0,0.5,0
1713933429.563420731,2.09688,-0.937129,1.47948,2.06562,-0.815447,-1.25625,0,0,0.5,0
1713933429.713566436,2.09688,-0.937129,1.47948,2.06606,-0.818798,-1.22077,0,0,0.5,0
1713933429.863753248,2.09688,-0.937129,1.47948,2.07187,-0.817577,-1.18318,0,0,0.5,0
1713933430.014065420,2.09688,-0.937129,1.47948,2.0771,-0.82603,-1.14333,0,0,0.5,0
1713933430.164339400,2.09688,-0.937129,1.47948,2.07714,-0.825603,-1.11387,0,0,0.5,0
1713933430.314613090,2.09688,-0.937129,1.47948,2.07733,-0.824895,-1.06048,0,0,0.5,0
1713933430.464882697,2.09688,-0.937129,1.47948,2.07747,-0.824622,-1.01227,0,0,0.5,0
1713933430.615198659,2.09688,-0.937129,1.47948,2.0777,-0.824251,-0.944224,0,0,0.5,0
1713933430.765457189,2.09688,-0.937129,1.47948,2.07774,-0.82395,-0.881058,0,0,0.5,0
1713933430.915728545,2.09688,-0.937129,1.47948,2.07796,-0.823483,-0.814992,0,0,0.5,0
1713933431.065997862,2.09688,-0.937129,1.47948,2.07861,-0.833246,-0.741314,0,0,0.5,0
1713933431.216265137,2.09688,-0.937129,1.47948,2.079,-0.832677,-0.671193,0,0,0.5,0
1713933431.366575560,2.09688,-0.937129,1.47948,2.07909,-0.832164,-0.618961,0,0,0.5,0
1713933431.516857703,2.09688,-0.937129,1.47948,2.07928,-0.831075,-0.538254,0,0,0.5,0
1713933431.667154132,2.09688,-0.937129,1.47948,2.0792,-0.830526,-0.462978,0,0,0.5,0
1713933431.817425489,2.09688,-0.937129,1.47948,2.07892,-0.829698,-0.389221,0,0,0.5,0
1713933431.967684602,2.09688,-0.937129,1.47948,2.0787,-0.829396,-0.299175,0,0,0.5,0
1713933432.118002313,2.09688,-0.937129,1.47948,2.0785,-0.82854,-0.240745,0,0,0.5,0
1713933432.268278626,2.09688,-0.937129,1.47948,2.07854,-0.828136,-0.197356,0,0,0.5,0
1713933432.418545318,2.09688,-0.937129,1.47948,2.07908,-0.827319,-0.108952,0,0,0.5,0
1713933432.568862738,2.09688,-0.937129,1.47948,2.07924,-0.827039,-0.0311879,0,0,0.5,0
1713933432.719133803,2.09688,-0.937129,1.47948,2.07977,-0.82647,0.0455798,0,0,0.5,0
1713933432.869415655,2.09688,-0.937129,1.47948,2.08013,-0.826233,0.114861,0,0,0.5,0
1713933433.019709752,2.09688,-0.937129,1.47948,2.08126,-0.825811,0.177533,0,0,0.5,0
1713933433.169980234,2.09688,-0.937129,1.47948,2.08228,-0.82547,0.250837,0,0,0.5,0
1713933433.320248676,2.09688,-0.937129,1.47948,2.08268,-0.825313,0.325458,0,0,0.5,0
1713933433.470519450,2.09688,-0.937129,1.47948,2.08293,-0.824987,0.393411,0,0,0.5,0
1713933433.620804509,2.09688,-0.937129,1.47948,2.08388,-0.824254,0.474719,0,0,0.5,0
1713933433.771076157,2.09688,-0.937129,1.47948,2.08439,-0.823863,0.554056,0,0,0.5,0
1713933433.921352470,2.09688,-0.937129,1.47948,2.08543,-0.82327,0.625481,0,0,0.5,0
1713933434.071619746,2.09688,-0.937129,1.47948,2.08601,-0.822945,0.687332,0,0,0.5,0
1713933434.221921714,2.09688,-0.937129,1.47948,2.08718,-0.822324,0.763059,0,0,0.5,0
1713933434.372208522,2.09688,-0.937129,1.47948,2.08798,-0.822152,0.819862,0,0,0.5,0
1713933434.522362682,2.09688,-0.937129,1.47948,2.08923,-0.821605,0.897966,0,0,0.5,0
1713933434.672513635,2.09688,-0.937129,1.47948,2.0898,-0.821389,0.978701,0,0,0.5,0
1713933434.822659923,2.09688,-0.937129,1.47948,2.09082,-0.821006,1.06107,0,0,0.5,0
1713933434.972806794,2.09688,-0.937129,1.47948,2.09131,-0.820688,1.11655,0,0,0.5,0
1713933435.122953666,2.09688,-0.937129,1.47948,2.09157,-0.820163,1.18708,0,0,0.5,0
1713933435.273099662,2.09688,-0.937129,1.47948,2.09168,-0.819874,1.2536,0,0,0,0
1713933435.973163119,2.0207,-0.607461,2.93422,2.09318,-0.808191,1.41635,0,0.111111,0.322105,0.0738894
1713933436.123329524,2.0207,-0.607461,2.93422,2.09343,-0.797577,1.46036,0,0.111111,0.284211,0.0738894
1713933436.273475229,2.0207,-0.607461,2.93422,2.09386,-0.79719,1.49901,0,0.111111,0.36,0.0738894
1713933436.423620351,2.0207,-0.607461,2.93422,2.10338,-0.775939,1.55371,0,0.0888889,0.246316,0.0738894
1713933436.573763432,2.0207,-0.607461,2.93422,2.10332,-0.765681,1.58844,0,0.0888889,0.322105,0.0738894
1713933436.723906514,2.0207,-0.607461,2.93422,2.10386,-0.754985,1.61864,0,0.0888889,0.284211,0.0738894
1713933436.874051636,2.0207,-0.607461,2.93422,2.10466,-0.744146,1.66282,0,0.111111,0.322105,0.0738894
1713933437.024194717,2.0207,-0.607461,2.93422,2.10472,-0.733784,1.69402,0,0,0.5,0.0738894
1713933437.174349460,2.0207,-0.607461,2.93422,2.09413,-0.723536,1.72699,0,0,0.5,0.0738894
1713933437.324492833,2.0207,-0.607461,2.93422,2.09344,-0.713196,1.77789,0,0,0.5,0.0738894
1713933437.474634165,2.0207,-0.607461,2.93422,2.0927,-0.702891,1.81862,0,0,0.5,0.0738894
1713933437.624747509,2.0207,-0.607461,2.93422,2.09211,-0.702271,1.86469,0,0,0.5,0.0738894
1713933437.775003998,2.0207,-0.607461,2.93422,2.09182,-0.701991,1.91601,0,0,0.5,0.0738894
1713933437.925299552,2.0207,-0.607461,2.93422,2.0921,-0.691848,1.9735,0,0,0.5,0.0738894
1713933438.075586361,2.0207,-0.607461,2.93422,2.09288,-0.691836,2.04325,0,0,0.5,0.0738894
1713933438.225857718,2.0207,-0.607461,2.93422,2.09418,-0.691665,2.10417,0,0,0.5,0.0738894
1713933438.376129366,2.0207,-0.607461,2.93422,2.09469,-0.691586,2.15351,0,0,0.5,0.0738894
1713933438.526420256,2.0207,-0.607461,2.93422,2.09607,-0.691311,2.22484,0,0,0.5,0.0738894
1713933438.676731553,2.0207,-0.607461,2.93422,2.0866,-0.69169,2.29915,0,0,0.5,0.0738894
1713933438.827005534,2.0207,-0.607461,2.93422,2.08706,-0.69145,2.3602,0,0,0.5,0.0738894
1713933438.977277182,2.0207,-0.607461,2.93422,2.08718,-0.691334,2.42376,0,0,0.5,0.0738894
1713933439.127545916,2.0207,-0.607461,2.93422,2.08734,-0.691295,2.49724,0,0,0.5,0.0738894
1713933439.277812316,2.0207,-0.607461,2.93422,2.08695,-0.685712,2.5635,0,0,0.5,0.0738894
1713933439.428081341,2.0207,-0.607461,2.93422,2.08616,-0.680845,2.64211,0,0,0.5,0.0738894
1713933439.578358237,2.0207,-0.607461,2.93422,2.08563,-0.680788,2.70299,0,0,0,0.0738894
1713933440.357143550,1.70036,-0.551529,3.17965,2.0813,-0.679743,2.83648,0,0.177778,0.0189474,0.84375
1713933441.212730667,1.40084,-0.568617,3.17966,1.96141,-0.653459,2.89773,0,0.2,0.0947368,0.999997
1713933442.061927326,1.10133,-0.585707,3.17965,1.82582,-0.617535,2.94775,0,0.2,0.0947368,0.999997
1713933442.807158660,0.801818,-0.602795,3.17965,1.68616,-0.6002,3.00024,0,0.2,0.132632,1
1713933443.609350478,0.502306,-0.619884,3.17965,1.53639,-0.58136,3.07995,0,0.2,0.0189474,1
1713933443.759621252,0.502306,-0.619884,3.17965,1.51045,-0.581741,3.09506,0,0.2,0.0189474,1
1713933443.909886779,0.502306,-0.619884,3.17965,1.47557,-0.572231,3.10968,0,0.2,0,1
1713933444.716156886,0.202793,-0.636972,3.17965,1.32329,-0.565974,3.12824,0,0.2,0,1
1713933444.866429701,0.202793,-0.636972,3.17965,1.29297,-0.566797,3.12855,0,0.2,0,1
1713933445.016687647,0.202793,-0.636972,3.17965,1.26245,-0.567538,3.1289,0,0.2,0,1
1713933445.166993988,0.202793,-0.636972,3.17965,1.23221,-0.568457,3.12866,0,0.2,0,1
1713933445.317255725,0.202793,-0.636972,3.17965,1.20172,-0.568932,3.13012,0,0.2,0,1
1713933445.467538160,0.202793,-0.636972,3.17965,1.18148,-0.569683,3.1301,0,0.2,0,1
1713933446.263709772,-0.0967223,-0.65406,3.17966,1.02046,-0.565228,3.13038,0,0.2,0,0.999997
1713933446.413864514,-0.0967223,-0.65406,3.17966,0.990501,-0.566295,3.12921,0,0.2,0,0.999997
1713933446.564011969,-0.0967223,-0.65406,3.17966,0.960668,-0.56738,3.1294,0,0.2,0,0.999997
1713933446.714150094,-0.0967223,-0.65406,3.17966,0.930545,-0.562608,3.13097,0,0.2,0,0.999997
1713933446.864293467,-0.0967223,-0.65406,3.17966,0.910542,-0.55948,3.13137,0,0.2,0,0.999997
1713933447.014401272,-0.0967223,-0.65406,3.17966,0.880593,-0.560835,3.13177,0,0.2,0,0.999997
1713933447.829161183,-0.396234,-0.67115,3.17965,0.730183,-0.567126,3.13557,0,0.2,0,0.999997
1713933447.979308929,-0.396234,-0.67115,3.17965,0.689651,-0.55889,3.13526,0,0.2,0,0.999997
1713933448.129496324,-0.396234,-0.67115,3.17965,0.659231,-0.560186,3.13585,0,0.2,0,0.999997
1713933448.279815784,-0.396234,-0.67115,3.17965,0.638964,-0.560933,3.13662,0,0.2,0,0.999997
1713933448.430095887,-0.396234,-0.67115,3.17965,0.59849,-0.562598,3.13648,0,0.2,0,0.999997
1713933448.580424677,-0.396234,-0.67115,3.17965,0.577855,-0.563457,3.14022,0,0.2,0,0.999997
1713933449.273414026,-0.695746,-0.688238,3.17965,0.446003,-0.559058,3.14155,0,0.2,0,1
1713933449.423557691,-0.695746,-0.688238,3.17965,0.405614,-0.560739,-3.1414,0,0.2,0,1
1713933449.573703396,-0.695746,-0.688238,3.17965,0.375356,-0.561686,-3.14056,0,0.2,0,1
1713933449.723847352,-0.695746,-0.688238,3.17965,0.355227,-0.562435,-3.14069,0,0.2,0,1
1713933449.873985186,-0.695746,-0.688238,3.17965,0.325082,-0.563595,-3.14029,0,0.2,0,1
1713933450.024130891,-0.695746,-0.688238,3.17965,0.284823,-0.565085,-3.14064,0,0.2,0.0568421,1
1713933450.876925681,-0.99526,-0.705327,3.17965,0.142797,-0.559793,-3.1337,0,0.2,0.0568421,1
1713933451.027194706,-0.99526,-0.705327,3.17965,0.11263,-0.560834,-3.12641,0,0.2,0.0568421,1
1713933451.177501047,-0.99526,-0.705327,3.17965,0.0745361,-0.561933,-3.11783,0,0.2,0.0568421,1
1713933451.327763658,-0.99526,-0.705327,3.17965,0.0521104,-0.562744,-3.11335,0,0.2,0.0189474,1
1713933451.477914610,-0.99526,-0.705327,3.17965,0.021706,-0.563659,-3.10554,0,0.2,0.0189474,1
1713933451.628066729,-0.99526,-0.705327,3.17965,-0.00849664,-0.564852,-3.09898,0,0.2,0,1
1713933452.500333754,-1.29477,-0.722415,3.17966,-0.170157,-0.571564,-3.08179,0,0.2,-0.0568421,0.999997
1713933452.650656130,-1.29477,-0.722415,3.17966,-0.210265,-0.573418,-3.08517,0,0.2,0,0.999997
1713933452.800918741,-1.29477,-0.722415,3.17966,-0.240018,-0.584523,-3.08899,0,0.2,-0.0189474,0.999997
1713933452.951215461,-1.29477,-0.722415,3.17966,-0.265416,-0.58547,-3.09137,0,0.2,-0.0189474,0.999997
1713933453.101484777,-1.29477,-0.722415,3.17966,-0.290293,-0.586535,-3.09513,0,0.2,-0.0189474,0.999997
1713933453.251763131,-1.29477,-0.722415,3.17966,-0.330428,-0.58816,-3.09744,0,0.2,-0.0189474,0.999997
1713933454.049258605,-1.44453,-0.730961,3.17965,-0.471676,-0.593372,-3.0944,0,0.2,-0.0189474,0.999994
1713933454.897071055,1.74827,-0.530682,-0.21701,-0.643274,-0.599663,-3.08479,0,0.0666667,-0.0947368,0
1713933455.047338913,1.74827,-0.530682,-0.21701,-0.663498,-0.600273,-3.08645,0,0.0666667,-0.0947368,0
1713933455.197605897,1.74827,-0.530682,-0.21701,-0.674197,-0.600022,-3.09006,0,0.0666667,-0.0947368,0
1713933455.347917486,1.74827,-0.530682,-0.21701,-0.684353,-0.600392,-3.09195,0,0.0666667,-0.0947368,0
1713933455.498220912,1.74827,-0.530682,-0.21701,-0.694889,-0.600509,-3.10034,0,0.0666667,-0.0947368,0
1713933455.648535708,1.74827,-0.530682,-0.21701,-0.705129,-0.600867,-3.1066,0,0.0666667,0.0568421,0
1713933455.798848462,1.74827,-0.530682,-0.21701,-0.715758,-0.600941,-3.11754,0,0.0666667,0,0
1713933455.949113114,1.74827,-0.530682,-0.21701,-0.732974,-0.60162,-3.12707,0,0.0666667,0,0
1713933456.099254155,1.74827,-0.530682,-0.21701,-0.736553,-0.601527,-3.12903,0,0.0666667,0,0
1713933456.261946670,1.74827,-0.530682,-0.21701,-0.746781,-0.601911,-3.13741,0,0.0666667,0,0
1713933456.412118905,1.74827,-0.530682,-0.21701,-0.757396,-0.601926,-3.14151,0,0.0666667,0,0
1713933456.562267526,1.74827,-0.530682,-0.21701,-0.767646,-0.602211,3.13751,0,0.0666667,0.0189474,0
1713933456.712418479,1.74827,-0.530682,-0.21701,-0.778005,-0.60239,3.13498,0,0.0666667,0.0189474,0
1713933456.862577011,1.74827,-0.530682,-0.21701,-0.788323,-0.602405,3.13264,0,0.0666667,0,0
1713933457.012724466,1.74827,-0.530682,-0.21701,-0.798465,-0.602784,3.13568,0,0.0666667,0,0
1713933457.162868130,1.74827,-0.530682,-0.21701,-0.808791,-0.602886,3.13751,0,0.0666667,0,0
1713933457.313012961,1.74827,-0.530682,-0.21701,-0.818979,-0.603191,3.13877,0,0.0666667,0,0
1713933457.463160123,1.74827,-0.530682,-0.21701,-0.81933,-0.60319,3.13898,0,0.0666667,0,0
1713933457.613305246,1.74827,-0.530682,-0.21701,-0.829474,-0.60376,3.13866,0,0.0666667,0,0
1713933457.763452117,1.74827,-0.530682,-0.21701,-0.83962,-0.604249,3.14092,0,0.0666667,0,0
1713933457.913598697,1.74827,-0.530682,-0.21701,-0.849832,-0.604467,3.14012,0,0.0666667,0,0
1713933458.063749941,1.74827,-0.530682,-0.21701,-0.860055,-0.604597,3.14056,0,0.0666667,0,0
1713933458.213891565,1.74827,-0.530682,-0.21701,-0.870163,-0.604951,3.14093,0,0.0666667,0.132632,0
1713933458.364036978,1.74827,-0.530682,-0.21701,-0.870777,-0.595193,-3.14075,0,0.0666667,0.0568421,0
1713933458.514178019,1.74827,-0.530682,-0.21701,-0.880936,-0.595495,-3.13877,0,0.0666667,0.0568421,0
1713933458.664325473,1.74827,-0.530682,-0.21701,-0.891057,-0.595956,-3.13621,0,0.0666667,-0.0568421,0
1713933458.814470595,1.74827,-0.530682,-0.21701,-0.901369,-0.596326,-3.13073,0,0.0666667,-0.0568421,0
1713933458.964610761,1.74827,-0.530682,-0.21701,-0.911434,-0.596623,-3.12304,0,0.0666667,-0.170526,0
1713933459.114751219,1.74827,-0.530682,-0.21701,-0.921536,-0.597279,-3.11838,0,0.0666667,-0.170526,0
1713933459.264894300,1.74827,-0.530682,-0.21701,-0.931747,-0.597838,-3.12252,0,0.0666667,-0.0568421,0
1713933459.415036798,1.74827,-0.530682,-0.21701,-0.941877,-0.598356,-3.12974,0,0.0666667,-0.0568421,0
1713933459.565179880,1.74827,-0.530682,-0.21701,-0.948942,-0.599123,-3.13818,0,0.0666667,-0.0568421,0
1713933459.715324710,1.74827,-0.530682,-0.21701,-0.952251,-0.599216,-3.14072,0,0.0666667,-0.0568421,0
1713933459.865469249,1.74827,-0.530682,-0.21701,-0.962551,-0.599504,3.13526,0,0.0666667,-0.132632,0
1713933460.015614663,1.74827,-0.530682,-0.21701,-0.972681,-0.59998,3.12675,0,0.0666667,-0.132632,0
1713933460.165765033,1.74827,-0.530682,-0.21701,-0.982763,-0.600521,3.11757,0,0.0666667,-0.0568421,0
1713933460.315905199,1.74827,-0.530682,-0.21701,-0.993085,-0.601014,3.10623,0,0.0666667,-0.0189474,0
1713933460.466053819,1.74827,-0.530682,-0.21701,-1.00326,-0.601464,3.09683,0,0.0666667,-0.0189474,0
1713933460.616199233,1.74827,-0.530682,-0.21701,-1.0135,-0.601949,3.09056,0,0.0666667,-0.0189474,0
1713933460.766337941,1.74827,-0.530682,-0.21701,-1.0212,-0.602425,3.08453,0,0.0666667,0.0568421,0
1713933460.916478690,1.74827,-0.530682,-0.21701,-1.02389,-0.602507,3.07991,0,0.0666667,0.0947368,0
1713933461.066623812,1.74827,-0.530682,-0.21701,-1.03428,-0.602506,3.07595,0,0.0666667,0.0947368,0
1713933461.216765144,1.74827,-0.530682,-0.21701,-1.04464,-0.597694,3.08207,0,0.0666667,0.0568421,0
1713933461.366908226,1.74827,-0.530682,-0.21701,-1.05525,-0.593459,3.08409,0,0.0666667,0.0568421,0
1713933461.517049849,1.74827,-0.530682,-0.21701,-1.06541,-0.593984,3.08924,0,0.0666667,0.0947368,0
1713933461.667190598,1.74827,-0.530682,-0.21701,-1.07292,-0.594366,3.09116,0,0.0666667,-0.0189474,0
1713933461.817338344,1.74827,-0.530682,-0.21701,-1.07613,-0.594427,3.09943,0,0.0666667,-0.0189474,0
1713933461.967482300,1.74827,-0.530682,-0.21701,-1.08668,-0.594491,3.10614,0,0.0666667,-0.0189474,0
1713933462.117623924,1.74827,-0.530682,-0.21701,-1.09689,-0.594866,3.11057,0,0.0666667,-0.0189474,0
1713933462.267769337,1.74827,-0.530682,-0.21701,-1.10717,-0.594903,3.11488,0,0.0666667,-0.132632,0
1713933462.417910378,1.74827,-0.530682,-0.21701,-1.11735,-0.595317,3.11919,0,0.0666667,-0.0568421,0
1713933462.568042381,1.74827,-0.530682,-0.21701,-1.12747,-0.595688,3.11957,0,0.0666667,-0.0189474,0
1713933462.718181964,1.74827,-0.530682,-0.21701,-1.13783,-0.595998,3.10672,0,0.0666667,-0.0189474,0
1713933462.868326211,1.74827,-0.530682,-0.21701,-1.14536,-0.59603,3.09881,0,0.0666667,-0.0189474,0
1713933463.018474249,1.74827,-0.530682,-0.21701,-1.14854,-0.596052,3.09681,0,0.0666667,-0.0189474,0
1713933463.168634822,1.74827,-0.530682,-0.21701,-1.15869,-0.596462,3.09299,0,0.0666667,-0.0947368,0
1713933463.318783443,1.74827,-0.530682,-0.21701,-1.16918,-0.596513,3.09378,0,0.0666667,-0.0947368,0
1713933463.468949264,1.74827,-0.530682,-0.21701,-1.18017,-0.586497,3.08862,0,0.0666667,-0.0189474,0
1713933463.619094386,1.74827,-0.530682,-0.21701,-1.19034,-0.58687,3.08503,0,0.0666667,0,0
1713933463.769235427,1.74827,-0.530682,-0.21701,-1.20068,-0.587417,3.08009,0,0.0666667,0,0
1713933463.919398332,1.74827,-0.530682,-0.21701,-1.21089,-0.587724,3.07868,0,0.0666667,0,0
1713933464.069685724,1.74827,-0.530682,-0.21701,-1.21111,-0.587543,3.07927,0,0.0666667,-0.0947368,0
1713933464.219835802,1.74827,-0.530682,-0.21701,-1.22149,-0.587821,3.07707,0,0.0666667,0,0
1713933464.369990545,1.74827,-0.530682,-0.21701,-1.232,-0.587783,3.07297,0,0.0666667,0,0
1713933464.520141498,1.74827,-0.530682,-0.21701,-1.24204,-0.588257,3.06459,0,0.0666667,0,0
1713933464.670291284,1.74827,-0.530682,-0.21701,-1.25251,-0.588567,3.05823,0,0.0666667,0,0
1713933464.820436989,1.74827,-0.530682,-0.21701,-1.26265,-0.588698,3.05738,0,0.0666667,0.0189474,0
1713933464.970580945,1.74827,-0.530682,-0.21701,-1.27357,-0.578737,3.0556,0,0.0666667,0.0189474,0
1713933465.120724318,1.74827,-0.530682,-0.21701,-1.28371,-0.579038,3.05422,0,0.0666667,0.0189474,0
1713933465.270872647,1.74827,-0.530682,-0.21701,-1.28403,-0.578969,3.05431,0,0.0666667,0.0189474,0
1713933465.421016603,1.74827,-0.530682,-0.21701,-1.29414,-0.579367,3.0538,0,0.0666667,0.0189474,0
1713933465.571163183,1.74827,-0.530682,-0.21701,-1.30462,-0.579512,3.05752,0,0.0666667,-0.0568421,0
1713933465.721307722,1.74827,-0.530682,-0.21701,-1.31481,-0.57994,3.05887,0,0.0666667,0.0189474,0
1713933465.871446139,1.74827,-0.530682,-0.21701,-1.32519,-0.580112,3.06008,0,0.0666667,0.0189474,0
1713933466.021593885,1.74827,-0.530682,-0.21701,-1.33534,-0.580628,3.05742,0,0.0666667,0.0189474,0
1713933466.171759123,1.74827,-0.530682,-0.21701,-1.33577,-0.580156,3.05691,0,0.0666667,0.0568421,0
1713933466.321903078,1.74827,-0.530682,-0.21701,-1.3465,-0.570424,3.05284,0,0.0666667,0.0568421,0
1713933466.472050824,1.74827,-0.530682,-0.21701,-1.35689,-0.570271,3.05294,0,0.0666667,0.0568421,0
1713933466.622193031,1.74827,-0.530682,-0.21701,-1.36703,-0.570413,3.05954,0,0.0666667,0.0568421,0
1713933466.772340777,1.74827,-0.530682,-0.21701,-1.37735,-0.570457,3.06767,0,0.0666667,0.0189474,0
1713933466.922486482,1.74827,-0.530682,-0.21701,-1.38745,-0.57072,3.06972,0,0.0666667,0.0189474,0
1713933467.072625774,1.74827,-0.530682,-0.21701,-1.39784,-0.570796,3.07392,0,0.0666667,0.0189474,0
1713933467.222775560,1.74827,-0.530682,-0.21701,-1.39805,-0.570506,3.076,0,0.0666667,0.0189474,0
1713933467.372919808,1.74827,-0.530682,-0.21701,-1.40825,-0.570583,3.07473,0,0.0666667,-0.0568421,0
1713933467.523061140,1.74827,-0.530682,-0.21701,-1.41838,-0.570878,3.07869,0,0.0666667,0.0189474,0
1713933467.673175359,1.74827,-0.530682,-0.21701,-1.42913,-0.560972,3.08065,0,0.0666667,-0.0189474,0
1713933467.823324854,1.74827,-0.530682,-0.21701,-1.43923,-0.561395,3.0775,0,0.0666667,0.0568421,0
1713933467.973469685,1.74827,-0.530682,-0.21701,-1.44951,-0.561413,3.07645,0,0.0666667,0.0568421,0
1713933468.123611308,1.74827,-0.530682,-0.21701,-1.45964,-0.561757,3.07575,0,0.0666667,0.0568421,0
1713933468.273753807,1.74827,-0.530682,-0.21701,-1.45992,-0.561693,3.08088,0,0.0666667,0.0189474,0
1713933468.423896013,1.74827,-0.530682,-0.21701,-1.4701,-0.561934,3.08988,0,0.0666667,0.0189474,0
1713933468.574045217,1.74827,-0.530682,-0.21701,-1.48028,-0.562262,3.0948,0,0.0666667,0.0189474,0
1713933468.724188007,1.74827,-0.530682,-0.21701,-1.49045,-0.562433,3.09486,0,0.0666667,0.0189474,0
1713933468.874320010,1.74827,-0.530682,-0.21701,-1.50059,-0.562899,3.0972,0,0.0666667,0.0189474,0
1713933469.024462508,1.74827,-0.530682,-0.21701,-1.51059,-0.563295,3.09772,0,0.0666667,0.0189474,0
1713933469.174608505,1.74827,-0.530682,-0.21701,-1.52075,-0.563539,3.10012,0,0.0666667,0.0189474,0
1713933469.324751586,1.74827,-0.530682,-0.21701,-1.53092,-0.563727,3.10088,0,0.0666667,0.0189474,0
1713933469.474906329,1.74827,-0.530682,-0.21701,-1.54112,-0.563883,3.10263,0,0.0666667,0.0568421,0
1713933469.625048827,1.74827,-0.530682,-0.21701,-1.54168,-0.553976,3.10232,0,0.0666667,0.0568421,0
1713933469.775186952,1.74827,-0.530682,-0.21701,-1.55197,-0.554055,3.10497,0,0.0666667,0.0189474,0
1713933469.925329159,1.74827,-0.530682,-0.21701,-1.56207,-0.554367,3.11196,0,0.0666667,0.0189474,0
1713933470.075465827,1.74827,-0.530682,-0.21701,-1.57227,-0.554616,3.1195,0,0.0666667,0.0189474,0
1713933470.225610366,1.74827,-0.530682,-0.21701,-1.58238,-0.554992,3.12636,0,0.0666667,0.0189474,0
1713933470.375753156,1.74827,-0.530682,-0.21701,-1.59252,-0.555266,3.13018,0,0.0666667,0,0
1713933470.525899735,1.74827,-0.530682,-0.21701,-1.59261,-0.554961,3.1309,0,0.0666667,0,0
1713933470.676057393,1.74827,-0.530682,-0.21701,-1.6027,-0.55543,3.13214,0,0.0666667,0,0
1713933470.826201932,1.74827,-0.530682,-0.21701,-1.61267,-0.556001,3.13428,0,0.0666667,0,0
1713933470.976344722,1.74827,-0.530682,-0.21701,-1.62275,-0.556468,3.13128,0,0.0666667,0,0
1713933471.126489261,1.74827,-0.530682,-0.21701,-1.63275,-0.556858,3.13133,0,0.0666667,0,0
1713933471.276637882,1.74827,-0.530682,-0.21701,-1.64262,-0.557496,3.13259,0,0.0666667,0,0
1713933471.426915944,1.74827,-0.530682,-0.21701,-1.65261,-0.557996,3.13307,0,0.0666667,0,0
1713933471.577180596,1.74827,-0.530682,-0.21701,-1.65264,-0.557892,3.13509,0,0.0666667,0,0
1713933471.727442623,1.74827,-0.530682,-0.21701,-1.67265,-0.558841,3.13492,0,0.0666667,0,0
1713933471.877717770,1.74827,-0.530682,-0.21701,-1.67848,-0.559156,3.13576,0,0.0666667,0,0
1713933472.028034024,1.74827,-0.530682,-0.21701,-1.68261,-0.55941,3.13502,0,0.0666667,0,0
1713933472.178283515,1.74827,-0.530682,-0.21701,-1.69256,-0.559823,3.13727,0,0.0666667,0,0
1713933472.328544086,1.74827,-0.530682,-0.21701,-1.70243,-0.560483,3.13527,0,0.0666667,0,0
1713933472.478810486,1.74827,-0.530682,-0.21701,-1.71246,-0.560926,3.13528,0,0.0666667,0.0189474,0
1713933472.629080969,1.74827,-0.530682,-0.21701,-1.72298,-0.551697,3.1369,0,0.0666667,0.0189474,0
1713933472.779312385,1.74827,-0.530682,-0.21701,-1.72298,-0.551478,3.13552,0,0.0666667,0.0189474,0
1713933472.929579078,1.74827,-0.530682,-0.21701,-1.73991,-0.552003,3.13383,0,0.0666667,0.0189474,0
1713933473.079842272,1.74827,-0.530682,-0.21701,-1.74302,-0.552248,3.13315,0,0.0666667,0.0189474,0
1713933473.230109255,1.74827,-0.530682,-0.21701,-1.753,-0.552669,3.13194,0,0.0666667,0.0189474,0
1713933473.380366327,1.74827,-0.530682,-0.21701,-1.76302,-0.552993,3.1346,0,0.0666667,0.0189474,0
1713933473.530622233,1.74827,-0.530682,-0.21701,-1.77299,-0.553475,3.1356,0,0.0666667,0,0
1713933473.680897380,1.74827,-0.530682,-0.21701,-1.78298,-0.553897,3.13774,0,0.0666667,0,0
1713933473.831175150,1.74827,-0.530682,-0.21701,-1.79296,-0.554185,3.13463,0,0.0666667,0,0
1713933473.981537466,1.74827,-0.530682,-0.21701,-1.79292,-0.55397,3.13909,0,0.0666667,0,0
1713933474.131789290,1.74827,-0.530682,-0.21701,-1.80284,-0.554504,3.1384,0,0.0666667,0,0
1713933474.282057440,1.74827,-0.530682,-0.21701,-1.81279,-0.554798,3.14078,0,0.0666667,0,0
1713933474.432325882,1.74827,-0.530682,-0.21701,-1.82275,-0.555276,-3.14049,0,0.0666667,0,0
1713933474.582591700,1.74827,-0.530682,-0.21701,-1.83278,-0.555588,-3.13957,0,0.0666667,0,0
1713933474.732867721,1.74827,-0.530682,-0.21701,-1.84271,-0.556454,3.14014,0,0.0666667,0,0
1713933474.883126251,1.74827,-0.530682,-0.21701,-1.85263,-0.556972,-3.14117,0,0.0666667,0,0
1713933475.033393526,1.74827,-0.530682,-0.21701,-1.85263,-0.556724,-3.14131,0,0.0666667,0,0
1713933475.183656137,1.74827,-0.530682,-0.21701,-1.86264,-0.556719,-3.13979,0,0.0666667,0,0
1713933475.333915249,1.74827,-0.530682,-0.21701,-1.87266,-0.557349,-3.13886,0,0.0666667,0,0
1713933475.484180776,1.74827,-0.530682,-0.21701,-1.88275,-0.557488,-3.13845,0,0.0666667,0,0
1713933475.634428227,1.74827,-0.530682,-0.21701,-1.89275,-0.557772,-3.13609,0,0.0666667,0,0
1713933475.784698417,1.74827,-0.530682,-0.21701,-1.90293,-0.557815,-3.14,0,0.0666667,0,0
1713933475.934971232,1.74827,-0.530682,-0.21701,-1.91303,-0.558109,3.14033,0,0.0666667,0,0
1713933476.085120727,1.74827,-0.530682,-0.21701,-1.92314,-0.557916,3.13896,0,0.0666667,0,0
1713933476.235262059,1.74827,-0.530682,-0.21701,-1.93318,-0.558404,3.14129,0,0.0666667,0.0568421,0
1713933476.385396978,1.74827,-0.530682,-0.21701,-1.93389,-0.54816,-3.13971,0,0.0666667,0.0568421,0
1713933476.535537144,1.74827,-0.530682,-0.21701,-1.94397,-0.548538,-3.14073,0,0.0666667,0.0189474,0
1713933476.685674103,1.74827,-0.530682,-0.21701,-1.95414,-0.5486,-3.13845,0,0.0666667,-0.0568421,0
1713933476.835819516,1.74827,-0.530682,-0.21701,-1.96422,-0.54876,-3.13586,0,0.0666667,-0.0568421,0
1713933476.985966096,1.74827,-0.530682,-0.21701,-1.97439,-0.548811,-3.13405,0,0.0666667,-0.0568421,0
1713933477.136108303,1.74827,-0.530682,-0.21701,-1.98448,-0.548876,-3.13397,0,0.0666667,-0.0568421,0
1713933477.286252550,1.74827,-0.530682,-0.21701,-1.98472,-0.548137,-3.13617,0,0.0666667,-0.0568421,0
1713933477.436414581,1.74827,-0.530682,-0.21701,-1.99484,-0.548444,3.13704,0,0.0666667,-0.0568421,0
1713933477.586559120,1.74827,-0.530682,-0.21701,-2.01016,-0.548735,3.13194,0,0.0666667,-0.0568421,0
1713933477.736698703,1.74827,-0.530682,-0.21701,-2.01508,-0.548619,3.12965,0,0.0666667,-0.0568421,0
1713933477.886835954,1.74827,-0.530682,-0.21701,-2.02541,-0.548107,3.12405,0,0.0666667,-0.0568421,0
1713933478.036974954,1.74827,-0.530682,-0.21701,-2.03554,-0.548061,3.11859,0,0.0666667,-0.0189474,0
1713933478.187123283,1.74827,-0.530682,-0.21701,-2.04585,-0.547568,3.11141,0,0.0666667,-0.0189474,0
1713933478.337258493,1.74827,-0.530682,-0.21701,-2.056,-0.54772,3.10596,0,0.0666667,-0.0189474,0
1713933478.487394869,1.74827,-0.530682,-0.21701,-2.05632,-0.546969,3.10458,0,0.0666667,-0.0947368,0
1713933478.637530662,1.74827,-0.530682,-0.21701,-2.06641,-0.547227,3.09867,0,0.0666667,-0.0189474,0
1713933478.787679574,1.74827,-0.530682,-0.21701,-2.07678,-0.546801,3.09572,0,0.0666667,-0.0189474,0
1713933478.937815950,1.74827,-0.530682,-0.21701,-2.08693,-0.546914,3.08999,0,0.0666667,-0.0189474,0
1713933479.087960780,1.74827,-0.530682,-0.21701,-2.09789,-0.536712,3.08324,0,0.0666667,0,0
1713933479.238102987,1.74827,-0.530682,-0.21701,-2.10806,-0.536814,3.07832,0,0.0666667,-0.0568421,0
1713933479.388252482,1.74827,-0.530682,-0.21701,-2.11862,-0.535965,3.07546,0,0.0666667,-0.0568421,0
1713933479.538403435,1.74827,-0.530682,-0.21701,-2.12888,-0.536034,3.06736,0,0.0666667,0,0
1713933479.688544475,1.74827,-0.530682,-0.21701,-2.13492,-0.535123,3.06516,0,0.0666667,-0.0568421,0
1713933479.838683184,1.74827,-0.530682,-0.21701,-2.1464,-0.535117,3.06535,0,0.0666667,0,0
1713933479.988823641,1.74827,-0.530682,-0.21701,-2.14976,-0.53465,3.06374,0,0.0666667,0,0
1713933480.138962058,1.74827,-0.530682,-0.21701,-2.16003,-0.534521,3.06244,0,0.0666667,0.0189474,0
1713933480.289099600,1.74827,-0.530682,-0.21701,-2.1704,-0.534234,3.05911,0,0.0666667,0.0189474,0
1713933480.439240058,1.74827,-0.530682,-0.21701,-2.18054,-0.534149,3.05867,0,0.0666667,0.0568421,0
1713933480.589399174,1.74827,-0.530682,-0.21701,-2.18141,-0.523072,3.0552,0,0.0666667,0.0568421,0
1713933480.739543713,1.74827,-0.530682,-0.21701,-2.2016,-0.523686,3.06027,0,0.0666667,0.0568421,0
1713933480.889694082,1.74827,-0.530682,-0.21701,-2.20208,-0.52256,3.06175,0,0.0666667,0.0568421,0
1713933481.039841245,1.74827,-0.530682,-0.21701,-2.21227,-0.52242,3.06284,0,0.0666667,0.0568421,0
1713933481.189988991,1.74827,-0.530682,-0.21701,-2.22281,-0.521807,3.06535,0,0.0666667,0.0189474,0
1713933481.340131489,1.74827,-0.530682,-0.21701,-2.23307,-0.521614,3.06905,0,0.0666667,0.0189474,0
1713933481.490273405,1.74827,-0.530682,-0.21701,-2.24352,-0.521152,3.08501,0,0.0666667,0.0189474,0
1713933481.640414737,1.74827,-0.530682,-0.21701,-2.25375,-0.52127,3.09184,0,0.0666667,0,0
1713933481.790554320,1.74827,-0.530682,-0.21701,-2.25417,-0.520394,3.09631,0,0.0666667,0,0
1713933481.940694194,1.74827,-0.530682,-0.21701,-2.2647,-0.520063,3.09988,0,0.0666667,0,0
1713933482.090828238,1.74827,-0.530682,-0.21701,-2.27492,-0.519995,3.09897,0,0.0666667,0.0189474,0
1713933482.240969861,1.74827,-0.530682,-0.21701,-2.28578,-0.509971,3.09632,0,0.0666667,0.0189474,0
1713933482.391127811,1.74827,-0.530682,-0.21701,-2.29632,-0.508961,3.09841,0,0.0666667,0.0189474,0
1713933482.541271767,1.74827,-0.530682,-0.21701,-2.30652,-0.508884,3.09986,0,0.0666667,0.0189474,0
1713933482.691424761,1.74827,-0.530682,-0.21701,-2.31694,-0.508096,3.09944,0,0.0666667,0.0189474,0
1713933482.841686205,1.74827,-0.530682,-0.21701,-2.32721,-0.507783,3.09987,0,0.0666667,0.0568421,0
1713933482.991941236,1.74827,-0.530682,-0.21701,-2.33776,-0.506855,3.0961,0,0.0666667,0.0568421,0
1713933483.142195393,1.74827,-0.530682,-0.21701,-2.33797,-0.506201,3.09583,0,0.0666667,0.0568421,0
1713933483.292457420,1.74827,-0.530682,-0.21701,-2.34846,-0.505336,3.1018,0,0.0666667,0.0189474,0
1713933483.442742188,1.74827,-0.530682,-0.21701,-2.35864,-0.505185,3.1107,0,0.0666667,0.0189474,0
1713933483.593082930,1.74827,-0.530682,-0.21701,-2.36947,-0.503738,3.1125,0,0.0666667,0.0189474,0
1713933483.743355162,1.74827,-0.530682,-0.21701,-2.37984,-0.503502,3.11476,0,0.0666667,0.0189474,0
1713933483.893620105,1.74827,-0.530682,-0.21701,-2.38044,-0.502223,3.11576,0,0.0666667,0.0189474,0
1713933484.043882716,1.74827,-0.530682,-0.21701,-2.3908,-0.501887,3.12149,0,0.0666667,0.0189474,0
1713933484.194178270,1.74827,-0.530682,-0.21701,-2.40136,-0.500995,3.12484,0,0.0666667,0.170526,0
1713933484.344446420,1.74827,-0.530682,-0.21701,-2.41211,-0.490932,3.12455,0,0.0666667,0.170526,0
1713933484.494719526,1.74827,-0.530682,-0.21701,-2.42271,-0.489913,3.13363,0,0.0666667,0.0189474,0
1713933484.645033447,1.74827,-0.530682,-0.21701,-2.43303,-0.489521,-3.1395,0,0.0666667,-0.0568421,0
1713933484.795349701,1.74827,-0.530682,-0.21701,-2.44346,-0.488591,-3.12187,0,0.0666667,-0.0568421,0
1713933484.945665080,1.74827,-0.530682,-0.21701,-2.45378,-0.488265,-3.11787,0,0.0666667,-0.0568421,0
1713933485.095980458,1.74827,-0.530682,-0.21701,-2.4544,-0.486935,-3.11599,0,0.0666667,-0.0568421,0
1713933485.246266975,1.74827,-0.530682,-0.21701,-2.47465,-0.487037,-3.11679,0,0.0666667,-0.0568421,0
1713933485.396512385,1.74827,-0.530682,-0.21701,-2.47521,-0.485668,-3.11956,0,0.0666667,-0.0568421,0
1713933485.546768874,1.74827,-0.530682,-0.21701,-2.48548,-0.485428,-3.12293,0,0.0666667,-0.0568421,0
1713933485.697039356,1.74827,-0.530682,-0.21701,-2.49606,-0.484662,-3.13048,0,0.0666667,-0.0568421,0
1713933485.850013538,1.74827,-0.530682,-0.21701,-2.50678,-0.48321,-3.13672,0,0.0666667,-0.0189474,0
1713933486.000310259,1.74827,-0.530682,-0.21701,-2.51723,-0.482564,-3.14019,0,0.0666667,-0.132632,0
1713933486.150574910,1.74827,-0.530682,-0.21701,-2.51794,-0.480569,3.13857,0,0.0666667,-0.0189474,0
1713933486.300842186,1.74827,-0.530682,-0.21701,-2.5384,-0.480687,3.12931,0,0.0666667,-0.0189474,0
1713933486.451102756,1.74827,-0.530682,-0.21701,-2.5384,-0.480687,3.12547,0,0.0666667,-0.0189474,0

View File

@ -1 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez

View File

@ -1,600 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713946391.407236786,1.54995,0.507101,3.06359,0.0262545,0.022878,0.00119626,0,0.2,0.246316,0
1713946391.557602779,1.54995,0.507101,3.06359,0.0262425,0.0229408,0.00122676,0,0.2,0.246316,0
1713946391.707943106,1.54995,0.507101,3.06359,0.0263582,0.0228733,0.00123007,0,0.2,0.246316,0
1713946391.858350809,1.54995,0.507101,3.06359,0.0263278,0.02288,0.00128033,0,0.2,0.246316,0
1713946392.008863517,1.54995,0.507101,3.06359,0.0263559,0.0227965,0.00131727,0,0.2,0.246316,0
1713946392.159285222,1.54995,0.507101,3.06359,0.0263611,0.0228315,0.00133742,0,0.2,0.246316,0
1713946392.309673968,1.54995,0.507101,3.06359,0.0263716,0.0227205,0.00134968,0,0.2,0.246316,0
1713946392.460047255,1.54995,0.507101,3.06359,0.0263588,0.0226652,0.00130127,0,0.2,0.246316,0
1713946392.610370958,1.54995,0.507101,3.06359,0.0264039,0.0225586,0.00130606,0,0.2,0.246316,0
1713946392.760685034,1.54995,0.507101,3.06359,0.0264265,0.0224725,0.00127926,0,0.2,0.246316,0
1713946392.911051905,1.54995,0.507101,3.06359,0.0264008,0.0226094,0.00140226,0,0.2,0.246316,0
1713946393.061379691,1.54995,0.507101,3.06359,0.0265274,0.0224505,0.00135885,0,0.2,0.246316,0
1713946393.211689686,1.54995,0.507101,3.06359,0.0265527,0.0224455,0.00133145,0,0.2,0.246316,0
1713946393.361996764,1.54995,0.507101,3.06359,0.0265563,0.022463,0.00130453,0,0.2,0.246316,0
1713946393.512336801,1.54995,0.507101,3.06359,0.0265297,0.0226001,0.00131274,0,0.2,0.246316,0
1713946393.662647671,1.54995,0.507101,3.06359,0.0265341,0.0225139,0.00131292,0,0.2,0.246316,0
1713946393.812975750,1.54995,0.507101,3.06359,0.0266302,0.0223872,0.00143107,0,0.2,0.246316,0
1713946393.963272036,1.54995,0.507101,3.06359,0.026652,0.022333,0.00143675,0,0.2,0.246316,0
1713946394.113579698,1.54995,0.507101,3.06359,0.0266603,0.0222531,0.00149391,0,0.2,0.246316,0
1713946394.263883861,1.54995,0.507101,3.06359,0.0266646,0.0222274,0.00144679,0,0.2,0.246316,0
1713946394.414166731,1.54995,0.507101,3.06359,0.0268311,0.0221334,0.00133816,0,0.2,0.246316,0
1713946394.564467977,1.54995,0.507101,3.06359,0.0268348,0.0222635,0.00136235,0,0.2,0.246316,0
1713946394.714768348,1.54995,0.507101,3.06359,0.0268417,0.0221248,0.00124761,0,0.2,0.246316,0
1713946394.865062886,1.54995,0.507101,3.06359,0.0268629,0.0222578,0.00122572,0,0.2,0.246316,0
1713946395.015367924,1.54995,0.507101,3.06359,0.0269737,0.0222044,0.00119794,0,0.2,0.246316,0
1713946395.165690755,1.54995,0.507101,3.06359,0.0269765,0.0223092,0.00119477,0,0.2,0.246316,0
1713946395.315987919,1.54995,0.507101,3.06359,0.0269298,0.0223229,0.00111063,0,0.2,0.246316,0
1713946395.466278375,1.54995,0.507101,3.06359,0.0269154,0.0223905,0.00110309,0,0.2,0.246316,0
1713946395.616455951,1.54995,0.507101,3.06359,0.0269574,0.0223444,0.000991293,0,0.2,0.246316,0
1713946395.766616610,1.54995,0.507101,3.06359,0.0269251,0.0223528,0.000992653,0,0.2,0.246316,0
1713946395.916812854,1.54995,0.507101,3.06359,0.0269672,0.02221,0.000864862,0,0.2,0.246316,0
1713946396.067190230,1.54995,0.507101,3.06359,0.0269173,0.022153,0.000917947,0,0.2,0.246316,0
1713946396.217389683,1.54995,0.507101,3.06359,0.0268533,0.0222269,0.000939778,0,0.2,0.246316,0
1713946396.368780347,1.54995,0.507101,3.06359,0.026857,0.0222637,0.00086342,0,0.2,0.246316,0
1713946396.518968133,1.54995,0.507101,3.06359,0.0267762,0.022209,0.000900117,0,0.2,0.246316,0
1713946396.669192671,1.54995,0.507101,3.06359,0.0267269,0.0222146,0.000916514,0,0.2,0.246316,0
1713946396.819455711,1.54995,0.507101,3.06359,0.0268048,0.0221173,0.000888864,0,0.2,0.246316,0
1713946396.969769502,1.54995,0.507101,3.06359,0.0269499,0.0221359,0.000888875,0,0.2,0.246316,0
1713946397.120093211,1.54995,0.507101,3.06359,0.0270442,0.0221913,0.000893406,0,0.2,0.246316,0
1713946397.270371419,1.54995,0.507101,3.06359,0.0271701,0.0220888,0.000834099,0,0.2,0.246316,0
1713946397.420696296,1.54995,0.507101,3.06359,0.0271387,0.0221478,0.000783183,0,0.2,0.246316,0
1713946397.570996671,1.54995,0.507101,3.06359,0.0271412,0.0220944,0.000733946,0,0.2,0.246316,0
1713946397.721280713,1.54995,0.507101,3.06359,0.0272167,0.0219948,0.000644269,0,0.2,0.246316,0
1713946397.871560963,1.54995,0.507101,3.06359,0.0271309,0.0220886,0.000706784,0,0.2,0.246316,0
1713946398.021900715,1.54995,0.507101,3.06359,0.0270127,0.0221597,0.000781332,0,0.2,0.246316,0
1713946398.172206050,1.54995,0.507101,3.06359,0.0269275,0.0222926,0.000782777,0,0.2,0.246316,0
1713946398.322535595,1.54995,0.507101,3.06359,0.0268985,0.0223716,0.000825534,0,0.2,0.246316,0
1713946398.472938642,1.54995,0.507101,3.06359,0.0269195,0.0224421,0.000869207,0,0.2,0.246316,0
1713946398.623232894,1.54995,0.507101,3.06359,0.0270151,0.0225172,0.000867448,0,0.2,0.246316,0
1713946398.773544063,1.54995,0.507101,3.06359,0.0269476,0.0225782,0.000900635,0,0.2,0.246316,0
1713946398.923928735,1.54995,0.507101,3.06359,0.026901,0.0227735,0.000864662,0,0.2,0.246316,0
1713946399.074237280,1.54995,0.507101,3.06359,0.0269079,0.0228154,0.000910391,0,0.2,0.246316,0
1713946399.224539408,1.54995,0.507101,3.06359,0.0269646,0.0228223,0.000877928,0,0.2,0.246316,0
1713946399.374835703,1.54995,0.507101,3.06359,0.0269147,0.022826,0.000868322,0,0.2,0.246316,0
1713946399.525131415,1.54995,0.507101,3.06359,0.0268507,0.0229239,0.000808697,0,0.2,0.246316,0
1713946399.675417793,1.54995,0.507101,3.06359,0.0268012,0.0230206,0.00082393,0,0.2,0.246316,0
1713946399.825723422,1.54995,0.507101,3.06359,0.02672,0.0229082,0.000854507,0,0.2,0.246316,0
1713946399.976031384,1.54995,0.507101,3.06359,0.026741,0.0228589,0.000748883,0,0.2,0.246316,0
1713946400.126343722,1.54995,0.507101,3.06359,0.0267843,0.022807,0.000784398,0,0.2,0.246316,0
1713946400.276696896,1.54995,0.507101,3.06359,0.026881,0.0229729,0.000817293,0,0.2,0.246316,0
1713946400.427050361,1.54995,0.507101,3.06359,0.0268846,0.0230385,0.000785859,0,0.2,0.246316,0
1713946400.577470329,1.54995,0.507101,3.06359,0.0269089,0.0232979,0.000776344,0,0.2,0.246316,0
1713946400.727883588,1.54995,0.507101,3.06359,0.0269121,0.0233964,0.000888882,0,0.2,0.246316,0
1713946400.878264179,1.54995,0.507101,3.06359,0.0269684,0.0234356,0.000851929,0,0.2,0.246316,0
1713946401.028728774,1.54995,0.507101,3.06359,0.0269228,0.0237125,0.000832261,0,0.2,0.246316,0
1713946401.179065032,1.54995,0.507101,3.06359,0.0270183,0.0236583,0.000871628,0,0.2,0.246316,0
1713946401.329368330,1.54995,0.507101,3.06359,0.0270215,0.0236905,0.00084548,0,0.2,0.246316,0
1713946401.479671920,1.54995,0.507101,3.06359,0.0270452,0.0239435,0.00086788,0,0.2,0.246316,0
1713946401.629960051,1.54995,0.507101,3.06359,0.027048,0.0240709,0.000841992,0,0.2,0.246316,0
1713946401.780294851,1.54995,0.507101,3.06359,0.0270154,0.0241359,0.000894748,0,0.2,0.246316,0
1713946401.930588524,1.54995,0.507101,3.06359,0.0270568,0.0242035,0.000901229,0,0.2,0.246316,0
1713946402.080892698,1.54995,0.507101,3.06359,0.0270948,0.0242712,0.000841676,0,0.2,0.246316,0
1713946402.231195706,1.54995,0.507101,3.06359,0.0271359,0.0243657,0.000822335,0,0.2,0.246316,0
1713946402.381481213,1.54995,0.507101,3.06359,0.0270679,0.0243927,0.00082565,0,0.2,0.246316,0
1713946402.531774305,1.54995,0.507101,3.06359,0.027126,0.0243407,0.000850323,0,0.2,0.246316,0
1713946402.682091897,1.54995,0.507101,3.06359,0.0271285,0.0242803,0.000828318,0,0.2,0.246316,0
1713946402.832394905,1.54995,0.507101,3.06359,0.0271518,0.0243719,0.000838606,0,0.2,0.246316,0
1713946402.982730581,1.54995,0.507101,3.06359,0.0272631,0.0245647,0.000854327,0,0.2,0.246316,0
1713946403.133059258,1.54995,0.507101,3.06359,0.0272299,0.0246252,0.000859083,0,0.2,0.246316,0
1713946403.283317641,1.54995,0.507101,3.06359,0.0271813,0.0245965,0.000860719,0,0.2,0.246316,0
1713946403.433614817,1.54995,0.507101,3.06359,0.0271839,0.0245633,0.000900977,0,0.2,0.246316,0
1713946403.583915201,1.54995,0.507101,3.06359,0.0272959,0.0245006,0.00095541,0,0.2,0.246316,0
1713946403.734361133,1.54995,0.507101,3.06359,0.0273325,0.0243561,0.00101781,0,0.2,0.246316,0
1713946403.884660934,1.54995,0.507101,3.06359,0.0273703,0.0242294,0.00100449,0,0.2,0.246316,0
1713946404.034969778,1.54995,0.507101,3.06359,0.0273216,0.0241095,0.00101784,0,0.2,0.246316,0
1713946404.185269289,1.54995,0.507101,3.06359,0.0273609,0.0240528,0.001072,0,0.2,0.246316,0
1713946404.335584842,1.54995,0.507101,3.06359,0.0273271,0.0241519,0.00108388,0,0.2,0.246316,0
1713946404.486019108,1.54995,0.507101,3.06359,0.0274017,0.0241603,0.00107219,0,0.2,0.246316,0
1713946404.636337286,1.54995,0.507101,3.06359,0.0274739,0.0241692,0.00106135,0,0.2,0.246316,0
1713946404.786632714,1.54995,0.507101,3.06359,0.0274944,0.0242368,0.0010081,0,0.2,0.246316,0
1713946404.936936308,1.54995,0.507101,3.06359,0.0274603,0.024208,0.00098113,0,0.2,0.246316,0
1713946405.087237570,1.54995,0.507101,3.06359,0.0273737,0.0242606,0.000961923,0,0.2,0.246316,0
1713946405.237529207,1.54995,0.507101,3.06359,0.0273422,0.024196,0.000976032,0,0.2,0.246316,0
1713946405.387907472,1.54995,0.507101,3.06359,0.0273109,0.0240729,0.000988587,0,0.2,0.246316,0
1713946405.538207568,1.54995,0.507101,3.06359,0.0274347,0.0239093,0.000935291,0,0.2,0.246316,0
1713946405.688550541,1.54995,0.507101,3.06359,0.0274719,0.0237874,0.000977423,0,0.2,0.246316,0
1713946405.838864929,1.54995,0.507101,3.06359,0.0274399,0.0238821,0.00107132,0,0.2,0.246316,0
1713946405.989172900,1.54995,0.507101,3.06359,0.0275491,0.024081,0.00106368,0,0.2,0.246316,0
1713946406.139476789,1.54995,0.507101,3.06359,0.0276029,0.024028,0.00110714,0,0.2,0.246316,0
1713946406.289775720,1.54995,0.507101,3.06359,0.0275524,0.0239505,0.00113785,0,0.2,0.246316,0
1713946406.440073483,1.54995,0.507101,3.06359,0.0275536,0.0239226,0.00124083,0,0.2,0.246316,0
1713946406.590382623,1.54995,0.507101,3.06359,0.0276093,0.0238044,0.00126541,0,0.2,0.246316,0
1713946406.740713346,1.54995,0.507101,3.06359,0.0275926,0.0237457,0.00125379,0,0.2,0.246316,0
1713946406.891070904,1.54995,0.507101,3.06359,0.0276302,0.0236915,0.00119301,0,0.2,0.246316,0
1713946407.041425545,1.54995,0.507101,3.06359,0.027648,0.0235495,0.00126343,0,0.2,0.246316,0
1713946407.191891317,1.54995,0.507101,3.06359,0.0276503,0.0236147,0.00129667,0,0.2,0.246316,0
1713946407.342283002,1.54995,0.507101,3.06359,0.0276512,0.0236812,0.00131055,0,0.2,0.246316,0
1713946407.492681105,1.54995,0.507101,3.06359,0.0276887,0.0236553,0.00134251,0,0.2,0.246316,0
1713946407.642958453,1.54995,0.507101,3.06359,0.0275838,0.0238116,0.00146517,0,0.2,0.246316,0
1713946407.793344305,1.54995,0.507101,3.06359,0.0276935,0.0239991,0.00145253,0,0.2,0.246316,0
1713946407.943744449,1.54995,0.507101,3.06359,0.0277831,0.0240364,0.00141932,0,0.2,0.246316,0
1713946408.094133510,1.54995,0.507101,3.06359,0.0277494,0.0240673,0.00143639,0,0.2,0.246316,0
1713946408.244524905,1.54995,0.507101,3.06359,0.0278022,0.0240487,0.00146255,0,0.2,0.246316,0
1713946408.394891800,1.54995,0.507101,3.06359,0.0276444,0.0241301,0.00146127,0,0.2,0.246316,0
1713946408.545222526,1.54995,0.507101,3.06359,0.0276453,0.0241016,0.00148403,0,0.2,0.246316,0
1713946408.695650673,1.54995,0.507101,3.06359,0.0275415,0.024101,0.00142422,0,0.2,0.246316,0
1713946408.845967399,1.54995,0.507101,3.06359,0.0275596,0.0240513,0.00148951,0,0.2,0.246316,0
1713946408.996274791,1.54995,0.507101,3.06359,0.0274568,0.0243273,0.00150588,0,0.2,0.246316,0
1713946409.146584226,1.54995,0.507101,3.06359,0.027511,0.0243976,0.00148856,0,0.2,0.246316,0
1713946409.296891037,1.54995,0.507101,3.06359,0.0274433,0.0245502,0.00154052,0,0.2,0.246316,0
1713946409.447199597,1.54995,0.507101,3.06359,0.027392,0.0247345,0.00165816,0,0.2,0.246316,0
1713946409.597559493,1.54995,0.507101,3.06359,0.02736,0.0248603,0.00165505,0,0.2,0.246316,0
1713946409.747871553,1.54995,0.507101,3.06359,0.0272212,0.0247635,0.00168082,0,0.2,0.246316,0
1713946409.898209865,1.54995,0.507101,3.06359,0.0271179,0.0247954,0.00170053,0,0.2,0.246316,0
1713946410.048509092,1.54995,0.507101,3.06359,0.0271053,0.0248561,0.0017557,0,0.2,0.246316,0
1713946410.198816779,1.54995,0.507101,3.06359,0.0270926,0.0248602,0.00181287,0,0.2,0.246316,0
1713946410.349112507,1.54995,0.507101,3.06359,0.02706,0.0249818,0.00192451,0,0.2,0.246316,0
1713946410.499419027,1.54995,0.507101,3.06359,0.0269772,0.0253192,0.00198673,0,0.177778,0.208421,0
1713946410.649737798,1.54995,0.507101,3.06359,0.0268566,0.0253968,0.00189698,0,0.177778,0.208421,0
1713946410.800037609,1.54995,0.507101,3.06359,0.026898,0.0251224,0.0019313,0,0.177778,0.208421,0
1713946410.950326629,1.54995,0.507101,3.06359,0.0268658,0.0250595,0.00195013,0,0.177778,0.208421,0
1713946411.100731153,1.54995,0.507101,3.06359,0.0269603,0.0248818,0.00197762,0,0.177778,0.208421,0
1713946411.251135679,1.54995,0.507101,3.06359,0.0269637,0.0249102,0.00202269,0,0,0,0
1713946411.401533787,1.54995,0.507101,3.06359,0.0269708,0.0249036,0.00203176,0,0.2,0.246316,0
1713946411.551942104,1.54995,0.507101,3.06359,0.0269033,0.0249661,0.0019994,0,0,1,0
1713946411.702341087,1.54995,0.507101,3.06359,0.0269454,0.024813,0.00211848,0,0,1,0
1713946411.852650234,1.54995,0.507101,3.06359,0.0267363,0.0249777,0.00201027,0,0,1,0
1713946412.002950630,1.54995,0.507101,3.06359,0.0267096,0.0249912,0.00203092,0,0,1,0
1713946412.153253362,1.54995,0.507101,3.06359,0.0266965,0.0251039,0.00170769,0,0,1,0
1713946412.303579427,1.54995,0.507101,3.06359,0.0266862,0.0248915,0.00258956,0,0,1,0
1713946412.453886242,1.54995,0.507101,3.06359,0.0266548,0.024951,0.00132579,0,0,1,0
1713946412.604209391,1.54995,0.507101,3.06359,0.0266984,0.0249824,0.00168291,0,0,1,0
1713946412.754601958,1.54995,0.507101,3.06359,0.0266845,0.0249824,0.00147834,0,0,1,0
1713946412.904956025,1.54995,0.507101,3.06359,0.0267098,0.0248921,0.00179767,0,0,1,0
1713946413.055247090,1.54995,0.507101,3.06359,0.0267655,0.0247186,0.00110847,0,0,1,0
1713946413.205567615,1.54995,0.507101,3.06359,0.0268975,0.0246612,0.00214713,0,0,1,0
1713946413.355883765,1.54995,0.507101,3.06359,0.0269179,0.0246995,0.00231307,0,0,1,0
1713946413.506189706,1.54995,0.507101,3.06359,0.0267839,0.0249715,0.00352422,0,0,1,0
1713946413.656559816,1.54995,0.507101,3.06359,0.0267698,0.0250338,0.00324677,0,0,1,0
1713946413.806824339,1.54995,0.507101,3.06359,0.0266362,0.0250335,0.00376651,0,0,1,0
1713946413.957225075,1.54995,0.507101,3.06359,0.0265873,0.024999,0.00475642,0,0,1,0
1713946414.107642730,1.54995,0.507101,3.06359,0.0264899,0.0250921,0.00456553,0,0,1,0
1713946414.258086344,1.54995,0.507101,3.06359,0.0264932,0.0249839,0.00377419,0,0,1,0
1713946414.408356702,1.54995,0.507101,3.06359,0.0264495,0.0250741,0.00323643,0,0,1,0
1713946414.558860694,1.54995,0.507101,3.06359,0.026419,0.0250988,0.003461,0,0,1,0
1713946414.709255307,1.54995,0.507101,3.06359,0.0263758,0.0252193,0.00352469,0,0,1,0
1713946414.859635919,1.54995,0.507101,3.06359,0.0263454,0.0252778,0.0026064,0,0,1,0
1713946415.010029073,1.54995,0.507101,3.06359,0.0261619,0.0255798,0.00279494,0,0,1,0
1713946415.160393936,1.54995,0.507101,3.06359,0.0260618,0.0256991,0.0027532,0,0,1,0
1713946415.310637753,1.54995,0.507101,3.06359,0.0260568,0.0259001,0.00639159,0,0,1,0
1713946415.461023908,1.54995,0.507101,3.06359,0.0261852,0.0256957,0.0758475,0,0,1,0
1713946415.611331019,1.54995,0.507101,3.06359,0.0267325,0.0253829,0.156407,0,0,1,0
1713946415.761624129,1.54995,0.507101,3.06359,0.0271411,0.0249574,0.280288,0,0,1,0
1713946415.911906156,1.54995,0.507101,3.06359,0.0268254,0.0250262,0.442937,0,0,1,0
1713946416.062226685,1.54995,0.507101,3.06359,0.0275882,0.0243928,0.588241,0,0,1,0
1713946416.212545172,1.54995,0.507101,3.06359,0.0305843,0.0225535,0.81014,0,0,1,0
1713946416.362835951,1.54995,0.507101,3.06359,0.0317676,0.0216337,1.00517,0,0,1,0
1713946416.513117395,1.54995,0.507101,3.06359,0.0343353,0.0202452,1.16749,0,0,1,0
1713946416.663417216,1.54995,0.507101,3.06359,0.0355913,0.0195122,1.32043,0,0,1,0
1713946416.813699536,1.54995,0.507101,3.06359,0.0380812,0.0183214,1.49251,0,0,1,0
1713946416.964013648,1.54995,0.507101,3.06359,0.0393882,0.0174672,1.64211,0,0,1,0
1713946417.114294219,1.54995,0.507101,3.06359,0.0416244,0.0169096,1.77786,0,0,1,0
1713946417.264700795,1.54995,0.507101,3.06359,0.0426196,0.0170001,1.92061,0,0,1,0
1713946417.415100370,1.54995,0.507101,3.06359,0.0445658,0.0165885,2.04643,0,0,1,0
1713946417.565456486,1.54995,0.507101,3.06359,0.0453868,0.0170264,2.26125,0,0,1,0
1713946417.715742599,1.54995,0.507101,3.06359,0.0466053,0.0176506,2.34371,0,0,1,0
1713946417.866144216,1.54995,0.507101,3.06359,0.0471416,0.0177329,2.52102,0,0,1,0
1713946418.016535041,1.54995,0.507101,3.06359,0.0476767,0.0187192,2.65066,0,0,1,0
1713946418.166924993,1.54995,0.507101,3.06359,0.0477446,0.0190588,2.78986,0,0,1,0
1713946418.317350821,1.54995,0.507101,3.06359,0.0478048,0.0193417,2.92123,0,0,1,0
1713946418.467725605,1.54995,0.507101,3.06359,0.0478157,0.0194381,3.05912,0,0,1,0
1713946418.618119640,1.54995,0.507101,3.06359,0.0477487,0.0200186,-3.03551,0,0,1,0
1713946418.768513675,1.54995,0.507101,3.06359,0.0477963,0.0202685,-2.91983,0,0,1,0
1713946418.919292724,1.54995,0.507101,3.06359,0.0480725,0.0199603,-2.7435,0,0,1,0
1713946419.069730803,1.54995,0.507101,3.06359,0.0481207,0.019951,-2.62255,0,0,1,0
1713946419.220134173,1.54995,0.507101,3.06359,0.0481088,0.020451,-2.48876,0,0,1,0
1713946419.370514793,1.54995,0.507101,3.06359,0.0480665,0.0206504,-2.2775,0,0,1,0
1713946419.520897454,1.54995,0.507101,3.06359,0.0480676,0.0208153,-2.15617,0,0,1,0
1713946419.671265531,1.54995,0.507101,3.06359,0.0481961,0.0207309,-2.0188,0,0,1,0
1713946419.821655192,1.54995,0.507101,3.06359,0.0488299,0.0206032,-1.88237,0,0,1,0
1713946419.972031728,1.54995,0.507101,3.06359,0.0492706,0.0208188,-1.71589,0,0,1,0
1713946420.122433641,1.54995,0.507101,3.06359,0.0499299,0.0199803,-1.61315,0,0,1,0
1713946420.272846055,1.54995,0.507101,3.06359,0.0500222,0.0201817,-1.43781,0,0,1,0
1713946420.423240676,1.54995,0.507101,3.06359,0.0505212,0.0199851,-1.28683,0,0,1,0
1713946420.573635297,1.54995,0.507101,3.06359,0.0511002,0.018494,-1.13174,0,0,1,0
1713946420.724030210,1.54995,0.507101,3.06359,0.0513858,0.0188041,-1.01325,0,0,1,0
1713946420.874439999,1.54995,0.507101,3.06359,0.0520338,0.0200955,-0.861325,0,0,1,0
1713946421.024851538,1.54995,0.507101,3.06359,0.0521918,0.0208084,-0.692498,0,0,1,0
1713946421.175343289,1.54995,0.507101,3.06359,0.0522945,0.0212223,-0.573079,0,0,1,0
1713946421.325774663,1.54995,0.507101,3.06359,0.0525171,0.0218322,-0.473514,0,0,1,0
1713946421.476123784,1.54995,0.507101,3.06359,0.0525299,0.0219915,-0.297905,0,0,1,0
1713946421.626409319,1.54995,0.507101,3.06359,0.0526423,0.0220783,-0.146152,0,0,0.751687,0
1713946421.776702439,1.54995,0.507101,3.06359,0.052547,0.0221437,-0.0325934,0,0.2,0.246316,0
1713946421.927008683,1.54995,0.507101,3.06359,0.0522507,0.022043,0.108719,0,0.2,0.0947368,0
1713946422.077293344,1.54995,0.507101,3.06359,0.0612422,0.0279509,0.245201,0,0.2,0.0568421,0
1713946422.227603674,1.54995,0.507101,3.06359,0.0744715,0.0310971,0.29192,0,0.2,-0.0189474,0
1713946422.377945796,1.54995,0.507101,3.06359,0.0936653,0.044253,0.378864,0,0.2,-0.0568421,0
1713946422.528247375,1.54995,0.507101,3.06359,0.11297,0.0453516,0.411299,0,0.2,-0.0947368,0
1713946422.678539329,1.54995,0.507101,3.06359,0.137384,0.056262,0.443399,0,0.2,-0.132632,0
1713946422.828852284,1.54995,0.507101,3.06359,0.156987,0.0691039,0.464914,0,0.2,-0.132632,0
1713946422.979165821,1.54995,0.507101,3.06359,0.176619,0.081758,0.471932,0,0.177778,-0.132632,0
1713946423.129479652,1.54995,0.507101,3.06359,0.205921,0.0897824,0.474004,0,0.2,-0.132632,0
1713946423.279756440,1.54995,0.507101,3.06359,0.234211,0.0975824,0.468801,0,0.2,-0.132632,0
1713946423.430058021,1.54995,0.507101,3.06359,0.254777,0.11025,0.464551,0,0.2,-0.132632,0
1713946423.580352601,1.54995,0.507101,3.06359,0.289056,0.126628,0.454569,0,0.2,-0.132632,0
1713946423.730665849,1.54995,0.507101,3.06359,0.308538,0.139421,0.442866,0,0.2,-0.132632,0
1713946423.880941179,1.54995,0.507101,3.06359,0.327925,0.152409,0.4332,0,0.2,-0.132632,0
1713946424.031238384,1.54995,0.507101,3.06359,0.357102,0.16062,0.416627,0,0.2,-0.0947368,0
1713946424.181523924,1.54995,0.507101,3.06359,0.39001,0.177417,0.399055,0,0.2,-0.0947368,0
1713946424.331835715,1.54995,0.507101,3.06359,0.419372,0.185522,0.38642,0,0.2,-0.0947368,0
1713946424.482116296,1.54995,0.507101,3.06359,0.442839,0.192342,0.37281,0,0.2,-0.0947368,0
1713946424.632433337,1.54995,0.507101,3.06359,0.475145,0.201727,0.356748,0,0.2,-0.0568421,0
1713946424.782762628,1.54995,0.507101,3.06359,0.493631,0.21464,0.343661,0,0.2,-0.0189474,0
1713946424.933160464,1.54995,0.507101,3.06359,0.522332,0.222864,0.33071,0,0.2,-0.0568421,0
1713946425.083523007,1.54995,0.507101,3.06359,0.564287,0.234771,0.315729,0,0.2,-0.0568421,0
1713946425.233798340,1.54995,0.507101,3.06359,0.588054,0.2446,0.305531,0,0.2,-0.0568421,0
1713946425.384228844,1.54995,0.507101,3.06359,0.61137,0.254834,0.295669,0,0.2,-0.0568421,0
1713946425.534612681,1.54995,0.507101,3.06359,0.64799,0.265087,0.283846,0,0.2,-0.0568421,0
1713946425.684865846,1.54995,0.507101,3.06359,0.675362,0.265289,0.275216,0,0.2,0,0
1713946425.835195430,1.54995,0.507101,3.06359,0.694267,0.277845,0.27217,0,0.2,-0.0189474,0
1713946425.985485055,1.54995,0.507101,3.06359,0.720307,0.282969,0.265998,0,0.2,-0.0189474,0
1713946426.135790140,1.54995,0.507101,3.06359,0.74982,0.293068,0.260132,0,0.2,-0.0189474,0
1713946426.286152102,1.54995,0.507101,3.06359,0.77273,0.292171,0.256619,0,0.2,-0.0189474,0
1713946426.436457479,1.54995,0.507101,3.06359,0.817307,0.30985,0.255078,0,0.2,0.0189474,0
1713946426.586736313,1.54995,0.507101,3.06359,0.841561,0.311221,0.254752,0,0.2,0.0189474,0
1713946426.737044315,1.54995,0.507101,3.06359,0.868986,0.319,0.252082,0,0.2,0,0
1713946426.887348525,1.54995,0.507101,3.06359,0.89637,0.326701,0.251259,0,0.2,0,0
1713946427.037644860,1.54995,0.507101,3.06359,0.923757,0.334469,0.250896,0,0.2,-0.0189474,0
1713946427.187936237,1.54995,0.507101,3.06359,0.951058,0.342282,0.251137,0,0.2,-0.0189474,0
1713946427.338240157,1.54995,0.507101,3.06359,0.9783,0.349908,0.251139,0,0.2,-0.0189474,0
1713946427.488689624,1.54995,0.507101,3.06359,1.00567,0.357475,0.251917,0,0.2,-0.0189474,0
1713946427.639028253,1.54995,0.507101,3.06359,1.03303,0.365053,0.25202,0,0.2,-0.0189474,0
1713946427.789308547,1.54995,0.507101,3.06359,1.06046,0.372718,0.250457,0,0.2,-0.0189474,0
1713946427.939613925,1.54995,0.507101,3.06359,1.08766,0.380452,0.250638,0,0.2,-0.0568421,0
1713946428.089903262,1.54995,0.507101,3.06359,1.11014,0.379363,0.249008,0,0.177778,-0.0568421,0
1713946428.240254726,1.54995,0.507101,3.06359,1.14246,0.395817,0.246194,0,0.2,-0.0189474,0
1713946428.390613774,1.54995,0.507101,3.06359,1.16959,0.403483,0.245186,0,0.2,0.0189474,0
1713946428.540936071,1.54995,0.507101,3.06359,1.19972,0.404851,0.239636,0,0.155556,-0.0568421,0
1713946428.691253701,1.54995,0.507101,3.06359,1.23283,0.414294,0.234136,0,0.155556,-0.0568421,0
1713946428.841560539,1.54995,0.507101,3.06359,1.24643,0.418131,0.229164,0,0.155556,0.0568421,0
1713946428.991842293,1.54995,0.507101,3.06359,1.27355,0.425948,0.224489,0,0.133333,0,0
1713946429.142137173,1.54995,0.507101,3.06359,1.29853,0.429744,0.22198,0,0.133333,0,0
1713946429.292482514,1.54995,0.507101,3.06359,1.31434,0.437475,0.219132,0,0.111111,0.0947368,0
1713946429.442811813,1.54995,0.507101,3.06359,1.33676,0.436381,0.220453,0,0.111111,0.132632,0
1713946429.593111944,1.54995,0.507101,3.06359,1.35044,0.439898,0.218519,0,0.0888889,0.0947368,0
1713946429.743429283,1.54995,0.507101,3.06359,1.37763,0.447161,0.225635,0,0.0888889,0.0947368,0
1713946429.893746040,1.54995,0.507101,3.06359,1.39108,0.450587,0.236877,0,0.0888889,-0.0189474,0
1713946430.044039171,1.54995,0.507101,3.06359,1.40471,0.454072,0.249081,0,0.0666667,0.0947368,0
1713946430.194325886,1.54995,0.507101,3.06359,1.41852,0.457518,0.25488,0,0,0.5,0
1713946430.344646727,1.54995,0.507101,3.06359,1.41855,0.457337,0.263281,0,0,0.5,0
1713946430.495000528,1.54995,0.507101,3.06359,1.43217,0.460767,0.27762,0,0,0.5,0
1713946430.645305327,1.54995,0.507101,3.06359,1.43244,0.460277,0.321538,0,0,0.5,0
1713946430.795614501,1.54995,0.507101,3.06359,1.44621,0.46352,0.362602,0,0,0.5,0
1713946430.945914050,1.54995,0.507101,3.06359,1.44669,0.463033,0.406232,0,0,0.5,0
1713946431.096222933,1.54995,0.507101,3.06359,1.451,0.472142,0.442042,0,0,0.5,0
1713946431.246523942,1.54995,0.507101,3.06359,1.45895,0.4674,0.466879,0,0,0.5,0
1713946431.396855868,1.54995,0.507101,3.06359,1.45924,0.469283,0.502431,0,0,0.5,0
1713946431.547163586,1.54995,0.507101,3.06359,1.45898,0.470079,0.544011,0,0,0.5,0
1713946431.697473636,1.54995,0.507101,3.06359,1.46179,0.470913,0.581272,0,0,0.5,0
1713946431.847837064,1.54995,0.507101,3.06359,1.4632,0.470954,0.60869,0,0,0.5,0
1713946431.998114155,1.54995,0.507101,3.06359,1.46716,0.470033,0.650322,0,0,0.5,0
1713946432.148599213,1.54995,0.507101,3.06359,1.46898,0.469788,0.680187,0,0,0.5,0
1713946432.299045187,1.54995,0.507101,3.06359,1.47792,0.476629,0.715392,0,0,0.5,0
1713946432.449429033,1.54995,0.507101,3.06359,1.48107,0.476272,0.758193,0,0,0.5,0
1713946432.599821922,1.54995,0.507101,3.06359,1.48348,0.47641,0.782005,0,0,0.5,0
1713946432.750193809,1.54995,0.507101,3.06359,1.48482,0.476512,0.823263,0,0,0.5,0
1713946432.900418692,1.54995,0.507101,3.06359,1.48597,0.47676,0.856677,0,0,0.5,0
1713946433.050799914,1.54995,0.507101,3.06359,1.48609,0.476944,0.890892,0,0,0.5,0
1713946433.201193678,1.54995,0.507101,3.06359,1.48626,0.47731,0.944492,0,0,0.5,0
1713946433.351585693,1.54995,0.507101,3.06359,1.4864,0.477484,0.973126,0,0,0.5,0
1713946433.501961666,1.54995,0.507101,3.06359,1.48797,0.477889,1.02259,0,0,0.5,0
1713946433.652344930,1.54995,0.507101,3.06359,1.48913,0.477944,1.05409,0,0,0.5,0
1713946433.802751820,1.54995,0.507101,3.06359,1.49115,0.478384,1.08279,0,0,0.5,0
1713946433.953144710,1.54995,0.507101,3.06359,1.49215,0.478604,1.1266,0,0,0.5,0
1713946434.103539351,1.54995,0.507101,3.06359,1.49378,0.479159,1.16849,0,0,0.5,0
1713946434.253918534,1.54995,0.507101,3.06359,1.49499,0.479484,1.19728,0,0,0.5,0
1713946434.404289841,1.54995,0.507101,3.06359,1.49683,0.480121,1.22789,0,0,0.5,0
1713946434.554594645,1.54995,0.507101,3.06359,1.49805,0.480485,1.2818,0,0,0.5,0
1713946434.704977328,1.54995,0.507101,3.06359,1.50093,0.481263,1.33769,0,0,0.5,0
1713946434.855270465,1.54995,0.507101,3.06359,1.50197,0.481647,1.37667,0,0,0.5,0
1713946435.005715859,1.54995,0.507101,3.06359,1.50292,0.482332,1.416,0,0,0.5,0
1713946435.156013956,1.54995,0.507101,3.06359,1.50287,0.482646,1.45213,0,0,0.5,0
1713946435.306393140,1.54995,0.507101,3.06359,1.50274,0.483039,1.5003,0,0,0.5,0
1713946435.456703488,1.54995,0.507101,3.06359,1.50257,0.483727,1.54825,0,0,0.5,0
1713946435.607007711,1.54995,0.507101,3.06359,1.50241,0.484426,1.59095,0,0,0.5,0
1713946435.757314267,1.54995,0.507101,3.06359,1.50245,0.484781,1.63742,0,0,0.5,0
1713946435.907677700,1.54995,0.507101,3.06359,1.50248,0.4856,1.68893,0,0,0.5,0
1713946436.057986882,1.54995,0.507101,3.06359,1.5027,0.485976,1.74028,0,0,0.5,0
1713946436.208288773,1.54995,0.507101,3.06359,1.50298,0.486833,1.80195,0,0,0.5,0
1713946436.358609331,1.54995,0.507101,3.06359,1.50311,0.487289,1.87275,0,0,0.5,0
1713946436.508950015,1.54995,0.507101,3.06359,1.50528,0.488461,1.94574,0,0,0.5,0
1713946436.659248988,1.54995,0.507101,3.06359,1.50677,0.489072,2.04795,0,0,0.5,0
1713946436.809555546,1.54995,0.507101,3.06359,1.50976,0.490253,2.09684,0,0,0.5,0
1713946436.959838186,1.54995,0.507101,3.06359,1.51124,0.490856,2.17305,0,0,0.5,0
1713946437.110146495,1.54995,0.507101,3.06359,1.5142,0.492027,2.22489,0,0,0.5,0
1713946437.260430011,1.54995,0.507101,3.06359,1.51567,0.492615,2.3324,0,0,0.5,0
1713946437.410725486,1.54995,0.507101,3.06359,1.51713,0.493214,2.38638,0,0,0.5,0
1713946437.561059755,1.54995,0.507101,3.06359,1.52006,0.494368,2.44062,0,0,0.5,0
1713946437.711366897,1.54995,0.507101,3.06359,1.52006,0.495337,2.53253,0,0,0.5,0
1713946437.861675206,1.54995,0.507101,3.06359,1.52027,0.495723,2.60384,0,0,0.5,0
1713946438.011985265,1.54995,0.507101,3.06359,1.52032,0.496766,2.6723,0,0,0.5,0
1713946438.162299409,1.54995,0.507101,3.06359,1.52044,0.49721,2.73681,0,0,0.5,0
1713946438.312602469,1.54995,0.507101,3.06359,1.52067,0.4982,2.82067,0,0,0,0
1713946439.258134509,1.2515,0.52522,3.0145,1.51058,0.502556,2.97267,0,0.133333,0,0.96875
1713946440.133489583,0.952326,0.543165,2.96541,1.4311,0.519157,3.04079,0,0.2,0.0568421,0.96875
1713946440.997066733,0.651735,0.531519,2.98331,1.29087,0.535108,3.08759,0,0.2,0.0568421,0.988609
1713946441.904591786,0.35045,0.558906,2.96542,1.13037,0.542198,3.11529,0,0.2,-0.0189474,0.98861
1713946442.705184738,0.0525812,0.532282,2.93421,0.980405,0.547497,3.11785,0,0.2,0.0568421,0.980137
1713946443.574419283,-0.249651,0.530171,2.9833,0.82093,0.553823,3.1268,0,0.2,0,0.96875
1713946443.724577095,-0.249651,0.530171,2.9833,0.79094,0.555744,3.13116,0,0.2,-0.0189474,0.96875
1713946443.874725573,-0.249651,0.530171,2.9833,0.77095,0.556734,3.13407,0,0.2,-0.0189474,0.96875
1713946444.024881635,-0.249651,0.530171,2.9833,0.723567,0.558838,3.13732,0,0.2,-0.0189474,0.96875
1713946444.175042073,-0.249651,0.530171,2.9833,0.701156,0.559744,3.13818,0,0.2,-0.0189474,0.96875
1713946444.921452771,-0.549165,0.513083,2.98331,0.561429,0.566034,-3.14063,0,0.2,0,0.999997
1713946445.071788800,-0.549165,0.513083,2.98331,0.541431,0.56685,-3.13859,0,0.2,-0.0189474,0.999997
1713946445.222079620,-0.549165,0.513083,2.98331,0.521385,0.568088,-3.13761,0,0.2,0.0189474,0.999997
1713946445.372236851,-0.549165,0.513083,2.98331,0.491265,0.569124,-3.13737,0,0.2,0.0189474,0.999997
1713946445.522402249,-0.549165,0.513083,2.98331,0.451281,0.570825,-3.13568,0,0.2,0.0189474,0.999997
1713946445.672556855,-0.549165,0.513083,2.98331,0.433559,0.57148,-3.13388,0,0.2,0.0189474,0.999997
1713946446.474186455,-0.848678,0.495993,2.9833,0.285438,0.568856,-3.13621,0,0.2,-0.0189474,0.999993
1713946446.624342521,-0.848678,0.495993,2.9833,0.260834,0.570682,-3.13518,0,0.2,0.0189474,0.999993
1713946446.774491004,-0.848678,0.495993,2.9833,0.230808,0.571849,-3.13411,0,0.2,0.0189474,0.999993
1713946446.924645903,-0.848678,0.495993,2.9833,0.210665,0.573417,-3.13436,0,0.2,0.0568421,0.999993
1713946447.074851846,-0.848678,0.495993,2.9833,0.170624,0.574825,-3.13488,0,0.2,0.0568421,0.999993
1713946447.225161336,-0.848678,0.495993,2.9833,0.150724,0.576457,-3.13408,0,0.2,-0.0189474,0.999993
1713946447.375501452,-0.848678,0.495993,2.9833,0.120794,0.577725,-3.13327,0,0.2,-0.0189474,0.999993
1713946448.114956251,-1.19453,0.497424,3.40323,-0.0191142,0.576437,-3.12374,0,0.2,-0.0189474,0.73266
1713946448.265239199,-1.19453,0.497424,3.40323,-0.0490541,0.577767,-3.12325,0,0.2,-0.0189474,0.73266
1713946448.415523898,-1.19453,0.497424,3.40323,-0.0691175,0.579284,-3.12516,0,0.2,-0.0189474,0.73266
1713946448.565807429,-1.19453,0.497424,3.40323,-0.0991242,0.580402,-3.12537,0,0.2,-0.0189474,0.73266
1713946448.716111378,-1.19453,0.497424,3.40323,-0.124452,0.581966,-3.12632,0,0.2,0.0189474,0.73266
1713946448.866401910,-1.19453,0.497424,3.40323,-0.159457,0.573442,-3.12725,0,0.2,0.0189474,0.73266
1713946449.016705568,-1.19453,0.497424,3.40323,-0.179543,0.574906,-3.12803,0,0.2,0.0189474,0.73266
1713946449.166980642,-1.19453,0.497424,3.40323,-0.209572,0.576194,-3.12737,0,0.2,0.0189474,0.73266
1713946449.317279634,-1.19453,0.497424,3.40323,-0.239409,0.577558,-3.12566,0,0.2,0.0568421,0.73266
1713946449.467579209,-1.19453,0.497424,3.40323,-0.275049,0.578844,-3.12476,0,0.2,0.0568421,0.73266
1713946449.617877910,-1.19453,0.497424,3.40323,-0.299434,0.58032,-3.12431,0,0.2,0.0189474,0.73266
1713946449.768166693,-1.19453,0.497424,3.40323,-0.319425,0.581203,-3.1225,0,0.2,0.0189474,0.73266
1713946449.918472685,-1.19453,0.497424,3.40323,-0.349282,0.582793,-3.11981,0,0.2,0.0189474,0.73266
1713946450.068776053,-1.19453,0.497424,3.40323,-0.379405,0.573753,-3.11535,0,0.2,0.0189474,0.73266
1713946450.219075046,-1.19453,0.497424,3.40323,-0.399265,0.575022,-3.11334,0,0.2,0.0189474,0.73266
1713946450.369349539,-1.19453,0.497424,3.40323,-0.429221,0.576247,-3.1113,0,0.2,0.0189474,0.73266
1713946450.519642115,-1.19453,0.497424,3.40323,-0.469222,0.578154,-3.10914,0,0.2,0.0947368,0.73266
1713946451.385833944,-1.49366,0.341406,3.44695,-0.618979,0.574397,-3.07763,0,0.2,0.170526,0.97217
1713946452.175937955,-1.58938,0.337848,3.67052,-0.768398,0.561247,-2.98975,0,0.2,0.0568421,0.857672
1713946452.927989456,-1.79071,0.169043,3.9106,-0.903065,0.535905,-2.92915,0,0.2,0.0947368,0.847159
1713946453.078272119,-1.79071,0.169043,3.9106,-0.92718,0.526373,-2.92159,0,0.2,0.170526,0.847159
1713946453.228570825,-1.79071,0.169043,3.9106,-0.957013,0.517589,-2.90763,0,0.2,0.132632,0.847159
1713946453.378814695,-1.79071,0.169043,3.9106,-0.982095,0.518297,-2.89369,0,0.2,0.0947368,0.847159
1713946453.528974854,-1.79071,0.169043,3.9106,-1.01342,0.509194,-2.87709,0,0.2,0.0947368,0.847159
1713946453.679144347,-1.79071,0.169043,3.9106,-1.03628,0.500113,-2.86767,0,0.2,0.170526,0.847159
1713946454.483678236,-1.82114,-0.149269,0.934115,-1.17626,0.45615,-2.79191,0,0.2,0.284211,-0.2
1713946454.633973151,-1.82114,-0.149269,0.934115,-1.19619,0.447001,-2.77962,0,0.2,0.36,-0.2
1713946454.784298401,-1.82114,-0.149269,0.934115,-1.21641,0.437963,-2.75031,0,0.2,0.284211,-0.2
1713946454.934593316,-1.82114,-0.149269,0.934115,-1.24652,0.429684,-2.71116,0,0.2,0.284211,-0.2
1713946455.084887649,-1.82114,-0.149269,0.934115,-1.26668,0.420886,-2.68023,0,0.2,0.36,-0.2
1713946455.235188983,-1.82114,-0.149269,0.934115,-1.29729,0.402836,-2.63522,0,0.2,0.208421,-0.2
1713946455.385515400,-1.82114,-0.149269,0.934115,-1.31746,0.393965,-2.59997,0,0.2,0.170526,-0.2
1713946455.535864277,-1.82114,-0.149269,0.934115,-1.34792,0.376085,-2.56048,0,0.2,0.246316,-0.2
1713946455.686168819,-1.82114,-0.149269,0.934115,-1.36838,0.357184,-2.52946,0,0.2,0.170526,-0.2
1713946455.836462278,-1.82114,-0.149269,0.934115,-1.39874,0.339089,-2.48405,0,0.2,0.208421,-0.2
1713946455.986765070,-1.82114,-0.149269,0.934115,-1.40895,0.329917,-2.45672,0,0.2,0.170526,-0.2
1713946456.137055904,-1.82114,-0.149269,0.934115,-1.42942,0.311467,-2.42741,0,0.177778,0.170526,-0.2
1713946456.287353155,-1.82114,-0.149269,0.934115,-1.45996,0.292939,-2.39779,0,0.2,0.132632,-0.2
1713946456.437513610,-1.82114,-0.149269,0.934115,-1.47026,0.273852,-2.37774,0,0.2,0.208421,-0.2
1713946456.587668231,-1.82114,-0.149269,0.934115,-1.50064,0.254839,-2.35435,0,0.2,0.132632,-0.2
1713946456.737824019,-1.82114,-0.149269,0.934115,-1.51094,0.23588,-2.34106,0,0.2,0.208421,-0.2
1713946456.887984474,-1.82114,-0.149269,0.934115,-1.52099,0.226472,-2.32095,0,0.177778,0.132632,-0.2
1713946457.038141429,-1.82114,-0.149269,0.934115,-1.55183,0.18786,-2.28902,0,0.2,0.0189474,-0.2
1713946457.188295760,-1.82114,-0.149269,0.934115,-1.57178,0.178516,-2.27172,0,0.2,-0.0189474,-0.2
1713946457.338448924,-1.82114,-0.149269,0.934115,-1.58186,0.158961,-2.25413,0,0.177778,-0.0568421,-0.2
1713946457.488599171,-1.82114,-0.149269,0.934115,-1.60208,0.129575,-2.24135,0,0.177778,0.0189474,-0.2
1713946457.638764002,-1.82114,-0.149269,0.934115,-1.61238,0.110123,-2.23254,0,0.155556,-0.0568421,-0.2
1713946457.788920083,-1.82114,-0.149269,0.934115,-1.63233,0.100692,-2.23052,0,0.155556,0.0189474,-0.2
1713946457.939079373,-1.82114,-0.149269,0.934115,-1.64246,0.0711074,-2.23188,0,0.133333,-0.0189474,-0.2
1713946458.089230204,-1.82114,-0.149269,0.934115,-1.65234,0.0715783,-2.2312,0,0.133333,-0.0568421,-0.2
1713946458.239387161,-1.82114,-0.149269,0.934115,-1.67259,0.0426665,-2.22987,0,0.111111,-0.0568421,-0.2
1713946458.389543827,-1.82114,-0.149269,0.934115,-1.68268,0.0331726,-2.23044,0,0.111111,-0.0568421,-0.2
1713946458.539701951,-1.82114,-0.149269,0.934115,-1.69278,0.0140078,-2.23218,0,0.111111,0.0189474,-0.2
1713946458.689865617,-1.82114,-0.149269,0.934115,-1.70289,0.00439167,-2.2334,0,0.0888889,-0.0568421,-0.2
1713946459.594331703,-1.6541,-0.00858216,0.448646,-1.74183,-0.0442506,-2.29698,0,0,0.5,0.690941
1713946460.394244008,-1.42032,0.0985834,0.087152,-1.75036,-0.0647262,-2.16436,0,0.0666667,0.322105,0.769866
1713946461.252682254,-1.12709,0.129541,0.0380545,-1.77869,-0.114097,-1.90882,0,0.0666667,0.36,0.968744
1713946462.000325987,-0.85039,0.234743,-0.256465,-1.77694,-0.15475,-1.68396,0,0.0666667,0.36,0.812503
1713946462.150487908,-0.85039,0.234743,-0.256465,-1.7863,-0.165124,-1.62792,0,0.0666667,0.36,0.812503
1713946462.300644579,-0.85039,0.234743,-0.256465,-1.78557,-0.165478,-1.5863,0,0.0666667,0.36,0.812503
1713946462.450807959,-0.85039,0.234743,-0.256465,-1.78547,-0.1757,-1.54617,0,0.0666667,0.36,0.812503
1713946462.600973963,-0.85039,0.234743,-0.256465,-1.77528,-0.186159,-1.48915,0,0.0666667,0.36,0.812503
1713946462.751132968,-0.85039,0.234743,-0.256465,-1.77546,-0.196236,-1.43871,0,0.0666667,0.322105,0.812503
1713946462.901288764,-0.85039,0.234743,-0.256465,-1.77559,-0.206083,-1.40064,0,0.0666667,0.36,0.812503
1713946463.051440768,-0.85039,0.234743,-0.256465,-1.77581,-0.215818,-1.35951,0,0.0666667,0.322105,0.812503
1713946463.201596274,-0.85039,0.234743,-0.256465,-1.77579,-0.215464,-1.32006,0,0.0666667,0.322105,0.812503
1713946463.351752363,-0.85039,0.234743,-0.256465,-1.76602,-0.22513,-1.25785,0,0.0666667,0.36,0.812503
1713946463.501913118,-0.85039,0.234743,-0.256465,-1.76584,-0.235102,-1.20297,0,0.0666667,0.36,0.812503
1713946463.652099250,-0.85039,0.234743,-0.256465,-1.76598,-0.244836,-1.16352,0,0.0666667,0.36,0.812503
1713946463.802255047,-0.85039,0.234743,-0.256465,-1.76564,-0.244084,-1.10596,0,0.0666667,0.322105,0.812503
1713946463.952407344,-0.85039,0.234743,-0.256465,-1.75577,-0.253952,-1.04862,0,0.0666667,0.322105,0.812503
1713946464.102562851,-0.85039,0.234743,-0.256465,-1.75575,-0.263256,-1.00632,0,0.0666667,0.322105,0.812503
1713946464.252714566,-0.85039,0.234743,-0.256465,-1.74595,-0.273492,-0.959548,0,0.0666667,0.36,0.812503
1713946464.402877656,-0.85039,0.234743,-0.256465,-1.73549,-0.273346,-0.922472,0,0.0666667,0.36,0.812503
1713946464.553029663,-0.85039,0.234743,-0.256465,-1.73575,-0.283177,-0.883534,0,0.0888889,0.36,0.812503
1713946464.703225713,-0.85039,0.234743,-0.256465,-1.7259,-0.293336,-0.848376,0,0.111111,0.36,0.812503
1713946464.853388512,-0.85039,0.234743,-0.256465,-1.71582,-0.303541,-0.774326,0,0.0666667,0.36,0.812503
1713946465.003548686,-0.85039,0.234743,-0.256465,-1.71537,-0.30341,-0.728632,0,0.0888889,0.36,0.812503
1713946465.153704486,-0.85039,0.234743,-0.256465,-1.70566,-0.313454,-0.686571,0,0.133333,0.36,0.812503
1713946465.303861744,-0.85039,0.234743,-0.256465,-1.69577,-0.323273,-0.62408,0,0.0666667,0.36,0.812503
1713946465.454012877,-0.85039,0.234743,-0.256465,-1.68554,-0.323538,-0.594227,0,0.111111,0.36,0.812503
1713946465.604171010,-0.85039,0.234743,-0.256465,-1.67568,-0.333876,-0.52662,0,0.2,0.36,0.812503
1713946465.754335269,-0.85039,0.234743,-0.256465,-1.66552,-0.334116,-0.46411,0,0.0666667,0.36,0.812503
1713946465.904489902,-0.85039,0.234743,-0.256465,-1.64551,-0.344598,-0.388053,0,0.155556,0.322105,0.812503
1713946466.054650661,-0.85039,0.234743,-0.256465,-1.63535,-0.345183,-0.331405,0,0.155556,0.36,0.812503
1713946466.204810837,-0.85039,0.234743,-0.256465,-1.62554,-0.355645,-0.292044,0,0.2,0.36,0.812503
1713946466.354968680,-0.85039,0.234743,-0.256465,-1.60538,-0.356919,-0.216109,0,0.155556,0.36,0.812503
1713946466.505125065,-0.85039,0.234743,-0.256465,-1.58506,-0.358116,-0.165721,0,0.2,0.36,0.812503
1713946466.655275616,-0.85039,0.234743,-0.256465,-1.56494,-0.35925,-0.0873389,0,0.177778,0.36,0.812503
1713946466.805439876,-0.85039,0.234743,-0.256465,-1.54466,-0.359841,-0.0462231,0,0.2,0.36,0.812503
1713946466.955598011,-0.85039,0.234743,-0.256465,-1.52447,-0.36077,-0.00592867,0,0.2,0.36,0.812503
1713946467.105755563,-0.85039,0.234743,-0.256465,-1.49403,-0.362138,0.0628479,0,0.2,0.36,0.812503
1713946467.255922741,-0.85039,0.234743,-0.256465,-1.48375,-0.362755,0.0953171,0,0.177778,0.36,0.812503
1713946467.406080877,-0.85039,0.234743,-0.256465,-1.45309,-0.365034,0.15438,0,0.177778,0.36,0.812503
1713946467.556243388,-0.85039,0.234743,-0.256465,-1.41657,-0.357231,0.221835,0,0.2,0.36,0.812503
1713946467.706400940,-0.85039,0.234743,-0.256465,-1.40176,-0.347833,0.257828,0,0.2,0.322105,0.812503
1713946468.520200646,-0.550877,0.251831,-0.256465,-1.26108,-0.296918,0.517021,0,0.2,0.0568421,1
1713946469.352595956,-0.251364,0.26892,-0.25646,-1.12918,-0.215183,0.615635,0,0.2,-0.0947368,0.999997
1713946469.502766345,-0.251364,0.26892,-0.25646,-1.10197,-0.19638,0.612024,0,0.2,-0.132632,0.999997
1713946470.253873218,0.0481485,0.286009,-0.256465,-0.985322,-0.117459,0.570848,0,0.2,-0.170526,0.999997
1713946470.404167280,0.0481485,0.286009,-0.256465,-0.969973,-0.114446,0.562989,0,0.2,-0.132632,0.999997
1713946470.554445007,0.0481485,0.286009,-0.256465,-0.938686,-0.0961891,0.543782,0,0.2,-0.132632,0.999997
1713946470.704610731,0.0481485,0.286009,-0.256465,-0.916771,-0.0777097,0.524891,0,0.2,-0.132632,0.999997
1713946470.854758954,0.0481485,0.286009,-0.256465,-0.885501,-0.0591996,0.503942,0,0.2,-0.132632,0.999997
1713946471.663605708,0.347662,0.303098,-0.256465,-0.74941,0.00304021,0.416491,0,0.2,-0.132632,1
1713946471.813763849,0.347662,0.303098,-0.256465,-0.728153,0.0115581,0.399176,0,0.2,-0.132632,1
1713946471.963924616,0.347662,0.303098,-0.256465,-0.6996,0.0201713,0.383466,0,0.2,-0.132632,1
1713946472.114081883,0.347662,0.303098,-0.256465,-0.676016,0.0284626,0.366221,0,0.2,-0.132632,1
1713946472.264323445,0.347662,0.303098,-0.256465,-0.645158,0.0367407,0.34824,0,0.2,-0.132632,1
1713946472.414637927,0.347662,0.303098,-0.256465,-0.623877,0.0448314,0.33176,0,0.2,-0.0568421,1
1713946472.564930824,0.347662,0.303098,-0.256465,-0.596088,0.0536375,0.318248,0,0.2,-0.0568421,1
1713946473.329889768,0.649157,0.305092,-0.207377,-0.453623,0.0955324,0.245989,0,0.2,-0.0568421,0.96875
1713946473.480039162,0.649157,0.305092,-0.207377,-0.432264,0.0941599,0.233078,0,0.2,-0.0568421,0.96875
1713946473.630199931,0.649157,0.305092,-0.207377,-0.398254,0.101912,0.221623,0,0.2,-0.0568421,0.96875
1713946473.780359825,0.649157,0.305092,-0.207377,-0.377625,0.110819,0.212162,0,0.2,-0.0568421,0.96875
1713946473.930519427,0.649157,0.305092,-0.207377,-0.346858,0.118457,0.202922,0,0.2,-0.0568421,0.96875
1713946474.080677863,0.649157,0.305092,-0.207377,-0.316713,0.11651,0.193377,0,0.2,-0.0568421,0.96875
1713946474.230831925,0.649157,0.305092,-0.207377,-0.286052,0.124065,0.18447,0,0.2,-0.0568421,0.96875
1713946475.032888452,0.94867,0.32218,-0.207373,-0.146238,0.14321,0.164009,0,0.2,-0.0568421,0.999997
1713946475.183046307,0.94867,0.32218,-0.207373,-0.111024,0.150783,0.158945,0,0.2,-0.0568421,0.999997
1713946475.333221079,0.94867,0.32218,-0.207373,-0.0914159,0.155248,0.157772,0,0.2,-0.0568421,0.999997
1713946475.483378933,0.94867,0.32218,-0.207373,-0.0770708,0.158722,0.155369,0,0.2,-0.0568421,0.999997
1713946475.633534455,0.94867,0.32218,-0.207373,-0.0292579,0.166817,0.145206,0,0.2,0,0.999997
1713946476.400264193,1.25088,0.308568,5.85223,0.103157,0.180608,0.122597,0,0.2,-0.0947368,-0.2
1713946476.550618348,1.25088,0.308568,5.85223,0.133109,0.179301,0.114849,0,0.2,-0.0947368,-0.2
1713946476.700918834,1.25088,0.308568,5.85223,0.153399,0.188521,0.110885,0,0.2,-0.0947368,-0.2
1713946476.851204153,1.25088,0.308568,5.85223,0.193295,0.187155,0.0999362,0,0.2,-0.0189474,-0.2
1713946477.001503765,1.25088,0.308568,5.85223,0.213197,0.196712,0.0913868,0,0.2,-0.0568421,-0.2
1713946477.151787627,1.25088,0.308568,5.85223,0.243113,0.195654,0.0822879,0,0.2,-0.0189474,-0.2
1713946477.302097448,1.25088,0.308568,5.85223,0.263072,0.194841,0.0746975,0,0.2,-0.0189474,-0.2
1713946477.452387727,1.25088,0.308568,5.85223,0.303323,0.20334,0.0659355,0,0.2,-0.0189474,-0.2
1713946477.602682672,1.25088,0.308568,5.85223,0.323044,0.202575,0.0593732,0,0.2,-0.0189474,-0.2
1713946477.752988410,1.25088,0.308568,5.85223,0.342969,0.201873,0.055097,0,0.2,0.0189474,-0.2
1713946477.903286273,1.25088,0.308568,5.85223,0.382695,0.200074,0.0508411,0,0.2,0.0189474,-0.2
1713946478.053575094,1.25088,0.308568,5.85223,0.40314,0.20904,0.047543,0,0.2,0.0189474,-0.2
1713946478.203869749,1.25088,0.308568,5.85223,0.432808,0.207671,0.0431799,0,0.2,0.0189474,-0.2
1713946478.354171405,1.25088,0.308568,5.85223,0.462749,0.20626,0.0427258,0,0.2,0.0189474,-0.2
1713946478.504473935,1.25088,0.308568,5.85223,0.492447,0.20489,0.0427042,0,0.2,0.0189474,-0.2
1713946478.654780549,1.25088,0.308568,5.85223,0.502856,0.214475,0.044091,0,0.2,0.0189474,-0.2
1713946478.805075788,1.25088,0.308568,5.85223,0.532844,0.213073,0.0459248,0,0.2,0.0568421,-0.2
1713946478.955387944,1.25088,0.308568,5.85223,0.562749,0.211583,0.048895,0,0.2,0.0568421,-0.2
1713946479.105699226,1.25088,0.308568,5.85223,0.582861,0.210836,0.0518842,0,0.2,0.0568421,-0.2
1713946479.256007883,1.25088,0.308568,5.85223,0.613169,0.219509,0.0548028,0,0.2,0.0568421,-0.2
1713946479.406373125,1.25088,0.308568,5.85223,0.633077,0.218946,0.0565636,0,0.177778,0.0568421,-0.2
1713946479.556683824,1.25088,0.308568,5.85223,0.672959,0.217094,0.0613798,0,0.2,0.0568421,-0.2
1713946479.706987523,1.25088,0.308568,5.85223,0.693459,0.22627,0.0664583,0,0.177778,0.0568421,-0.2
1713946479.857261471,1.25088,0.308568,5.85223,0.723588,0.224849,0.0725798,0,0.2,0.0568421,-0.2
1713946480.007551460,1.25088,0.308568,5.85223,0.743268,0.224001,0.0812266,0,0.177778,0.0568421,-0.2
1713946480.157891328,1.25088,0.308568,5.85223,0.783713,0.232332,0.0910572,0,0.2,0.0189474,-0.2
1713946480.308249280,1.25088,0.308568,5.85223,0.803817,0.231875,0.0983951,0,0.2,0.0947368,-0.2
1713946480.458550938,1.25088,0.308568,5.85223,0.833955,0.23069,0.104906,0,0.2,0.0568421,-0.2
1713946480.608900432,1.25088,0.308568,5.85223,0.854148,0.240347,0.111949,0,0.2,0.0568421,-0.2
1713946480.759202673,1.25088,0.308568,5.85223,0.894132,0.238957,0.123437,0,0.2,0.0189474,-0.2
1713946480.909489164,1.25088,0.308568,5.85223,0.914607,0.248758,0.130836,0,0.177778,0.0568421,-0.2
1713946481.059784114,1.25088,0.308568,5.85223,0.934684,0.248341,0.13649,0,0.177778,0.0568421,-0.2
1713946481.210095691,1.25088,0.308568,5.85223,0.964928,0.257436,0.144254,0,0.155556,0.0189474,-0.2
1713946481.360375474,1.25088,0.308568,5.85223,0.994826,0.256705,0.150141,0,0.133333,0.0568421,-0.2
1713946481.510679759,1.25088,0.308568,5.85223,1.01476,0.256563,0.155698,0,0.133333,0,-0.2
1713946481.660971501,1.25088,0.308568,5.85223,1.0351,0.26606,0.161519,0,0.111111,0.0189474,-0.2
1713946481.811356872,1.25088,0.308568,5.85223,1.05509,0.265734,0.167893,0,0.111111,-0.0189474,-0.2
1713946481.961645989,1.25088,0.308568,5.85223,1.07539,0.275303,0.170994,0,0.111111,-0.0189474,-0.2
1713946482.755922368,1.5272,0.200446,5.59742,1.13585,0.285133,0.0917285,0,0.2,-0.246316,0.837783
1713946483.469860875,1.58659,0.171286,5.53585,1.24532,0.284204,-0.074114,0,0.155556,-0.132632,0.960801
1713946484.218554208,1.84693,0.18614,3.27783,1.35543,0.271738,-0.189259,0,0.2,0.0189474,-0.2
1713946484.368712950,1.84693,0.18614,3.27783,1.37552,0.261301,-0.196736,0,0.2,0.0568421,-0.2
1713946484.518893567,1.84693,0.18614,3.27783,1.4012,0.260612,-0.20691,0,0.2,0.0947368,-0.2
1713946484.669039766,1.84693,0.18614,3.27783,1.42545,0.250056,-0.216616,0,0.2,0.0568421,-0.2
1713946484.819195882,1.84693,0.18614,3.27783,1.45569,0.248988,-0.215058,0,0.177778,0.0947368,-0.2
1713946484.969362499,1.84693,0.18614,3.27783,1.47558,0.238387,-0.212555,0,0.177778,0.0568421,-0.2
1713946485.119530867,1.84693,0.18614,3.27783,1.5057,0.237588,-0.206873,0,0.155556,0.0568421,-0.2
1713946485.269808614,1.84693,0.18614,3.27783,1.53552,0.226832,-0.201157,0,0.155556,0,-0.2
1713946485.420116404,1.84693,0.18614,3.27783,1.5458,0.226337,-0.199052,0,0.133333,-0.0189474,-0.2
1713946485.570396192,1.84693,0.18614,3.27783,1.57582,0.225468,-0.193821,0,0.133333,0.0947368,-0.2
1713946485.720712441,1.84693,0.18614,3.27783,1.59557,0.214871,-0.189486,0,0.133333,0,-0.2
1713946485.870993396,1.84693,0.18614,3.27783,1.6155,0.214411,-0.186626,0,0.111111,-0.0189474,-0.2
1713946486.021287477,1.84693,0.18614,3.27783,1.63521,0.214012,-0.183847,0,0.111111,0.0568421,-0.2
1713946486.171640478,1.84693,0.18614,3.27783,1.65498,0.203638,-0.177576,0,0.0888889,0.0568421,-0.2
1713946486.964569626,1.55437,0.155506,3.22874,1.72312,0.19351,-0.15612,0,0.0666667,-0.284211,0.968747
1713946487.742548563,1.26113,0.12455,3.17965,1.77119,0.184468,-0.212803,0,0.0666667,0.0189474,0.96875
1713946488.506973545,0.96162,0.107462,3.17965,1.80997,0.174821,-0.233733,0,0.0666667,0.0189474,1
1713946489.279136151,0.655827,0.104241,3.22874,1.85903,0.174682,-0.18233,0,0.0666667,0.0947368,0.968747
1713946489.429436071,0.655827,0.104241,3.22874,1.86849,0.164599,-0.172667,0,0.0666667,-0.0568421,0.968747
1713946489.579728698,0.655827,0.104241,3.22874,1.87807,0.164527,-0.158266,0,0.0666667,0.0947368,0.968747
1713946489.730031535,0.655827,0.104241,3.22874,1.87795,0.164632,-0.155066,0,0.0666667,0.0947368,0.968747
1713946489.880315996,0.655827,0.104241,3.22874,1.88779,0.16451,-0.144539,0,0.0666667,0.0947368,0.968747
1713946490.030622332,0.655827,0.104241,3.22874,1.89746,0.164447,-0.134176,0,0.0666667,0.0947368,0.968747
1713946490.180899502,0.655827,0.104241,3.22874,1.90729,0.16424,-0.124041,0,0.0666667,0.0947368,0.968747
1713946490.331057376,0.655827,0.104241,3.22874,1.91691,0.164041,-0.114871,0,0.0666667,-0.0189474,0.968747
1713946490.481210292,0.655827,0.104241,3.22874,1.91669,0.164089,-0.104807,0,0.0666667,0.0568421,0.968747
1713946490.631381291,0.655827,0.104241,3.22874,1.93403,0.163636,-0.0960879,0,0.0666667,0.0568421,0.968747
1713946490.781532748,0.655827,0.104241,3.22874,1.93589,0.163631,-0.0879901,0,0.0666667,0.0568421,0.968747
1713946490.931707248,0.655827,0.104241,3.22874,1.94529,0.163463,-0.0791989,0,0.0666667,0.0568421,0.968747
1713946491.081877081,0.655827,0.104241,3.22874,1.95495,0.163229,-0.0743566,0,0.0666667,0.0568421,0.968747
1713946491.232033789,0.655827,0.104241,3.22874,1.96423,0.163143,-0.0651091,0,0.0666667,-0.132632,0.968747
1713946491.382193123,0.655827,0.104241,3.22874,1.97384,0.15302,-0.0545019,0,0.0666667,-0.132632,0.968747
1713946491.532360040,0.655827,0.104241,3.22874,1.9734,0.153237,-0.0457185,0,0.0666667,0.0568421,0.968747
1713946491.682508290,0.655827,0.104241,3.22874,1.98918,0.153281,-0.046408,0,0.0666667,0.0568421,0.968747
1713946491.832661790,0.655827,0.104241,3.22874,1.99288,0.153641,-0.0521633,0,0.0666667,0.0568421,0.968747
1713946491.982811790,0.655827,0.104241,3.22874,2.0026,0.15363,-0.0479577,0,0.0666667,0.0568421,0.968747
1713946492.132967625,0.655827,0.104241,3.22874,2.01201,0.153772,-0.0439389,0,0.0666667,-0.132632,0.968747
1713946492.283130168,0.655827,0.104241,3.22874,2.0217,0.153729,-0.0446316,0,0.0666667,-0.132632,0.968747
1713946492.433286294,0.655827,0.104241,3.22874,2.03099,0.153828,-0.0405996,0,0.0666667,0.0568421,0.968747
1713946492.583449129,0.655827,0.104241,3.22874,2.04023,0.154018,-0.043683,0,0.0666667,-0.208421,0.968747
1713946492.733607881,0.655827,0.104241,3.22874,2.04983,0.154074,-0.0448722,0,0.0666667,0.0568421,0.968747
1713946492.883762257,0.655827,0.104241,3.22874,2.0494,0.154172,-0.0483804,0,0.0666667,0.0568421,0.968747
1713946493.033930634,0.655827,0.104241,3.22874,2.0585,0.15428,-0.0487352,0,0.0666667,-0.132632,0.968747
1713946493.184078011,0.655827,0.104241,3.22874,2.06801,0.154316,-0.0496102,0,0.0666667,-0.132632,0.968747
1713946493.334235597,0.655827,0.104241,3.22874,2.07701,0.154407,-0.049677,0,0.0666667,-0.132632,0.968747
1713946493.484387933,0.655827,0.104241,3.22874,2.0765,0.154504,-0.055191,0,0.0666667,0.0568421,0.968747
1713946493.634542894,0.655827,0.104241,3.22874,2.08541,0.154654,-0.0583118,0,0.0666667,0.0568421,0.968747
1713946493.784697563,0.655827,0.104241,3.22874,2.09484,0.154675,-0.0615039,0,0.0666667,0.0568421,0.968747
1713946493.934886359,0.655827,0.104241,3.22874,2.10367,0.154864,-0.0619774,0,0.0666667,0.0568421,0.968747
1713946494.085041612,0.655827,0.104241,3.22874,2.11304,0.154839,-0.0637573,0,0.0666667,0.0568421,0.968747
1713946494.235195991,0.655827,0.104241,3.22874,2.12176,0.154909,-0.0614839,0,0.0666667,0.0568421,0.968747
1713946494.385352120,0.655827,0.104241,3.22874,2.1311,0.154788,-0.0626899,0,0.0666667,0.0568421,0.968747
1713946494.535510874,0.655827,0.104241,3.22874,2.12974,0.15498,-0.0615382,0,0.0666667,-0.0189474,0.968747
1713946494.685662336,0.655827,0.104241,3.22874,2.13902,0.154869,-0.0609864,0,0.0666667,0.0568421,0.968747
1713946494.835813506,0.655827,0.104241,3.22874,2.14754,0.154859,-0.056381,0,0.0666667,0.0568421,0.968747
1713946494.985967010,0.655827,0.104241,3.22874,2.15677,0.154809,-0.0531612,0,0.0666667,-0.132632,0.968747
1713946495.136127224,0.655827,0.104241,3.22874,2.16577,0.154711,-0.0495618,0,0.0666667,-0.132632,0.968747
1713946495.286284229,0.655827,0.104241,3.22874,2.1754,0.15466,-0.0466456,0,0.0666667,0.0568421,0.968747
1713946495.436435109,0.655827,0.104241,3.22874,2.18466,0.154614,-0.0485012,0,0.0666667,0.0568421,0.968747
1713946495.586608448,0.655827,0.104241,3.22874,2.19417,0.14445,-0.0471757,0,0.0666667,0.0568421,0.968747
1713946495.736762245,0.655827,0.104241,3.22874,2.19413,0.144554,-0.0446095,0,0.0666667,0.0568421,0.968747
1713946495.886918083,0.655827,0.104241,3.22874,2.20361,0.144519,-0.0387139,0,0.0666667,0.0568421,0.968747
1713946496.037180384,0.655827,0.104241,3.22874,2.21331,0.144342,-0.0368058,0,0.0666667,-0.0189474,0.968747
1713946496.187483521,0.655827,0.104241,3.22874,2.22362,0.144099,-0.0294779,0,0.0666667,-0.0189474,0.968747
1713946496.337643152,0.655827,0.104241,3.22874,2.23374,0.143919,-0.0291307,0,0.0666667,-0.0189474,0.968747
1713946496.487801617,0.655827,0.104241,3.22874,2.24302,0.143903,-0.0217628,0,0.0666667,-0.0189474,0.968747
1713946496.637960082,0.655827,0.104241,3.22874,2.25264,0.14389,-0.0215855,0,0.0666667,-0.0568421,0.968747
1713946496.788115338,0.655827,0.104241,3.22874,2.2618,0.144002,-0.0163125,0,0.0666667,-0.0568421,0.968747
1713946496.938290137,0.655827,0.104241,3.22874,2.26136,0.144088,-0.0170584,0,0.0666667,-0.132632,0.968747
1713946497.088448311,0.655827,0.104241,3.22874,2.27621,0.144115,-0.0176304,0,0.0666667,-0.0189474,0.968747
1713946497.238610861,0.655827,0.104241,3.22874,2.28018,0.144122,-0.0221841,0,0.0666667,-0.0189474,0.968747
1713946497.388775160,0.655827,0.104241,3.22874,2.28967,0.144086,-0.0280344,0,0.0666667,-0.0189474,0.968747
1713946497.538934501,0.655827,0.104241,3.22874,2.29938,0.144105,-0.0327888,0,0.0666667,-0.0189474,0.968747
1713946497.689091509,0.655827,0.104241,3.22874,2.30875,0.144162,-0.0426724,0,0.0666667,-0.0947368,0.968747
1713946497.839246475,0.655827,0.104241,3.22874,2.31838,0.144165,-0.0469313,0,0.0666667,-0.0947368,0.968747
1713946497.989398232,0.655827,0.104241,3.22874,2.31798,0.144167,-0.0483282,0,0.0666667,-0.0189474,0.968747
1713946498.139552033,0.655827,0.104241,3.22874,2.32723,0.144388,-0.057319,0,0.0666667,-0.0189474,0.968747
1713946498.289707000,0.655827,0.104241,3.22874,2.33664,0.144481,-0.0627837,0,0.0666667,-0.0189474,0.968747
1713946498.439862259,0.655827,0.104241,3.22874,2.3463,0.144478,-0.0672667,0,0.0666667,-0.0189474,0.968747
1713946498.590014892,0.655827,0.104241,3.22874,2.35527,0.144531,-0.0724249,0,0.0666667,-0.0189474,0.968747
1713946498.740170735,0.655827,0.104241,3.22874,2.36474,0.144518,-0.0736953,0,0.0666667,-0.0189474,0.968747
1713946498.890323077,0.655827,0.104241,3.22874,2.37396,0.144517,-0.0776683,0,0.0666667,-0.0947368,0.968747
1713946499.040481544,0.655827,0.104241,3.22874,2.37363,0.144571,-0.080524,0,0.0666667,0,0.968747
1713946499.190637971,0.655827,0.104241,3.22874,2.38277,0.144672,-0.0851118,0,0.0666667,0,0.968747
1713946499.340820065,0.655827,0.104241,3.22874,2.39232,0.144683,-0.0931251,0,0.0666667,0,0.968747
1713946499.490978826,0.655827,0.104241,3.22874,2.40186,0.144712,-0.0929815,0,0.0666667,0.0189474,0.968747
1713946499.641136419,0.655827,0.104241,3.22874,2.41094,0.134497,-0.100002,0,0.0666667,0.0189474,0.968747
1713946499.791293138,0.655827,0.104241,3.22874,2.41995,0.134345,-0.103289,0,0.0666667,-0.0568421,0.968747
1713946499.941451023,0.655827,0.104241,3.22874,2.41952,0.134272,-0.10615,0,0.0666667,0.0568421,0.968747
1713946500.091607450,0.655827,0.104241,3.22874,2.42861,0.133974,-0.111014,0,0.0666667,0.0568421,0.968747
1713946500.241770004,0.655827,0.104241,3.22874,2.43812,0.133785,-0.112868,0,0.0666667,0.0568421,0.968747
1713946500.391929057,0.655827,0.104241,3.22874,2.44727,0.133385,-0.111805,0,0.0666667,0.0568421,0.968747
1713946500.542094527,0.655827,0.104241,3.22874,2.45681,0.133143,-0.113093,0,0.0666667,0.0568421,0.968747
1713946500.692251830,0.655827,0.104241,3.22874,2.46628,0.132899,-0.109428,0,0.0666667,-0.0568421,0.968747
1713946500.842410883,0.655827,0.104241,3.22874,2.46601,0.132829,-0.103343,0,0.0666667,0.0189474,0.968747
1713946500.992568186,0.655827,0.104241,3.22874,2.47517,0.132528,-0.101007,0,0.0666667,0.0568421,0.968747
1713946501.142726365,0.655827,0.104241,3.22874,2.48472,0.132283,-0.102058,0,0.0666667,0.0189474,0.968747
1713946501.292891253,0.655827,0.104241,3.22874,2.49381,0.131915,-0.0962389,0,0.0666667,0.0189474,0.968747
1713946501.443048849,0.655827,0.104241,3.22874,2.50355,0.131768,-0.0941491,0,0.0666667,0.0189474,0.968747
1713946501.593227446,0.655827,0.104241,3.22874,2.51269,0.121551,-0.0897119,0,0.0666667,0.0568421,0.968747

View File

@ -1,686 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713946819.656942650,1.04912,-0.815237,3.41718,0.0424549,0.0926322,-0.0150856,0,0.177778,-0.36,0
1713946819.807285754,1.04912,-0.815237,3.41718,0.0459409,0.0927565,-0.0161475,0,0.177778,-0.36,0
1713946819.957592689,1.04912,-0.815237,3.41718,0.0623578,0.0931879,-0.031589,0,0.2,-0.36,0
1713946820.107878333,1.04912,-0.815237,3.41718,0.0822489,0.093921,-0.0542376,0,0.2,-0.36,0
1713946820.258186436,1.04912,-0.815237,3.41718,0.102204,0.094987,-0.104978,0,0.2,-0.36,0
1713946820.408480538,1.04912,-0.815237,3.41718,0.122089,0.0955913,-0.138345,0,0.177778,-0.36,0
1713946820.558779891,1.04912,-0.815237,3.41718,0.15234,0.0865298,-0.205654,0,0.2,-0.36,0
1713946820.709062034,1.04912,-0.815237,3.41718,0.172375,0.0869695,-0.239109,0,0.2,-0.36,0
1713946820.859372763,1.04912,-0.815237,3.41718,0.202958,0.0720527,-0.301678,0,0.2,-0.36,0
1713946821.009722576,1.04912,-0.815237,3.41718,0.213244,0.0682559,-0.318105,0,0.2,-0.36,0
1713946821.160023971,1.04912,-0.815237,3.41718,0.243533,0.0594152,-0.376761,0,0.2,-0.322105,0
1713946821.310310198,1.04912,-0.815237,3.41718,0.274114,0.0508073,-0.429495,0,0.2,-0.322105,0
1713946821.460606927,1.04912,-0.815237,3.41718,0.302077,0.032183,-0.485237,0,0.2,-0.284211,0
1713946821.610903946,1.04912,-0.815237,3.41718,0.315876,0.023,-0.515743,0,0.2,-0.284211,0
1713946821.761252010,1.04912,-0.815237,3.41718,0.354538,0.00489229,-0.578765,0,0.2,-0.208421,0
1713946821.911578781,1.04912,-0.815237,3.41718,0.367522,-0.0039695,-0.608225,0,0.2,-0.208421,0
1713946822.061888343,1.04912,-0.815237,3.41718,0.398393,-0.0225909,-0.645092,0,0.2,-0.170526,0
1713946822.212211615,1.04912,-0.815237,3.41718,0.419442,-0.041078,-0.676516,0,0.2,-0.208421,0
1713946822.362507469,1.04912,-0.815237,3.41718,0.440303,-0.0599678,-0.711398,0,0.2,-0.170526,0
1713946822.512805072,1.04912,-0.815237,3.41718,0.461301,-0.0785463,-0.739146,0,0.2,-0.0947368,0
1713946822.663097426,1.04912,-0.815237,3.41718,0.482255,-0.0972312,-0.769689,0,0.2,-0.0947368,0
1713946822.813381029,1.04912,-0.815237,3.41718,0.492871,-0.105889,-0.785546,0,0.2,-0.0568421,0
1713946822.963545628,1.04912,-0.815237,3.41718,0.530192,-0.144083,-0.821696,0,0.2,-0.0568421,0
1713946823.113700602,1.04912,-0.815237,3.41718,0.535045,-0.152922,-0.83064,0,0.2,-0.0947368,0
1713946823.263857618,1.04912,-0.815237,3.41718,0.561603,-0.177266,-0.845103,0,0.2,-0.0947368,0
1713946823.414011133,1.04912,-0.815237,3.41718,0.576937,-0.200277,-0.859405,0,0.2,-0.0189474,0
1713946823.564173691,1.04912,-0.815237,3.41718,0.597705,-0.219544,-0.869472,0,0.2,-0.0568421,0
1713946823.714332457,1.04912,-0.815237,3.41718,0.618973,-0.248242,-0.883737,0,0.2,-0.0568421,0
1713946823.864492097,1.04912,-0.815237,3.41718,0.639453,-0.257376,-0.890795,0,0.2,-0.0947368,0
1713946824.014647363,1.04912,-0.815237,3.41718,0.660655,-0.285989,-0.900601,0,0.2,-0.0947368,0
1713946824.164802921,1.04912,-0.815237,3.41718,0.671408,-0.30538,-0.90837,0,0.2,-0.0568421,0
1713946824.314961688,1.04912,-0.815237,3.41718,0.692946,-0.334516,-0.91589,0,0.2,-0.0947368,0
1713946824.465133580,1.04912,-0.815237,3.41718,0.71403,-0.359332,-0.926109,0,0.2,0,0
1713946824.615292346,1.04912,-0.815237,3.41718,0.725637,-0.382921,-0.932125,0,0.2,-0.0189474,0
1713946824.765483780,1.04912,-0.815237,3.41718,0.746661,-0.401895,-0.938351,0,0.2,-0.0947368,0
1713946824.915644297,1.04912,-0.815237,3.41718,0.757855,-0.421031,-0.941832,0,0.177778,-0.0189474,0
1713946825.065799564,1.04912,-0.815237,3.41718,0.778813,-0.440156,-0.949848,0,0.2,-0.0189474,0
1713946825.215958039,1.04912,-0.815237,3.41718,0.790092,-0.459758,-0.955331,0,0.2,-0.0568421,0
1713946825.366111264,1.04912,-0.815237,3.41718,0.811766,-0.496069,-0.96349,0,0.2,-0.0189474,0
1713946825.516269156,1.04912,-0.815237,3.41718,0.822998,-0.508985,-0.967326,0,0.177778,-0.0568421,0
1713946825.666428215,1.04912,-0.815237,3.41718,0.8517,-0.545373,-0.975476,0,0.177778,0.0189474,0
1713946825.816587274,1.04912,-0.815237,3.41718,0.865769,-0.558103,-0.978272,0,0.155556,0,0
1713946825.966742249,1.04912,-0.815237,3.41718,0.877036,-0.588049,-0.981152,0,0.133333,-0.0568421,0
1713946826.116947977,1.04912,-0.815237,3.41718,0.888079,-0.598404,-0.98329,0,0.133333,0,0
1713946826.267292544,1.04912,-0.815237,3.41718,0.898857,-0.618343,-0.984794,0,0.111111,0.0189474,0
1713946826.417603276,1.04912,-0.815237,3.41718,0.920052,-0.63854,-0.987283,0,0.111111,0,0
1713946826.567908466,1.04912,-0.815237,3.41718,0.920584,-0.648609,-0.986318,0,0.111111,0.0568421,0
1713946826.718202280,1.04912,-0.815237,3.41718,0.931633,-0.66887,-0.987936,0,0.0888889,0,0
1713946826.868508054,1.04912,-0.815237,3.41718,0.942434,-0.688753,-0.987203,0,0.0888889,0.0947368,0
1713946827.018819369,1.04912,-0.815237,3.41718,0.953217,-0.699019,-0.98645,0,0,-0.5,0
1713946827.169110560,1.04912,-0.815237,3.41718,0.963867,-0.709153,-0.983756,0,0,-0.5,0
1713946827.319404375,1.04912,-0.815237,3.41718,0.964718,-0.719879,-0.979878,0,0,-0.5,0
1713946827.469687106,1.04912,-0.815237,3.41718,0.975699,-0.73011,-0.987978,0,0,-0.5,0
1713946827.619993172,1.04912,-0.815237,3.41718,0.976165,-0.730342,-1.01671,0,0,-0.5,0
1713946827.770267737,1.04912,-0.815237,3.41718,0.977361,-0.740613,-1.0728,0,0,-0.5,0
1713946827.920567386,1.04912,-0.815237,3.41718,0.97835,-0.741153,-1.12163,0,0,-0.5,0
1713946828.070895911,1.04912,-0.815237,3.41718,0.978798,-0.741267,-1.20095,0,0,-0.5,0
1713946828.221190894,1.04912,-0.815237,3.41718,0.979778,-0.741399,-1.25429,0,0,-0.5,0
1713946828.371503377,1.04912,-0.815237,3.41718,0.980064,-0.741452,-1.337,0,0,-0.5,0
1713946828.521789901,1.04912,-0.815237,3.41718,0.981233,-0.751325,-1.38532,0,0,-0.5,0
1713946828.672128927,1.04912,-0.815237,3.41718,0.981647,-0.75102,-1.47249,0,0,-0.5,0
1713946828.822424493,1.04912,-0.815237,3.41718,0.982611,-0.750198,-1.5286,0,0,-0.5,0
1713946828.972746019,1.04912,-0.815237,3.41718,0.983149,-0.74989,-1.58431,0,0,-0.5,0
1713946829.123045961,1.04912,-0.815237,3.41718,0.983817,-0.749409,-1.65531,0,0,-0.5,0
1713946829.273330444,1.04912,-0.815237,3.41718,0.98419,-0.748984,-1.69736,0,0,-0.5,0
1713946829.423624260,1.04912,-0.815237,3.41718,0.984615,-0.7486,-1.74552,0,0,-0.5,0
1713946829.573953662,1.04912,-0.815237,3.41718,0.984737,-0.748402,-1.80179,0,0,-0.5,0
1713946829.724247770,1.04912,-0.815237,3.41718,0.985039,-0.748015,-1.90929,0,0,-0.5,0
1713946829.874520586,1.04912,-0.815237,3.41718,0.985267,-0.748003,-1.98625,0,0,-0.5,0
1713946830.024847070,1.04912,-0.815237,3.41718,0.985942,-0.747473,-2.06086,0,0,-0.5,0
1713946830.175109386,1.04912,-0.815237,3.41718,0.986289,-0.747317,-2.12173,0,0,-0.5,0
1713946830.325278366,1.04912,-0.815237,3.41718,0.986606,-0.746934,-2.1845,0,0,-0.5,0
1713946830.475428386,1.04912,-0.815237,3.41718,0.99668,-0.746071,-2.28741,0,0,-0.5,0
1713946830.625582489,1.04912,-0.815237,3.41718,0.996879,-0.74611,-2.35964,0,0,-0.5,0
1713946830.775730759,1.04912,-0.815237,3.41718,0.997023,-0.746138,-2.42281,0,0,-0.5,0
1713946830.925888654,1.04912,-0.815237,3.41718,0.99767,-0.746342,-2.48887,0,0,-0.5,0
1713946831.076042175,1.04912,-0.815237,3.41718,0.998009,-0.74637,-2.57078,0,0,-0.5,0
1713946831.226204154,1.04912,-0.815237,3.41718,0.998261,-0.74628,-2.61853,0,0,0,0
1713946832.042220719,0.800866,-0.924637,3.02449,0.990666,-0.745559,-2.80295,0,0.155556,0.284211,0.75
1713946832.841943277,0.500866,-0.924637,3.02449,0.944342,-0.767898,-2.65942,0,0.2,-0.208421,1
1713946833.692500653,0.200866,-0.924637,3.02449,0.818129,-0.83584,-2.69792,0,0.2,-0.246316,1
1713946834.449952943,-0.0991339,-0.924637,3.02449,0.692874,-0.885154,-2.83317,0,0.2,-0.170526,1
1713946835.297909723,-0.399134,-0.924637,3.02449,0.537382,-0.918138,-2.98321,0,0.2,-0.0947368,1
1713946836.050265527,-0.699134,-0.924637,3.02449,0.399665,-0.937252,-3.07509,0,0.2,-0.0568421,1
1713946836.200567224,-0.699134,-0.924637,3.02449,0.380005,-0.938348,-3.08573,0,0.2,-0.0568421,1
1713946836.350870670,-0.699134,-0.924637,3.02449,0.350259,-0.940429,-3.09374,0,0.2,-0.0568421,1
1713946836.501156908,-0.699134,-0.924637,3.02449,0.309953,-0.933262,-3.10341,0,0.2,-0.0568421,1
1713946836.651441104,-0.699134,-0.924637,3.02449,0.290157,-0.934717,-3.10741,0,0.2,-0.0568421,1
1713946837.429669630,-0.849134,-0.924637,3.02449,0.140988,-0.945222,-3.13845,0,0.2,-0.0189474,1
1713946838.289665433,-0.965237,-0.949124,1.84639,0.000504614,-0.934384,3.13245,0,0.2,-0.0189474,0.25
1713946838.439832959,-0.965237,-0.949124,1.84639,-0.0293465,-0.936279,3.13091,0,0.2,-0.0189474,0.25
1713946838.589986484,-0.965237,-0.949124,1.84639,-0.0591025,-0.938127,3.12807,0,0.2,-0.0189474,0.25
1713946838.740167135,-0.965237,-0.949124,1.84639,-0.0788949,-0.939254,3.12719,0,0.2,-0.0189474,0.25
1713946838.890323869,-0.965237,-0.949124,1.84639,-0.109156,-0.93108,3.12505,0,0.2,-0.0189474,0.25
1713946839.040477395,-0.965237,-0.949124,1.84639,-0.138875,-0.933157,3.12282,0,0.2,-0.0189474,0.25
1713946839.190631504,-0.965237,-0.949124,1.84639,-0.168519,-0.935073,3.12142,0,0.2,-0.0189474,0.25
1713946839.340782988,-0.965237,-0.949124,1.84639,-0.20425,-0.931824,3.11967,0,0.2,0,0.25
1713946839.490945848,-0.965237,-0.949124,1.84639,-0.218734,-0.928419,3.11773,0,0.2,0.0189474,0.25
1713946839.641099082,-0.965237,-0.949124,1.84639,-0.258624,-0.930931,3.11688,0,0.2,0,0.25
1713946839.791256108,-0.965237,-0.949124,1.84639,-0.288534,-0.932973,3.11475,0,0.2,0,0.25
1713946839.941413426,-0.965237,-0.949124,1.84639,-0.308847,-0.928379,3.11397,0,0.2,0,0.25
1713946840.091577161,-0.965237,-0.949124,1.84639,-0.338968,-0.926183,3.11599,0,0.2,0,0.25
1713946840.241725146,-0.965237,-0.949124,1.84639,-0.374303,-0.928396,3.11801,0,0.2,0,0.25
1713946840.391895589,-0.965237,-0.949124,1.84639,-0.388785,-0.928982,3.11819,0,0.2,0,0.25
1713946840.542273125,-0.965237,-0.949124,1.84639,-0.419313,-0.9211,3.11928,0,0.2,0,0.25
1713946840.692573949,-0.965237,-0.949124,1.84639,-0.456325,-0.92322,3.11863,0,0.2,0,0.25
1713946840.842860772,-0.965237,-0.949124,1.84639,-0.469011,-0.923864,3.11864,0,0.2,0,0.25
1713946840.993162180,-0.965237,-0.949124,1.84639,-0.515137,-0.920664,3.11848,0,0.2,0,0.25
1713946841.143449004,-0.965237,-0.949124,1.84639,-0.539464,-0.917958,3.11896,0,0.2,0,0.25
1713946841.293758579,-0.965237,-0.949124,1.84639,-0.56512,-0.919737,3.12,0,0.2,0,0.25
1713946841.444058237,-0.965237,-0.949124,1.84639,-0.589117,-0.921169,3.1204,0,0.177778,0,0.25
1713946841.594357311,-0.965237,-0.949124,1.84639,-0.608962,-0.922279,3.11942,0,0.177778,0.0189474,0.25
1713946841.744645594,-0.965237,-0.949124,1.84639,-0.639626,-0.914157,3.12047,0,0.155556,0.0568421,0.25
1713946841.894958377,-0.965237,-0.949124,1.84639,-0.676717,-0.916413,3.12203,0,0.155556,0.0947368,0.25
1713946842.045257452,-0.965237,-0.949124,1.84639,-0.699417,-0.917808,3.12433,0,0.133333,0.0568421,0.25
1713946842.195556819,-0.965237,-0.949124,1.84639,-0.719237,-0.918955,3.12698,0,0.133333,0.0568421,0.25
1713946843.005608605,-0.990545,-0.916034,1.74821,-0.818688,-0.915745,-3.09769,0,0.0888889,-0.0568421,0.9375
1713946843.815958782,-1.09912,-0.834762,0.275592,-0.867691,-0.920978,3.12918,0,0.111111,-0.246316,0.0625001
1713946843.966121061,-1.09912,-0.834762,0.275592,-0.887258,-0.923466,3.08388,0,0.111111,-0.246316,0.0625001
1713946844.116290924,-1.09912,-0.834762,0.275592,-0.896657,-0.925034,3.04618,0,0.111111,-0.208421,0.0625001
1713946844.266456412,-1.09912,-0.834762,0.275592,-0.907216,-0.916681,3.00971,0,0.0888889,-0.284211,0.0625001
1713946844.416611691,-1.09912,-0.834762,0.275592,-0.926314,-0.920072,2.97377,0,0.0888889,-0.284211,0.0625001
1713946844.566765512,-1.09912,-0.834762,0.275592,-0.935485,-0.922399,2.9405,0,0.0888889,-0.208421,0.0625001
1713946844.716918166,-1.09912,-0.834762,0.275592,-0.946017,-0.914126,2.91602,0,0.0888889,-0.208421,0.0625001
1713946844.867089196,-1.09912,-0.834762,0.275592,-0.955538,-0.915929,2.87125,0,0.0666667,-0.246316,0.0625001
1713946845.017436107,-1.09912,-0.834762,0.275592,-0.965716,-0.907956,2.84612,0,0.0666667,-0.208421,0.0625001
1713946845.167768436,-1.09912,-0.834762,0.275592,-0.975401,-0.909399,2.81767,0,0,-0.5,0.0625001
1713946845.318066054,-1.09912,-0.834762,0.275592,-0.984825,-0.911003,2.78935,0,0,-0.5,0.0625001
1713946845.468430759,-1.09912,-0.834762,0.275592,-0.985696,-0.901432,2.75678,0,0,-0.5,0.0625001
1713946845.618735086,-1.09912,-0.834762,0.275592,-0.995248,-0.90307,2.71616,0,0,-0.5,0.0625001
1713946845.769144418,-1.09912,-0.834762,0.275592,-0.9951,-0.903306,2.64177,0,0,-0.5,0.0625001
1713946845.919437078,-1.09912,-0.834762,0.275592,-0.99478,-0.903631,2.59175,0,0,-0.5,0.0625001
1713946846.069923413,-1.09912,-0.834762,0.275592,-0.994548,-0.903822,2.51649,0,0,-0.5,0.0625001
1713946846.220219865,-1.09912,-0.834762,0.275592,-0.995135,-0.894499,2.44073,0,0,-0.5,0.0625001
1713946846.370505818,-1.09912,-0.834762,0.275592,-0.995144,-0.894796,2.36897,0,0,-0.5,0.0625001
1713946846.520801395,-1.09912,-0.834762,0.275592,-0.994887,-0.895348,2.32311,0,0,-0.5,0.0625001
1713946846.671078305,-1.09912,-0.834762,0.275592,-0.994772,-0.895482,2.21523,0,0,-0.5,0.0625001
1713946846.821362799,-1.09912,-0.834762,0.275592,-0.994203,-0.89586,2.15713,0,0,-0.5,0.0625001
1713946846.971647585,-1.09912,-0.834762,0.275592,-1.00358,-0.897425,2.10377,0,0,-0.5,0.0625001
1713946847.121935579,-1.09912,-0.834762,0.275592,-1.00264,-0.897575,2.05542,0,0,-0.5,0.0625001
1713946847.272280451,-1.09912,-0.834762,0.275592,-1.00205,-0.897478,1.99409,0,0,-0.5,0.0625001
1713946847.422566404,-1.09912,-0.834762,0.275592,-1.00203,-0.897309,1.96118,0,0,-0.5,0.0625001
1713946847.572852065,-1.09912,-0.834762,0.275592,-1.00212,-0.897119,1.86908,0,0,-0.5,0.0625001
1713946847.723149977,-1.09912,-0.834762,0.275592,-1.00176,-0.897088,1.77,0,0,-0.5,0.0625001
1713946847.873477639,-1.09912,-0.834762,0.275592,-1.00061,-0.897267,1.6868,0,0,-0.5,0.0625001
1713946848.023786635,-1.09912,-0.834762,0.275592,-0.999978,-0.897407,1.63614,0,0,-0.5,0.0625001
1713946848.174059754,-1.09912,-0.834762,0.275592,-0.999564,-0.897179,1.55518,0,0,-0.5,0.0625001
1713946848.324222328,-1.09912,-0.834762,0.275592,-0.998284,-0.896945,1.48361,0,0,-0.5,0.0625001
1713946848.474372943,-1.09912,-0.834762,0.275592,-0.997717,-0.896875,1.43809,0,0,-0.5,0.0625001
1713946848.624532308,-1.09912,-0.834762,0.275592,-0.996863,-0.896614,1.34763,0,0,-0.5,0.0625001
1713946848.774680881,-1.09912,-0.834762,0.275592,-0.99634,-0.896601,1.26243,0,0,-0.5,0.0625001
1713946848.924839080,-1.09912,-0.834762,0.275592,-0.995168,-0.896752,1.20411,0,0,-0.5,0.0625001
1713946849.074992320,-1.09912,-0.834762,0.275592,-0.993978,-0.896925,1.13712,0,0,-0.5,0.0625001
1713946849.225149644,-1.09912,-0.834762,0.275592,-0.993665,-0.896855,1.05739,0,0,-0.5,0.0625001
1713946849.375307551,-1.09912,-0.834762,0.275592,-0.993905,-0.89632,0.965653,0,0,-0.5,0.0625001
1713946849.525475959,-1.09912,-0.834762,0.275592,-0.99404,-0.896502,0.915722,0,0,-0.5,0.0625001
1713946849.675631825,-1.09912,-0.834762,0.275592,-0.993915,-0.896602,0.84187,0,0,-0.5,0.0625001
1713946849.825790607,-1.09912,-0.834762,0.275592,-0.992705,-0.897294,0.770353,0,0,-0.5,0.0625001
1713946849.975945598,-1.09912,-0.834762,0.275592,-0.991757,-0.897887,0.716565,0,0,-0.5,0.0625001
1713946850.126107006,-1.09912,-0.834762,0.275592,-0.991531,-0.899066,0.629134,0,0,-0.5,0.0625001
1713946850.276266664,-1.09912,-0.834762,0.275592,-0.991612,-0.89963,0.565204,0,0,-0.5,0.0625001
1713946850.426426031,-1.09912,-0.834762,0.275592,-0.991567,-0.900559,0.455822,0,0,0,0.0625001
1713946851.283575102,-0.850866,-0.725363,-0.117107,-0.977513,-0.906518,0.344088,0,0.0888889,0.36,0.75
1713946852.117506020,-0.550866,-0.725363,-0.117107,-0.937108,-0.896867,0.495547,0,0.2,-0.132632,1
1713946852.880389997,-0.250866,-0.725363,-0.117107,-0.828562,-0.840214,0.498941,0,0.177778,-0.246316,1
1713946853.736928596,0.0491342,-0.725363,-0.117107,-0.692231,-0.777209,0.354627,0,0.2,-0.208421,1
1713946854.586489383,0.349134,-0.725363,-0.117107,-0.541884,-0.736279,0.198775,0,0.2,-0.132632,1
1713946855.374565311,0.649134,-0.725363,-0.117107,-0.39385,-0.717936,0.0899743,0,0.2,-0.0568421,1
1713946855.524869061,0.649134,-0.725363,-0.117107,-0.374096,-0.715799,0.0785926,0,0.2,-0.0568421,1
1713946855.675241064,0.649134,-0.725363,-0.117107,-0.344271,-0.712593,0.0594467,0,0.2,-0.0568421,1
1713946856.481303907,0.799134,-0.725363,-0.117107,-0.194232,-0.709635,0.00868795,0,0.2,-0.0189474,1
1713946857.239907522,1.14551,-0.656804,1.35551,-0.0440652,-0.707287,-0.005384,0,0.2,0.0189474,0.0625001
1713946857.390075060,1.14551,-0.656804,1.35551,-0.0131342,-0.714692,-0.00304272,0,0.2,0.0189474,0.0625001
1713946857.540224806,1.14551,-0.656804,1.35551,0.0124663,-0.712212,-0.00044032,0,0.2,0.0189474,0.0625001
1713946857.690399344,1.14551,-0.656804,1.35551,0.0366712,-0.709893,0.00225782,0,0.2,0.0189474,0.0625001
1713946857.840556673,1.14551,-0.656804,1.35551,0.0665501,-0.706711,0.00582243,0,0.2,0.0189474,0.0625001
1713946857.990723044,1.14551,-0.656804,1.35551,0.0873591,-0.714442,0.00685414,0,0.2,0.0189474,0.0625001
1713946858.141040505,1.14551,-0.656804,1.35551,0.116913,-0.711218,0.0112834,0,0.2,0,0.0625001
1713946858.291348340,1.14551,-0.656804,1.35551,0.136238,-0.708696,0.0144547,0,0.2,0,0.0625001
1713946858.441652384,1.14551,-0.656804,1.35551,0.166823,-0.715408,0.0167144,0,0.2,0.0189474,0.0625001
1713946858.591950886,1.14551,-0.656804,1.35551,0.196358,-0.712074,0.018495,0,0.2,0,0.0625001
1713946858.742258721,1.14551,-0.656804,1.35551,0.226686,-0.708927,0.0210824,0,0.2,0,0.0625001
1713946858.892575890,1.14551,-0.656804,1.35551,0.257004,-0.705608,0.022762,0,0.2,0,0.0625001
1713946859.042874101,1.14551,-0.656804,1.35551,0.278751,-0.713376,0.0223124,0,0.2,0,0.0625001
1713946859.193171728,1.14551,-0.656804,1.35551,0.310171,-0.710165,0.0218864,0,0.2,0,0.0625001
1713946859.343470814,1.14551,-0.656804,1.35551,0.340723,-0.706974,0.0213246,0,0.2,0,0.0625001
1713946859.493777192,1.14551,-0.656804,1.35551,0.371598,-0.703649,0.0194941,0,0.2,0,0.0625001
1713946859.644090570,1.14551,-0.656804,1.35551,0.393353,-0.711339,0.0176189,0,0.2,0,0.0625001
1713946859.794468117,1.14551,-0.656804,1.35551,0.431925,-0.707415,0.017393,0,0.2,0,0.0625001
1713946859.944825247,1.14551,-0.656804,1.35551,0.455569,-0.70495,0.0145878,0,0.2,0,0.0625001
1713946860.095172168,1.14551,-0.656804,1.35551,0.492557,-0.701387,0.0122986,0,0.2,0.0189474,0.0625001
1713946860.245457546,1.14551,-0.656804,1.35551,0.518357,-0.70901,0.0118951,0,0.2,0.0189474,0.0625001
1713946860.395766549,1.14551,-0.656804,1.35551,0.53941,-0.706922,0.0119859,0,0.177778,0,0.0625001
1713946860.546074094,1.14551,-0.656804,1.35551,0.579803,-0.702842,0.0141029,0,0.2,0,0.0625001
1713946860.696246884,1.14551,-0.656804,1.35551,0.60093,-0.701048,0.0172649,0,0.2,0,0.0625001
1713946860.846407423,1.14551,-0.656804,1.35551,0.632409,-0.707932,0.0184899,0,0.2,0,0.0625001
1713946860.996566796,1.14551,-0.656804,1.35551,0.662984,-0.704668,0.019402,0,0.2,0,0.0625001
1713946861.146719461,1.14551,-0.656804,1.35551,0.700303,-0.700466,0.0187521,0,0.2,0,0.0625001
1713946861.296876500,1.14551,-0.656804,1.35551,0.713681,-0.698775,0.0185114,0,0.2,0,0.0625001
1713946861.447040249,1.14551,-0.656804,1.35551,0.744825,-0.705369,0.0194428,0,0.2,0,0.0625001
1713946861.597195538,1.14551,-0.656804,1.35551,0.765339,-0.703038,0.0184858,0,0.177778,0,0.0625001
1713946861.747357245,1.14551,-0.656804,1.35551,0.805427,-0.698707,0.0181675,0,0.155556,0.0568421,0.0625001
1713946861.897515452,1.14551,-0.656804,1.35551,0.835992,-0.695637,0.0182514,0,0.155556,0.0568421,0.0625001
1713946862.047672783,1.14551,-0.656804,1.35551,0.857326,-0.703417,0.0177469,0,0.133333,0.0568421,0.0625001
1713946862.197821073,1.14551,-0.656804,1.35551,0.878014,-0.701283,0.0227725,0,0.133333,0.0568421,0.0625001
1713946862.347977822,1.14551,-0.656804,1.35551,0.89829,-0.699195,0.0265353,0,0.111111,0.132632,0.0625001
1713946862.498131362,1.14551,-0.656804,1.35551,0.924678,-0.696485,0.032878,0,0.111111,0.132632,0.0625001
1713946862.648289569,1.14551,-0.656804,1.35551,0.946396,-0.69421,0.042327,0,0.111111,0.132632,0.0625001
1713946862.798446318,1.14551,-0.656804,1.35551,0.960254,-0.692887,0.0483119,0,0.0888889,0.132632,0.0625001
1713946862.948606275,1.14551,-0.656804,1.35551,0.980662,-0.690998,0.0575086,0,0.0888889,0.0947368,0.0625001
1713946863.098729190,1.14551,-0.656804,1.35551,0.991563,-0.689989,0.07082,0,0,0.5,0.0625001
1713946863.248886523,1.14551,-0.656804,1.35551,1.00278,-0.6991,0.0818988,0,0,0.5,0.0625001
1713946863.399043272,1.14551,-0.656804,1.35551,1.01371,-0.697782,0.0938208,0,0,0.5,0.0625001
1713946863.549219855,1.14551,-0.656804,1.35551,1.0236,-0.687155,0.129703,0,0,0.5,0.0625001
1713946863.699372230,1.14551,-0.656804,1.35551,1.03472,-0.686473,0.154394,0,0,0.5,0.0625001
1713946863.849530437,1.14551,-0.656804,1.35551,1.04545,-0.685934,0.194912,0,0,0.5,0.0625001
1713946863.999711104,1.14551,-0.656804,1.35551,1.04696,-0.686091,0.237315,0,0,0.5,0.0625001
1713946864.149868729,1.14551,-0.656804,1.35551,1.04761,-0.686054,0.270901,0,0,0.5,0.0625001
1713946864.300019646,1.14551,-0.656804,1.35551,1.04886,-0.685929,0.312878,0,0,0.5,0.0625001
1713946864.450177271,1.14551,-0.656804,1.35551,1.05928,-0.685909,0.351812,0,0,0.5,0.0625001
1713946864.600331104,1.14551,-0.656804,1.35551,1.0604,-0.685692,0.393532,0,0,0.5,0.0625001
1713946864.750490187,1.14551,-0.656804,1.35551,1.06096,-0.685696,0.444239,0,0,0.5,0.0625001
1713946864.900649854,1.14551,-0.656804,1.35551,1.06216,-0.685837,0.491582,0,0,0.5,0.0625001
1713946865.050810104,1.14551,-0.656804,1.35551,1.06283,-0.685947,0.533135,0,0,0.5,0.0625001
1713946865.200960729,1.14551,-0.656804,1.35551,1.06418,-0.686122,0.592125,0,0,0.5,0.0625001
1713946865.351118647,1.14551,-0.656804,1.35551,1.06487,-0.686351,0.657244,0,0,0.5,0.0625001
1713946865.501274231,1.14551,-0.656804,1.35551,1.06642,-0.686959,0.712739,0,0,0.5,0.0625001
1713946865.651431273,1.14551,-0.656804,1.35551,1.06724,-0.687251,0.790448,0,0,0.5,0.0625001
1713946865.801583356,1.14551,-0.656804,1.35551,1.06871,-0.687952,0.86587,0,0,0.5,0.0625001
1713946865.951740399,1.14551,-0.656804,1.35551,1.06942,-0.688288,0.9317,0,0,0.5,0.0625001
1713946866.101890149,1.14551,-0.656804,1.35551,1.07094,-0.689068,1.00918,0,0,0.5,0.0625001
1713946866.252050984,1.14551,-0.656804,1.35551,1.07166,-0.689337,1.07777,0,0,0.5,0.0625001
1713946866.402205985,1.14551,-0.656804,1.35551,1.0727,-0.689516,1.15285,0,0,0,0.0625001
1713946867.256438040,1.17536,-0.600866,1.45369,1.07684,-0.690019,1.28123,0,0,0,0.9375
1713946868.066165273,1.1068,-0.25449,2.92631,1.08225,-0.680604,1.28486,0,0.2,0.132632,0.0624997
1713946868.216352360,1.1068,-0.25449,2.92631,1.08627,-0.661048,1.30761,0,0.2,0.132632,0.0624997
1713946868.366650868,1.1068,-0.25449,2.92631,1.09944,-0.642692,1.33514,0,0.2,0.132632,0.0624997
1713946868.516809953,1.1068,-0.25449,2.92631,1.10315,-0.623066,1.35891,0,0.177778,0.0947368,0.0624997
1713946868.666972831,1.1068,-0.25449,2.92631,1.10611,-0.603267,1.38102,0,0.155556,0.132632,0.0624997
1713946868.817129875,1.1068,-0.25449,2.92631,1.10962,-0.583792,1.40051,0,0.155556,0.0947368,0.0624997
1713946868.967291586,1.1068,-0.25449,2.92631,1.11347,-0.557198,1.41942,0,0.155556,0.132632,0.0624997
1713946869.117449797,1.1068,-0.25449,2.92631,1.11611,-0.544616,1.43128,0,0.133333,0.132632,0.0624997
1713946869.267605675,1.1068,-0.25449,2.92631,1.12032,-0.515021,1.45065,0,0.133333,0.132632,0.0624997
1713946869.417773512,1.1068,-0.25449,2.92631,1.12256,-0.505111,1.46468,0,0.111111,0.132632,0.0624997
1713946869.567927348,1.1068,-0.25449,2.92631,1.1263,-0.485452,1.48264,0,0.111111,0.132632,0.0624997
1713946869.718090518,1.1068,-0.25449,2.92631,1.12944,-0.465558,1.49562,0,0.0888889,0.0947368,0.0624997
1713946869.868247271,1.1068,-0.25449,2.92631,1.13258,-0.445807,1.51405,0,0.0888889,0.0947368,0.0624997
1713946870.018409274,1.1068,-0.25449,2.92631,1.13505,-0.435713,1.52368,0,0.0888889,0.0947368,0.0624997
1713946870.168581778,1.1068,-0.25449,2.92631,1.13832,-0.4159,1.53887,0,0.0888889,0.170526,0.0624997
1713946870.318742032,1.1068,-0.25449,2.92631,1.14067,-0.406273,1.54842,0,0,0.5,0.0624997
1713946870.469033249,1.1068,-0.25449,2.92631,1.14265,-0.396414,1.55792,0,0,0.5,0.0624997
1713946870.619347801,1.1068,-0.25449,2.92631,1.14517,-0.386407,1.58354,0,0,0.5,0.0624997
1713946870.769623559,1.1068,-0.25449,2.92631,1.13805,-0.374824,1.62953,0,0,0.5,0.0624997
1713946870.919924985,1.1068,-0.25449,2.92631,1.1386,-0.375014,1.6554,0,0,0.5,0.0624997
1713946871.070215619,1.1068,-0.25449,2.92631,1.14127,-0.365575,1.69506,0,0,0.5,0.0624997
1713946871.220540671,1.1068,-0.25449,2.92631,1.14177,-0.365925,1.7365,0,0,0.5,0.0624997
1713946871.370873307,1.1068,-0.25449,2.92631,1.14417,-0.356429,1.79655,0,0,0.5,0.0624997
1713946871.521186109,1.1068,-0.25449,2.92631,1.14517,-0.356994,1.84209,0,0,0.5,0.0624997
1713946871.671453409,1.1068,-0.25449,2.92631,1.14564,-0.357235,1.89957,0,0,0.5,0.0624997
1713946871.821782545,1.1068,-0.25449,2.92631,1.14653,-0.35729,1.97483,0,0,0.5,0.0624997
1713946871.972073180,1.1068,-0.25449,2.92631,1.14709,-0.357198,2.05009,0,0,0.5,0.0624997
1713946872.122376940,1.1068,-0.25449,2.92631,1.14791,-0.356737,2.11997,0,0,0.5,0.0624997
1713946872.272653283,1.1068,-0.25449,2.92631,1.14827,-0.356633,2.19526,0,0,0.5,0.0624997
1713946872.422957919,1.1068,-0.25449,2.92631,1.14905,-0.356422,2.24744,0,0,0.5,0.0624997
1713946872.573257887,1.1068,-0.25449,2.92631,1.1397,-0.354152,2.33999,0,0,0.5,0.0624997
1713946872.723553189,1.1068,-0.25449,2.92631,1.14042,-0.353453,2.40701,0,0,0.5,0.0624997
1713946872.873832740,1.1068,-0.25449,2.92631,1.14066,-0.353179,2.45295,0,0,0.5,0.0624997
1713946873.024130667,1.1068,-0.25449,2.92631,1.14117,-0.352968,2.55506,0,0,0.5,0.0624997
1713946873.174432678,1.1068,-0.25449,2.92631,1.14122,-0.352725,2.60112,0,0,0.5,0.0624997
1713946873.324733814,1.1068,-0.25449,2.92631,1.14098,-0.352515,2.69522,0,0,0,0.0624997
1713946874.129992267,0.800866,-0.224637,3.02449,1.13788,-0.350614,2.86533,0,0.177778,-0.0568421,0.9375
1713946874.843967730,0.500866,-0.224637,3.02449,1.05966,-0.322513,2.87359,0,0.2,0.0947368,1
1713946875.609040238,0.200866,-0.224637,3.02449,0.930188,-0.294027,2.90806,0,0.2,0.0947368,1
1713946876.318152265,-0.0991339,-0.224637,3.02449,0.806359,-0.257155,2.95127,0,0.2,0.0947368,1
1713946877.091090752,-0.399134,-0.224637,3.02449,0.661794,-0.235057,3.00712,0,0.2,0.0947368,1
1713946877.241245760,-0.399134,-0.224637,3.02449,0.632306,-0.228554,3.01919,0,0.2,0.0947368,1
1713946877.391405435,-0.399134,-0.224637,3.02449,0.612599,-0.22407,3.02536,0,0.2,0.0568421,1
1713946877.541555484,-0.399134,-0.224637,3.02449,0.580723,-0.226772,3.03722,0,0.2,0.0568421,1
1713946878.261891289,-0.699134,-0.224637,3.02449,0.4498,-0.207243,3.08899,0,0.2,0.0189474,1
1713946878.412212845,-0.699134,-0.224637,3.02449,0.411878,-0.209184,3.10411,0,0.2,0.0568421,1
1713946878.562534694,-0.699134,-0.224637,3.02449,0.38803,-0.204316,3.11244,0,0.2,0.0568421,1
1713946878.712818915,-0.699134,-0.224637,3.02449,0.349388,-0.206493,3.12158,0,0.2,0.0189474,1
1713946878.863108970,-0.699134,-0.224637,3.02449,0.336347,-0.203773,3.12624,0,0.2,0.0189474,1
1713946879.013279729,-0.699134,-0.224637,3.02449,0.294689,-0.205353,3.13348,0,0.2,0.0189474,1
1713946879.758488972,-0.849134,-0.224637,3.02449,0.171397,-0.200246,-3.1335,0,0.2,0,1
1713946879.908792153,-0.849134,-0.224637,3.02449,0.149365,-0.20565,-3.1324,0,0.2,0,1
1713946880.684696727,-0.965237,-0.249124,1.84639,-0.00538281,-0.205686,-3.12658,0,0.2,0,0.25
1713946880.835061453,-0.965237,-0.249124,1.84639,-0.0409678,-0.198833,-3.12794,0,0.2,0,0.25
1713946880.985344801,-0.965237,-0.249124,1.84639,-0.0669291,-0.2039,-3.1267,0,0.2,0,0.25
1713946881.135652358,-0.965237,-0.249124,1.84639,-0.0965347,-0.19819,-3.12785,0,0.2,0,0.25
1713946881.285942707,-0.965237,-0.249124,1.84639,-0.118377,-0.204184,-3.12789,0,0.2,0,0.25
1713946881.436223138,-0.965237,-0.249124,1.84639,-0.13822,-0.200391,-3.12896,0,0.2,0,0.25
1713946881.586511445,-0.965237,-0.249124,1.84639,-0.186624,-0.201077,-3.12901,0,0.2,0,0.25
1713946881.736802961,-0.965237,-0.249124,1.84639,-0.19976,-0.19854,-3.12979,0,0.2,0,0.25
1713946881.887103226,-0.965237,-0.249124,1.84639,-0.231529,-0.202456,-3.12989,0,0.2,0,0.25
1713946882.037378991,-0.965237,-0.249124,1.84639,-0.26312,-0.206469,-3.1312,0,0.2,0,0.25
1713946882.187682466,-0.965237,-0.249124,1.84639,-0.298385,-0.199542,-3.13029,0,0.177778,0,0.25
1713946882.337974565,-0.965237,-0.249124,1.84639,-0.321231,-0.202398,-3.13091,0,0.2,0,0.25
1713946882.488275998,-0.965237,-0.249124,1.84639,-0.354426,-0.198445,-3.13069,0,0.2,0,0.25
1713946882.638575973,-0.965237,-0.249124,1.84639,-0.386033,-0.202469,-3.13248,0,0.2,0,0.25
1713946882.788882365,-0.965237,-0.249124,1.84639,-0.406194,-0.198315,-3.13286,0,0.2,0,0.25
1713946882.939176214,-0.965237,-0.249124,1.84639,-0.428085,-0.204151,-3.1333,0,0.2,0,0.25
1713946883.089465980,-0.965237,-0.249124,1.84639,-0.46353,-0.197128,-3.13694,0,0.2,0.0189474,0.25
1713946883.239737079,-0.965237,-0.249124,1.84639,-0.489684,-0.202017,-3.13383,0,0.2,0,0.25
1713946883.390112599,-0.965237,-0.249124,1.84639,-0.50977,-0.198366,-3.1359,0,0.2,0,0.25
1713946883.540415783,-0.965237,-0.249124,1.84639,-0.551075,-0.200209,-3.13592,0,0.2,0,0.25
1713946883.690709049,-0.965237,-0.249124,1.84639,-0.5711,-0.19662,-3.13496,0,0.2,0,0.25
1713946883.840998233,-0.965237,-0.249124,1.84639,-0.59285,-0.202476,-3.13577,0,0.177778,0,0.25
1713946883.991355960,-0.965237,-0.249124,1.84639,-0.622601,-0.196569,-3.13571,0,0.155556,0.0568421,0.25
1713946884.141698229,-0.965237,-0.249124,1.84639,-0.654372,-0.200655,-3.13629,0,0.155556,0.132632,0.25
1713946884.292041957,-0.965237,-0.249124,1.84639,-0.674331,-0.196742,-3.1358,0,0.155556,0.132632,0.25
1713946884.442342516,-0.965237,-0.249124,1.84639,-0.696051,-0.202736,-3.13558,0,0.133333,0.132632,0.25
1713946884.592642200,-0.965237,-0.249124,1.84639,-0.725645,-0.196814,-3.12433,0,0.111111,0.132632,0.25
1713946885.438854335,-0.990545,-0.216034,1.74821,-0.821573,-0.207558,-3.04648,0,0.0888889,-0.0568421,0.9375
1713946886.252286230,-1.09912,-0.134762,0.275592,-0.874611,-0.207172,-3.11807,0,0.111111,-0.284211,0.0625001
1713946886.402568706,-1.09912,-0.134762,0.275592,-0.884988,-0.205642,3.11888,0,0.111111,-0.246316,0.0625001
1713946886.552725177,-1.09912,-0.134762,0.275592,-0.895168,-0.204192,3.0889,0,0.111111,-0.170526,0.0625001
1713946886.702883399,-1.09912,-0.134762,0.275592,-0.915493,-0.201128,3.04591,0,0.0888889,-0.208421,0.0625001
1713946886.853041912,-1.09912,-0.134762,0.275592,-0.925784,-0.199541,3.01603,0,0.0888889,-0.170526,0.0625001
1713946887.003198967,-1.09912,-0.134762,0.275592,-0.936242,-0.198043,2.98331,0,0.0888889,-0.170526,0.0625001
1713946887.153349022,-1.09912,-0.134762,0.275592,-0.946434,-0.196639,2.96175,0,0.0666667,-0.132632,0.0625001
1713946887.303506660,-1.09912,-0.134762,0.275592,-0.966691,-0.194203,2.91271,0,0,-0.5,0.0625001
1713946887.453662257,-1.09912,-0.134762,0.275592,-0.966989,-0.194275,2.88973,0,0,-0.5,0.0625001
1713946887.608756256,-1.09912,-0.134762,0.275592,-0.977516,-0.193004,2.85735,0,0,-0.5,0.0625001
1713946887.758954730,-1.09912,-0.134762,0.275592,-0.977844,-0.193227,2.81567,0,0,-0.5,0.0625001
1713946887.909076492,-1.09912,-0.134762,0.275592,-0.988469,-0.192443,2.7638,0,0,-0.5,0.0625001
1713946888.059234714,-1.09912,-0.134762,0.275592,-0.988729,-0.192549,2.71022,0,0,-0.5,0.0625001
1713946888.209396728,-1.09912,-0.134762,0.275592,-0.989435,-0.192341,2.64416,0,0,-0.5,0.0625001
1713946888.359542409,-1.09912,-0.134762,0.275592,-0.989728,-0.192306,2.58831,0,0,-0.5,0.0625001
1713946888.509697715,-1.09912,-0.134762,0.275592,-0.990357,-0.191929,2.50866,0,0,-0.5,0.0625001
1713946888.659858562,-1.09912,-0.134762,0.275592,-0.990659,-0.191829,2.42832,0,0,-0.5,0.0625001
1713946888.810018243,-1.09912,-0.134762,0.275592,-0.991447,-0.191548,2.34402,0,0,-0.5,0.0625001
1713946888.960174716,-1.09912,-0.134762,0.275592,-0.991891,-0.19169,2.28931,0,0,-0.5,0.0625001
1713946889.110329439,-1.09912,-0.134762,0.275592,-1.00255,-0.191049,2.24327,0,0,-0.5,0.0625001
1713946889.260486203,-1.09912,-0.134762,0.275592,-1.00294,-0.190719,2.17272,0,0,-0.5,0.0625001
1713946889.410645593,-1.09912,-0.134762,0.275592,-1.00293,-0.180491,2.12793,0,0,-0.5,0.0625001
1713946889.560804108,-1.09912,-0.134762,0.275592,-1.00331,-0.18049,2.0453,0,0,-0.5,0.0625001
1713946889.710962331,-1.09912,-0.134762,0.275592,-1.00347,-0.180609,1.98058,0,0,-0.5,0.0625001
1713946889.861117929,-1.09912,-0.134762,0.275592,-1.00392,-0.180379,1.88854,0,0,-0.5,0.0625001
1713946890.011274402,-1.09912,-0.134762,0.275592,-1.00399,-0.179955,1.81187,0,0,-0.5,0.0625001
1713946890.161444585,-1.09912,-0.134762,0.275592,-1.00421,-0.189814,1.7532,0,0,-0.5,0.0625001
1713946890.311758565,-1.09912,-0.134762,0.275592,-1.00327,-0.189886,1.69779,0,0,-0.5,0.0625001
1713946890.462072253,-1.09912,-0.134762,0.275592,-1.00296,-0.189937,1.60253,0,0,-0.5,0.0625001
1713946890.612380107,-1.09912,-0.134762,0.275592,-1.00242,-0.189687,1.51608,0,0,-0.5,0.0625001
1713946890.762686504,-1.09912,-0.134762,0.275592,-1.00206,-0.189782,1.45988,0,0,-0.5,0.0625001
1713946890.912998442,-1.09912,-0.134762,0.275592,-1.00284,-0.189267,1.37228,0,0,-0.5,0.0625001
1713946891.063362007,-1.09912,-0.134762,0.275592,-1.00337,-0.188863,1.30527,0,0,-0.5,0.0625001
1713946891.213669279,-1.09912,-0.134762,0.275592,-1.00393,-0.188397,1.24613,0,0,-0.5,0.0625001
1713946891.363993760,-1.09912,-0.134762,0.275592,-1.00432,-0.187949,1.18095,0,0,-0.5,0.0625001
1713946891.514352950,-1.09912,-0.134762,0.275592,-1.00485,-0.187247,1.09696,0,0,-0.5,0.0625001
1713946891.664631929,-1.09912,-0.134762,0.275592,-1.00486,-0.187169,1.02806,0,0,-0.5,0.0625001
1713946891.814946785,-1.09912,-0.134762,0.275592,-1.00455,-0.187118,0.961788,0,0,-0.5,0.0625001
1713946891.965246473,-1.09912,-0.134762,0.275592,-1.00444,-0.187006,0.892121,0,0,-0.5,0.0625001
1713946892.115559870,-1.09912,-0.134762,0.275592,-1.00457,-0.186747,0.79686,0,0,-0.5,0.0625001
1713946892.265855476,-1.09912,-0.134762,0.275592,-1.00456,-0.18684,0.733286,0,0,-0.5,0.0625001
1713946892.416211458,-1.09912,-0.134762,0.275592,-1.00452,-0.186986,0.677482,0,0,-0.5,0.0625001
1713946892.566509689,-1.09912,-0.134762,0.275592,-1.00416,-0.187636,0.586179,0,0,-0.5,0.0625001
1713946892.716796252,-1.09912,-0.134762,0.275592,-1.0039,-0.188055,0.536584,0,0,-0.5,0.0625001
1713946892.867104983,-1.09912,-0.134762,0.275592,-1.00369,-0.188319,0.467368,0,0,0,0.0625001
1713946893.705413835,-0.850866,-0.025363,-0.117107,-0.993307,-0.191196,0.357255,0,0.133333,0.322105,0.75
1713946894.467141435,-0.550866,-0.025363,-0.117107,-0.950021,-0.166627,0.497153,0,0.2,-0.208421,1
1713946895.282782236,-0.250866,-0.025363,-0.117107,-0.841497,-0.111357,0.446065,0,0.177778,-0.246316,1
1713946896.022020291,0.0491342,-0.025363,-0.117107,-0.715139,-0.0667444,0.307142,0,0.2,-0.170526,1
1713946896.631672762,0.349134,-0.025363,-0.117107,-0.602827,-0.0485697,0.202827,0,0.2,-0.132632,1
1713946897.293423029,0.649134,-0.025363,-0.117107,-0.480039,-0.033301,0.106276,0,0.2,-0.0947368,1
1713946897.443582423,0.649134,-0.025363,-0.117107,-0.469032,-0.0247624,0.0954063,0,0.2,-0.0568421,1
1713946897.593737442,0.649134,-0.025363,-0.117107,-0.420896,-0.0204067,0.0719004,0,0.2,-0.0568421,1
1713946897.743891878,0.649134,-0.025363,-0.117107,-0.398204,-0.0232312,0.0594915,0,0.2,-0.0568421,1
1713946897.894047772,0.649134,-0.025363,-0.117107,-0.378271,-0.0260976,0.0467988,0,0.2,-0.0568421,1
1713946898.044208625,0.649134,-0.025363,-0.117107,-0.347408,-0.0197366,0.0333368,0,0.2,-0.0189474,1
1713946898.898283863,0.799134,-0.025363,-0.117107,-0.188129,-0.0176348,0.00995764,0,0.2,-0.0189474,1
1713946899.633240677,1.14551,0.0431963,1.35551,-0.0599999,-0.0208215,0.0141846,0,0.2,-0.0189474,0.0625001
1713946899.783396573,1.14551,0.0431963,1.35551,-0.0200164,-0.0145885,0.0157257,0,0.2,0.0189474,0.0625001
1713946899.933548968,1.14551,0.0431963,1.35551,-0.000358744,-0.0166789,0.0173265,0,0.2,0.0189474,0.0625001
1713946900.083707489,1.14551,0.0431963,1.35551,0.0291455,-0.0194857,0.0190322,0,0.2,0,0.0625001
1713946900.233861051,1.14551,0.0431963,1.35551,0.069204,-0.0134817,0.0179111,0,0.2,0.0189474,0.0625001
1713946900.384012864,1.14551,0.0431963,1.35551,0.088896,-0.0155016,0.0181278,0,0.2,0.0189474,0.0625001
1713946900.534164677,1.14551,0.0431963,1.35551,0.123428,-0.0186687,0.021398,0,0.2,0.0189474,0.0625001
1713946900.684325531,1.14551,0.0431963,1.35551,0.14329,-0.0145946,0.0212623,0,0.2,0,0.0625001
1713946900.834484636,1.14551,0.0431963,1.35551,0.172969,-0.0131438,0.0221165,0,0.2,0,0.0625001
1713946900.984640532,1.14551,0.0431963,1.35551,0.202231,-0.0157021,0.0224389,0,0.2,0,0.0625001
1713946901.134803720,1.14551,0.0431963,1.35551,0.216062,-0.0167464,0.0237332,0,0.2,0,0.0625001
1713946901.284955241,1.14551,0.0431963,1.35551,0.252798,-0.0101486,0.0209694,0,0.2,0,0.0625001
1713946901.435107638,1.14551,0.0431963,1.35551,0.265594,-0.0114237,0.0203976,0,0.2,0,0.0625001
1713946901.585263243,1.14551,0.0431963,1.35551,0.295163,-0.0141006,0.0195961,0,0.2,0,0.0625001
1713946901.735403097,1.14551,0.0431963,1.35551,0.335691,-0.00776313,0.0185735,0,0.2,0.0189474,0.0625001
1713946901.885718833,1.14551,0.0431963,1.35551,0.355177,-0.00951595,0.0171559,0,0.2,0.0189474,0.0625001
1713946902.036012110,1.14551,0.0431963,1.35551,0.384792,-0.0123509,0.0170847,0,0.2,0.0568421,0.0625001
1713946902.186334264,1.14551,0.0431963,1.35551,0.415427,-0.00489865,0.0181434,0,0.2,0,0.0625001
1713946902.336650292,1.14551,0.0431963,1.35551,0.435213,-0.00675789,0.0183366,0,0.2,0.0189474,0.0625001
1713946902.486948237,1.14551,0.0431963,1.35551,0.470346,-0.0102003,0.0183468,0,0.2,0.0189474,0.0625001
1713946902.637237139,1.14551,0.0431963,1.35551,0.495207,-0.00263496,0.0197833,0,0.2,0,0.0625001
1713946902.787600419,1.14551,0.0431963,1.35551,0.532038,-0.00629397,0.021359,0,0.2,0,0.0625001
1713946902.938013868,1.14551,0.0431963,1.35551,0.544739,-0.00749075,0.0213246,0,0.2,0.0189474,0.0625001
1713946903.088312396,1.14551,0.0431963,1.35551,0.575504,-0.000476206,0.022621,0,0.2,0,0.0625001
1713946903.238654385,1.14551,0.0431963,1.35551,0.605088,-0.00330388,0.0237464,0,0.2,0,0.0625001
1713946903.388967789,1.14551,0.0431963,1.35551,0.642059,-0.00678479,0.0254646,0,0.2,0,0.0625001
1713946903.539274192,1.14551,0.0431963,1.35551,0.665822,0.00108086,0.0265678,0,0.2,-0.0189474,0.0625001
1713946903.689566304,1.14551,0.0431963,1.35551,0.685721,-0.000750857,0.0287596,0,0.2,0,0.0625001
1713946903.839872124,1.14551,0.0431963,1.35551,0.715992,-0.00351981,0.0287226,0,0.2,0,0.0625001
1713946903.990162193,1.14551,0.0431963,1.35551,0.747346,0.00349117,0.0272274,0,0.2,-0.0189474,0.0625001
1713946904.140458097,1.14551,0.0431963,1.35551,0.767315,0.00158099,0.02713,0,0.177778,-0.0189474,0.0625001
1713946904.290753709,1.14551,0.0431963,1.35551,0.798263,-0.00121905,0.0262398,0,0.155556,0.0568421,0.0625001
1713946904.441117282,1.14551,0.0431963,1.35551,0.825767,-0.00388443,0.0263289,0,0.155556,0.0568421,0.0625001
1713946904.591468313,1.14551,0.0431963,1.35551,0.851089,0.0037039,0.0302716,0,0.133333,0.0568421,0.0625001
1713946904.741750800,1.14551,0.0431963,1.35551,0.881542,0.000909685,0.0326132,0,0.133333,0.0568421,0.0625001
1713946904.892116998,1.14551,0.0431963,1.35551,0.902586,-0.00103378,0.0349044,0,0.111111,0.0568421,0.0625001
1713946905.042429236,1.14551,0.0431963,1.35551,0.923732,0.00689916,0.0350084,0,0.111111,0.0568421,0.0625001
1713946905.192731849,1.14551,0.0431963,1.35551,0.944645,0.00488129,0.0404048,0,0.0888889,0.132632,0.0625001
1713946905.343024253,1.14551,0.0431963,1.35551,0.96495,0.00253104,0.0447026,0,0.0888889,0.132632,0.0625001
1713946905.493332116,1.14551,0.0431963,1.35551,0.975641,0.0011582,0.0567459,0,0.0888889,0.0947368,0.0625001
1713946905.643633271,1.14551,0.0431963,1.35551,0.986806,0.00985266,0.0646007,0,0.0666667,0.132632,0.0625001
1713946905.793942884,1.14551,0.0431963,1.35551,1.00741,0.00727577,0.0760335,0,0,0.5,0.0625001
1713946905.944347292,1.14551,0.0431963,1.35551,1.01768,0.00606062,0.0877226,0,0,0.5,0.0625001
1713946906.094651656,1.14551,0.0431963,1.35551,1.02784,0.00474403,0.123145,0,0,0.5,0.0625001
1713946906.244944352,1.14551,0.0431963,1.35551,1.02776,0.00482116,0.141328,0,0,0.5,0.0625001
1713946906.395111335,1.14551,0.0431963,1.35551,1.03953,0.0135647,0.17822,0,0,0.5,0.0625001
1713946906.545266651,1.14551,0.0431963,1.35551,1.04945,0.0120587,0.218439,0,0,0.5,0.0625001
1713946906.695421384,1.14551,0.0431963,1.35551,1.0499,0.0121754,0.249594,0,0,0.5,0.0625001
1713946906.845576700,1.14551,0.0431963,1.35551,1.05015,0.0123301,0.273926,0,0,0.5,0.0625001
1713946906.995734058,1.14551,0.0431963,1.35551,1.05077,0.012516,0.343788,0,0,0.5,0.0625001
1713946907.145888208,1.14551,0.0431963,1.35551,1.05124,0.0125674,0.380137,0,0,0.5,0.0625001
1713946907.296046733,1.14551,0.0431963,1.35551,1.06192,0.0099909,0.429703,0,0,0.5,0.0625001
1713946907.446200299,1.14551,0.0431963,1.35551,1.06246,0.00994828,0.484738,0,0,0.5,0.0625001
1713946907.596353282,1.14551,0.0431963,1.35551,1.06356,0.00965655,0.5404,0,0,0.5,0.0625001
1713946907.746506849,1.14551,0.0431963,1.35551,1.06429,0.00945645,0.607589,0,0,0.5,0.0625001
1713946907.896666249,1.14551,0.0431963,1.35551,1.06569,0.00909096,0.71328,0,0,0.5,0.0625001
1713946908.046827399,1.14551,0.0431963,1.35551,1.06644,0.00873953,0.763581,0,0,0.5,0.0625001
1713946908.197005759,1.14551,0.0431963,1.35551,1.06988,0.0178657,0.815817,0,0,0.5,0.0625001
1713946908.347239829,1.14551,0.0431963,1.35551,1.07118,0.0171036,0.896905,0,0,0.5,0.0625001
1713946908.497539235,1.14551,0.0431963,1.35551,1.07219,0.0168956,0.992374,0,0,0.5,0.0625001
1713946908.647839516,1.14551,0.0431963,1.35551,1.07262,0.0168533,1.05447,0,0,0.5,0.0625001
1713946908.798144756,1.14551,0.0431963,1.35551,1.07326,0.0170498,1.11568,0,0,0,0.0625001
1713946909.561233661,1.17536,0.0991342,1.45369,1.07648,0.0167738,1.25699,0,0,0,0.9375
1713946910.406010820,1.1068,0.44551,2.92631,1.08326,0.0257016,1.28003,0,0.177778,0.170526,0.0624997
1713946910.556170222,1.1068,0.44551,2.92631,1.08648,0.0352825,1.30038,0,0.2,0.132632,0.0624997
1713946910.706326999,1.1068,0.44551,2.92631,1.09447,0.0599387,1.33548,0,0.2,0.132632,0.0624997
1713946910.856485525,1.1068,0.44551,2.92631,1.09885,0.0737912,1.35482,0,0.177778,0.0947368,0.0624997
1713946911.006639677,1.1068,0.44551,2.92631,1.10517,0.0932615,1.37622,0,0.155556,0.0947368,0.0624997
1713946911.156793537,1.1068,0.44551,2.92631,1.10153,0.115249,1.39457,0,0.155556,0.0947368,0.0624997
1713946911.306938064,1.1068,0.44551,2.92631,1.11075,0.144204,1.41291,0,0.155556,0.132632,0.0624997
1713946911.457093966,1.1068,0.44551,2.92631,1.11685,0.163444,1.42491,0,0.133333,0.132632,0.0624997
1713946911.607272911,1.1068,0.44551,2.92631,1.12357,0.182727,1.43836,0,0.133333,0.132632,0.0624997
1713946911.757430855,1.1068,0.44551,2.92631,1.12027,0.204708,1.45447,0,0.111111,0.132632,0.0624997
1713946911.907589674,1.1068,0.44551,2.92631,1.12421,0.214313,1.46643,0,0.111111,0.132632,0.0624997
1713946912.057747618,1.1068,0.44551,2.92631,1.13057,0.23346,1.48176,0,0.0888889,0.132632,0.0624997
1713946912.207908771,1.1068,0.44551,2.92631,1.12762,0.255462,1.4916,0,0.0888889,0.0947368,0.0624997
1713946912.358062340,1.1068,0.44551,2.92631,1.13295,0.270644,1.50887,0,0.0888889,0.170526,0.0624997
1713946912.508219701,1.1068,0.44551,2.92631,1.13805,0.28395,1.51946,0,0.0888889,0.170526,0.0624997
1713946912.658379396,1.1068,0.44551,2.92631,1.13183,0.296302,1.53585,0,0,0.5,0.0624997
1713946912.808545507,1.1068,0.44551,2.92631,1.1352,0.305758,1.55597,0,0,0.5,0.0624997
1713946912.958714535,1.1068,0.44551,2.92631,1.13836,0.315159,1.57324,0,0,0.5,0.0624997
1713946913.108858480,1.1068,0.44551,2.92631,1.13656,0.326234,1.60797,0,0,0.5,0.0624997
1713946913.259016133,1.1068,0.44551,2.92631,1.13591,0.336896,1.64272,0,0,0.5,0.0624997
1713946913.409154244,1.1068,0.44551,2.92631,1.13659,0.336694,1.67846,0,0,0.5,0.0624997
1713946913.559308980,1.1068,0.44551,2.92631,1.137,0.336532,1.72937,0,0,0.5,0.0624997
1713946913.709464300,1.1068,0.44551,2.92631,1.14109,0.345978,1.79213,0,0,0.5,0.0624997
1713946913.859619329,1.1068,0.44551,2.92631,1.14146,0.346027,1.84563,0,0,0.5,0.0624997
1713946914.009772315,1.1068,0.44551,2.92631,1.13292,0.349512,1.89171,0,0,0.5,0.0624997
1713946914.162064469,1.1068,0.44551,2.92631,1.13334,0.349529,1.95085,0,0,0.5,0.0624997
1713946914.312255375,1.1068,0.44551,2.92631,1.13428,0.350084,2.01,0,0,0.5,0.0624997
1713946914.462426737,1.1068,0.44551,2.92631,1.13443,0.350313,2.07189,0,0,0.5,0.0624997
1713946914.612724980,1.1068,0.44551,2.92631,1.136,0.350771,2.15257,0,0,0.5,0.0624997
1713946914.763025848,1.1068,0.44551,2.92631,1.13671,0.351111,2.21738,0,0,0.5,0.0624997
1713946914.913312132,1.1068,0.44551,2.92631,1.13812,0.351795,2.30898,0,0,0.5,0.0624997
1713946915.063608041,1.1068,0.44551,2.92631,1.13881,0.352139,2.36255,0,0,0.5,0.0624997
1713946915.213897243,1.1068,0.44551,2.92631,1.14021,0.352813,2.4382,0,0,0.5,0.0624997
1713946915.364208320,1.1068,0.44551,2.92631,1.1409,0.35315,2.51054,0,0,0.5,0.0624997
1713946915.514560815,1.1068,0.44551,2.92631,1.14169,0.353441,2.59126,0,0,0.5,0.0624997
1713946915.664880351,1.1068,0.44551,2.92631,1.14152,0.353615,2.65261,0,0,0.5,0.0624997
1713946915.815183261,1.1068,0.44551,2.92631,1.14097,0.354048,2.719,0,0,0,0.0624997
1713946916.581008127,0.800866,0.475363,3.02449,1.13714,0.355925,2.86069,0,0.155556,-0.0568421,0.9375
1713946917.346022421,0.500866,0.475363,3.02449,1.0497,0.388723,2.87741,0,0.2,0.0947368,1
1713946918.043964745,0.200866,0.475363,3.02449,0.939429,0.417433,2.9123,0,0.2,0.0947368,1
1713946918.862252305,-0.0991339,0.475363,3.02449,0.785505,0.443589,2.96879,0,0.2,0.0947368,1
1713946919.696808508,-0.399134,0.475363,3.02449,0.633951,0.467424,3.02561,0,0.2,0.0568421,1
1713946919.847120171,-0.399134,0.475363,3.02449,0.610793,0.47269,3.03314,0,0.2,0.0568421,1
1713946919.997430958,-0.399134,0.475363,3.02449,0.578464,0.474112,3.04592,0,0.2,0.0568421,1
1713946920.856041278,-0.699134,0.475363,3.02449,0.415975,0.491014,3.10018,0,0.2,0.0189474,1
1713946921.006199518,-0.699134,0.475363,3.02449,0.379694,0.493262,3.107,0,0.2,0.0189474,1
1713946921.156356593,-0.699134,0.475363,3.02449,0.357219,0.490723,3.11366,0,0.2,0.0189474,1
1713946921.306503750,-0.699134,0.475363,3.02449,0.334326,0.488487,3.11815,0,0.2,0.0189474,1
1713946921.456658199,-0.699134,0.475363,3.02449,0.302441,0.489507,3.12214,0,0.2,0.0189474,1
1713946921.606827232,-0.699134,0.475363,3.02449,0.282914,0.496839,3.12566,0,0.2,0.0189474,1
1713946922.366024895,-0.849134,0.475363,3.02449,0.141611,0.495499,3.1323,0,0.2,0.0189474,1
1713946923.163741283,-0.965237,0.450876,1.84639,-0.0190712,0.501016,3.13785,0,0.2,0.0189474,0.25
1713946923.313893691,-0.965237,0.450876,1.84639,-0.0474217,0.500697,3.13717,0,0.2,0.0568421,0.25
1713946923.464052809,-0.965237,0.450876,1.84639,-0.0738673,0.499557,3.13843,0,0.2,0.0189474,0.25
1713946923.614211926,-0.965237,0.450876,1.84639,-0.102045,0.499223,3.13989,0,0.2,0.0189474,0.25
1713946923.764376877,-0.965237,0.450876,1.84639,-0.133691,0.500257,-3.14154,0,0.2,0,0.25
1713946923.914694958,-0.965237,0.450876,1.84639,-0.160471,0.49945,3.14156,0,0.2,0.0189474,0.25
1713946924.065124753,-0.965237,0.450876,1.84639,-0.192385,0.500563,-3.14084,0,0.2,0.0189474,0.25
1713946924.215450419,-0.965237,0.450876,1.84639,-0.211696,0.507896,-3.13992,0,0.2,0.0189474,0.25
1713946924.365760043,-0.965237,0.450876,1.84639,-0.243583,0.508796,-3.13883,0,0.2,0.0189474,0.25
1713946924.516056249,-0.965237,0.450876,1.84639,-0.266384,0.506409,-3.13795,0,0.2,0,0.25
1713946924.666362664,-0.965237,0.450876,1.84639,-0.298318,0.507839,-3.13353,0,0.177778,0.0189474,0.25
1713946924.816652162,-0.965237,0.450876,1.84639,-0.321189,0.505625,-3.13246,0,0.2,0,0.25
1713946924.966953035,-0.965237,0.450876,1.84639,-0.353021,0.506499,-3.13043,0,0.2,0,0.25
1713946925.117245742,-0.965237,0.450876,1.84639,-0.375869,0.504118,-3.12777,0,0.2,0,0.25
1713946925.267547491,-0.965237,0.450876,1.84639,-0.407696,0.504881,-3.12729,0,0.2,0,0.25
1713946925.417844281,-0.965237,0.450876,1.84639,-0.439722,0.505718,-3.12518,0,0.2,0,0.25
1713946925.568167031,-0.965237,0.450876,1.84639,-0.467699,0.505111,-3.12432,0,0.2,0,0.25
1713946925.718463238,-0.965237,0.450876,1.84639,-0.494163,0.503844,-3.12242,0,0.2,0,0.25
1713946925.868748361,-0.965237,0.450876,1.84639,-0.51666,0.501404,-3.12046,0,0.2,0,0.25
1713946926.019064986,-0.965237,0.450876,1.84639,-0.548899,0.502465,-3.1199,0,0.2,0,0.25
1713946926.169345734,-0.965237,0.450876,1.84639,-0.58081,0.503542,-3.11886,0,0.2,0.0189474,0.25
1713946926.319657109,-0.965237,0.450876,1.84639,-0.603464,0.501219,-3.11782,0,0.177778,-0.0189474,0.25
1713946926.469939900,-0.965237,0.450876,1.84639,-0.635375,0.501918,-3.11625,0,0.155556,0.0568421,0.25
1713946926.620236982,-0.965237,0.450876,1.84639,-0.667159,0.502546,-3.11416,0,0.155556,0.132632,0.25
1713946926.770546315,-0.965237,0.450876,1.84639,-0.68019,0.496574,-3.11399,0,0.133333,0.0568421,0.25
1713946926.920857398,-0.965237,0.450876,1.84639,-0.708462,0.498963,-3.1109,0,0.133333,0.132632,0.25
1713946927.071139897,-0.965237,0.450876,1.84639,-0.731196,0.504045,-3.10519,0,0.133333,0.132632,0.25
1713946927.886960470,-0.990545,0.483966,1.74821,-0.821133,0.493667,-3.04377,0,0.0888889,-0.0568421,0.9375
1713946928.686778707,-1.09912,0.565238,0.275592,-0.872732,0.489404,-3.13002,0,0.111111,-0.284211,0.0625001
1713946928.836936369,-1.09912,0.565238,0.275592,-0.876785,0.490737,3.12763,0,0.111111,-0.284211,0.0625001
1713946928.987093155,-1.09912,0.565238,0.275592,-0.889585,0.484447,3.09585,0,0.111111,-0.208421,0.0625001
1713946929.137244109,-1.09912,0.565238,0.275592,-0.89956,0.487426,3.05946,0,0.0888889,-0.208421,0.0625001
1713946929.287410813,-1.09912,0.565238,0.275592,-0.919132,0.493248,3.01101,0,0.0888889,-0.170526,0.0625001
1713946929.437564100,-1.09912,0.565238,0.275592,-0.928924,0.496294,2.97044,0,0.0888889,-0.246316,0.0625001
1713946929.587717095,-1.09912,0.565238,0.275592,-0.94162,0.489812,2.9419,0,0.0888889,-0.246316,0.0625001
1713946929.737871548,-1.09912,0.565238,0.275592,-0.961275,0.495988,2.90008,0,0,-0.5,0.0625001
1713946929.888017835,-1.09912,0.565238,0.275592,-0.971071,0.498942,2.87686,0,0,-0.5,0.0625001
1713946930.038173455,-1.09912,0.565238,0.275592,-0.981021,0.50207,2.84055,0,0,-0.5,0.0625001
1713946930.188476957,-1.09912,0.565238,0.275592,-0.981201,0.502159,2.79565,0,0,-0.5,0.0625001
1713946930.338766458,-1.09912,0.565238,0.275592,-0.981503,0.502147,2.764,0,0,-0.5,0.0625001
1713946930.489009582,-1.09912,0.565238,0.275592,-0.991404,0.504568,2.71789,0,0,-0.5,0.0625001
1713946930.639318334,-1.09912,0.565238,0.275592,-0.991467,0.504275,2.68174,0,0,-0.5,0.0625001
1713946930.789634670,-1.09912,0.565238,0.275592,-0.991674,0.503954,2.6038,0,0,-0.5,0.0625001
1713946930.939932338,-1.09912,0.565238,0.275592,-0.989581,0.513799,2.54721,0,0,-0.5,0.0625001
1713946931.090210755,-1.09912,0.565238,0.275592,-0.989732,0.514116,2.48527,0,0,-0.5,0.0625001
1713946931.240509591,-1.09912,0.565238,0.275592,-0.989944,0.514242,2.41321,0,0,-0.5,0.0625001
1713946931.390806967,-1.09912,0.565238,0.275592,-1.00011,0.516696,2.32493,0,0,-0.5,0.0625001
1713946931.541103761,-1.09912,0.565238,0.275592,-1.00025,0.516667,2.24189,0,0,-0.5,0.0625001
1713946931.691383346,-1.09912,0.565238,0.275592,-1.00061,0.516302,2.20093,0,0,-0.5,0.0625001
1713946931.841693556,-1.09912,0.565238,0.275592,-1.00069,0.516121,2.16043,0,0,-0.5,0.0625001
1713946931.992077270,-1.09912,0.565238,0.275592,-1.00085,0.515723,2.11062,0,0,-0.5,0.0625001
1713946932.142367647,-1.09912,0.565238,0.275592,-1.00101,0.51562,2.05321,0,0,-0.5,0.0625001
1713946932.292644024,-1.09912,0.565238,0.275592,-1.00089,0.515594,1.98159,0,0,-0.5,0.0625001
1713946932.442945193,-1.09912,0.565238,0.275592,-1.00077,0.515303,1.87981,0,0,-0.5,0.0625001
1713946932.593232070,-1.09912,0.565238,0.275592,-1.0007,0.51491,1.8012,0,0,-0.5,0.0625001
1713946932.743525947,-1.09912,0.565238,0.275592,-1.00064,0.51492,1.70507,0,0,-0.5,0.0625001
1713946932.893810199,-1.09912,0.565238,0.275592,-1.00057,0.514891,1.64209,0,0,-0.5,0.0625001
1713946933.044111660,-1.09912,0.565238,0.275592,-1.00049,0.514675,1.56597,0,0,-0.5,0.0625001
1713946933.194396788,-1.09912,0.565238,0.275592,-1.00051,0.513952,1.50299,0,0,-0.5,0.0625001
1713946933.344702916,-1.09912,0.565238,0.275592,-1.00048,0.513671,1.41591,0,0,-0.5,0.0625001
1713946933.494987169,-1.09912,0.565238,0.275592,-1.00039,0.513171,1.36874,0,0,-0.5,0.0625001
1713946933.645339382,-1.09912,0.565238,0.275592,-1.00037,0.512925,1.28497,0,0,-0.5,0.0625001
1713946933.795644927,-1.09912,0.565238,0.275592,-1.00026,0.512767,1.22593,0,0,-0.5,0.0625001
1713946933.945950180,-1.09912,0.565238,0.275592,-1.00028,0.512707,1.13117,0,0,-0.5,0.0625001
1713946934.096251059,-1.09912,0.565238,0.275592,-1.00025,0.512554,1.05576,0,0,-0.5,0.0625001
1713946934.246553396,-1.09912,0.565238,0.275592,-1.00036,0.512831,0.987385,0,0,-0.5,0.0625001
1713946934.396825690,-1.09912,0.565238,0.275592,-1.00038,0.512756,0.918944,0,0,-0.5,0.0625001
1713946934.547125694,-1.09912,0.565238,0.275592,-1.0003,0.512694,0.85265,0,0,-0.5,0.0625001
1713946934.697427739,-1.09912,0.565238,0.275592,-0.999813,0.512275,0.772427,0,0,-0.5,0.0625001
1713946934.847740577,-1.09912,0.565238,0.275592,-0.999612,0.512173,0.704806,0,0,-0.5,0.0625001
1713946934.998068581,-1.09912,0.565238,0.275592,-0.999189,0.511991,0.640699,0,0,-0.5,0.0625001
1713946935.148414962,-1.09912,0.565238,0.275592,-0.999056,0.511738,0.571131,0,0,-0.5,0.0625001
1713946935.298693090,-1.09912,0.565238,0.275592,-1.0005,0.500985,0.501974,0,0,0,0.0625001
1713946935.994600421,-0.850866,0.674637,-0.117107,-0.987341,0.506216,0.35576,0,0.133333,0.36,0.75
1713946936.894784261,-0.550866,0.674637,-0.117107,-0.931197,0.532053,0.560686,0,0.2,-0.246316,1
1713946937.699037490,-0.250866,0.674637,-0.117107,-0.822509,0.587998,0.472268,0,0.2,-0.246316,1
1713946938.497345153,0.0491342,0.674637,-0.117107,-0.687923,0.639045,0.302802,0,0.2,-0.208421,1
1713946939.246675681,0.349134,0.674637,-0.117107,-0.557062,0.669757,0.172625,0,0.2,-0.132632,1
1713946940.056136829,0.649134,0.674637,-0.117107,-0.399814,0.684255,0.0691328,0,0.2,-0.0568421,1
1713946940.206500422,0.649134,0.674637,-0.117107,-0.373392,0.677692,0.0567072,0,0.2,-0.0568421,1
1713946940.356794304,0.649134,0.674637,-0.117107,-0.358559,0.683928,0.0491061,0,0.2,-0.0568421,1
1713946940.507094894,0.649134,0.674637,-0.117107,-0.317378,0.684417,0.0340894,0,0.2,-0.0189474,1
1713946941.259763683,0.799134,0.674637,-0.117107,-0.178436,0.680821,-0.000647702,0,0.2,-0.0189474,1
1713946942.112059526,1.14551,0.693196,1.35551,-0.0319054,0.676341,0.00348542,0,0.2,-0.0189474,0.0625001
1713946942.262217778,1.14551,0.693196,1.35551,0.00464587,0.6788,0.0023448,0,0.2,-0.0189474,0.0625001
1713946942.412412490,1.14551,0.693196,1.35551,0.0354751,0.671686,0.00124581,0,0.2,-0.0189474,0.0625001
1713946942.562758000,1.14551,0.693196,1.35551,0.059815,0.676327,0.000103309,0,0.2,-0.0189474,0.0625001
1713946942.713059758,1.14551,0.693196,1.35551,0.0889125,0.669381,-0.00207803,0,0.2,-0.0189474,0.0625001
1713946942.863442602,1.14551,0.693196,1.35551,0.120296,0.672766,-0.00243071,0,0.2,0,0.0625001
1713946943.013728318,1.14551,0.693196,1.35551,0.149329,0.666161,-0.00508745,0,0.2,-0.0189474,0.0625001
1713946943.164028326,1.14551,0.693196,1.35551,0.170624,0.671666,-0.00849777,0,0.2,0,0.0625001
1713946943.314333585,1.14551,0.693196,1.35551,0.201022,0.671797,-0.00970091,0,0.2,0,0.0625001
1713946943.464635635,1.14551,0.693196,1.35551,0.231014,0.668111,-0.0144511,0,0.2,0,0.0625001
1713946943.614914059,1.14551,0.693196,1.35551,0.262257,0.670822,-0.017316,0,0.2,0,0.0625001
1713946943.765217567,1.14551,0.693196,1.35551,0.281598,0.666433,-0.0166799,0,0.2,0,0.0625001
1713946943.915523701,1.14551,0.693196,1.35551,0.312741,0.669208,-0.0165049,0,0.2,0,0.0625001
1713946944.065826043,1.14551,0.693196,1.35551,0.332259,0.664747,-0.0174156,0,0.2,0,0.0625001
1713946944.216101551,1.14551,0.693196,1.35551,0.353639,0.669929,-0.0172376,0,0.2,0,0.0625001
1713946944.366401268,1.14551,0.693196,1.35551,0.392695,0.661286,-0.0152378,0,0.2,0,0.0625001
1713946944.516678234,1.14551,0.693196,1.35551,0.41408,0.666435,-0.0148736,0,0.2,0,0.0625001
1713946944.666968618,1.14551,0.693196,1.35551,0.44335,0.659963,-0.0164191,0,0.2,0,0.0625001
1713946944.817123079,1.14551,0.693196,1.35551,0.474471,0.662731,-0.0177595,0,0.2,0.0189474,0.0625001
1713946944.967278707,1.14551,0.693196,1.35551,0.503656,0.656247,-0.0166557,0,0.2,0,0.0625001
1713946945.117434628,1.14551,0.693196,1.35551,0.534734,0.659384,-0.0151204,0,0.2,0.0189474,0.0625001
1713946945.267597257,1.14551,0.693196,1.35551,0.554121,0.655193,-0.0143976,0,0.2,0.0189474,0.0625001
1713946945.417750552,1.14551,0.693196,1.35551,0.584881,0.658748,-0.0140696,0,0.2,0.0189474,0.0625001
1713946945.567907056,1.14551,0.693196,1.35551,0.614129,0.652326,-0.0133301,0,0.2,0.0189474,0.0625001
1713946945.718069101,1.14551,0.693196,1.35551,0.640847,0.65686,-0.0113313,0,0.2,0.0189474,0.0625001
1713946945.868231438,1.14551,0.693196,1.35551,0.664486,0.652091,-0.0114087,0,0.2,0.0189474,0.0625001
1713946946.018386484,1.14551,0.693196,1.35551,0.695305,0.6561,-0.0102626,0,0.2,0.0189474,0.0625001
1713946946.168544738,1.14551,0.693196,1.35551,0.721088,0.656684,-0.00887312,0,0.2,0,0.0625001
1713946946.318698326,1.14551,0.693196,1.35551,0.754936,0.654393,-0.00705901,0,0.2,0.0189474,0.0625001
1713946946.468871747,1.14551,0.693196,1.35551,0.781472,0.659262,-0.00664362,0,0.177778,0,0.0625001
1713946946.619019209,1.14551,0.693196,1.35551,0.80471,0.654745,-0.0058493,0,0.155556,0,0.0625001
1713946946.769395056,1.14551,0.693196,1.35551,0.835718,0.658786,-0.00308363,0,0.155556,0.0568421,0.0625001
1713946946.919559727,1.14551,0.693196,1.35551,0.854274,0.655358,-0.00287552,0,0.155556,0.0947368,0.0625001
1713946947.069712439,1.14551,0.693196,1.35551,0.875452,0.661414,-0.00132265,0,0.133333,0.0568421,0.0625001
1713946947.219878861,1.14551,0.693196,1.35551,0.9012,0.656334,0.00128118,0,0.133333,0.0568421,0.0625001
1713946947.370030116,1.14551,0.693196,1.35551,0.913401,0.653969,0.0101133,0,0.111111,0.0568421,0.0625001
1713946947.520182537,1.14551,0.693196,1.35551,0.933994,0.660458,0.0161082,0,0.111111,0.0568421,0.0625001
1713946947.670328541,1.14551,0.693196,1.35551,0.953245,0.65654,0.0206278,0,0.0888889,0.0568421,0.0625001
1713946947.820478046,1.14551,0.693196,1.35551,0.964274,0.664793,0.0248114,0,0.0888889,0.0568421,0.0625001
1713946947.970643301,1.14551,0.693196,1.35551,0.983434,0.660935,0.0322217,0,0.0888889,0.132632,0.0625001
1713946948.120786681,1.14551,0.693196,1.35551,0.99243,0.659421,0.0397822,0,0,0.5,0.0625001
1713946948.270935602,1.14551,0.693196,1.35551,1.00181,0.657502,0.048694,0,0,0.5,0.0625001
1713946948.421081607,1.14551,0.693196,1.35551,1.01082,0.655841,0.0767064,0,0,0.5,0.0625001
1713946948.571232279,1.14551,0.693196,1.35551,1.02019,0.653881,0.114725,0,0,0.5,0.0625001
1713946948.721382076,1.14551,0.693196,1.35551,1.02931,0.652449,0.142937,0,0,0.5,0.0625001
1713946948.871535372,1.14551,0.693196,1.35551,1.0313,0.662511,0.195163,0,0,0.5,0.0625001
1713946949.021692169,1.14551,0.693196,1.35551,1.04025,0.660894,0.226008,0,0,0.5,0.0625001
1713946949.171841967,1.14551,0.693196,1.35551,1.03995,0.661512,0.255065,0,0,0.5,0.0625001
1713946949.321996139,1.14551,0.693196,1.35551,1.03934,0.662743,0.321572,0,0,0.5,0.0625001
1713946949.472154978,1.14551,0.693196,1.35551,1.03921,0.663356,0.359337,0,0,0.5,0.0625001
1713946949.622305942,1.14551,0.693196,1.35551,1.03868,0.664396,0.436383,0,0,0.5,0.0625001
1713946949.772453114,1.14551,0.693196,1.35551,1.04537,0.662685,0.524762,0,0,0.5,0.0625001
1713946949.922618954,1.14551,0.693196,1.35551,1.04775,0.662115,0.577701,0,0,0.5,0.0625001
1713946950.072768459,1.14551,0.693196,1.35551,1.04636,0.663189,0.649185,0,0,0.5,0.0625001
1713946950.222924966,1.14551,0.693196,1.35551,1.04567,0.663723,0.713169,0,0,0.5,0.0625001
1713946950.373082347,1.14551,0.693196,1.35551,1.048,0.673882,0.786856,0,0,0.5,0.0625001
1713946950.523238270,1.14551,0.693196,1.35551,1.04772,0.674996,0.837024,0,0,0.5,0.0625001
1713946950.673384567,1.14551,0.693196,1.35551,1.04844,0.675676,0.937157,0,0,0.5,0.0625001
1713946950.823538740,1.14551,0.693196,1.35551,1.04878,0.676017,1.00805,0,0,0.5,0.0625001
1713946950.973687955,1.14551,0.693196,1.35551,1.04838,0.676473,1.0645,0,0,0.5,0.0625001
1713946951.123847670,1.14551,0.693196,1.35551,1.0492,0.677865,1.14292,0,0,0,0.0625001
1713946951.875903087,1.10545,1.04615,2.60456,1.05142,0.68168,1.29248,0,0.177778,0.132632,0.204832
1713946952.026229934,1.10545,1.04615,2.60456,1.05512,0.692294,1.3027,0,0.177778,0.0947368,0.204832
1713946952.176522364,1.10545,1.04615,2.60456,1.06212,0.711835,1.31919,0,0.155556,0.0947368,0.204832
1713946952.326824419,1.10545,1.04615,2.60456,1.05914,0.734233,1.34504,0,0.155556,0,0.204832
1713946952.477140182,1.10545,1.04615,2.60456,1.0626,0.743901,1.35965,0,0.155556,0.0568421,0.204832
1713946952.627496197,1.10545,1.04615,2.60456,1.0695,0.76345,1.37729,0,0.133333,0.0568421,0.204832
1713946952.777785127,1.10545,1.04615,2.60456,1.07826,0.789408,1.39059,0,0.133333,0.0568421,0.204832
1713946952.928082514,1.10545,1.04615,2.60456,1.08267,0.801854,1.39818,0,0.111111,0.0568421,0.204832
1713946953.078418112,1.10545,1.04615,2.60456,1.08912,0.820936,1.40787,0,0.111111,0.0568421,0.204832
1713946953.228723084,1.10545,1.04615,2.60456,1.08647,0.842799,1.4165,0,0.111111,0.0568421,0.204832
1713946953.991671812,0.806804,1.14551,2.92631,1.09943,0.912324,1.45208,0,0.0666667,0.322105,0.795167
1713946954.902240909,0.500866,1.17536,3.02449,1.10435,0.962082,1.66768,0,0.0888889,0.36,0.9375
1713946955.702853752,0.200866,1.17536,3.02449,1.08323,1.02486,1.93547,0,0.0888889,0.36,1
1713946956.513295278,-0.0991339,1.17536,3.02449,1.05611,1.08796,2.19558,0,0.0888889,0.36,1
1713946956.663587126,-0.0991339,1.17536,3.02449,1.04617,1.09177,2.23519,0,0.0666667,0.36,1
1713946956.813884515,-0.0991339,1.17536,3.02449,1.03917,1.10509,2.2734,0,0.0666667,0.36,1
1713946956.964208156,-0.0991339,1.17536,3.02449,1.02918,1.10875,2.33585,0,0.155556,0.36,1
1713946957.114483087,-0.0991339,1.17536,3.02449,1.02201,1.12216,2.38611,0,0.155556,0.36,1
1713946957.264792145,-0.0991339,1.17536,3.02449,1.0121,1.12594,2.42374,0,0.155556,0.36,1
1713946957.415081660,-0.0991339,1.17536,3.02449,1.00505,1.13925,2.46745,0,0.177778,0.36,1
1713946957.565494263,-0.0991339,1.17536,3.02449,0.979423,1.15907,2.54114,0,0.177778,0.36,1
1713946957.715767445,-0.0991339,1.17536,3.02449,0.968874,1.1629,2.57756,0,0.177778,0.36,1
1713946957.866067752,-0.0991339,1.17536,3.02449,0.936792,1.1848,2.6466,0,0.2,0.36,1
1713946958.016355809,-0.0991339,1.17536,3.02449,0.923657,1.18957,2.68058,0,0.2,0.322105,1
1713946958.166649699,-0.0991339,1.17536,3.02449,0.899253,1.19821,2.73401,0,0.2,0.284211,1
1713946959.029290542,-0.399134,1.17536,3.02449,0.748356,1.24087,2.97654,0,0.2,0.170526,1
1713946959.179574808,-0.399134,1.17536,3.02449,0.717846,1.25162,3.01063,0,0.2,0.132632,1
1713946959.329867824,-0.399134,1.17536,3.02449,0.704386,1.24587,3.02822,0,0.2,0.132632,1
1713946959.480159673,-0.399134,1.17536,3.02449,0.675827,1.25586,3.056,0,0.2,0.0947368,1
1713946959.630439272,-0.399134,1.17536,3.02449,0.633927,1.25993,3.08826,0,0.2,0.0947368,1
1713946959.780781874,-0.399134,1.17536,3.02449,0.605825,1.25932,3.10726,0,0.2,0.0568421,1
1713946959.931124767,-0.399134,1.17536,3.02449,0.58288,1.26021,3.1223,0,0.2,0.0568421,1
1713946960.685274457,-0.699134,1.17536,3.02449,0.44932,1.26096,-3.11131,0,0.2,-0.0568421,1
1713946960.835587891,-0.699134,1.17536,3.02449,0.41724,1.26137,-3.11029,0,0.2,-0.0568421,1
1713946960.985886741,-0.699134,1.17536,3.02449,0.384825,1.26211,-3.11064,0,0.2,0,1
1713946961.136170425,-0.699134,1.17536,3.02449,0.371716,1.25601,-3.1125,0,0.2,0,1
1713946961.286470442,-0.699134,1.17536,3.02449,0.32975,1.25962,-3.11301,0,0.2,0,1
1713946961.436818587,-0.699134,1.17536,3.02449,0.301473,1.25856,-3.11298,0,0.2,-0.0189474,1
1713946961.587115979,-0.699134,1.17536,3.02449,0.265341,1.26025,-3.11301,0,0.2,0,1
1713946962.408349905,-0.941468,1.2296,3.61249,0.123559,1.25598,-3.11691,0,0.2,-0.0189474,0.625666
1713946962.558507001,-0.941468,1.2296,3.61249,0.0914854,1.25629,-3.11975,0,0.2,-0.0568421,0.625666
1713946962.708681889,-0.941468,1.2296,3.61249,0.0521151,1.25318,-3.12478,0,0.2,-0.0568421,0.625666
1713946962.858842193,-0.941468,1.2296,3.61249,0.0272653,1.25692,-3.12766,0,0.2,-0.0189474,0.625666
1713946963.008996372,-0.941468,1.2296,3.61249,-0.00485522,1.25731,-3.13298,0,0.2,-0.0189474,0.625666
1713946963.159221721,-0.941468,1.2296,3.61249,-0.0272789,1.25439,-3.13602,0,0.2,0.0189474,0.625666
1713946963.309541574,-0.941468,1.2296,3.61249,-0.0595103,1.25467,-3.13864,0,0.2,0.0189474,0.625666
1713946963.459842759,-0.941468,1.2296,3.61249,-0.0819969,1.25166,-3.13946,0,0.2,0.0189474,0.625666
1713946963.610195863,-0.941468,1.2296,3.61249,-0.123674,1.25491,3.13981,0,0.2,0.0189474,0.625666
1713946963.760489464,-0.941468,1.2296,3.61249,-0.133331,1.25826,3.13926,0,0.2,0.0189474,0.625666
1713946963.910757107,-0.941468,1.2296,3.61249,-0.165534,1.2588,3.13647,0,0.2,0.0189474,0.625666
1713946964.060914786,-0.941468,1.2296,3.61249,-0.20285,1.26102,3.13447,0,0.2,0.0189474,0.625666
1713946964.211072175,-0.941468,1.2296,3.61249,-0.229303,1.25943,3.1328,0,0.2,0.0189474,0.625666
1713946964.361226063,-0.941468,1.2296,3.61249,-0.251764,1.25652,3.13259,0,0.2,0.0189474,0.625666
1713946964.511384035,-0.941468,1.2296,3.61249,-0.283883,1.25675,3.13382,0,0.2,0.0189474,0.625666
1713946964.661537340,-0.941468,1.2296,3.61249,-0.315714,1.25698,3.13584,0,0.2,0.0189474,0.625666
1713946964.811695603,-0.941468,1.2296,3.61249,-0.347615,1.25699,3.13613,0,0.2,0.0189474,0.625666

View File

@ -1,81 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1713954078.340228799,-2.04681,-1.29004,-0.0680199,0.00485747,0.304249,-0.00423955,0,0.0666667,-0.322105,0
1713954078.490547149,-2.04681,-1.29004,-0.0680199,0.00486676,0.304831,-0.00431608,0,0.0666667,-0.322105,0
1713954078.640843914,-2.04681,-1.29004,-0.0680199,0.00487139,0.305121,-0.00431095,0,0.0666667,-0.322105,0
1713954078.791115884,-2.04681,-1.29004,-0.0680199,0.00488061,0.305698,-0.004308,0,0.0666667,-0.322105,0
1713954078.941389312,-2.04681,-1.29004,-0.0680199,0.00488519,0.305986,-0.00446425,0,0.0666667,-0.322105,0
1713954079.091655821,-2.04681,-1.29004,-0.0680199,0.00489433,0.306558,-0.00442839,0,0.0666667,-0.322105,0
1713954079.241947042,-2.04681,-1.29004,-0.0680199,0.00489888,0.306843,-0.00443124,0,0.0666667,-0.322105,0
1713954079.392225137,-2.04681,-1.29004,-0.0680199,0.00490793,0.30741,-0.00450123,0,0.0666667,-0.322105,0
1713954079.542475228,-2.04681,-1.29004,-0.0680199,0.00491244,0.307692,-0.00456857,0,0.0666667,-0.322105,0
1713954079.692802329,-2.04681,-1.29004,-0.0680199,0.00492142,0.308254,-0.00460717,0,0.0666667,-0.322105,0
1713954079.843136722,-2.04681,-1.29004,-0.0680199,0.00492589,0.308534,-0.00463323,0,0.0666667,-0.322105,0
1713954079.993458864,-2.04681,-1.29004,-0.0680199,0.00493479,0.309092,-0.00477379,0,0.0666667,-0.322105,0
1713954080.143721169,-2.04681,-1.29004,-0.0680199,0.00493922,0.309369,-0.00475186,0,0.0666667,-0.322105,0
1713954080.294047230,-2.04681,-1.29004,-0.0680199,0.00494804,0.309922,-0.00475799,0,0.0666667,-0.322105,0
1713954080.444362790,-2.04681,-1.29004,-0.0680199,0.00495243,0.310197,-0.00480414,0,0.0666667,-0.322105,0
1713954080.594649179,-2.04681,-1.29004,-0.0680199,0.00496117,0.310745,-0.00482262,0,0.0666667,-0.322105,0
1713954080.744913982,-2.04681,-1.29004,-0.0680199,0.00496553,0.311017,-0.00488624,0,0.0666667,-0.322105,0
1713954080.895174117,-2.04681,-1.29004,-0.0680199,0.0049742,0.31156,-0.00497344,0,0.0666667,-0.322105,0
1713954081.045448898,-2.04681,-1.29004,-0.0680199,0.00497851,0.31183,-0.00496111,0,0.0666667,-0.322105,0
1713954081.195733509,-2.04681,-1.29004,-0.0680199,0.0049871,0.312369,-0.00491368,0,0.0666667,-0.322105,0
1713954081.346037666,-2.04681,-1.29004,-0.0680199,0.00499138,0.312637,-0.00487592,0,0.0666667,-0.322105,0
1713954081.496319652,-2.04681,-1.29004,-0.0680199,0.0049999,0.31317,-0.00499003,0,0.0666667,-0.322105,0
1713954081.646637811,-2.04681,-1.29004,-0.0680199,0.00500414,0.313436,-0.0049969,0,0.0666667,-0.322105,0
1713954081.796900252,-2.04681,-1.29004,-0.0680199,0.00501258,0.313964,-0.00499867,0,0.0666667,-0.322105,0
1713954081.947171153,-2.04681,-1.29004,-0.0680199,0.00501678,0.314228,-0.0050309,0,0.0666667,-0.322105,0
1713954082.097459450,-2.04681,-1.29004,-0.0680199,0.00502515,0.314752,-0.00498464,0,0.0666667,-0.322105,0
1713954082.247725512,-2.04681,-1.29004,-0.0680199,0.00502932,0.315013,-0.00499619,0,0.0666667,-0.322105,0
1713954082.398009077,-2.04681,-1.29004,-0.0680199,0.00503761,0.315532,-0.00502065,0,0.0666667,-0.322105,0
1713954082.548283890,-2.04681,-1.29004,-0.0680199,0.00504174,0.315791,-0.00503405,0,0.0666667,-0.322105,0
1713954082.698551703,-2.04681,-1.29004,-0.0680199,0.00504996,0.316306,-0.00503128,0,0.0666667,-0.322105,0
1713954082.848792677,-2.04681,-1.29004,-0.0680199,0.00505405,0.316562,-0.00501721,0,0.0666667,-0.322105,0
1713954082.999075075,-2.04681,-1.29004,-0.0680199,0.0050622,0.317073,-0.00501021,0,0.0666667,-0.322105,0
1713954083.149387737,-2.04681,-1.29004,-0.0680199,0.00506626,0.317327,-0.00499491,0,0.0666667,-0.322105,0
1713954083.299665453,-2.04681,-1.29004,-0.0680199,0.00507434,0.317833,-0.00505574,0,0.0666667,-0.322105,0
1713954083.449920123,-2.04681,-1.29004,-0.0680199,0.00507836,0.318084,-0.00502273,0,0.0666667,-0.322105,0
1713954083.600206006,-2.04681,-1.29004,-0.0680199,0.00508636,0.318586,-0.005107,0,0.0666667,-0.322105,0
1713954083.750464177,-2.04681,-1.29004,-0.0680199,0.00509035,0.318835,-0.00512261,0,0.0666667,-0.322105,0
1713954083.900749769,-2.04681,-1.29004,-0.0680199,0.00509828,0.319332,-0.0051869,0,0.0666667,-0.322105,0
1713954084.051011457,-2.04681,-1.29004,-0.0680199,0.00510223,0.31958,-0.00520856,0,0.0666667,-0.322105,0
1713954084.201319954,-2.04681,-1.29004,-0.0680199,0.0051101,0.320072,-0.00522532,0,0.0666667,-0.322105,0
1713954084.351607155,-2.04681,-1.29004,-0.0680199,0.00511401,0.320318,-0.00525175,0,0.0666667,-0.322105,0
1713954084.501880353,-2.04681,-1.29004,-0.0680199,0.00512181,0.320806,-0.00516021,0,0.0666667,-0.322105,0
1713954084.652456652,-2.04681,-1.29004,-0.0680199,0.00512569,0.321049,-0.00514285,0,0.0666667,-0.322105,0
1713954084.802782653,-2.04681,-1.29004,-0.0680199,0.00513341,0.321533,-0.00517441,0,0.0666667,-0.322105,0
1713954084.953091441,-2.04681,-1.29004,-0.0680199,0.00513726,0.321774,-0.00520692,0,0.0666667,-0.322105,0
1713954085.103416292,-2.04681,-1.29004,-0.0680199,0.00514491,0.322253,-0.00530954,0,0.0666667,-0.322105,0
1713954085.254731282,-2.04681,-1.29004,-0.0680199,0.00514872,0.322492,-0.00530132,0,0.0666667,-0.322105,0
1713954085.405028433,-2.04681,-1.29004,-0.0680199,0.00515631,0.322967,-0.00531596,0,0.0666667,-0.322105,0
1713954085.555295244,-2.04681,-1.29004,-0.0680199,0.00516009,0.323204,-0.0053408,0,0.0666667,-0.322105,0
1713954085.705567306,-2.04681,-1.29004,-0.0680199,0.00516761,0.323675,-0.00536123,0,0.0666667,-0.322105,0
1713954085.855827407,-2.04681,-1.29004,-0.0680199,0.00517135,0.323909,-0.00529915,0,0.0666667,-0.36,0
1713954086.006092825,-2.04681,-1.29004,-0.0680199,0.00517881,0.324376,-0.00532909,0,0.0666667,-0.36,0
1713954086.156359848,-2.04681,-1.29004,-0.0680199,0.00518252,0.324608,-0.00538317,0,0.0666667,-0.36,0
1713954086.306621619,-2.04681,-1.29004,-0.0680199,0.0051899,0.325071,-0.00539605,0,0.0666667,-0.36,0
1713954086.456881057,-2.04681,-1.29004,-0.0680199,0.00519358,0.325301,-0.00550725,0,0.0666667,-0.36,0
1713954086.607153914,-2.04681,-1.29004,-0.0680199,0.0052009,0.32576,-0.00549777,0,0.0666667,-0.36,0
1713954086.757414226,-2.04681,-1.29004,-0.0680199,0.00520454,0.325988,-0.00551534,0,0.0666667,-0.36,0
1713954086.907691751,-2.04681,-1.29004,-0.0680199,0.0052118,0.326443,-0.00546988,0,0.0666667,-0.322105,0
1713954087.057961966,-2.04681,-1.29004,-0.0680199,0.00521541,0.326669,-0.00549018,0,0.0666667,-0.322105,0
1713954087.208353666,-2.04681,-1.29004,-0.0680199,0.0052226,0.327119,-0.00552093,0,0.0666667,-0.322105,0
1713954087.358671558,-2.04681,-1.29004,-0.0680199,0.00522618,0.327343,-0.00547881,0,0.0666667,-0.322105,0
1713954087.508901053,-2.04681,-1.29004,-0.0680199,0.0052333,0.32779,-0.00548138,0,0.0666667,-0.322105,0
1713954087.659123256,-2.04681,-1.29004,-0.0680199,0.00523685,0.328012,-0.00549163,0,0.0666667,-0.322105,0
1713954087.809449607,-2.04681,-1.29004,-0.0680199,0.00524391,0.328454,-0.0055333,0,0.0666667,-0.322105,0
1713954087.959743868,-2.04681,-1.29004,-0.0680199,0.00524743,0.328674,-0.00556091,0,0.0666667,-0.322105,0
1713954088.110083513,-2.04681,-1.29004,-0.0680199,0.00525442,0.329112,-0.00555069,0,0.0666667,-0.322105,0
1713954088.260428546,-2.04681,-1.29004,-0.0680199,0.00525791,0.329331,-0.00549164,0,0.0666667,-0.322105,0
1713954088.410703269,-2.04681,-1.29004,-0.0680199,0.00526484,0.329765,-0.00555674,0,0.0666667,-0.322105,0
1713954088.560962823,-2.04681,-1.29004,-0.0680199,0.00526829,0.329981,-0.00550646,0,0.0666667,-0.322105,0
1713954088.711254467,-2.04681,-1.29004,-0.0680199,0.00527517,0.330412,-0.00545674,0,0.0666667,-0.322105,0
1713954088.861516354,-2.04681,-1.29004,-0.0680199,0.00527859,0.330626,-0.0054953,0,0.0666667,-0.322105,0
1713954089.011778609,-2.04681,-1.29004,-0.0680199,0.0052854,0.331052,-0.00548048,0,0.0666667,-0.36,0
1713954089.162023493,-2.04681,-1.29004,-0.0680199,0.00528879,0.331265,-0.00547342,0,0.0666667,-0.36,0
1713954089.312286172,-2.04681,-1.29004,-0.0680199,0.00529554,0.331687,-0.00558902,0,0.0666667,-0.36,0
1713954089.462543601,-2.04681,-1.29004,-0.0680199,0.0052989,0.331898,-0.00553569,0,0.0666667,-0.36,0
1713954089.612902847,-2.04681,-1.29004,-0.0680199,0.00530558,0.332317,-0.00557096,0,0.0666667,-0.36,0
1713954089.763235252,-2.04681,-1.29004,-0.0680199,0.00530891,0.332525,-0.00555146,0,0.0666667,-0.36,0
1713954089.913457964,-2.04681,-1.29004,-0.0680199,0.00531554,0.33294,-0.00557357,0,0.0666667,-0.36,0
1713954090.063868782,-2.04681,-1.29004,-0.0680199,0.00531884,0.333147,-0.00564227,0,0.0666667,-0.36,0
1713954090.214069443,-2.04681,-1.29004,-0.0680199,0.00532541,0.333558,-0.00566393,0,0.0666667,-0.36,0

View File

@ -1,625 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1714121725.816972252,-2.09681,-1.59004,-0.0680199,0.0256536,-0.00810475,-0.0152815,0,0.0666667,-0.36,0
1714121725.967320209,-2.09681,-1.59004,-0.0680199,0.0256883,-0.0081456,-0.0347146,0,0.0666667,-0.36,0
1714121726.117649207,-2.09681,-1.59004,-0.0680199,0.0257496,-0.00807875,-0.0561001,0,0.0666667,-0.322105,0
1714121726.267944663,-2.09681,-1.59004,-0.0680199,0.0259283,-0.00783926,-0.0890146,0,0.0666667,-0.322105,0
1714121726.418247995,-2.09681,-1.59004,-0.0680199,0.0359748,-0.00788317,-0.127087,0,0.0666667,-0.322105,0
1714121726.568554243,-2.09681,-1.59004,-0.0680199,0.0460029,-0.00781248,-0.166013,0,0.0666667,-0.36,0
1714121726.718848241,-2.09681,-1.59004,-0.0680199,0.056128,-0.00782671,-0.2059,0,0.0666667,-0.322105,0
1714121726.869155656,-2.09681,-1.59004,-0.0680199,0.0563704,-0.00757974,-0.237494,0,0.0666667,-0.36,0
1714121727.019463946,-2.09681,-1.59004,-0.0680199,0.0664493,-0.00752987,-0.27611,0,0.0666667,-0.284211,0
1714121727.169757653,-2.09681,-1.59004,-0.0680199,0.0770776,-0.0176242,-0.324739,0,0.0666667,-0.322105,0
1714121727.320053693,-2.09681,-1.59004,-0.0680199,0.0873766,-0.0177563,-0.366737,0,0.0666667,-0.322105,0
1714121727.470345358,-2.09681,-1.59004,-0.0680199,0.0978954,-0.017652,-0.411645,0,0.0666667,-0.36,0
1714121727.620626523,-2.09681,-1.59004,-0.0680199,0.105381,-0.0248218,-0.453774,0,0.0666667,-0.36,0
1714121727.770924605,-2.09681,-1.59004,-0.0680199,0.108515,-0.0272196,-0.491871,0,0.0666667,-0.36,0
1714121727.921220937,-2.09681,-1.59004,-0.0680199,0.118836,-0.0268096,-0.547037,0,0.0666667,-0.322105,0
1714121728.071527477,-2.09681,-1.59004,-0.0680199,0.129048,-0.0359066,-0.612619,0,0.0666667,-0.36,0
1714121728.221840726,-2.09681,-1.59004,-0.0680199,0.129146,-0.0353083,-0.650086,0,0.0666667,-0.36,0
1714121728.372133558,-2.09681,-1.59004,-0.0680199,0.139431,-0.0441112,-0.699373,0,0.0666667,-0.36,0
1714121728.522440973,-2.09681,-1.59004,-0.0680199,0.149584,-0.0491259,-0.75182,0,0.0666667,-0.322105,0
1714121728.672780472,-2.09681,-1.59004,-0.0680199,0.149989,-0.0520196,-0.794886,0,0.0666667,-0.36,0
1714121728.823097804,-2.09681,-1.59004,-0.0680199,0.160126,-0.061209,-0.844541,0,0.0666667,-0.36,0
1714121728.973383344,-2.09681,-1.59004,-0.0680199,0.160477,-0.0594371,-0.884218,0,0.0666667,-0.36,0
1714121729.123693093,-2.09681,-1.59004,-0.0680199,0.170544,-0.0684398,-0.933264,0,0.0666667,-0.322105,0
1714121729.273984759,-2.09681,-1.59004,-0.0680199,0.18093,-0.076774,-1.00236,0,0.0666667,-0.36,0
1714121729.424316383,-2.09681,-1.59004,-0.0680199,0.181178,-0.0766048,-1.04039,0,0.0666667,-0.36,0
1714121729.574597840,-2.09681,-1.59004,-0.0680199,0.181781,-0.0879647,-1.07604,0,0.0666667,-0.36,0
1714121729.724899131,-2.09681,-1.59004,-0.0680199,0.192201,-0.0978269,-1.13298,0,0.0666667,-0.36,0
1714121729.875196046,-2.09681,-1.59004,-0.0680199,0.192855,-0.109063,-1.17125,0,0.0666667,-0.36,0
1714121730.025499378,-2.09681,-1.59004,-0.0680199,0.203354,-0.11927,-1.23929,0,0.133333,-0.36,0
1714121730.175791627,-2.09681,-1.59004,-0.0680199,0.203926,-0.117708,-1.28393,0,0.111111,-0.36,0
1714121730.326096418,-2.09681,-1.59004,-0.0680199,0.20419,-0.126981,-1.3224,0,0.0666667,-0.36,0
1714121730.476377292,-2.09681,-1.59004,-0.0680199,0.204584,-0.145513,-1.39896,0,0.0666667,-0.36,0
1714121730.626699583,-2.09681,-1.59004,-0.0680199,0.204934,-0.154752,-1.43834,0,0.155556,-0.36,0
1714121730.776974624,-2.09681,-1.59004,-0.0680199,0.215503,-0.153534,-1.48376,0,0.155556,-0.36,0
1714121730.927272706,-2.09681,-1.59004,-0.0680199,0.216065,-0.173006,-1.55959,0,0.2,-0.36,0
1714121731.077547747,-2.09681,-1.59004,-0.0680199,0.216774,-0.181701,-1.60238,0,0.2,-0.36,0
1714121731.227904164,-2.09681,-1.59004,-0.0680199,0.206984,-0.210783,-1.66562,0,0.177778,-0.36,0
1714121731.378186205,-2.09681,-1.59004,-0.0680199,0.207435,-0.229474,-1.72387,0,0.2,-0.36,0
1714121731.528500621,-2.09681,-1.59004,-0.0680199,0.207693,-0.248563,-1.76174,0,0.177778,-0.36,0
1714121731.678791703,-2.09681,-1.59004,-0.0680199,0.198081,-0.276966,-1.83395,0,0.2,-0.36,0
1714121731.829083661,-2.09681,-1.59004,-0.0680199,0.198267,-0.286545,-1.87004,0,0.2,-0.36,0
1714121731.979359577,-2.09681,-1.59004,-0.0680199,0.188784,-0.315966,-1.93482,0,0.2,-0.36,0
1714121732.129684202,-2.09681,-1.59004,-0.0680199,0.173476,-0.345747,-1.98687,0,0.2,-0.36,0
1714121732.279982576,-2.09681,-1.59004,-0.0680199,0.163986,-0.36569,-2.02001,0,0.2,-0.36,0
1714121732.430287076,-2.09681,-1.59004,-0.0680199,0.14995,-0.391823,-2.06614,0,0.2,-0.36,0
1714121732.580630659,-2.09681,-1.59004,-0.0680199,0.140257,-0.40605,-2.1075,0,0.2,-0.36,0
1714121732.730934576,-2.09681,-1.59004,-0.0680199,0.120623,-0.436102,-2.16506,0,0.2,-0.36,0
1714121732.881234409,-2.09681,-1.59004,-0.0680199,0.103727,-0.463496,-2.21745,0,0.2,-0.36,0
1714121733.031620867,-2.09681,-1.59004,-0.0680199,0.0910927,-0.476087,-2.2554,0,0.2,-0.36,0
1714121733.182032993,-2.09681,-1.59004,-0.0680199,0.0754534,-0.495606,-2.30239,0,0.2,-0.322105,0
1714121733.332437535,-2.09681,-1.59004,-0.0680199,0.0612471,-0.515439,-2.34594,0,0.2,-0.284211,0
1714121733.482825744,-2.09681,-1.59004,-0.0680199,0.0337233,-0.535189,-2.40286,0,0.177778,-0.208421,0
1714121733.633091452,-2.09681,-1.59004,-0.0680199,0.0213782,-0.555005,-2.44155,0,0.2,-0.170526,0
1714121733.783481411,-2.09681,-1.59004,-0.0680199,0.00152407,-0.574983,-2.48926,0,0.2,-0.170526,0
1714121733.933878370,-2.09681,-1.59004,-0.0680199,-0.0184452,-0.58489,-2.52077,0,0.2,-0.132632,0
1714121734.084265995,-2.09681,-1.59004,-0.0680199,-0.0484724,-0.605302,-2.56189,0,0.177778,-0.132632,0
1714121734.234656538,-2.09681,-1.59004,-0.0680199,-0.0642517,-0.615345,-2.5855,0,0.2,-0.0947368,0
1714121734.385167248,-2.09681,-1.59004,-0.0680199,-0.095826,-0.635086,-2.61576,0,0.2,-0.0947368,0
1714121734.535555457,-2.09681,-1.59004,-0.0680199,-0.105793,-0.642038,-2.62688,0,0.2,-0.0568421,0
1714121734.685941333,-2.09681,-1.59004,-0.0680199,-0.138365,-0.654459,-2.64742,0,0.2,-0.0189474,0
1714121734.836338000,-2.09681,-1.59004,-0.0680199,-0.148334,-0.664405,-2.65692,0,0.2,-0.0189474,0
1714121734.986732043,-2.09681,-1.59004,-0.0680199,-0.188177,-0.684016,-2.67204,0,0.2,-0.0568421,0
1714121735.137129877,-2.09681,-1.59004,-0.0680199,-0.198154,-0.694059,-2.67594,0,0.2,-0.0189474,0
1714121735.287511378,-2.09681,-1.59004,-0.0680199,-0.227948,-0.703868,-2.68574,0,0.2,-0.0189474,0
1714121735.438019463,-2.09681,-1.59004,-0.0680199,-0.257858,-0.71358,-2.69162,0,0.2,-0.0189474,0
1714121735.588424589,-2.09681,-1.59004,-0.0680199,-0.27771,-0.733385,-2.69762,0,0.2,-0.0189474,0
1714121735.738818632,-2.09681,-1.59004,-0.0680199,-0.307747,-0.742779,-2.70231,0,0.2,0,0
1714121735.889206258,-2.09681,-1.59004,-0.0680199,-0.33498,-0.752358,-2.7053,0,0.2,0.0189474,0
1714121736.039586009,-2.09681,-1.59004,-0.0680199,-0.347734,-0.762381,-2.70682,0,0.2,0,0
1714121736.190027594,-2.09681,-1.59004,-0.0680199,-0.384887,-0.778949,-2.70831,0,0.2,-0.0189474,0
1714121736.340417845,-2.09681,-1.59004,-0.0680199,-0.407963,-0.791381,-2.70836,0,0.2,0.0189474,0
1714121736.490827346,-2.09681,-1.59004,-0.0680199,-0.428146,-0.801131,-2.70888,0,0.2,0.0189474,0
1714121736.641214098,-2.09681,-1.59004,-0.0680199,-0.46375,-0.810771,-2.70809,0,0.2,0.0947368,0
1714121736.791607849,-2.09681,-1.59004,-0.0680199,-0.488237,-0.820279,-2.70519,0,0.2,0.0568421,0
1714121736.942031350,-2.09681,-1.59004,-0.0680199,-0.508142,-0.830066,-2.69986,0,0.2,0.0189474,0
1714121737.092426560,-2.09681,-1.59004,-0.0680199,-0.534035,-0.84557,-2.69551,0,0.2,0.0568421,0
1714121737.242820895,-2.09681,-1.59004,-0.0680199,-0.558346,-0.859566,-2.69164,0,0.2,0.0568421,0
1714121737.393220188,-2.09681,-1.59004,-0.0680199,-0.588308,-0.869271,-2.68448,0,0.2,0.0568421,0
1714121737.543630273,-2.09681,-1.59004,-0.0680199,-0.608366,-0.87903,-2.68132,0,0.2,-0.0568421,0
1714121737.694025191,-2.09681,-1.59004,-0.0680199,-0.638596,-0.888289,-2.67372,0,0.2,-0.0568421,0
1714121737.844420693,-2.09681,-1.59004,-0.0680199,-0.658671,-0.907984,-2.66909,0,0.2,-0.0189474,0
1714121737.994804819,-2.09681,-1.59004,-0.0680199,-0.688925,-0.917849,-2.66417,0,0.2,-0.0568421,0
1714121738.145221029,-2.09681,-1.59004,-0.0680199,-0.70889,-0.927845,-2.6634,0,0.2,-0.0568421,0
1714121738.295552656,-2.09681,-1.59004,-0.0680199,-0.728911,-0.937746,-2.66108,0,0.2,-0.0568421,0
1714121738.445886615,-2.09681,-1.59004,-0.0680199,-0.758698,-0.958042,-2.65949,0,0.2,-0.0947368,0
1714121738.596233700,-2.09681,-1.59004,-0.0680199,-0.794138,-0.968385,-2.66565,0,0.2,-0.0568421,0
1714121738.746537909,-2.09681,-1.59004,-0.0680199,-0.808436,-0.97852,-2.66988,0,0.2,-0.0189474,0
1714121738.896900453,-2.09681,-1.59004,-0.0680199,-0.838402,-0.988896,-2.6737,0,0.2,-0.0568421,0
1714121739.047202037,-2.09681,-1.59004,-0.0680199,-0.863818,-1.00931,-2.68061,0,0.2,-0.0189474,0
1714121739.197506538,-2.09681,-1.59004,-0.0680199,-0.888182,-1.01954,-2.68385,0,0.2,-0.0189474,0
1714121739.347799956,-2.09681,-1.59004,-0.0680199,-0.908237,-1.0295,-2.68829,0,0.177778,-0.0189474,0
1714121739.498125166,-2.09681,-1.59004,-0.0680199,-0.938252,-1.03952,-2.69063,0,0.2,-0.0568421,0
1714121739.648425876,-2.09681,-1.59004,-0.0680199,-0.958275,-1.04936,-2.69471,0,0.2,-0.0568421,0
1714121739.798732419,-2.09681,-1.59004,-0.0680199,-0.988217,-1.05957,-2.69849,0,0.2,-0.0568421,0
1714121739.949043920,-2.09681,-1.59004,-0.0680199,-1.01361,-1.07983,-2.70606,0,0.2,-0.0189474,0
1714121740.099352797,-2.09681,-1.59004,-0.0680199,-1.03787,-1.09017,-2.71082,0,0.177778,-0.0189474,0
1714121740.249654965,-2.09681,-1.59004,-0.0680199,-1.05776,-1.10047,-2.71581,0,0.2,0.0189474,0
1714121740.399971717,-2.09681,-1.59004,-0.0680199,-1.08778,-1.11078,-2.71979,0,0.2,0,0
1714121740.550268051,-2.09681,-1.59004,-0.0680199,-1.10767,-1.12119,-2.72161,0,0.2,0,0
1714121740.700579845,-2.09681,-1.59004,-0.0680199,-1.14462,-1.13176,-2.72433,0,0.2,-0.0189474,0
1714121740.850882013,-2.09681,-1.59004,-0.0680199,-1.16711,-1.14267,-2.72715,0,0.2,0,0
1714121741.001186514,-2.09681,-1.59004,-0.0680199,-1.18697,-1.15301,-2.72898,0,0.2,0,0
1714121741.151497141,-2.09681,-1.59004,-0.0680199,-1.21639,-1.16387,-2.72892,0,0.2,0,0
1714121741.301811851,-2.09681,-1.59004,-0.0680199,-1.23614,-1.18424,-2.72942,0,0.2,0,0
1714121741.452123353,-2.09681,-1.59004,-0.0680199,-1.26571,-1.19493,-2.72977,0,0.2,0.0189474,0
1714121741.602428438,-2.09681,-1.59004,-0.0680199,-1.28554,-1.20528,-2.72916,0,0.2,0.0189474,0
1714121741.752739649,-2.09681,-1.59004,-0.0680199,-1.31536,-1.21539,-2.72883,0,0.2,0,0
1714121741.903043567,-2.09681,-1.59004,-0.0680199,-1.35058,-1.22571,-2.72803,0,0.2,0,0
1714121742.053349527,-2.09681,-1.59004,-0.0680199,-1.36477,-1.2358,-2.72825,0,0.2,0.0568421,0
1714121742.203651988,-2.09681,-1.59004,-0.0680199,-1.39462,-1.24601,-2.72756,0,0.2,0.0189474,0
1714121742.353942198,-2.09681,-1.59004,-0.0680199,-1.41449,-1.25634,-2.7256,0,0.2,0,0
1714121742.504264783,-2.09681,-1.59004,-0.0680199,-1.44433,-1.26642,-2.72244,0,0.2,0,0
1714121742.654577452,-2.09681,-1.59004,-0.0680199,-1.46416,-1.27669,-2.7214,0,0.2,-0.0189474,0
1714121742.804876121,-2.09681,-1.59004,-0.0680199,-1.49365,-1.29736,-2.72001,0,0.177778,0.0189474,0
1714121742.955241582,-2.09681,-1.59004,-0.0680199,-1.51253,-1.30916,-2.72047,0,0.2,-0.0189474,0
1714121743.105669460,-2.09681,-1.59004,-0.0680199,-1.54193,-1.32,-2.71748,0,0.2,-0.0568421,0
1714121743.256081004,-2.09681,-1.59004,-0.0680199,-1.56124,-1.33117,-2.71716,0,0.2,-0.0568421,0
1714121743.406468632,-2.09681,-1.59004,-0.0680199,-1.5911,-1.34161,-2.71845,0,0.177778,-0.0568421,0
1714121743.556873469,-2.09681,-1.59004,-0.0680199,-1.62084,-1.35234,-2.71895,0,0.2,-0.0189474,0
1714121743.707270430,-2.09681,-1.59004,-0.0680199,-1.6406,-1.36257,-2.72362,0,0.2,-0.0568421,0
1714121743.857679058,-2.09681,-1.59004,-0.0680199,-1.67029,-1.37321,-2.73057,0,0.2,0.0947368,0
1714121744.008067852,-2.09681,-1.59004,-0.0680199,-1.69724,-1.39077,-2.73584,0,0.2,0.0568421,0
1714121744.158335021,-2.09681,-1.59004,-0.0680199,-1.71975,-1.40431,-2.73385,0,0.2,-0.0189474,0
1714121744.308732275,-2.09681,-1.59004,-0.0680199,-1.73979,-1.41424,-2.73265,0,0.177778,0.0189474,0
1714121744.459122819,-2.09681,-1.59004,-0.0680199,-1.76992,-1.42422,-2.73346,0,0.155556,0.0189474,0
1714121744.609534948,-2.09681,-1.59004,-0.0680199,-1.8,-1.43416,-2.73056,0,0.155556,0.0189474,0
1714121744.759935701,-2.09681,-1.59004,-0.0680199,-1.82025,-1.44414,-2.73058,0,0.155556,0.0189474,0
1714121744.910330037,-2.09681,-1.59004,-0.0680199,-1.83028,-1.45415,-2.72805,0,0.133333,0,0
1714121745.060791749,-2.09681,-1.59004,-0.0680199,-1.85969,-1.46538,-2.72703,0,0.133333,0.0189474,0
1714121745.211199211,-2.09681,-1.59004,-0.0680199,-1.8789,-1.46682,-2.72642,0,0.111111,0.0189474,0
1714121745.361687465,-2.09681,-1.59004,-0.0680199,-1.88734,-1.47975,-2.72541,0,0.111111,0,0
1714121745.512091427,-2.09681,-1.59004,-0.0680199,-1.90665,-1.49108,-2.724,0,0.111111,0,0
1714121745.662477597,-2.09681,-1.59004,-0.0680199,-1.92696,-1.50092,-2.72237,0,0.0888889,0.0189474,0
1714121745.812863767,-2.09681,-1.59004,-0.0680199,-1.94239,-1.50147,-2.71876,0,0.0888889,0,0
1714121745.963249354,-2.09681,-1.59004,-0.0680199,-1.95767,-1.51017,-2.71829,0,0.0888889,0.0947368,0
1714121746.113649232,-2.09681,-1.59004,-0.0680199,-1.96813,-1.50966,-2.71589,0,0,0.5,0
1714121746.264041819,-2.09681,-1.59004,-0.0680199,-1.97866,-1.51887,-2.71469,0,0,0.5,0
1714121746.414431489,-2.09681,-1.59004,-0.0680199,-1.98903,-1.51839,-2.70307,0,0,0.5,0
1714121746.564740367,-2.09681,-1.59004,-0.0680199,-1.99006,-1.52776,-2.68158,0,0,0.5,0
1714121746.715071412,-2.09681,-1.59004,-0.0680199,-2.00039,-1.52691,-2.6397,0,0,0.5,0
1714121746.865369499,-2.09681,-1.59004,-0.0680199,-2.01068,-1.52612,-2.61298,0,0,0.5,0
1714121747.015664960,-2.09681,-1.59004,-0.0680199,-2.01137,-1.53592,-2.57678,0,0,0.5,0
1714121747.165967421,-2.09681,-1.59004,-0.0680199,-2.01171,-1.53496,-2.53624,0,0,0.5,0
1714121747.316269591,-2.09681,-1.59004,-0.0680199,-2.01191,-1.53442,-2.50068,0,0,0.5,0
1714121747.466570594,-2.09681,-1.59004,-0.0680199,-2.01222,-1.53325,-2.45122,0,0,0.5,0
1714121747.616871014,-2.09681,-1.59004,-0.0680199,-2.02235,-1.53146,-2.39317,0,0,0.5,0
1714121747.767159767,-2.09681,-1.59004,-0.0680199,-2.02287,-1.53052,-2.32332,0,0,0.5,0
1714121747.917517063,-2.09681,-1.59004,-0.0680199,-2.02309,-1.53054,-2.22979,0,0,0.5,0
1714121748.067825941,-2.09681,-1.59004,-0.0680199,-2.02335,-1.53123,-2.17422,0,0,0.5,0
1714121748.218131611,-2.09681,-1.59004,-0.0680199,-2.02344,-1.53151,-2.08625,0,0,0.5,0
1714121748.368441948,-2.09681,-1.59004,-0.0680199,-2.0238,-1.53193,-2.02692,0,0,0.5,0
1714121748.518746451,-2.09681,-1.59004,-0.0680199,-2.02404,-1.5321,-1.95954,0,0,0.5,0
1714121748.669042205,-2.09681,-1.59004,-0.0680199,-2.02427,-1.5333,-1.88962,0,0,0.5,0
1714121748.819351375,-2.09681,-1.59004,-0.0680199,-2.02453,-1.53402,-1.80405,0,0,0.5,0
1714121748.969661420,-2.09681,-1.59004,-0.0680199,-2.0246,-1.53411,-1.73765,0,0,0.5,0
1714121749.119974674,-2.09681,-1.59004,-0.0680199,-2.02452,-1.53425,-1.67981,0,0,0.5,0
1714121749.270273344,-2.09681,-1.59004,-0.0680199,-2.02439,-1.5349,-1.60378,0,0,0.5,0
1714121749.420577556,-2.09681,-1.59004,-0.0680199,-2.02432,-1.53535,-1.52472,0,0,0.5,0
1714121749.570872434,-2.09681,-1.59004,-0.0680199,-2.02424,-1.53674,-1.4429,0,0,0.5,0
1714121749.721174896,-2.09681,-1.59004,-0.0680199,-2.02431,-1.53757,-1.37593,0,0,0.5,0
1714121749.871482317,-2.09681,-1.59004,-0.0680199,-2.02414,-1.53913,-1.30619,0,0,0.5,0
1714121750.021876363,-2.09681,-1.59004,-0.0680199,-2.02419,-1.53893,-1.24865,0,0,0.5,0
1714121750.172268951,-2.09681,-1.59004,-0.0680199,-2.02418,-1.53944,-1.17686,0,0,0.5,0
1714121750.322663872,-2.09681,-1.59004,-0.0680199,-2.02418,-1.5397,-1.09675,0,0,0.5,0
1714121750.473075418,-2.09681,-1.59004,-0.0680199,-2.02417,-1.54047,-1.03604,0,0,0.5,0
1714121750.623460131,-2.09681,-1.59004,-0.0680199,-2.02411,-1.54039,-0.941564,0,0,0.5,0
1714121750.773845427,-2.09681,-1.59004,-0.0680199,-2.02399,-1.5415,-0.882326,0,0,0.5,0
1714121750.924239765,-2.09681,-1.59004,-0.0680199,-2.02391,-1.54204,-0.835056,0,0,0.5,0
1714121751.074630895,-2.09681,-1.59004,-0.0680199,-2.02354,-1.54318,-0.762091,0,0,0.5,0
1714121751.225045066,-2.09681,-1.59004,-0.0680199,-2.02338,-1.54342,-0.677109,0,0,0.5,0
1714121751.375457488,-2.09681,-1.59004,-0.0680199,-2.02322,-1.54382,-0.605267,0,0,0.5,0
1714121751.525860284,-2.09681,-1.59004,-0.0680199,-2.0231,-1.54387,-0.53535,0,0,0.5,0
1714121751.676238872,-2.09681,-1.59004,-0.0680199,-2.02286,-1.54387,-0.476231,0,0,0.5,0
1714121751.826641085,-2.09681,-1.59004,-0.0680199,-2.02278,-1.54415,-0.386726,0,0,0.5,0
1714121751.977074799,-2.09681,-1.59004,-0.0680199,-2.0226,-1.54478,-0.320805,0,0,0.5,0
1714121752.127482262,-2.09681,-1.59004,-0.0680199,-2.02254,-1.54513,-0.245137,0,0,0,0
1714121752.997290765,-1.80087,-1.57536,-0.117107,-2.01308,-1.54904,-0.130869,0,0.111111,-0.0189474,0.96875
1714121753.947348142,-1.50087,-1.57536,-0.117107,-1.9534,-1.55902,-0.108269,0,0.2,0.0568421,1
1714121754.848518916,-1.20087,-1.57536,-0.117107,-1.79785,-1.57938,-0.0735979,0,0.177778,0.0568421,1
1714121755.752324918,-0.900866,-1.57536,-0.117107,-1.63263,-1.59155,-0.0462898,0,0.2,0.0568421,1
1714121756.621459671,-0.600866,-1.57536,-0.117107,-1.47081,-1.59252,-0.0135871,0,0.2,0.0189474,1
1714121757.566257390,-0.300866,-1.57536,-0.117107,-1.27671,-1.59927,-0.00174937,0,0.2,0.0189474,1
1714121758.493203814,-0.000865787,-1.57536,-0.117107,-1.10295,-1.60184,0.00716337,0,0.2,0.0189474,1
1714121758.643497820,-0.000865787,-1.57536,-0.117107,-1.07684,-1.60548,0.00753462,0,0.2,0,1
1714121758.793792700,-0.000865787,-1.57536,-0.117107,-1.05134,-1.59842,0.00915291,0,0.2,0,1
1714121758.944089623,-0.000865787,-1.57536,-0.117107,-1.02111,-1.60222,0.00950994,0,0.2,0.0189474,1
1714121759.094404629,-0.000865787,-1.57536,-0.117107,-1.00106,-1.6047,0.0116796,0,0.2,0,1
1714121759.244719635,-0.000865787,-1.57536,-0.117107,-0.959712,-1.59944,0.0109153,0,0.2,0,1
1714121760.048109040,0.299134,-1.57536,-0.117107,-0.80717,-1.59725,0.0156214,0,0.2,0,1
1714121760.198408296,0.299134,-1.57536,-0.117107,-0.780362,-1.60029,0.015135,0,0.2,0,1
1714121760.348770261,0.299134,-1.57536,-0.117107,-0.746228,-1.59421,0.0157777,0,0.2,0,1
1714121760.499073601,0.299134,-1.57536,-0.117107,-0.71641,-1.59782,0.0151516,0,0.2,0,1
1714121760.649384524,0.299134,-1.57536,-0.117107,-0.69643,-1.60006,0.0151514,0,0.2,0,1
1714121761.499868231,0.599134,-1.57536,-0.117107,-0.53467,-1.59845,0.0134532,0,0.2,-0.0189474,1
1714121761.650172154,0.599134,-1.57536,-0.117107,-0.503405,-1.59176,0.0133347,0,0.2,0,1
1714121761.800461202,0.599134,-1.57536,-0.117107,-0.468085,-1.596,0.0120196,0,0.2,0,1
1714121761.950756667,0.599134,-1.57536,-0.117107,-0.452912,-1.59802,0.0113694,0,0.2,0,1
1714121762.101104049,0.599134,-1.57536,-0.117107,-0.411767,-1.59274,0.0114998,0,0.2,0,1
1714121762.251395430,0.599134,-1.57536,-0.117107,-0.391332,-1.59499,0.0105853,0,0.2,-0.0189474,1
1714121763.098065862,0.899134,-1.57536,-0.117107,-0.218058,-1.59355,0.0109521,0,0.2,-0.0189474,1
1714121763.248378827,0.899134,-1.57536,-0.117107,-0.186723,-1.58695,0.0114633,0,0.2,-0.0189474,1
1714121763.398785418,0.899134,-1.57536,-0.117107,-0.15673,-1.5902,0.0106732,0,0.2,0,1
1714121763.549183551,0.899134,-1.57536,-0.117107,-0.146389,-1.59138,0.00955378,0,0.2,-0.0189474,1
1714121763.699574100,0.899134,-1.57536,-0.117107,-0.100148,-1.58636,0.00889964,0,0.2,-0.0189474,1
1714121764.478958878,1.19913,-1.57536,-0.117107,0.0415862,-1.58112,0.00329928,0,0.2,-0.0189474,1
1714121764.629270094,1.19913,-1.57536,-0.117107,0.0661993,-1.58374,0.00111179,0,0.2,0,1
1714121764.779560309,1.19913,-1.57536,-0.117107,0.0860335,-1.58555,8.12851e-05,0,0.2,-0.0189474,1
1714121764.929859566,1.19913,-1.57536,-0.117107,0.122669,-1.57957,-0.000164021,0,0.2,0,1
1714121765.080164657,1.19913,-1.57536,-0.117107,0.146436,-1.58216,-0.00351648,0,0.2,0,1
1714121765.230467997,1.19913,-1.57536,-0.117107,0.176086,-1.58537,-0.00294299,0,0.2,-0.0189474,1
1714121765.380761130,1.19913,-1.57536,-0.117107,0.211678,-1.57925,-0.00587679,0,0.2,0,1
1714121766.314997243,1.49913,-1.57536,-0.117107,0.387262,-1.57855,-0.011805,0,0.2,0,1
1714121766.465327125,1.49913,-1.57536,-0.117107,0.417231,-1.58167,-0.00981739,0,0.2,0,1
1714121766.615627841,1.49913,-1.57536,-0.117107,0.447515,-1.58486,-0.00976576,0,0.2,0,1
1714121766.765947807,1.49913,-1.57536,-0.117107,0.46909,-1.58688,-0.00859495,0,0.2,0,1
1714121766.916256981,1.49913,-1.57536,-0.117107,0.500756,-1.5803,-0.00831262,0,0.2,0,1
1714121767.813363077,1.79913,-1.57536,-0.117107,0.683525,-1.57806,-0.00234565,0,0.2,-0.0189474,1
1714121767.963720960,1.79913,-1.57536,-0.117107,0.718931,-1.58079,-0.00261618,0,0.2,0,1
1714121768.114068051,1.79913,-1.57536,-0.117107,0.73941,-1.58239,-0.00337405,0,0.2,0,1
1714121768.264362351,1.79913,-1.57536,-0.117107,0.778803,-1.57548,-0.00475457,0,0.2,-0.0189474,1
1714121768.414665109,1.79913,-1.57536,-0.117107,0.801841,-1.57757,-0.0039858,0,0.2,-0.0189474,1
1714121769.346783711,2.01004,-1.59651,0.323633,0.995448,-1.5839,-0.013601,0,0.2,0,0.719416
1714121769.497082969,2.01004,-1.59651,0.323633,1.01902,-1.58623,-0.0164885,0,0.2,0,0.719416
1714121769.647385144,2.01004,-1.59651,0.323633,1.0497,-1.58906,-0.0172382,0,0.2,0,0.719416
1714121769.797683527,2.01004,-1.59651,0.323633,1.07122,-1.5815,-0.0185898,0,0.2,0,0.719416
1714121769.947981618,2.01004,-1.59651,0.323633,1.10184,-1.58458,-0.017687,0,0.2,0.0189474,0.719416
1714121770.098290793,2.01004,-1.59651,0.323633,1.12207,-1.58672,-0.0189582,0,0.2,0.0189474,0.719416
1714121770.248606094,2.01004,-1.59651,0.323633,1.16391,-1.58084,-0.0179666,0,0.2,0,0.719416
1714121770.398906227,2.01004,-1.59651,0.323633,1.19406,-1.58394,-0.0157501,0,0.2,0,0.719416
1714121770.549213069,2.01004,-1.59651,0.323633,1.2246,-1.58673,-0.0161216,0,0.2,0,0.719416
1714121770.699514660,2.01004,-1.59651,0.323633,1.25119,-1.57936,-0.014662,0,0.2,0,0.719416
1714121770.849810419,2.01004,-1.59651,0.323633,1.28617,-1.58257,-0.0153601,0,0.2,0,0.719416
1714121771.000112011,2.01004,-1.59651,0.323633,1.30635,-1.58447,-0.0131908,0,0.2,0,0.719416
1714121771.856882652,2.29551,-1.4568,1.35551,1.46748,-1.57963,-0.0149127,0,0.2,0.132632,0.343084
1714121772.007180744,2.29551,-1.4568,1.35551,1.50691,-1.58398,-0.0120381,0,0.2,0.132632,0.343084
1714121772.157529878,2.29551,-1.4568,1.35551,1.52728,-1.57585,-0.00501254,0,0.2,0.0947368,0.343084
1714121772.307827095,2.29551,-1.4568,1.35551,1.55657,-1.57931,0.00323701,0,0.2,0.0947368,0.343084
1714121772.458126354,2.29551,-1.4568,1.35551,1.58517,-1.58252,0.0137968,0,0.2,0.0947368,0.343084
1714121772.608434946,2.29551,-1.4568,1.35551,1.61558,-1.5762,0.0231917,0,0.2,0.0947368,0.343084
1714121772.758757538,2.29551,-1.4568,1.35551,1.64386,-1.57957,0.0357327,0,0.2,0.0947368,0.343084
1714121772.909068464,2.29551,-1.4568,1.35551,1.66415,-1.57199,0.0435497,0,0.2,0.0568421,0.343084
1714121773.059366848,2.29551,-1.4568,1.35551,1.69209,-1.57541,0.0621442,0,0.2,0.0189474,0.343084
1714121773.209669607,2.29551,-1.4568,1.35551,1.72404,-1.5691,0.077103,0,0.2,0.0189474,0.343084
1714121773.359979658,2.29551,-1.4568,1.35551,1.75593,-1.57242,0.0858397,0,0.2,0.0189474,0.343084
1714121773.510285042,2.29551,-1.4568,1.35551,1.77804,-1.56479,0.0919672,0,0.2,0,0.343084
1714121773.660583134,2.29551,-1.4568,1.35551,1.8111,-1.55802,0.0979739,0,0.2,0.0947368,0.343084
1714121773.810882102,2.29551,-1.4568,1.35551,1.84184,-1.56139,0.0992576,0,0.2,0.0568421,0.343084
1714121773.961183111,2.29551,-1.4568,1.35551,1.87496,-1.55469,0.108679,0,0.2,0.0189474,0.343084
1714121774.111507745,2.29551,-1.4568,1.35551,1.90703,-1.54834,0.117754,0,0.2,0.0189474,0.343084
1714121774.261818963,2.29551,-1.4568,1.35551,1.92885,-1.55028,0.123232,0,0.177778,0.0189474,0.343084
1714121774.412123764,2.29551,-1.4568,1.35551,1.961,-1.54393,0.131235,0,0.155556,0.0568421,0.343084
1714121774.562442857,2.29551,-1.4568,1.35551,1.99412,-1.53728,0.137733,0,0.155556,0.0189474,0.343084
1714121775.533043080,2.2568,-1.10449,2.92631,2.12686,-1.51432,0.181434,0,0.0888889,0.36,-0.2
1714121775.683335923,2.2568,-1.10449,2.92631,2.1389,-1.51004,0.214854,0,0.0888889,0.36,-0.2
1714121775.833634307,2.2568,-1.10449,2.92631,2.15015,-1.51043,0.250533,0,0.0666667,0.36,-0.2
1714121775.983919566,2.2568,-1.10449,2.92631,2.17205,-1.50302,0.283461,0,0.0666667,0.322105,-0.2
1714121776.134321202,2.2568,-1.10449,2.92631,2.18326,-1.50374,0.322401,0,0.0666667,0.284211,-0.2
1714121776.284608211,2.2568,-1.10449,2.92631,2.18537,-1.49345,0.353181,0,0.0666667,0.36,-0.2
1714121776.434906596,2.2568,-1.10449,2.92631,2.20343,-1.48966,0.407283,0,0.0666667,0.36,-0.2
1714121776.585182814,2.2568,-1.10449,2.92631,2.20866,-1.48596,0.446255,0,0.0888889,0.36,-0.2
1714121776.735484407,2.2568,-1.10449,2.92631,2.219,-1.48738,0.477854,0,0.0666667,0.36,-0.2
1714121776.885807000,2.2568,-1.10449,2.92631,2.23038,-1.47875,0.532189,0,0.0666667,0.36,-0.2
1714121777.036103343,2.2568,-1.10449,2.92631,2.23198,-1.46864,0.582086,0,0.0888889,0.36,-0.2
1714121777.186399103,2.2568,-1.10449,2.92631,2.24321,-1.45996,0.630077,0,0.0888889,0.36,-0.2
1714121777.336689322,2.2568,-1.10449,2.92631,2.2529,-1.46146,0.67248,0,0.0666667,0.36,-0.2
1714121777.486982165,2.2568,-1.10449,2.92631,2.26413,-1.45294,0.728447,0,0.0666667,0.36,-0.2
1714121777.637344133,2.2568,-1.10449,2.92631,2.27148,-1.44277,0.772266,0,0.0666667,0.36,-0.2
1714121777.787627060,2.2568,-1.10449,2.92631,2.28261,-1.43457,0.812912,0,0.0666667,0.322105,-0.2
1714121777.937934195,2.2568,-1.10449,2.92631,2.28256,-1.42861,0.862736,0,0.155556,0.36,-0.2
1714121778.088228205,2.2568,-1.10449,2.92631,2.29259,-1.42637,0.903967,0,0.177778,0.36,-0.2
1714121778.238535923,2.2568,-1.10449,2.92631,2.295,-1.40693,0.964892,0,0.155556,0.36,-0.2
1714121778.388897017,2.2568,-1.10449,2.92631,2.30601,-1.39899,1.01626,0,0.155556,0.36,-0.2
1714121778.539260445,2.2568,-1.10449,2.92631,2.31963,-1.37572,1.0835,0,0.133333,0.36,-0.2
1714121778.689554746,2.2568,-1.10449,2.92631,2.3288,-1.35675,1.13756,0,0.133333,0.284211,-0.2
1714121778.839851673,2.2568,-1.10449,2.92631,2.3355,-1.34314,1.1658,0,0.111111,0.322105,-0.2
1714121778.990173100,2.2568,-1.10449,2.92631,2.33911,-1.32342,1.2158,0,0.0666667,0.36,-0.2
1714121779.140470319,2.2568,-1.10449,2.92631,2.34127,-1.3134,1.25673,0,0.0888889,0.36,-0.2
1714121779.290761704,2.2568,-1.10449,2.92631,2.35505,-1.29552,1.31846,0,0.0888889,0.322105,-0.2
1714121779.441059798,2.2568,-1.10449,2.92631,2.35775,-1.28554,1.34179,0,0.0888889,0.36,-0.2
1714121779.591462309,2.2568,-1.10449,2.92631,2.36006,-1.27567,1.3945,0,0.0888889,0.36,-0.2
1714121780.449810597,1.95087,-1.07464,3.02449,2.36441,-1.20423,1.67785,0,0.0666667,0.36,0.9375
1714121781.310114234,1.65087,-1.07464,3.02449,2.3425,-1.14791,1.92797,0,0.0666667,0.322105,1
1714121782.289038111,1.35087,-1.07464,3.02449,2.31598,-1.09051,2.21036,0,0.0888889,0.36,1
1714121783.181392650,1.05087,-1.07464,3.02449,2.26537,-1.04818,2.5287,0,0.177778,0.36,1
1714121783.331715828,1.05087,-1.07464,3.02449,2.24809,-1.03399,2.58536,0,0.2,0.36,1
1714121783.482062340,1.05087,-1.07464,3.02449,2.2306,-1.02024,2.65317,0,0.2,0.36,1
1714121783.632473894,1.05087,-1.07464,3.02449,2.21091,-1.01574,2.68782,0,0.2,0.36,1
1714121783.782850156,1.05087,-1.07464,3.02449,2.18345,-0.999121,2.74855,0,0.2,0.36,1
1714121783.933151458,1.05087,-1.07464,3.02449,2.15813,-0.993374,2.79839,0,0.2,0.246316,1
1714121784.083436720,1.05087,-1.07464,3.02449,2.14368,-0.990145,2.83536,0,0.2,0.246316,1
1714121784.233733939,1.05087,-1.07464,3.02449,2.11391,-0.983215,2.87973,0,0.2,0.208421,1
1714121784.384035243,1.05087,-1.07464,3.02449,2.0845,-0.976199,2.91931,0,0.2,0.170526,1
1714121784.534335087,1.05087,-1.07464,3.02449,2.05503,-0.969342,2.97423,0,0.2,0.170526,1
1714121784.684617140,1.05087,-1.07464,3.02449,2.02835,-0.963143,3.00403,0,0.2,0.170526,1
1714121785.565384557,0.750866,-1.07464,3.02449,1.85399,-0.953253,3.12714,0,0.2,0.0189474,1
1714121785.715729902,0.750866,-1.07464,3.02449,1.83146,-0.947903,3.13585,0,0.2,0,1
1714121785.866032080,0.750866,-1.07464,3.02449,1.79947,-0.950584,-3.14018,0,0.2,0,1
1714121786.016450635,0.750866,-1.07464,3.02449,1.76764,-0.953558,-3.13431,0,0.2,0,1
1714121786.166853439,0.750866,-1.07464,3.02449,1.74209,-0.947448,-3.13163,0,0.2,0,1
1714121787.078418165,0.450866,-1.07464,3.02449,1.5689,-0.957767,-3.11075,0,0.2,-0.0189474,1
1714121787.228729094,0.450866,-1.07464,3.02449,1.54369,-0.951813,-3.10638,0,0.2,-0.0189474,1
1714121787.379014647,0.450866,-1.07464,3.02449,1.51796,-0.956174,-3.10556,0,0.2,-0.0189474,1
1714121787.529320035,0.450866,-1.07464,3.02449,1.48637,-0.959151,-3.10031,0,0.2,-0.0189474,1
1714121787.679613755,0.450866,-1.07464,3.02449,1.46698,-0.954648,-3.10022,0,0.2,-0.0189474,1
1714121787.829917392,0.450866,-1.07464,3.02449,1.4359,-0.957734,-3.10093,0,0.2,-0.0189474,1
1714121788.747574790,0.150866,-1.07464,3.02449,1.26156,-0.968197,-3.10836,0,0.2,-0.0189474,1
1714121788.897867344,0.150866,-1.07464,3.02449,1.23507,-0.96215,-3.10923,0,0.2,-0.0189474,1
1714121789.048258773,0.150866,-1.07464,3.02449,1.20635,-0.965639,-3.11194,0,0.2,-0.0189474,1
1714121789.198567078,0.150866,-1.07464,3.02449,1.18034,-0.969965,-3.11136,0,0.2,-0.0189474,1
1714121789.348872465,0.150866,-1.07464,3.02449,1.15029,-0.968877,-3.11506,0,0.2,-0.0189474,1
1714121789.499169394,0.150866,-1.07464,3.02449,1.12063,-0.966746,-3.11708,0,0.2,-0.0189474,1
1714121804.349861829,-0.449134,-1.07464,3.02449,0.0943318,-0.392221,-3.10449,0,0.2,0.36,1
1714121805.197460986,-0.749134,-1.07464,3.02449,-0.0345177,-0.413284,-2.88976,0,0.2,0.322105,1
1714121806.107623976,-1.04913,-1.07464,3.02449,-0.19269,-0.473481,-2.63127,0,0.2,0,1
1714121806.257986242,-1.04913,-1.07464,3.02449,-0.225212,-0.501512,-2.59404,0,0.2,0.0189474,1
1714121806.408336259,-1.04913,-1.07464,3.02449,-0.246101,-0.510217,-2.58468,0,0.2,0.0189474,1
1714121807.312777875,-1.34913,-1.07464,3.02449,-0.403974,-0.608609,-2.55181,0,0.2,-0.170526,1
1714121807.463161142,-1.34913,-1.07464,3.02449,-0.427564,-0.619363,-2.56082,0,0.2,-0.0947368,1
1714121807.613558992,-1.34913,-1.07464,3.02449,-0.438584,-0.628583,-2.5724,0,0.2,-0.132632,1
1714121807.764026552,-1.34913,-1.07464,3.02449,-0.470777,-0.646433,-2.59007,0,0.2,-0.132632,1
1714121808.646266049,-1.64913,-1.07464,3.02449,-0.629568,-0.738146,-2.66684,0,0.2,-0.0947368,1
1714121808.796576399,-1.64913,-1.07464,3.02449,-0.656521,-0.746571,-2.67864,0,0.2,-0.0947368,1
1714121808.946874207,-1.64913,-1.07464,3.02449,-0.671616,-0.755803,-2.68449,0,0.2,-0.132632,1
1714121809.097184557,-1.64913,-1.07464,3.02449,-0.703072,-0.773977,-2.69882,0,0.2,-0.132632,1
1714121810.059833353,-1.79913,-1.07464,3.02449,-0.881116,-0.841658,-2.78821,0,0.2,-0.0568421,1
1714121811.010689397,-1.91524,-1.09912,1.84639,-1.05999,-0.904351,-2.85538,0,0.2,-0.0947368,0.25
1714121811.161197791,-1.91524,-1.09912,1.84639,-1.08115,-0.913612,-2.86528,0,0.2,-0.0947368,0.25
1714121811.311689268,-1.91524,-1.09912,1.84639,-1.11186,-0.922511,-2.87846,0,0.2,-0.0189474,0.25
1714121811.462095869,-1.91524,-1.09912,1.84639,-1.14232,-0.921683,-2.88999,0,0.2,-0.0189474,0.25
1714121811.612481470,-1.91524,-1.09912,1.84639,-1.17288,-0.930688,-2.90491,0,0.2,-0.0189474,0.25
1714121811.762870571,-1.91524,-1.09912,1.84639,-1.19382,-0.940073,-2.91327,0,0.2,-0.0189474,0.25
1714121811.913249464,-1.91524,-1.09912,1.84639,-1.22455,-0.94865,-2.91715,0,0.2,-0.0568421,0.25
1714121812.063649065,-1.91524,-1.09912,1.84639,-1.25546,-0.957424,-2.92149,0,0.2,-0.0568421,0.25
1714121812.214138500,-1.91524,-1.09912,1.84639,-1.27562,-0.956383,-2.9275,0,0.2,-0.0189474,0.25
1714121812.364527893,-1.91524,-1.09912,1.84639,-1.3168,-0.970077,-2.93303,0,0.177778,-0.0568421,0.25
1714121812.514852244,-1.91524,-1.09912,1.84639,-1.33714,-0.974076,-2.93615,0,0.2,-0.0568421,0.25
1714121812.665166095,-1.91524,-1.09912,1.84639,-1.36475,-0.983498,-2.93967,0,0.2,-0.0568421,0.25
1714121812.815475279,-1.91524,-1.09912,1.84639,-1.39843,-0.992179,-2.94977,0,0.2,-0.0568421,0.25
1714121812.965775130,-1.91524,-1.09912,1.84639,-1.42417,-0.991829,-2.95861,0,0.2,-0.0189474,0.25
1714121813.116079064,-1.91524,-1.09912,1.84639,-1.44884,-1.0009,-2.96658,0,0.2,-0.0189474,0.25
1714121813.266345665,-1.91524,-1.09912,1.84639,-1.47947,-1.00989,-2.97314,0,0.2,-0.0568421,0.25
1714121813.416656307,-1.91524,-1.09912,1.84639,-1.51655,-1.00801,-2.97792,0,0.2,-0.0568421,0.25
1714121813.566963450,-1.91524,-1.09912,1.84639,-1.54022,-1.0172,-2.97836,0,0.2,-0.0568421,0.25
1714121813.717250176,-1.91524,-1.09912,1.84639,-1.57087,-1.02586,-2.97983,0,0.177778,-0.0568421,0.25
1714121813.867545360,-1.91524,-1.09912,1.84639,-1.601,-1.02499,-2.98974,0,0.177778,0.0568421,0.25
1714121814.017846377,-1.91524,-1.09912,1.84639,-1.6217,-1.03386,-2.99779,0,0.155556,0.0568421,0.25
1714121814.168152062,-1.91524,-1.09912,1.84639,-1.64209,-1.03293,-3.00547,0,0.155556,0.0947368,0.25
1714121814.318450746,-1.91524,-1.09912,1.84639,-1.67322,-1.0409,-3.00815,0,0.133333,0.0568421,0.25
1714121815.146210602,-1.94054,-1.06603,1.74821,-1.77731,-1.05337,-2.96809,0,0.0888889,-0.0947368,0.9375
1714121816.054652467,-2.04912,-0.984762,0.275592,-1.83149,-1.05807,-3.10087,0,0.111111,-0.284211,0.0625001
1714121816.204998986,-2.04912,-0.984762,0.275592,-1.85181,-1.05724,3.11301,0,0.0888889,-0.208421,0.0625001
1714121816.355319254,-2.04912,-0.984762,0.275592,-1.86257,-1.05685,3.06246,0,0.0888889,-0.208421,0.0625001
1714121816.505619397,-2.04912,-0.984762,0.275592,-1.87281,-1.05703,3.03183,0,0.0888889,-0.208421,0.0625001
1714121816.655919249,-2.04912,-0.984762,0.275592,-1.88317,-1.05728,3.00052,0,0.0888889,-0.246316,0.0625001
1714121816.806229600,-2.04912,-0.984762,0.275592,-1.89328,-1.05763,2.96523,0,0.0888889,-0.246316,0.0625001
1714121816.956535868,-2.04912,-0.984762,0.275592,-1.91335,-1.05808,2.92615,0,0.0666667,-0.284211,0.0625001
1714121817.106845345,-2.04912,-0.984762,0.275592,-1.92356,-1.0583,2.89559,0,0,-0.5,0.0625001
1714121817.257179614,-2.04912,-0.984762,0.275592,-1.93345,-1.04917,2.85408,0,0,-0.5,0.0625001
1714121817.407522341,-2.04912,-0.984762,0.275592,-1.93357,-1.0496,2.8142,0,0,-0.5,0.0625001
1714121817.557864484,-2.04912,-0.984762,0.275592,-1.93399,-1.04974,2.75743,0,0,-0.5,0.0625001
1714121817.708173961,-2.04912,-0.984762,0.275592,-1.94418,-1.04954,2.70213,0,0,-0.5,0.0625001
1714121817.858488396,-2.04912,-0.984762,0.275592,-1.94456,-1.0495,2.61798,0,0,-0.5,0.0625001
1714121818.008800206,-2.04912,-0.984762,0.275592,-1.94483,-1.04931,2.55939,0,0,-0.5,0.0625001
1714121818.159150517,-2.04912,-0.984762,0.275592,-1.94559,-1.04903,2.48711,0,0,-0.5,0.0625001
1714121818.309452119,-2.04912,-0.984762,0.275592,-1.94607,-1.04893,2.43767,0,0,-0.5,0.0625001
1714121818.459759554,-2.04912,-0.984762,0.275592,-1.94646,-1.04938,2.35121,0,0,-0.5,0.0625001
1714121818.610054448,-2.04912,-0.984762,0.275592,-1.9464,-1.03967,2.27438,0,0,-0.5,0.0625001
1714121818.760325424,-2.04912,-0.984762,0.275592,-1.95655,-1.03998,2.20615,0,0,-0.5,0.0625001
1714121818.910638110,-2.04912,-0.984762,0.275592,-1.9566,-1.04037,2.13232,0,0,-0.5,0.0625001
1714121819.060937378,-2.04912,-0.984762,0.275592,-1.95687,-1.0408,2.08965,0,0,-0.5,0.0625001
1714121819.211237814,-2.04912,-0.984762,0.275592,-1.95723,-1.0403,1.97471,0,0,-0.5,0.0625001
1714121819.361539416,-2.04912,-0.984762,0.275592,-1.95797,-1.03924,1.92516,0,0,-0.5,0.0625001
1714121819.511853268,-2.04912,-0.984762,0.275592,-1.95809,-1.03863,1.85689,0,0,-0.5,0.0625001
1714121819.662144953,-2.04912,-0.984762,0.275592,-1.95806,-1.03826,1.78124,0,0,-0.5,0.0625001
1714121819.812446556,-2.04912,-0.984762,0.275592,-1.95812,-1.03845,1.71621,0,0,-0.5,0.0625001
1714121819.962743199,-2.04912,-0.984762,0.275592,-1.95799,-1.03929,1.64728,0,0,-0.5,0.0625001
1714121820.113042468,-2.04912,-0.984762,0.275592,-1.95813,-1.03925,1.56258,0,0,-0.5,0.0625001
1714121820.263349612,-2.04912,-0.984762,0.275592,-1.95828,-1.03901,1.52209,0,0,-0.5,0.0625001
1714121820.413663465,-2.04912,-0.984762,0.275592,-1.95836,-1.03891,1.41989,0,0,-0.5,0.0625001
1714121820.563964484,-2.04912,-0.984762,0.275592,-1.95876,-1.03844,1.36576,0,0,-0.5,0.0625001
1714121820.714269294,-2.04912,-0.984762,0.275592,-1.95906,-1.03844,1.28589,0,0,-0.5,0.0625001
1714121820.864566230,-2.04912,-0.984762,0.275592,-1.95923,-1.03967,1.22762,0,0,-0.5,0.0625001
1714121821.014868707,-2.04912,-0.984762,0.275592,-1.95917,-1.04049,1.14317,0,0,-0.5,0.0625001
1714121821.165182560,-2.04912,-0.984762,0.275592,-1.95885,-1.04286,1.07138,0,0,-0.5,0.0625001
1714121821.315487954,-2.04912,-0.984762,0.275592,-1.95868,-1.04374,0.997699,0,0,-0.5,0.0625001
1714121821.465796557,-2.04912,-0.984762,0.275592,-1.95867,-1.0455,0.939814,0,0,-0.5,0.0625001
1714121821.616099326,-2.04912,-0.984762,0.275592,-1.95905,-1.04536,0.858305,0,0,-0.5,0.0625001
1714121821.766404720,-2.04912,-0.984762,0.275592,-1.95971,-1.04496,0.795775,0,0,-0.5,0.0625001
1714121821.916710406,-2.04912,-0.984762,0.275592,-1.95977,-1.04538,0.730973,0,0,-0.5,0.0625001
1714121822.067064509,-2.04912,-0.984762,0.275592,-1.95975,-1.04647,0.674576,0,0,-0.5,0.0625001
1714121822.217363778,-2.04912,-0.984762,0.275592,-1.95969,-1.04722,0.581392,0,0,-0.5,0.0625001
1714121822.367660714,-2.04912,-0.984762,0.275592,-1.95987,-1.04826,0.509933,0,0,-0.5,0.0625001
1714121822.517992359,-2.04912,-0.984762,0.275592,-1.95993,-1.04889,0.438946,0,0,0,0.0625001
1714121823.476840728,-1.80087,-0.875363,-0.117107,-1.94908,-1.05554,0.372749,0,0.133333,0.322105,0.75
1714121824.369097025,-1.50087,-0.875363,-0.117107,-1.88977,-1.03002,0.557863,0,0.2,-0.246316,1
1714121825.191803439,-1.20087,-0.875363,-0.117107,-1.77991,-0.964147,0.455973,0,0.177778,-0.246316,1
1714121825.999123157,-0.900866,-0.875363,-0.117107,-1.64716,-0.914,0.287606,0,0.2,-0.170526,1
1714121826.871402769,-0.600866,-0.875363,-0.117107,-1.47869,-0.87802,0.147705,0,0.2,-0.0947368,1
1714121827.713378577,-0.300866,-0.875363,-0.117107,-1.32667,-0.85771,0.055558,0,0.2,-0.0568421,1
1714121827.863745806,-0.300866,-0.875363,-0.117107,-1.3026,-0.858154,0.0415246,0,0.2,-0.0568421,1
1714121828.014043327,-0.300866,-0.875363,-0.117107,-1.27277,-0.858834,0.030885,0,0.2,-0.0568421,1
1714121828.908203061,-0.000865787,-0.875363,-0.117107,-1.11321,-0.855004,-0.0090353,0,0.2,-0.0189474,1
1714121829.058600332,-0.000865787,-0.875363,-0.117107,-1.066,-0.857157,-0.0121287,0,0.2,-0.0189474,1
1714121829.208903978,-0.000865787,-0.875363,-0.117107,-1.04291,-0.858342,-0.0138922,0,0.2,-0.0189474,1
1714121829.359257207,-0.000865787,-0.875363,-0.117107,-1.01688,-0.859862,-0.0168496,0,0.2,-0.0189474,1
1714121829.509566103,-0.000865787,-0.875363,-0.117107,-0.992636,-0.860858,-0.0192558,0,0.2,-0.0189474,1
1714121830.359856516,0.299134,-0.875363,-0.117107,-0.823642,-0.866618,-0.0291475,0,0.2,0,1
1714121830.510163663,0.299134,-0.875363,-0.117107,-0.793895,-0.8672,-0.030273,0,0.2,0,1
1714121830.660467600,0.299134,-0.875363,-0.117107,-0.76419,-0.868221,-0.0320767,0,0.2,0,1
1714121830.810775038,0.299134,-0.875363,-0.117107,-0.734404,-0.869187,-0.0329627,0,0.2,0,1
1714121830.961076350,0.299134,-0.875363,-0.117107,-0.704798,-0.869906,-0.0328742,0,0.2,0,1
1714121831.111380872,0.299134,-0.875363,-0.117107,-0.685035,-0.870427,-0.0318605,0,0.2,0,1
1714121832.001530455,0.599134,-0.875363,-0.117107,-0.506547,-0.875026,-0.0265097,0,0.2,0,1
1714121832.151963894,0.599134,-0.875363,-0.117107,-0.480777,-0.875948,-0.0272138,0,0.2,0,1
1714121832.302346291,0.599134,-0.875363,-0.117107,-0.456684,-0.87647,-0.0252133,0,0.2,0,1
1714121832.452734229,0.599134,-0.875363,-0.117107,-0.426639,-0.877092,-0.0248793,0,0.2,0,1
1714121832.603121585,0.599134,-0.875363,-0.117107,-0.396661,-0.877854,-0.0250085,0,0.2,0,1
1714121833.557623809,0.899134,-0.875363,-0.117107,-0.216812,-0.882249,-0.0284681,0,0.2,0.0189474,1
1714121833.707928331,0.899134,-0.875363,-0.117107,-0.187034,-0.882795,-0.0294017,0,0.2,0.0189474,1
1714121833.858222936,0.899134,-0.875363,-0.117107,-0.157616,-0.882981,-0.029526,0,0.2,0.0189474,1
1714121834.008543791,0.899134,-0.875363,-0.117107,-0.127835,-0.88361,-0.0317738,0,0.2,0.0189474,1
1714121834.158848604,0.899134,-0.875363,-0.117107,-0.098332,-0.883954,-0.0316696,0,0.2,0.0189474,1
1714121835.022205202,1.19913,-0.875363,-0.117107,0.0502221,-0.885899,-0.0215773,0,0.2,0.0189474,1
1714121835.172508849,1.19913,-0.875363,-0.117107,0.0803615,-0.88625,-0.0192394,0,0.2,0,1
1714121835.322811913,1.19913,-0.875363,-0.117107,0.116866,-0.877058,-0.0183008,0,0.2,0,1
1714121835.473126643,1.19913,-0.875363,-0.117107,0.141167,-0.877275,-0.0150023,0,0.2,0,1
1714121835.623416873,1.19913,-0.875363,-0.117107,0.171724,-0.877816,-0.0155812,0,0.2,0,1
1714121835.773817354,1.19913,-0.875363,-0.117107,0.191849,-0.87791,-0.0145431,0,0.2,0,1
1714121835.924212877,1.19913,-0.875363,-0.117107,0.231921,-0.878586,-0.0106658,0,0.2,0,1
1714121836.886029284,1.49913,-0.875363,-0.117107,0.412205,-0.879445,-0.0171898,0,0.2,0,1
1714121837.036417516,1.49913,-0.875363,-0.117107,0.447503,-0.879712,-0.0144639,0,0.2,0,1
1714121837.186679163,1.49913,-0.875363,-0.117107,0.472288,-0.880203,-0.01319,0,0.2,0,1
1714121837.337063894,1.49913,-0.875363,-0.117107,0.492423,-0.880564,-0.0128314,0,0.2,0,1
1714121837.487465542,1.49913,-0.875363,-0.117107,0.522657,-0.88062,-0.0116583,0,0.2,0,1
1714121838.365283083,1.79913,-0.875363,-0.117107,0.695412,-0.883032,-0.0157636,0,0.2,0,1
1714121838.515598106,1.79913,-0.875363,-0.117107,0.725992,-0.873551,-0.0160831,0,0.2,0,1
1714121838.665928295,1.79913,-0.875363,-0.117107,0.756771,-0.874036,-0.0146132,0,0.2,0,1
1714121838.816235735,1.79913,-0.875363,-0.117107,0.777139,-0.874354,-0.0133697,0,0.2,0,1
1714121838.966572632,1.79913,-0.875363,-0.117107,0.825201,-0.87444,-0.0125353,0,0.2,0,1
1714121853.878935338,2.29551,-0.806804,1.35551,1.68902,-1.47532,-0.0558758,0,0.2,0.36,0.0625001
1714121854.029246280,2.29551,-0.806804,1.35551,1.69972,-1.47563,-0.036598,0,0.155556,0.36,0.0625001
1714121854.179537972,2.29551,-0.806804,1.35551,1.72078,-1.46697,-0.0170281,0,0.2,0.36,0.0625001
1714121854.329841915,2.29551,-0.806804,1.35551,1.76105,-1.46995,0.0378032,0,0.177778,0.36,0.0625001
1714121854.480242983,2.29551,-0.806804,1.35551,1.78124,-1.47151,0.0831117,0,0.2,0.36,0.0625001
1714121854.630648134,2.29551,-0.806804,1.35551,1.80229,-1.46296,0.121555,0,0.2,0.36,0.0625001
1714121854.781135244,2.29551,-0.806804,1.35551,1.83222,-1.46536,0.16498,0,0.2,0.36,0.0625001
1714121854.931627896,2.29551,-0.806804,1.35551,1.8528,-1.45671,0.203817,0,0.177778,0.36,0.0625001
1714121855.082038590,2.29551,-0.806804,1.35551,1.88338,-1.44914,0.263322,0,0.2,0.36,0.0625001
1714121855.232426824,2.29551,-0.806804,1.35551,1.91138,-1.44093,0.317022,0,0.2,0.36,0.0625001
1714121855.382837809,2.29551,-0.806804,1.35551,1.93476,-1.43255,0.357315,0,0.2,0.36,0.0625001
1714121855.533140585,2.29551,-0.806804,1.35551,1.95582,-1.42352,0.407399,0,0.2,0.36,0.0625001
1714121855.683430527,2.29551,-0.806804,1.35551,1.9876,-1.40602,0.460258,0,0.2,0.36,0.0625001
1714121855.833737095,2.29551,-0.806804,1.35551,2.00862,-1.39743,0.499926,0,0.177778,0.36,0.0625001
1714121855.984033746,2.29551,-0.806804,1.35551,2.03069,-1.37942,0.546459,0,0.2,0.36,0.0625001
1714121856.134333313,2.29551,-0.806804,1.35551,2.05232,-1.3712,0.589085,0,0.177778,0.36,0.0625001
1714121856.284614506,2.29551,-0.806804,1.35551,2.0851,-1.34863,0.657163,0,0.2,0.322105,0.0625001
1714121856.434913782,2.29551,-0.806804,1.35551,2.10512,-1.32748,0.71237,0,0.2,0.36,0.0625001
1714121856.585217141,2.29551,-0.806804,1.35551,2.11909,-1.31608,0.747487,0,0.2,0.36,0.0625001
1714121856.735627543,2.29551,-0.806804,1.35551,2.14206,-1.29812,0.793562,0,0.177778,0.322105,0.0625001
1714121856.886030361,2.29551,-0.806804,1.35551,2.15453,-1.27922,0.837128,0,0.177778,0.36,0.0625001
1714121857.036434346,2.29551,-0.806804,1.35551,2.17758,-1.26155,0.897873,0,0.177778,0.36,0.0625001
1714121857.186837748,2.29551,-0.806804,1.35551,2.19027,-1.24277,0.939229,0,0.177778,0.36,0.0625001
1714121857.337228025,2.29551,-0.806804,1.35551,2.20392,-1.22393,0.983714,0,0.2,0.322105,0.0625001
1714121857.487541593,2.29551,-0.806804,1.35551,2.22678,-1.19604,1.05483,0,0.177778,0.322105,0.0625001
1714121857.637842036,2.29551,-0.806804,1.35551,2.2337,-1.1767,1.09643,0,0.177778,0.284211,0.0625001
1714121857.788133729,2.29551,-0.806804,1.35551,2.24616,-1.14779,1.16283,0,0.155556,0.284211,0.0625001
1714121857.938428338,2.29551,-0.806804,1.35551,2.25191,-1.12837,1.19874,0,0.155556,0.246316,0.0625001
1714121858.088733156,2.29551,-0.806804,1.35551,2.25268,-1.11831,1.22176,0,0.155556,0.246316,0.0625001
1714121858.239048182,2.29551,-0.806804,1.35551,2.266,-1.07946,1.28126,0,0.133333,0.170526,0.0625001
1714121858.389378667,2.29551,-0.806804,1.35551,2.27776,-1.06047,1.3161,0,0.133333,0.208421,0.0625001
1714121858.539698361,2.29551,-0.806804,1.35551,2.27872,-1.0504,1.34386,0,0.111111,0.170526,0.0625001
1714121858.690040512,2.29551,-0.806804,1.35551,2.28086,-1.03037,1.37196,0,0.111111,0.132632,0.0625001
1714121858.840344455,2.29551,-0.806804,1.35551,2.28434,-1.00028,1.41192,0,0.0888889,0.0947368,0.0625001
1714121858.990643440,2.29551,-0.806804,1.35551,2.28566,-0.990183,1.42942,0,0.0666667,0.0568421,0.0625001
1714121859.140968383,2.29551,-0.806804,1.35551,2.28814,-0.970091,1.45597,0,0.0888889,0.0568421,0.0625001
1714121859.291267951,2.29551,-0.806804,1.35551,2.28961,-0.960009,1.47329,0,0,0,0.0625001
1714121860.190655010,2.32536,-0.750866,1.45369,2.29474,-0.939636,1.48875,0,0.0888889,-0.0947368,0.9375
1714121861.064988884,2.2568,-0.40449,2.92631,2.30282,-0.889056,1.47894,0,0.2,0.132632,0.0624997
1714121861.215328703,2.2568,-0.40449,2.92631,2.30647,-0.859173,1.48284,0,0.2,0.132632,0.0624997
1714121861.365639063,2.2568,-0.40449,2.92631,2.30802,-0.839135,1.48955,0,0.2,0.132632,0.0624997
1714121861.515954673,2.2568,-0.40449,2.92631,2.31113,-0.80937,1.50481,0,0.2,0.132632,0.0624997
1714121861.666269117,2.2568,-0.40449,2.92631,2.31428,-0.782301,1.51821,0,0.177778,0.132632,0.0624997
1714121861.816570144,2.2568,-0.40449,2.92631,2.31578,-0.769582,1.52852,0,0.177778,0.132632,0.0624997
1714121861.966866796,2.2568,-0.40449,2.92631,2.31277,-0.73191,1.54746,0,0.155556,0.0947368,0.0624997
1714121862.117168990,2.2568,-0.40449,2.92631,2.31167,-0.719274,1.56066,0,0.155556,0.170526,0.0624997
1714121862.267474100,2.2568,-0.40449,2.92631,2.3149,-0.689278,1.57941,0,0.133333,0.170526,0.0624997
1714121862.417771919,2.2568,-0.40449,2.92631,2.31737,-0.669343,1.59393,0,0.133333,0.132632,0.0624997
1714121862.568074404,2.2568,-0.40449,2.92631,2.31054,-0.638215,1.62057,0,0.111111,0.132632,0.0624997
1714121862.718377181,2.2568,-0.40449,2.92631,2.31307,-0.618191,1.64095,0,0.111111,0.132632,0.0624997
1714121862.868644667,2.2568,-0.40449,2.92631,2.31453,-0.601138,1.66199,0,0.111111,0.0947368,0.0624997
1714121863.018948027,2.2568,-0.40449,2.92631,2.30553,-0.587045,1.67633,0,0.0888889,0.0947368,0.0624997
1714121863.169244388,2.2568,-0.40449,2.92631,2.30682,-0.567163,1.69714,0,0.0888889,0.0947368,0.0624997
1714121863.319557082,2.2568,-0.40449,2.92631,2.30746,-0.557276,1.70513,0,0,0.5,0.0624997
1714121863.469865984,2.2568,-0.40449,2.92631,2.29872,-0.536483,1.72832,0,0,0.5,0.0624997
1714121863.620157386,2.2568,-0.40449,2.92631,2.29933,-0.526649,1.74495,0,0,0.5,0.0624997
1714121863.770558748,2.2568,-0.40449,2.92631,2.29842,-0.526932,1.7717,0,0,0.5,0.0624997
1714121863.920961567,2.2568,-0.40449,2.92631,2.29329,-0.516235,1.81999,0,0,0.5,0.0624997
1714121864.071324720,2.2568,-0.40449,2.92631,2.28986,-0.505723,1.86115,0,0,0.5,0.0624997
1714121864.221590456,2.2568,-0.40449,2.92631,2.2896,-0.505731,1.91121,0,0,0.5,0.0624997
1714121864.371997359,2.2568,-0.40449,2.92631,2.28894,-0.505716,1.98826,0,0,0.5,0.0624997
1714121864.522506055,2.2568,-0.40449,2.92631,2.28984,-0.495815,2.0409,0,0,0.5,0.0624997
1714121864.672897499,2.2568,-0.40449,2.92631,2.28926,-0.495894,2.11513,0,0,0.5,0.0624997
1714121864.823267361,2.2568,-0.40449,2.92631,2.28895,-0.495926,2.16543,0,0,0.5,0.0624997
1714121864.973564596,2.2568,-0.40449,2.92631,2.28895,-0.496123,2.24227,0,0,0.5,0.0624997
1714121865.123862707,2.2568,-0.40449,2.92631,2.27944,-0.495131,2.32247,0,0,0.5,0.0624997
1714121865.274147402,2.2568,-0.40449,2.92631,2.28039,-0.495458,2.37638,0,0,0.5,0.0624997
1714121865.424444346,2.2568,-0.40449,2.92631,2.28076,-0.495554,2.45591,0,0,0.5,0.0624997
1714121865.574722332,2.2568,-0.40449,2.92631,2.28137,-0.495778,2.50364,0,0,0.5,0.0624997
1714121865.725026568,2.2568,-0.40449,2.92631,2.28165,-0.495881,2.5786,0,0,0.5,0.0624997
1714121865.875318554,2.2568,-0.40449,2.92631,2.28133,-0.496096,2.66799,0,0,0.5,0.0624997
1714121866.025623665,2.2568,-0.40449,2.92631,2.28082,-0.496335,2.72016,0,0,0,0.0624997
1714121866.914752155,1.95087,-0.374637,3.02449,2.26813,-0.495992,2.87181,0,0.155556,-0.0947368,0.9375
1714121867.769172639,1.65087,-0.374637,3.02449,2.16825,-0.467141,2.87823,0,0.2,0.0947368,1
1714121868.706492987,1.35087,-0.374637,3.02449,1.99883,-0.431107,2.92496,0,0.2,0.0947368,1
1714121869.617030263,1.05087,-0.374637,3.02449,1.83777,-0.403943,2.99852,0,0.2,0.0947368,1
1714121870.483748675,0.750866,-0.374637,3.02449,1.66042,-0.386134,3.07118,0,0.2,0.0189474,1
1714121871.428572790,0.450866,-0.374637,3.02449,1.48607,-0.369454,3.09971,0,0.2,0.0189474,1
1714121871.578853110,0.450866,-0.374637,3.02449,1.45615,-0.366939,3.10292,0,0.2,0.0189474,1
1714121871.729150347,0.450866,-0.374637,3.02449,1.42752,-0.374501,3.10372,0,0.2,0.0189474,1
1714121872.752525545,0.150866,-0.374637,3.02449,1.23532,-0.366784,3.10911,0,0.2,0.0189474,1
1714121872.902909991,0.150866,-0.374637,3.02449,1.19551,-0.362908,3.11082,0,0.2,0.0189474,1
1714121873.053212770,0.150866,-0.374637,3.02449,1.1755,-0.361247,3.11055,0,0.2,0.0189474,1
1714121873.203561341,0.150866,-0.374637,3.02449,1.13558,-0.357546,3.11308,0,0.2,0.0189474,1
1714121874.180240071,-0.149134,-0.374637,3.02449,0.952586,-0.360291,3.11671,0,0.2,0.0189474,1
1714121874.330536433,-0.149134,-0.374637,3.02449,0.916411,-0.356671,3.11765,0,0.2,0.0189474,1
1714121874.480827546,-0.149134,-0.374637,3.02449,0.885391,-0.353646,3.12137,0,0.2,0.0189474,1
1714121874.631132367,-0.149134,-0.374637,3.02449,0.87141,-0.362249,3.11994,0,0.2,0.0189474,1
1714121874.781414146,-0.149134,-0.374637,3.02449,0.831336,-0.358348,3.12168,0,0.2,0.0189474,1
1714121875.731762474,-0.449134,-0.374637,3.02449,0.649545,-0.360282,3.12927,0,0.2,0,1
1714121875.882144295,-0.449134,-0.374637,3.02449,0.619474,-0.357195,3.12995,0,0.2,0.0189474,1
1714121876.032533992,-0.449134,-0.374637,3.02449,0.58925,-0.354122,3.13141,0,0.2,0.0189474,1
1714121876.182880522,-0.449134,-0.374637,3.02449,0.569139,-0.352221,3.13269,0,0.2,0,1
1714121876.333188552,-0.449134,-0.374637,3.02449,0.532049,-0.358197,3.13438,0,0.2,0,1
1714121877.255679592,-0.749134,-0.374637,3.02449,0.354441,-0.360637,3.13859,0,0.2,0,1
1714121877.405986163,-0.749134,-0.374637,3.02449,0.324328,-0.357708,3.13975,0,0.2,0,1
1714121877.556285151,-0.749134,-0.374637,3.02449,0.303939,-0.355783,3.14098,0,0.2,0,1
1714121877.706594640,-0.749134,-0.374637,3.02449,0.273872,-0.352939,3.14075,0,0.2,0,1
1714121877.856909378,-0.749134,-0.374637,3.02449,0.242483,-0.359826,3.14141,0,0.2,0,1
1714121878.764615726,-1.04913,-0.374637,3.02449,0.0697179,-0.363997,-3.14085,0,0.2,0,1
1714121878.914920256,-1.04913,-0.374637,3.02449,0.0336275,-0.3605,3.1402,0,0.2,0,1
1714121879.065227703,-1.04913,-0.374637,3.02449,0.00924678,-0.358227,3.13956,0,0.2,0,1
1714121879.215538067,-1.04913,-0.374637,3.02449,-0.0188863,-0.362642,3.13983,0,0.2,0,1
1714121879.365843472,-1.04913,-0.374637,3.02449,-0.0520751,-0.362167,3.13973,0,0.2,0,1
1714121880.246355204,-1.34913,-0.374637,3.02449,-0.224687,-0.367029,3.14152,0,0.2,0,1
1714121880.396661193,-1.34913,-0.374637,3.02449,-0.244731,-0.365163,3.14056,0,0.2,0,1
1714121880.546953473,-1.34913,-0.374637,3.02449,-0.274957,-0.362516,-3.14027,0,0.2,-0.0189474,1
1714121880.697253045,-1.34913,-0.374637,3.02449,-0.30597,-0.36986,-3.14033,0,0.2,-0.0189474,1
1714121880.847553784,-1.34913,-0.374637,3.02449,-0.336195,-0.367203,-3.1409,0,0.2,0,1
1714121880.997850439,-1.34913,-0.374637,3.02449,-0.356372,-0.365433,3.14126,0,0.2,0,1
1714121881.958216723,-1.64913,-0.374637,3.02449,-0.556398,-0.366977,3.13945,0,0.2,0,1
1714121882.108649005,-1.64913,-0.374637,3.02449,-0.580486,-0.364693,3.139,0,0.2,-0.0189474,1
1714121882.259140787,-1.64913,-0.374637,3.02449,-0.601862,-0.373259,3.13603,0,0.2,0,1
1714121882.409523193,-1.64913,-0.374637,3.02449,-0.641855,-0.369279,3.13779,0,0.2,0,1
1714121882.559901516,-1.64913,-0.374637,3.02449,-0.667794,-0.366968,3.13614,0,0.2,0,1
1714121883.530838464,-1.79913,-0.374637,3.02449,-0.844338,-0.371296,3.13453,0,0.2,0,1
1714121884.426046226,-1.91524,-0.399124,1.84639,-1.02706,-0.37388,3.13491,0,0.2,-0.0189474,0.25
1714121884.576327715,-1.91524,-0.399124,1.84639,-1.06525,-0.370141,3.13381,0,0.2,0,0.25
1714121884.726699038,-1.91524,-0.399124,1.84639,-1.08754,-0.368109,3.13459,0,0.2,0,0.25
1714121884.877089029,-1.91524,-0.399124,1.84639,-1.11866,-0.375358,3.13399,0,0.2,0,0.25
1714121885.027472310,-1.91524,-0.399124,1.84639,-1.14453,-0.373103,3.13202,0,0.2,0,0.25
1714121885.177867259,-1.91524,-0.399124,1.84639,-1.1688,-0.371098,3.13166,0,0.2,0,0.25
1714121885.328243249,-1.91524,-0.399124,1.84639,-1.1987,-0.368416,3.13211,0,0.2,-0.0189474,0.25
1714121885.478723365,-1.91524,-0.399124,1.84639,-1.22965,-0.375997,3.13233,0,0.2,-0.0189474,0.25
1714121885.629032271,-1.91524,-0.399124,1.84639,-1.25952,-0.373261,3.13084,0,0.177778,0,0.25
1714121885.779312011,-1.91524,-0.399124,1.84639,-1.28938,-0.370719,3.13105,0,0.2,0,0.25
1714121885.929619459,-1.91524,-0.399124,1.84639,-1.32021,-0.37822,3.13306,0,0.2,-0.0189474,0.25
1714121886.079904157,-1.91524,-0.399124,1.84639,-1.35557,-0.375504,3.13144,0,0.2,0,0.25
1714121886.230198771,-1.91524,-0.399124,1.84639,-1.36985,-0.374365,3.12877,0,0.2,0,0.25
1714121886.380521970,-1.91524,-0.399124,1.84639,-1.39966,-0.372152,3.13,0,0.2,-0.0189474,0.25
1714121886.530828835,-1.91524,-0.399124,1.84639,-1.44054,-0.378844,3.12876,0,0.2,-0.0189474,0.25
1714121886.681114408,-1.91524,-0.399124,1.84639,-1.46043,-0.377199,3.12908,0,0.2,0,0.25
1714121886.831419522,-1.91524,-0.399124,1.84639,-1.49597,-0.373871,3.12505,0,0.2,0,0.25
1714121886.981770137,-1.91524,-0.399124,1.84639,-1.5204,-0.371462,3.12351,0,0.2,0,0.25
1714121887.132073794,-1.91524,-0.399124,1.84639,-1.54148,-0.379541,3.12257,0,0.177778,0,0.25
1714121887.282364909,-1.91524,-0.399124,1.84639,-1.58155,-0.375717,3.12161,0,0.177778,0.0568421,0.25
1714121887.432669149,-1.91524,-0.399124,1.84639,-1.60174,-0.374011,3.12343,0,0.155556,0.0568421,0.25
1714121887.582952680,-1.91524,-0.399124,1.84639,-1.62229,-0.372124,3.12526,0,0.133333,0.0568421,0.25
1714121887.733253420,-1.91524,-0.399124,1.84639,-1.65391,-0.378821,3.12632,0,0.133333,0.0568421,0.25
1714121887.883536660,-1.91524,-0.399124,1.84639,-1.67411,-0.376472,3.12923,0,0.111111,0.0568421,0.25
1714121888.808388480,-1.94054,-0.366034,1.74821,-1.78738,-0.374376,-3.11811,0,0.0888889,-0.0947368,0.9375
1714121889.654511009,-2.04912,-0.284762,0.275592,-1.82971,-0.371514,3.00825,0,0.111111,-0.170526,0.0625001
1714121889.804910041,-2.04912,-0.284762,0.275592,-1.83982,-0.370981,2.97543,0,0.111111,-0.132632,0.0625001
1714121889.955321032,-2.04912,-0.284762,0.275592,-1.8596,-0.370376,2.93003,0,0.111111,-0.246316,0.0625001
1714121890.105709565,-2.04912,-0.284762,0.275592,-1.86954,-0.370139,2.90481,0,0.111111,-0.208421,0.0625001
1714121890.256101306,-2.04912,-0.284762,0.275592,-1.87945,-0.369957,2.88604,0,0.0888889,-0.170526,0.0625001
1714121890.406500048,-2.04912,-0.284762,0.275592,-1.89913,-0.370162,2.84772,0,0.0888889,-0.170526,0.0625001
1714121890.556799330,-2.04912,-0.284762,0.275592,-1.90806,-0.361019,2.81644,0,0.0666667,-0.208421,0.0625001
1714121890.707105612,-2.04912,-0.284762,0.275592,-1.9179,-0.361148,2.78477,0,0,-0.5,0.0625001
1714121890.857411019,-2.04912,-0.284762,0.275592,-1.92758,-0.361644,2.76597,0,0,-0.5,0.0625001
1714121891.007799844,-2.04912,-0.284762,0.275592,-1.93682,-0.351602,2.74162,0,0,-0.5,0.0625001
1714121891.158170876,-2.04912,-0.284762,0.275592,-1.93685,-0.352642,2.68575,0,0,-0.5,0.0625001
1714121891.308559118,-2.04912,-0.284762,0.275592,-1.94682,-0.352265,2.62313,0,0,-0.5,0.0625001
1714121891.458870358,-2.04912,-0.284762,0.275592,-1.94685,-0.352757,2.56426,0,0,-0.5,0.0625001
1714121891.609171974,-2.04912,-0.284762,0.275592,-1.94681,-0.353042,2.47536,0,0,-0.5,0.0625001
1714121891.759476215,-2.04912,-0.284762,0.275592,-1.94695,-0.353604,2.42777,0,0,-0.5,0.0625001
1714121891.909772872,-2.04912,-0.284762,0.275592,-1.94706,-0.353628,2.35088,0,0,-0.5,0.0625001
1714121892.060192614,-2.04912,-0.284762,0.275592,-1.94723,-0.353771,2.26007,0,0,-0.5,0.0625001
1714121892.210511146,-2.04912,-0.284762,0.275592,-1.94741,-0.353953,2.20971,0,0,-0.5,0.0625001
1714121892.360825596,-2.04912,-0.284762,0.275592,-1.95732,-0.354038,2.12911,0,0,-0.5,0.0625001
1714121892.511141212,-2.04912,-0.284762,0.275592,-1.95718,-0.354502,2.08756,0,0,-0.5,0.0625001
1714121892.661460619,-2.04912,-0.284762,0.275592,-1.95653,-0.344838,2.0053,0,0,-0.5,0.0625001
1714121892.811764277,-2.04912,-0.284762,0.275592,-1.9565,-0.345102,1.92686,0,0,-0.5,0.0625001
1714121892.962064726,-2.04912,-0.284762,0.275592,-1.95648,-0.344897,1.86092,0,0,-0.5,0.0625001
1714121893.112369259,-2.04912,-0.284762,0.275592,-1.95669,-0.344819,1.77451,0,0,-0.5,0.0625001
1714121893.262664749,-2.04912,-0.284762,0.275592,-1.95696,-0.344907,1.71603,0,0,-0.5,0.0625001
1714121893.412961990,-2.04912,-0.284762,0.275592,-1.95722,-0.344645,1.64246,0,0,-0.5,0.0625001
1714121893.563292482,-2.04912,-0.284762,0.275592,-1.95736,-0.345145,1.56211,0,0,-0.5,0.0625001
1714121893.713654473,-2.04912,-0.284762,0.275592,-1.95734,-0.345599,1.51296,0,0,-0.5,0.0625001
1714121893.863962798,-2.04912,-0.284762,0.275592,-1.95754,-0.345745,1.43186,0,0,-0.5,0.0625001
1714121894.014270247,-2.04912,-0.284762,0.275592,-1.95771,-0.34571,1.38844,0,0,-0.5,0.0625001
1714121894.164607738,-2.04912,-0.284762,0.275592,-1.95808,-0.345768,1.2691,0,0,-0.5,0.0625001
1714121894.314904688,-2.04912,-0.284762,0.275592,-1.95845,-0.345765,1.21407,0,0,-0.5,0.0625001
1714121894.465327638,-2.04912,-0.284762,0.275592,-1.95906,-0.345824,1.13332,0,0,-0.5,0.0625001
1714121894.615735422,-2.04912,-0.284762,0.275592,-1.95919,-0.346352,1.0522,0,0,-0.5,0.0625001
1714121894.766137664,-2.04912,-0.284762,0.275592,-1.95915,-0.347765,1.00004,0,0,-0.5,0.0625001
1714121894.916536989,-2.04912,-0.284762,0.275592,-1.95904,-0.348568,0.930958,0,0,-0.5,0.0625001
1714121895.066940106,-2.04912,-0.284762,0.275592,-1.95909,-0.349836,0.850467,0,0,-0.5,0.0625001
1714121895.217354307,-2.04912,-0.284762,0.275592,-1.95922,-0.350069,0.774508,0,0,-0.5,0.0625001
1714121895.367761799,-2.04912,-0.284762,0.275592,-1.95971,-0.349862,0.710093,0,0,-0.5,0.0625001
1714121895.518150916,-2.04912,-0.284762,0.275592,-1.95994,-0.34969,0.639167,0,0,-0.5,0.0625001
1714121895.668472366,-2.04912,-0.284762,0.275592,-1.96036,-0.349801,0.563586,0,0,-0.5,0.0625001
1714121895.818772524,-2.04912,-0.284762,0.275592,-1.96048,-0.350171,0.49665,0,0,0,0.0625001
1714121896.616554742,-1.80087,-0.175363,-0.117107,-1.95161,-0.354234,0.35487,0,0.133333,0.322105,0.75
1714121897.532702006,-1.50087,-0.175363,-0.117107,-1.9001,-0.332163,0.586082,0,0.2,-0.284211,1

View File

@ -1,264 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1714122215.922715808,-2.09681,-1.59004,-0.0680199,0.0209809,0.00769389,-0.00710024,0,0.0666667,-0.36,0
1714122216.073097674,-2.09681,-1.59004,-0.0680199,0.0209685,0.00769466,-0.0339067,0,0.0666667,-0.36,0
1714122216.223413916,-2.09681,-1.59004,-0.0680199,0.0208904,0.00795017,-0.0619457,0,0.0666667,-0.36,0
1714122216.373707407,-2.09681,-1.59004,-0.0680199,0.0283544,0.00799144,-0.095298,0,0.0666667,-0.322105,0
1714122216.524047273,-2.09681,-1.59004,-0.0680199,0.0309518,0.00802755,-0.128322,0,0.0666667,-0.322105,0
1714122216.674350098,-2.09681,-1.59004,-0.0680199,0.0409998,0.00789754,-0.157406,0,0.0666667,-0.36,0
1714122216.824653505,-2.09681,-1.59004,-0.0680199,0.0512464,0.00771728,-0.196358,0,0.0666667,-0.36,0
1714122216.974947288,-2.09681,-1.59004,-0.0680199,0.0613353,0.00771143,-0.233825,0,0.0666667,-0.322105,0
1714122217.125278696,-2.09681,-1.59004,-0.0680199,0.0617901,0.00749138,-0.273085,0,0.0666667,-0.322105,0
1714122217.275566937,-2.09681,-1.59004,-0.0680199,0.0720776,-0.00234008,-0.315468,0,0.0666667,-0.284211,0
1714122217.425880846,-2.09681,-1.59004,-0.0680199,0.0826064,-0.0024692,-0.362576,0,0.0666667,-0.36,0
1714122217.576291004,-2.09681,-1.59004,-0.0680199,0.0929273,-0.00246354,-0.403191,0,0.0666667,-0.36,0
1714122217.726717788,-2.09681,-1.59004,-0.0680199,0.0935299,-0.0022605,-0.431309,0,0.0666667,-0.36,0
1714122217.877120947,-2.09681,-1.59004,-0.0680199,0.103846,-0.0118684,-0.475537,0,0.0666667,-0.36,0
1714122218.027542481,-2.09681,-1.59004,-0.0680199,0.114316,-0.0110592,-0.542321,0,0.0666667,-0.36,0
1714122218.177962848,-2.09681,-1.59004,-0.0680199,0.124633,-0.0207124,-0.613249,0,0.0666667,-0.36,0
1714122218.328402465,-2.09681,-1.59004,-0.0680199,0.125099,-0.0199799,-0.656023,0,0.0666667,-0.36,0
1714122218.478815541,-2.09681,-1.59004,-0.0680199,0.135269,-0.0295939,-0.713061,0,0.0666667,-0.36,0
1714122218.629224241,-2.09681,-1.59004,-0.0680199,0.145629,-0.0286846,-0.743922,0,0.0666667,-0.322105,0
1714122218.779416815,-2.09681,-1.59004,-0.0680199,0.145873,-0.0381661,-0.782193,0,0.0666667,-0.36,0
1714122218.929588681,-2.09681,-1.59004,-0.0680199,0.156376,-0.0466598,-0.851964,0,0.0666667,-0.36,0
1714122219.079767838,-2.09681,-1.59004,-0.0680199,0.162221,-0.0458541,-0.912566,0,0.0666667,-0.36,0
1714122219.229980828,-2.09681,-1.59004,-0.0680199,0.166886,-0.0544369,-0.949192,0,0.0666667,-0.36,0
1714122219.380147736,-2.09681,-1.59004,-0.0680199,0.166983,-0.0634267,-1.0069,0,0.0666667,-0.36,0
1714122219.530349935,-2.09681,-1.59004,-0.0680199,0.177589,-0.0636603,-1.05151,0,0.0666667,-0.36,0
1714122219.680736468,-2.09681,-1.59004,-0.0680199,0.177998,-0.0749116,-1.10515,0,0.0666667,-0.36,0
1714122219.831019460,-2.09681,-1.59004,-0.0680199,0.188622,-0.0849458,-1.17148,0,0.0666667,-0.36,0
1714122219.981409493,-2.09681,-1.59004,-0.0680199,0.188962,-0.0941378,-1.21165,0,0.0666667,-0.36,0
1714122220.131600026,-2.09681,-1.59004,-0.0680199,0.18974,-0.102818,-1.26499,0,0.0666667,-0.36,0
1714122220.281793183,-2.09681,-1.59004,-0.0680199,0.199994,-0.11214,-1.31438,0,0.111111,-0.36,0
1714122220.432156092,-2.09681,-1.59004,-0.0680199,0.200491,-0.121014,-1.38089,0,0.0666667,-0.36,0
1714122220.582501209,-2.09681,-1.59004,-0.0680199,0.200679,-0.130462,-1.4236,0,0.155556,-0.36,0
1714122220.732993618,-2.09681,-1.59004,-0.0680199,0.201417,-0.139585,-1.4517,0,0.177778,-0.36,0
1714122220.883334652,-2.09681,-1.59004,-0.0680199,0.201971,-0.149022,-1.51695,0,0.2,-0.36,0
1714122221.033682685,-2.09681,-1.59004,-0.0680199,0.202887,-0.167864,-1.56792,0,0.177778,-0.36,0
1714122221.184241887,-2.09681,-1.59004,-0.0680199,0.203445,-0.197155,-1.64117,0,0.2,-0.36,0
1714122221.334686172,-2.09681,-1.59004,-0.0680199,0.204041,-0.21533,-1.67784,0,0.2,-0.36,0
1714122221.485051705,-2.09681,-1.59004,-0.0680199,0.20441,-0.234527,-1.73282,0,0.177778,-0.36,0
1714122221.635443198,-2.09681,-1.59004,-0.0680199,0.195314,-0.263437,-1.7811,0,0.2,-0.36,0
1714122221.785797648,-2.09681,-1.59004,-0.0680199,0.190444,-0.283083,-1.8329,0,0.2,-0.36,0
1714122221.936136932,-2.09681,-1.59004,-0.0680199,0.186383,-0.30261,-1.86939,0,0.2,-0.36,0
1714122222.086466882,-2.09681,-1.59004,-0.0680199,0.177332,-0.332964,-1.92556,0,0.2,-0.36,0
1714122222.236879666,-2.09681,-1.59004,-0.0680199,0.168401,-0.353074,-1.96389,0,0.177778,-0.36,0
1714122222.387243450,-2.09681,-1.59004,-0.0680199,0.159238,-0.383566,-2.0271,0,0.2,-0.36,0
1714122222.537583609,-2.09681,-1.59004,-0.0680199,0.139779,-0.403771,-2.07726,0,0.177778,-0.36,0
1714122222.687924934,-2.09681,-1.59004,-0.0680199,0.130366,-0.429475,-2.12341,0,0.2,-0.36,0
1714122222.838255176,-2.09681,-1.59004,-0.0680199,0.110733,-0.453783,-2.17606,0,0.2,-0.36,0
1714122222.988529417,-2.09681,-1.59004,-0.0680199,0.101053,-0.473682,-2.22393,0,0.2,-0.36,0
1714122223.138842743,-2.09681,-1.59004,-0.0680199,0.0811568,-0.493563,-2.27229,0,0.2,-0.36,0
1714122223.289152860,-2.09681,-1.59004,-0.0680199,0.061606,-0.521447,-2.32928,0,0.2,-0.322105,0
1714122223.439466185,-2.09681,-1.59004,-0.0680199,0.0414555,-0.533343,-2.36279,0,0.2,-0.322105,0
1714122223.589769302,-2.09681,-1.59004,-0.0680199,0.03163,-0.543418,-2.39792,0,0.2,-0.246316,0
1714122223.740090210,-2.09681,-1.59004,-0.0680199,0.0124968,-0.57389,-2.45648,0,0.2,-0.170526,0
1714122223.890401202,-2.09681,-1.59004,-0.0680199,-0.0129145,-0.5845,-2.50312,0,0.2,-0.170526,0
1714122224.040722694,-2.09681,-1.59004,-0.0680199,-0.0368384,-0.605181,-2.54702,0,0.2,-0.132632,0
1714122224.191033103,-2.09681,-1.59004,-0.0680199,-0.0565898,-0.61563,-2.57799,0,0.2,-0.0947368,0
1714122224.341347011,-2.09681,-1.59004,-0.0680199,-0.0764591,-0.62603,-2.59685,0,0.2,-0.0947368,0
1714122224.491718379,-2.09681,-1.59004,-0.0680199,-0.106142,-0.646437,-2.63367,0,0.2,-0.0947368,0
1714122224.642038413,-2.09681,-1.59004,-0.0680199,-0.125985,-0.656722,-2.64376,0,0.2,-0.0189474,0
1714122224.792330446,-2.09681,-1.59004,-0.0680199,-0.155784,-0.66738,-2.65503,0,0.2,-0.0568421,0
1714122224.942653980,-2.09681,-1.59004,-0.0680199,-0.172811,-0.685751,-2.65875,0,0.2,-0.0568421,0
1714122225.092980139,-2.09681,-1.59004,-0.0680199,-0.200742,-0.698937,-2.66756,0,0.2,-0.0568421,0
1714122225.243298422,-2.09681,-1.59004,-0.0680199,-0.224185,-0.709571,-2.67644,0,0.2,-0.0189474,0
1714122225.393609706,-2.09681,-1.59004,-0.0680199,-0.251017,-0.720343,-2.68552,0,0.2,-0.0189474,0
1714122225.543940823,-2.09681,-1.59004,-0.0680199,-0.273324,-0.730898,-2.69316,0,0.2,-0.0189474,0
1714122225.694274274,-2.09681,-1.59004,-0.0680199,-0.293049,-0.741308,-2.69852,0,0.2,-0.0568421,0
1714122225.844691433,-2.09681,-1.59004,-0.0680199,-0.312676,-0.751966,-2.70317,0,0.2,-0.0568421,0
1714122225.995112385,-2.09681,-1.59004,-0.0680199,-0.352353,-0.762944,-2.70743,0,0.2,0,0
1714122226.145360668,-2.09681,-1.59004,-0.0680199,-0.37724,-0.783574,-2.71361,0,0.2,-0.0189474,0
1714122226.295813703,-2.09681,-1.59004,-0.0680199,-0.401537,-0.794052,-2.71644,0,0.2,-0.0189474,0
1714122226.446244279,-2.09681,-1.59004,-0.0680199,-0.421204,-0.804875,-2.72063,0,0.2,-0.0189474,0
1714122226.596660272,-2.09681,-1.59004,-0.0680199,-0.450784,-0.815623,-2.72455,0,0.2,0.0189474,0
1714122226.747062848,-2.09681,-1.59004,-0.0680199,-0.470676,-0.816028,-2.72648,0,0.2,0,0
1714122226.897480008,-2.09681,-1.59004,-0.0680199,-0.500208,-0.836744,-2.72704,0,0.2,-0.0189474,0
1714122227.047908834,-2.09681,-1.59004,-0.0680199,-0.519891,-0.847216,-2.72847,0,0.2,-0.0189474,0
1714122227.198325411,-2.09681,-1.59004,-0.0680199,-0.545195,-0.858006,-2.7294,0,0.2,0.0189474,0
1714122227.348741696,-2.09681,-1.59004,-0.0680199,-0.569357,-0.86862,-2.73013,0,0.2,0.0189474,0
1714122227.499053271,-2.09681,-1.59004,-0.0680199,-0.599095,-0.879465,-2.73088,0,0.2,0,0
1714122227.649391680,-2.09681,-1.59004,-0.0680199,-0.618866,-0.889901,-2.73209,0,0.2,-0.0189474,0
1714122227.799692464,-2.09681,-1.59004,-0.0680199,-0.64872,-0.900602,-2.7311,0,0.2,0,0
1714122227.950013081,-2.09681,-1.59004,-0.0680199,-0.668575,-0.911306,-2.73135,0,0.2,0.0189474,0
1714122228.100332240,-2.09681,-1.59004,-0.0680199,-0.688293,-0.921887,-2.73007,0,0.2,0,0
1714122228.250713817,-2.09681,-1.59004,-0.0680199,-0.717956,-0.932873,-2.73035,0,0.2,0,0
1714122228.401022767,-2.09681,-1.59004,-0.0680199,-0.747603,-0.943727,-2.72974,0,0.2,0.0568421,0
1714122228.551331718,-2.09681,-1.59004,-0.0680199,-0.777174,-0.954366,-2.72926,0,0.2,0.0189474,0
1714122228.701687919,-2.09681,-1.59004,-0.0680199,-0.804131,-0.965062,-2.72849,0,0.2,0,0
1714122228.852067162,-2.09681,-1.59004,-0.0680199,-0.826464,-0.975641,-2.72576,0,0.2,0,0
1714122229.002412279,-2.09681,-1.59004,-0.0680199,-0.846139,-0.986262,-2.7227,0,0.2,-0.0189474,0
1714122229.152853065,-2.09681,-1.59004,-0.0680199,-0.865958,-0.996645,-2.72131,0,0.2,0.0568421,0
1714122229.303126432,-2.09681,-1.59004,-0.0680199,-0.915445,-1.01788,-2.72378,0,0.2,0,0
1714122229.453460758,-2.09681,-1.59004,-0.0680199,-0.935456,-1.01859,-2.72268,0,0.2,0,0
1714122229.603772333,-2.09681,-1.59004,-0.0680199,-0.95525,-1.02899,-2.72247,0,0.2,-0.0189474,0
1714122229.754101993,-2.09681,-1.59004,-0.0680199,-0.984715,-1.04973,-2.72275,0,0.177778,-0.0189474,0
1714122229.904614237,-2.09681,-1.59004,-0.0680199,-1.01439,-1.0606,-2.7215,0,0.2,0.0189474,0
1714122230.055015938,-2.09681,-1.59004,-0.0680199,-1.03433,-1.06144,-2.72,0,0.2,0,0
1714122230.205328389,-2.09681,-1.59004,-0.0680199,-1.06117,-1.0797,-2.72006,0,0.2,-0.0189474,0
1714122230.355644631,-2.09681,-1.59004,-0.0680199,-1.0834,-1.09309,-2.72328,0,0.2,-0.0189474,0
1714122230.505960874,-2.09681,-1.59004,-0.0680199,-1.1031,-1.10372,-2.72582,0,0.2,0.0189474,0
1714122230.656275658,-2.09681,-1.59004,-0.0680199,-1.13283,-1.11452,-2.7273,0,0.2,0.0189474,0
1714122230.806584901,-2.09681,-1.59004,-0.0680199,-1.15254,-1.12531,-2.72928,0,0.2,0,0
1714122230.956968519,-2.09681,-1.59004,-0.0680199,-1.18199,-1.13642,-2.72701,0,0.2,0.0568421,0
1714122231.107380137,-2.09681,-1.59004,-0.0680199,-1.20918,-1.14726,-2.72255,0,0.2,0.0568421,0
1714122231.257714463,-2.09681,-1.59004,-0.0680199,-1.23064,-1.15888,-2.7216,0,0.2,0,0
1714122231.408037414,-2.09681,-1.59004,-0.0680199,-1.25008,-1.1701,-2.72008,0,0.2,-0.0189474,0
1714122231.558377282,-2.09681,-1.59004,-0.0680199,-1.27946,-1.18152,-2.71612,0,0.2,0.0568421,0
1714122231.708694400,-2.09681,-1.59004,-0.0680199,-1.30891,-1.1929,-2.71588,0,0.2,0.0568421,0
1714122231.859013267,-2.09681,-1.59004,-0.0680199,-1.3285,-1.20373,-2.71537,0,0.2,0,0
1714122232.009333010,-2.09681,-1.59004,-0.0680199,-1.35808,-1.21476,-2.70938,0,0.2,-0.0189474,0
1714122232.159652461,-2.09681,-1.59004,-0.0680199,-1.38756,-1.22574,-2.70369,0,0.2,0.0189474,0
1714122232.309969287,-2.09681,-1.59004,-0.0680199,-1.40729,-1.23633,-2.7022,0,0.2,0.0189474,0
1714122232.460280863,-2.09681,-1.59004,-0.0680199,-1.42692,-1.24733,-2.70121,0,0.2,0,0
1714122232.610644065,-2.09681,-1.59004,-0.0680199,-1.4562,-1.2683,-2.69819,0,0.2,-0.0189474,0
1714122232.761046350,-2.09681,-1.59004,-0.0680199,-1.47541,-1.27959,-2.69577,0,0.177778,0,0
1714122232.911385051,-2.09681,-1.59004,-0.0680199,-1.50463,-1.29151,-2.69618,0,0.2,0,0
1714122233.062820427,-2.09681,-1.59004,-0.0680199,-1.53021,-1.30469,-2.69978,0,0.2,-0.0568421,0
1714122233.213217463,-2.09681,-1.59004,-0.0680199,-1.56185,-1.31729,-2.69947,0,0.2,-0.0568421,0
1714122233.363529039,-2.09681,-1.59004,-0.0680199,-1.57894,-1.32832,-2.70143,0,0.177778,-0.0568421,0
1714122233.513846448,-2.09681,-1.59004,-0.0680199,-1.61089,-1.33956,-2.70412,0,0.2,-0.0189474,0
1714122233.664162691,-2.09681,-1.59004,-0.0680199,-1.63067,-1.35082,-2.70651,0,0.2,-0.0189474,0
1714122233.814494392,-2.09681,-1.59004,-0.0680199,-1.65996,-1.37045,-2.71535,0,0.2,-0.0568421,0
1714122233.964822885,-2.09681,-1.59004,-0.0680199,-1.67975,-1.37878,-2.71619,0,0.2,0.0189474,0
1714122234.115172962,-2.09681,-1.59004,-0.0680199,-1.70936,-1.39404,-2.71539,0,0.2,0,0
1714122234.265489205,-2.09681,-1.59004,-0.0680199,-1.73464,-1.40076,-2.71394,0,0.177778,0,0
1714122234.415794364,-2.09681,-1.59004,-0.0680199,-1.75861,-1.41642,-2.71645,0,0.177778,0,0
1714122234.566100399,-2.09681,-1.59004,-0.0680199,-1.7883,-1.42767,-2.72016,0,0.155556,0.0189474,0
1714122234.716429183,-2.09681,-1.59004,-0.0680199,-1.80809,-1.43833,-2.72079,0,0.155556,0.0189474,0
1714122234.866753301,-2.09681,-1.59004,-0.0680199,-1.82805,-1.43899,-2.72201,0,0.133333,0.0189474,0
1714122235.017134295,-2.09681,-1.59004,-0.0680199,-1.84771,-1.44967,-2.72003,0,0.133333,0.0189474,0
1714122235.167566914,-2.09681,-1.59004,-0.0680199,-1.85725,-1.46045,-2.71948,0,0.111111,0.0189474,0
1714122235.317919032,-2.09681,-1.59004,-0.0680199,-1.88535,-1.4742,-2.7122,0,0.111111,0.0189474,0
1714122235.468325109,-2.09681,-1.59004,-0.0680199,-1.90413,-1.48658,-2.7107,0,0.111111,0,0
1714122235.618680144,-2.09681,-1.59004,-0.0680199,-1.91328,-1.48855,-2.71359,0,0.0888889,0.0189474,0
1714122235.768994054,-2.09681,-1.59004,-0.0680199,-1.93158,-1.50217,-2.71359,0,0.0888889,-0.0189474,0
1714122235.919298338,-2.09681,-1.59004,-0.0680199,-1.94739,-1.5121,-2.71219,0,0.0888889,-0.0189474,0
1714122236.069606706,-2.09681,-1.59004,-0.0680199,-1.96265,-1.51139,-2.71112,0,0.0666667,0,0
1714122236.220047784,-2.09681,-1.59004,-0.0680199,-1.97323,-1.52063,-2.71087,0,0,0.5,0
1714122236.370553903,-2.09681,-1.59004,-0.0680199,-1.98442,-1.51906,-2.70843,0,0,0.5,0
1714122236.520950355,-2.09681,-1.59004,-0.0680199,-1.99499,-1.52832,-2.69897,0,0,0.5,0
1714122236.671387932,-2.09681,-1.59004,-0.0680199,-1.99604,-1.52726,-2.67112,0,0,0.5,0
1714122236.821877135,-2.09681,-1.59004,-0.0680199,-2.00675,-1.52623,-2.63928,0,0,0.5,0
1714122236.972277962,-2.09681,-1.59004,-0.0680199,-2.01697,-1.52624,-2.59944,0,0,0.5,0
1714122237.122614914,-2.09681,-1.59004,-0.0680199,-2.01728,-1.53611,-2.56796,0,0,0.5,0
1714122237.273106159,-2.09681,-1.59004,-0.0680199,-2.01777,-1.53501,-2.51762,0,0,0.5,0
1714122237.423421235,-2.09681,-1.59004,-0.0680199,-2.0183,-1.53379,-2.4467,0,0,0.5,0
1714122237.573729603,-2.09681,-1.59004,-0.0680199,-2.01856,-1.53264,-2.3631,0,0,0.5,0
1714122237.724049055,-2.09681,-1.59004,-0.0680199,-2.01911,-1.53187,-2.30508,0,0,0.5,0
1714122237.874351298,-2.09681,-1.59004,-0.0680199,-2.01911,-1.53185,-2.25365,0,0,0.5,0
1714122238.024674833,-2.09681,-1.59004,-0.0680199,-2.02908,-1.53202,-2.17273,0,0,0.5,0
1714122238.174993118,-2.09681,-1.59004,-0.0680199,-2.02917,-1.53235,-2.08656,0,0,0.5,0
1714122238.325321319,-2.09681,-1.59004,-0.0680199,-2.02958,-1.53309,-2.0352,0,0,0.5,0
1714122238.475618312,-2.09681,-1.59004,-0.0680199,-2.02972,-1.53327,-1.96454,0,0,0.5,0
1714122238.625922014,-2.09681,-1.59004,-0.0680199,-2.02991,-1.53409,-1.89987,0,0,0.5,0
1714122238.776186632,-2.09681,-1.59004,-0.0680199,-2.03035,-1.53375,-1.83636,0,0,0.5,0
1714122238.926492083,-2.09681,-1.59004,-0.0680199,-2.03042,-1.53419,-1.7648,0,0,0.5,0
1714122239.076786743,-2.09681,-1.59004,-0.0680199,-2.03031,-1.53447,-1.68611,0,0,0.5,0
1714122239.227098903,-2.09681,-1.59004,-0.0680199,-2.03008,-1.53492,-1.61241,0,0,0.5,0
1714122239.377464730,-2.09681,-1.59004,-0.0680199,-2.02995,-1.53516,-1.53629,0,0,0.5,0
1714122239.527762307,-2.09681,-1.59004,-0.0680199,-2.02989,-1.5361,-1.49365,0,0,0.5,0
1714122239.678063967,-2.09681,-1.59004,-0.0680199,-2.02974,-1.53681,-1.38422,0,0,0.5,0
1714122239.828489294,-2.09681,-1.59004,-0.0680199,-2.02992,-1.53761,-1.31602,0,0,0.5,0
1714122239.978922205,-2.09681,-1.59004,-0.0680199,-2.0298,-1.53808,-1.25312,0,0,0.5,0
1714122240.129346074,-2.09681,-1.59004,-0.0680199,-2.02964,-1.53897,-1.1885,0,0,0.5,0
1714122240.279760610,-2.09681,-1.59004,-0.0680199,-2.02964,-1.53939,-1.11304,0,0,0.5,0
1714122240.430267897,-2.09681,-1.59004,-0.0680199,-2.02967,-1.54004,-1.04083,0,0,0.5,0
1714122240.580682433,-2.09681,-1.59004,-0.0680199,-2.0296,-1.54027,-0.982615,0,0,0.5,0
1714122240.731022593,-2.09681,-1.59004,-0.0680199,-2.02945,-1.5407,-0.926404,0,0,0.5,0
1714122240.881439754,-2.09681,-1.59004,-0.0680199,-2.02921,-1.54212,-0.824171,0,0,0.5,0
1714122241.031774664,-2.09681,-1.59004,-0.0680199,-2.02909,-1.54258,-0.761955,0,0,0.5,0
1714122241.182073699,-2.09681,-1.59004,-0.0680199,-2.02883,-1.54322,-0.693701,0,0,0.5,0
1714122241.332385276,-2.09681,-1.59004,-0.0680199,-2.02872,-1.54351,-0.614113,0,0,0.5,0
1714122241.482690436,-2.09681,-1.59004,-0.0680199,-2.02863,-1.54347,-0.541939,0,0,0.5,0
1714122241.633015722,-2.09681,-1.59004,-0.0680199,-2.02842,-1.54377,-0.49226,0,0,0.5,0
1714122241.783315632,-2.09681,-1.59004,-0.0680199,-2.02828,-1.54425,-0.398062,0,0,0.5,0
1714122241.933637417,-2.09681,-1.59004,-0.0680199,-2.02811,-1.54495,-0.319719,0,0,0.5,0
1714122242.083938494,-2.09681,-1.59004,-0.0680199,-2.02806,-1.5453,-0.249505,0,0,0,0
1714122257.001989957,-1.50087,-1.57536,-0.117107,-2.21268,-2.76991,-1.53055,0,0,0,0.96875
1714122257.152417911,-1.50087,-1.57536,-0.117107,-2.2126,-2.76516,-1.53055,0,0,0,0.96875
1714122257.302833907,-1.50087,-1.57536,-0.117107,-2.21254,-2.76287,-1.53065,0,0,0,0.96875
1714122257.453272945,-1.50087,-1.57536,-0.117107,-2.21232,-2.75809,-1.53069,0,0,0,0.96875
1714122257.603588606,-1.50087,-1.57536,-0.117107,-2.21225,-2.75605,-1.53072,0,0,0,0.96875
1714122257.753922351,-1.50087,-1.57536,-0.117107,-2.21199,-2.75181,-1.53076,0,0,0,0.96875
1714122257.904254930,-1.50087,-1.57536,-0.117107,-2.21188,-2.74959,-1.53079,0,0,0,0.96875
1714122258.054677634,-1.50087,-1.57536,-0.117107,-2.21175,-2.74506,-1.53082,0,0,0,0.96875
1714122258.205053963,-1.50087,-1.57536,-0.117107,-2.21166,-2.74031,-1.53091,0,0,0,0.96875
1714122258.355457417,-1.50087,-1.57536,-0.117107,-2.2116,-2.73815,-1.53089,0,0,0,0.96875
1714122258.505871954,-1.50087,-1.57536,-0.117107,-2.21145,-2.73619,-1.5309,0,0,0,0.96875
1714122258.656286492,-1.50087,-1.57536,-0.117107,-2.21124,-2.73193,-1.53097,0,0,0,0.96875
1714122258.806682946,-1.50087,-1.57536,-0.117107,-2.2112,-2.72942,-1.53095,0,0,0,0.96875
1714122258.957109733,-1.50087,-1.57536,-0.117107,-2.21099,-2.72525,-1.53099,0,0,0,0.96875
1714122259.107619938,-1.50087,-1.57536,-0.117107,-2.21092,-2.72259,-1.53095,0,0,0,0.96875
1714122259.258142976,-1.50087,-1.57536,-0.117107,-2.21066,-2.71832,-1.53093,0,0,0,0.96875
1714122259.408575306,-1.50087,-1.57536,-0.117107,-2.21067,-2.7162,-1.53092,0,0,0,0.96875
1714122259.558989552,-1.50087,-1.57536,-0.117107,-2.21054,-2.71227,-1.53088,0,0,0,0.96875
1714122259.709392714,-1.50087,-1.57536,-0.117107,-2.21036,-2.70805,-1.5309,0,0,0,0.96875
1714122259.859809585,-1.50087,-1.57536,-0.117107,-2.21023,-2.70591,-1.53091,0,0,0,0.96875
1714122260.010220331,-1.50087,-1.57536,-0.117107,-2.21012,-2.70417,-1.531,0,0,0,0.96875
1714122260.160629910,-1.50087,-1.57536,-0.117107,-2.20999,-2.70014,-1.53107,0,0,0,0.96875
1714122260.311137198,-1.50087,-1.57536,-0.117107,-2.20988,-2.69808,-1.53105,0,0,0,0.96875
1714122260.461534527,-1.50087,-1.57536,-0.117107,-2.20972,-2.69451,-1.53103,0,0,0,0.96875
1714122260.611828606,-1.50087,-1.57536,-0.117107,-2.20964,-2.69183,-1.53104,0,0,0,0.96875
1714122260.762263560,-1.50087,-1.57536,-0.117107,-2.20939,-2.68722,-1.53109,0,0,0,0.96875
1714122260.912676348,-1.50087,-1.57536,-0.117107,-2.20924,-2.68258,-1.53108,0,0,0,0.96875
1714122261.063078927,-1.50087,-1.57536,-0.117107,-2.20915,-2.68047,-1.53113,0,0,0,0.96875
1714122261.213361339,-1.50087,-1.57536,-0.117107,-2.20903,-2.67669,-1.53116,0,0,0,0.96875
1714122261.363676417,-1.50087,-1.57536,-0.117107,-2.20888,-2.67448,-1.53117,0,0,0,0.96875
1714122261.513994996,-1.50087,-1.57536,-0.117107,-2.2087,-2.67067,-1.53119,0,0,0,0.96875
1714122261.664327283,-1.50087,-1.57536,-0.117107,-2.2086,-2.6686,-1.53116,0,0,0,0.96875
1714122261.814747362,-1.50087,-1.57536,-0.117107,-2.20837,-2.66635,-1.53115,0,0,0,0.96875
1714122261.965177067,-1.50087,-1.57536,-0.117107,-2.20822,-2.66523,-1.53125,0,0,0,0.96875
1714122262.115591605,-1.50087,-1.57536,-0.117107,-2.20809,-2.66333,-1.53123,0,0,0,0.96875
1714122262.265997392,-1.50087,-1.57536,-0.117107,-2.20786,-2.66022,-1.53126,0,0,0,0.96875
1714122262.416423597,-1.50087,-1.57536,-0.117107,-2.20789,-2.65637,-1.53132,0,0,0,0.96875
1714122262.566823843,-1.50087,-1.57536,-0.117107,-2.20781,-2.65485,-1.53141,0,0,0,0.96875
1714122262.717224964,-1.50087,-1.57536,-0.117107,-2.20765,-2.65091,-1.53139,0,0,0,0.96875
1714122262.867536251,-1.50087,-1.57536,-0.117107,-2.2076,-2.64886,-1.53134,0,0,0,0.96875
1714122263.017854538,-1.50087,-1.57536,-0.117107,-2.20751,-2.64667,-1.53138,0,0,0,0.96875
1714122263.168165533,-1.50087,-1.57536,-0.117107,-2.2074,-2.64549,-1.53135,0,0,0,0.96875
1714122263.318496946,-1.50087,-1.57536,-0.117107,-2.20733,-2.64384,-1.53138,0,0,0,0.96875
1714122263.468810566,-1.50087,-1.57536,-0.117107,-2.20727,-2.64131,-1.53139,0,0,0,0.96875
1714122263.619120978,-1.50087,-1.57536,-0.117107,-2.20702,-2.63872,-1.53142,0,0,0,0.96875
1714122263.769474557,-1.50087,-1.57536,-0.117107,-2.20688,-2.63761,-1.53146,0,0,0,0.96875
1714122263.919792261,-1.50087,-1.57536,-0.117107,-2.20668,-2.63561,-1.57043,0,0,0,0.96875
1714122264.070107340,-1.50087,-1.57536,-0.117107,-2.20655,-2.63368,-1.59759,0,0,0,0.96875
1714122264.220447794,-1.50087,-1.57536,-0.117107,-2.20678,-2.62778,-1.62167,0,0,0,0.96875
1714122264.370775998,-1.50087,-1.57536,-0.117107,-2.20713,-2.62477,-1.63785,0,0,0,0.96875
1714122264.521067451,-1.50087,-1.57536,-0.117107,-2.20714,-2.61861,-1.65412,0,0,0,0.96875
1714122264.671412864,-1.50087,-1.57536,-0.117107,-2.20687,-2.61527,-1.66426,0,0,0,0.96875
1714122264.821703443,-1.50087,-1.57536,-0.117107,-2.20528,-2.60981,-1.61507,0,0,0,0.96875
1714122264.972026980,-1.50087,-1.57536,-0.117107,-2.20444,-2.60651,-1.45086,0,0,0,0.96875
1714122265.122285767,-1.50087,-1.57536,-0.117107,-2.20338,-2.60242,-1.2918,0,0,0,0.96875
1714122265.272602887,-1.50087,-1.57536,-0.117107,-2.20082,-2.59476,-1.0501,0,0,0,0.96875
1714122265.422926133,-1.50087,-1.57536,-0.117107,-2.19726,-2.58597,-0.918121,0,0,0,0.96875
1714122265.573270962,-1.50087,-1.57536,-0.117107,-2.19506,-2.58148,-0.877602,0,0,0,0.96875
1714122265.723632708,-1.50087,-1.57536,-0.117107,-2.19008,-2.57141,-0.945104,0,0,0,0.96875
1714122265.873922412,-1.50087,-1.57536,-0.117107,-2.18733,-2.56817,-1.13058,0,0,0,0.96875
1714122266.024239824,-1.50087,-1.57536,-0.117107,-2.18142,-2.55968,-1.32228,0,0,0,0.96875
1714122266.174534195,-1.50087,-1.57536,-0.117107,-2.17866,-2.55573,-1.46027,0,0,0,0.96875
1714122266.324855982,-1.50087,-1.57536,-0.117107,-2.17267,-2.54666,-1.5503,0,0,0,0.96875
1714122266.475172519,-1.50087,-1.57536,-0.117107,-2.16955,-2.54223,-1.56716,0,0,0,0.96875
1714122266.625604558,-1.50087,-1.57536,-0.117107,-2.16312,-2.53413,-1.60064,0,0,0,0.96875
1714122266.776012096,-1.50087,-1.57536,-0.117107,-2.15977,-2.52976,-1.65717,0,0,1,0.96875
1714122266.926431592,-1.50087,-1.57536,-0.117107,-2.1528,-2.52131,-1.81177,0,0,1,0.96875
1714122267.076863630,-1.50087,-1.57536,-0.117107,-2.14948,-2.51617,-2.00514,0,0,1,0.96875
1714122267.227294502,-1.50087,-1.57536,-0.117107,-2.14681,-2.51369,-2.10494,0,0,1,0.96875
1714122267.377696499,-1.50087,-1.57536,-0.117107,-2.14304,-2.50819,-2.09054,0,0,1,0.96875
1714122267.528013036,-1.50087,-1.57536,-0.117107,-2.13566,-2.49689,-2.05466,0,0,1,0.96875
1714122267.678442158,-1.50087,-1.57536,-0.117107,-2.13229,-2.49086,-1.97922,0,0,1,0.96875
1714122267.828846196,-1.50087,-1.57536,-0.117107,-2.12523,-2.47887,-1.90415,0,0,1,0.96875
1714122267.979257234,-1.50087,-1.57536,-0.117107,-2.12142,-2.47355,-1.82849,0,0,1,0.96875
1714122268.129671189,-1.50087,-1.57536,-0.117107,-2.11445,-2.46257,-1.69607,0,0,1,0.96875
1714122268.279973435,-1.50087,-1.57536,-0.117107,-2.11106,-2.45735,-1.55078,0,0,1,0.96875
1714122268.430299597,-1.50087,-1.57536,-0.117107,-2.10469,-2.44708,-1.15436,0,0,1,0.96875
1714122268.580601843,-1.50087,-1.57536,-0.117107,-2.10106,-2.44247,-0.832853,0,0,1,0.96875
1714122268.730916339,-1.50087,-1.57536,-0.117107,-2.09426,-2.43148,-0.570662,0,0,1,0.96875
1714122268.881276918,-1.50087,-1.57536,-0.117107,-2.09041,-2.42672,-0.403605,0,0,1,0.96875
1714122269.031585873,-1.50087,-1.57536,-0.117107,-2.08247,-2.41816,-0.199005,0,0,1,0.96875
1714122269.181965994,-1.50087,-1.57536,-0.117107,-2.07855,-2.41378,-0.0999473,0,0,1,0.96875
1714122269.332380241,-1.50087,-1.57536,-0.117107,-2.07023,-2.4058,0.0350457,0,0,1,0.96875
1714122269.482695320,-1.50087,-1.57536,-0.117107,-2.06576,-2.40204,0.219341,0,0,1,0.96875
1714122269.633013608,-1.50087,-1.57536,-0.117107,-2.05662,-2.39404,0.419394,0,0,1,0.96875
1714122269.783323145,-1.50087,-1.57536,-0.117107,-2.05189,-2.39,0.557886,0,0,1,0.96875
1714122269.933643474,-1.50087,-1.57536,-0.117107,-2.04212,-2.38143,0.721352,0,0,1,0.96875
1714122270.083952137,-1.50087,-1.57536,-0.117107,-2.03749,-2.37694,0.788804,0,0,1,0.96875

View File

@ -1,176 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1714122438.948955647,-2.09681,-1.59004,-0.0680199,0.104581,-0.0205526,0.0414572,0,0.0666667,-0.36,0
1714122439.099391489,-2.09681,-1.59004,-0.0680199,0.104687,-0.0203402,0.0267011,0,0.0666667,-0.36,0
1714122439.249782414,-2.09681,-1.59004,-0.0680199,0.104685,-0.020219,0.00717734,0,0.0666667,-0.322105,0
1714122439.400107422,-2.09681,-1.59004,-0.0680199,0.104791,-0.0199159,-0.0272392,0,0.0666667,-0.322105,0
1714122439.550447889,-2.09681,-1.59004,-0.0680199,0.114696,-0.0192363,-0.0579611,0,0.0666667,-0.322105,0
1714122439.700785439,-2.09681,-1.59004,-0.0680199,0.114574,-0.0189065,-0.0863741,0,0.0666667,-0.284211,0
1714122439.851178697,-2.09681,-1.59004,-0.0680199,0.124252,-0.0182536,-0.11355,0,0.0666667,-0.36,0
1714122440.001533164,-2.09681,-1.59004,-0.0680199,0.134074,-0.0176666,-0.173136,0,0.0666667,-0.322105,0
1714122440.151924965,-2.09681,-1.59004,-0.0680199,0.143786,-0.0169587,-0.201443,0,0.0666667,-0.322105,0
1714122440.302267765,-2.09681,-1.59004,-0.0680199,0.153567,-0.0164814,-0.253965,0,0.0666667,-0.36,0
1714122440.452617273,-2.09681,-1.59004,-0.0680199,0.153922,-0.026378,-0.288585,0,0.0666667,-0.322105,0
1714122440.605266591,-2.09681,-1.59004,-0.0680199,0.163735,-0.0260593,-0.34043,0,0.0666667,-0.36,0
1714122440.755612308,-2.09681,-1.59004,-0.0680199,0.173583,-0.025695,-0.381731,0,0.0666667,-0.36,0
1714122440.905954524,-2.09681,-1.59004,-0.0680199,0.183842,-0.0352641,-0.42567,0,0.0666667,-0.36,0
1714122441.056306074,-2.09681,-1.59004,-0.0680199,0.193586,-0.0342362,-0.483639,0,0.0666667,-0.322105,0
1714122441.206480290,-2.09681,-1.59004,-0.0680199,0.193449,-0.0338092,-0.527369,0,0.0666667,-0.36,0
1714122441.356653047,-2.09681,-1.59004,-0.0680199,0.20346,-0.0424902,-0.575577,0,0.0666667,-0.36,0
1714122441.507532809,-2.09681,-1.59004,-0.0680199,0.21332,-0.0482974,-0.626552,0,0.0666667,-0.36,0
1714122441.657732983,-2.09681,-1.59004,-0.0680199,0.213132,-0.0502599,-0.666178,0,0.0666667,-0.322105,0
1714122441.807909824,-2.09681,-1.59004,-0.0680199,0.223329,-0.0600874,-0.718735,0,0.0666667,-0.36,0
1714122441.958085206,-2.09681,-1.59004,-0.0680199,0.233063,-0.0593779,-0.772851,0,0.0666667,-0.36,0
1714122442.108267296,-2.09681,-1.59004,-0.0680199,0.233111,-0.0691174,-0.836674,0,0.0666667,-0.36,0
1714122442.258473887,-2.09681,-1.59004,-0.0680199,0.24273,-0.0673501,-0.877874,0,0.0666667,-0.36,0
1714122442.408651311,-2.09681,-1.59004,-0.0680199,0.242715,-0.075572,-0.936609,0,0.0666667,-0.36,0
1714122442.558816485,-2.09681,-1.59004,-0.0680199,0.253077,-0.0844149,-0.973254,0,0.0666667,-0.36,0
1714122442.709004700,-2.09681,-1.59004,-0.0680199,0.253134,-0.0835803,-1.01637,0,0.0666667,-0.36,0
1714122442.859355375,-2.09681,-1.59004,-0.0680199,0.263778,-0.0974309,-1.08741,0,0.0666667,-0.36,0
1714122443.009714801,-2.09681,-1.59004,-0.0680199,0.263934,-0.100917,-1.13439,0,0.0666667,-0.36,0
1714122443.163928631,-2.09681,-1.59004,-0.0680199,0.264517,-0.10937,-1.16435,0,0.0666667,-0.36,0
1714122443.314462474,-2.09681,-1.59004,-0.0680199,0.275084,-0.117624,-1.22372,0,0.0666667,-0.36,0
1714122443.464820733,-2.09681,-1.59004,-0.0680199,0.275471,-0.126938,-1.26556,0,0.0888889,-0.36,0
1714122443.615190075,-2.09681,-1.59004,-0.0680199,0.275755,-0.135688,-1.32738,0,0.0666667,-0.36,0
1714122443.765624459,-2.09681,-1.59004,-0.0680199,0.275976,-0.140704,-1.37428,0,0.133333,-0.36,0
1714122443.916182511,-2.09681,-1.59004,-0.0680199,0.276231,-0.142867,-1.41852,0,0.111111,-0.36,0
1714122444.066613687,-2.09681,-1.59004,-0.0680199,0.276641,-0.15192,-1.46121,0,0.2,-0.36,0
1714122444.217043988,-2.09681,-1.59004,-0.0680199,0.277273,-0.160938,-1.51363,0,0.155556,-0.36,0
1714122444.367383871,-2.09681,-1.59004,-0.0680199,0.278452,-0.179144,-1.58151,0,0.2,-0.36,0
1714122444.517780922,-2.09681,-1.59004,-0.0680199,0.27914,-0.197986,-1.62638,0,0.2,-0.36,0
1714122444.668123139,-2.09681,-1.59004,-0.0680199,0.280026,-0.225971,-1.70419,0,0.2,-0.36,0
1714122444.818330605,-2.09681,-1.59004,-0.0680199,0.270282,-0.244213,-1.74226,0,0.2,-0.36,0
1714122444.968575404,-2.09681,-1.59004,-0.0680199,0.270915,-0.263296,-1.77597,0,0.177778,-0.36,0
1714122445.118921413,-2.09681,-1.59004,-0.0680199,0.262285,-0.299279,-1.85099,0,0.2,-0.36,0
1714122445.269296297,-2.09681,-1.59004,-0.0680199,0.253102,-0.318291,-1.89597,0,0.2,-0.36,0
1714122445.419646097,-2.09681,-1.59004,-0.0680199,0.244314,-0.341852,-1.95003,0,0.2,-0.36,0
1714122445.569979272,-2.09681,-1.59004,-0.0680199,0.235903,-0.372118,-1.99504,0,0.177778,-0.36,0
1714122445.720327906,-2.09681,-1.59004,-0.0680199,0.216601,-0.392449,-2.05104,0,0.2,-0.36,0
1714122445.870681498,-2.09681,-1.59004,-0.0680199,0.207452,-0.412602,-2.09814,0,0.177778,-0.36,0
1714122446.021027215,-2.09681,-1.59004,-0.0680199,0.197966,-0.432661,-2.13835,0,0.2,-0.36,0
1714122446.171384307,-2.09681,-1.59004,-0.0680199,0.179151,-0.458735,-2.19235,0,0.2,-0.36,0
1714122446.321687440,-2.09681,-1.59004,-0.0680199,0.159063,-0.473509,-2.23164,0,0.2,-0.36,0
1714122446.472018866,-2.09681,-1.59004,-0.0680199,0.139723,-0.494115,-2.28288,0,0.2,-0.322105,0
1714122446.622367499,-2.09681,-1.59004,-0.0680199,0.120385,-0.520199,-2.33414,0,0.2,-0.322105,0
1714122446.772691341,-2.09681,-1.59004,-0.0680199,0.110847,-0.534571,-2.37057,0,0.2,-0.246316,0
1714122446.930643493,-2.09681,-1.59004,-0.0680199,0.10066,-0.544401,-2.40864,0,0.2,-0.246316,0
1714122447.080982210,-2.09681,-1.59004,-0.0680199,0.0713812,-0.566036,-2.4597,0,0.2,-0.208421,0
1714122447.231311885,-2.09681,-1.59004,-0.0680199,0.04171,-0.587372,-2.51196,0,0.2,-0.170526,0
1714122447.381643894,-2.09681,-1.59004,-0.0680199,0.022589,-0.608311,-2.54628,0,0.2,-0.132632,0
1714122447.532067486,-2.09681,-1.59004,-0.0680199,0.0025187,-0.619209,-2.57896,0,0.2,-0.132632,0
1714122447.682398620,-2.09681,-1.59004,-0.0680199,-0.0172336,-0.630017,-2.61016,0,0.2,-0.0189474,0
1714122447.832747254,-2.09681,-1.59004,-0.0680199,-0.0472123,-0.641054,-2.63603,0,0.2,-0.0189474,0
1714122447.983119805,-2.09681,-1.59004,-0.0680199,-0.0670316,-0.651749,-2.65547,0,0.2,-0.0189474,0
1714122448.133482730,-2.09681,-1.59004,-0.0680199,-0.0966894,-0.672804,-2.67276,0,0.2,0,0
1714122448.283874823,-2.09681,-1.59004,-0.0680199,-0.116603,-0.683324,-2.67716,0,0.2,0,0
1714122448.434212081,-2.09681,-1.59004,-0.0680199,-0.146667,-0.694237,-2.68459,0,0.2,0,0
1714122448.584390672,-2.09681,-1.59004,-0.0680199,-0.176233,-0.71119,-2.68966,0,0.2,-0.0189474,0
1714122448.734560805,-2.09681,-1.59004,-0.0680199,-0.196205,-0.725577,-2.69246,0,0.2,-0.0568421,0
1714122448.884739979,-2.09681,-1.59004,-0.0680199,-0.231651,-0.736652,-2.69559,0,0.177778,-0.0568421,0
1714122449.034932278,-2.09681,-1.59004,-0.0680199,-0.256046,-0.747583,-2.69594,0,0.2,-0.0568421,0
1714122449.185117286,-2.09681,-1.59004,-0.0680199,-0.275788,-0.758662,-2.69849,0,0.2,-0.0568421,0
1714122449.335301418,-2.09681,-1.59004,-0.0680199,-0.305877,-0.769516,-2.69966,0,0.2,-0.0189474,0
1714122449.485495176,-2.09681,-1.59004,-0.0680199,-0.325489,-0.7805,-2.70185,0,0.2,-0.0189474,0
1714122449.635671434,-2.09681,-1.59004,-0.0680199,-0.345966,-0.781251,-2.70147,0,0.2,-0.0189474,0
1714122449.785853525,-2.09681,-1.59004,-0.0680199,-0.38031,-0.802932,-2.70331,0,0.2,-0.0568421,0
1714122449.937655545,-2.09681,-1.59004,-0.0680199,-0.402248,-0.813734,-2.70632,0,0.2,0,0
1714122450.087854261,-2.09681,-1.59004,-0.0680199,-0.424583,-0.824886,-2.70869,0,0.2,-0.0189474,0
1714122450.238038394,-2.09681,-1.59004,-0.0680199,-0.454388,-0.836744,-2.71084,0,0.2,0.0189474,0
1714122450.388220776,-2.09681,-1.59004,-0.0680199,-0.473879,-0.847696,-2.71215,0,0.2,0.0189474,0
1714122450.538406951,-2.09681,-1.59004,-0.0680199,-0.503548,-0.859252,-2.71502,0,0.2,0,0
1714122450.688605959,-2.09681,-1.59004,-0.0680199,-0.5331,-0.871271,-2.71617,0,0.2,-0.0568421,0
1714122450.838951384,-2.09681,-1.59004,-0.0680199,-0.563001,-0.882662,-2.71873,0,0.2,-0.0189474,0
1714122450.989654104,-2.09681,-1.59004,-0.0680199,-0.582659,-0.8936,-2.71931,0,0.2,-0.0189474,0
1714122451.140113572,-2.09681,-1.59004,-0.0680199,-0.602639,-0.904366,-2.7212,0,0.2,0.0189474,0
1714122451.290498957,-2.09681,-1.59004,-0.0680199,-0.632268,-0.916006,-2.72241,0,0.2,0,0
1714122451.440847007,-2.09681,-1.59004,-0.0680199,-0.662183,-0.927402,-2.72412,0,0.2,0,0
1714122451.591172891,-2.09681,-1.59004,-0.0680199,-0.691743,-0.939,-2.72419,0,0.2,0.0189474,0
1714122451.741377732,-2.09681,-1.59004,-0.0680199,-0.721572,-0.95049,-2.72373,0,0.2,0.0189474,0
1714122451.891546990,-2.09681,-1.59004,-0.0680199,-0.741169,-0.961649,-2.72658,0,0.2,0,0
1714122452.041727914,-2.09681,-1.59004,-0.0680199,-0.776465,-0.973599,-2.72432,0,0.2,0,0
1714122452.191910881,-2.09681,-1.59004,-0.0680199,-0.80032,-0.985,-2.72376,0,0.2,0.0568421,0
1714122452.342085680,-2.09681,-1.59004,-0.0680199,-0.81995,-0.996197,-2.72396,0,0.2,0.0568421,0
1714122452.492259604,-2.09681,-1.59004,-0.0680199,-0.840097,-0.997219,-2.72254,0,0.2,0.0189474,0
1714122452.642482821,-2.09681,-1.59004,-0.0680199,-0.879421,-1.01916,-2.71874,0,0.2,0.0568421,0
1714122452.792680954,-2.09681,-1.59004,-0.0680199,-0.899088,-1.03002,-2.71728,0,0.2,-0.0189474,0
1714122452.942875878,-2.09681,-1.59004,-0.0680199,-0.929,-1.04147,-2.71336,0,0.2,-0.0189474,0
1714122453.093052136,-2.09681,-1.59004,-0.0680199,-0.948684,-1.05248,-2.71099,0,0.2,-0.0189474,0
1714122453.243226935,-2.09681,-1.59004,-0.0680199,-0.97886,-1.06002,-2.70762,0,0.2,-0.0568421,0
1714122453.393398818,-2.09681,-1.59004,-0.0680199,-0.998839,-1.0651,-2.70494,0,0.2,-0.0189474,0
1714122453.543640993,-2.09681,-1.59004,-0.0680199,-1.02624,-1.07657,-2.70741,0,0.2,-0.0189474,0
1714122453.693931585,-2.09681,-1.59004,-0.0680199,-1.04806,-1.08809,-2.70667,0,0.2,-0.0189474,0
1714122453.844120676,-2.09681,-1.59004,-0.0680199,-1.07766,-1.10016,-2.70758,0,0.2,0,0
1714122453.994307143,-2.09681,-1.59004,-0.0680199,-1.09712,-1.11157,-2.70955,0,0.2,-0.0189474,0
1714122454.144488067,-2.09681,-1.59004,-0.0680199,-1.12671,-1.12385,-2.7092,0,0.2,-0.0189474,0
1714122454.294668408,-2.09681,-1.59004,-0.0680199,-1.15595,-1.13618,-2.71106,0,0.2,-0.0189474,0
1714122454.444861291,-2.09681,-1.59004,-0.0680199,-1.18121,-1.14844,-2.71301,0,0.177778,-0.0189474,0
1714122454.595070216,-2.09681,-1.59004,-0.0680199,-1.2043,-1.1605,-2.71346,0,0.2,0,0
1714122454.745253182,-2.09681,-1.59004,-0.0680199,-1.23329,-1.17375,-2.71475,0,0.2,-0.0189474,0
1714122454.895421273,-2.09681,-1.59004,-0.0680199,-1.25954,-1.18592,-2.72002,0,0.2,0,0
1714122455.045598115,-2.09681,-1.59004,-0.0680199,-1.28163,-1.19792,-2.72087,0,0.2,0.0189474,0
1714122455.195777873,-2.09681,-1.59004,-0.0680199,-1.30093,-1.20941,-2.72274,0,0.2,0,0
1714122455.345967256,-2.09681,-1.59004,-0.0680199,-1.33039,-1.22139,-2.72299,0,0.2,0,0
1714122455.496144389,-2.09681,-1.59004,-0.0680199,-1.34982,-1.23264,-2.72441,0,0.2,0.0568421,0
1714122455.646340188,-2.09681,-1.59004,-0.0680199,-1.37927,-1.24509,-2.72519,0,0.2,0.0568421,0
1714122455.796514405,-2.09681,-1.59004,-0.0680199,-1.39934,-1.24647,-2.72593,0,0.2,0.0189474,0
1714122455.951116155,-2.09681,-1.59004,-0.0680199,-1.42893,-1.2583,-2.72392,0,0.2,0,0
1714122456.101297663,-2.09681,-1.59004,-0.0680199,-1.45783,-1.28034,-2.722,0,0.2,-0.0189474,0
1714122456.251457588,-2.09681,-1.59004,-0.0680199,-1.48734,-1.2922,-2.71924,0,0.177778,0.0189474,0
1714122456.401823139,-2.09681,-1.59004,-0.0680199,-1.50684,-1.29968,-2.716,0,0.2,-0.0189474,0
1714122456.552182857,-2.09681,-1.59004,-0.0680199,-1.53538,-1.317,-2.71482,0,0.2,-0.0189474,0
1714122456.702597408,-2.09681,-1.59004,-0.0680199,-1.55457,-1.32024,-2.71312,0,0.2,0.0568421,0
1714122456.852930292,-2.09681,-1.59004,-0.0680199,-1.58355,-1.333,-2.71304,0,0.2,0,0
1714122457.003132801,-2.09681,-1.59004,-0.0680199,-1.60248,-1.34539,-2.71304,0,0.2,-0.0189474,0
1714122457.153323642,-2.09681,-1.59004,-0.0680199,-1.63164,-1.35842,-2.71162,0,0.177778,0,0
1714122457.303501067,-2.09681,-1.59004,-0.0680199,-1.66129,-1.37053,-2.71318,0,0.2,0.0568421,0
1714122457.453684033,-2.09681,-1.59004,-0.0680199,-1.6907,-1.38269,-2.71457,0,0.2,0.0189474,0
1714122457.604069126,-2.09681,-1.59004,-0.0680199,-1.71009,-1.39406,-2.71662,0,0.2,-0.0189474,0
1714122457.754407844,-2.09681,-1.59004,-0.0680199,-1.72992,-1.40527,-2.71674,0,0.177778,0,0
1714122457.905778486,-2.09681,-1.59004,-0.0680199,-1.76674,-1.41758,-2.71878,0,0.177778,-0.0189474,0
1714122458.056195079,-2.09681,-1.59004,-0.0680199,-1.77937,-1.42804,-2.71696,0,0.177778,-0.0189474,0
1714122458.206558006,-2.09681,-1.59004,-0.0680199,-1.80915,-1.43954,-2.71848,0,0.155556,0,0
1714122458.356983349,-2.09681,-1.59004,-0.0680199,-1.82917,-1.45014,-2.71699,0,0.155556,0.0189474,0
1714122458.507319733,-2.09681,-1.59004,-0.0680199,-1.85515,-1.45178,-2.71419,0,0.133333,0.0947368,0
1714122458.657656409,-2.09681,-1.59004,-0.0680199,-1.87566,-1.46211,-2.71478,0,0.133333,0,0
1714122458.808059877,-2.09681,-1.59004,-0.0680199,-1.89574,-1.47187,-2.7129,0,0.111111,0.0189474,0
1714122458.962384543,-2.09681,-1.59004,-0.0680199,-1.9107,-1.47239,-2.71181,0,0.111111,0.0947368,0
1714122459.112772553,-2.09681,-1.59004,-0.0680199,-1.9303,-1.48351,-2.71054,0,0.0888889,0.0189474,0
1714122459.263149771,-2.09681,-1.59004,-0.0680199,-1.94853,-1.49729,-2.70746,0,0.0888889,0.0947368,0
1714122459.413482947,-2.09681,-1.59004,-0.0680199,-1.95704,-1.50064,-2.70475,0,0.0888889,0.132632,0
1714122459.563845581,-2.09681,-1.59004,-0.0680199,-1.96583,-1.51243,-2.69982,0,0,0.5,0
1714122459.714504843,-2.09681,-1.59004,-0.0680199,-1.97479,-1.51524,-2.69001,0,0,0.5,0
1714122459.864882936,-2.09681,-1.59004,-0.0680199,-1.98494,-1.52503,-2.66532,0,0,0.5,0
1714122460.015268613,-2.09681,-1.59004,-0.0680199,-1.99653,-1.52351,-2.63336,0,0,0.5,0
1714122460.165603247,-2.09681,-1.59004,-0.0680199,-1.99767,-1.52203,-2.59825,0,0,0.5,0
1714122460.315931465,-2.09681,-1.59004,-0.0680199,-2.00962,-1.52857,-2.54014,0,0,0.5,0
1714122460.466103057,-2.09681,-1.59004,-0.0680199,-2.01074,-1.52658,-2.5004,0,0,0.5,0
1714122460.616278731,-2.09681,-1.59004,-0.0680199,-2.01305,-1.52272,-2.43862,0,0,0.5,0
1714122460.766470740,-2.09681,-1.59004,-0.0680199,-2.02345,-1.52227,-2.39663,0,0,0.5,0
1714122460.916665956,-2.09681,-1.59004,-0.0680199,-2.02228,-1.5243,-2.28105,0,0,0.5,0
1714122461.066833756,-2.09681,-1.59004,-0.0680199,-2.02168,-1.52557,-2.23755,0,0,0.5,0
1714122461.217003014,-2.09681,-1.59004,-0.0680199,-2.02056,-1.52863,-2.16372,0,0,0.5,0
1714122461.367178689,-2.09681,-1.59004,-0.0680199,-2.02152,-1.52769,-2.08168,0,0,0.5,0
1714122461.517345322,-2.09681,-1.59004,-0.0680199,-2.02229,-1.52785,-2.02908,0,0,0.5,0
1714122461.667536456,-2.09681,-1.59004,-0.0680199,-2.02283,-1.52802,-1.96988,0,0,0.5,0
1714122461.817755006,-2.09681,-1.59004,-0.0680199,-2.02325,-1.53868,-1.87186,0,0,0.5,0
1714122461.967960140,-2.09681,-1.59004,-0.0680199,-2.02328,-1.53952,-1.81403,0,0,0.5,0
1714122462.118114814,-2.09681,-1.59004,-0.0680199,-2.02263,-1.54194,-1.75709,0,0,0.5,0
1714122462.268301864,-2.09681,-1.59004,-0.0680199,-2.02227,-1.54298,-1.67675,0,0,0.5,0
1714122462.418488914,-2.09681,-1.59004,-0.0680199,-2.02175,-1.54435,-1.6077,0,0,0.5,0
1714122462.568887133,-2.09681,-1.59004,-0.0680199,-2.02166,-1.54479,-1.52562,0,0,0.5,0
1714122462.719325893,-2.09681,-1.59004,-0.0680199,-2.0217,-1.54591,-1.45611,0,0,0.5,0
1714122462.869703695,-2.09681,-1.59004,-0.0680199,-2.02171,-1.54657,-1.38069,0,0,0.5,0
1714122463.020061955,-2.09681,-1.59004,-0.0680199,-2.02314,-1.546,-1.31754,0,0,0.5,0
1714122463.170374131,-2.09681,-1.59004,-0.0680199,-2.02391,-1.5454,-1.25054,0,0,0.5,0
1714122463.320784891,-2.09681,-1.59004,-0.0680199,-2.02375,-1.5469,-1.15883,0,0,0.5,0
1714122463.471049817,-2.09681,-1.59004,-0.0680199,-2.02388,-1.54757,-1.10299,0,0,0.5,0
1714122463.621379493,-2.09681,-1.59004,-0.0680199,-2.02416,-1.54842,-1.03176,0,0,0.5,0
1714122463.775735659,-2.09681,-1.59004,-0.0680199,-2.02437,-1.54856,-0.975096,0,0,0.5,0
1714122463.926135919,-2.09681,-1.59004,-0.0680199,-2.02425,-1.54998,-0.903138,0,0,0.5,0
1714122464.076576721,-2.09681,-1.59004,-0.0680199,-2.02421,-1.5506,-0.814141,0,0,0.5,0
1714122464.226927689,-2.09681,-1.59004,-0.0680199,-2.02436,-1.55109,-0.731916,0,0,0.5,0
1714122464.377267282,-2.09681,-1.59004,-0.0680199,-2.02451,-1.55131,-0.68268,0,0,0.5,0
1714122464.527613000,-2.09681,-1.59004,-0.0680199,-2.02474,-1.55156,-0.603274,0,0,0.5,0
1714122464.677942968,-2.09681,-1.59004,-0.0680199,-2.02477,-1.55153,-0.557202,0,0,0.5,0
1714122464.829390028,-2.09681,-1.59004,-0.0680199,-2.02468,-1.55203,-0.469674,0,0,0.5,0
1714122464.979794955,-2.09681,-1.59004,-0.0680199,-2.02466,-1.5525,-0.392763,0,0,0.5,0
1714122465.130199299,-2.09681,-1.59004,-0.0680199,-2.02466,-1.5535,-0.305077,0,0,0,0

View File

@ -1,622 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1714122626.351691980,-2.09681,-1.59004,-0.0680199,0.031401,-0.014173,-0.00814656,0,0.0666667,-0.208421,0
1714122626.502129873,-2.09681,-1.59004,-0.0680199,0.0317256,-0.0142549,-0.0127827,0,0.0666667,-0.36,0
1714122626.652327432,-2.09681,-1.59004,-0.0680199,0.031839,-0.0142824,-0.0425532,0,0.0666667,-0.36,0
1714122626.802498740,-2.09681,-1.59004,-0.0680199,0.031953,-0.0143606,-0.0611886,0,0.0666667,-0.36,0
1714122626.952670339,-2.09681,-1.59004,-0.0680199,0.042296,-0.0143163,-0.0903344,0,0.0666667,-0.36,0
1714122627.102843106,-2.09681,-1.59004,-0.0680199,0.0422897,-0.0142796,-0.123869,0,0.0666667,-0.36,0
1714122627.253023164,-2.09681,-1.59004,-0.0680199,0.0525599,-0.0142405,-0.169631,0,0.0666667,-0.36,0
1714122627.403193597,-2.09681,-1.59004,-0.0680199,0.062779,-0.0142145,-0.219641,0,0.0666667,-0.36,0
1714122627.553381238,-2.09681,-1.59004,-0.0680199,0.0728791,-0.0141564,-0.266617,0,0.0666667,-0.36,0
1714122627.703572088,-2.09681,-1.59004,-0.0680199,0.0832103,-0.0142163,-0.305506,0,0.0666667,-0.322105,0
1714122627.853760605,-2.09681,-1.59004,-0.0680199,0.0933772,-0.0243241,-0.340149,0,0.0666667,-0.322105,0
1714122628.003926079,-2.09681,-1.59004,-0.0680199,0.103772,-0.0244936,-0.395818,0,0.0666667,-0.36,0
1714122628.154104096,-2.09681,-1.59004,-0.0680199,0.111801,-0.0245226,-0.436183,0,0.0666667,-0.36,0
1714122628.304278612,-2.09681,-1.59004,-0.0680199,0.114131,-0.0343216,-0.480925,0,0.0666667,-0.36,0
1714122628.454451962,-2.09681,-1.59004,-0.0680199,0.12419,-0.0341631,-0.512241,0,0.0666667,-0.36,0
1714122628.604628520,-2.09681,-1.59004,-0.0680199,0.134297,-0.0436329,-0.573105,0,0.0666667,-0.36,0
1714122628.754828995,-2.09681,-1.59004,-0.0680199,0.144335,-0.0433576,-0.607759,0,0.0666667,-0.322105,0
1714122628.904994470,-2.09681,-1.59004,-0.0680199,0.14437,-0.0526126,-0.676347,0,0.0666667,-0.36,0
1714122629.055169278,-2.09681,-1.59004,-0.0680199,0.15447,-0.0523137,-0.731145,0,0.0666667,-0.36,0
1714122629.205392795,-2.09681,-1.59004,-0.0680199,0.164489,-0.0616948,-0.782877,0,0.0666667,-0.36,0
1714122629.355564686,-2.09681,-1.59004,-0.0680199,0.164628,-0.0610894,-0.818679,0,0.0666667,-0.36,0
1714122629.505738619,-2.09681,-1.59004,-0.0680199,0.174745,-0.0700689,-0.865511,0,0.0666667,-0.36,0
1714122629.655932094,-2.09681,-1.59004,-0.0680199,0.174827,-0.0794047,-0.921738,0,0.0666667,-0.36,0
1714122629.806290070,-2.09681,-1.59004,-0.0680199,0.185036,-0.078814,-0.959802,0,0.0666667,-0.36,0
1714122629.956624713,-2.09681,-1.59004,-0.0680199,0.185175,-0.0873413,-1.02854,0,0.0666667,-0.36,0
1714122630.107313734,-2.09681,-1.59004,-0.0680199,0.19546,-0.0961029,-1.08513,0,0.0666667,-0.36,0
1714122630.257666752,-2.09681,-1.59004,-0.0680199,0.195688,-0.0953171,-1.11763,0,0.0666667,-0.36,0
1714122630.408032020,-2.09681,-1.59004,-0.0680199,0.196104,-0.104039,-1.16034,0,0.0666667,-0.36,0
1714122630.558335454,-2.09681,-1.59004,-0.0680199,0.206335,-0.113675,-1.20596,0,0.0666667,-0.36,0
1714122630.708692555,-2.09681,-1.59004,-0.0680199,0.206797,-0.122966,-1.2823,0,0.177778,-0.36,0
1714122630.859037406,-2.09681,-1.59004,-0.0680199,0.206849,-0.132728,-1.32797,0,0.155556,-0.36,0
1714122631.009376716,-2.09681,-1.59004,-0.0680199,0.217253,-0.141871,-1.38134,0,0.2,-0.36,0
1714122631.159730609,-2.09681,-1.59004,-0.0680199,0.217354,-0.161247,-1.43762,0,0.177778,-0.36,0
1714122631.309928167,-2.09681,-1.59004,-0.0680199,0.217834,-0.169852,-1.48627,0,0.177778,-0.36,0
1714122631.460102100,-2.09681,-1.59004,-0.0680199,0.218025,-0.18918,-1.52534,0,0.155556,-0.36,0
1714122631.610277492,-2.09681,-1.59004,-0.0680199,0.218521,-0.207594,-1.57896,0,0.177778,-0.36,0
1714122631.760544467,-2.09681,-1.59004,-0.0680199,0.218653,-0.236755,-1.64195,0,0.177778,-0.36,0
1714122631.910716651,-2.09681,-1.59004,-0.0680199,0.21868,-0.255195,-1.6827,0,0.155556,-0.36,0
1714122632.060894376,-2.09681,-1.59004,-0.0680199,0.218899,-0.274357,-1.74054,0,0.2,-0.36,0
1714122632.211274519,-2.09681,-1.59004,-0.0680199,0.209335,-0.302973,-1.78695,0,0.2,-0.36,0
1714122632.361674495,-2.09681,-1.59004,-0.0680199,0.199674,-0.322509,-1.83993,0,0.2,-0.36,0
1714122632.512133098,-2.09681,-1.59004,-0.0680199,0.20007,-0.341992,-1.87925,0,0.2,-0.36,0
1714122632.662495449,-2.09681,-1.59004,-0.0680199,0.190383,-0.361589,-1.92229,0,0.2,-0.36,0
1714122632.812867134,-2.09681,-1.59004,-0.0680199,0.180981,-0.391061,-1.98113,0,0.2,-0.36,0
1714122632.963085401,-2.09681,-1.59004,-0.0680199,0.171561,-0.42107,-2.02583,0,0.2,-0.36,0
1714122633.113270126,-2.09681,-1.59004,-0.0680199,0.161662,-0.431099,-2.06609,0,0.177778,-0.36,0
1714122633.263446684,-2.09681,-1.59004,-0.0680199,0.142004,-0.461082,-2.12982,0,0.2,-0.36,0
1714122633.413650368,-2.09681,-1.59004,-0.0680199,0.126153,-0.486882,-2.17515,0,0.2,-0.36,0
1714122633.564013302,-2.09681,-1.59004,-0.0680199,0.112161,-0.500762,-2.21579,0,0.2,-0.36,0
1714122633.714201236,-2.09681,-1.59004,-0.0680199,0.102079,-0.520403,-2.25777,0,0.2,-0.36,0
1714122633.864374002,-2.09681,-1.59004,-0.0680199,0.0723011,-0.550494,-2.31816,0,0.2,-0.36,0
1714122634.014539186,-2.09681,-1.59004,-0.0680199,0.0620551,-0.559871,-2.35029,0,0.2,-0.246316,0
1714122634.164711077,-2.09681,-1.59004,-0.0680199,0.0422933,-0.579887,-2.40135,0,0.2,-0.208421,0
1714122634.314886761,-2.09681,-1.59004,-0.0680199,0.022522,-0.599973,-2.45825,0,0.2,-0.208421,0
1714122634.465066236,-2.09681,-1.59004,-0.0680199,0.00520383,-0.61763,-2.49125,0,0.2,-0.170526,0
1714122634.615256794,-2.09681,-1.59004,-0.0680199,-0.0174384,-0.630186,-2.52723,0,0.2,-0.132632,0
1714122634.765443853,-2.09681,-1.59004,-0.0680199,-0.0472376,-0.65055,-2.56088,0,0.2,-0.132632,0
1714122634.915620703,-2.09681,-1.59004,-0.0680199,-0.0672815,-0.660589,-2.58529,0,0.2,-0.132632,0
1714122635.065788511,-2.09681,-1.59004,-0.0680199,-0.0870329,-0.680592,-2.60859,0,0.2,-0.0947368,0
1714122635.215962736,-2.09681,-1.59004,-0.0680199,-0.116922,-0.690781,-2.63286,0,0.2,-0.0189474,0
1714122635.366137253,-2.09681,-1.59004,-0.0680199,-0.126741,-0.700737,-2.64557,0,0.2,-0.0189474,0
1714122635.516319353,-2.09681,-1.59004,-0.0680199,-0.166357,-0.721072,-2.66743,0,0.2,-0.0189474,0
1714122635.666518078,-2.09681,-1.59004,-0.0680199,-0.176291,-0.721003,-2.67309,0,0.2,-0.0189474,0
1714122635.816709803,-2.09681,-1.59004,-0.0680199,-0.206058,-0.74118,-2.68314,0,0.2,0,0
1714122635.966900653,-2.09681,-1.59004,-0.0680199,-0.235993,-0.751086,-2.69083,0,0.2,0,0
1714122636.117067003,-2.09681,-1.59004,-0.0680199,-0.255729,-0.761043,-2.69567,0,0.2,-0.0189474,0
1714122636.267217312,-2.09681,-1.59004,-0.0680199,-0.285695,-0.770955,-2.698,0,0.2,-0.0189474,0
1714122636.417622539,-2.09681,-1.59004,-0.0680199,-0.322372,-0.791073,-2.70097,0,0.2,-0.0189474,0
1714122636.567980515,-2.09681,-1.59004,-0.0680199,-0.345131,-0.801168,-2.7026,0,0.2,-0.0189474,0
1714122636.718402076,-2.09681,-1.59004,-0.0680199,-0.364974,-0.811055,-2.70358,0,0.2,-0.0189474,0
1714122636.868754219,-2.09681,-1.59004,-0.0680199,-0.384937,-0.82108,-2.70557,0,0.2,-0.0189474,0
1714122637.019157112,-2.09681,-1.59004,-0.0680199,-0.404687,-0.831241,-2.70668,0,0.2,-0.0189474,0
1714122637.169499922,-2.09681,-1.59004,-0.0680199,-0.434298,-0.851605,-2.70544,0,0.2,-0.0189474,0
1714122637.319846232,-2.09681,-1.59004,-0.0680199,-0.464021,-0.861895,-2.70579,0,0.2,0,0
1714122637.470178250,-2.09681,-1.59004,-0.0680199,-0.483935,-0.862223,-2.70653,0,0.2,-0.0189474,0
1714122637.620352183,-2.09681,-1.59004,-0.0680199,-0.513572,-0.882549,-2.70741,0,0.2,-0.0189474,0
1714122637.773625391,-2.09681,-1.59004,-0.0680199,-0.543376,-0.892922,-2.70909,0,0.2,-0.0189474,0
1714122637.923869909,-2.09681,-1.59004,-0.0680199,-0.563128,-0.903082,-2.70909,0,0.2,0,0
1714122638.074033050,-2.09681,-1.59004,-0.0680199,-0.582894,-0.913404,-2.70968,0,0.2,0,0
1714122638.224202025,-2.09681,-1.59004,-0.0680199,-0.612691,-0.923714,-2.71102,0,0.2,-0.0189474,0
1714122638.374361959,-2.09681,-1.59004,-0.0680199,-0.63252,-0.934036,-2.71257,0,0.2,0,0
1714122638.524530934,-2.09681,-1.59004,-0.0680199,-0.667858,-0.954475,-2.71246,0,0.2,0,0
1714122638.674692617,-2.09681,-1.59004,-0.0680199,-0.691923,-0.964806,-2.71384,0,0.2,0,0
1714122638.824883176,-2.09681,-1.59004,-0.0680199,-0.711616,-0.975142,-2.7122,0,0.2,-0.0189474,0
1714122638.975013942,-2.09681,-1.59004,-0.0680199,-0.741375,-0.985716,-2.71243,0,0.2,-0.0189474,0
1714122639.125194001,-2.09681,-1.59004,-0.0680199,-0.771118,-0.996341,-2.71303,0,0.2,-0.0189474,0
1714122639.275356268,-2.09681,-1.59004,-0.0680199,-0.80079,-1.00684,-2.71244,0,0.2,-0.0568421,0
1714122639.425533993,-2.09681,-1.59004,-0.0680199,-0.82043,-1.01761,-2.71332,0,0.2,-0.0189474,0
1714122639.575708510,-2.09681,-1.59004,-0.0680199,-0.840243,-1.02805,-2.71443,0,0.2,-0.0189474,0
1714122639.726776117,-2.09681,-1.59004,-0.0680199,-0.875589,-1.04457,-2.71631,0,0.177778,-0.0189474,0
1714122639.876981843,-2.09681,-1.59004,-0.0680199,-0.899621,-1.05487,-2.71587,0,0.2,-0.0189474,0
1714122640.027155485,-2.09681,-1.59004,-0.0680199,-0.919585,-1.0597,-2.71665,0,0.2,-0.0568421,0
1714122640.177316293,-2.09681,-1.59004,-0.0680199,-0.949382,-1.07029,-2.71935,0,0.2,-0.0947368,0
1714122640.327494893,-2.09681,-1.59004,-0.0680199,-0.969032,-1.09047,-2.72633,0,0.2,-0.0189474,0
1714122640.477677285,-2.09681,-1.59004,-0.0680199,-0.988943,-1.09116,-2.72921,0,0.2,-0.0189474,0
1714122640.627859386,-2.09681,-1.59004,-0.0680199,-1.0186,-1.10207,-2.73368,0,0.2,-0.0568421,0
1714122640.778037403,-2.09681,-1.59004,-0.0680199,-1.04817,-1.12264,-2.7392,0,0.2,-0.0189474,0
1714122640.928241961,-2.09681,-1.59004,-0.0680199,-1.068,-1.12314,-2.74251,0,0.2,0,0
1714122641.078451479,-2.09681,-1.59004,-0.0680199,-1.08773,-1.13353,-2.74494,0,0.2,0,0
1714122641.228721955,-2.09681,-1.59004,-0.0680199,-1.12726,-1.15423,-2.74817,0,0.2,-0.0189474,0
1714122641.378930014,-2.09681,-1.59004,-0.0680199,-1.15196,-1.16488,-2.75013,0,0.2,-0.0189474,0
1714122641.529382783,-2.09681,-1.59004,-0.0680199,-1.17638,-1.17575,-2.75282,0,0.2,0,0
1714122641.679770510,-2.09681,-1.59004,-0.0680199,-1.20601,-1.18673,-2.75376,0,0.2,0,0
1714122641.830104278,-2.09681,-1.59004,-0.0680199,-1.23307,-1.19787,-2.75472,0,0.2,0,0
1714122641.980438338,-2.09681,-1.59004,-0.0680199,-1.25514,-1.20841,-2.754,0,0.2,0,0
1714122642.130781148,-2.09681,-1.59004,-0.0680199,-1.28464,-1.21957,-2.754,0,0.2,0.0189474,0
1714122642.281117833,-2.09681,-1.59004,-0.0680199,-1.30433,-1.23017,-2.75295,0,0.2,0.0189474,0
1714122642.431469393,-2.09681,-1.59004,-0.0680199,-1.34115,-1.24113,-2.75236,0,0.2,-0.0189474,0
1714122642.581852453,-2.09681,-1.59004,-0.0680199,-1.3637,-1.25179,-2.75202,0,0.2,0.0189474,0
1714122642.732237847,-2.09681,-1.59004,-0.0680199,-1.38344,-1.26237,-2.74964,0,0.2,0.0568421,0
1714122642.882572490,-2.09681,-1.59004,-0.0680199,-1.40317,-1.27278,-2.74891,0,0.2,0.0189474,0
1714122643.032892841,-2.09681,-1.59004,-0.0680199,-1.43261,-1.28381,-2.74591,0,0.177778,0.0189474,0
1714122643.183061817,-2.09681,-1.59004,-0.0680199,-1.45221,-1.29464,-2.74453,0,0.2,-0.0189474,0
1714122643.333234584,-2.09681,-1.59004,-0.0680199,-1.48132,-1.30615,-2.74104,0,0.177778,0.0189474,0
1714122643.483409684,-2.09681,-1.59004,-0.0680199,-1.51063,-1.31767,-2.74011,0,0.2,-0.0189474,0
1714122643.633617743,-2.09681,-1.59004,-0.0680199,-1.52939,-1.32985,-2.74089,0,0.2,-0.0568421,0
1714122643.783856427,-2.09681,-1.59004,-0.0680199,-1.54888,-1.33113,-2.73931,0,0.2,0.0568421,0
1714122643.934031528,-2.09681,-1.59004,-0.0680199,-1.57807,-1.35235,-2.7433,0,0.2,-0.0189474,0
1714122644.084238128,-2.09681,-1.59004,-0.0680199,-1.60782,-1.36344,-2.74489,0,0.2,-0.0189474,0
1714122644.234427521,-2.09681,-1.59004,-0.0680199,-1.62769,-1.37373,-2.74495,0,0.2,-0.0568421,0
1714122644.384606996,-2.09681,-1.59004,-0.0680199,-1.6575,-1.38421,-2.74517,0,0.2,0.0947368,0
1714122644.534781805,-2.09681,-1.59004,-0.0680199,-1.67727,-1.39477,-2.75039,0,0.2,0.0568421,0
1714122644.684949322,-2.09681,-1.59004,-0.0680199,-1.69723,-1.39517,-2.74873,0,0.2,0,0
1714122644.835153881,-2.09681,-1.59004,-0.0680199,-1.73295,-1.41581,-2.74573,0,0.177778,0,0
1714122644.985553858,-2.09681,-1.59004,-0.0680199,-1.76285,-1.42625,-2.74396,0,0.177778,-0.0189474,0
1714122645.135896668,-2.09681,-1.59004,-0.0680199,-1.78676,-1.4367,-2.74219,0,0.155556,0.0189474,0
1714122645.286253187,-2.09681,-1.59004,-0.0680199,-1.8067,-1.44708,-2.73966,0,0.155556,0.0189474,0
1714122645.436602997,-2.09681,-1.59004,-0.0680199,-1.83423,-1.45713,-2.73903,0,0.155556,0.0189474,0
1714122645.586992182,-2.09681,-1.59004,-0.0680199,-1.84736,-1.45694,-2.73757,0,0.133333,0.0189474,0
1714122645.737206950,-2.09681,-1.59004,-0.0680199,-1.86865,-1.46545,-2.73655,0,0.111111,-0.0189474,0
1714122645.887441842,-2.09681,-1.59004,-0.0680199,-1.88792,-1.47671,-2.73603,0,0.111111,0.0568421,0
1714122646.037619860,-2.09681,-1.59004,-0.0680199,-1.90623,-1.48971,-2.73302,0,0.111111,0.0189474,0
1714122646.187803127,-2.09681,-1.59004,-0.0680199,-1.91548,-1.49152,-2.73199,0,0.0888889,0.0189474,0
1714122646.338079728,-2.09681,-1.59004,-0.0680199,-1.93405,-1.50417,-2.73088,0,0.0888889,0.0189474,0
1714122646.488252495,-2.09681,-1.59004,-0.0680199,-1.94347,-1.51521,-2.72923,0,0.0888889,0,0
1714122646.638427596,-2.09681,-1.59004,-0.0680199,-1.96419,-1.51459,-2.72811,0,0,0.5,0
1714122646.788619905,-2.09681,-1.59004,-0.0680199,-1.97511,-1.51346,-2.72856,0,0,0.5,0
1714122646.938813672,-2.09681,-1.59004,-0.0680199,-1.98686,-1.52102,-2.71285,0,0,0.5,0
1714122647.088980314,-2.09681,-1.59004,-0.0680199,-1.98758,-1.52028,-2.68872,0,0,0.5,0
1714122647.239173498,-2.09681,-1.59004,-0.0680199,-1.99879,-1.52853,-2.65306,0,0,0.5,0
1714122647.389347724,-2.09681,-1.59004,-0.0680199,-2.00935,-1.52771,-2.61248,0,0,0.5,0
1714122647.539537991,-2.09681,-1.59004,-0.0680199,-2.00995,-1.52667,-2.57261,0,0,0.5,0
1714122647.689909676,-2.09681,-1.59004,-0.0680199,-2.01023,-1.52598,-2.52176,0,0,0.5,0
1714122647.840275237,-2.09681,-1.59004,-0.0680199,-2.02067,-1.52445,-2.45517,0,0,0.5,0
1714122647.990634672,-2.09681,-1.59004,-0.0680199,-2.02087,-1.53397,-2.38754,0,0,0.5,0
1714122648.140959982,-2.09681,-1.59004,-0.0680199,-2.02125,-1.53285,-2.29898,0,0,0.5,0
1714122648.291304251,-2.09681,-1.59004,-0.0680199,-2.0212,-1.53276,-2.25806,0,0,0.5,0
1714122648.441654353,-2.09681,-1.59004,-0.0680199,-2.02132,-1.53304,-2.16541,0,0,0.5,0
1714122648.591990455,-2.09681,-1.59004,-0.0680199,-2.02141,-1.53333,-2.09735,0,0,0.5,0
1714122648.743184063,-2.09681,-1.59004,-0.0680199,-2.02202,-1.53345,-2.01694,0,0,0.5,0
1714122648.893560415,-2.09681,-1.59004,-0.0680199,-2.02244,-1.53359,-1.99145,0,0,0.5,0
1714122649.043944351,-2.09681,-1.59004,-0.0680199,-2.02279,-1.53425,-1.88095,0,0,0.5,0
1714122649.194316036,-2.09681,-1.59004,-0.0680199,-2.02294,-1.53462,-1.83157,0,0,0.5,0
1714122649.344650972,-2.09681,-1.59004,-0.0680199,-2.02305,-1.53531,-1.75663,0,0,0.5,0
1714122649.494990282,-2.09681,-1.59004,-0.0680199,-2.02266,-1.53623,-1.68227,0,0,0.5,0
1714122649.645161299,-2.09681,-1.59004,-0.0680199,-2.02238,-1.53678,-1.622,0,0,0.5,0
1714122649.795484276,-2.09681,-1.59004,-0.0680199,-2.02224,-1.53698,-1.55534,0,0,0.5,0
1714122649.945718877,-2.09681,-1.59004,-0.0680199,-2.02205,-1.53769,-1.4534,0,0,0.5,0
1714122650.096239605,-2.09681,-1.59004,-0.0680199,-2.02209,-1.53824,-1.40652,0,0,0.5,0
1714122650.246596707,-2.09681,-1.59004,-0.0680199,-2.02191,-1.53964,-1.32604,0,0,0.5,0
1714122650.396933684,-2.09681,-1.59004,-0.0680199,-2.02195,-1.53994,-1.24113,0,0,0.5,0
1714122650.547111993,-2.09681,-1.59004,-0.0680199,-2.02185,-1.54065,-1.17607,0,0,0.5,0
1714122650.697290011,-2.09681,-1.59004,-0.0680199,-2.02193,-1.54113,-1.10163,0,0,0.5,0
1714122650.847466278,-2.09681,-1.59004,-0.0680199,-2.02188,-1.54163,-1.01678,0,0,0.5,0
1714122650.997662087,-2.09681,-1.59004,-0.0680199,-2.02189,-1.54197,-0.973481,0,0,0.5,0
1714122651.147872480,-2.09681,-1.59004,-0.0680199,-2.02153,-1.54308,-0.889329,0,0,0.5,0
1714122651.298140623,-2.09681,-1.59004,-0.0680199,-2.02148,-1.54355,-0.833618,0,0,0.5,0
1714122651.448318640,-2.09681,-1.59004,-0.0680199,-2.02123,-1.54435,-0.750326,0,0,0.5,0
1714122651.598501908,-2.09681,-1.59004,-0.0680199,-2.02113,-1.5445,-0.695775,0,0,0.5,0
1714122651.748681675,-2.09681,-1.59004,-0.0680199,-2.02085,-1.54524,-0.597101,0,0,0.5,0
1714122651.898858234,-2.09681,-1.59004,-0.0680199,-2.02073,-1.54535,-0.532236,0,0,0.5,0
1714122652.049039460,-2.09681,-1.59004,-0.0680199,-2.02052,-1.54561,-0.464713,0,0,0.5,0
1714122652.199249561,-2.09681,-1.59004,-0.0680199,-2.02047,-1.54609,-0.394119,0,0,0.5,0
1714122652.349481537,-2.09681,-1.59004,-0.0680199,-2.02035,-1.54706,-0.336852,0,0,0.5,0
1714122652.499852056,-2.09681,-1.59004,-0.0680199,-2.02031,-1.54724,-0.258583,0,0,0,0
1714122653.274074786,-1.80087,-1.57536,-0.117107,-2.02079,-1.54784,-0.166279,0,0.111111,-0.0189474,0.96875
1714122654.110062502,-1.50087,-1.57536,-0.117107,-1.96043,-1.56013,-0.124146,0,0.2,0.0568421,1
1714122654.933338994,-1.20087,-1.57536,-0.117107,-1.83017,-1.57102,-0.0920249,0,0.2,0.0568421,1
1714122655.729398980,-0.900866,-1.57536,-0.117107,-1.70929,-1.58299,-0.0649747,0,0.2,0.0568421,1
1714122656.540023163,-0.600866,-1.57536,-0.117107,-1.53829,-1.59526,-0.0324004,0,0.2,0.0568421,1
1714122657.356616061,-0.300866,-1.57536,-0.117107,-1.39538,-1.60073,-0.00264412,0,0.2,0.0189474,1
1714122657.507510710,-0.300866,-1.57536,-0.117107,-1.36491,-1.60144,0.00319212,0,0.2,0.0189474,1
1714122657.657713811,-0.300866,-1.57536,-0.117107,-1.33419,-1.61255,0.00690342,0,0.2,0.0568421,1
1714122657.807944912,-0.300866,-1.57536,-0.117107,-1.30401,-1.61252,0.00782969,0,0.2,0.0568421,1
1714122657.958086763,-0.300866,-1.57536,-0.117107,-1.27359,-1.61297,0.00988817,0,0.2,0,1
1714122658.746827608,-0.000865787,-1.57536,-0.117107,-1.11205,-1.60246,0.0271557,0,0.2,-0.0189474,1
1714122658.897020209,-0.000865787,-1.57536,-0.117107,-1.08192,-1.60214,0.0306365,0,0.2,-0.0189474,1
1714122659.047354561,-0.000865787,-1.57536,-0.117107,-1.06163,-1.60224,0.0313207,0,0.2,-0.0189474,1
1714122659.197555912,-0.000865787,-1.57536,-0.117107,-1.03149,-1.6017,0.0315287,0,0.2,-0.0189474,1
1714122659.350185991,-0.000865787,-1.57536,-0.117107,-0.993295,-1.60136,0.031577,0,0.2,-0.0189474,1
1714122660.221446404,0.299134,-1.57536,-0.117107,-0.829729,-1.59835,0.0250313,0,0.2,-0.0189474,1
1714122660.371621213,0.299134,-1.57536,-0.117107,-0.809546,-1.59827,0.023747,0,0.2,0,1
1714122660.521799523,0.299134,-1.57536,-0.117107,-0.773176,-1.59773,0.0221578,0,0.2,0,1
1714122660.671975499,0.299134,-1.57536,-0.117107,-0.739212,-1.59697,0.0202166,0,0.2,-0.0189474,1
1714122660.822205142,0.299134,-1.57536,-0.117107,-0.719001,-1.59636,0.020811,0,0.2,-0.0189474,1
1714122660.972591411,0.299134,-1.57536,-0.117107,-0.688895,-1.59591,0.0200456,0,0.2,-0.0189474,1
1714122661.763609900,0.599134,-1.57536,-0.117107,-0.538416,-1.59337,0.0144542,0,0.2,0,1
1714122661.913957669,0.599134,-1.57536,-0.117107,-0.508297,-1.59303,0.0131228,0,0.2,0,1
1714122662.064295522,0.599134,-1.57536,-0.117107,-0.478191,-1.59266,0.0132837,0,0.2,0,1
1714122662.214627832,0.599134,-1.57536,-0.117107,-0.447837,-1.59242,0.0130466,0,0.2,0,1
1714122662.365072727,0.599134,-1.57536,-0.117107,-0.427652,-1.59228,0.0125166,0,0.2,0,1
1714122662.515565164,0.599134,-1.57536,-0.117107,-0.39184,-1.59191,0.0107871,0,0.2,0,1
1714122663.423408450,0.899134,-1.57536,-0.117107,-0.215451,-1.58981,0.0116207,0,0.2,-0.0189474,1
1714122663.573573634,0.899134,-1.57536,-0.117107,-0.185222,-1.58931,0.0112103,0,0.2,-0.0189474,1
1714122663.723758360,0.899134,-1.57536,-0.117107,-0.164831,-1.58897,0.0104299,0,0.2,0,1
1714122663.873924128,0.899134,-1.57536,-0.117107,-0.134705,-1.58859,0.00914319,0,0.2,0,1
1714122664.024094854,0.899134,-1.57536,-0.117107,-0.0974422,-1.58817,0.0078967,0,0.2,0,1
1714122664.795184186,1.19913,-1.57536,-0.117107,0.0455204,-1.58602,0.00545965,0,0.2,-0.0189474,1
1714122664.945365996,1.19913,-1.57536,-0.117107,0.0654137,-1.58557,0.00565263,0,0.2,0,1
1714122665.095555681,1.19913,-1.57536,-0.117107,0.0953517,-1.58536,0.00451874,0,0.2,-0.0189474,1
1714122665.245757907,1.19913,-1.57536,-0.117107,0.122648,-1.58505,0.00513591,0,0.2,-0.0189474,1
1714122665.395937383,1.19913,-1.57536,-0.117107,0.145098,-1.58475,0.00588068,0,0.2,-0.0189474,1
1714122665.546784198,1.19913,-1.57536,-0.117107,0.174685,-1.58433,0.0031535,0,0.2,-0.0189474,1
1714122665.696976216,1.19913,-1.57536,-0.117107,0.1945,-1.58405,0.00465243,0,0.2,-0.0189474,1
1714122665.847166484,1.19913,-1.57536,-0.117107,0.233899,-1.58357,0.000662913,0,0.2,0,1
1714122666.534280821,1.49913,-1.57536,-0.117107,0.36244,-1.58074,-0.0004131,0,0.2,-0.0189474,1
1714122666.684460006,1.49913,-1.57536,-0.117107,0.392618,-1.58054,-0.00165873,0,0.2,-0.0189474,1
1714122666.834630732,1.49913,-1.57536,-0.117107,0.42129,-1.58009,-0.00219149,0,0.2,-0.0189474,1
1714122666.984995126,1.49913,-1.57536,-0.117107,0.444699,-1.57979,-0.00343413,0,0.2,0,1
1714122667.135207270,1.49913,-1.57536,-0.117107,0.476424,-1.57924,-0.00435863,0,0.2,0,1
1714122667.285467247,1.49913,-1.57536,-0.117107,0.507256,-1.57897,-0.00513565,0,0.2,-0.0189474,1
1714122668.085473516,1.79913,-1.57536,-0.117107,0.662978,-1.57579,-0.00882943,0,0.2,0,1
1714122668.235648909,1.79913,-1.57536,-0.117107,0.701421,-1.58469,-0.0076088,0,0.2,0,1
1714122668.385832760,1.79913,-1.57536,-0.117107,0.724956,-1.58416,-0.00846686,0,0.2,0,1
1714122668.536005820,1.79913,-1.57536,-0.117107,0.756055,-1.58315,-0.00940676,0,0.2,0,1
1714122668.686185005,1.79913,-1.57536,-0.117107,0.786743,-1.58276,-0.00997961,0,0.2,0,1
1714122668.836363314,1.79913,-1.57536,-0.117107,0.807942,-1.58217,-0.0089669,0,0.2,0,1
1714122669.778266537,2.01004,-1.59651,0.323633,1.00292,-1.57949,-0.0160143,0,0.2,0,0.719416
1714122669.928448638,2.01004,-1.59651,0.323633,1.02914,-1.57922,-0.0184882,0,0.2,0,0.719416
1714122670.078775991,2.01004,-1.59651,0.323633,1.05438,-1.5791,-0.0185697,0,0.2,0,0.719416
1714122670.228989009,2.01004,-1.59651,0.323633,1.09054,-1.5786,-0.0177101,0,0.2,0.0189474,0.719416
1714122670.379157694,2.01004,-1.59651,0.323633,1.1155,-1.58836,-0.0175476,0,0.2,0.0189474,0.719416
1714122670.529377129,2.01004,-1.59651,0.323633,1.14617,-1.58773,-0.0202903,0,0.2,0.0189474,0.719416
1714122670.679636231,2.01004,-1.59651,0.323633,1.17195,-1.58749,-0.0188881,0,0.2,0.0189474,0.719416
1714122670.829818041,2.01004,-1.59651,0.323633,1.1972,-1.58686,-0.0180009,0,0.2,0,0.719416
1714122670.980091727,2.01004,-1.59651,0.323633,1.23297,-1.5864,-0.0158561,0,0.2,0,0.719416
1714122671.130833249,2.01004,-1.59651,0.323633,1.25814,-1.58573,-0.0140129,0,0.2,0,0.719416
1714122671.281034018,2.01004,-1.59651,0.323633,1.28831,-1.58538,-0.015081,0,0.2,0,0.719416
1714122671.431221661,2.01004,-1.59651,0.323633,1.31887,-1.58483,-0.014211,0,0.2,0,0.719416
1714122672.168847230,2.29551,-1.4568,1.35551,1.44959,-1.58299,-0.0133725,0,0.2,0.132632,0.343084
1714122672.319182458,2.29551,-1.4568,1.35551,1.49465,-1.58253,-0.0118301,0,0.2,0.0947368,0.343084
1714122672.469381768,2.29551,-1.4568,1.35551,1.519,-1.58232,-0.000979113,0,0.2,0.0947368,0.343084
1714122672.619563286,2.29551,-1.4568,1.35551,1.54832,-1.58167,0.00616065,0,0.2,0.0947368,0.343084
1714122672.769739555,2.29551,-1.4568,1.35551,1.57334,-1.58131,0.0133421,0,0.2,0.0947368,0.343084
1714122672.919957240,2.29551,-1.4568,1.35551,1.59689,-1.5807,0.0244142,0,0.2,0.0947368,0.343084
1714122673.070169092,2.29551,-1.4568,1.35551,1.62794,-1.58024,0.0349333,0,0.2,0.0947368,0.343084
1714122673.220352651,2.29551,-1.4568,1.35551,1.66022,-1.5797,0.0487584,0,0.2,0.0568421,0.343084
1714122673.370547587,2.29551,-1.4568,1.35551,1.68835,-1.57944,0.0605397,0,0.2,0.0568421,0.343084
1714122673.520949023,2.29551,-1.4568,1.35551,1.71326,-1.57872,0.073371,0,0.2,0.0568421,0.343084
1714122673.672169175,2.29551,-1.4568,1.35551,1.74427,-1.57834,0.0838346,0,0.2,0.0189474,0.343084
1714122673.822546986,2.29551,-1.4568,1.35551,1.77609,-1.56807,0.0921008,0,0.2,0,0.343084
1714122673.972875214,2.29551,-1.4568,1.35551,1.80693,-1.56782,0.102344,0,0.2,0.0947368,0.343084
1714122674.123206067,2.29551,-1.4568,1.35551,1.83881,-1.56711,0.109414,0,0.2,0.0947368,0.343084
1714122674.273525253,2.29551,-1.4568,1.35551,1.85973,-1.56672,0.112306,0,0.2,0.0568421,0.343084
1714122674.427540760,2.29551,-1.4568,1.35551,1.89142,-1.55614,0.118193,0,0.2,0.0568421,0.343084
1714122674.577948030,2.29551,-1.4568,1.35551,1.92226,-1.55576,0.129215,0,0.177778,0.0568421,0.343084
1714122674.728375133,2.29551,-1.4568,1.35551,1.95393,-1.54496,0.13592,0,0.155556,0.0189474,0.343084
1714122674.878691694,2.29551,-1.4568,1.35551,1.97479,-1.54465,0.143049,0,0.155556,0.0947368,0.343084
1714122675.729484241,2.2568,-1.10449,2.92631,2.11301,-1.52286,0.182134,0,0.0666667,0.36,-0.2
1714122675.879878969,2.2568,-1.10449,2.92631,2.12395,-1.52268,0.202134,0,0.0666667,0.36,-0.2
1714122676.030074779,2.2568,-1.10449,2.92631,2.1353,-1.52153,0.229135,0,0.0666667,0.36,-0.2
1714122676.180291590,2.2568,-1.10449,2.92631,2.14615,-1.51109,0.277797,0,0.0666667,0.36,-0.2
1714122676.330515400,2.2568,-1.10449,2.92631,2.15725,-1.51045,0.329734,0,0.0666667,0.36,-0.2
1714122676.480682627,2.2568,-1.10449,2.92631,2.16797,-1.51027,0.355289,0,0.0666667,0.36,-0.2
1714122676.630863562,2.2568,-1.10449,2.92631,2.17958,-1.49988,0.410699,0,0.0666667,0.36,-0.2
1714122676.781044788,2.2568,-1.10449,2.92631,2.19009,-1.49981,0.454339,0,0.0666667,0.322105,-0.2
1714122676.931212890,2.2568,-1.10449,2.92631,2.19104,-1.48903,0.494443,0,0.0666667,0.322105,-0.2
1714122677.081384492,2.2568,-1.10449,2.92631,2.20105,-1.48902,0.55248,0,0.0666667,0.322105,-0.2
1714122677.231555510,2.2568,-1.10449,2.92631,2.21137,-1.47874,0.585335,0,0.0666667,0.36,-0.2
1714122677.381730320,2.2568,-1.10449,2.92631,2.22135,-1.47882,0.62905,0,0.0666667,0.36,-0.2
1714122677.531906588,2.2568,-1.10449,2.92631,2.22175,-1.46826,0.662405,0,0.0666667,0.322105,-0.2
1714122677.682099774,2.2568,-1.10449,2.92631,2.23214,-1.45837,0.71743,0,0.0666667,0.322105,-0.2
1714122677.832332626,2.2568,-1.10449,2.92631,2.24198,-1.45834,0.759634,0,0.0666667,0.36,-0.2
1714122677.982709271,2.2568,-1.10449,2.92631,2.25223,-1.44853,0.810872,0,0.0666667,0.36,-0.2
1714122678.133051499,2.2568,-1.10449,2.92631,2.25347,-1.4424,0.844601,0,0.0888889,0.36,-0.2
1714122678.283411810,2.2568,-1.10449,2.92631,2.26356,-1.4386,0.888617,0,0.177778,0.36,-0.2
1714122678.433741788,2.2568,-1.10449,2.92631,2.26486,-1.42845,0.93218,0,0.177778,0.322105,-0.2
1714122678.583923598,2.2568,-1.10449,2.92631,2.27552,-1.41906,0.976948,0,0.133333,0.322105,-0.2
1714122678.734111534,2.2568,-1.10449,2.92631,2.28669,-1.39978,1.03546,0,0.155556,0.36,-0.2
1714122678.884309094,2.2568,-1.10449,2.92631,2.29741,-1.38031,1.10287,0,0.155556,0.36,-0.2
1714122679.034726281,2.2568,-1.10449,2.92631,2.29797,-1.37042,1.13632,0,0.133333,0.322105,-0.2
1714122679.184917424,2.2568,-1.10449,2.92631,2.30902,-1.3509,1.19486,0,0.133333,0.36,-0.2
1714122679.335099818,2.2568,-1.10449,2.92631,2.32024,-1.3313,1.233,0,0.111111,0.246316,-0.2
1714122679.485273753,2.2568,-1.10449,2.92631,2.32137,-1.31125,1.28647,0,0.0888889,0.322105,-0.2
1714122679.635463147,2.2568,-1.10449,2.92631,2.32247,-1.30121,1.31667,0,0.0888889,0.36,-0.2
1714122679.785658374,2.2568,-1.10449,2.92631,2.33405,-1.28172,1.37435,0,0.0888889,0.36,-0.2
1714122680.564010266,1.95087,-1.07464,3.02449,2.34168,-1.22094,1.63307,0,0.0666667,0.36,0.9375
1714122681.311381664,1.65087,-1.07464,3.02449,2.33223,-1.16916,1.8714,0,0.0666667,0.36,1
1714122682.170175567,1.35087,-1.07464,3.02449,2.30201,-1.11697,2.13773,0,0.0888889,0.36,1
1714122682.932398166,1.05087,-1.07464,3.02449,2.26923,-1.07544,2.39454,0,0.155556,0.36,1
1714122683.082591060,1.05087,-1.07464,3.02449,2.26516,-1.07586,2.43269,0,0.177778,0.36,1
1714122683.232782203,1.05087,-1.07464,3.02449,2.24554,-1.06603,2.50047,0,0.2,0.36,1
1714122683.382965764,1.05087,-1.07464,3.02449,2.23596,-1.0564,2.56769,0,0.2,0.36,1
1714122683.533152241,1.05087,-1.07464,3.02449,2.22622,-1.04684,2.6064,0,0.2,0.322105,1
1714122683.683329384,1.05087,-1.07464,3.02449,2.19651,-1.03605,2.67142,0,0.2,0.36,1
1714122683.833605112,1.05087,-1.07464,3.02449,2.17667,-1.02569,2.72274,0,0.2,0.284211,1
1714122683.983791589,1.05087,-1.07464,3.02449,2.1468,-1.01491,2.77436,0,0.2,0.284211,1
1714122684.133992066,1.05087,-1.07464,3.02449,2.12642,-1.00451,2.81542,0,0.2,0.246316,1
1714122684.284195752,1.05087,-1.07464,3.02449,2.09653,-0.993519,2.86782,0,0.177778,0.322105,1
1714122684.434434146,1.05087,-1.07464,3.02449,2.06605,-0.992479,2.9092,0,0.2,0.284211,1
1714122684.584902958,1.05087,-1.07464,3.02449,2.0462,-0.981929,2.95047,0,0.2,0.284211,1
1714122685.411546483,0.750866,-1.07464,3.02449,1.8851,-0.967491,3.12656,0,0.2,0,1
1714122685.561742294,0.750866,-1.07464,3.02449,1.85485,-0.966598,3.13755,0,0.2,-0.0189474,1
1714122685.712134397,0.750866,-1.07464,3.02449,1.82418,-0.975419,-3.13961,0,0.2,-0.0189474,1
1714122685.862510751,0.750866,-1.07464,3.02449,1.79399,-0.974521,-3.13346,0,0.2,-0.0189474,1
1714122686.012930271,0.750866,-1.07464,3.02449,1.77367,-0.973642,-3.12896,0,0.2,-0.0189474,1
1714122686.163493002,0.750866,-1.07464,3.02449,1.7436,-0.972743,-3.12591,0,0.2,-0.0189474,1
1714122686.955245918,0.450866,-1.07464,3.02449,1.59322,-0.977801,-3.12846,0,0.2,-0.0189474,1
1714122687.105591354,0.450866,-1.07464,3.02449,1.55347,-0.976509,-3.13003,0,0.2,-0.0189474,1
1714122687.255922499,0.450866,-1.07464,3.02449,1.53355,-0.975792,-3.13029,0,0.2,-0.0189474,1
1714122687.407616905,0.450866,-1.07464,3.02449,1.50371,-0.974781,-3.13176,0,0.2,-0.0189474,1
1714122687.557976050,0.450866,-1.07464,3.02449,1.4841,-0.973778,-3.13296,0,0.2,-0.0189474,1
1714122687.708341612,0.450866,-1.07464,3.02449,1.44446,-0.97257,-3.13455,0,0.2,-0.0189474,1
1714122688.571899346,0.150866,-1.07464,3.02449,1.28638,-0.977047,3.14117,0,0.2,0.0568421,1
1714122688.722264324,0.150866,-1.07464,3.02449,1.25696,-0.975899,3.1404,0,0.2,0.0568421,1
1714122688.872592553,0.150866,-1.07464,3.02449,1.22728,-0.974746,3.14057,0,0.2,0.0568421,1
1714122689.022929531,0.150866,-1.07464,3.02449,1.19797,-0.973439,-3.13994,0,0.2,0.0568421,1
1714122689.173481469,0.150866,-1.07464,3.02449,1.16827,-0.972331,-3.13621,0,0.2,0.0568421,1
1714122689.323897782,0.150866,-1.07464,3.02449,1.1485,-0.971486,-3.13164,0,0.2,-0.0189474,1
1714122689.474216093,0.150866,-1.07464,3.02449,1.11207,-0.97026,-3.12326,0,0.2,-0.0189474,1
1714122690.302149088,-0.149134,-1.07464,3.02449,0.963784,-0.974598,-3.10431,0,0.2,-0.0189474,1
1714122690.452533025,-0.149134,-1.07464,3.02449,0.935097,-0.983801,-3.10425,0,0.2,-0.0568421,1
1714122690.602942045,-0.149134,-1.07464,3.02449,0.9055,-0.982977,-3.10782,0,0.2,-0.0568421,1
1714122690.753303232,-0.149134,-1.07464,3.02449,0.874789,-0.982148,-3.11131,0,0.2,-0.0189474,1
1714122690.903697086,-0.149134,-1.07464,3.02449,0.846131,-0.981408,-3.1146,0,0.2,-0.0189474,1
1714122691.804256529,-0.449134,-1.07464,3.02449,0.683659,-0.986205,-3.12049,0,0.2,0,1
1714122691.957022235,-0.449134,-1.07464,3.02449,0.655333,-0.984978,-3.12058,0,0.2,0.0189474,1
1714122692.107390422,-0.449134,-1.07464,3.02449,0.635534,-0.984364,-3.12024,0,0.2,0,1
1714122692.257771443,-0.449134,-1.07464,3.02449,0.598894,-0.990544,-3.11651,0,0.2,0,1
1714122692.408147213,-0.449134,-1.07464,3.02449,0.577093,-0.992662,-3.12113,0,0.2,0,1
1714122692.558604359,-0.449134,-1.07464,3.02449,0.54717,-0.991683,-3.12877,0,0.2,0,1
1714122707.454324151,-1.04913,-1.07464,3.02449,-0.362875,-0.437559,-3.07762,0,0.2,0.36,1
1714122722.282842005,-1.64913,-1.07464,3.02449,-1.25896,0.176201,3.09089,0,0.111111,0.36,1
1714122722.433022067,-1.64913,-1.07464,3.02449,-1.26972,0.176689,3.11476,0,0.0888889,0.36,1
1714122722.583200087,-1.64913,-1.07464,3.02449,-1.2801,0.177249,-3.12413,0,0.0666667,0.36,1
1714122722.733487483,-1.64913,-1.07464,3.02449,-1.28074,0.176833,-3.09625,0,0.111111,0.36,1
1714122722.883660545,-1.64913,-1.07464,3.02449,-1.29098,0.177276,-3.04691,0,0.111111,0.36,1
1714122723.033844981,-1.64913,-1.07464,3.02449,-1.30149,0.177203,-3.01331,0,0.133333,0.36,1
1714122723.184055960,-1.64913,-1.07464,3.02449,-1.31167,0.177356,-2.94207,0,0.111111,0.322105,1
1714122723.334278022,-1.64913,-1.07464,3.02449,-1.33277,0.167763,-2.89289,0,0.133333,0.322105,1
1714122723.484456334,-1.64913,-1.07464,3.02449,-1.34303,0.167908,-2.84341,0,0.133333,0.322105,1
1714122723.634630562,-1.64913,-1.07464,3.02449,-1.3543,0.158154,-2.79116,0,0.155556,0.36,1
1714122723.784796915,-1.64913,-1.07464,3.02449,-1.37521,0.149045,-2.73996,0,0.155556,0.36,1
1714122723.934969977,-1.64913,-1.07464,3.02449,-1.39646,0.140299,-2.68046,0,0.155556,0.36,1
1714122724.085141872,-1.64913,-1.07464,3.02449,-1.41308,0.1316,-2.63369,0,0.155556,0.36,1
1714122724.235322809,-1.64913,-1.07464,3.02449,-1.42914,0.123561,-2.59497,0,0.177778,0.36,1
1714122724.385495579,-1.64913,-1.07464,3.02449,-1.4502,0.11542,-2.53721,0,0.177778,0.36,1
1714122724.535673599,-1.64913,-1.07464,3.02449,-1.4718,0.1077,-2.49145,0,0.2,0.36,1
1714122724.685816327,-1.64913,-1.07464,3.02449,-1.48367,0.0887881,-2.45484,0,0.155556,0.36,1
1714122724.836196765,-1.64913,-1.07464,3.02449,-1.50609,0.0710454,-2.38318,0,0.155556,0.36,1
1714122724.986584496,-1.64913,-1.07464,3.02449,-1.52496,0.062411,-2.33238,0,0.177778,0.36,1
1714122725.137221019,-1.64913,-1.07464,3.02449,-1.53875,0.0527811,-2.289,0,0.2,0.36,1
1714122725.287548082,-1.64913,-1.07464,3.02449,-1.55044,0.0330514,-2.25391,0,0.2,0.36,1
1714122725.437947187,-1.64913,-1.07464,3.02449,-1.57242,0.0133028,-2.20354,0,0.2,0.322105,1
1714122725.588311292,-1.64913,-1.07464,3.02449,-1.5841,-0.0065531,-2.15772,0,0.2,0.36,1
1714122725.738493396,-1.64913,-1.07464,3.02449,-1.59677,-0.0369491,-2.1117,0,0.2,0.36,1
1714122725.888664124,-1.64913,-1.07464,3.02449,-1.61944,-0.0656514,-2.06086,0,0.2,0.322105,1
1714122726.038824061,-1.64913,-1.07464,3.02449,-1.63162,-0.0852579,-2.01636,0,0.2,0.284211,1
1714122740.886956425,-1.91524,-1.09912,1.84639,-2.55449,-0.845845,-1.96996,0,0,0,0.25
1714122741.037154863,-1.91524,-1.09912,1.84639,-2.55541,-0.847445,-1.97103,0,0,0,0.25
1714122741.187334925,-1.91524,-1.09912,1.84639,-2.55587,-0.848237,-1.97129,0,0,0,0.25
1714122741.337500987,-1.91524,-1.09912,1.84639,-2.55683,-0.84972,-1.97099,0,0,0,0.25
1714122741.487681633,-1.91524,-1.09912,1.84639,-2.55721,-0.850483,-1.97115,0,0,0,0.25
1714122741.637863445,-1.91524,-1.09912,1.84639,-2.55801,-0.852017,-1.97114,0,0,0,0.25
1714122741.788045258,-1.91524,-1.09912,1.84639,-2.55844,-0.852415,-1.97115,0,0,0,0.25
1714122741.938228528,-1.91524,-1.09912,1.84639,-2.55914,-0.853813,-1.97111,0,0,0,0.25
1714122742.088425216,-1.91524,-1.09912,1.84639,-2.55959,-0.854477,-1.97119,0,0,0,0.25
1714122742.238586903,-1.91524,-1.09912,1.84639,-2.56043,-0.855783,-1.97124,0,0,0,0.25
1714122742.388932342,-1.91524,-1.09912,1.84639,-2.56088,-0.85644,-1.97127,0,0,0,0.25
1714122742.539274572,-1.91524,-1.09912,1.84639,-2.5619,-0.857676,-1.97128,0,0,0,0.25
1714122742.690350642,-1.91524,-1.09912,1.84639,-2.56235,-0.858273,-1.97128,0,0,0,0.25
1714122742.840717955,-1.91524,-1.09912,1.84639,-2.56316,-0.859393,-1.97138,0,0,0,0.25
1714122742.991067186,-1.91524,-1.09912,1.84639,-2.56404,-0.860411,-1.97135,0,0,0,0.25
1714122743.141454042,-1.91524,-1.09912,1.84639,-2.56428,-0.861444,-1.97135,0,0,0,0.25
1714122743.291638479,-1.91524,-1.09912,1.84639,-2.56471,-0.862029,-1.97138,0,0,0,0.25
1714122743.441807166,-1.91524,-1.09912,1.84639,-2.56563,-0.86316,-1.9714,0,0,0,0.25
1714122743.591977604,-1.91524,-1.09912,1.84639,-2.56604,-0.863949,-1.97138,0,0,0,0.25
1714122743.742144541,-1.91524,-1.09912,1.84639,-2.5669,-0.865326,-1.97138,0,0,0,0.25
1714122743.892317020,-1.91524,-1.09912,1.84639,-2.56765,-0.866557,-1.97134,0,0,0,0.25
1714122744.042491249,-1.91524,-1.09912,1.84639,-2.56798,-0.867267,-1.97134,0,0,0,0.25
1714122744.192694937,-1.91524,-1.09912,1.84639,-2.56835,-0.867873,-1.97134,0,0,0,0.25
1714122744.342886666,-1.91524,-1.09912,1.84639,-2.5692,-0.869008,-1.97134,0,0,0,0.25
1714122744.493070228,-1.91524,-1.09912,1.84639,-2.56961,-0.869732,-1.97132,0,0,0,0.25
1714122744.643243291,-1.91524,-1.09912,1.84639,-2.57031,-0.871146,-1.97129,0,0,0,0.25
1714122744.793414603,-1.91524,-1.09912,1.84639,-2.571,-0.87234,-1.97128,0,0,0,0.25
1714122744.943594957,-1.91524,-1.09912,1.84639,-2.57134,-0.873086,-1.97131,0,0,0,0.25
1714122745.093767436,-1.91524,-1.09912,1.84639,-2.57185,-0.873444,-1.97128,0,0,0,0.25
1714122745.243985416,-1.91524,-1.09912,1.84639,-2.57256,-0.874401,-1.97126,0,0,0,0.25
1714122745.394152936,-1.91524,-1.09912,1.84639,-2.57288,-0.874985,-1.97123,0,0,0,0.25
1714122745.544335624,-1.91524,-1.09912,1.84639,-2.57366,-0.876386,-1.9713,0,0,0,0.25
1714122745.694524145,-1.91524,-1.09912,1.84639,-2.57436,-0.877655,-1.97132,0,0,0,0.25
1714122745.844706832,-1.91524,-1.09912,1.84639,-2.57474,-0.878236,-1.97126,0,0,0,0.25
1714122745.994885145,-1.91524,-1.09912,1.84639,-2.57511,-0.878822,-1.97124,0,0,0,0.25
1714122746.145060832,-1.91524,-1.09912,1.84639,-2.57582,-0.879805,-1.97127,0,0,0,0.25
1714122746.295239728,-1.91524,-1.09912,1.84639,-2.57664,-0.880654,-1.97126,0,0,0,0.25
1714122746.445393540,-1.91524,-1.09912,1.84639,-2.57695,-0.881483,-1.97118,0,0,0,0.25
1714122746.595730229,-1.91524,-1.09912,1.84639,-2.57726,-0.882154,-1.97116,0,0,0,0.25
1714122746.746087918,-1.91524,-1.09912,1.84639,-2.578,-0.883673,-1.97114,0,0,0,0.25
1714122746.896511524,-1.91524,-1.09912,1.84639,-2.57857,-0.883957,-1.97118,0,0,0,0.25
1714122747.046930755,-1.91524,-1.09912,1.84639,-2.57939,-0.884889,-1.97116,0,0,0,0.25
1714122747.197349695,-1.91524,-1.09912,1.84639,-2.58009,-0.885956,-1.97119,0,0,0,0.25
1714122747.347735092,-1.91524,-1.09912,1.84639,-2.5804,-0.886504,-1.9712,0,0,0,0.25
1714122747.498072073,-1.91524,-1.09912,1.84639,-2.58075,-0.88722,-1.97121,0,0,0,0.25
1714122747.648410803,-1.91524,-1.09912,1.84639,-2.58138,-0.888678,-1.97126,0,0,0,0.25
1714122747.798589407,-1.91524,-1.09912,1.84639,-2.58213,-0.890164,-1.97133,0,0,0,0.25
1714122747.948781720,-1.91524,-1.09912,1.84639,-2.58244,-0.890807,-1.97136,0,0,0,0.25
1714122748.098970824,-1.91524,-1.09912,1.84639,-2.58309,-0.891721,-1.97139,0,0,0,0.25
1714122748.249147387,-1.91524,-1.09912,1.84639,-2.58361,-0.892192,-1.97133,0,0,0,0.25
1714122748.399345241,-1.91524,-1.09912,1.84639,-2.58402,-0.892748,-1.97131,0,0,0,0.25
1714122748.549546595,-1.91524,-1.09912,1.84639,-2.58476,-0.893665,-1.97138,0,0,0,0.25
1714122748.699840992,-1.91524,-1.09912,1.84639,-2.58563,-0.894231,-1.97139,0,0,0,0.25
1714122748.850010263,-1.91524,-1.09912,1.84639,-2.58607,-0.894571,-1.97145,0,0,0,0.25
1714122749.000197909,-1.91524,-1.09912,1.84639,-2.58689,-0.895443,-1.97142,0,0,0,0.25
1714122749.150391388,-1.91524,-1.09912,1.84639,-2.58715,-0.896061,-1.97137,0,0,0,0.25
1714122749.300571743,-1.91524,-1.09912,1.84639,-2.58789,-0.896856,-1.97139,0,0,0,0.25
1714122749.450852723,-1.91524,-1.09912,1.84639,-2.58822,-0.897052,-1.97147,0,0,0,0.25
1714122749.601027244,-1.91524,-1.09912,1.84639,-2.58889,-0.898049,-1.97149,0,0,0,0.25
1714122749.751197389,-1.91524,-1.09912,1.84639,-2.58931,-0.898261,-1.97157,0,0,0,0.25
1714122749.901393202,-1.91524,-1.09912,1.84639,-2.59015,-0.898745,-1.97158,0,0,0,0.25
1714122750.051844225,-1.91524,-1.09912,1.84639,-2.5905,-0.899484,-1.97161,0,0,0,0.25
1714122750.202218248,-1.91524,-1.09912,1.84639,-2.59112,-0.900514,-1.97157,0,0,0,0.25
1714122750.352543853,-1.91524,-1.09912,1.84639,-2.59146,-0.901139,-1.97165,0,0,0,0.25
1714122750.502892792,-1.91524,-1.09912,1.84639,-2.59204,-0.90209,-1.97171,0,0,0,0.25
1714122750.653258940,-1.91524,-1.09912,1.84639,-2.5923,-0.902742,-1.97167,0,0,1,0.25
1714122750.803670588,-1.91524,-1.09912,1.84639,-2.59261,-0.903027,-1.97175,0,0,1,0.25
1714122750.954017193,-1.91524,-1.09912,1.84639,-2.59331,-0.903831,-1.96624,0,0,1,0.25
1714122751.104210964,-1.91524,-1.09912,1.84639,-2.59526,-0.914661,-1.9022,0,0,1,0.25
1714122751.254391319,-1.91524,-1.09912,1.84639,-2.60536,-0.913858,-1.85256,0,0,1,0.25
1714122751.404570506,-1.91524,-1.09912,1.84639,-2.60531,-0.914691,-1.76741,0,0,1,0.25
1714122751.554784986,-1.91524,-1.09912,1.84639,-2.60583,-0.915818,-1.69647,0,0,1,0.25
1714122751.704964174,-1.91524,-1.09912,1.84639,-2.59632,-0.918707,-1.57109,0,0,1,0.25
1714122751.855132569,-1.91524,-1.09912,1.84639,-2.59639,-0.919934,-1.42691,0,0,1,0.25
1714122752.005314382,-1.91524,-1.09912,1.84639,-2.59669,-0.920321,-1.2934,0,0,1,0.25
1714122752.155508445,-1.91524,-1.09912,1.84639,-2.5979,-0.920145,-1.15388,0,0,1,0.25
1714122752.305700466,-1.91524,-1.09912,1.84639,-2.59828,-0.920025,-1.01347,0,0,1,0.25
1714122752.455964529,-1.91524,-1.09912,1.84639,-2.59946,-0.91957,-0.862916,0,0,1,0.25
1714122752.606143425,-1.91524,-1.09912,1.84639,-2.59987,-0.919456,-0.741115,0,0,1,0.25
1714122752.756322613,-1.91524,-1.09912,1.84639,-2.60094,-0.919212,-0.59946,0,0,1,0.25
1714122752.906494509,-1.91524,-1.09912,1.84639,-2.60207,-0.918662,-0.479006,0,0,1,0.25
1714122753.056753906,-1.91524,-1.09912,1.84639,-2.60269,-0.918158,-0.341567,0,0,1,0.25
1714122753.207142512,-1.91524,-1.09912,1.84639,-2.60374,-0.917658,-0.222806,0,0,1,0.25
1714122753.357514784,-1.91524,-1.09912,1.84639,-2.60394,-0.917527,-0.0296197,0,0,1,0.25
1714122753.507849140,-1.91524,-1.09912,1.84639,-2.60452,-0.916959,0.0962149,0,0,1,0.25
1714122753.658026869,-1.91524,-1.09912,1.84639,-2.60559,-0.916245,0.229475,0,0,1,0.25
1714122753.808211016,-1.91524,-1.09912,1.84639,-2.60581,-0.916128,0.360007,0,0,1,0.25
1714122753.958402453,-1.91524,-1.09912,1.84639,-2.60702,-0.915224,0.525068,0,0,1,0.25
1714122754.108725434,-1.91524,-1.09912,1.84639,-2.60716,-0.915221,0.669528,0,0,1,0.25
1714122754.258918330,-1.91524,-1.09912,1.84639,-2.6071,-0.915143,0.794749,0,0,1,0.25
1714122754.409104810,-1.91524,-1.09912,1.84639,-2.60726,-0.915659,0.95956,0,0,1,0.25
1714122754.559278456,-1.91524,-1.09912,1.84639,-2.60699,-0.916747,1.10669,0,0,1,0.25
1714122754.709446852,-1.91524,-1.09912,1.84639,-2.60737,-0.921181,1.27714,0,0,1,0.25
1714122754.859629248,-1.91524,-1.09912,1.84639,-2.60789,-0.924806,1.36409,0,0,1,0.25
1714122755.009989854,-1.91524,-1.09912,1.84639,-2.60788,-0.927933,1.51159,0,0,1,0.25
1714122755.160405585,-1.91524,-1.09912,1.84639,-2.6078,-0.929223,1.66022,0,0,1,0.25
1714122755.310788649,-1.91524,-1.09912,1.84639,-2.6087,-0.934921,1.82134,0,0,1,0.25
1714122755.461119213,-1.91524,-1.09912,1.84639,-2.60904,-0.936786,1.92562,0,0,1,0.25
1714122755.611455902,-1.91524,-1.09912,1.84639,-2.60948,-0.935321,2.06986,0,0,1,0.25
1714122755.761799592,-1.91524,-1.09912,1.84639,-2.60954,-0.935382,2.25937,0,0,1,0.25
1714122755.912422699,-1.91524,-1.09912,1.84639,-2.61042,-0.933523,2.40422,0,0,1,0.25
1714122756.062755597,-1.91524,-1.09912,1.84639,-2.61074,-0.93254,2.5182,0,0,1,0.25
1714122756.213541748,-1.91524,-1.09912,1.84639,-2.61115,-0.93164,2.65254,0,0,1,0.25
1714122756.363974979,-1.91524,-1.09912,1.84639,-2.61163,-0.931435,2.77468,0,0,1,0.25
1714122756.514338210,-1.91524,-1.09912,1.84639,-2.61188,-0.930664,2.97943,0,0,1,0.25
1714122756.664669066,-1.91524,-1.09912,1.84639,-2.61209,-0.929475,3.08058,0,0,1,0.25
1714122756.816580184,-1.91524,-1.09912,1.84639,-2.61219,-0.928237,-3.03575,0,0,1,0.25
1714122756.966991832,-1.91524,-1.09912,1.84639,-2.61295,-0.927235,-2.90668,0,0,1,0.25
1714122757.117490397,-1.91524,-1.09912,1.84639,-2.61451,-0.925374,-2.77583,0,0,1,0.25
1714122757.267675419,-1.91524,-1.09912,1.84639,-2.61513,-0.923788,-2.5971,0,0,1,0.25
1714122757.417907982,-1.91524,-1.09912,1.84639,-2.61571,-0.923674,-2.48439,0,0,1,0.25
1714122757.568088045,-1.91524,-1.09912,1.84639,-2.61612,-0.923758,-2.311,0,0,1,0.25
1714122757.718254108,-1.91524,-1.09912,1.84639,-2.61747,-0.924036,-2.16325,0,0,0.680645,0.25
1714122757.868450504,-1.91524,-1.09912,1.84639,-2.61803,-0.924165,-2.04414,0,0,0.680645,0.25
1714122758.018671692,-1.91524,-1.09912,1.84639,-2.61885,-0.924622,-1.89238,0,0,0.680645,0.25
1714122758.168864005,-1.91524,-1.09912,1.84639,-2.61899,-0.926186,-1.79936,0,0,0.680645,0.25
1714122758.319034735,-1.91524,-1.09912,1.84639,-2.61919,-0.927823,-1.69084,0,0,0.680645,0.25
1714122758.469201964,-1.91524,-1.09912,1.84639,-2.61934,-0.928435,-1.64718,0,0,0.680645,0.25
1714122758.619369194,-1.91524,-1.09912,1.84639,-2.61971,-0.930117,-1.64531,0,0,0.680645,0.25
1714122758.769535548,-1.91524,-1.09912,1.84639,-2.61987,-0.930789,-1.65546,0,0,0.680645,0.25
1714122758.919705111,-1.91524,-1.09912,1.84639,-2.62033,-0.931553,-1.65502,0,0,0.680645,0.25
1714122759.069906174,-1.91524,-1.09912,1.84639,-2.6205,-0.932221,-1.65023,0,0,0.680645,0.25
1714122759.220163237,-1.91524,-1.09912,1.84639,-2.62092,-0.933902,-1.65086,0,0,0.680645,0.25
1714122759.370401343,-1.91524,-1.09912,1.84639,-2.6211,-0.934617,-1.65107,0,0,0.680645,0.25
1714122759.520574114,-1.91524,-1.09912,1.84639,-2.62144,-0.935932,-1.65113,0,0,0.680645,0.25
1714122759.670761177,-1.91524,-1.09912,1.84639,-2.62178,-0.935924,-1.65111,0,0,0.680645,0.25
1714122759.820941531,-1.91524,-1.09912,1.84639,-2.62217,-0.937028,-1.65124,0,0,0.680645,0.25
1714122759.971113719,-1.91524,-1.09912,1.84639,-2.6222,-0.937913,-1.65121,0,0,0.680645,0.25
1714122760.121291449,-1.91524,-1.09912,1.84639,-2.62248,-0.938866,-1.65126,0,0,0.680645,0.25
1714122760.271464512,-1.91524,-1.09912,1.84639,-2.62267,-0.939192,-1.65128,0,0,0.680645,0.25
1714122760.421656241,-1.91524,-1.09912,1.84639,-2.62294,-0.940463,-1.65129,0,0,0.680645,0.25
1714122760.572025889,-1.91524,-1.09912,1.84639,-2.62308,-0.94126,-1.6513,0,0,0.680645,0.25
1714122760.722496746,-1.91524,-1.09912,1.84639,-2.62342,-0.942114,-1.65136,0,0,0.680645,0.25
1714122760.872858227,-1.91524,-1.09912,1.84639,-2.62362,-0.942709,-1.65145,0,0,0.680645,0.25
1714122761.023507294,-1.91524,-1.09912,1.84639,-2.62387,-0.94466,-1.65148,0,0,0.680645,0.25
1714122761.173891817,-1.91524,-1.09912,1.84639,-2.62396,-0.945435,-1.65151,0,0,0.680645,0.25
1714122761.324249798,-1.91524,-1.09912,1.84639,-2.62433,-0.94648,-1.65158,0,0,0.680645,0.25
1714122761.474584154,-1.91524,-1.09912,1.84639,-2.62449,-0.94721,-1.65162,0,0,0.680645,0.25
1714122761.624970718,-1.91524,-1.09912,1.84639,-2.62481,-0.949048,-1.65173,0,0,0.680645,0.25
1714122761.775286407,-1.91524,-1.09912,1.84639,-2.62499,-0.949723,-1.65175,0,0,0.680645,0.25
1714122761.925470554,-1.91524,-1.09912,1.84639,-2.62527,-0.950936,-1.65174,0,0,0.680645,0.25
1714122762.075865869,-1.91524,-1.09912,1.84639,-2.62541,-0.951543,-1.65173,0,0,0.680645,0.25
1714122762.226071598,-1.91524,-1.09912,1.84639,-2.62576,-0.952227,-1.65176,0,0,0.680645,0.25
1714122762.376244953,-1.91524,-1.09912,1.84639,-2.62592,-0.953048,-1.65179,0,0,0.680645,0.25
1714122762.526417433,-1.91524,-1.09912,1.84639,-2.6263,-0.954426,-1.65183,0,0,0.680645,0.25
1714122762.676591079,-1.91524,-1.09912,1.84639,-2.62651,-0.955037,-1.65189,0,0,0.680645,0.25
1714122762.826775225,-1.91524,-1.09912,1.84639,-2.62659,-0.956714,-1.65193,0,0,0,0.25
1714122762.976943038,-1.91524,-1.09912,1.84639,-2.62674,-0.957357,-1.65195,0,0,0,0.25
1714122763.127135643,-1.91524,-1.09912,1.84639,-2.62711,-0.95876,-1.65196,0,0,0,0.25
1714122763.277503249,-1.91524,-1.09912,1.84639,-2.62741,-0.959271,-1.65199,0,0,0,0.25
1714122763.427850147,-1.91524,-1.09912,1.84639,-2.62766,-0.960804,-1.65202,0,0,0,0.25
1714122763.578194128,-1.91524,-1.09912,1.84639,-2.62782,-0.961599,-1.65203,0,0,0,0.25
1714122763.728563484,-1.91524,-1.09912,1.84639,-2.62796,-0.962869,-1.652,0,0,0,0.25
1714122763.878762214,-1.91524,-1.09912,1.84639,-2.62811,-0.963439,-1.65208,0,0,0,0.25
1714122764.028966194,-1.91524,-1.09912,1.84639,-2.62844,-0.964689,-1.65209,0,0,0,0.25
1714122764.179132549,-1.91524,-1.09912,1.84639,-2.62867,-0.96522,-1.65207,0,0,0,0.25
1714122764.329308528,-1.91524,-1.09912,1.84639,-2.62901,-0.965923,-1.65204,0,0,0,0.25
1714122764.479496758,-1.91524,-1.09912,1.84639,-2.62907,-0.966623,-1.65206,0,0,0,0.25
1714122764.629687030,-1.91524,-1.09912,1.84639,-2.62943,-0.967425,-1.65211,0,0,0,0.25
1714122764.780026052,-1.91524,-1.09912,1.84639,-2.62959,-0.967769,-1.65217,0,0,0,0.25
1714122764.930360117,-1.91524,-1.09912,1.84639,-2.62994,-0.968518,-1.65215,0,0,0,0.25
1714122765.080692431,-1.91524,-1.09912,1.84639,-2.63016,-0.969037,-1.65214,0,0,0,0.25
1714122765.231084829,-1.91524,-1.09912,1.84639,-2.63051,-0.969445,-1.65215,0,0,0,0.25
1714122765.381446894,-1.91524,-1.09912,1.84639,-2.63055,-0.969431,-1.65223,0,0,0,0.25
1714122765.531825292,-1.91524,-1.09912,1.84639,-2.63075,-0.969701,-1.65229,0,0,0,0.25
1714122765.682205440,-1.91524,-1.09912,1.84639,-2.63089,-0.969493,-1.65232,0,0,0,0.25
1714122765.832568088,-1.91524,-1.09912,1.84639,-2.63115,-0.969885,-1.65239,0,0,0,0.25
1714122765.982905652,-1.91524,-1.09912,1.84639,-2.63129,-0.970706,-1.65237,0,0,0,0.25
1714122766.133251967,-1.91524,-1.09912,1.84639,-2.63137,-0.972121,-1.65241,0,0,0,0.25
1714122766.283590114,-1.91524,-1.09912,1.84639,-2.6315,-0.972935,-1.65239,0,0,0,0.25
1714122766.433935845,-1.91524,-1.09912,1.84639,-2.63177,-0.9745,-1.6524,0,0,0,0.25
1714122766.584277493,-1.91524,-1.09912,1.84639,-2.63188,-0.974592,-1.65242,0,0,0,0.25
1714122766.734513265,-1.91524,-1.09912,1.84639,-2.63203,-0.976277,-1.65248,0,0,0,0.25
1714122766.884687787,-1.91524,-1.09912,1.84639,-2.63203,-0.976882,-1.65247,0,0,0,0.25
1714122767.034855891,-1.91524,-1.09912,1.84639,-2.63225,-0.979598,-1.65251,0,0,0,0.25
1714122767.185024288,-1.91524,-1.09912,1.84639,-2.6324,-0.989851,-1.65252,0,0,0,0.25
1714122767.335192976,-1.91524,-1.09912,1.84639,-2.63265,-0.99186,-1.65252,0,0,0,0.25
1714122767.485373039,-1.91524,-1.09912,1.84639,-2.63277,-0.992611,-1.65253,0,0,0,0.25
1714122767.635569727,-1.91524,-1.09912,1.84639,-2.63306,-0.993405,-1.65254,0,0,0,0.25
1714122767.785759416,-1.91524,-1.09912,1.84639,-2.63319,-0.993176,-1.65248,0,0,0,0.25
1714122767.935946770,-1.91524,-1.09912,1.84639,-2.63345,-0.993578,-1.65251,0,0,0,0.25
1714122768.086322544,-1.91524,-1.09912,1.84639,-2.63356,-0.993989,-1.65255,0,0,1,0.25
1714122768.236662150,-1.91524,-1.09912,1.84639,-2.63382,-0.994123,-1.64936,0,0,1,0.25
1714122768.386845130,-1.91524,-1.09912,1.84639,-2.63393,-0.994213,-1.60472,0,0,1,0.25
1714122768.537024609,-1.91524,-1.09912,1.84639,-2.63416,-0.995082,-1.51128,0,0,1,0.25
1714122768.687246090,-1.91524,-1.09912,1.84639,-2.63631,-1.00212,-1.38329,0,0,1,0.25
1714122768.837419153,-1.91524,-1.09912,1.84639,-2.63733,-1.00581,-1.26057,0,0,1,0.25
1714122768.987596299,-1.91524,-1.09912,1.84639,-2.63792,-1.00511,-1.15757,0,0,1,0.25
1714122769.137775779,-1.91524,-1.09912,1.84639,-2.63867,-1.00432,-1.0624,0,0,1,0.25
1714122769.287967801,-1.91524,-1.09912,1.84639,-2.63892,-1.00389,-0.90287,0,0,1,0.25
1714122769.438140864,-1.91524,-1.09912,1.84639,-2.63976,-1.00304,-0.767534,0,0,1,0.25
1714122769.588540262,-1.91524,-1.09912,1.84639,-2.63987,-1.00255,-0.61064,0,0,1,0.25
1714122769.738730826,-1.91524,-1.09912,1.84639,-2.64075,-1.00188,-0.485655,0,0,1,0.25
1714122769.888905639,-1.91524,-1.09912,1.84639,-2.641,-1.00103,-0.357282,0,0,1,0.25
1714122770.039074327,-1.91524,-1.09912,1.84639,-2.64194,-0.999952,-0.255169,0,0,1,0.25
1714122770.189244474,-1.91524,-1.09912,1.84639,-2.64255,-0.999486,-0.0836575,0,0,1,0.25
1714122770.339440287,-1.91524,-1.09912,1.84639,-2.64288,-0.998534,0.0366255,0,0,1,0.25
1714122770.489657392,-1.91524,-1.09912,1.84639,-2.64304,-0.998003,0.207986,0,0,1,0.25
1714122770.639824622,-1.91524,-1.09912,1.84639,-2.64349,-0.997262,0.365433,0,0,1,0.25
1714122770.790013144,-1.91524,-1.09912,1.84639,-2.64391,-0.996906,0.478526,0,0,1,0.25
1714122770.940467376,-1.91524,-1.09912,1.84639,-2.64424,-0.996132,0.612167,0,0,1,0.25
1714122771.090816316,-1.91524,-1.09912,1.84639,-2.64427,-0.995749,0.766381,0,0,1,0.25
1714122771.241215422,-1.91524,-1.09912,1.84639,-2.64402,-0.994923,0.868166,0,0,1,0.25
1714122771.391557945,-1.91524,-1.09912,1.84639,-2.64384,-0.994735,1.03361,0,0,1,0.25
1714122771.541957052,-1.91524,-1.09912,1.84639,-2.64336,-0.994802,1.17252,0,0,1,0.25
1714122771.695690227,-1.91524,-1.09912,1.84639,-2.64362,-0.99339,1.31785,0,0,1,0.25
1714122771.846073000,-1.91524,-1.09912,1.84639,-2.64339,-0.991517,1.44737,0,0,1,0.25
1714122771.996443231,-1.91524,-1.09912,1.84639,-2.64345,-0.991568,1.59594,0,0,1,0.25
1714122772.146777296,-1.91524,-1.09912,1.84639,-2.64342,-0.992412,1.76492,0,0,1,0.25
1714122772.297133819,-1.91524,-1.09912,1.84639,-2.64391,-0.990198,1.87642,0,0,1,0.25
1714122772.447471675,-1.91524,-1.09912,1.84639,-2.64437,-0.987374,2.01099,0,0,1,0.25
1714122772.597653780,-1.91524,-1.09912,1.84639,-2.64438,-0.98699,2.14855,0,0,1,0.25
1714122772.747877886,-1.91524,-1.09912,1.84639,-2.6443,-0.987589,2.34345,0,0,1,0.25
1714122772.898020032,-1.91524,-1.09912,1.84639,-2.64487,-0.98552,2.46028,0,0,1,0.25
1714122773.048209137,-1.91524,-1.09912,1.84639,-2.64511,-0.984442,2.58626,0,0,1,0.25
1714122773.198395326,-1.91524,-1.09912,1.84639,-2.64527,-0.983562,2.7061,0,0,1,0.25
1714122773.348590847,-1.91524,-1.09912,1.84639,-2.64562,-0.982664,2.86402,0,0,1,0.25
1714122773.498952329,-1.91524,-1.09912,1.84639,-2.64576,-0.982214,2.96249,0,0,1,0.25
1714122773.649129476,-1.91524,-1.09912,1.84639,-2.64589,-0.980743,-3.11341,0,0,1,0.25
1714122773.799299914,-1.91524,-1.09912,1.84639,-2.64631,-0.979564,-3.00411,0,0,1,0.25
1714122773.949478227,-1.91524,-1.09912,1.84639,-2.64676,-0.977921,-2.89286,0,0,1,0.25
1714122774.099652749,-1.91524,-1.09912,1.84639,-2.6471,-0.976905,-2.71299,0,0,1,0.25
1714122774.249820271,-1.91524,-1.09912,1.84639,-2.64802,-0.97383,-2.58487,0,0,1,0.25
1714122774.399992459,-1.91524,-1.09912,1.84639,-2.64848,-0.97225,-2.44132,0,0,1,0.25
1714122774.550199356,-1.91524,-1.09912,1.84639,-2.64882,-0.97187,-2.30091,0,0,1,0.25
1714122774.700390211,-1.91524,-1.09912,1.84639,-2.64998,-0.971219,-2.18045,0,0,1,0.25
1714122774.850673234,-1.91524,-1.09912,1.84639,-2.65038,-0.97124,-2.02657,0,0,1,0.25
1714122775.000849214,-1.91524,-1.09912,1.84639,-2.65109,-0.971147,-1.87352,0,0,1,0.25
1714122775.151038319,-1.91524,-1.09912,1.84639,-2.65101,-0.971008,-1.80112,0,0,0.564657,0.25
1714122775.301253382,-1.91524,-1.09912,1.84639,-2.6509,-0.971951,-1.60851,0,0,0.564657,0.25
1714122775.451467863,-1.91524,-1.09912,1.84639,-2.65103,-0.972638,-1.47204,0,0,0.564657,0.25
1714122775.601638301,-1.91524,-1.09912,1.84639,-2.65107,-0.973636,-1.37555,0,0,0.564657,0.25
1714122775.751831781,-1.91524,-1.09912,1.84639,-2.65124,-0.973651,-1.33245,0,0,0.564657,0.25
1714122775.902011553,-1.91524,-1.09912,1.84639,-2.6516,-0.974172,-1.31331,0,0,0.564657,0.25
1714122776.052184908,-1.91524,-1.09912,1.84639,-2.65181,-0.974144,-1.3242,0,0,0.564657,0.25
1714122776.202356222,-1.91524,-1.09912,1.84639,-2.65219,-0.974129,-1.32853,0,0,0.564657,0.25
1714122776.352539202,-1.91524,-1.09912,1.84639,-2.6524,-0.974101,-1.32512,0,0,0.564657,0.25
1714122776.502716640,-1.91524,-1.09912,1.84639,-2.6529,-0.974113,-1.32682,0,0,0.564657,0.25
1714122776.652891745,-1.91524,-1.09912,1.84639,-2.65306,-0.97418,-1.32651,0,0,0.564657,0.25
1714122776.803072684,-1.91524,-1.09912,1.84639,-2.6533,-0.974353,-1.3263,0,0,0.564657,0.25
1714122776.953246914,-1.91524,-1.09912,1.84639,-2.65342,-0.974575,-1.32635,0,0,0.564657,0.25
1714122777.103485019,-1.91524,-1.09912,1.84639,-2.65392,-0.974314,-1.32632,0,0,0.564657,0.25
1714122777.253885585,-1.91524,-1.09912,1.84639,-2.65422,-0.974469,-1.3263,0,0,0.564657,0.25
1714122777.404231316,-1.91524,-1.09912,1.84639,-2.65448,-0.974863,-1.32633,0,0,0.564657,0.25
1714122777.554559548,-1.91524,-1.09912,1.84639,-2.65463,-0.974874,-1.32647,0,0,0.564657,0.25
1714122777.704893904,-1.91524,-1.09912,1.84639,-2.65504,-0.974813,-1.32646,0,0,0.564657,0.25
1714122777.855270844,-1.91524,-1.09912,1.84639,-2.65529,-0.974682,-1.32653,0,0,0.564657,0.25
1714122778.005616284,-1.91524,-1.09912,1.84639,-2.65572,-0.9749,-1.32653,0,0,0.564657,0.25
1714122778.155998766,-1.91524,-1.09912,1.84639,-2.65598,-0.974721,-1.32653,0,0,0.564657,0.25
1714122778.306348872,-1.91524,-1.09912,1.84639,-2.65647,-0.974513,-1.32664,0,0,0.564657,0.25
1714122778.456537686,-1.91524,-1.09912,1.84639,-2.65666,-0.974538,-1.3266,0,0,0.564657,0.25
1714122778.606712791,-1.91524,-1.09912,1.84639,-2.65706,-0.974534,-1.32657,0,0,0.564657,0.25
1714122778.756885271,-1.91524,-1.09912,1.84639,-2.65732,-0.974572,-1.32653,0,0,0.564657,0.25
1714122778.907068543,-1.91524,-1.09912,1.84639,-2.65778,-0.974527,-1.32656,0,0,0.564657,0.25
1714122779.057240731,-1.91524,-1.09912,1.84639,-2.65804,-0.974349,-1.32667,0,0,0.564657,0.25
1714122779.207419045,-1.91524,-1.09912,1.84639,-2.65856,-0.974266,-1.32667,0,0,0.564657,0.25
1714122779.357594150,-1.91524,-1.09912,1.84639,-2.65885,-0.974258,-1.32668,0,0,0.564657,0.25
1714122779.507763714,-1.91524,-1.09912,1.84639,-2.65919,-0.974296,-1.32666,0,0,0.564657,0.25
1714122779.657942027,-1.91524,-1.09912,1.84639,-2.65942,-0.974437,-1.32673,0,0,0.564657,0.25
1714122779.808146299,-1.91524,-1.09912,1.84639,-2.6598,-0.974325,-1.32673,0,0,0.564657,0.25
1714122779.958326654,-1.91524,-1.09912,1.84639,-2.65994,-0.974608,-1.32679,0,0,0.564657,0.25
1714122780.108496801,-1.91524,-1.09912,1.84639,-2.66033,-0.974657,-1.32681,0,0,0.564657,0.25
1714122780.258676865,-1.91524,-1.09912,1.84639,-2.66048,-0.974939,-1.32681,0,0,0,0.25

View File

@ -1,189 +0,0 @@
time,goalx,goaly,goaltheta,currentx,currenty,currenttheta,flag,linearx,anglez
1714294492.742365722,-2.09681,-1.59004,-0.0680199,-0.632859,0.00443821,-0.0059326,0,0.0666667,-0.36,0
1714294492.892669738,-2.09681,-1.59004,-0.0680199,-0.633907,0.00428672,-0.0130709,0,0.0666667,-0.36,0
1714294493.042937294,-2.09681,-1.59004,-0.0680199,-0.635945,0.00411284,-0.0437145,0,0.0666667,-0.36,0
1714294493.193208059,-2.09681,-1.59004,-0.0680199,-0.636968,0.00402474,-0.0663737,0,0.0666667,-0.284211,0
1714294493.343480866,-2.09681,-1.59004,-0.0680199,-0.629038,0.00410646,-0.116341,0,0.0666667,-0.322105,0
1714294493.493738798,-2.09681,-1.59004,-0.0680199,-0.62005,0.0039987,-0.152549,0,0.0666667,-0.284211,0
1714294493.644001105,-2.09681,-1.59004,-0.0680199,-0.612029,0.00323719,-0.195247,0,0.0666667,-0.284211,0
1714294493.794237745,-2.09681,-1.59004,-0.0680199,-0.612964,0.00289243,-0.229,0,0.0666667,-0.322105,0
1714294493.944510260,-2.09681,-1.59004,-0.0680199,-0.604888,0.00212645,-0.260792,0,0.0666667,-0.36,0
1714294494.094770817,-2.09681,-1.59004,-0.0680199,-0.595861,0.0018335,-0.288696,0,0.0666667,-0.36,0
1714294494.245036915,-2.09681,-1.59004,-0.0680199,-0.587719,-0.00896161,-0.354172,0,0.0666667,-0.322105,0
1714294494.395298347,-2.09681,-1.59004,-0.0680199,-0.58978,-0.00941434,-0.386376,0,0.0666667,-0.322105,0
1714294494.545563570,-2.09681,-1.59004,-0.0680199,-0.580814,-0.00941404,-0.430425,0,0.0666667,-0.36,0
1714294494.695815085,-2.09681,-1.59004,-0.0680199,-0.571715,-0.0191399,-0.471864,0,0.0666667,-0.36,0
1714294494.846084975,-2.09681,-1.59004,-0.0680199,-0.563973,-0.0186725,-0.529284,0,0.0666667,-0.36,0
1714294494.996346407,-2.09681,-1.59004,-0.0680199,-0.564859,-0.0284063,-0.547979,0,0.0666667,-0.36,0
1714294495.146619506,-2.09681,-1.59004,-0.0680199,-0.557097,-0.027935,-0.618423,0,0.0666667,-0.36,0
1714294495.296880646,-2.09681,-1.59004,-0.0680199,-0.547993,-0.0375548,-0.662713,0,0.0666667,-0.36,0
1714294495.447152578,-2.09681,-1.59004,-0.0680199,-0.540413,-0.0364674,-0.722412,0,0.0666667,-0.36,0
1714294495.597454843,-2.09681,-1.59004,-0.0680199,-0.541362,-0.0458955,-0.758887,0,0.0666667,-0.36,0
1714294495.747724149,-2.09681,-1.59004,-0.0680199,-0.53337,-0.0547138,-0.819645,0,0.0666667,-0.36,0
1714294495.897979456,-2.09681,-1.59004,-0.0680199,-0.534515,-0.0541062,-0.858166,0,0.0666667,-0.36,0
1714294496.048244096,-2.09681,-1.59004,-0.0680199,-0.526489,-0.0624431,-0.907254,0,0.0666667,-0.322105,0
1714294496.198394695,-2.09681,-1.59004,-0.0680199,-0.528408,-0.0713073,-0.951371,0,0.0666667,-0.36,0
1714294496.348537710,-2.09681,-1.59004,-0.0680199,-0.519544,-0.0703369,-1.00896,0,0.0666667,-0.36,0
1714294496.498685683,-2.09681,-1.59004,-0.0680199,-0.52137,-0.0787503,-1.06841,0,0.0666667,-0.36,0
1714294496.648828115,-2.09681,-1.59004,-0.0680199,-0.512198,-0.0885338,-1.09864,0,0.0666667,-0.36,0
1714294496.798968213,-2.09681,-1.59004,-0.0680199,-0.514245,-0.0965567,-1.15608,0,0.0666667,-0.36,0
1714294496.949109478,-2.09681,-1.59004,-0.0680199,-0.515043,-0.105647,-1.20251,0,0.155556,-0.36,0
1714294497.099253952,-2.09681,-1.59004,-0.0680199,-0.507568,-0.103618,-1.24841,0,0.0666667,-0.36,0
1714294497.249396092,-2.09681,-1.59004,-0.0680199,-0.50805,-0.122939,-1.31776,0,0.111111,-0.36,0
1714294497.399542315,-2.09681,-1.59004,-0.0680199,-0.510356,-0.131553,-1.37496,0,0.177778,-0.36,0
1714294497.549698747,-2.09681,-1.59004,-0.0680199,-0.51127,-0.141107,-1.42907,0,0.2,-0.36,0
1714294497.699840012,-2.09681,-1.59004,-0.0680199,-0.513242,-0.154761,-1.47509,0,0.2,-0.36,0
1714294497.849981861,-2.09681,-1.59004,-0.0680199,-0.513808,-0.178267,-1.54784,0,0.155556,-0.36,0
1714294498.000119042,-2.09681,-1.59004,-0.0680199,-0.515607,-0.18689,-1.5825,0,0.2,-0.36,0
1714294498.150262349,-2.09681,-1.59004,-0.0680199,-0.515547,-0.216075,-1.64026,0,0.2,-0.36,0
1714294498.300406531,-2.09681,-1.59004,-0.0680199,-0.517285,-0.234106,-1.69561,0,0.2,-0.36,0
1714294498.450553921,-2.09681,-1.59004,-0.0680199,-0.527634,-0.263272,-1.75592,0,0.2,-0.36,0
1714294498.600665728,-2.09681,-1.59004,-0.0680199,-0.529167,-0.287625,-1.79723,0,0.2,-0.36,0
1714294498.750809618,-2.09681,-1.59004,-0.0680199,-0.539151,-0.311768,-1.85751,0,0.2,-0.36,0
1714294498.900957591,-2.09681,-1.59004,-0.0680199,-0.54951,-0.338028,-1.89861,0,0.2,-0.36,0
1714294499.051106440,-2.09681,-1.59004,-0.0680199,-0.559161,-0.362979,-1.94942,0,0.2,-0.36,0
1714294499.201248871,-2.09681,-1.59004,-0.0680199,-0.569635,-0.383801,-1.98628,0,0.2,-0.36,0
1714294499.351391595,-2.09681,-1.59004,-0.0680199,-0.579011,-0.414335,-2.02995,0,0.2,-0.36,0
1714294499.501529360,-2.09681,-1.59004,-0.0680199,-0.598873,-0.435107,-2.08591,0,0.2,-0.284211,0
1714294499.651676167,-2.09681,-1.59004,-0.0680199,-0.608963,-0.465284,-2.13761,0,0.2,-0.322105,0
1714294499.801827640,-2.09681,-1.59004,-0.0680199,-0.620088,-0.475463,-2.16689,0,0.2,-0.284211,0
1714294499.951968322,-2.09681,-1.59004,-0.0680199,-0.639806,-0.49629,-2.20934,0,0.2,-0.246316,0
1714294500.102112795,-2.09681,-1.59004,-0.0680199,-0.659121,-0.526882,-2.2576,0,0.2,-0.208421,0
1714294500.252248519,-2.09681,-1.59004,-0.0680199,-0.679568,-0.546815,-2.29845,0,0.2,-0.132632,0
1714294500.402392409,-2.09681,-1.59004,-0.0680199,-0.70005,-0.566866,-2.34453,0,0.2,-0.132632,0
1714294500.552527257,-2.09681,-1.59004,-0.0680199,-0.710021,-0.586801,-2.37934,0,0.2,-0.132632,0
1714294500.702672314,-2.09681,-1.59004,-0.0680199,-0.730591,-0.606715,-2.41025,0,0.2,-0.0947368,0
1714294500.852811537,-2.09681,-1.59004,-0.0680199,-0.750815,-0.616978,-2.43087,0,0.2,-0.0947368,0
1714294501.002960969,-2.09681,-1.59004,-0.0680199,-0.781274,-0.637373,-2.45641,0,0.2,-0.0947368,0
1714294501.153219193,-2.09681,-1.59004,-0.0680199,-0.791465,-0.647385,-2.47135,0,0.2,-0.0568421,0
1714294501.303483541,-2.09681,-1.59004,-0.0680199,-0.821807,-0.667881,-2.49244,0,0.2,-0.0568421,0
1714294501.453721931,-2.09681,-1.59004,-0.0680199,-0.841707,-0.688255,-2.50441,0,0.2,-0.0189474,0
1714294501.604038779,-2.09681,-1.59004,-0.0680199,-0.862029,-0.698451,-2.51831,0,0.2,-0.0189474,0
1714294501.754311003,-2.09681,-1.59004,-0.0680199,-0.889164,-0.718682,-2.52785,0,0.2,-0.0189474,0
1714294501.904598101,-2.09681,-1.59004,-0.0680199,-0.912055,-0.728989,-2.53306,0,0.2,-0.0189474,0
1714294502.054844950,-2.09681,-1.59004,-0.0680199,-0.939236,-0.749238,-2.53994,0,0.2,0,0
1714294502.205123007,-2.09681,-1.59004,-0.0680199,-0.952258,-0.75936,-2.54197,0,0.2,-0.0189474,0
1714294502.355400188,-2.09681,-1.59004,-0.0680199,-0.982252,-0.779212,-2.5445,0,0.2,0,0
1714294502.505658995,-2.09681,-1.59004,-0.0680199,-0.992206,-0.789253,-2.54513,0,0.2,0,0
1714294502.655908469,-2.09681,-1.59004,-0.0680199,-1.02925,-0.809551,-2.54715,0,0.2,0,0
1714294502.806169025,-2.09681,-1.59004,-0.0680199,-1.05167,-0.829618,-2.54899,0,0.2,0.0189474,0
1714294502.956417040,-2.09681,-1.59004,-0.0680199,-1.08135,-0.845975,-2.5476,0,0.2,0.0189474,0
1714294503.106721639,-2.09681,-1.59004,-0.0680199,-1.10086,-0.860304,-2.54733,0,0.2,0.0189474,0
1714294503.256983654,-2.09681,-1.59004,-0.0680199,-1.12064,-0.870418,-2.54612,0,0.177778,0.0189474,0
1714294503.407258502,-2.09681,-1.59004,-0.0680199,-1.1403,-0.880404,-2.54471,0,0.2,0.0189474,0
1714294503.557525767,-2.09681,-1.59004,-0.0680199,-1.16716,-0.900404,-2.54191,0,0.2,0,0
1714294503.707796824,-2.09681,-1.59004,-0.0680199,-1.18914,-0.920198,-2.53755,0,0.2,0.0568421,0
1714294503.858054464,-2.09681,-1.59004,-0.0680199,-1.2087,-0.930437,-2.53424,0,0.2,0.0189474,0
1714294504.008320854,-2.09681,-1.59004,-0.0680199,-1.22799,-0.950725,-2.53136,0,0.2,-0.0189474,0
1714294504.158574994,-2.09681,-1.59004,-0.0680199,-1.25699,-0.961148,-2.52714,0,0.2,0.0189474,0
1714294504.308834676,-2.09681,-1.59004,-0.0680199,-1.2755,-0.981927,-2.52344,0,0.2,0,0
1714294504.459073650,-2.09681,-1.59004,-0.0680199,-1.30443,-1.00283,-2.52029,0,0.2,-0.0189474,0
1714294504.609217540,-2.09681,-1.59004,-0.0680199,-1.32312,-1.01346,-2.51623,0,0.177778,0,0
1714294504.759366972,-2.09681,-1.59004,-0.0680199,-1.35205,-1.03411,-2.51437,0,0.2,0,0
1714294504.909509987,-2.09681,-1.59004,-0.0680199,-1.36094,-1.04336,-2.5125,0,0.2,-0.0189474,0
1714294505.059639585,-2.09681,-1.59004,-0.0680199,-1.3898,-1.06387,-2.51649,0,0.2,-0.0189474,0
1714294505.209789017,-2.09681,-1.59004,-0.0680199,-1.41542,-1.08106,-2.51655,0,0.2,0.0189474,0
1714294505.359937282,-2.09681,-1.59004,-0.0680199,-1.42742,-1.09411,-2.51677,0,0.2,-0.0189474,0
1714294505.510093130,-2.09681,-1.59004,-0.0680199,-1.45565,-1.11162,-2.51762,0,0.2,-0.0189474,0
1714294505.660232645,-2.09681,-1.59004,-0.0680199,-1.47457,-1.12516,-2.51987,0,0.2,0,0
1714294505.810380035,-2.09681,-1.59004,-0.0680199,-1.49275,-1.13552,-2.51864,0,0.2,0,0
1714294505.960512259,-2.09681,-1.59004,-0.0680199,-1.5113,-1.15621,-2.52044,0,0.2,0.0189474,0
1714294506.110653816,-2.09681,-1.59004,-0.0680199,-1.53921,-1.16711,-2.5193,0,0.2,-0.0189474,0
1714294506.260785456,-2.09681,-1.59004,-0.0680199,-1.55777,-1.18764,-2.52113,0,0.2,-0.0189474,0
1714294506.410934012,-2.09681,-1.59004,-0.0680199,-1.57575,-1.198,-2.51782,0,0.177778,-0.0189474,0
1714294506.561079944,-2.09681,-1.59004,-0.0680199,-1.60186,-1.21858,-2.51965,0,0.2,0.0189474,0
1714294506.711226751,-2.09681,-1.59004,-0.0680199,-1.62229,-1.22841,-2.52244,0,0.2,-0.0568421,0
1714294506.861377058,-2.09681,-1.59004,-0.0680199,-1.64686,-1.24879,-2.52025,0,0.2,-0.0947368,0
1714294507.011518906,-2.09681,-1.59004,-0.0680199,-1.6589,-1.25851,-2.52128,0,0.2,0.0189474,0
1714294507.161680880,-2.09681,-1.59004,-0.0680199,-1.68736,-1.27923,-2.52718,0,0.2,0.0189474,0
1714294507.311842561,-2.09681,-1.59004,-0.0680199,-1.70519,-1.28929,-2.52786,0,0.177778,0,0
1714294507.462120035,-2.09681,-1.59004,-0.0680199,-1.73357,-1.3101,-2.52675,0,0.177778,-0.0189474,0
1714294507.612400717,-2.09681,-1.59004,-0.0680199,-1.75079,-1.33052,-2.5268,0,0.2,-0.0189474,0
1714294507.762654273,-2.09681,-1.59004,-0.0680199,-1.76934,-1.34107,-2.52648,0,0.2,-0.0568421,0
1714294507.912976663,-2.09681,-1.59004,-0.0680199,-1.78611,-1.36197,-2.52435,0,0.177778,-0.0568421,0
1714294508.063229053,-2.09681,-1.59004,-0.0680199,-1.81158,-1.37282,-2.52435,0,0.177778,-0.0568421,0
1714294508.213495152,-2.09681,-1.59004,-0.0680199,-1.82185,-1.38299,-2.52487,0,0.155556,0.0189474,0
1714294508.363742000,-2.09681,-1.59004,-0.0680199,-1.84998,-1.40379,-2.52634,0,0.155556,-0.0568421,0
1714294508.514006640,-2.09681,-1.59004,-0.0680199,-1.86272,-1.41381,-2.52431,0,0.133333,-0.0568421,0
1714294508.664224614,-2.09681,-1.59004,-0.0680199,-1.87596,-1.42393,-2.52324,0,0.133333,-0.0568421,0
1714294508.814518129,-2.09681,-1.59004,-0.0680199,-1.8933,-1.43409,-2.52706,0,0.111111,-0.0568421,0
1714294508.964767019,-2.09681,-1.59004,-0.0680199,-1.91173,-1.4446,-2.52777,0,0.111111,-0.0568421,0
1714294509.115042159,-2.09681,-1.59004,-0.0680199,-1.91918,-1.45389,-2.53044,0,0.111111,0,0
1714294509.265293383,-2.09681,-1.59004,-0.0680199,-1.93766,-1.46426,-2.53131,0,0.0888889,-0.0568421,0
1714294509.415563564,-2.09681,-1.59004,-0.0680199,-1.9549,-1.47462,-2.53545,0,0.0888889,0,0
1714294509.565803121,-2.09681,-1.59004,-0.0680199,-1.96334,-1.48446,-2.53989,0,0.0888889,0,0
1714294509.716064261,-2.09681,-1.59004,-0.0680199,-1.97043,-1.49456,-2.54122,0,0.0666667,0.0568421,0
1714294509.866364485,-2.09681,-1.59004,-0.0680199,-1.97924,-1.49471,-2.54341,0,0,0.5,0
1714294510.016630875,-2.09681,-1.59004,-0.0680199,-1.98613,-1.5048,-2.54185,0,0,0.5,0
1714294510.166946265,-2.09681,-1.59004,-0.0680199,-1.99467,-1.50529,-2.54044,0,0,0.5,0
1714294510.317212655,-2.09681,-1.59004,-0.0680199,-1.9914,-1.51575,-2.52548,0,0,0.5,0
1714294510.467462420,-2.09681,-1.59004,-0.0680199,-1.99978,-1.51603,-2.49791,0,0,0.5,0
1714294510.617762060,-2.09681,-1.59004,-0.0680199,-1.99664,-1.51629,-2.47731,0,0,0.5,0
1714294510.768010075,-2.09681,-1.59004,-0.0680199,-2.00499,-1.52655,-2.44686,0,0,0.5,0
1714294510.918278799,-2.09681,-1.59004,-0.0680199,-2.0015,-1.52711,-2.4197,0,0,0.5,0
1714294511.068524772,-2.09681,-1.59004,-0.0680199,-1.99972,-1.52735,-2.3824,0,0,0.5,0
1714294511.218787079,-2.09681,-1.59004,-0.0680199,-1.99636,-1.52801,-2.34908,0,0,0.5,0
1714294511.369051136,-2.09681,-1.59004,-0.0680199,-1.99478,-1.52844,-2.32311,0,0,0.5,0
1714294511.519318692,-2.09681,-1.59004,-0.0680199,-1.99183,-1.52932,-2.28691,0,0,0.5,0
1714294511.669571083,-2.09681,-1.59004,-0.0680199,-1.99226,-1.53937,-2.24004,0,0,0.5,0
1714294511.819836014,-2.09681,-1.59004,-0.0680199,-1.98984,-1.53931,-2.20809,0,0,0.5,0
1714294511.970104738,-2.09681,-1.59004,-0.0680199,-1.98871,-1.53925,-2.16962,0,0,0.5,0
1714294512.120410503,-2.09681,-1.59004,-0.0680199,-1.98634,-1.53925,-2.12484,0,0,0.5,0
1714294512.270655018,-2.09681,-1.59004,-0.0680199,-1.98539,-1.53941,-2.10259,0,0,0.5,0
1714294512.420908575,-2.09681,-1.59004,-0.0680199,-1.9835,-1.5395,-2.05215,0,0,0.5,0
1714294512.571167965,-2.09681,-1.59004,-0.0680199,-1.98264,-1.53966,-2.00989,0,0,0.5,0
1714294512.721429688,-2.09681,-1.59004,-0.0680199,-1.98081,-1.54048,-1.96075,0,0,0.5,0
1714294512.871692870,-2.09681,-1.59004,-0.0680199,-1.97988,-1.54089,-1.91107,0,0,0.5,0
1714294513.021949343,-2.09681,-1.59004,-0.0680199,-1.97787,-1.54232,-1.85443,0,0,0.5,0
1714294513.172206108,-2.09681,-1.59004,-0.0680199,-1.977,-1.54283,-1.81598,0,0,0.5,0
1714294513.322527332,-2.09681,-1.59004,-0.0680199,-1.97511,-1.54397,-1.75064,0,0,0.5,0
1714294513.472803347,-2.09681,-1.59004,-0.0680199,-1.97416,-1.54416,-1.7176,0,0,0.5,0
1714294513.623090154,-2.09681,-1.59004,-0.0680199,-1.97213,-1.5446,-1.61917,0,0,0.5,0
1714294513.773340794,-2.09681,-1.59004,-0.0680199,-1.97115,-1.54479,-1.56821,0,0,0.5,0
1714294513.923661726,-2.09681,-1.59004,-0.0680199,-1.96921,-1.54493,-1.48955,0,0,0.5,0
1714294514.073904491,-2.09681,-1.59004,-0.0680199,-1.96832,-1.54531,-1.43821,0,0,0.5,0
1714294514.224050131,-2.09681,-1.59004,-0.0680199,-1.96646,-1.54643,-1.35938,0,0,0.5,0
1714294514.374187021,-2.09681,-1.59004,-0.0680199,-1.96549,-1.54682,-1.27538,0,0,0.5,0
1714294514.524334994,-2.09681,-1.59004,-0.0680199,-1.96359,-1.54741,-1.19879,0,0,0.5,0
1714294514.674477426,-2.09681,-1.59004,-0.0680199,-1.96258,-1.54767,-1.12608,0,0,0.5,0
1714294514.824632400,-2.09681,-1.59004,-0.0680199,-1.9606,-1.5485,-1.04686,0,0,0.5,0
1714294514.974769581,-2.09681,-1.59004,-0.0680199,-1.95958,-1.5488,-0.981914,0,0,0.5,0
1714294515.124914930,-2.09681,-1.59004,-0.0680199,-1.95767,-1.54907,-0.925413,0,0,0.5,0
1714294515.275058820,-2.09681,-1.59004,-0.0680199,-1.95663,-1.5494,-0.869716,0,0,0.5,0
1714294515.425207668,-2.09681,-1.59004,-0.0680199,-1.95449,-1.5505,-0.763806,0,0,0.5,0
1714294515.575351267,-2.09681,-1.59004,-0.0680199,-1.95356,-1.55091,-0.702162,0,0,0.5,0
1714294515.725497198,-2.09681,-1.59004,-0.0680199,-1.95147,-1.5514,-0.625342,0,0.0666667,0.170526,0
1714294515.875641963,-2.09681,-1.59004,-0.0680199,-1.9506,-1.55122,-0.561992,0,0.0666667,0.0568421,0
1714294516.025786145,-2.09681,-1.59004,-0.0680199,-1.94855,-1.55158,-0.505532,0,0.0666667,0.132632,0
1714294516.175928869,-2.09681,-1.59004,-0.0680199,-1.93901,-1.55698,-0.465054,0,0.0666667,0.0947368,0
1714294516.326073342,-2.09681,-1.59004,-0.0680199,-1.93708,-1.55737,-0.454279,0,0.0666667,0.170526,0
1714294516.476214315,-2.09681,-1.59004,-0.0680199,-1.92766,-1.56284,-0.432726,0,0.0666667,0.132632,0
1714294516.626357622,-2.09681,-1.59004,-0.0680199,-1.91437,-1.56403,-0.395177,0,0.0666667,0.132632,0
1714294516.776496846,-2.09681,-1.59004,-0.0680199,-1.91106,-1.56069,-0.361241,0,0.0666667,0.132632,0
1714294516.926641611,-2.09681,-1.59004,-0.0680199,-1.90079,-1.56679,-0.330736,0,0.0666667,0.0947368,0
1714294517.076778792,-2.09681,-1.59004,-0.0680199,-1.89139,-1.57265,-0.307707,0,0.0666667,0.0947368,0
1714294517.226919183,-2.09681,-1.59004,-0.0680199,-1.88962,-1.57373,-0.277561,0,0.0666667,0.132632,0
1714294517.377058698,-2.09681,-1.59004,-0.0680199,-1.88023,-1.57977,-0.244967,0,0.0666667,0.0947368,0
1714294517.527207254,-2.09681,-1.59004,-0.0680199,-1.87836,-1.5809,-0.22284,0,0.0666667,0.0568421,0
1714294517.677363686,-2.09681,-1.59004,-0.0680199,-1.86368,-1.57851,-0.202397,0,0.0666667,0.0189474,0
1714294517.827507576,-2.09681,-1.59004,-0.0680199,-1.85352,-1.58465,-0.173147,0,0.0666667,0.0947368,0
1714294517.977655258,-2.09681,-1.59004,-0.0680199,-1.85272,-1.58491,-0.150289,0,0.0666667,0.0947368,0
1714294518.127800023,-2.09681,-1.59004,-0.0680199,-1.83738,-1.58232,-0.133705,0,0.0666667,0.0947368,0
1714294518.277943913,-2.09681,-1.59004,-0.0680199,-1.82803,-1.58839,-0.123001,0,0.0666667,0.0947368,0
1714294518.428141178,-2.09681,-1.59004,-0.0680199,-1.82635,-1.58943,-0.115858,0,0.0666667,0.0568421,0
1714294518.578404652,-2.09681,-1.59004,-0.0680199,-1.81179,-1.58676,-0.0855624,0,0.0666667,0.0568421,0
1714294518.728691750,-2.09681,-1.59004,-0.0680199,-1.80169,-1.59272,-0.0712337,0,0.0666667,0.0947368,0
1714294518.878955224,-2.09681,-1.59004,-0.0680199,-1.79233,-1.59844,-0.0652722,0,0.0666667,0.0568421,0
1714294519.029218989,-2.09681,-1.59004,-0.0680199,-1.78553,-1.59089,-0.0565546,0,0.0666667,0.0568421,0
1714294519.179503462,-2.09681,-1.59004,-0.0680199,-1.7762,-1.59678,-0.0524107,0,0.0666667,0.0568421,0
1714294519.329776852,-2.09681,-1.59004,-0.0680199,-1.77471,-1.59746,-0.0479487,0,0.0666667,0.0568421,0
1714294519.480034201,-2.09681,-1.59004,-0.0680199,-1.77389,-1.59791,-0.0321589,0,0.0666667,0.132632,0
1714294519.630300007,-2.09681,-1.59004,-0.0680199,-1.75851,-1.59599,-0.0238352,0,0.0666667,0.0189474,0
1714294519.780611022,-2.09681,-1.59004,-0.0680199,-1.74927,-1.6019,-0.0119596,0,0.0666667,0.0568421,0
1714294519.930887621,-2.09681,-1.59004,-0.0680199,-1.74769,-1.60253,-0.00319862,0,0.0666667,0,0
1714294520.081147303,-2.09681,-1.59004,-0.0680199,-1.73315,-1.59978,0.00942361,0,0.0666667,0,0
1714294520.231418943,-2.09681,-1.59004,-0.0680199,-1.73158,-1.60061,0.0185577,0,0.0666667,0.0568421,0
1714294520.381683291,-2.09681,-1.59004,-0.0680199,-1.72229,-1.60629,0.0289766,0,0.0666667,-0.0189474,0
1714294520.531946765,-2.09681,-1.59004,-0.0680199,-1.70703,-1.60356,0.0415114,0,0.0666667,0,0
1714294520.682223071,-2.09681,-1.59004,-0.0680199,-1.69258,-1.60029,0.0467577,0,0.0666667,-0.0189474,0
1714294520.832511920,-2.09681,-1.59004,-0.0680199,-1.69116,-1.60083,0.0482278,0,0.0666667,-0.0947368,0

Some files were not shown because too many files have changed in this diff Show More