Changeset 6341


Ignore:
Timestamp:
Feb 13, 2009, 5:16:00 PM (15 years ago)
Author:
rwilson
Message:

Rough GUI mapped out.

Location:
misc/tools/plotcsv
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • misc/tools/plotcsv/plotcsv.py

    r6338 r6341  
    1515import pylab
    1616
     17try:
     18    import wx
     19except ImportError:
     20    import tkinter_error
     21    msg = ('Sorry, you have to install WxPython.\n'
     22           'Get it from either:\n'
     23           r'   N:\georisk\downloads\event_selection, or' '\n'
     24           '   [http://www.wxpython.org/download.php#binaries].')
     25    tkinter_error.tkinter_error(msg)
     26    print msg
     27    sys.exit(1)
     28
     29Imported_PyEmbeddedImage = True
     30try:
     31    from wx.lib.embeddedimage import PyEmbeddedImage
     32except ImportError:
     33    Imported_PyEmbeddedImage = False
     34
     35
     36# program name and version
     37APP_NAME = 'plotcsv'
     38APP_VERSION = '0.1'
     39
     40# name of the configuration filename
     41# GUI values are saved in this file for next time
     42ConfigFilename = '%s.cfg' % APP_NAME
     43
     44# GUI definitions
     45BUTTON_WIDTH = 100
     46BUTTON_HEIGHT = 30
     47
     48MARGIN = 10
     49
     50LAB_CTRL_OFFSET = 3
     51
     52BOX_WIDTH = 400
     53BOX_HEIGHT = 360
     54BOX_CSV_WIDTH = 400
     55BOX_CSV_HEIGHT = 265
     56BOX_PLOT_WIDTH = 400
     57BOX_PLOT_HEIGHT = 90
     58
     59TXT_CSVFILE_WIDTH = 390
     60TXT_CSVFILE_HEIGHT = 200
     61
     62COLLAB_X_OFFSET = 20
     63
     64CHBOX_HEIGHT = 30
     65CHBOX_WIDTH = 100
     66
     67FORM_WIDTH = BOX_WIDTH + 15
     68FORM_HEIGHT = 405
     69
     70START_YOFFSET = 7
     71OUT_TEXT_XOFFSET = 8
     72OUT_TEXT_YOFFSET = 11
     73OUTPUT_BOX_HEIGHT = 45
     74
     75GEN_YOFFSET = 15
     76GEN_DELTAY = 15
     77GEN_LABELXOFFSET = 5
     78GEN_TEXTXOFFSET = BOX_WIDTH/2 + GEN_LABELXOFFSET + 10
     79
     80TEXTLIST_WIDTH = BOX_WIDTH - 10
     81TEXTLIST_HEIGHT = 200
     82
     83CTL_WIDTH = BOX_WIDTH / 2
     84CTL_HEIGHT = 22
     85
     86DOUBLE_BUTTON_OFFSET = 8
     87
     88COMBO_FUDGE = 2
     89
     90# Copies of various parameters
     91Region = ''
     92GaugeNumber = ''
     93MinimumHeight = ''
     94MaximumHeight = ''
    1795
    1896# Flag strings - keys in the 'options' dictionary
     
    26104X_LABEL = 'x_label'
    27105Y_LABEL = 'y_label'
     106
     107
     108################################################################################
     109# This code was generated by img2py.py
     110# Embed the ICON image here, so we don't need an external *.ico file.
     111################################################################################
     112
     113if Imported_PyEmbeddedImage:
     114    def getIcon():
     115        return PyEmbeddedImage(
     116    "iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAApxJ"
     117    "REFUWIXtlr9O40AQh2edWwsKJFAarGtcRaElJWkoo4TGZegocqLME6TOC6CtaWjCFXRUfgJE"
     118    "xStsiivuKiQ4ND8Kx/bu+k+cUKRhpC0ie+f7sjs7a0FEoB3GDyIiYDcOQgjydkI24lvgW2Bj"
     119    "gctLolaLaG+P6OiI6PCQSIh89HpEy+VmOdE0lAKI1o8oArSuycMKAQegVQ9qDJeymUCdhGIF"
     120    "yRLE1FzAhZ+dATc3wN0d8PiYg9z3XAkLbgl0u4DnAePxWvja5XXen0zK4RFHhoA5lNoabs4z"
     121    "Uw4finDN2hAIw/xtKQGltoanMZut5k4U6K0IB2AIaJ0QVrQPT+LaU1vD0xg+2PDuSwJXCggC"
     122    "UwAoSLyTxC9SpfAFLxBwAJ99THlavg1uwS0i0LHGcGiurHMKbucav0Uu8V9I/JsrK7FmjRM+"
     123    "yRL77CPmuBbefUngxeNqCKR7HpDGPUWFmkjhEUf5v1qNkMNMoqzaNWtMJsU+kQmMx/bDq4HG"
     124    "68CW0LdzC97iFtrctiSmPC2Fpzvc7yenvd9PfmcC+/s56/x8tedGTehjQnQvssSSJRQrxBwj"
     125    "5LCwIi68KqwV8LykHz0/mxuuoa8GiBZ5YvnhQXFeF2USTeCWQFVo1oheBzn8jaCuPatZpRId"
     126    "7sBnHyMeJXCtgaen2vNbK+AWnHwXUJNiYZZP1slylt1Sp6eZVKVAAc4S6u/c6hO1Em7JV1yV"
     127    "pQKl8HTPnWZVKpH14PX3dUGgFm4ub5WEewvNZvZc54KxBBrB6ySmU+DgoHgPu2FIZAIbwask"
     128    "zNHrrf9oCIxPMrO3N4LXSYQhEMeNpmcCKVywaA43JUYjwPeBTqcx3BIIOYTHHi74YjP4F4OI"
     129    "IIgI9JOI2kS0JKI/m33TfzU+ASG0bvT61fpzAAAAAElFTkSuQmCC")
    28130
    29131
     
    132234
    133235
    134 ##
    135 # @brief Help for the befuddled user.
    136 def usage():
    137     print 'usage: %s <options> <filename>' % (ProgName)
    138     print 'where <filename> is the path to the data file to plot'
    139     print '  and <options>  is zero or more of:'
    140     print '                   -x <datacol> where <datacol> is a column specifier,'
    141     print '                   -y <datacol>     either a number or a header string'
    142     print '                   -v <range>   force a range in Y axis values, of the form'
    143     print '                                    <min>,<max>, eq, "-5,10"'
    144     print '                   -s <min,max> sets PNG output picture size'
    145     sys.exit(10)
     236class MyFrame(wx.Frame):
     237    def __init__(self, parent, id, title, pos=wx.DefaultPosition,
     238                    size=wx.DefaultSize, style=wx.DEFAULT_FRAME_STYLE):
     239        # Make the frame
     240        wx.Frame.__init__(self, parent, id, title, pos=(50, 50),
     241                            size=(FORM_WIDTH, FORM_HEIGHT),
     242                            style=(wx.DEFAULT_FRAME_STYLE &
     243                                   ~ (wx.RESIZE_BOX | wx.MAXIMIZE_BOX |
     244                                      wx.RESIZE_BORDER)))
     245
     246        p = self.panel = wx.Panel(self, -1)
     247
     248        if Imported_PyEmbeddedImage:
     249            tsunami = getIcon()
     250            icon = tsunami.GetIcon()
     251            self.SetIcon(icon)
     252       
     253        self.Center()
     254        self.Show(True)
     255
     256        # start laying out controls
     257        Y_OFFSET = START_YOFFSET
     258        wx.StaticBox(p, -1, 'CSV files', (3, Y_OFFSET),
     259                     size=(BOX_CSV_WIDTH, BOX_CSV_HEIGHT))
     260
     261##        wx.StaticText(p, -1, 'Minimum wave height',
     262##                      pos=(GEN_LABELXOFFSET, Y_OFFSET),
     263##                      size=(CTL_WIDTH, CTL_HEIGHT), style=wx.ALIGN_RIGHT)
     264##        self.txtMinH = wx.TextCtrl(p, -1, size=(100, 20),
     265##                                   pos=(GEN_TEXTXOFFSET, Y_OFFSET))
     266        Y_OFFSET += GEN_DELTAY
     267
     268##        self.lstGenerate = wx.ListCtrl(p, -1, pos=(8, Y_OFFSET),
     269##                                       size=(TEXTLIST_WIDTH,TEXTLIST_HEIGHT),
     270##                                       style=wx.LC_SINGLE_SEL)
     271##        self.txtCSVFiles = wx.TextCtrl(p, -1,
     272##                        "Here is a looooooooooooooong line of text set in the control.\n\n"
     273##                        "The quick brown fox jumped over the lazy dog...",
     274##                       pos=(8, Y_OFFSET), size=(TXT_CSVFILE_WIDTH,TXT_CSVFILE_HEIGHT), style=wx.TE_MULTILINE|wx.TE_PROCESS_ENTER)
     275        self.txtCSVFiles = wx.ListBox(p, -1, pos=(8, Y_OFFSET), size=(TXT_CSVFILE_WIDTH,TXT_CSVFILE_HEIGHT))
     276        Y_OFFSET += TXT_CSVFILE_HEIGHT + MARGIN
     277        x = FORM_WIDTH/2 - BUTTON_WIDTH - DOUBLE_BUTTON_OFFSET
     278        self.btnAddCSVFile = wx.Button(p, label="Add", pos=(x, Y_OFFSET),
     279                                     size=(100, BUTTON_HEIGHT))
     280        x = FORM_WIDTH/2 + DOUBLE_BUTTON_OFFSET
     281        self.btnDelCSVFile = wx.Button(p, label="Delete", pos=(x, Y_OFFSET),
     282                                     size=(100, BUTTON_HEIGHT))
     283        Y_OFFSET += BUTTON_HEIGHT + MARGIN
     284
     285        wx.StaticBox(p, -1, 'Plot details', (3, Y_OFFSET),
     286                     size=(BOX_PLOT_WIDTH, BOX_PLOT_HEIGHT))
     287        Y_OFFSET += GEN_DELTAY
     288        wx.StaticText(p, -1, 'X-Column',
     289                      pos=(COLLAB_X_OFFSET, Y_OFFSET+LAB_CTRL_OFFSET), style=wx.ALIGN_LEFT)
     290        self.cbXColHdr = wx.ComboBox(p, -1, pos=(COLLAB_X_OFFSET+50, Y_OFFSET),
     291                                     size=(80, -1), style=wx.CB_DROPDOWN)
     292        wx.StaticText(p, -1, 'Y-Column',
     293                      pos=(FORM_WIDTH/2+COLLAB_X_OFFSET,
     294                           Y_OFFSET+LAB_CTRL_OFFSET), style=wx.ALIGN_LEFT)
     295        x = FORM_WIDTH/2 + COLLAB_X_OFFSET
     296        self.cbYColHdr = wx.ComboBox(p, -1, pos=(x+50, Y_OFFSET),
     297                                     size=(80, -1), style=wx.CB_DROPDOWN)
     298
     299        Y_OFFSET += BUTTON_HEIGHT + MARGIN
     300        x = FORM_WIDTH/2 - BUTTON_WIDTH/2
     301        self.btnPlote = wx.Button(p, label="Plot", pos=(x, Y_OFFSET),
     302                                     size=(100, BUTTON_HEIGHT))
     303
     304
     305
     306
     307
     308##        wx.StaticText(p, -1, 'Maximum wave height',
     309##                      pos=(GEN_LABELXOFFSET, Y_OFFSET),
     310##                      size=(CTL_WIDTH, CTL_HEIGHT), style=wx.ALIGN_RIGHT)
     311##        self.chXColHdr = wx.Choice(p, -1, size=(CHBOX_WIDTH, CHBOX_HEIGHT),
     312##                                   pos=(10,Y_OFFSET))
     313
     314
     315
     316
     317
     318
     319##        wx.StaticText(p, -1, 'Maximum wave height',
     320##                      pos=(GEN_LABELXOFFSET, Y_OFFSET),
     321##                      size=(CTL_WIDTH, CTL_HEIGHT), style=wx.ALIGN_RIGHT)
     322##        self.txtMaxH = wx.TextCtrl(p, -1, size=(100, 20),
     323##                                   pos=(GEN_TEXTXOFFSET, Y_OFFSET))
     324##        Y_OFFSET += GEN_DELTAY
     325##        x = FORM_WIDTH/2 - BUTTON_WIDTH/2
     326##        self.btnGenerate = wx.Button(p, label="List",
     327##                                     pos=(x, Y_OFFSET),
     328##                                     size=(100, BUTTON_HEIGHT))
     329##        Y_OFFSET += GEN_DELTAY + BUTTON_HEIGHT/2
     330##
     331##        self.lstGenerate = wx.ListCtrl(p, -1, pos=(8, Y_OFFSET),
     332##                                       size=(TEXTLIST_WIDTH,TEXTLIST_HEIGHT),
     333##                                       style=wx.LC_REPORT|wx.LC_SINGLE_SEL)
     334##       
     335##        Y_OFFSET += TEXTLIST_HEIGHT + 20
     336##        self.Bind(wx.EVT_BUTTON, self.GenerateClick, self.btnGenerate)
     337##        self.lstGenerate.Bind(wx.EVT_LIST_ITEM_SELECTED,
     338##                              self.OnItemSelected, self.lstGenerate)
     339##
     340##        # start laying out get_multimux controls
     341##        wx.StaticBox(p, -1, 'multimux_grid', (3, Y_OFFSET),
     342##                     size=(BOX_WIDTH, BOX2_HEIGHT))
     343##        Y_OFFSET += 18
     344##        wx.StaticText(p, -1, 'Quake ID', pos=(GEN_LABELXOFFSET, Y_OFFSET),
     345##                      size=(CTL_WIDTH, CTL_HEIGHT), style=wx.ALIGN_RIGHT)
     346##        self.txtQuakeID = wx.TextCtrl(p, -1, size=(100, 20),
     347##                                      pos=(GEN_TEXTXOFFSET, Y_OFFSET))
     348##        Y_OFFSET += GEN_DELTAY
     349##        x = FORM_WIDTH/2 - BUTTON_WIDTH - DOUBLE_BUTTON_OFFSET
     350##        self.btnMultimux = wx.Button(p, label="Multimux", pos=(x, Y_OFFSET),
     351##                                     size=(100, BUTTON_HEIGHT))
     352##        x = FORM_WIDTH/2 + DOUBLE_BUTTON_OFFSET
     353##        self.btnGrid = wx.Button(p, label="Grid", pos=(x, Y_OFFSET),
     354##                                     size=(100, BUTTON_HEIGHT))
     355##        Y_OFFSET += GEN_DELTAY + BUTTON_HEIGHT/2
     356##        self.lstMultimux = wx.ListCtrl(p, -1, pos=(8, Y_OFFSET),
     357##                                       size=(TEXTLIST_WIDTH,TEXTLIST_HEIGHT),
     358##                                       style=wx.LC_REPORT|wx.LC_SINGLE_SEL)
     359##        Y_OFFSET += TEXTLIST_HEIGHT + 20
     360##        self.Bind(wx.EVT_BUTTON, self.MultimuxClick, self.btnMultimux)
     361##        self.Bind(wx.EVT_BUTTON, self.GridClick, self.btnGrid)
     362
     363        self.Bind(wx.EVT_CLOSE, self.doStateSave)
     364        self.doStateRestore()
     365
     366    def doStateSave(self, event):
     367        """
     368        Save state here.
     369        """
     370##        self.cfg['OutputDirectory'] = self.txtOutputDir.GetValue()
     371##        self.cfg['Region'] = self.cbRegion.GetValue()
     372##        self.cfg['GaugeNumber'] = self.txtTGN.GetValue()
     373##        self.cfg['MinimumHeight'] = self.txtMinH.GetValue()
     374##        self.cfg['MaximumHeight'] = self.txtMaxH.GetValue()
     375##        self.cfg.save()
     376       
     377        event.Skip(True)
     378
     379    def doStateRestore(self):
     380        """
     381        Restore state here - globals have been set and tested sane
     382        """
     383##        global Region, GaugeNumber, MinimumHeight, MaximumHeight
     384##
     385##        cfg = Config(ConfigFilename)
     386##        output_dir = cfg['OutputDirectory']
     387##        Region = cfg['Region']
     388##        GaugeNumber = cfg['GaugeNumber']
     389##        if GaugeNumber:
     390##            GaugeNumber = int(GaugeNumber)
     391##        MinimumHeight = cfg['MinimumHeight']
     392##        if MinimumHeight:
     393##            MinimumHeight = float(MinimumHeight)
     394##        MaximumHeight = cfg['MaximumHeight']
     395##        if MaximumHeight:
     396##            MaximumHeight = float(MaximumHeight)
     397##
     398##        self.cfg = cfg
     399##
     400##        region_name = None
     401##        for (name, dir) in Regions:
     402##            if name == Region:
     403##                region_name = name
     404##        if not region_name:
     405##            Region = ''
     406##
     407##        if output_dir:
     408##            self.txtOutputDir.WriteText(output_dir)
     409##        self.cbRegion.SetStringSelection(Region)
     410##        if GaugeNumber:
     411##            self.txtTGN.WriteText(str(GaugeNumber))
     412##        if MinimumHeight:
     413##            self.txtMinH.WriteText(str(MinimumHeight))
     414##        if MaximumHeight:
     415##            self.txtMaxH.WriteText(str(MaximumHeight))
     416       
     417    def error(self, msg):
     418        dlg = wx.MessageDialog(self, msg, 'Error',
     419                               wx.OK | wx.ICON_INFORMATION)
     420        dlg.ShowModal()
     421        dlg.Destroy()
     422
     423       
     424################################################################################
     425# Code to do the GUI
     426################################################################################
    146427
    147428if __name__ == '__main__':
    148     # dictionary to convert option string to internal name
    149     of_dict = { '-x': X_DATACOL,
    150                 '-y': Y_DATACOL,
    151                 '-s': SIZE,
    152                 '-v': Y_RANGE }
    153 
    154     # set name of the program (for error reporting)
    155     global ProgName
    156     try:
    157         ProgName = os.path.basename(sys.argv[0])
    158     except:
    159         pass
    160 
    161     # get options
    162     opt_dict = {}
    163     params = sys.argv[1:]
    164     (opts, args) = getopt.gnu_getopt(params, 'x:y:s:v:')
    165     if len(args) != 1:
    166         usage()
    167     for (o, v) in opts:
    168         try:
    169             opt_dict[of_dict[o]] = v.lower()
    170         except:
    171             usage()
    172 
    173     # get name of data file
    174     if len(args) != 1:
    175         usage()
    176     filename = args[0]
    177     (filename_minus, _) = filename.split('.', 1)
    178 
    179     # set default option values
    180     opt_dict[X_DATACOL] = opt_dict.get(X_DATACOL, 0)
    181     opt_dict[Y_DATACOL] = opt_dict.get(Y_DATACOL, 1)
    182     opt_dict[SIZE] = opt_dict.get(SIZE, '800,600')
    183 #    opt_dict[X_RANGE] = opt_dict.get(X_RANGE, None)
    184     opt_dict[Y_RANGE] = opt_dict.get(Y_RANGE, None)
    185     opt_dict[FILENAME] = filename_minus
    186 
    187     # plot the file
    188     plot_file(args[0], opt_dict)
     429    app = wx.App()
     430    frame = MyFrame(None, -1, '%s %s' % (APP_NAME, APP_VERSION),
     431                    size=(FORM_WIDTH, FORM_HEIGHT))
     432    app.SetTopWindow(frame)
     433    app.MainLoop()
     434
  • misc/tools/plotcsv/test.csv

    r6338 r6341  
    1 time,stage,speed,depth,elevation
    2 12295.0,0.600000023842,0.0,13.4073172046,-12.8073171807
    3 12355.0,0.421168968328,0.0918453886068,13.2284861491,-12.8073171807
    4 12415.0,0.515062964515,0.199547484307,13.3223801453,-12.8073171807
    5 12475.0,0.530117152106,0.242605254318,13.3374343329,-12.8073171807
    6 12535.0,0.589175105595,0.342864394902,13.3964922863,-12.8073171807
    7 12595.0,0.588357911286,0.333678871624,13.395675092,-12.8073171807
    8 12655.0,0.592118198125,0.344383251945,13.3994353789,-12.8073171807
    9 12715.0,0.624472531488,0.351908337629,13.4317897122,-12.8073171807
    10 12775.0,0.627015013715,0.3942605772,13.4343321945,-12.8073171807
    11 12835.0,0.648941027205,0.429693641439,13.4562582079,-12.8073171807
    12 12895.0,0.639588739578,0.429156543573,13.4469059203,-12.8073171807
    13 12955.0,0.597011443789,0.414275258348,13.4043286245,-12.8073171807
    14 13015.0,0.515979116004,0.410804389669,13.3232962967,-12.8073171807
    15 13075.0,0.435576752332,0.443714987815,13.2428939331,-12.8073171807
    16 13135.0,0.388879882038,0.507917425579,13.1961970628,-12.8073171807
    17 13195.0,0.336660622108,0.539120113275,13.1439778029,-12.8073171807
    18 13255.0,0.269155032154,0.540663860937,13.0764722129,-12.8073171807
    19 13315.0,0.204247832886,0.540260635179,13.0115650136,-12.8073171807
    20 13375.0,0.151617305813,0.540037808088,12.9589344866,-12.8073171807
    21 13435.0,0.119296057931,0.544489103357,12.9266132387,-12.8073171807
    22 13495.0,0.113929126541,0.551775768259,12.9212463073,-12.8073171807
    23 13555.0,0.155452358815,0.55320511919,12.9627695396,-12.8073171807
    24 13615.0,0.2321507233,0.538368731677,13.039467904,-12.8073171807
    25 13675.0,0.296652743735,0.524696490381,13.1039699245,-12.8073171807
    26 13735.0,0.339957999583,0.534274899728,13.1472751803,-12.8073171807
    27 13795.0,0.38695802808,0.560397669413,13.1942752088,-12.8073171807
    28 13855.0,0.442823810055,0.5859850363,13.2501409908,-12.8073171807
    29 13915.0,0.501000776074,0.592606641386,13.3083179568,-12.8073171807
    30 13975.0,0.550213794709,0.582635147949,13.3575309755,-12.8073171807
    31 14035.0,0.590160972675,0.565001020075,13.3974781534,-12.8073171807
    32 14095.0,0.608558418323,0.547311069108,13.4158755991,-12.8073171807
    33 14155.0,0.605843923113,0.539959836937,13.4131611039,-12.8073171807
    34 14215.0,0.596074628673,0.541771349737,13.4033918094,-12.8073171807
    35 14275.0,0.588910473557,0.545735887449,13.3962276543,-12.8073171807
    36 14335.0,0.579894843617,0.546982249721,13.3872120244,-12.8073171807
    37 14395.0,0.560080246675,0.542921454915,13.3673974274,-12.8073171807
    38 14455.0,0.527997875038,0.535973613685,13.3353150558,-12.8073171807
    39 14515.0,0.48846762139,0.530522208421,13.2957848021,-12.8073171807
    40 14575.0,0.453301144431,0.529946462098,13.2606183252,-12.8073171807
    41 14635.0,0.433209861225,0.533394641566,13.240527042,-12.8073171807
    42 14695.0,0.430030722017,0.537702593778,13.2373479028,-12.8073171807
    43 14755.0,0.432544998518,0.539315757952,13.2398621793,-12.8073171807
    44 14815.0,0.431982450195,0.539698419945,13.2392996309,-12.8073171807
    45 14875.0,0.429622546204,0.54138387192,13.2369397269,-12.8073171807
    46 14935.0,0.430990518397,0.544509625562,13.2383076991,-12.8073171807
    47 14995.0,0.438001765063,0.54826119137,13.2453189458,-12.8073171807
    48 15055.0,0.447468392486,0.550708415653,13.2547855732,-12.8073171807
    49 15115.0,0.455668104857,0.550773075121,13.2629852856,-12.8073171807
    50 15175.0,0.461625279354,0.549784696344,13.2689424601,-12.8073171807
    51 15235.0,0.467521831825,0.549507185191,13.2748390126,-12.8073171807
    52 15295.0,0.4787146875,0.552510730703,13.2860318682,-12.8073171807
    53 15355.0,0.495614144719,0.556394575616,13.3029313255,-12.8073171807
    54 15415.0,0.519399817115,0.562614640227,13.3267169979,-12.8073171807
    55 15475.0,0.549882347781,0.571199776672,13.3571995285,-12.8073171807
    56 15535.0,0.591537345558,0.583960762379,13.3988545263,-12.8073171807
    57 15595.0,0.651954989489,0.60377921131,13.4592721702,-12.8073171807
    58 15655.0,0.737286857071,0.631863524128,13.5446040378,-12.8073171807
    59 15715.0,0.850705901727,0.667376341911,13.6580230825,-12.8073171807
    60 15775.0,0.99770638547,0.71420635806,13.8050235662,-12.8073171807
    61 15835.0,1.17912373118,0.767693372627,13.9864409119,-12.8073171807
    62 15895.0,1.39294372645,0.825725029855,14.2002609072,-12.8073171807
    63 15955.0,1.61709252091,0.873875728335,14.4244097017,-12.8073171807
    64 16015.0,1.81940679654,0.898088513529,14.6267239773,-12.8073171807
    65 16075.0,1.9632325138,0.90375716137,14.7705496945,-12.8073171807
    66 16135.0,2.04709276073,0.889645935875,14.8544099415,-12.8073171807
    67 16195.0,2.06701675618,0.859071137075,14.8743339369,-12.8073171807
    68 16255.0,2.02652519361,0.821855942256,14.8338423744,-12.8073171807
    69 16315.0,1.93040616748,0.779528297909,14.7377233482,-12.8073171807
    70 16375.0,1.79284285812,0.727497585841,14.6001600389,-12.8073171807
    71 16435.0,1.6198293146,0.674301848892,14.4271464953,-12.8073171807
    72 16495.0,1.42222074013,0.61786446761,14.2295379209,-12.8073171807
    73 16555.0,1.20535377222,0.562166285827,14.012670953,-12.8073171807
    74 16615.0,0.968897141146,0.499910519332,13.7762143219,-12.8073171807
    75 16675.0,0.714997583359,0.447973346801,13.5223147641,-12.8073171807
    76 16735.0,0.447506096614,0.397530513915,13.2548232774,-12.8073171807
    77 16795.0,0.181844643432,0.368523607224,12.9891618242,-12.8073171807
    78 16855.0,-0.074137840631,0.36124287699,12.7331793401,-12.8073171807
    79 16915.0,-0.30526887445,0.371064761983,12.5020483063,-12.8073171807
    80 16975.0,-0.500035618533,0.388229882763,12.3072815622,-12.8073171807
    81 17035.0,-0.650670501051,0.403016813045,12.1566466797,-12.8073171807
    82 17095.0,-0.735223317364,0.413605866339,12.0720938634,-12.8073171807
    83 17155.0,-0.732349791412,0.422142834399,12.0749673893,-12.8073171807
    84 17215.0,-0.602851506754,0.452246070723,12.204465674,-12.8073171807
    85 17275.0,-0.342189839508,0.522496466565,12.4651273412,-12.8073171807
    86 17335.0,-0.0292222603293,0.585688006251,12.7780949204,-12.8073171807
    87 17395.0,0.254096273147,0.612336920221,13.0614134539,-12.8073171807
    88 17455.0,0.467028948885,0.639075312614,13.2743461296,-12.8073171807
    89 17515.0,0.629919986975,0.666667168726,13.4372371677,-12.8073171807
    90 17575.0,0.737294794136,0.668883379564,13.5446119749,-12.8073171807
    91 17635.0,0.775725098998,0.642355345343,13.5830422797,-12.8073171807
    92 17695.0,0.74015681157,0.605074976168,13.5474739923,-12.8073171807
    93 17755.0,0.6543765458,0.567269317896,13.4616937265,-12.8073171807
    94 17815.0,0.542425383522,0.527982655424,13.3497425643,-12.8073171807
    95 17875.0,0.413230050661,0.490402988053,13.2205472314,-12.8073171807
    96 17935.0,0.28367345853,0.466407220542,13.0909906393,-12.8073171807
    97 17995.0,0.171265537482,0.450518779755,12.9785827182,-12.8073171807
    98 18055.0,0.0709482959542,0.435209997222,12.8782654767,-12.8073171807
    99 18115.0,-0.0339384893682,0.416867454069,12.7733786914,-12.8073171807
    100 18175.0,-0.14771562099,0.395340274599,12.6596015598,-12.8073171807
    101 18235.0,-0.253990005333,0.384865423952,12.5533271754,-12.8073171807
    102 18295.0,-0.33691153156,0.390963826736,12.4704056492,-12.8073171807
    103 18355.0,-0.355228192982,0.402375919485,12.4520889878,-12.8073171807
    104 18415.0,-0.281865310729,0.417864059641,12.52545187,-12.8073171807
    105 18475.0,-0.144127717603,0.441558194742,12.6631894631,-12.8073171807
    106 18535.0,0.0146528312576,0.470086473949,12.821970012,-12.8073171807
    107 18595.0,0.177195298629,0.49843144611,12.9845124794,-12.8073171807
    108 18655.0,0.33327404245,0.527231683437,13.1405912232,-12.8073171807
    109 18715.0,0.455512945128,0.545950767014,13.2628301259,-12.8073171807
    110 18775.0,0.553220279919,0.55337104582,13.3605374607,-12.8073171807
    111 18835.0,0.620705580193,0.555419772546,13.4280227609,-12.8073171807
    112 18895.0,0.662569541226,0.557235922168,13.469886722,-12.8073171807
    113 18955.0,0.682154705073,0.55744690557,13.4894718858,-12.8073171807
    114 19015.0,0.672932412989,0.551298918048,13.4802495937,-12.8073171807
    115 19075.0,0.63252092671,0.537855279538,13.4398381075,-12.8073171807
    116 19135.0,0.567811058595,0.523645564136,13.3751282393,-12.8073171807
    117 19195.0,0.491055419703,0.511143339774,13.2983726004,-12.8073171807
    118 19255.0,0.407319046966,0.496343185438,13.2146362277,-12.8073171807
    119 19315.0,0.323311547147,0.482751967386,13.1306287279,-12.8073171807
    120 19375.0,0.236200661604,0.463051668232,13.0435178423,-12.8073171807
    121 19435.0,0.134420522013,0.43449872639,12.9417377028,-12.8073171807
    122 19495.0,0.0135181520222,0.406070831528,12.8208353328,-12.8073171807
    123 19555.0,-0.109429799848,0.39136429987,12.6978873809,-12.8073171807
    124 19615.0,-0.208451199987,0.390793113686,12.5988659808,-12.8073171807
    125 19675.0,-0.257752406308,0.397668660007,12.5495647744,-12.8073171807
    126 19735.0,-0.24043256408,0.410691408082,12.5668846167,-12.8073171807
    127 19795.0,-0.162740985902,0.429196112228,12.6445761948,-12.8073171807
    128 19855.0,-0.0421674547205,0.451664474402,12.765149726,-12.8073171807
    129 19915.0,0.104375491207,0.479949621033,12.911692672,-12.8073171807
    130 19975.0,0.263995207655,0.505430119741,13.0713123884,-12.8073171807
    131 20035.0,0.431846002741,0.542252379355,13.2391631835,-12.8073171807
    132 20095.0,0.61003602498,0.584171724871,13.4173532057,-12.8073171807
    133 20155.0,0.776040081576,0.614654198106,13.5833572623,-12.8073171807
    134 20215.0,0.910049437525,0.631936879903,13.7173666183,-12.8073171807
    135 20275.0,0.983594815818,0.634765397363,13.7909119966,-12.8073171807
    136 20335.0,1.00270948546,0.625309684392,13.8100266662,-12.8073171807
    137 20395.0,0.982324187526,0.609515378307,13.7896413683,-12.8073171807
    138 20455.0,0.928468994948,0.584629812952,13.7357861757,-12.8073171807
    139 20515.0,0.836451017871,0.552470961895,13.6437681986,-12.8073171807
    140 20575.0,0.706905728988,0.51334659816,13.5142229097,-12.8073171807
    141 20635.0,0.545349787019,0.470531026383,13.3526669678,-12.8073171807
    142 20695.0,0.375818200378,0.439254866125,13.1831353811,-12.8073171807
    143 20755.0,0.21951070543,0.418578372452,13.0268278862,-12.8073171807
    144 20815.0,0.0809496296262,0.403775855364,12.8882668104,-12.8073171807
    145 20875.0,-0.0352538012942,0.392509356118,12.7720633795,-12.8073171807
    146 20935.0,-0.135035638347,0.388810466419,12.6722815424,-12.8073171807
    147 20995.0,-0.205779715909,0.393050928887,12.6015374648,-12.8073171807
    148 21055.0,-0.238583813248,0.400763880141,12.5687333675,-12.8073171807
    149 21115.0,-0.234265101984,0.408507430086,12.5730520788,-12.8073171807
    150 21175.0,-0.204328164877,0.415707468526,12.6029890159,-12.8073171807
    151 21235.0,-0.163271448473,0.421843128122,12.6440457323,-12.8073171807
    152 21295.0,-0.120252855444,0.426389876471,12.6870643253,-12.8073171807
    153 21355.0,-0.084179946597,0.429386770614,12.7231372341,-12.8073171807
    154 21415.0,-0.0604110263188,0.431588037727,12.7469061544,-12.8073171807
    155 21475.0,-0.0455415153926,0.43294110236,12.7617756654,-12.8073171807
    156 21535.0,-0.0354446441097,0.435381928974,12.7718725366,-12.8073171807
    157 21595.0,-0.0269200640838,0.437486971861,12.7803971167,-12.8073171807
    158 21655.0,-0.0241941923225,0.43843627651,12.7831229884,-12.8073171807
    159 21715.0,-0.0276385689481,0.43865420693,12.7796786118,-12.8073171807
    160 21775.0,-0.0362905621303,0.439449140284,12.7710266186,-12.8073171807
    161 21835.0,-0.0386818749157,0.443400711498,12.7686353058,-12.8073171807
    162 21895.0,-0.0234582041269,0.451404162084,12.7838589766,-12.8073171807
    163 21955.0,0.00914934526391,0.460240902566,12.816466526,-12.8073171807
    164 22015.0,0.0522354837897,0.466045006086,12.8595526645,-12.8073171807
    165 22075.0,0.103569293964,0.472347555607,12.9108864747,-12.8073171807
    166 22135.0,0.1716603543,0.482696835267,12.978977535,-12.8073171807
    167 22195.0,0.268367830093,0.500900857585,13.0756850108,-12.8073171807
    168 22255.0,0.393803329229,0.524454531498,13.20112051,-12.8073171807
    169 22315.0,0.526564727253,0.541770073231,13.333881908,-12.8073171807
    170 22375.0,0.636132199817,0.545453161019,13.4434493806,-12.8073171807
    171 22435.0,0.712260931185,0.545215189324,13.5195781119,-12.8073171807
    172 22495.0,0.770308053964,0.549632579528,13.5776252347,-12.8073171807
    173 22555.0,0.820574085677,0.555078399723,13.6278912664,-12.8073171807
    174 22615.0,0.862655156765,0.559693094772,13.6699723375,-12.8073171807
    175 22675.0,0.892860795112,0.561577543492,13.7001779759,-12.8073171807
    176 22735.0,0.91880952347,0.568690797092,13.7261267042,-12.8073171807
    177 22795.0,0.957725870745,0.585617446245,13.7650430515,-12.8073171807
    178 22855.0,1.0136992066,0.605846257042,13.8210163873,-12.8073171807
    179 22915.0,1.0747452239,0.620809254989,13.8820624046,-12.8073171807
    180 22975.0,1.12057772871,0.625092572736,13.9278949095,-12.8073171807
    181 23035.0,1.1389157219,0.620005611329,13.9462329026,-12.8073171807
    182 23095.0,1.12697093379,0.605938587053,13.9342881145,-12.8073171807
    183 23155.0,1.08556505698,0.583008904397,13.8928822377,-12.8073171807
    184 23215.0,1.02320917709,0.560073014411,13.8305263578,-12.8073171807
    185 23275.0,0.962367543881,0.550084352226,13.7696847246,-12.8073171807
    186 23335.0,0.916905264568,0.553211273579,13.7242224453,-12.8073171807
    187 23395.0,0.888361410382,0.553041162436,13.6956785911,-12.8073171807
    188 23455.0,0.857141262087,0.544775949377,13.6644584428,-12.8073171807
    189 23515.0,0.814868528023,0.535963633581,13.6221857088,-12.8073171807
    190 23575.0,0.767766892057,0.530909805657,13.5750840728,-12.8073171807
    191 23635.0,0.723747298647,0.525619758668,13.5310644794,-12.8073171807
    192 23695.0,0.680948068802,0.516399559024,13.4882652495,-12.8073171807
    193 23755.0,0.632645983606,0.502399502225,13.4399631644,-12.8073171807
    194 23815.0,0.578173010605,0.487452814853,13.3854901913,-12.8073171807
    195 23875.0,0.521731682329,0.476390530058,13.3290488631,-12.8073171807
    196 23935.0,0.46587654572,0.469154076785,13.2731937265,-12.8073171807
    197 23995.0,0.420916319133,0.470982917448,13.2282334999,-12.8073171807
    198 24055.0,0.409672661459,0.48878872982,13.2169898422,-12.8073171807
    199 24115.0,0.45098524723,0.520315484248,13.258302428,-12.8073171807
    200 24175.0,0.537506336939,0.552855405428,13.3448235177,-12.8073171807
    201 24235.0,0.622441147639,0.563692903648,13.4297583284,-12.8073171807
    202 24295.0,0.666363312449,0.556357659739,13.4736804932,-12.8073171807
    203 24355.0,0.681058859928,0.552718694871,13.4883760407,-12.8073171807
    204 24415.0,0.696964274456,0.560453312148,13.5042814552,-12.8073171807
    205 24475.0,0.731853330283,0.571908891126,13.539170511,-12.8073171807
    206 24535.0,0.766164087615,0.570915358997,13.5734812684,-12.8073171807
    207 24595.0,0.773707802856,0.558332682545,13.5810249836,-12.8073171807
    208 24655.0,0.7525281959,0.543704221959,13.5598453766,-12.8073171807
    209 24715.0,0.72001022602,0.533516739304,13.5273274068,-12.8073171807
    210 24775.0,0.68855418905,0.525973074384,13.4958713698,-12.8073171807
    211 24835.0,0.650680646877,0.514692633263,13.4579978276,-12.8073171807
    212 24895.0,0.59612931357,0.49754149755,13.4034464943,-12.8073171807
    213 24955.0,0.52952333777,0.480208645743,13.3368405185,-12.8073171807
    214 25015.0,0.470234139718,0.469331069991,13.2775513205,-12.8073171807
    215 25075.0,0.443543178662,0.47336579262,13.2508603594,-12.8073171807
    216 25135.0,0.484317193722,0.505407770994,13.2916343745,-12.8073171807
    217 25195.0,0.625081458517,0.570920735473,13.4323986393,-12.8073171807
    218 25255.0,0.844309892961,0.639620272074,13.6516270737,-12.8073171807
    219 25315.0,1.06623289362,0.682111549734,13.8735500744,-12.8073171807
    220 25375.0,1.24410965008,0.701427007877,14.0514268308,-12.8073171807
    221 25435.0,1.37374005572,0.718014443997,14.1810572365,-12.8073171807
    222 25495.0,1.44966469961,0.715299394408,14.2569818804,-12.8073171807
    223 25555.0,1.45474508697,0.683083268987,14.2620622677,-12.8073171807
    224 25615.0,1.39446884874,0.642517915967,14.2017860295,-12.8073171807
    225 25675.0,1.29615761148,0.608069109678,14.1034747922,-12.8073171807
    226 25735.0,1.1820066202,0.573783625641,13.9893238009,-12.8073171807
    227 25795.0,1.052266119,0.536429119144,13.8595832997,-12.8073171807
    228 25855.0,0.907399499665,0.501649595466,13.7147166804,-12.8073171807
    229 25915.0,0.756818990765,0.482366929958,13.5641361715,-12.8073171807
    230 25975.0,0.616854403058,0.470550935153,13.4241715838,-12.8073171807
    231 26035.0,0.486989795096,0.451585882501,13.2943069758,-12.8073171807
    232 26095.0,0.363588424981,0.42821286559,13.1709056057,-12.8073171807
    233 26155.0,0.245829856734,0.41260566321,13.0531470375,-12.8073171807
    234 26215.0,0.156119705003,0.412043453563,12.9634368857,-12.8073171807
    235 26275.0,0.132706696569,0.426249770653,12.9400238773,-12.8073171807
    236 26335.0,0.199959222174,0.460224719103,13.0072764029,-12.8073171807
    237 26395.0,0.371568376685,0.526458059888,13.1788855574,-12.8073171807
    238 26455.0,0.623096343395,0.604717317947,13.4304135241,-12.8073171807
    239 26515.0,0.86716871778,0.648056845975,13.6744858985,-12.8073171807
    240 26575.0,1.03577530815,0.656971214295,13.8430924889,-12.8073171807
    241 26635.0,1.1267132418,0.653673275728,13.9340304225,-12.8073171807
    242 26695.0,1.17036996526,0.646935134998,13.977687146,-12.8073171807
    243 26755.0,1.18056087708,0.629764444886,13.9878780578,-12.8073171807
    244 26815.0,1.15779807337,0.608521941926,13.9651152541,-12.8073171807
    245 26875.0,1.12489439039,0.599447179609,13.9322115711,-12.8073171807
    246 26935.0,1.10598368379,0.604116941007,13.9133008645,-12.8073171807
    247 26995.0,1.10721367867,0.611588897557,13.9145308594,-12.8073171807
    248 27055.0,1.11129430852,0.611745008365,13.9186114893,-12.8073171807
    249 27115.0,1.09171120844,0.60184238596,13.8990283892,-12.8073171807
    250 27175.0,1.04791592274,0.592884073486,13.8552331035,-12.8073171807
    251 27235.0,0.999019834208,0.583903516637,13.806337015,-12.8073171807
    252 27295.0,0.962682709824,0.56746083821,13.7699998906,-12.8073171807
    253 27355.0,0.937196970805,0.545176277666,13.7445141515,-12.8073171807
    254 27415.0,0.898264111197,0.52343285957,13.7055812919,-12.8073171807
    255 27475.0,0.842583419158,0.502790159834,13.6499005999,-12.8073171807
    256 27535.0,0.77670797709,0.483899423755,13.5840251578,-12.8073171807
    257 27595.0,0.695487307535,0.465927149862,13.5028044883,-12.8073171807
    258 27655.0,0.590852421319,0.443398570698,13.3981696021,-12.8073171807
    259 27715.0,0.468563002803,0.422201908867,13.2758801835,-12.8073171807
    260 27775.0,0.333551340021,0.403718104217,13.1408685208,-12.8073171807
    261 27835.0,0.184899407947,0.389373387103,12.9922165887,-12.8073171807
    262 27895.0,0.0431854641724,0.386862386031,12.8505026449,-12.8073171807
    263 27955.0,-0.0772945143564,0.389962448508,12.7300226664,-12.8073171807
    264 28015.0,-0.171902289316,0.395084612182,12.6354148914,-12.8073171807
    265 28075.0,-0.232300942426,0.40130116991,12.5750162383,-12.8073171807
    266 28135.0,-0.281208179235,0.405264998879,12.5261090015,-12.8073171807
    267 28195.0,-0.352162284534,0.407025845563,12.4551548962,-12.8073171807
    268 28255.0,-0.451460334632,0.411663139565,12.3558568461,-12.8073171807
    269 28315.0,-0.546473270678,0.419001709715,12.2608439101,-12.8073171807
    270 28375.0,-0.596520660645,0.425805421814,12.2107965201,-12.8073171807
    271 28435.0,-0.584905138122,0.431436402917,12.2224120426,-12.8073171807
    272 28495.0,-0.507996092547,0.439452437522,12.2993210882,-12.8073171807
    273 28555.0,-0.385907512578,0.44953132584,12.4214096682,-12.8073171807
    274 28615.0,-0.255382786083,0.454977406629,12.5519343947,-12.8073171807
    275 28675.0,-0.138199887195,0.456129823772,12.6691172935,-12.8073171807
    276 28735.0,-0.0222158099953,0.461166759026,12.7851013707,-12.8073171807
    277 28795.0,0.107570951772,0.474963106048,12.9148881325,-12.8073171807
    278 28855.0,0.24991121661,0.485297762622,13.0572283974,-12.8073171807
    279 28915.0,0.372671135725,0.490113842442,13.1799883165,-12.8073171807
    280 28975.0,0.467846138139,0.489727976243,13.2751633189,-12.8073171807
    281 29035.0,0.53745344848,0.490690740123,13.3447706292,-12.8073171807
    282 29095.0,0.596336710195,0.496701895885,13.4036538909,-12.8073171807
    283 29155.0,0.636183344599,0.492627430453,13.4435005253,-12.8073171807
    284 29215.0,0.629151279915,0.476590588932,13.4364684607,-12.8073171807
    285 29275.0,0.581577522117,0.462459558065,13.3888947029,-12.8073171807
    286 29335.0,0.5325847268,0.459163471823,13.3399019075,-12.8073171807
    287 29395.0,0.496061331107,0.452907767351,13.3033785119,-12.8073171807
    288 29455.0,0.449287832108,0.434226551635,13.2566050129,-12.8073171807
    289 29515.0,0.360960533246,0.40916602829,13.168277714,-12.8073171807
    290 29575.0,0.219142608885,0.387895891869,13.0264597896,-12.8073171807
    291 29635.0,0.0443128522049,0.38410761296,12.8516300329,-12.8073171807
    292 29695.0,-0.131109067213,0.393983043033,12.6762081135,-12.8073171807
    293 29755.0,-0.302414776078,0.413300194012,12.5049024047,-12.8073171807
    294 29815.0,-0.476397649832,0.441389948935,12.3309195309,-12.8073171807
    295 29875.0,-0.651073953745,0.473983965788,12.156243227,-12.8073171807
    296 29935.0,-0.802682214832,0.500622486941,12.0046349659,-12.8073171807
    297 29995.0,-0.9098228716,0.510387469462,11.8974943091,-12.8073171807
    298 30055.0,-0.949008234132,0.501373887199,11.8583089466,-12.8073171807
    299 30115.0,-0.885989842796,0.481411568851,11.9213273379,-12.8073171807
    300 30175.0,-0.714334598149,0.471231550067,12.0929825826,-12.8073171807
    301 30235.0,-0.47396309503,0.481501680679,12.3333540857,-12.8073171807
    302 30295.0,-0.158672045336,0.519197333379,12.6486451354,-12.8073171807
    303 30355.0,0.170552128409,0.556651958068,12.9778693092,-12.8073171807
    304 30415.0,0.460437927901,0.578137665504,13.2677551086,-12.8073171807
    305 30475.0,0.697940344514,0.603735034545,13.5052575253,-12.8073171807
    306 30535.0,0.880899278305,0.623850895967,13.688216459,-12.8073171807
    307 30595.0,0.995806455816,0.612439251252,13.8031236366,-12.8073171807
    308 30655.0,1.02856134956,0.587021606507,13.8358785303,-12.8073171807
    309 30715.0,1.00172751983,0.560164628953,13.8090447006,-12.8073171807
    310 30775.0,0.946551955376,0.539593545949,13.7538691361,-12.8073171807
    311 30835.0,0.870602970071,0.514902347202,13.6779201508,-12.8073171807
    312 30895.0,0.769543591871,0.481790314814,13.5768607726,-12.8073171807
    313 30955.0,0.668083381837,0.461219120212,13.4754005626,-12.8073171807
    314 31015.0,0.631610911408,0.495496738161,13.4389280922,-12.8073171807
    315 31075.0,0.765722828929,0.592280766795,13.5730400097,-12.8073171807
    316 31135.0,0.865517847163,0.570657781171,13.6728350279,-12.8073171807
    317 31195.0,0.826292410373,0.47981703583,13.6336095911,-12.8073171807
    318 31255.0,0.692907889883,0.42573310073,13.5002250706,-12.8073171807
    319 31315.0,0.56099781221,0.410822729774,13.368314993,-12.8073171807
    320 31375.0,0.503004803217,0.411068491997,13.310321984,-12.8073171807
    321 31435.0,0.495362823158,0.418658849634,13.3026800039,-12.8073171807
    322 31495.0,0.506594969093,0.431991641874,13.3139121498,-12.8073171807
    323 31555.0,0.489658968014,0.430544989944,13.2969761488,-12.8073171807
    324 31615.0,0.431823819856,0.418322867637,13.2391410006,-12.8073171807
    325 31675.0,0.357625774388,0.412799397612,13.1649429551,-12.8073171807
    326 31735.0,0.275492288483,0.415336500198,13.0828094692,-12.8073171807
    327 31795.0,0.204996170833,0.413062831808,13.0123133516,-12.8073171807
    328 31855.0,0.155119921785,0.409681332854,12.9624371025,-12.8073171807
    329 31915.0,0.127775915492,0.411924798753,12.9350930962,-12.8073171807
    330 31975.0,0.14790509927,0.430576224801,12.95522228,-12.8073171807
    331 32035.0,0.262372171901,0.477942922431,13.0696893526,-12.8073171807
    332 32095.0,0.455720839786,0.537401675123,13.2630380205,-12.8073171807
    333 32155.0,0.673918308155,0.59235600221,13.4812354889,-12.8073171807
    334 32215.0,0.872138228604,0.638049616583,13.6794554093,-12.8073171807
    335 32275.0,1.05722558617,0.679376081937,13.8645427669,-12.8073171807
    336 32335.0,1.26366912247,0.730740201018,14.0709863032,-12.8073171807
    337 32395.0,1.49289056244,0.785615681307,14.3002077432,-12.8073171807
    338 32455.0,1.68814700392,0.801161025828,14.4954641847,-12.8073171807
    339 32515.0,1.79714756833,0.772076876587,14.6044647491,-12.8073171807
    340 32575.0,1.81274055582,0.738002482592,14.6200577366,-12.8073171807
    341 32635.0,1.77188500798,0.710541569725,14.5792021887,-12.8073171807
    342 32695.0,1.69027419175,0.669579019771,14.4975913725,-12.8073171807
    343 32755.0,1.54872364815,0.605829287039,14.3560408289,-12.8073171807
    344 32815.0,1.36063651578,0.54667305221,14.1679536965,-12.8073171807
    345 32875.0,1.17608602983,0.516504882939,13.9834032106,-12.8073171807
    346 32935.0,1.06360583312,0.511267517172,13.8709230139,-12.8073171807
    347 32995.0,0.969479201409,0.474439896035,13.7767963822,-12.8073171807
    348 33055.0,0.806977936268,0.416683731805,13.614295117,-12.8073171807
    349 33115.0,0.584451120303,0.379404033121,13.391768301,-12.8073171807
    350 33175.0,0.368599749473,0.368500611716,13.1759169302,-12.8073171807
    351 33235.0,0.205775332932,0.375019665922,13.0130925137,-12.8073171807
    352 33295.0,0.116431667566,0.390743509697,12.9237488483,-12.8073171807
    353 33355.0,0.108256759592,0.41181273798,12.9155739403,-12.8073171807
    354 33415.0,0.181305228075,0.439745298817,12.9886224088,-12.8073171807
    355 33475.0,0.296571613672,0.468564940445,13.1038887944,-12.8073171807
    356 33535.0,0.477208124665,0.526266759978,13.2845253054,-12.8073171807
    357 33595.0,0.718859088312,0.606113832719,13.5261762691,-12.8073171807
    358 33655.0,0.939084406855,0.639165982285,13.7464015876,-12.8073171807
    359 33715.0,1.09485250148,0.645466432125,13.9021696822,-12.8073171807
    360 33775.0,1.19477183514,0.647971082593,14.0020890159,-12.8073171807
    361 33835.0,1.24511642144,0.641074513256,14.0524336022,-12.8073171807
    362 33895.0,1.24436038791,0.624848820009,14.0516775687,-12.8073171807
    363 33955.0,1.20654162891,0.608606719839,14.0138588097,-12.8073171807
    364 34015.0,1.1626534672,0.604762917552,13.9699706479,-12.8073171807
    365 34075.0,1.12430334284,0.603876010588,13.9316205236,-12.8073171807
    366 34135.0,1.04027250732,0.561576761765,13.8475896881,-12.8073171807
    367 34195.0,0.877352428387,0.494399711363,13.6846696091,-12.8073171807
    368 34255.0,0.665465679831,0.447869211784,13.4727828606,-12.8073171807
    369 34315.0,0.464103878856,0.422825279279,13.2714210596,-12.8073171807
    370 34375.0,0.328153012217,0.410532192784,13.135470193,-12.8073171807
    371 34435.0,0.232621073523,0.393478197801,13.0399382543,-12.8073171807
    372 34495.0,0.150405555531,0.387602510526,12.9577227363,-12.8073171807
    373 34555.0,0.0649965733903,0.390460107425,12.8723137541,-12.8073171807
    374 34615.0,0.0055734458448,0.398095847108,12.8128906266,-12.8073171807
    375 34675.0,-0.0247531363617,0.403836976282,12.7825640444,-12.8073171807
    376 34735.0,-0.0321626711661,0.410245824324,12.7751545096,-12.8073171807
    377 34795.0,-0.0179342942898,0.414745445004,12.7893828865,-12.8073171807
    378 34855.0,0.0137002323849,0.419247151015,12.8210174131,-12.8073171807
    379 34915.0,0.0485884462432,0.423793590541,12.855905627,-12.8073171807
    380 34975.0,0.0977908480846,0.434258123799,12.9051080288,-12.8073171807
    381 35035.0,0.188297265508,0.457600170461,12.9956144463,-12.8073171807
    382 35095.0,0.337322691021,0.495667330092,13.1446398718,-12.8073171807
    383 35155.0,0.522836891352,0.538150911098,13.3301540721,-12.8073171807
    384 35215.0,0.700654199405,0.567433171741,13.5079713801,-12.8073171807
    385 35275.0,0.821549770207,0.575392191079,13.628866951,-12.8073171807
    386 35335.0,0.895427418933,0.578289029362,13.7027445997,-12.8073171807
    387 35395.0,0.935685726819,0.585622630014,13.7430029076,-12.8073171807
    388 35455.0,0.971764968408,0.588797628756,13.7790821492,-12.8073171807
    389 35515.0,0.994190924075,0.578203332035,13.8015081048,-12.8073171807
    390 35575.0,0.982258148418,0.556080707354,13.7895753292,-12.8073171807
    391 35635.0,0.930495581861,0.524575312601,13.7378127626,-12.8073171807
    392 35695.0,0.843750874604,0.489037057789,13.6510680553,-12.8073171807
    393 35755.0,0.736698398428,0.456429771425,13.5440155792,-12.8073171807
    394 35815.0,0.620775530613,0.427934462782,13.4280927114,-12.8073171807
    395 35875.0,0.505141825313,0.410988837056,13.3124590061,-12.8073171807
    396 35935.0,0.413142185527,0.402906835917,13.2204593663,-12.8073171807
    397 35995.0,0.359985067376,0.403325042932,13.1673022481,-12.8073171807
    398 36055.0,0.355392852941,0.413087763591,13.1627100337,-12.8073171807
    399 36115.0,0.389733294163,0.42686297637,13.1970504749,-12.8073171807
    400 36175.0,0.445853686858,0.438465954694,13.2531708676,-12.8073171807
    401 36235.0,0.498383321245,0.446387745248,13.305700502,-12.8073171807
    402 36295.0,0.534897863039,0.45157270322,13.3422150438,-12.8073171807
    403 36355.0,0.547031120866,0.450947974442,13.3543483016,-12.8073171807
    404 36415.0,0.533934148943,0.447986887726,13.3412513297,-12.8073171807
    405 36475.0,0.497270284198,0.44023943067,13.3045874649,-12.8073171807
    406 36535.0,0.435634113844,0.42826703716,13.2429512946,-12.8073171807
    407 36595.0,0.361146177162,0.419915435716,13.1684633579,-12.8073171807
    408 36655.0,0.294621073661,0.416724608182,13.1019382544,-12.8073171807
    409 36715.0,0.244585586086,0.418982745633,13.0519027668,-12.8073171807
    410 36775.0,0.217966487784,0.426213653836,13.0252836685,-12.8073171807
    411 36835.0,0.216988158486,0.436957629365,13.0243053392,-12.8073171807
    412 36895.0,0.225379255209,0.441255272485,13.032696436,-12.8073171807
    413 36955.0,0.227990335336,0.438358523519,13.0353075161,-12.8073171807
    414 37015.0,0.235072217409,0.439396396823,13.0423893982,-12.8073171807
    415 37075.0,0.255949728923,0.442214358199,13.0632669097,-12.8073171807
    416 37135.0,0.287848172467,0.442765836735,13.0951653532,-12.8073171807
    417 37195.0,0.337672306959,0.44868745057,13.1449894877,-12.8073171807
    418 37255.0,0.418254409837,0.463938185884,13.2255715906,-12.8073171807
    419 37315.0,0.51106433587,0.4751471259,13.3183815166,-12.8073171807
    420 37375.0,0.586857791689,0.47494175047,13.3941749724,-12.8073171807
    421 37435.0,0.605867152577,0.457282780996,13.4131843333,-12.8073171807
    422 37495.0,0.566151344268,0.435242070419,13.373468525,-12.8073171807
    423 37555.0,0.49879355748,0.421177350045,13.3061107382,-12.8073171807
    424 37615.0,0.431456228062,0.412537439002,13.2387734088,-12.8073171807
    425 37675.0,0.372468653702,0.407347679725,13.1797858344,-12.8073171807
    426 37735.0,0.332487765209,0.409810830408,13.139804946,-12.8073171807
    427 37795.0,0.321541176109,0.422275596523,13.1288583569,-12.8073171807
    428 37855.0,0.375394527617,0.447749524615,13.1827117084,-12.8073171807
    429 37915.0,0.47297648923,0.473466668949,13.28029367,-12.8073171807
    430 37975.0,0.556686328167,0.479038811431,13.3640035089,-12.8073171807
    431 38035.0,0.580096864055,0.468123711667,13.3874140448,-12.8073171807
    432 38095.0,0.570706301515,0.458066560075,13.3780234823,-12.8073171807
    433 38155.0,0.555138511625,0.448868351157,13.3624556924,-12.8073171807
    434 38215.0,0.557865350747,0.450014845312,13.3651825315,-12.8073171807
    435 38275.0,0.605780038847,0.470124827172,13.4130972196,-12.8073171807
    436 38335.0,0.694867426372,0.494981003739,13.5021846071,-12.8073171807
    437 38395.0,0.7546446827,0.490604356843,13.5619618634,-12.8073171807
    438 38455.0,0.746714180271,0.467282099517,13.554031361,-12.8073171807
    439 38515.0,0.690904243198,0.450985644857,13.4982214239,-12.8073171807
    440 38575.0,0.619523977634,0.440786077364,13.4268411584,-12.8073171807
    441 38635.0,0.537996744974,0.425750530276,13.3453139257,-12.8073171807
    442 38695.0,0.449200691021,0.407880128762,13.2565178718,-12.8073171807
    443 38755.0,0.36479997217,0.400285623537,13.1721171529,-12.8073171807
    444 38815.0,0.270728868493,0.393989669652,13.0780460492,-12.8073171807
    445 38875.0,0.170763362792,0.393605287084,12.9780805435,-12.8073171807
    446 38935.0,0.065197348066,0.396620958593,12.8725145288,-12.8073171807
    447 38995.0,-0.0375841323422,0.40130253389,12.7697330484,-12.8073171807
    448 39055.0,-0.13086326403,0.405107407745,12.6764539167,-12.8073171807
    449 39115.0,-0.194452526122,0.412303931968,12.6128646546,-12.8073171807
    450 39175.0,-0.231904195487,0.420628650712,12.5754129853,-12.8073171807
    451 39235.0,-0.241417626014,0.427251718206,12.5658995547,-12.8073171807
    452 39295.0,-0.200601276038,0.433036160757,12.6067159047,-12.8073171807
    453 39355.0,-0.0865126488386,0.443263033293,12.7208045319,-12.8073171807
    454 39415.0,0.0810962262967,0.461359195476,12.888413407,-12.8073171807
    455 39475.0,0.25300227359,0.476616112005,13.0603194543,-12.8073171807
    456 39535.0,0.401593148169,0.486085952372,13.2089103289,-12.8073171807
    457 39595.0,0.523369789584,0.495306239715,13.3306869703,-12.8073171807
    458 39655.0,0.629622819036,0.507141011691,13.4369399998,-12.8073171807
    459 39715.0,0.711286976701,0.507539953304,13.5186041574,-12.8073171807
    460 39775.0,0.763445757354,0.499927263484,13.5707629381,-12.8073171807
    461 39835.0,0.786088872202,0.492450328014,13.5934060529,-12.8073171807
    462 39895.0,0.791451265238,0.48936479519,13.598768446,-12.8073171807
    463 39955.0,0.777450524861,0.478899953746,13.5847677056,-12.8073171807
    464 40015.0,0.724958192013,0.452645269999,13.5322753728,-12.8073171807
    465 40075.0,0.619984418749,0.423044717309,13.4273015995,-12.8073171807
    466 40135.0,0.482804110188,0.403181955109,13.2901212909,-12.8073171807
    467 40195.0,0.342104844829,0.390178822496,13.1494220256,-12.8073171807
    468 40255.0,0.222538123945,0.386772896742,13.0298553047,-12.8073171807
    469 40315.0,0.130798063576,0.391650219296,12.9381152443,-12.8073171807
    470 40375.0,0.0866532787311,0.401931063594,12.8939704595,-12.8073171807
    471 40435.0,0.11717003437,0.415968267769,12.9244872151,-12.8073171807
    472 40495.0,0.221677110235,0.434320873456,13.028994291,-12.8073171807
    473 40555.0,0.369478468298,0.457730580041,13.176795649,-12.8073171807
    474 40615.0,0.541294442545,0.486986040025,13.3486116233,-12.8073171807
    475 40675.0,0.70476720875,0.50835291633,13.5120843895,-12.8073171807
    476 40735.0,0.834783794997,0.51726099037,13.6421009757,-12.8073171807
    477 40795.0,0.908879714437,0.51253522503,13.7161968952,-12.8073171807
    478 40855.0,0.930027014338,0.497536952877,13.7373441951,-12.8073171807
    479 40915.0,0.910082522547,0.483188799013,13.7173997033,-12.8073171807
    480 40975.0,0.86734488609,0.471464704339,13.6746620668,-12.8073171807
    481 41035.0,0.816192139016,0.465333597519,13.6235093198,-12.8073171807
    482 41095.0,0.76942134871,0.467516366885,13.5767385295,-12.8073171807
    483 41155.0,0.739063560804,0.477112362365,13.5463807415,-12.8073171807
    484 41215.0,0.735731240228,0.49469537891,13.543048421,-12.8073171807
    485 41275.0,0.749241681998,0.507997159481,13.5565588627,-12.8073171807
    486 41335.0,0.746336759923,0.501219504169,13.5536539407,-12.8073171807
    487 41395.0,0.701296425146,0.476853449787,13.5086136059,-12.8073171807
    488 41455.0,0.631438023599,0.451489996268,13.4387552043,-12.8073171807
    489 41515.0,0.563141218416,0.435279479919,13.3704583992,-12.8073171807
    490 41575.0,0.514933558917,0.427968637683,13.3222507397,-12.8073171807
    491 41635.0,0.487468123446,0.426130180413,13.2947853042,-12.8073171807
    492 41695.0,0.476322279296,0.429282824272,13.28363946,-12.8073171807
    493 41755.0,0.481604566082,0.437149024049,13.2889217468,-12.8073171807
    494 41815.0,0.502771816459,0.446225999637,13.3100889972,-12.8073171807
    495 41875.0,0.529893839076,0.451343393322,13.3372110198,-12.8073171807
    496 41935.0,0.551333468409,0.451638825939,13.3586506492,-12.8073171807
    497 41995.0,0.563338624445,0.447789232375,13.3706558052,-12.8073171807
    498 42055.0,0.563121000922,0.44030271279,13.3704381817,-12.8073171807
    499 42115.0,0.55084712897,0.433498740346,13.3581643097,-12.8073171807
    500 42175.0,0.531676841975,0.432767851304,13.3389940227,-12.8073171807
    501 42235.0,0.515051165073,0.438100638957,13.3223683458,-12.8073171807
    502 42295.0,0.504369749288,0.443686416125,13.31168693,-12.8073171807
    503 42355.0,0.487390914224,0.443600452931,13.294708095,-12.8073171807
    504 42415.0,0.452805227154,0.437816642311,13.2601224079,-12.8073171807
    505 42475.0,0.407432851889,0.433025470574,13.2147500326,-12.8073171807
    506 42535.0,0.378349314795,0.436679212338,13.1856664955,-12.8073171807
    507 42595.0,0.410710076034,0.461001663975,13.2180272568,-12.8073171807
    508 42655.0,0.550617632288,0.51267168933,13.357934813,-12.8073171807
    509 42715.0,0.707683701758,0.530514315683,13.5150008825,-12.8073171807
    510 42775.0,0.813016955334,0.523148818507,13.6203341361,-12.8073171807
    511 42835.0,0.912339325362,0.550816594766,13.7196565061,-12.8073171807
    512 42895.0,1.04679659348,0.593853376944,13.8541137742,-12.8073171807
    513 42955.0,1.18513288822,0.607944392277,13.992450069,-12.8073171807
    514 43015.0,1.26574014487,0.591936634118,14.0730573256,-12.8073171807
    515 43075.0,1.29400694022,0.582412285487,14.101324121,-12.8073171807
    516 43135.0,1.3088917425,0.586872567662,14.1162089232,-12.8073171807
    517 43195.0,1.32160348209,0.584547819663,14.1289206628,-12.8073171807
    518 43255.0,1.31791106936,0.568594012542,14.1252282501,-12.8073171807
    519 43315.0,1.28935608403,0.558173047849,14.0966732648,-12.8073171807
    520 43375.0,1.25072588572,0.558578142972,14.0580430665,-12.8073171807
    521 43435.0,1.22738409277,0.561700622965,14.0347012735,-12.8073171807
    522 43495.0,1.19028084626,0.537407798551,13.997598027,-12.8073171807
    523 43555.0,1.10208327412,0.492892151516,13.9094004549,-12.8073171807
    524 43615.0,0.966133430175,0.456805003334,13.7734506109,-12.8073171807
    525 43675.0,0.823564701558,0.435512566863,13.6308818823,-12.8073171807
    526 43735.0,0.685089586879,0.409670044957,13.4924067676,-12.8073171807
    527 43795.0,0.538128972708,0.389656756766,13.3454461535,-12.8073171807
    528 43855.0,0.398553927095,0.386183217772,13.2058711078,-12.8073171807
    529 43915.0,0.284288666307,0.389226668207,13.0916058471,-12.8073171807
    530 43975.0,0.190978859665,0.39328807052,12.9982960404,-12.8073171807
    531 44035.0,0.135554329799,0.403049860287,12.9428715105,-12.8073171807
    532 44095.0,0.159325381808,0.423306949759,12.9666425626,-12.8073171807
    533 44155.0,0.25452413736,0.448341949314,13.0618413181,-12.8073171807
    534 44215.0,0.365906935616,0.461384346941,13.1732241164,-12.8073171807
    535 44275.0,0.458430506185,0.468353628492,13.2657476869,-12.8073171807
    536 44335.0,0.544014607,0.485934854142,13.3513317877,-12.8073171807
    537 44395.0,0.622485528055,0.49996489604,13.4298027088,-12.8073171807
    538 44455.0,0.668819879794,0.494650755325,13.4761370605,-12.8073171807
    539 44515.0,0.671371074666,0.481654278807,13.4786882554,-12.8073171807
    540 44575.0,0.64517629448,0.474380599366,13.4524934752,-12.8073171807
    541 44635.0,0.623917300792,0.475701498567,13.4312344815,-12.8073171807
    542 44695.0,0.618782659856,0.477112871023,13.4260998406,-12.8073171807
    543 44755.0,0.619615731318,0.473615498868,13.4269329121,-12.8073171807
    544 44815.0,0.604364134242,0.46660446636,13.411681315,-12.8073171807
    545 44875.0,0.558055230869,0.450062539373,13.3653724116,-12.8073171807
    546 44935.0,0.482037510013,0.42772981819,13.2893546908,-12.8073171807
    547 44995.0,0.395281906896,0.408613830513,13.2025990876,-12.8073171807
    548 45055.0,0.314146846956,0.399100836065,13.1214640277,-12.8073171807
    549 45115.0,0.24915575931,0.398622670521,13.0564729401,-12.8073171807
    550 45175.0,0.214362887488,0.402554229776,13.0216800682,-12.8073171807
    551 45235.0,0.21214183326,0.410131810212,13.019459014,-12.8073171807
    552 45295.0,0.239557874007,0.421395486128,13.0468750548,-12.8073171807
    553 45355.0,0.298184496223,0.434122818544,13.105501677,-12.8073171807
    554 45415.0,0.382729045509,0.447627933572,13.1900462263,-12.8073171807
    555 45475.0,0.472177995866,0.456039369816,13.2794951766,-12.8073171807
    556 45535.0,0.55315226649,0.460073110723,13.3604694472,-12.8073171807
    557 45595.0,0.603253310097,0.455008312216,13.4105704908,-12.8073171807
    558 45655.0,0.622008539127,0.447183467953,13.4293257199,-12.8073171807
    559 45715.0,0.608053986879,0.436546546027,13.4153711676,-12.8073171807
    560 45775.0,0.563189562563,0.424292031899,13.3705067433,-12.8073171807
    561 45835.0,0.48845376305,0.412141905282,13.2957709438,-12.8073171807
    562 45895.0,0.389354501369,0.402393236905,13.1966716821,-12.8073171807
    563 45955.0,0.277322845837,0.397577944944,13.0846400266,-12.8073171807
    564 46015.0,0.165089892773,0.397067960967,12.9724070735,-12.8073171807
    565 46075.0,0.0662875049043,0.400076143601,12.8736046856,-12.8073171807
    566 46135.0,0.00143307222487,0.405540484648,12.808750253,-12.8073171807
    567 46195.0,-0.0151354087208,0.411091259647,12.792181772,-12.8073171807
    568 46255.0,0.0218004341941,0.418775549805,12.8291176149,-12.8073171807
    569 46315.0,0.0954814367904,0.427652373799,12.9027986175,-12.8073171807
    570 46375.0,0.18746732744,0.436825825292,12.9947845082,-12.8073171807
    571 46435.0,0.327619460771,0.461066244594,13.1349366415,-12.8073171807
    572 46495.0,0.55023738848,0.513142948382,13.3575545692,-12.8073171807
    573 46555.0,0.795873045093,0.548157387207,13.6031902258,-12.8073171807
    574 46615.0,0.961221705225,0.539601874797,13.768538886,-12.8073171807
    575 46675.0,1.02642799177,0.5223824137,13.8337451725,-12.8073171807
    576 46735.0,1.03770726723,0.508692105006,13.845024448,-12.8073171807
    577 46795.0,1.01712207138,0.487161121818,13.8244392521,-12.8073171807
    578 46855.0,0.957510855271,0.45804362416,13.764828036,-12.8073171807
    579 46915.0,0.860943032809,0.434492194724,13.6682602136,-12.8073171807
    580 46975.0,0.750231202971,0.421851490178,13.5575483837,-12.8073171807
    581 47035.0,0.650212231434,0.418159914358,13.4575294122,-12.8073171807
    582 47095.0,0.575896413568,0.415281546184,13.3832135943,-12.8073171807
    583 47155.0,0.521324002806,0.417820486409,13.3286411836,-12.8073171807
    584 47215.0,0.476107262205,0.424062501803,13.2834244429,-12.8073171807
    585 47275.0,0.441779164364,0.424120921837,13.2490963451,-12.8073171807
    586 47335.0,0.414570351217,0.414718032716,13.221887532,-12.8073171807
    587 47395.0,0.368006710777,0.403753859726,13.1753238915,-12.8073171807
    588 47455.0,0.285627324295,0.396016171571,13.092944505,-12.8073171807
    589 47515.0,0.212235902971,0.399324953318,13.0195530837,-12.8073171807
    590 47575.0,0.15670907212,0.405261971025,12.9640262529,-12.8073171807
    591 47635.0,0.107052655296,0.410168998646,12.914369836,-12.8073171807
    592 47695.0,0.0613144220912,0.414785355854,12.8686316028,-12.8073171807
    593 47755.0,0.0338887733541,0.420546286173,12.8412059541,-12.8073171807
    594 47815.0,0.0372786668567,0.423953808578,12.8445958476,-12.8073171807
    595 47875.0,0.105383256407,0.434581062396,12.9127004372,-12.8073171807
    596 47935.0,0.256626323914,0.459481954109,13.0639435047,-12.8073171807
    597 47995.0,0.465374031298,0.495174030182,13.272691212,-12.8073171807
    598 48055.0,0.683810230738,0.5322405745,13.4911274115,-12.8073171807
    599 48115.0,0.889296916251,0.565683785888,13.696614097,-12.8073171807
    600 48175.0,1.0596868242,0.592117343752,13.8670040049,-12.8073171807
    601 48235.0,1.18028988442,0.5980784811,13.9876070652,-12.8073171807
    602 48295.0,1.24398387863,0.59056493017,14.0513010594,-12.8073171807
    603 48355.0,1.26246105599,0.578148759253,14.0697782367,-12.8073171807
    604 48415.0,1.24674990589,0.561861165434,14.0540670866,-12.8073171807
    605 48475.0,1.20783389709,0.542092000452,14.0151510778,-12.8073171807
    606 48535.0,1.14992611856,0.517521090154,13.9572432993,-12.8073171807
    607 48595.0,1.07497372667,0.491704853128,13.8822909074,-12.8073171807
    608 48655.0,0.98169306403,0.464498370264,13.7890102448,-12.8073171807
    609 48715.0,0.868032831001,0.442693119217,13.6753500117,-12.8073171807
    610 48775.0,0.745511464922,0.421843282628,13.5528286457,-12.8073171807
    611 48835.0,0.628798113484,0.403148391721,13.4361152942,-12.8073171807
    612 48895.0,0.514209509489,0.387442726565,13.3215266902,-12.8073171807
    613 48955.0,0.40059308445,0.381740501914,13.2079102652,-12.8073171807
    614 49015.0,0.31024353044,0.385886716767,13.1175607112,-12.8073171807
    615 49075.0,0.255320996102,0.396440371637,13.0626381768,-12.8073171807
    616 49135.0,0.24876810718,0.409485299382,13.0560852879,-12.8073171807
    617 49195.0,0.289602613242,0.424537543483,13.096919794,-12.8073171807
    618 49255.0,0.352920669961,0.436253319451,13.1602378507,-12.8073171807
    619 49315.0,0.404550011416,0.4392154619,13.2118671922,-12.8073171807
    620 49375.0,0.43325790956,0.436571941335,13.2405750903,-12.8073171807
    621 49435.0,0.432130101376,0.429520429602,13.2394472821,-12.8073171807
    622 49495.0,0.41572079121,0.423317023275,13.223037972,-12.8073171807
    623 49555.0,0.394946605269,0.424606022386,13.202263786,-12.8073171807
    624 49615.0,0.379437402647,0.427256924511,13.1867545834,-12.8073171807
    625 49675.0,0.378486762069,0.43434490276,13.1858039428,-12.8073171807
    626 49735.0,0.385278477865,0.440346344143,13.1925956586,-12.8073171807
    627 49795.0,0.389856531545,0.442898633108,13.1971737123,-12.8073171807
    628 49855.0,0.385054142943,0.442450712272,13.1923713237,-12.8073171807
    629 49915.0,0.373740612817,0.441180657778,13.1810577936,-12.8073171807
    630 49975.0,0.364694177826,0.439363451795,13.1720113586,-12.8073171807
    631 50035.0,0.38003629871,0.443450011429,13.1873534795,-12.8073171807
    632 50095.0,0.458329301975,0.465471230517,13.2656464827,-12.8073171807
    633 50155.0,0.605481244431,0.501486057784,13.4127984252,-12.8073171807
    634 50215.0,0.772148798492,0.518970577952,13.5794659792,-12.8073171807
    635 50275.0,0.895939516471,0.514974660713,13.7032566972,-12.8073171807
    636 50335.0,0.97044258661,0.513859317881,13.7777597674,-12.8073171807
    637 50395.0,1.02893071813,0.523094909586,13.8362478989,-12.8073171807
    638 50455.0,1.08376363252,0.523282459417,13.8910808133,-12.8073171807
    639 50515.0,1.10985213354,0.5058757003,13.9171693143,-12.8073171807
    640 50575.0,1.10135142511,0.488401560753,13.9086686059,-12.8073171807
    641 50635.0,1.08896388573,0.486607751229,13.8962810665,-12.8073171807
    642 50695.0,1.10093072072,0.49858298812,13.9082479015,-12.8073171807
    643 50755.0,1.14196159412,0.515632066847,13.9492787749,-12.8073171807
    644 50815.0,1.18019575356,0.52765473482,13.9875129343,-12.8073171807
    645 50875.0,1.17996534444,0.523336161383,13.9872825252,-12.8073171807
    646 50935.0,1.12747608705,0.499472531933,13.9347932678,-12.8073171807
    647 50995.0,1.03131927042,0.463895183656,13.8386364512,-12.8073171807
    648 51055.0,0.909734052958,0.433183375598,13.7170512337,-12.8073171807
    649 51115.0,0.77813535274,0.416731403869,13.5854525335,-12.8073171807
    650 51175.0,0.651211755068,0.401010347077,13.4585289358,-12.8073171807
    651 51235.0,0.52093761316,0.386050187343,13.3282547939,-12.8073171807
    652 51295.0,0.383853906997,0.381017668386,13.1911710877,-12.8073171807
    653 51355.0,0.246750067565,0.383757715042,13.0540672483,-12.8073171807
    654 51415.0,0.120270635758,0.390449704259,12.9275878165,-12.8073171807
    655 51475.0,0.0151673982568,0.398274939381,12.822484579,-12.8073171807
    656 51535.0,-0.0695151744378,0.405926663738,12.7378020063,-12.8073171807
    657 51595.0,-0.139439912396,0.415816869159,12.6678772683,-12.8073171807
    658 51655.0,-0.203906081622,0.427122847995,12.6034110991,-12.8073171807
    659 51715.0,-0.261276717388,0.437916369655,12.5460404634,-12.8073171807
    660 51775.0,-0.274175799398,0.441460391377,12.5331413813,-12.8073171807
    661 51835.0,-0.220441298562,0.44216264076,12.5868758822,-12.8073171807
    662 51895.0,-0.117236406371,0.4460805423,12.6900807744,-12.8073171807
    663 51955.0,-0.0158582393186,0.444552535838,12.7914589414,-12.8073171807
    664 52015.0,0.0255186385563,0.434134569384,12.8328358193,-12.8073171807
    665 52075.0,0.00518352830051,0.424092406349,12.812500709,-12.8073171807
    666 52135.0,-0.0466256290326,0.419140653591,12.7606915517,-12.8073171807
     1time,hours,stage,speed,depth,elevation
     212295,3.415277778,0.600000024,0,13.4073172,-12.80731718
     312355,3.431944444,0.421168968,0.091845389,13.22848615,-12.80731718
     412415,3.448611111,0.515062965,0.199547484,13.32238015,-12.80731718
     512475,3.465277778,0.530117152,0.242605254,13.33743433,-12.80731718
     612535,3.481944444,0.589175106,0.342864395,13.39649229,-12.80731718
     712595,3.498611111,0.588357911,0.333678872,13.39567509,-12.80731718
     812655,3.515277778,0.592118198,0.344383252,13.39943538,-12.80731718
     912715,3.531944444,0.624472531,0.351908338,13.43178971,-12.80731718
     1012775,3.548611111,0.627015014,0.394260577,13.43433219,-12.80731718
     1112835,3.565277778,0.648941027,0.429693641,13.45625821,-12.80731718
     1212895,3.581944444,0.63958874,0.429156544,13.44690592,-12.80731718
     1312955,3.598611111,0.597011444,0.414275258,13.40432862,-12.80731718
     1413015,3.615277778,0.515979116,0.41080439,13.3232963,-12.80731718
     1513075,3.631944444,0.435576752,0.443714988,13.24289393,-12.80731718
     1613135,3.648611111,0.388879882,0.507917426,13.19619706,-12.80731718
     1713195,3.665277778,0.336660622,0.539120113,13.1439778,-12.80731718
     1813255,3.681944444,0.269155032,0.540663861,13.07647221,-12.80731718
     1913315,3.698611111,0.204247833,0.540260635,13.01156501,-12.80731718
     2013375,3.715277778,0.151617306,0.540037808,12.95893449,-12.80731718
     2113435,3.731944444,0.119296058,0.544489103,12.92661324,-12.80731718
     2213495,3.748611111,0.113929127,0.551775768,12.92124631,-12.80731718
     2313555,3.765277778,0.155452359,0.553205119,12.96276954,-12.80731718
     2413615,3.781944444,0.232150723,0.538368732,13.0394679,-12.80731718
     2513675,3.798611111,0.296652744,0.52469649,13.10396992,-12.80731718
     2613735,3.815277778,0.339958,0.5342749,13.14727518,-12.80731718
     2713795,3.831944444,0.386958028,0.560397669,13.19427521,-12.80731718
     2813855,3.848611111,0.44282381,0.585985036,13.25014099,-12.80731718
     2913915,3.865277778,0.501000776,0.592606641,13.30831796,-12.80731718
     3013975,3.881944444,0.550213795,0.582635148,13.35753098,-12.80731718
     3114035,3.898611111,0.590160973,0.56500102,13.39747815,-12.80731718
     3214095,3.915277778,0.608558418,0.547311069,13.4158756,-12.80731718
     3314155,3.931944444,0.605843923,0.539959837,13.4131611,-12.80731718
     3414215,3.948611111,0.596074629,0.54177135,13.40339181,-12.80731718
     3514275,3.965277778,0.588910474,0.545735887,13.39622765,-12.80731718
     3614335,3.981944444,0.579894844,0.54698225,13.38721202,-12.80731718
     3714395,3.998611111,0.560080247,0.542921455,13.36739743,-12.80731718
     3814455,4.015277778,0.527997875,0.535973614,13.33531506,-12.80731718
     3914515,4.031944444,0.488467621,0.530522208,13.2957848,-12.80731718
     4014575,4.048611111,0.453301144,0.529946462,13.26061833,-12.80731718
     4114635,4.065277778,0.433209861,0.533394642,13.24052704,-12.80731718
     4214695,4.081944444,0.430030722,0.537702594,13.2373479,-12.80731718
     4314755,4.098611111,0.432544999,0.539315758,13.23986218,-12.80731718
     4414815,4.115277778,0.43198245,0.53969842,13.23929963,-12.80731718
     4514875,4.131944444,0.429622546,0.541383872,13.23693973,-12.80731718
     4614935,4.148611111,0.430990518,0.544509626,13.2383077,-12.80731718
     4714995,4.165277778,0.438001765,0.548261191,13.24531895,-12.80731718
     4815055,4.181944444,0.447468392,0.550708416,13.25478557,-12.80731718
     4915115,4.198611111,0.455668105,0.550773075,13.26298529,-12.80731718
     5015175,4.215277778,0.461625279,0.549784696,13.26894246,-12.80731718
     5115235,4.231944444,0.467521832,0.549507185,13.27483901,-12.80731718
     5215295,4.248611111,0.478714688,0.552510731,13.28603187,-12.80731718
     5315355,4.265277778,0.495614145,0.556394576,13.30293133,-12.80731718
     5415415,4.281944444,0.519399817,0.56261464,13.326717,-12.80731718
     5515475,4.298611111,0.549882348,0.571199777,13.35719953,-12.80731718
     5615535,4.315277778,0.591537346,0.583960762,13.39885453,-12.80731718
     5715595,4.331944444,0.651954989,0.603779211,13.45927217,-12.80731718
     5815655,4.348611111,0.737286857,0.631863524,13.54460404,-12.80731718
     5915715,4.365277778,0.850705902,0.667376342,13.65802308,-12.80731718
     6015775,4.381944444,0.997706385,0.714206358,13.80502357,-12.80731718
     6115835,4.398611111,1.179123731,0.767693373,13.98644091,-12.80731718
     6215895,4.415277778,1.392943726,0.82572503,14.20026091,-12.80731718
     6315955,4.431944444,1.617092521,0.873875728,14.4244097,-12.80731718
     6416015,4.448611111,1.819406797,0.898088514,14.62672398,-12.80731718
     6516075,4.465277778,1.963232514,0.903757161,14.77054969,-12.80731718
     6616135,4.481944444,2.047092761,0.889645936,14.85440994,-12.80731718
     6716195,4.498611111,2.067016756,0.859071137,14.87433394,-12.80731718
     6816255,4.515277778,2.026525194,0.821855942,14.83384237,-12.80731718
     6916315,4.531944444,1.930406167,0.779528298,14.73772335,-12.80731718
     7016375,4.548611111,1.792842858,0.727497586,14.60016004,-12.80731718
     7116435,4.565277778,1.619829315,0.674301849,14.4271465,-12.80731718
     7216495,4.581944444,1.42222074,0.617864468,14.22953792,-12.80731718
     7316555,4.598611111,1.205353772,0.562166286,14.01267095,-12.80731718
     7416615,4.615277778,0.968897141,0.499910519,13.77621432,-12.80731718
     7516675,4.631944444,0.714997583,0.447973347,13.52231476,-12.80731718
     7616735,4.648611111,0.447506097,0.397530514,13.25482328,-12.80731718
     7716795,4.665277778,0.181844643,0.368523607,12.98916182,-12.80731718
     7816855,4.681944444,-0.074137841,0.361242877,12.73317934,-12.80731718
     7916915,4.698611111,-0.305268874,0.371064762,12.50204831,-12.80731718
     8016975,4.715277778,-0.500035619,0.388229883,12.30728156,-12.80731718
     8117035,4.731944444,-0.650670501,0.403016813,12.15664668,-12.80731718
     8217095,4.748611111,-0.735223317,0.413605866,12.07209386,-12.80731718
     8317155,4.765277778,-0.732349791,0.422142834,12.07496739,-12.80731718
     8417215,4.781944444,-0.602851507,0.452246071,12.20446567,-12.80731718
     8517275,4.798611111,-0.34218984,0.522496467,12.46512734,-12.80731718
     8617335,4.815277778,-0.02922226,0.585688006,12.77809492,-12.80731718
     8717395,4.831944444,0.254096273,0.61233692,13.06141345,-12.80731718
     8817455,4.848611111,0.467028949,0.639075313,13.27434613,-12.80731718
     8917515,4.865277778,0.629919987,0.666667169,13.43723717,-12.80731718
     9017575,4.881944444,0.737294794,0.66888338,13.54461197,-12.80731718
     9117635,4.898611111,0.775725099,0.642355345,13.58304228,-12.80731718
     9217695,4.915277778,0.740156812,0.605074976,13.54747399,-12.80731718
     9317755,4.931944444,0.654376546,0.567269318,13.46169373,-12.80731718
     9417815,4.948611111,0.542425384,0.527982655,13.34974256,-12.80731718
     9517875,4.965277778,0.413230051,0.490402988,13.22054723,-12.80731718
     9617935,4.981944444,0.283673459,0.466407221,13.09099064,-12.80731718
     9717995,4.998611111,0.171265537,0.45051878,12.97858272,-12.80731718
     9818055,5.015277778,0.070948296,0.435209997,12.87826548,-12.80731718
     9918115,5.031944444,-0.033938489,0.416867454,12.77337869,-12.80731718
     10018175,5.048611111,-0.147715621,0.395340275,12.65960156,-12.80731718
     10118235,5.065277778,-0.253990005,0.384865424,12.55332718,-12.80731718
     10218295,5.081944444,-0.336911532,0.390963827,12.47040565,-12.80731718
     10318355,5.098611111,-0.355228193,0.402375919,12.45208899,-12.80731718
     10418415,5.115277778,-0.281865311,0.41786406,12.52545187,-12.80731718
     10518475,5.131944444,-0.144127718,0.441558195,12.66318946,-12.80731718
     10618535,5.148611111,0.014652831,0.470086474,12.82197001,-12.80731718
     10718595,5.165277778,0.177195299,0.498431446,12.98451248,-12.80731718
     10818655,5.181944444,0.333274042,0.527231683,13.14059122,-12.80731718
     10918715,5.198611111,0.455512945,0.545950767,13.26283013,-12.80731718
     11018775,5.215277778,0.55322028,0.553371046,13.36053746,-12.80731718
     11118835,5.231944444,0.62070558,0.555419773,13.42802276,-12.80731718
     11218895,5.248611111,0.662569541,0.557235922,13.46988672,-12.80731718
     11318955,5.265277778,0.682154705,0.557446906,13.48947189,-12.80731718
     11419015,5.281944444,0.672932413,0.551298918,13.48024959,-12.80731718
     11519075,5.298611111,0.632520927,0.53785528,13.43983811,-12.80731718
     11619135,5.315277778,0.567811059,0.523645564,13.37512824,-12.80731718
     11719195,5.331944444,0.49105542,0.51114334,13.2983726,-12.80731718
     11819255,5.348611111,0.407319047,0.496343185,13.21463623,-12.80731718
     11919315,5.365277778,0.323311547,0.482751967,13.13062873,-12.80731718
     12019375,5.381944444,0.236200662,0.463051668,13.04351784,-12.80731718
     12119435,5.398611111,0.134420522,0.434498726,12.9417377,-12.80731718
     12219495,5.415277778,0.013518152,0.406070832,12.82083533,-12.80731718
     12319555,5.431944444,-0.1094298,0.3913643,12.69788738,-12.80731718
     12419615,5.448611111,-0.2084512,0.390793114,12.59886598,-12.80731718
     12519675,5.465277778,-0.257752406,0.39766866,12.54956477,-12.80731718
     12619735,5.481944444,-0.240432564,0.410691408,12.56688462,-12.80731718
     12719795,5.498611111,-0.162740986,0.429196112,12.64457619,-12.80731718
     12819855,5.515277778,-0.042167455,0.451664474,12.76514973,-12.80731718
     12919915,5.531944444,0.104375491,0.479949621,12.91169267,-12.80731718
     13019975,5.548611111,0.263995208,0.50543012,13.07131239,-12.80731718
     13120035,5.565277778,0.431846003,0.542252379,13.23916318,-12.80731718
     13220095,5.581944444,0.610036025,0.584171725,13.41735321,-12.80731718
     13320155,5.598611111,0.776040082,0.614654198,13.58335726,-12.80731718
     13420215,5.615277778,0.910049438,0.63193688,13.71736662,-12.80731718
     13520275,5.631944444,0.983594816,0.634765397,13.790912,-12.80731718
     13620335,5.648611111,1.002709485,0.625309684,13.81002667,-12.80731718
     13720395,5.665277778,0.982324188,0.609515378,13.78964137,-12.80731718
     13820455,5.681944444,0.928468995,0.584629813,13.73578618,-12.80731718
     13920515,5.698611111,0.836451018,0.552470962,13.6437682,-12.80731718
     14020575,5.715277778,0.706905729,0.513346598,13.51422291,-12.80731718
     14120635,5.731944444,0.545349787,0.470531026,13.35266697,-12.80731718
     14220695,5.748611111,0.3758182,0.439254866,13.18313538,-12.80731718
     14320755,5.765277778,0.219510705,0.418578372,13.02682789,-12.80731718
     14420815,5.781944444,0.08094963,0.403775855,12.88826681,-12.80731718
     14520875,5.798611111,-0.035253801,0.392509356,12.77206338,-12.80731718
     14620935,5.815277778,-0.135035638,0.388810466,12.67228154,-12.80731718
     14720995,5.831944444,-0.205779716,0.393050929,12.60153746,-12.80731718
     14821055,5.848611111,-0.238583813,0.40076388,12.56873337,-12.80731718
     14921115,5.865277778,-0.234265102,0.40850743,12.57305208,-12.80731718
     15021175,5.881944444,-0.204328165,0.415707469,12.60298902,-12.80731718
     15121235,5.898611111,-0.163271448,0.421843128,12.64404573,-12.80731718
     15221295,5.915277778,-0.120252855,0.426389876,12.68706433,-12.80731718
     15321355,5.931944444,-0.084179947,0.429386771,12.72313723,-12.80731718
     15421415,5.948611111,-0.060411026,0.431588038,12.74690615,-12.80731718
     15521475,5.965277778,-0.045541515,0.432941102,12.76177567,-12.80731718
     15621535,5.981944444,-0.035444644,0.435381929,12.77187254,-12.80731718
     15721595,5.998611111,-0.026920064,0.437486972,12.78039712,-12.80731718
     15821655,6.015277778,-0.024194192,0.438436277,12.78312299,-12.80731718
     15921715,6.031944444,-0.027638569,0.438654207,12.77967861,-12.80731718
     16021775,6.048611111,-0.036290562,0.43944914,12.77102662,-12.80731718
     16121835,6.065277778,-0.038681875,0.443400711,12.76863531,-12.80731718
     16221895,6.081944444,-0.023458204,0.451404162,12.78385898,-12.80731718
     16321955,6.098611111,0.009149345,0.460240903,12.81646653,-12.80731718
     16422015,6.115277778,0.052235484,0.466045006,12.85955266,-12.80731718
     16522075,6.131944444,0.103569294,0.472347556,12.91088647,-12.80731718
     16622135,6.148611111,0.171660354,0.482696835,12.97897754,-12.80731718
     16722195,6.165277778,0.26836783,0.500900858,13.07568501,-12.80731718
     16822255,6.181944444,0.393803329,0.524454531,13.20112051,-12.80731718
     16922315,6.198611111,0.526564727,0.541770073,13.33388191,-12.80731718
     17022375,6.215277778,0.6361322,0.545453161,13.44344938,-12.80731718
     17122435,6.231944444,0.712260931,0.545215189,13.51957811,-12.80731718
     17222495,6.248611111,0.770308054,0.54963258,13.57762523,-12.80731718
     17322555,6.265277778,0.820574086,0.5550784,13.62789127,-12.80731718
     17422615,6.281944444,0.862655157,0.559693095,13.66997234,-12.80731718
     17522675,6.298611111,0.892860795,0.561577543,13.70017798,-12.80731718
     17622735,6.315277778,0.918809523,0.568690797,13.7261267,-12.80731718
     17722795,6.331944444,0.957725871,0.585617446,13.76504305,-12.80731718
     17822855,6.348611111,1.013699207,0.605846257,13.82101639,-12.80731718
     17922915,6.365277778,1.074745224,0.620809255,13.8820624,-12.80731718
     18022975,6.381944444,1.120577729,0.625092573,13.92789491,-12.80731718
     18123035,6.398611111,1.138915722,0.620005611,13.9462329,-12.80731718
     18223095,6.415277778,1.126970934,0.605938587,13.93428811,-12.80731718
     18323155,6.431944444,1.085565057,0.583008904,13.89288224,-12.80731718
     18423215,6.448611111,1.023209177,0.560073014,13.83052636,-12.80731718
     18523275,6.465277778,0.962367544,0.550084352,13.76968472,-12.80731718
     18623335,6.481944444,0.916905265,0.553211274,13.72422245,-12.80731718
     18723395,6.498611111,0.88836141,0.553041162,13.69567859,-12.80731718
     18823455,6.515277778,0.857141262,0.544775949,13.66445844,-12.80731718
     18923515,6.531944444,0.814868528,0.535963634,13.62218571,-12.80731718
     19023575,6.548611111,0.767766892,0.530909806,13.57508407,-12.80731718
     19123635,6.565277778,0.723747299,0.525619759,13.53106448,-12.80731718
     19223695,6.581944444,0.680948069,0.516399559,13.48826525,-12.80731718
     19323755,6.598611111,0.632645984,0.502399502,13.43996316,-12.80731718
     19423815,6.615277778,0.578173011,0.487452815,13.38549019,-12.80731718
     19523875,6.631944444,0.521731682,0.47639053,13.32904886,-12.80731718
     19623935,6.648611111,0.465876546,0.469154077,13.27319373,-12.80731718
     19723995,6.665277778,0.420916319,0.470982917,13.2282335,-12.80731718
     19824055,6.681944444,0.409672661,0.48878873,13.21698984,-12.80731718
     19924115,6.698611111,0.450985247,0.520315484,13.25830243,-12.80731718
     20024175,6.715277778,0.537506337,0.552855405,13.34482352,-12.80731718
     20124235,6.731944444,0.622441148,0.563692904,13.42975833,-12.80731718
     20224295,6.748611111,0.666363312,0.55635766,13.47368049,-12.80731718
     20324355,6.765277778,0.68105886,0.552718695,13.48837604,-12.80731718
     20424415,6.781944444,0.696964274,0.560453312,13.50428146,-12.80731718
     20524475,6.798611111,0.73185333,0.571908891,13.53917051,-12.80731718
     20624535,6.815277778,0.766164088,0.570915359,13.57348127,-12.80731718
     20724595,6.831944444,0.773707803,0.558332683,13.58102498,-12.80731718
     20824655,6.848611111,0.752528196,0.543704222,13.55984538,-12.80731718
     20924715,6.865277778,0.720010226,0.533516739,13.52732741,-12.80731718
     21024775,6.881944444,0.688554189,0.525973074,13.49587137,-12.80731718
     21124835,6.898611111,0.650680647,0.514692633,13.45799783,-12.80731718
     21224895,6.915277778,0.596129314,0.497541498,13.40344649,-12.80731718
     21324955,6.931944444,0.529523338,0.480208646,13.33684052,-12.80731718
     21425015,6.948611111,0.47023414,0.46933107,13.27755132,-12.80731718
     21525075,6.965277778,0.443543179,0.473365793,13.25086036,-12.80731718
     21625135,6.981944444,0.484317194,0.505407771,13.29163437,-12.80731718
     21725195,6.998611111,0.625081459,0.570920735,13.43239864,-12.80731718
     21825255,7.015277778,0.844309893,0.639620272,13.65162707,-12.80731718
     21925315,7.031944444,1.066232894,0.68211155,13.87355007,-12.80731718
     22025375,7.048611111,1.24410965,0.701427008,14.05142683,-12.80731718
     22125435,7.065277778,1.373740056,0.718014444,14.18105724,-12.80731718
     22225495,7.081944444,1.4496647,0.715299394,14.25698188,-12.80731718
     22325555,7.098611111,1.454745087,0.683083269,14.26206227,-12.80731718
     22425615,7.115277778,1.394468849,0.642517916,14.20178603,-12.80731718
     22525675,7.131944444,1.296157611,0.60806911,14.10347479,-12.80731718
     22625735,7.148611111,1.18200662,0.573783626,13.9893238,-12.80731718
     22725795,7.165277778,1.052266119,0.536429119,13.8595833,-12.80731718
     22825855,7.181944444,0.9073995,0.501649595,13.71471668,-12.80731718
     22925915,7.198611111,0.756818991,0.48236693,13.56413617,-12.80731718
     23025975,7.215277778,0.616854403,0.470550935,13.42417158,-12.80731718
     23126035,7.231944444,0.486989795,0.451585883,13.29430698,-12.80731718
     23226095,7.248611111,0.363588425,0.428212866,13.17090561,-12.80731718
     23326155,7.265277778,0.245829857,0.412605663,13.05314704,-12.80731718
     23426215,7.281944444,0.156119705,0.412043454,12.96343689,-12.80731718
     23526275,7.298611111,0.132706697,0.426249771,12.94002388,-12.80731718
     23626335,7.315277778,0.199959222,0.460224719,13.0072764,-12.80731718
     23726395,7.331944444,0.371568377,0.52645806,13.17888556,-12.80731718
     23826455,7.348611111,0.623096343,0.604717318,13.43041352,-12.80731718
     23926515,7.365277778,0.867168718,0.648056846,13.6744859,-12.80731718
     24026575,7.381944444,1.035775308,0.656971214,13.84309249,-12.80731718
     24126635,7.398611111,1.126713242,0.653673276,13.93403042,-12.80731718
     24226695,7.415277778,1.170369965,0.646935135,13.97768715,-12.80731718
     24326755,7.431944444,1.180560877,0.629764445,13.98787806,-12.80731718
     24426815,7.448611111,1.157798073,0.608521942,13.96511525,-12.80731718
     24526875,7.465277778,1.12489439,0.59944718,13.93221157,-12.80731718
     24626935,7.481944444,1.105983684,0.604116941,13.91330086,-12.80731718
     24726995,7.498611111,1.107213679,0.611588898,13.91453086,-12.80731718
     24827055,7.515277778,1.111294309,0.611745008,13.91861149,-12.80731718
     24927115,7.531944444,1.091711208,0.601842386,13.89902839,-12.80731718
     25027175,7.548611111,1.047915923,0.592884073,13.8552331,-12.80731718
     25127235,7.565277778,0.999019834,0.583903517,13.80633702,-12.80731718
     25227295,7.581944444,0.96268271,0.567460838,13.76999989,-12.80731718
     25327355,7.598611111,0.937196971,0.545176278,13.74451415,-12.80731718
     25427415,7.615277778,0.898264111,0.52343286,13.70558129,-12.80731718
     25527475,7.631944444,0.842583419,0.50279016,13.6499006,-12.80731718
     25627535,7.648611111,0.776707977,0.483899424,13.58402516,-12.80731718
     25727595,7.665277778,0.695487308,0.46592715,13.50280449,-12.80731718
     25827655,7.681944444,0.590852421,0.443398571,13.3981696,-12.80731718
     25927715,7.698611111,0.468563003,0.422201909,13.27588018,-12.80731718
     26027775,7.715277778,0.33355134,0.403718104,13.14086852,-12.80731718
     26127835,7.731944444,0.184899408,0.389373387,12.99221659,-12.80731718
     26227895,7.748611111,0.043185464,0.386862386,12.85050264,-12.80731718
     26327955,7.765277778,-0.077294514,0.389962449,12.73002267,-12.80731718
     26428015,7.781944444,-0.171902289,0.395084612,12.63541489,-12.80731718
     26528075,7.798611111,-0.232300942,0.40130117,12.57501624,-12.80731718
     26628135,7.815277778,-0.281208179,0.405264999,12.526109,-12.80731718
     26728195,7.831944444,-0.352162285,0.407025846,12.4551549,-12.80731718
     26828255,7.848611111,-0.451460335,0.41166314,12.35585685,-12.80731718
     26928315,7.865277778,-0.546473271,0.41900171,12.26084391,-12.80731718
     27028375,7.881944444,-0.596520661,0.425805422,12.21079652,-12.80731718
     27128435,7.898611111,-0.584905138,0.431436403,12.22241204,-12.80731718
     27228495,7.915277778,-0.507996093,0.439452438,12.29932109,-12.80731718
     27328555,7.931944444,-0.385907513,0.449531326,12.42140967,-12.80731718
     27428615,7.948611111,-0.255382786,0.454977407,12.55193439,-12.80731718
     27528675,7.965277778,-0.138199887,0.456129824,12.66911729,-12.80731718
     27628735,7.981944444,-0.02221581,0.461166759,12.78510137,-12.80731718
     27728795,7.998611111,0.107570952,0.474963106,12.91488813,-12.80731718
     27828855,8.015277778,0.249911217,0.485297763,13.0572284,-12.80731718
     27928915,8.031944444,0.372671136,0.490113842,13.17998832,-12.80731718
     28028975,8.048611111,0.467846138,0.489727976,13.27516332,-12.80731718
     28129035,8.065277778,0.537453448,0.49069074,13.34477063,-12.80731718
     28229095,8.081944444,0.59633671,0.496701896,13.40365389,-12.80731718
     28329155,8.098611111,0.636183345,0.49262743,13.44350053,-12.80731718
     28429215,8.115277778,0.62915128,0.476590589,13.43646846,-12.80731718
     28529275,8.131944444,0.581577522,0.462459558,13.3888947,-12.80731718
     28629335,8.148611111,0.532584727,0.459163472,13.33990191,-12.80731718
     28729395,8.165277778,0.496061331,0.452907767,13.30337851,-12.80731718
     28829455,8.181944444,0.449287832,0.434226552,13.25660501,-12.80731718
     28929515,8.198611111,0.360960533,0.409166028,13.16827771,-12.80731718
     29029575,8.215277778,0.219142609,0.387895892,13.02645979,-12.80731718
     29129635,8.231944444,0.044312852,0.384107613,12.85163003,-12.80731718
     29229695,8.248611111,-0.131109067,0.393983043,12.67620811,-12.80731718
     29329755,8.265277778,-0.302414776,0.413300194,12.5049024,-12.80731718
     29429815,8.281944444,-0.47639765,0.441389949,12.33091953,-12.80731718
     29529875,8.298611111,-0.651073954,0.473983966,12.15624323,-12.80731718
     29629935,8.315277778,-0.802682215,0.500622487,12.00463497,-12.80731718
     29729995,8.331944444,-0.909822872,0.510387469,11.89749431,-12.80731718
     29830055,8.348611111,-0.949008234,0.501373887,11.85830895,-12.80731718
     29930115,8.365277778,-0.885989843,0.481411569,11.92132734,-12.80731718
     30030175,8.381944444,-0.714334598,0.47123155,12.09298258,-12.80731718
     30130235,8.398611111,-0.473963095,0.481501681,12.33335409,-12.80731718
     30230295,8.415277778,-0.158672045,0.519197333,12.64864514,-12.80731718
     30330355,8.431944444,0.170552128,0.556651958,12.97786931,-12.80731718
     30430415,8.448611111,0.460437928,0.578137666,13.26775511,-12.80731718
     30530475,8.465277778,0.697940345,0.603735035,13.50525753,-12.80731718
     30630535,8.481944444,0.880899278,0.623850896,13.68821646,-12.80731718
     30730595,8.498611111,0.995806456,0.612439251,13.80312364,-12.80731718
     30830655,8.515277778,1.02856135,0.587021607,13.83587853,-12.80731718
     30930715,8.531944444,1.00172752,0.560164629,13.8090447,-12.80731718
     31030775,8.548611111,0.946551955,0.539593546,13.75386914,-12.80731718
     31130835,8.565277778,0.87060297,0.514902347,13.67792015,-12.80731718
     31230895,8.581944444,0.769543592,0.481790315,13.57686077,-12.80731718
     31330955,8.598611111,0.668083382,0.46121912,13.47540056,-12.80731718
     31431015,8.615277778,0.631610911,0.495496738,13.43892809,-12.80731718
     31531075,8.631944444,0.765722829,0.592280767,13.57304001,-12.80731718
     31631135,8.648611111,0.865517847,0.570657781,13.67283503,-12.80731718
     31731195,8.665277778,0.82629241,0.479817036,13.63360959,-12.80731718
     31831255,8.681944444,0.69290789,0.425733101,13.50022507,-12.80731718
     31931315,8.698611111,0.560997812,0.41082273,13.36831499,-12.80731718
     32031375,8.715277778,0.503004803,0.411068492,13.31032198,-12.80731718
     32131435,8.731944444,0.495362823,0.41865885,13.30268,-12.80731718
     32231495,8.748611111,0.506594969,0.431991642,13.31391215,-12.80731718
     32331555,8.765277778,0.489658968,0.43054499,13.29697615,-12.80731718
     32431615,8.781944444,0.43182382,0.418322868,13.239141,-12.80731718
     32531675,8.798611111,0.357625774,0.412799398,13.16494296,-12.80731718
     32631735,8.815277778,0.275492288,0.4153365,13.08280947,-12.80731718
     32731795,8.831944444,0.204996171,0.413062832,13.01231335,-12.80731718
     32831855,8.848611111,0.155119922,0.409681333,12.9624371,-12.80731718
     32931915,8.865277778,0.127775915,0.411924799,12.9350931,-12.80731718
     33031975,8.881944444,0.147905099,0.430576225,12.95522228,-12.80731718
     33132035,8.898611111,0.262372172,0.477942922,13.06968935,-12.80731718
     33232095,8.915277778,0.45572084,0.537401675,13.26303802,-12.80731718
     33332155,8.931944444,0.673918308,0.592356002,13.48123549,-12.80731718
     33432215,8.948611111,0.872138229,0.638049617,13.67945541,-12.80731718
     33532275,8.965277778,1.057225586,0.679376082,13.86454277,-12.80731718
     33632335,8.981944444,1.263669122,0.730740201,14.0709863,-12.80731718
     33732395,8.998611111,1.492890562,0.785615681,14.30020774,-12.80731718
     33832455,9.015277778,1.688147004,0.801161026,14.49546418,-12.80731718
     33932515,9.031944444,1.797147568,0.772076877,14.60446475,-12.80731718
     34032575,9.048611111,1.812740556,0.738002483,14.62005774,-12.80731718
     34132635,9.065277778,1.771885008,0.71054157,14.57920219,-12.80731718
     34232695,9.081944444,1.690274192,0.66957902,14.49759137,-12.80731718
     34332755,9.098611111,1.548723648,0.605829287,14.35604083,-12.80731718
     34432815,9.115277778,1.360636516,0.546673052,14.1679537,-12.80731718
     34532875,9.131944444,1.17608603,0.516504883,13.98340321,-12.80731718
     34632935,9.148611111,1.063605833,0.511267517,13.87092301,-12.80731718
     34732995,9.165277778,0.969479201,0.474439896,13.77679638,-12.80731718
     34833055,9.181944444,0.806977936,0.416683732,13.61429512,-12.80731718
     34933115,9.198611111,0.58445112,0.379404033,13.3917683,-12.80731718
     35033175,9.215277778,0.368599749,0.368500612,13.17591693,-12.80731718
     35133235,9.231944444,0.205775333,0.375019666,13.01309251,-12.80731718
     35233295,9.248611111,0.116431668,0.39074351,12.92374885,-12.80731718
     35333355,9.265277778,0.10825676,0.411812738,12.91557394,-12.80731718
     35433415,9.281944444,0.181305228,0.439745299,12.98862241,-12.80731718
     35533475,9.298611111,0.296571614,0.46856494,13.10388879,-12.80731718
     35633535,9.315277778,0.477208125,0.52626676,13.28452531,-12.80731718
     35733595,9.331944444,0.718859088,0.606113833,13.52617627,-12.80731718
     35833655,9.348611111,0.939084407,0.639165982,13.74640159,-12.80731718
     35933715,9.365277778,1.094852501,0.645466432,13.90216968,-12.80731718
     36033775,9.381944444,1.194771835,0.647971083,14.00208902,-12.80731718
     36133835,9.398611111,1.245116421,0.641074513,14.0524336,-12.80731718
     36233895,9.415277778,1.244360388,0.62484882,14.05167757,-12.80731718
     36333955,9.431944444,1.206541629,0.60860672,14.01385881,-12.80731718
     36434015,9.448611111,1.162653467,0.604762918,13.96997065,-12.80731718
     36534075,9.465277778,1.124303343,0.603876011,13.93162052,-12.80731718
     36634135,9.481944444,1.040272507,0.561576762,13.84758969,-12.80731718
     36734195,9.498611111,0.877352428,0.494399711,13.68466961,-12.80731718
     36834255,9.515277778,0.66546568,0.447869212,13.47278286,-12.80731718
     36934315,9.531944444,0.464103879,0.422825279,13.27142106,-12.80731718
     37034375,9.548611111,0.328153012,0.410532193,13.13547019,-12.80731718
     37134435,9.565277778,0.232621074,0.393478198,13.03993825,-12.80731718
     37234495,9.581944444,0.150405556,0.387602511,12.95772274,-12.80731718
     37334555,9.598611111,0.064996573,0.390460107,12.87231375,-12.80731718
     37434615,9.615277778,0.005573446,0.398095847,12.81289063,-12.80731718
     37534675,9.631944444,-0.024753136,0.403836976,12.78256404,-12.80731718
     37634735,9.648611111,-0.032162671,0.410245824,12.77515451,-12.80731718
     37734795,9.665277778,-0.017934294,0.414745445,12.78938289,-12.80731718
     37834855,9.681944444,0.013700232,0.419247151,12.82101741,-12.80731718
     37934915,9.698611111,0.048588446,0.423793591,12.85590563,-12.80731718
     38034975,9.715277778,0.097790848,0.434258124,12.90510803,-12.80731718
     38135035,9.731944444,0.188297266,0.45760017,12.99561445,-12.80731718
     38235095,9.748611111,0.337322691,0.49566733,13.14463987,-12.80731718
     38335155,9.765277778,0.522836891,0.538150911,13.33015407,-12.80731718
     38435215,9.781944444,0.700654199,0.567433172,13.50797138,-12.80731718
     38535275,9.798611111,0.82154977,0.575392191,13.62886695,-12.80731718
     38635335,9.815277778,0.895427419,0.578289029,13.7027446,-12.80731718
     38735395,9.831944444,0.935685727,0.58562263,13.74300291,-12.80731718
     38835455,9.848611111,0.971764968,0.588797629,13.77908215,-12.80731718
     38935515,9.865277778,0.994190924,0.578203332,13.8015081,-12.80731718
     39035575,9.881944444,0.982258148,0.556080707,13.78957533,-12.80731718
     39135635,9.898611111,0.930495582,0.524575313,13.73781276,-12.80731718
     39235695,9.915277778,0.843750875,0.489037058,13.65106806,-12.80731718
     39335755,9.931944444,0.736698398,0.456429771,13.54401558,-12.80731718
     39435815,9.948611111,0.620775531,0.427934463,13.42809271,-12.80731718
     39535875,9.965277778,0.505141825,0.410988837,13.31245901,-12.80731718
     39635935,9.981944444,0.413142186,0.402906836,13.22045937,-12.80731718
     39735995,9.998611111,0.359985067,0.403325043,13.16730225,-12.80731718
     39836055,10.01527778,0.355392853,0.413087764,13.16271003,-12.80731718
     39936115,10.03194444,0.389733294,0.426862976,13.19705047,-12.80731718
     40036175,10.04861111,0.445853687,0.438465955,13.25317087,-12.80731718
     40136235,10.06527778,0.498383321,0.446387745,13.3057005,-12.80731718
     40236295,10.08194444,0.534897863,0.451572703,13.34221504,-12.80731718
     40336355,10.09861111,0.547031121,0.450947974,13.3543483,-12.80731718
     40436415,10.11527778,0.533934149,0.447986888,13.34125133,-12.80731718
     40536475,10.13194444,0.497270284,0.440239431,13.30458746,-12.80731718
     40636535,10.14861111,0.435634114,0.428267037,13.24295129,-12.80731718
     40736595,10.16527778,0.361146177,0.419915436,13.16846336,-12.80731718
     40836655,10.18194444,0.294621074,0.416724608,13.10193825,-12.80731718
     40936715,10.19861111,0.244585586,0.418982746,13.05190277,-12.80731718
     41036775,10.21527778,0.217966488,0.426213654,13.02528367,-12.80731718
     41136835,10.23194444,0.216988158,0.436957629,13.02430534,-12.80731718
     41236895,10.24861111,0.225379255,0.441255272,13.03269644,-12.80731718
     41336955,10.26527778,0.227990335,0.438358524,13.03530752,-12.80731718
     41437015,10.28194444,0.235072217,0.439396397,13.0423894,-12.80731718
     41537075,10.29861111,0.255949729,0.442214358,13.06326691,-12.80731718
     41637135,10.31527778,0.287848172,0.442765837,13.09516535,-12.80731718
     41737195,10.33194444,0.337672307,0.448687451,13.14498949,-12.80731718
     41837255,10.34861111,0.41825441,0.463938186,13.22557159,-12.80731718
     41937315,10.36527778,0.511064336,0.475147126,13.31838152,-12.80731718
     42037375,10.38194444,0.586857792,0.47494175,13.39417497,-12.80731718
     42137435,10.39861111,0.605867153,0.457282781,13.41318433,-12.80731718
     42237495,10.41527778,0.566151344,0.43524207,13.37346853,-12.80731718
     42337555,10.43194444,0.498793557,0.42117735,13.30611074,-12.80731718
     42437615,10.44861111,0.431456228,0.412537439,13.23877341,-12.80731718
     42537675,10.46527778,0.372468654,0.40734768,13.17978583,-12.80731718
     42637735,10.48194444,0.332487765,0.40981083,13.13980495,-12.80731718
     42737795,10.49861111,0.321541176,0.422275597,13.12885836,-12.80731718
     42837855,10.51527778,0.375394528,0.447749525,13.18271171,-12.80731718
     42937915,10.53194444,0.472976489,0.473466669,13.28029367,-12.80731718
     43037975,10.54861111,0.556686328,0.479038811,13.36400351,-12.80731718
     43138035,10.56527778,0.580096864,0.468123712,13.38741404,-12.80731718
     43238095,10.58194444,0.570706302,0.45806656,13.37802348,-12.80731718
     43338155,10.59861111,0.555138512,0.448868351,13.36245569,-12.80731718
     43438215,10.61527778,0.557865351,0.450014845,13.36518253,-12.80731718
     43538275,10.63194444,0.605780039,0.470124827,13.41309722,-12.80731718
     43638335,10.64861111,0.694867426,0.494981004,13.50218461,-12.80731718
     43738395,10.66527778,0.754644683,0.490604357,13.56196186,-12.80731718
     43838455,10.68194444,0.74671418,0.4672821,13.55403136,-12.80731718
     43938515,10.69861111,0.690904243,0.450985645,13.49822142,-12.80731718
     44038575,10.71527778,0.619523978,0.440786077,13.42684116,-12.80731718
     44138635,10.73194444,0.537996745,0.42575053,13.34531393,-12.80731718
     44238695,10.74861111,0.449200691,0.407880129,13.25651787,-12.80731718
     44338755,10.76527778,0.364799972,0.400285624,13.17211715,-12.80731718
     44438815,10.78194444,0.270728868,0.39398967,13.07804605,-12.80731718
     44538875,10.79861111,0.170763363,0.393605287,12.97808054,-12.80731718
     44638935,10.81527778,0.065197348,0.396620959,12.87251453,-12.80731718
     44738995,10.83194444,-0.037584132,0.401302534,12.76973305,-12.80731718
     44839055,10.84861111,-0.130863264,0.405107408,12.67645392,-12.80731718
     44939115,10.86527778,-0.194452526,0.412303932,12.61286465,-12.80731718
     45039175,10.88194444,-0.231904195,0.420628651,12.57541299,-12.80731718
     45139235,10.89861111,-0.241417626,0.427251718,12.56589955,-12.80731718
     45239295,10.91527778,-0.200601276,0.433036161,12.6067159,-12.80731718
     45339355,10.93194444,-0.086512649,0.443263033,12.72080453,-12.80731718
     45439415,10.94861111,0.081096226,0.461359195,12.88841341,-12.80731718
     45539475,10.96527778,0.253002274,0.476616112,13.06031945,-12.80731718
     45639535,10.98194444,0.401593148,0.486085952,13.20891033,-12.80731718
     45739595,10.99861111,0.52336979,0.49530624,13.33068697,-12.80731718
     45839655,11.01527778,0.629622819,0.507141012,13.43694,-12.80731718
     45939715,11.03194444,0.711286977,0.507539953,13.51860416,-12.80731718
     46039775,11.04861111,0.763445757,0.499927263,13.57076294,-12.80731718
     46139835,11.06527778,0.786088872,0.492450328,13.59340605,-12.80731718
     46239895,11.08194444,0.791451265,0.489364795,13.59876845,-12.80731718
     46339955,11.09861111,0.777450525,0.478899954,13.58476771,-12.80731718
     46440015,11.11527778,0.724958192,0.45264527,13.53227537,-12.80731718
     46540075,11.13194444,0.619984419,0.423044717,13.4273016,-12.80731718
     46640135,11.14861111,0.48280411,0.403181955,13.29012129,-12.80731718
     46740195,11.16527778,0.342104845,0.390178822,13.14942203,-12.80731718
     46840255,11.18194444,0.222538124,0.386772897,13.0298553,-12.80731718
     46940315,11.19861111,0.130798064,0.391650219,12.93811524,-12.80731718
     47040375,11.21527778,0.086653279,0.401931064,12.89397046,-12.80731718
     47140435,11.23194444,0.117170034,0.415968268,12.92448722,-12.80731718
     47240495,11.24861111,0.22167711,0.434320873,13.02899429,-12.80731718
     47340555,11.26527778,0.369478468,0.45773058,13.17679565,-12.80731718
     47440615,11.28194444,0.541294443,0.48698604,13.34861162,-12.80731718
     47540675,11.29861111,0.704767209,0.508352916,13.51208439,-12.80731718
     47640735,11.31527778,0.834783795,0.51726099,13.64210098,-12.80731718
     47740795,11.33194444,0.908879714,0.512535225,13.7161969,-12.80731718
     47840855,11.34861111,0.930027014,0.497536953,13.7373442,-12.80731718
     47940915,11.36527778,0.910082523,0.483188799,13.7173997,-12.80731718
     48040975,11.38194444,0.867344886,0.471464704,13.67466207,-12.80731718
     48141035,11.39861111,0.816192139,0.465333598,13.62350932,-12.80731718
     48241095,11.41527778,0.769421349,0.467516367,13.57673853,-12.80731718
     48341155,11.43194444,0.739063561,0.477112362,13.54638074,-12.80731718
     48441215,11.44861111,0.73573124,0.494695379,13.54304842,-12.80731718
     48541275,11.46527778,0.749241682,0.507997159,13.55655886,-12.80731718
     48641335,11.48194444,0.74633676,0.501219504,13.55365394,-12.80731718
     48741395,11.49861111,0.701296425,0.47685345,13.50861361,-12.80731718
     48841455,11.51527778,0.631438024,0.451489996,13.4387552,-12.80731718
     48941515,11.53194444,0.563141218,0.43527948,13.3704584,-12.80731718
     49041575,11.54861111,0.514933559,0.427968638,13.32225074,-12.80731718
     49141635,11.56527778,0.487468123,0.42613018,13.2947853,-12.80731718
     49241695,11.58194444,0.476322279,0.429282824,13.28363946,-12.80731718
     49341755,11.59861111,0.481604566,0.437149024,13.28892175,-12.80731718
     49441815,11.61527778,0.502771816,0.446226,13.310089,-12.80731718
     49541875,11.63194444,0.529893839,0.451343393,13.33721102,-12.80731718
     49641935,11.64861111,0.551333468,0.451638826,13.35865065,-12.80731718
     49741995,11.66527778,0.563338624,0.447789232,13.37065581,-12.80731718
     49842055,11.68194444,0.563121001,0.440302713,13.37043818,-12.80731718
     49942115,11.69861111,0.550847129,0.43349874,13.35816431,-12.80731718
     50042175,11.71527778,0.531676842,0.432767851,13.33899402,-12.80731718
     50142235,11.73194444,0.515051165,0.438100639,13.32236835,-12.80731718
     50242295,11.74861111,0.504369749,0.443686416,13.31168693,-12.80731718
     50342355,11.76527778,0.487390914,0.443600453,13.2947081,-12.80731718
     50442415,11.78194444,0.452805227,0.437816642,13.26012241,-12.80731718
     50542475,11.79861111,0.407432852,0.433025471,13.21475003,-12.80731718
     50642535,11.81527778,0.378349315,0.436679212,13.1856665,-12.80731718
     50742595,11.83194444,0.410710076,0.461001664,13.21802726,-12.80731718
     50842655,11.84861111,0.550617632,0.512671689,13.35793481,-12.80731718
     50942715,11.86527778,0.707683702,0.530514316,13.51500088,-12.80731718
     51042775,11.88194444,0.813016955,0.523148819,13.62033414,-12.80731718
     51142835,11.89861111,0.912339325,0.550816595,13.71965651,-12.80731718
     51242895,11.91527778,1.046796593,0.593853377,13.85411377,-12.80731718
     51342955,11.93194444,1.185132888,0.607944392,13.99245007,-12.80731718
     51443015,11.94861111,1.265740145,0.591936634,14.07305733,-12.80731718
     51543075,11.96527778,1.29400694,0.582412285,14.10132412,-12.80731718
     51643135,11.98194444,1.308891743,0.586872568,14.11620892,-12.80731718
     51743195,11.99861111,1.321603482,0.58454782,14.12892066,-12.80731718
     51843255,12.01527778,1.317911069,0.568594013,14.12522825,-12.80731718
     51943315,12.03194444,1.289356084,0.558173048,14.09667326,-12.80731718
     52043375,12.04861111,1.250725886,0.558578143,14.05804307,-12.80731718
     52143435,12.06527778,1.227384093,0.561700623,14.03470127,-12.80731718
     52243495,12.08194444,1.190280846,0.537407799,13.99759803,-12.80731718
     52343555,12.09861111,1.102083274,0.492892152,13.90940045,-12.80731718
     52443615,12.11527778,0.96613343,0.456805003,13.77345061,-12.80731718
     52543675,12.13194444,0.823564702,0.435512567,13.63088188,-12.80731718
     52643735,12.14861111,0.685089587,0.409670045,13.49240677,-12.80731718
     52743795,12.16527778,0.538128973,0.389656757,13.34544615,-12.80731718
     52843855,12.18194444,0.398553927,0.386183218,13.20587111,-12.80731718
     52943915,12.19861111,0.284288666,0.389226668,13.09160585,-12.80731718
     53043975,12.21527778,0.19097886,0.393288071,12.99829604,-12.80731718
     53144035,12.23194444,0.13555433,0.40304986,12.94287151,-12.80731718
     53244095,12.24861111,0.159325382,0.42330695,12.96664256,-12.80731718
     53344155,12.26527778,0.254524137,0.448341949,13.06184132,-12.80731718
     53444215,12.28194444,0.365906936,0.461384347,13.17322412,-12.80731718
     53544275,12.29861111,0.458430506,0.468353628,13.26574769,-12.80731718
     53644335,12.31527778,0.544014607,0.485934854,13.35133179,-12.80731718
     53744395,12.33194444,0.622485528,0.499964896,13.42980271,-12.80731718
     53844455,12.34861111,0.66881988,0.494650755,13.47613706,-12.80731718
     53944515,12.36527778,0.671371075,0.481654279,13.47868826,-12.80731718
     54044575,12.38194444,0.645176294,0.474380599,13.45249348,-12.80731718
     54144635,12.39861111,0.623917301,0.475701499,13.43123448,-12.80731718
     54244695,12.41527778,0.61878266,0.477112871,13.42609984,-12.80731718
     54344755,12.43194444,0.619615731,0.473615499,13.42693291,-12.80731718
     54444815,12.44861111,0.604364134,0.466604466,13.41168132,-12.80731718
     54544875,12.46527778,0.558055231,0.450062539,13.36537241,-12.80731718
     54644935,12.48194444,0.48203751,0.427729818,13.28935469,-12.80731718
     54744995,12.49861111,0.395281907,0.408613831,13.20259909,-12.80731718
     54845055,12.51527778,0.314146847,0.399100836,13.12146403,-12.80731718
     54945115,12.53194444,0.249155759,0.398622671,13.05647294,-12.80731718
     55045175,12.54861111,0.214362887,0.40255423,13.02168007,-12.80731718
     55145235,12.56527778,0.212141833,0.41013181,13.01945901,-12.80731718
     55245295,12.58194444,0.239557874,0.421395486,13.04687505,-12.80731718
     55345355,12.59861111,0.298184496,0.434122819,13.10550168,-12.80731718
     55445415,12.61527778,0.382729046,0.447627934,13.19004623,-12.80731718
     55545475,12.63194444,0.472177996,0.45603937,13.27949518,-12.80731718
     55645535,12.64861111,0.553152266,0.460073111,13.36046945,-12.80731718
     55745595,12.66527778,0.60325331,0.455008312,13.41057049,-12.80731718
     55845655,12.68194444,0.622008539,0.447183468,13.42932572,-12.80731718
     55945715,12.69861111,0.608053987,0.436546546,13.41537117,-12.80731718
     56045775,12.71527778,0.563189563,0.424292032,13.37050674,-12.80731718
     56145835,12.73194444,0.488453763,0.412141905,13.29577094,-12.80731718
     56245895,12.74861111,0.389354501,0.402393237,13.19667168,-12.80731718
     56345955,12.76527778,0.277322846,0.397577945,13.08464003,-12.80731718
     56446015,12.78194444,0.165089893,0.397067961,12.97240707,-12.80731718
     56546075,12.79861111,0.066287505,0.400076144,12.87360469,-12.80731718
     56646135,12.81527778,0.001433072,0.405540485,12.80875025,-12.80731718
     56746195,12.83194444,-0.015135409,0.41109126,12.79218177,-12.80731718
     56846255,12.84861111,0.021800434,0.41877555,12.82911761,-12.80731718
     56946315,12.86527778,0.095481437,0.427652374,12.90279862,-12.80731718
     57046375,12.88194444,0.187467327,0.436825825,12.99478451,-12.80731718
     57146435,12.89861111,0.327619461,0.461066245,13.13493664,-12.80731718
     57246495,12.91527778,0.550237388,0.513142948,13.35755457,-12.80731718
     57346555,12.93194444,0.795873045,0.548157387,13.60319023,-12.80731718
     57446615,12.94861111,0.961221705,0.539601875,13.76853889,-12.80731718
     57546675,12.96527778,1.026427992,0.522382414,13.83374517,-12.80731718
     57646735,12.98194444,1.037707267,0.508692105,13.84502445,-12.80731718
     57746795,12.99861111,1.017122071,0.487161122,13.82443925,-12.80731718
     57846855,13.01527778,0.957510855,0.458043624,13.76482804,-12.80731718
     57946915,13.03194444,0.860943033,0.434492195,13.66826021,-12.80731718
     58046975,13.04861111,0.750231203,0.42185149,13.55754838,-12.80731718
     58147035,13.06527778,0.650212231,0.418159914,13.45752941,-12.80731718
     58247095,13.08194444,0.575896414,0.415281546,13.38321359,-12.80731718
     58347155,13.09861111,0.521324003,0.417820486,13.32864118,-12.80731718
     58447215,13.11527778,0.476107262,0.424062502,13.28342444,-12.80731718
     58547275,13.13194444,0.441779164,0.424120922,13.24909635,-12.80731718
     58647335,13.14861111,0.414570351,0.414718033,13.22188753,-12.80731718
     58747395,13.16527778,0.368006711,0.40375386,13.17532389,-12.80731718
     58847455,13.18194444,0.285627324,0.396016172,13.09294451,-12.80731718
     58947515,13.19861111,0.212235903,0.399324953,13.01955308,-12.80731718
     59047575,13.21527778,0.156709072,0.405261971,12.96402625,-12.80731718
     59147635,13.23194444,0.107052655,0.410168999,12.91436984,-12.80731718
     59247695,13.24861111,0.061314422,0.414785356,12.8686316,-12.80731718
     59347755,13.26527778,0.033888773,0.420546286,12.84120595,-12.80731718
     59447815,13.28194444,0.037278667,0.423953809,12.84459585,-12.80731718
     59547875,13.29861111,0.105383256,0.434581062,12.91270044,-12.80731718
     59647935,13.31527778,0.256626324,0.459481954,13.0639435,-12.80731718
     59747995,13.33194444,0.465374031,0.49517403,13.27269121,-12.80731718
     59848055,13.34861111,0.683810231,0.532240575,13.49112741,-12.80731718
     59948115,13.36527778,0.889296916,0.565683786,13.6966141,-12.80731718
     60048175,13.38194444,1.059686824,0.592117344,13.867004,-12.80731718
     60148235,13.39861111,1.180289884,0.598078481,13.98760707,-12.80731718
     60248295,13.41527778,1.243983879,0.59056493,14.05130106,-12.80731718
     60348355,13.43194444,1.262461056,0.578148759,14.06977824,-12.80731718
     60448415,13.44861111,1.246749906,0.561861165,14.05406709,-12.80731718
     60548475,13.46527778,1.207833897,0.542092,14.01515108,-12.80731718
     60648535,13.48194444,1.149926119,0.51752109,13.9572433,-12.80731718
     60748595,13.49861111,1.074973727,0.491704853,13.88229091,-12.80731718
     60848655,13.51527778,0.981693064,0.46449837,13.78901024,-12.80731718
     60948715,13.53194444,0.868032831,0.442693119,13.67535001,-12.80731718
     61048775,13.54861111,0.745511465,0.421843283,13.55282865,-12.80731718
     61148835,13.56527778,0.628798113,0.403148392,13.43611529,-12.80731718
     61248895,13.58194444,0.514209509,0.387442727,13.32152669,-12.80731718
     61348955,13.59861111,0.400593084,0.381740502,13.20791027,-12.80731718
     61449015,13.61527778,0.31024353,0.385886717,13.11756071,-12.80731718
     61549075,13.63194444,0.255320996,0.396440372,13.06263818,-12.80731718
     61649135,13.64861111,0.248768107,0.409485299,13.05608529,-12.80731718
     61749195,13.66527778,0.289602613,0.424537543,13.09691979,-12.80731718
     61849255,13.68194444,0.35292067,0.436253319,13.16023785,-12.80731718
     61949315,13.69861111,0.404550011,0.439215462,13.21186719,-12.80731718
     62049375,13.71527778,0.43325791,0.436571941,13.24057509,-12.80731718
     62149435,13.73194444,0.432130101,0.42952043,13.23944728,-12.80731718
     62249495,13.74861111,0.415720791,0.423317023,13.22303797,-12.80731718
     62349555,13.76527778,0.394946605,0.424606022,13.20226379,-12.80731718
     62449615,13.78194444,0.379437403,0.427256925,13.18675458,-12.80731718
     62549675,13.79861111,0.378486762,0.434344903,13.18580394,-12.80731718
     62649735,13.81527778,0.385278478,0.440346344,13.19259566,-12.80731718
     62749795,13.83194444,0.389856532,0.442898633,13.19717371,-12.80731718
     62849855,13.84861111,0.385054143,0.442450712,13.19237132,-12.80731718
     62949915,13.86527778,0.373740613,0.441180658,13.18105779,-12.80731718
     63049975,13.88194444,0.364694178,0.439363452,13.17201136,-12.80731718
     63150035,13.89861111,0.380036299,0.443450011,13.18735348,-12.80731718
     63250095,13.91527778,0.458329302,0.465471231,13.26564648,-12.80731718
     63350155,13.93194444,0.605481244,0.501486058,13.41279843,-12.80731718
     63450215,13.94861111,0.772148798,0.518970578,13.57946598,-12.80731718
     63550275,13.96527778,0.895939516,0.514974661,13.7032567,-12.80731718
     63650335,13.98194444,0.970442587,0.513859318,13.77775977,-12.80731718
     63750395,13.99861111,1.028930718,0.52309491,13.8362479,-12.80731718
     63850455,14.01527778,1.083763633,0.523282459,13.89108081,-12.80731718
     63950515,14.03194444,1.109852134,0.5058757,13.91716931,-12.80731718
     64050575,14.04861111,1.101351425,0.488401561,13.90866861,-12.80731718
     64150635,14.06527778,1.088963886,0.486607751,13.89628107,-12.80731718
     64250695,14.08194444,1.100930721,0.498582988,13.9082479,-12.80731718
     64350755,14.09861111,1.141961594,0.515632067,13.94927877,-12.80731718
     64450815,14.11527778,1.180195754,0.527654735,13.98751293,-12.80731718
     64550875,14.13194444,1.179965344,0.523336161,13.98728253,-12.80731718
     64650935,14.14861111,1.127476087,0.499472532,13.93479327,-12.80731718
     64750995,14.16527778,1.03131927,0.463895184,13.83863645,-12.80731718
     64851055,14.18194444,0.909734053,0.433183376,13.71705123,-12.80731718
     64951115,14.19861111,0.778135353,0.416731404,13.58545253,-12.80731718
     65051175,14.21527778,0.651211755,0.401010347,13.45852894,-12.80731718
     65151235,14.23194444,0.520937613,0.386050187,13.32825479,-12.80731718
     65251295,14.24861111,0.383853907,0.381017668,13.19117109,-12.80731718
     65351355,14.26527778,0.246750068,0.383757715,13.05406725,-12.80731718
     65451415,14.28194444,0.120270636,0.390449704,12.92758782,-12.80731718
     65551475,14.29861111,0.015167398,0.398274939,12.82248458,-12.80731718
     65651535,14.31527778,-0.069515174,0.405926664,12.73780201,-12.80731718
     65751595,14.33194444,-0.139439912,0.415816869,12.66787727,-12.80731718
     65851655,14.34861111,-0.203906082,0.427122848,12.6034111,-12.80731718
     65951715,14.36527778,-0.261276717,0.43791637,12.54604046,-12.80731718
     66051775,14.38194444,-0.274175799,0.441460391,12.53314138,-12.80731718
     66151835,14.39861111,-0.220441299,0.442162641,12.58687588,-12.80731718
     66251895,14.41527778,-0.117236406,0.446080542,12.69008077,-12.80731718
     66351955,14.43194444,-0.015858239,0.444552536,12.79145894,-12.80731718
     66452015,14.44861111,0.025518639,0.434134569,12.83283582,-12.80731718
     66552075,14.46527778,0.005183528,0.424092406,12.81250071,-12.80731718
     66652135,14.48194444,-0.046625629,0.419140654,12.76069155,-12.80731718
Note: See TracChangeset for help on using the changeset viewer.