diff --git a/.gitignore b/.gitignore index 3e15faa6c1a06f724c00b713303351c561f0aa2c..2de011678e02b0fde788425f0bf446977da9c403 100644 --- a/.gitignore +++ b/.gitignore @@ -68,3 +68,22 @@ beaufortSea/images/* # sbtools beaufortSea/.Renviron + +#fire and ice +fireInIce/*/out +fireInIce/*/tmp +fireInIce/*/src/__pycache__ + +#remove cache and dataout +fireInIce/cache +fireInIce/data_out + +#remove snakemake files +fireInIce/.snakemake + +#exceptions Spatial +!fireInIce/2_visualize/in/*.cpg +!fireInIce/2_visualize/in/*.dbf +!fireInIce/2_visualize/in/*.prj +!fireInIce/2_visualize/in/*.shp +!fireInIce/2_visualize/in/*.shx \ No newline at end of file diff --git a/fireInIce/0_fetch/src/download_dem.py b/fireInIce/0_fetch/src/download_dem.py new file mode 100644 index 0000000000000000000000000000000000000000..2aa92ca0898e996e50c26fc66002d7b3d0d13a95 --- /dev/null +++ b/fireInIce/0_fetch/src/download_dem.py @@ -0,0 +1,121 @@ +import os +import geopandas as gpd +from bmi_topography import Topography +import py3dep +from shapely.geometry import Polygon + +def snakemake_type_exists(snakemake_type,string,default_input): + if hasattr(snakemake_type, string): + return snakemake_type[string] + else: + return default_input + +def get_shapefile_extent(shapefile): + west, south, east, north = shapefile.geometry.total_bounds + length = east - west + height = north - south + return west, east, length, south, north, height + + +def buffer_shapefile(west, east, length, south, north, height, buffer): + west -= buffer / 100.0 * length + south -= buffer / 100.0 * height + east += buffer / 100.0 * length + north += buffer / 100.0 * height + return west, east, south, north + + +def bmi_download_dem(extent_shpfile, demfile, data_product, dem_product, buffer): + # make out_dir if it doesn't exist + out_dir = os.path.dirname(demfile) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + + # load shapefile + shp = gpd.read_file(extent_shpfile) + # get extent of shapefile #assums WGS84 or some sort of geographic coordinate system, Potential FIX: could convert if necessary. + west, east, length, south, north, height = get_shapefile_extent(shp) + buff_west, buff_east, buff_south, buff_north = buffer_shapefile( + west, east, length, south, north, height, buffer + ) + + # set parameters of dem download + params = Topography.DEFAULT.copy() + params["data_type"] = data_product + params["dem_type"] = dem_product + params["output_format"] = "GTiff" + params["west"] = buff_west + params["south"] = buff_south + params["east"] = buff_east + params["north"] = buff_north + params["cache_dir"] = out_dir + + # set api key if exists (you need this when you run out of free requests) + if os.path.isfile("opentopography_api_key.txt"): + with open("opentopography_api_key.txt", "r") as f: + api_key = f.read() + params["api_key"] = api_key + + # setup request and fetch + topo_request = Topography(**params) + topo_request.fetch() + + # rename the file + os.rename( + out_dir + + "/" + + str(params["dem_type"]) + + "_" + + str(params["south"]) + + "_" + + str(params["west"]) + + "_" + + str(params["north"]) + + "_" + + str(params["east"]) + + ".tif", + out_dir + "/dem.tif", + ) + +def py3dep_download_dem(extent_shpfile, demfile, py3dep_resolution, buffer): + # make out_dir if it doesn't exist + out_dir = os.path.dirname(demfile) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + + # load shapefile + shp = gpd.read_file(extent_shpfile) + # get extent of shapefile #assums WGS84 or some sort of geographic coordinate system, Potential FIX: could convert if necessary. + west, east, length, south, north, height = get_shapefile_extent(shp) + buff_west, buff_east, buff_south, buff_north = buffer_shapefile( + west, east, length, south, north, height, buffer + ) + + #specify geometry to download dem from + buffered_domain_polygon = Polygon( + zip( + [buff_west, buff_west, buff_east, buff_east], + [buff_north, buff_south, buff_south, buff_north], + ) + ) + + #download dem + dem = py3dep.get_map("DEM", buffered_domain_polygon, resolution = py3dep_resolution, geo_crs = shp.crs, crs = 4326) + + #save dem + dem.rio.to_raster(out_dir + "/dem.tif") + +if __name__ == "__main__": + data_product = snakemake_type_exists(snakemake.params,"data_product","/API/globaldem") + dem_product = snakemake_type_exists(snakemake.params,"dem_product","NASADEM") + py3dep_resolution = snakemake_type_exists(snakemake.params,"py3dep_resolution",30) + buffer = snakemake.params["buffer"] + extent_shpfile = snakemake.input["extent_shpfile"] + demfile = snakemake.output["demfile"] + download_mode = snakemake_type_exists(snakemake.params,"download_mode","bmi") + if download_mode == "bmi": + bmi_download_dem(extent_shpfile, demfile, data_product, dem_product, buffer) + elif download_mode == "py3dep": + py3dep_download_dem(extent_shpfile, demfile, py3dep_resolution, buffer) + else: + raise Exception("Incorrect download mode. Please use bmi or py3dep.") diff --git a/fireInIce/0_fetch/src/download_dem_bounding_box.py b/fireInIce/0_fetch/src/download_dem_bounding_box.py new file mode 100644 index 0000000000000000000000000000000000000000..ae343a87b11624c655a266efbb94a32ebb228d1d --- /dev/null +++ b/fireInIce/0_fetch/src/download_dem_bounding_box.py @@ -0,0 +1,76 @@ +import os +import numpy as np +import geopandas as gpd +from bmi_topography import Topography +from shapely.geometry import Polygon + +def snakemake_type_exists(snakemake_type,string,default_input): + if hasattr(snakemake_type, string): + return snakemake_type[string] + else: + return default_input + +def bmi_download_dem(UL_corner, LR_corner,extent_shpfile, demfile, data_product, dem_product, buffer): + # make out_dir if it doesn't exist + out_dir = os.path.dirname(demfile) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + + # set parameters of dem download + params = Topography.DEFAULT.copy() + params["data_type"] = data_product + params["dem_type"] = dem_product + params["output_format"] = "GTiff" + params["west"] = float(UL_corner[1]) + params["south"] = float(LR_corner[0]) + params["east"] = float(LR_corner[1]) + params["north"] = float(UL_corner[0]) + params["cache_dir"] = out_dir + + # set api key if exists (you need this when you run out of free requests) + if os.path.isfile("opentopography_api_key.txt"): + with open("opentopography_api_key.txt", "r") as f: + api_key = f.read() + params["api_key"] = api_key + + # setup request and fetch + topo_request = Topography(**params) + topo_request.fetch() + + # rename the file + os.rename( + out_dir + + "/" + + str(params["dem_type"]) + + "_" + + str(params["south"]) + + "_" + + str(params["west"]) + + "_" + + str(params["north"]) + + "_" + + str(params["east"]) + + ".tif", + demfile, + ) + + domain_geom = Polygon( + zip( + [UL_corner[1],UL_corner[1], LR_corner[1],LR_corner[1]], + [UL_corner[0], LR_corner[0], LR_corner[0], UL_corner[0]], + ) + ) + domain_polygon = gpd.GeoDataFrame(index=[0], crs="EPSG:4326", geometry=[domain_geom]) + domain_polygon.to_file(extent_shpfile) + + +if __name__ == "__main__": + data_product = snakemake_type_exists(snakemake.params,"data_product","/API/globaldem") + dem_product = snakemake_type_exists(snakemake.params,"dem_product","NASADEM") + buffer = snakemake.params["buffer"] + UL_corner = snakemake.params["UL_corner"] + LR_corner = snakemake.params["LR_corner"] + extent_shpfile = snakemake.output["extent_shpfile"] + demfile = snakemake.output["demfile"] + download_mode = snakemake_type_exists(snakemake.params,"download_mode","bmi") + bmi_download_dem(UL_corner, LR_corner, extent_shpfile, demfile, data_product, dem_product, buffer) diff --git a/fireInIce/0_fetch/src/download_sb.py b/fireInIce/0_fetch/src/download_sb.py new file mode 100644 index 0000000000000000000000000000000000000000..139add21e3550cab42b3555b5e5d79729e912419 --- /dev/null +++ b/fireInIce/0_fetch/src/download_sb.py @@ -0,0 +1,17 @@ +import os +import sciencebasepy + +def main(sb_id,zipfile): + # make out_dir if it doesn't exist + out_dir = os.path.dirname(zipfile) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + # download the file + sb = sciencebasepy.SbSession() + sb_item = sb.get_item(sb_id) + sb.get_item_files_zip(sb_item,out_dir) + +if __name__ == "__main__": + sb_id = snakemake.params["sb_id"] + zipfile = snakemake.output["zipfile"] + main(sb_id,zipfile) \ No newline at end of file diff --git a/fireInIce/0_fetch/src/get_wbd.py b/fireInIce/0_fetch/src/get_wbd.py new file mode 100644 index 0000000000000000000000000000000000000000..885ef8d2f8ed188bd9a819561cd1a8967e4b7d9d --- /dev/null +++ b/fireInIce/0_fetch/src/get_wbd.py @@ -0,0 +1,25 @@ +import os +import pandas as pd +import geopandas as gpd +from pygeohydro import WBD + +def main(huc_list, extent_shpfile): + # make out_dir if it doesn't exist + out_dir = os.path.dirname(extent_shpfile) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + + #download huc + wbd_list = [] + for huc in huc_list: + huc_level = str(len(huc)) + wbd = WBD("huc" + huc_level) + wbd_list += [wbd.byids("huc" + huc_level, [huc]).dissolve()] + + extent = gpd.GeoDataFrame(pd.concat(wbd_list)).dissolve() + extent.to_file(extent_shpfile) + +if __name__ == "__main__": + huc_list = snakemake.params["huc_list"] + extent_shpfile = snakemake.output["extent_shpfile"] + main(huc_list, extent_shpfile) diff --git a/fireInIce/0_fetch/src/unzip_file.py b/fireInIce/0_fetch/src/unzip_file.py new file mode 100644 index 0000000000000000000000000000000000000000..c7cb32955c46e66de3d3e0e9039d89f39666bf85 --- /dev/null +++ b/fireInIce/0_fetch/src/unzip_file.py @@ -0,0 +1,28 @@ +import os +import zipfile as zf +import py7zr + +def unzip_file(zipfile, out_dir): + if zipfile.endswith(".7z"): + with py7zr.SevenZipFile(zipfile) as zip_ref: + zip_ref.extractall(out_dir) + elif zipfile.endswith (".zip"): + with zf.ZipFile(zipfile, "r") as zip_ref: + zip_ref.extractall(out_dir) + +def main(zipfile): + # make out_dir if it doesn't exist + tmp_dir = os.path.dirname(zipfile) + if zipfile.endswith(".7z"): + out_dir = tmp_dir + '/' + os.path.basename(zipfile[:-3]) + elif zipfile.endswith (".zip"): + out_dir = tmp_dir + '/' + os.path.basename(zipfile[:-4]) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + # unzip the file + unzip_file(zipfile, out_dir) + + +if __name__ == "__main__": + zipfile = snakemake.input["zipfile"] + main(zipfile) diff --git a/fireInIce/1_process/src/calc_bedrock.py b/fireInIce/1_process/src/calc_bedrock.py new file mode 100644 index 0000000000000000000000000000000000000000..e9b427d0c0bcf850dd8f96a8c49b4bab31290128 --- /dev/null +++ b/fireInIce/1_process/src/calc_bedrock.py @@ -0,0 +1,61 @@ + +import os +import numpy as np +from osgeo import gdal, osr + +def calc_bedrock(dem_file,ice_thickness_file,ice_height_file,bedrock_file): + # make out_dir if it doesn't exist + out_dir = os.path.dirname(bedrock_file) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + + # read in the dem + ds = gdal.Open(dem_file) + ds_it = gdal.Open(ice_thickness_file) + + #get metadata + gt = ds.GetGeoTransform() + cs = ds.GetProjection() + dtype = ds.GetRasterBand(1).DataType + cellsx = ds.GetRasterBand(1).XSize + cellsy = ds.GetRasterBand(1).YSize + NaN = ds.GetRasterBand(1).GetNoDataValue() + if NaN == None: + NaN = -9999 + + #convert to numpy array + dem = np.array(ds.GetRasterBand(1).ReadAsArray()) + it = np.array(ds_it.GetRasterBand(1).ReadAsArray()) + + #calc bedrock + bedrock = dem - it + + #ice_height + ih = np.zeros_like(dem) - 100000. + ih[it!=0] = dem[it!=0] + + driver = gdal.GetDriverByName('GTiff') + dataset = driver.Create(ice_height_file,cellsx,cellsy, 1, gdal.GDT_Float32) + dataset.GetRasterBand(1).WriteArray(ih) + dataset.GetRasterBand(1).SetNoDataValue(NaN) + + dataset.SetGeoTransform(gt) + dataset.SetProjection(cs) + dataset.FlushCache() + dataset=None + + dataset = driver.Create(bedrock_file,cellsx,cellsy, 1, gdal.GDT_Float32) + dataset.GetRasterBand(1).WriteArray(bedrock) + dataset.GetRasterBand(1).SetNoDataValue(NaN) + + dataset.SetGeoTransform(gt) + dataset.SetProjection(cs) + dataset.FlushCache() + dataset=None + +if __name__ == "__main__": + dem_file = snakemake.input["dem_file"] + ice_thickness_file = snakemake.input["ice_thickness_file"] + ice_height_file = snakemake.output["ice_height_file"] + bedrock_file = snakemake.output["bedrock_file"] + calc_bedrock(dem_file,ice_thickness_file,ice_height_file,bedrock_file) \ No newline at end of file diff --git a/fireInIce/1_process/src/cores_to_shp.py b/fireInIce/1_process/src/cores_to_shp.py new file mode 100644 index 0000000000000000000000000000000000000000..61584e1697e96fd33fd4320194789e81562ef210 --- /dev/null +++ b/fireInIce/1_process/src/cores_to_shp.py @@ -0,0 +1,42 @@ +import pandas as pd +import geopandas as gpd +def main(core_data,core_shpfile): + cd = pd.read_excel(core_data) + cd.loc[2, 'Latitude'] = "58° 51’ 16.1†N" #datafix 2016, C3 + cd.loc[2, 'Longitude'] = "134° 10’ 31.1†W" #datafix 2016, C3 + + core_name = [] + Lat = [] + Long = [] + for i in range(0,len(cd)): + core_name += [cd['U.S. Geological Survey site name'][i]] + Lat += [convert_coor_to_dec(cd['Latitude'][i])] + Long += [convert_coor_to_dec(cd['Longitude'][i])] + print (cd['U.S. Geological Survey site name'][i],cd['Latitude'][i],cd['Longitude'][i],\ + convert_coor_to_dec(cd['Latitude'][i]),convert_coor_to_dec(cd['Longitude'][i])) + + df = pd.DataFrame( + { + "Core Name": core_name, + "Latitude": Lat, + "Longitude": Long, + } + ) + + gdf = gpd.GeoDataFrame(df, geometry=gpd.points_from_xy(df.Longitude, df.Latitude), crs="EPSG:4326") + + gdf.to_file(core_shpfile, driver='ESRI Shapefile') + + +import re +def convert_coor_to_dec(coor): + deg, minutes, seconds, direction = re.split('[°’â€]', coor) + return(float(deg) + float(minutes)/60 + float(seconds)/(60*60)) * (-1 if direction in [' W', ' S', ' W', ' S'] else 1) + +if __name__ == "__main__": + core_data = snakemake.input["core_data"] + core_shpfile = snakemake.output["core_shpfile"] + main( + core_data, + core_shpfile + ) \ No newline at end of file diff --git a/fireInIce/1_process/src/regrid.py b/fireInIce/1_process/src/regrid.py new file mode 100644 index 0000000000000000000000000000000000000000..4470475d114885a53fad48f72cbf1b38de803bcc --- /dev/null +++ b/fireInIce/1_process/src/regrid.py @@ -0,0 +1,36 @@ + +#code modified from https://stackoverflow.com/questions/10454316/how-to-project-and-resample-a-grid-to-match-another-grid-with-gdal-python +from osgeo import gdal, gdalconst +import os + +def main(src_file,match_file,dst_file): + out_dir = os.path.dirname(dst_file) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + + # Source + src = gdal.Open(src_file, gdalconst.GA_ReadOnly) + src_proj = src.GetProjection() + + # We want a section of source that matches this: + match_ds = gdal.Open(match_file, gdalconst.GA_ReadOnly) + match_proj = match_ds.GetProjection() + match_geotrans = match_ds.GetGeoTransform() + wide = match_ds.RasterXSize + high = match_ds.RasterYSize + + # Output / destination + dst = gdal.GetDriverByName('GTiff').Create(dst_file, wide, high, 1, gdalconst.GDT_Float32) + dst.SetGeoTransform( match_geotrans ) + dst.SetProjection( match_proj) + + # Do the work + gdal.ReprojectImage(src, dst, src_proj, match_proj, gdalconst.GRA_Bilinear) + + del dst # Flush + +if __name__ == "__main__": + src_file = snakemake.input["src_file"] + match_file = snakemake.input["match_file"] + dst_file = snakemake.output["dst_file"] + main(src_file,match_file,dst_file) \ No newline at end of file diff --git a/fireInIce/1_process/src/remove_nans.py b/fireInIce/1_process/src/remove_nans.py new file mode 100644 index 0000000000000000000000000000000000000000..5a2f6fb1effb0437116c5efd6418c84724f6d5bd --- /dev/null +++ b/fireInIce/1_process/src/remove_nans.py @@ -0,0 +1,82 @@ +from astropy.convolution import Gaussian2DKernel, interpolate_replace_nans +import os +import numpy as np +from osgeo import gdal, osr + +x_nei = [-1,0,1,-1,1,-1,0,1] +y_nei = [1,1,1,0,0,-1,-1,-1] + +def seed_ice_hole(it,cellsx,cellsy,it_threshold): + for x in range(0,cellsx): + for y in range(0,cellsy): + if it[y,x] > it_threshold: + for nei in range(0,8): + if it[y+y_nei[nei],x+x_nei[nei]] == 0: + it[y+y_nei[nei],x+x_nei[nei]] = -9999 + return it + +def fill_ice_hole(it,cellsx,cellsy): + trigger = 0 + fill_iteration = 0 + while trigger == 0: + trigger = 1 + for x in range(0,cellsx): + for y in range(0,cellsy): + if it[y,x] == -9999: + trigger = 0 + mini_trigger = 0 + for nei in range(0,8): + if it[y+y_nei[nei],x+x_nei[nei]] == 0: + mini_trigger = 1 + it[y+y_nei[nei],x+x_nei[nei]] = -9999 + if mini_trigger == 0: + it[y,x] = -999999 + fill_iteration += 1 + print ("filling ice, try " + str(fill_iteration) + "...") + return it + +def remove_nans(ice_thickness_file,fixed_ice_thickness_file,convolution_window): + # make out_dir if it doesn't exist + out_dir = os.path.dirname(fixed_ice_thickness_file) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + + # read in the dem + ds_it = gdal.Open(ice_thickness_file) + + #get metadata + gt = ds_it.GetGeoTransform() + cs = ds_it.GetProjection() + dtype = ds_it.GetRasterBand(1).DataType + cellsx = ds_it.GetRasterBand(1).XSize + cellsy = ds_it.GetRasterBand(1).YSize + NaN =0 + + #convert to numpy array + it = np.array(ds_it.GetRasterBand(1).ReadAsArray()) + + #convert zero to NaN + it = seed_ice_hole(it,cellsx,cellsy,750.) + it = fill_ice_hole(it,cellsx,cellsy) + it[it==-999999] = np.nan + + #set kernal to one neighbor + kernel = Gaussian2DKernel(x_stddev=convolution_window) + + # create a "fixed" image with NaNs replaced by interpolated values + fixed_it= interpolate_replace_nans(it, kernel) + + driver = gdal.GetDriverByName('GTiff') + dataset = driver.Create(fixed_ice_thickness_file,cellsx,cellsy, 1, gdal.GDT_Float32) + dataset.GetRasterBand(1).WriteArray(fixed_it) + dataset.GetRasterBand(1).SetNoDataValue(NaN) + dataset.SetGeoTransform(gt) + dataset.SetProjection(cs) + dataset.FlushCache() + dataset=None + +if __name__ == "__main__": + convolution_window = snakemake.params["convolution_window"] + ice_thickness_file = snakemake.input["ice_thickness_file"] + fixed_ice_thickness_file = snakemake.output["ice_thickness_file"] + remove_nans(ice_thickness_file,fixed_ice_thickness_file,convolution_window) \ No newline at end of file diff --git a/fireInIce/2_visualize/in/extent_regional_fires.cpg b/fireInIce/2_visualize/in/extent_regional_fires.cpg new file mode 100644 index 0000000000000000000000000000000000000000..3ad133c048f2189041151425a73485649e6c32c0 --- /dev/null +++ b/fireInIce/2_visualize/in/extent_regional_fires.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/fireInIce/2_visualize/in/extent_regional_fires.dbf b/fireInIce/2_visualize/in/extent_regional_fires.dbf new file mode 100644 index 0000000000000000000000000000000000000000..da477da384ddf3206e8ddf436213aa3151bed2e6 Binary files /dev/null and b/fireInIce/2_visualize/in/extent_regional_fires.dbf differ diff --git a/fireInIce/2_visualize/in/extent_regional_fires.prj b/fireInIce/2_visualize/in/extent_regional_fires.prj new file mode 100644 index 0000000000000000000000000000000000000000..f45cbadf0074d8b7b2669559a93bc50bb95f82d4 --- /dev/null +++ b/fireInIce/2_visualize/in/extent_regional_fires.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/fireInIce/2_visualize/in/extent_regional_fires.shp b/fireInIce/2_visualize/in/extent_regional_fires.shp new file mode 100644 index 0000000000000000000000000000000000000000..7885f04ecb7eb417e12f8f6f650866f804bded06 Binary files /dev/null and b/fireInIce/2_visualize/in/extent_regional_fires.shp differ diff --git a/fireInIce/2_visualize/in/extent_regional_fires.shx b/fireInIce/2_visualize/in/extent_regional_fires.shx new file mode 100644 index 0000000000000000000000000000000000000000..5220b8cdeaccb5b87cab390188c3f5481e52d183 Binary files /dev/null and b/fireInIce/2_visualize/in/extent_regional_fires.shx differ diff --git a/fireInIce/2_visualize/in/hysplit_base_parameters.png b/fireInIce/2_visualize/in/hysplit_base_parameters.png new file mode 100644 index 0000000000000000000000000000000000000000..38c154048e0559676141df7f07a646488227695c Binary files /dev/null and b/fireInIce/2_visualize/in/hysplit_base_parameters.png differ diff --git a/fireInIce/2_visualize/in/photo_locations.cpg b/fireInIce/2_visualize/in/photo_locations.cpg new file mode 100644 index 0000000000000000000000000000000000000000..3ad133c048f2189041151425a73485649e6c32c0 --- /dev/null +++ b/fireInIce/2_visualize/in/photo_locations.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/fireInIce/2_visualize/in/photo_locations.dbf b/fireInIce/2_visualize/in/photo_locations.dbf new file mode 100644 index 0000000000000000000000000000000000000000..5c5e8d01da36072b307bc71bf9d2002f7324017c Binary files /dev/null and b/fireInIce/2_visualize/in/photo_locations.dbf differ diff --git a/fireInIce/2_visualize/in/photo_locations.prj b/fireInIce/2_visualize/in/photo_locations.prj new file mode 100644 index 0000000000000000000000000000000000000000..f45cbadf0074d8b7b2669559a93bc50bb95f82d4 --- /dev/null +++ b/fireInIce/2_visualize/in/photo_locations.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/fireInIce/2_visualize/in/photo_locations.shp b/fireInIce/2_visualize/in/photo_locations.shp new file mode 100644 index 0000000000000000000000000000000000000000..0b72276420cde91524a16954318c6c058db62b3c Binary files /dev/null and b/fireInIce/2_visualize/in/photo_locations.shp differ diff --git a/fireInIce/2_visualize/in/photo_locations.shx b/fireInIce/2_visualize/in/photo_locations.shx new file mode 100644 index 0000000000000000000000000000000000000000..16bdd1c5a0e93c4c1547bf872bf1e98f5f6f7e08 Binary files /dev/null and b/fireInIce/2_visualize/in/photo_locations.shx differ diff --git a/fireInIce/2_visualize/in/render_19010301and19010304.png b/fireInIce/2_visualize/in/render_19010301and19010304.png new file mode 100644 index 0000000000000000000000000000000000000000..97c2c12c4f293ca14fa3a497f90712dd1b0ba896 Binary files /dev/null and b/fireInIce/2_visualize/in/render_19010301and19010304.png differ diff --git a/fireInIce/2_visualize/in/render_regional_fires.png b/fireInIce/2_visualize/in/render_regional_fires.png new file mode 100644 index 0000000000000000000000000000000000000000..75f257d04a8b874dbb35f540b2f344fa7ad88c60 Binary files /dev/null and b/fireInIce/2_visualize/in/render_regional_fires.png differ diff --git a/fireInIce/2_visualize/in/tdump.111986.txt b/fireInIce/2_visualize/in/tdump.111986.txt new file mode 100644 index 0000000000000000000000000000000000000000..a89681d4e9c0b514a423e07c7fd6721111dba9f4 --- /dev/null +++ b/fireInIce/2_visualize/in/tdump.111986.txt @@ -0,0 +1,1782 @@ + 3 1 + CDC1 15 5 1 0 0 + CDC1 15 6 1 0 0 + CDC1 15 7 1 0 0 + 24 FORWARD OMEGA + 15 6 18 0 63.590 -142.040 500.0 + 15 6 18 8 63.590 -142.040 500.0 + 15 6 18 16 63.590 -142.040 500.0 + 15 6 19 0 63.590 -142.040 500.0 + 15 6 19 8 63.590 -142.040 500.0 + 15 6 19 16 63.590 -142.040 500.0 + 15 6 20 0 63.590 -142.040 500.0 + 15 6 20 8 63.590 -142.040 500.0 + 15 6 20 16 63.590 -142.040 500.0 + 15 6 21 0 63.590 -142.040 500.0 + 15 6 21 8 63.590 -142.040 500.0 + 15 6 21 16 63.590 -142.040 500.0 + 15 6 22 0 63.590 -142.040 500.0 + 15 6 22 8 63.590 -142.040 500.0 + 15 6 22 16 63.590 -142.040 500.0 + 15 6 23 0 63.590 -142.040 500.0 + 15 6 23 8 63.590 -142.040 500.0 + 15 6 23 16 63.590 -142.040 500.0 + 15 6 24 0 63.590 -142.040 500.0 + 15 6 24 8 63.590 -142.040 500.0 + 15 6 24 16 63.590 -142.040 500.0 + 15 6 25 0 63.590 -142.040 500.0 + 15 6 25 8 63.590 -142.040 500.0 + 15 6 25 16 63.590 -142.040 500.0 + 1 PRESSURE + 1 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 2 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 3 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 4 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 5 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 6 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 7 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 8 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 9 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 10 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 11 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 12 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 13 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 14 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 15 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 16 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 17 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 18 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 19 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 20 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 21 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 22 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 23 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 24 1 15 6 18 0 0 0 0.0 63.590 -142.040 500.0 846.5 + 1 1 15 6 18 1 0 0 1.0 63.458 -141.980 518.5 841.6 + 1 1 15 6 18 2 0 0 2.0 63.320 -141.938 536.6 836.6 + 1 1 15 6 18 3 0 0 3.0 63.172 -141.913 554.0 831.4 + 1 1 15 6 18 4 0 0 4.0 63.012 -141.906 570.2 826.1 + 1 1 15 6 18 5 0 0 5.0 62.838 -141.916 584.9 820.6 + 1 1 15 6 18 6 0 0 6.0 62.645 -141.943 597.8 814.9 + 1 1 15 6 18 7 0 0 7.0 62.447 -141.987 607.7 812.0 + 1 1 15 6 18 8 0 0 8.0 62.263 -142.051 613.6 815.1 + 1 1 15 6 18 9 0 0 9.0 62.097 -142.137 613.8 818.5 + 2 1 15 6 18 9 0 0 9.0 63.481 -142.208 498.5 842.9 + 1 1 15 6 18 10 0 0 10.0 61.950 -142.246 608.9 822.1 + 2 1 15 6 18 10 0 0 10.0 63.387 -142.396 492.7 841.7 + 1 1 15 6 18 11 0 0 11.0 61.822 -142.378 599.0 825.8 + 2 1 15 6 18 11 0 0 11.0 63.311 -142.608 482.8 841.6 + 1 1 15 6 18 12 0 0 12.0 61.714 -142.534 584.4 829.8 + 2 1 15 6 18 12 0 0 12.0 63.254 -142.845 468.5 842.7 + 1 1 15 6 18 13 0 0 13.0 61.620 -142.697 565.8 834.7 + 2 1 15 6 18 13 0 0 13.0 63.210 -143.095 449.1 844.7 + 1 1 15 6 18 14 0 0 14.0 61.531 -142.849 543.2 839.9 + 2 1 15 6 18 14 0 0 14.0 63.174 -143.341 423.8 847.5 + 1 1 15 6 18 15 0 0 15.0 61.446 -142.989 516.8 845.3 + 2 1 15 6 18 15 0 0 15.0 63.144 -143.582 392.5 851.0 + 1 1 15 6 18 16 0 0 16.0 61.363 -143.115 486.8 851.0 + 2 1 15 6 18 16 0 0 16.0 63.120 -143.815 355.3 855.3 + 1 1 15 6 18 17 0 0 17.0 61.282 -143.224 453.0 857.0 + 2 1 15 6 18 17 0 0 17.0 63.101 -144.035 313.9 860.2 + 3 1 15 6 18 17 0 0 17.0 63.563 -142.277 455.4 848.5 + 1 1 15 6 18 18 0 0 18.0 61.200 -143.317 415.7 863.3 + 2 1 15 6 18 18 0 0 18.0 63.086 -144.238 270.1 865.4 + 3 1 15 6 18 18 0 0 18.0 63.546 -142.509 404.2 853.7 + 1 1 15 6 18 19 0 0 19.0 61.125 -143.395 379.2 869.3 + 2 1 15 6 18 19 0 0 19.0 63.078 -144.427 230.3 870.1 + 3 1 15 6 18 19 0 0 19.0 63.538 -142.729 353.3 859.7 + 1 1 15 6 18 20 0 0 20.0 61.066 -143.467 347.7 874.6 + 2 1 15 6 18 20 0 0 20.0 63.082 -144.606 199.0 874.0 + 3 1 15 6 18 20 0 0 20.0 63.539 -142.936 309.2 865.1 + 1 1 15 6 18 21 0 0 21.0 61.021 -143.535 321.4 878.9 + 2 1 15 6 18 21 0 0 21.0 63.097 -144.777 175.0 877.2 + 3 1 15 6 18 21 0 0 21.0 63.550 -143.133 272.4 869.8 + 1 1 15 6 18 22 0 0 22.0 60.993 -143.604 299.9 882.4 + 2 1 15 6 18 22 0 0 22.0 63.123 -144.944 157.2 880.0 + 3 1 15 6 18 22 0 0 22.0 63.568 -143.321 242.4 873.9 + 1 1 15 6 18 23 0 0 23.0 60.980 -143.674 282.6 885.2 + 2 1 15 6 18 23 0 0 23.0 63.159 -145.108 144.2 882.7 + 3 1 15 6 18 23 0 0 23.0 63.593 -143.505 218.8 877.4 + 1 1 15 6 19 0 0 0 24.0 60.982 -143.749 269.3 887.1 + 2 1 15 6 19 0 0 0 24.0 63.203 -145.267 135.2 885.1 + 3 1 15 6 19 0 0 0 24.0 63.625 -143.685 200.9 880.3 + 1 1 15 6 19 1 0 0 25.0 60.997 -143.817 261.2 888.1 + 2 1 15 6 19 1 0 0 25.0 63.254 -145.419 129.0 887.5 + 3 1 15 6 19 1 0 0 25.0 63.666 -143.864 187.7 882.7 + 4 1 15 6 19 1 0 0 25.0 63.605 -142.228 481.7 846.4 + 1 1 15 6 19 2 0 0 26.0 61.020 -143.864 259.3 888.2 + 2 1 15 6 19 2 0 0 26.0 63.313 -145.560 124.6 889.8 + 3 1 15 6 19 2 0 0 26.0 63.718 -144.046 178.0 885.0 + 4 1 15 6 19 2 0 0 26.0 63.634 -142.423 467.3 848.4 + 1 1 15 6 19 3 0 0 27.0 61.052 -143.894 263.7 887.2 + 2 1 15 6 19 3 0 0 27.0 63.380 -145.696 121.7 891.9 + 3 1 15 6 19 3 0 0 27.0 63.781 -144.232 171.3 887.1 + 4 1 15 6 19 3 0 0 27.0 63.678 -142.626 457.5 850.4 + 1 1 15 6 19 4 0 0 28.0 61.090 -143.907 274.3 885.4 + 2 1 15 6 19 4 0 0 28.0 63.454 -145.830 120.1 893.9 + 3 1 15 6 19 4 0 0 28.0 63.853 -144.427 167.3 889.1 + 4 1 15 6 19 4 0 0 28.0 63.735 -142.838 452.1 852.4 + 1 1 15 6 19 5 0 0 29.0 61.135 -143.905 290.9 882.6 + 2 1 15 6 19 5 0 0 29.0 63.535 -145.966 119.7 895.9 + 3 1 15 6 19 5 0 0 29.0 63.934 -144.635 165.6 891.0 + 4 1 15 6 19 5 0 0 29.0 63.803 -143.061 451.0 854.1 + 1 1 15 6 19 6 0 0 30.0 61.186 -143.891 313.7 878.9 + 2 1 15 6 19 6 0 0 30.0 63.622 -146.108 120.4 897.8 + 3 1 15 6 19 6 0 0 30.0 64.023 -144.864 165.8 892.7 + 4 1 15 6 19 6 0 0 30.0 63.882 -143.300 453.9 855.6 + 1 1 15 6 19 7 0 0 31.0 61.239 -143.882 338.7 875.0 + 2 1 15 6 19 7 0 0 31.0 63.707 -146.264 121.4 900.0 + 3 1 15 6 19 7 0 0 31.0 64.112 -145.107 166.9 895.3 + 4 1 15 6 19 7 0 0 31.0 63.963 -143.543 458.5 857.6 + 1 1 15 6 19 8 0 0 32.0 61.290 -143.891 362.3 871.5 + 2 1 15 6 19 8 0 0 32.0 63.785 -146.435 122.2 902.2 + 3 1 15 6 19 8 0 0 32.0 64.192 -145.352 167.6 898.2 + 4 1 15 6 19 8 0 0 32.0 64.038 -143.776 463.0 859.4 + 1 1 15 6 19 9 0 0 33.0 61.340 -143.917 384.4 868.2 + 2 1 15 6 19 9 0 0 33.0 63.855 -146.620 122.8 904.4 + 3 1 15 6 19 9 0 0 33.0 64.264 -145.597 168.1 900.9 + 4 1 15 6 19 9 0 0 33.0 64.106 -143.996 467.2 861.1 + 5 1 15 6 19 9 0 0 33.0 63.661 -142.231 504.8 844.3 + 1 1 15 6 19 10 0 0 34.0 61.390 -143.957 404.8 865.2 + 2 1 15 6 19 10 0 0 34.0 63.919 -146.821 123.1 906.5 + 3 1 15 6 19 10 0 0 34.0 64.327 -145.843 168.3 903.4 + 4 1 15 6 19 10 0 0 34.0 64.169 -144.201 471.1 862.7 + 5 1 15 6 19 10 0 0 34.0 63.727 -142.406 509.6 845.5 + 1 1 15 6 19 11 0 0 35.0 61.439 -144.011 423.6 862.4 + 2 1 15 6 19 11 0 0 35.0 63.975 -147.038 123.2 908.6 + 3 1 15 6 19 11 0 0 35.0 64.383 -146.091 168.2 905.7 + 4 1 15 6 19 11 0 0 35.0 64.226 -144.391 474.7 864.3 + 5 1 15 6 19 11 0 0 35.0 63.786 -142.566 514.5 846.7 + 1 1 15 6 19 12 0 0 36.0 61.488 -144.077 441.0 859.9 + 2 1 15 6 19 12 0 0 36.0 64.024 -147.273 123.0 910.6 + 3 1 15 6 19 12 0 0 36.0 64.431 -146.341 167.8 907.9 + 4 1 15 6 19 12 0 0 36.0 64.279 -144.563 478.0 865.7 + 5 1 15 6 19 12 0 0 36.0 63.840 -142.709 519.4 847.9 + 1 1 15 6 19 13 0 0 37.0 61.536 -144.133 457.9 857.7 + 2 1 15 6 19 13 0 0 37.0 64.068 -147.504 122.3 912.7 + 3 1 15 6 19 13 0 0 37.0 64.476 -146.577 166.7 909.9 + 4 1 15 6 19 13 0 0 37.0 64.329 -144.708 481.1 867.0 + 5 1 15 6 19 13 0 0 37.0 63.890 -142.825 524.6 848.9 + 1 1 15 6 19 14 0 0 38.0 61.581 -144.157 475.1 855.4 + 2 1 15 6 19 14 0 0 38.0 64.113 -147.702 120.8 914.9 + 3 1 15 6 19 14 0 0 38.0 64.520 -146.783 164.5 911.8 + 4 1 15 6 19 14 0 0 38.0 64.381 -144.817 483.9 868.1 + 5 1 15 6 19 14 0 0 38.0 63.940 -142.908 530.5 849.7 + 1 1 15 6 19 15 0 0 39.0 61.625 -144.150 492.6 852.9 + 2 1 15 6 19 15 0 0 39.0 64.157 -147.865 118.5 917.0 + 3 1 15 6 19 15 0 0 39.0 64.564 -146.957 161.2 913.8 + 4 1 15 6 19 15 0 0 39.0 64.435 -144.891 486.4 869.2 + 5 1 15 6 19 15 0 0 39.0 63.990 -142.956 536.9 850.3 + 1 1 15 6 19 16 0 0 40.0 61.666 -144.111 510.3 850.3 + 2 1 15 6 19 16 0 0 40.0 64.203 -147.993 115.5 918.9 + 3 1 15 6 19 16 0 0 40.0 64.610 -147.097 156.8 915.7 + 4 1 15 6 19 16 0 0 40.0 64.491 -144.929 488.5 870.3 + 5 1 15 6 19 16 0 0 40.0 64.041 -142.970 543.9 850.8 + 1 1 15 6 19 17 0 0 41.0 61.705 -144.040 528.3 847.5 + 2 1 15 6 19 17 0 0 41.0 64.252 -148.086 111.9 920.7 + 3 1 15 6 19 17 0 0 41.0 64.659 -147.200 151.4 917.6 + 4 1 15 6 19 17 0 0 41.0 64.549 -144.932 490.2 871.4 + 5 1 15 6 19 17 0 0 41.0 64.093 -142.950 551.4 851.1 + 6 1 15 6 19 17 0 0 41.0 63.635 -142.019 509.9 844.6 + 1 1 15 6 19 18 0 0 42.0 61.740 -143.938 546.5 844.5 + 2 1 15 6 19 18 0 0 42.0 64.304 -148.141 107.7 922.3 + 3 1 15 6 19 18 0 0 42.0 64.710 -147.266 145.0 919.5 + 4 1 15 6 19 18 0 0 42.0 64.609 -144.900 491.6 872.4 + 5 1 15 6 19 18 0 0 42.0 64.146 -142.896 559.6 851.3 + 6 1 15 6 19 18 0 0 42.0 63.679 -141.966 520.5 844.5 + 1 1 15 6 19 19 0 0 43.0 61.776 -143.823 565.9 841.0 + 2 1 15 6 19 19 0 0 43.0 64.353 -148.176 104.4 923.7 + 3 1 15 6 19 19 0 0 43.0 64.756 -147.311 140.0 921.0 + 4 1 15 6 19 19 0 0 43.0 64.665 -144.853 495.3 872.8 + 5 1 15 6 19 19 0 0 43.0 64.194 -142.823 570.2 850.9 + 6 1 15 6 19 19 0 0 43.0 63.718 -141.894 533.4 843.8 + 1 1 15 6 19 20 0 0 44.0 61.815 -143.713 588.0 837.2 + 2 1 15 6 19 20 0 0 44.0 64.394 -148.207 103.2 924.7 + 3 1 15 6 19 20 0 0 44.0 64.789 -147.354 138.5 922.0 + 4 1 15 6 19 20 0 0 44.0 64.708 -144.810 504.8 872.4 + 5 1 15 6 19 20 0 0 44.0 64.232 -142.745 585.7 849.8 + 6 1 15 6 19 20 0 0 44.0 63.750 -141.812 550.6 842.5 + 1 1 15 6 19 21 0 0 45.0 61.857 -143.606 612.5 833.2 + 2 1 15 6 19 21 0 0 45.0 64.427 -148.234 104.1 925.4 + 3 1 15 6 19 21 0 0 45.0 64.810 -147.395 140.4 922.4 + 4 1 15 6 19 21 0 0 45.0 64.739 -144.769 520.0 871.3 + 5 1 15 6 19 21 0 0 45.0 64.260 -142.661 606.2 847.9 + 6 1 15 6 19 21 0 0 45.0 63.774 -141.721 572.1 840.7 + 1 1 15 6 19 22 0 0 46.0 61.900 -143.502 639.8 828.9 + 2 1 15 6 19 22 0 0 46.0 64.451 -148.257 107.3 925.7 + 3 1 15 6 19 22 0 0 46.0 64.818 -147.434 146.0 922.3 + 4 1 15 6 19 22 0 0 46.0 64.757 -144.728 541.1 869.3 + 5 1 15 6 19 22 0 0 46.0 64.277 -142.568 631.7 845.4 + 6 1 15 6 19 22 0 0 46.0 63.789 -141.619 598.3 838.1 + 1 1 15 6 19 23 0 0 47.0 61.944 -143.400 669.8 824.3 + 2 1 15 6 19 23 0 0 47.0 64.467 -148.277 113.0 925.6 + 3 1 15 6 19 23 0 0 47.0 64.816 -147.470 155.5 921.6 + 4 1 15 6 19 23 0 0 47.0 64.763 -144.686 568.3 866.4 + 5 1 15 6 19 23 0 0 47.0 64.282 -142.468 662.3 842.2 + 6 1 15 6 19 23 0 0 47.0 63.795 -141.506 629.2 835.0 + 1 1 15 6 20 0 0 0 48.0 61.990 -143.297 702.9 819.4 + 2 1 15 6 20 0 0 0 48.0 64.475 -148.292 121.4 925.0 + 3 1 15 6 20 0 0 0 48.0 64.802 -147.502 169.7 920.2 + 4 1 15 6 20 0 0 0 48.0 64.756 -144.642 602.0 862.7 + 5 1 15 6 20 0 0 0 48.0 64.276 -142.358 698.2 838.3 + 6 1 15 6 20 0 0 0 48.0 63.792 -141.379 665.0 831.2 + 1 1 15 6 20 1 0 0 49.0 62.028 -143.174 735.6 814.9 + 2 1 15 6 20 1 0 0 49.0 64.480 -148.290 131.0 924.1 + 3 1 15 6 20 1 0 0 49.0 64.787 -147.519 185.5 918.3 + 4 1 15 6 20 1 0 0 49.0 64.744 -144.576 636.6 858.8 + 5 1 15 6 20 1 0 0 49.0 64.264 -142.227 734.3 834.3 + 6 1 15 6 20 1 0 0 49.0 63.782 -141.231 700.3 827.3 + 7 1 15 6 20 1 0 0 49.0 63.592 -141.898 533.9 841.3 + 1 1 15 6 20 2 0 0 50.0 62.054 -143.012 763.2 810.9 + 2 1 15 6 20 2 0 0 50.0 64.489 -148.261 139.3 923.2 + 3 1 15 6 20 2 0 0 50.0 64.778 -147.511 199.0 916.7 + 4 1 15 6 20 2 0 0 50.0 64.735 -144.470 666.1 855.3 + 5 1 15 6 20 2 0 0 50.0 64.251 -142.062 765.2 830.8 + 6 1 15 6 20 2 0 0 50.0 63.769 -141.052 729.9 823.9 + 7 1 15 6 20 2 0 0 50.0 63.589 -141.723 562.8 838.1 + 1 1 15 6 20 3 0 0 51.0 62.068 -142.811 785.7 807.6 + 2 1 15 6 20 3 0 0 51.0 64.500 -148.204 146.2 922.4 + 3 1 15 6 20 3 0 0 51.0 64.775 -147.478 209.8 915.4 + 4 1 15 6 20 3 0 0 51.0 64.728 -144.323 690.6 852.3 + 5 1 15 6 20 3 0 0 51.0 64.236 -141.866 790.7 827.8 + 6 1 15 6 20 3 0 0 51.0 63.752 -140.844 753.8 821.0 + 7 1 15 6 20 3 0 0 51.0 63.582 -141.516 586.4 835.4 + 1 1 15 6 20 4 0 0 52.0 62.068 -142.571 802.5 805.0 + 2 1 15 6 20 4 0 0 52.0 64.514 -148.120 151.4 921.6 + 3 1 15 6 20 4 0 0 52.0 64.777 -147.417 217.4 914.4 + 4 1 15 6 20 4 0 0 52.0 64.721 -144.136 710.0 849.8 + 5 1 15 6 20 4 0 0 52.0 64.220 -141.639 810.6 825.2 + 6 1 15 6 20 4 0 0 52.0 63.731 -140.608 771.7 818.4 + 7 1 15 6 20 4 0 0 52.0 63.569 -141.277 604.3 833.0 + 1 1 15 6 20 5 0 0 53.0 62.057 -142.294 813.6 803.4 + 2 1 15 6 20 5 0 0 53.0 64.532 -148.009 154.7 920.9 + 3 1 15 6 20 5 0 0 53.0 64.785 -147.330 221.9 913.6 + 4 1 15 6 20 5 0 0 53.0 64.715 -143.910 724.1 847.7 + 5 1 15 6 20 5 0 0 53.0 64.201 -141.384 824.8 823.1 + 6 1 15 6 20 5 0 0 53.0 63.705 -140.347 783.5 816.4 + 7 1 15 6 20 5 0 0 53.0 63.552 -141.008 616.2 831.1 + 1 1 15 6 20 6 0 0 54.0 62.033 -141.983 818.9 802.7 + 2 1 15 6 20 6 0 0 54.0 64.552 -147.872 155.8 920.4 + 3 1 15 6 20 6 0 0 54.0 64.797 -147.218 223.0 913.2 + 4 1 15 6 20 6 0 0 54.0 64.710 -143.647 733.0 846.0 + 5 1 15 6 20 6 0 0 54.0 64.180 -141.103 833.1 821.6 + 6 1 15 6 20 6 0 0 54.0 63.675 -140.061 789.0 814.8 + 7 1 15 6 20 6 0 0 54.0 63.528 -140.712 621.7 829.7 + 1 1 15 6 20 7 0 0 55.0 62.005 -141.664 820.5 802.0 + 2 1 15 6 20 7 0 0 55.0 64.576 -147.730 155.1 920.0 + 3 1 15 6 20 7 0 0 55.0 64.814 -147.098 221.7 913.0 + 4 1 15 6 20 7 0 0 55.0 64.704 -143.367 738.1 844.6 + 5 1 15 6 20 7 0 0 55.0 64.158 -140.810 837.8 820.2 + 6 1 15 6 20 7 0 0 55.0 63.642 -139.765 791.5 813.6 + 7 1 15 6 20 7 0 0 55.0 63.503 -140.405 623.8 828.3 + 1 1 15 6 20 8 0 0 56.0 61.979 -141.361 822.6 801.3 + 2 1 15 6 20 8 0 0 56.0 64.606 -147.604 153.6 919.8 + 3 1 15 6 20 8 0 0 56.0 64.838 -146.988 219.3 913.1 + 4 1 15 6 20 8 0 0 56.0 64.696 -143.088 741.8 843.3 + 5 1 15 6 20 8 0 0 56.0 64.133 -140.513 842.4 818.8 + 6 1 15 6 20 8 0 0 56.0 63.609 -139.466 795.0 812.5 + 7 1 15 6 20 8 0 0 56.0 63.479 -140.101 626.5 827.0 + 1 1 15 6 20 9 0 0 57.0 61.956 -141.071 825.3 800.6 + 2 1 15 6 20 9 0 0 57.0 64.641 -147.495 151.1 919.9 + 3 1 15 6 20 9 0 0 57.0 64.867 -146.889 215.8 913.4 + 4 1 15 6 20 9 0 0 57.0 64.684 -142.808 743.9 842.0 + 5 1 15 6 20 9 0 0 57.0 64.108 -140.212 846.8 817.4 + 6 1 15 6 20 9 0 0 57.0 63.576 -139.164 799.7 811.2 + 7 1 15 6 20 9 0 0 57.0 63.456 -139.798 630.0 825.9 + 8 1 15 6 20 9 0 0 57.0 63.583 -141.752 503.8 843.8 + 1 1 15 6 20 10 0 0 58.0 61.937 -140.792 829.2 799.7 + 2 1 15 6 20 10 0 0 58.0 64.683 -147.403 147.7 920.4 + 3 1 15 6 20 10 0 0 58.0 64.903 -146.800 211.0 913.9 + 4 1 15 6 20 10 0 0 58.0 64.671 -142.528 744.6 840.9 + 5 1 15 6 20 10 0 0 58.0 64.080 -139.904 851.6 816.0 + 6 1 15 6 20 10 0 0 58.0 63.542 -138.857 806.3 809.7 + 7 1 15 6 20 10 0 0 58.0 63.434 -139.495 635.0 824.8 + 8 1 15 6 20 10 0 0 58.0 63.578 -141.472 507.7 842.8 + 1 1 15 6 20 11 0 0 59.0 61.922 -140.521 834.8 798.7 + 2 1 15 6 20 11 0 0 59.0 64.731 -147.329 143.3 921.1 + 3 1 15 6 20 11 0 0 59.0 64.945 -146.723 204.9 914.8 + 4 1 15 6 20 11 0 0 59.0 64.656 -142.245 744.1 840.2 + 5 1 15 6 20 11 0 0 59.0 64.051 -139.589 857.4 814.7 + 6 1 15 6 20 11 0 0 59.0 63.507 -138.544 815.4 808.0 + 7 1 15 6 20 11 0 0 59.0 63.413 -139.190 642.0 823.6 + 8 1 15 6 20 11 0 0 59.0 63.575 -141.199 511.7 841.8 + 1 1 15 6 20 12 0 0 60.0 61.911 -140.258 842.8 797.5 + 2 1 15 6 20 12 0 0 60.0 64.787 -147.276 137.9 922.1 + 3 1 15 6 20 12 0 0 60.0 64.995 -146.657 197.4 916.0 + 4 1 15 6 20 12 0 0 60.0 64.639 -141.959 742.8 839.7 + 5 1 15 6 20 12 0 0 60.0 64.021 -139.265 864.6 813.1 + 6 1 15 6 20 12 0 0 60.0 63.471 -138.222 827.6 805.9 + 7 1 15 6 20 12 0 0 60.0 63.392 -138.881 651.6 822.0 + 8 1 15 6 20 12 0 0 60.0 63.576 -140.930 516.2 840.8 + 1 1 15 6 20 13 0 0 61.0 61.900 -140.001 852.7 796.2 + 2 1 15 6 20 13 0 0 61.0 64.845 -147.219 132.9 923.7 + 3 1 15 6 20 13 0 0 61.0 65.046 -146.585 190.4 916.9 + 4 1 15 6 20 13 0 0 61.0 64.617 -141.675 743.8 839.3 + 5 1 15 6 20 13 0 0 61.0 63.984 -138.946 874.4 811.3 + 6 1 15 6 20 13 0 0 61.0 63.431 -137.904 842.2 803.5 + 7 1 15 6 20 13 0 0 61.0 63.368 -138.576 663.4 820.3 + 8 1 15 6 20 13 0 0 61.0 63.573 -140.663 522.4 840.0 + 1 1 15 6 20 14 0 0 62.0 61.885 -139.753 863.7 795.3 + 2 1 15 6 20 14 0 0 62.0 64.900 -147.133 129.4 924.9 + 3 1 15 6 20 14 0 0 62.0 65.092 -146.483 185.4 917.4 + 4 1 15 6 20 14 0 0 62.0 64.587 -141.397 748.6 838.2 + 5 1 15 6 20 14 0 0 62.0 63.941 -138.646 887.1 809.1 + 6 1 15 6 20 14 0 0 62.0 63.385 -137.603 858.2 800.9 + 7 1 15 6 20 14 0 0 62.0 63.337 -138.284 676.5 818.3 + 8 1 15 6 20 14 0 0 62.0 63.561 -140.398 530.4 838.8 + 1 1 15 6 20 15 0 0 63.0 61.866 -139.517 875.5 794.4 + 2 1 15 6 20 15 0 0 63.0 64.952 -147.016 127.4 925.8 + 3 1 15 6 20 15 0 0 63.0 65.132 -146.352 182.7 917.5 + 4 1 15 6 20 15 0 0 63.0 64.547 -141.128 757.6 836.4 + 5 1 15 6 20 15 0 0 63.0 63.890 -138.366 902.3 806.5 + 6 1 15 6 20 15 0 0 63.0 63.334 -137.319 874.7 797.8 + 7 1 15 6 20 15 0 0 63.0 63.298 -138.006 690.4 816.0 + 8 1 15 6 20 15 0 0 63.0 63.539 -140.137 540.4 837.1 + 1 1 15 6 20 16 0 0 64.0 61.844 -139.292 887.6 793.4 + 2 1 15 6 20 16 0 0 64.0 64.999 -146.866 127.1 926.3 + 3 1 15 6 20 16 0 0 64.0 65.165 -146.190 182.3 917.3 + 4 1 15 6 20 16 0 0 64.0 64.498 -140.870 770.6 834.0 + 5 1 15 6 20 16 0 0 64.0 63.834 -138.108 919.4 803.6 + 6 1 15 6 20 16 0 0 64.0 63.279 -137.055 891.1 794.5 + 7 1 15 6 20 16 0 0 64.0 63.255 -137.743 704.6 813.5 + 8 1 15 6 20 16 0 0 64.0 63.509 -139.882 552.2 835.1 + 1 1 15 6 20 17 0 0 65.0 61.819 -139.078 899.4 792.6 + 2 1 15 6 20 17 0 0 65.0 65.040 -146.681 128.5 925.8 + 3 1 15 6 20 17 0 0 65.0 65.190 -145.997 184.3 916.7 + 4 1 15 6 20 17 0 0 65.0 64.441 -140.625 787.6 831.0 + 5 1 15 6 20 17 0 0 65.0 63.774 -137.871 938.0 800.5 + 6 1 15 6 20 17 0 0 65.0 63.221 -136.810 906.7 791.3 + 7 1 15 6 20 17 0 0 65.0 63.206 -137.495 718.5 810.9 + 8 1 15 6 20 17 0 0 65.0 63.469 -139.636 565.6 832.8 + 9 1 15 6 20 17 0 0 65.0 63.555 -141.794 513.5 843.4 + 1 1 15 6 20 18 0 0 66.0 61.793 -138.875 910.4 791.8 + 2 1 15 6 20 18 0 0 66.0 65.074 -146.460 131.8 924.9 + 3 1 15 6 20 18 0 0 66.0 65.205 -145.775 189.0 915.8 + 4 1 15 6 20 18 0 0 66.0 64.374 -140.397 808.2 827.5 + 5 1 15 6 20 18 0 0 66.0 63.711 -137.657 957.3 797.3 + 6 1 15 6 20 18 0 0 66.0 63.161 -136.584 920.7 788.4 + 7 1 15 6 20 18 0 0 66.0 63.154 -137.262 731.4 808.1 + 8 1 15 6 20 18 0 0 66.0 63.421 -139.400 580.1 830.3 + 9 1 15 6 20 18 0 0 66.0 63.510 -141.551 529.1 840.8 + 1 1 15 6 20 19 0 0 67.0 61.764 -138.675 923.0 791.0 + 2 1 15 6 20 19 0 0 67.0 65.098 -146.226 136.9 923.2 + 3 1 15 6 20 19 0 0 67.0 65.211 -145.543 195.7 914.1 + 4 1 15 6 20 19 0 0 67.0 64.302 -140.181 830.9 823.6 + 5 1 15 6 20 19 0 0 67.0 63.643 -137.451 977.8 793.8 + 6 1 15 6 20 19 0 0 67.0 63.096 -136.363 935.6 785.5 + 7 1 15 6 20 19 0 0 67.0 63.097 -137.037 745.2 805.3 + 8 1 15 6 20 19 0 0 67.0 63.367 -139.174 596.1 827.6 + 9 1 15 6 20 19 0 0 67.0 63.460 -141.317 545.9 837.6 + 1 1 15 6 20 20 0 0 68.0 61.733 -138.471 938.9 790.0 + 2 1 15 6 20 20 0 0 68.0 65.112 -145.999 143.6 921.4 + 3 1 15 6 20 20 0 0 68.0 65.210 -145.321 203.8 912.3 + 4 1 15 6 20 20 0 0 68.0 64.225 -139.973 853.8 819.7 + 5 1 15 6 20 20 0 0 68.0 63.568 -137.239 1000.7 789.8 + 6 1 15 6 20 20 0 0 68.0 63.025 -136.133 954.5 782.2 + 7 1 15 6 20 20 0 0 68.0 63.032 -136.808 762.7 802.1 + 8 1 15 6 20 20 0 0 68.0 63.308 -138.954 613.9 824.6 + 9 1 15 6 20 20 0 0 68.0 63.406 -141.097 563.5 834.4 + 1 1 15 6 20 21 0 0 69.0 61.698 -138.261 959.0 788.6 + 2 1 15 6 20 21 0 0 69.0 65.118 -145.784 151.7 919.6 + 3 1 15 6 20 21 0 0 69.0 65.203 -145.109 213.1 910.4 + 4 1 15 6 20 21 0 0 69.0 64.143 -139.770 877.1 815.7 + 5 1 15 6 20 21 0 0 69.0 63.484 -137.018 1026.6 785.4 + 6 1 15 6 20 21 0 0 69.0 62.946 -135.889 978.1 778.3 + 7 1 15 6 20 21 0 0 69.0 62.961 -136.572 784.2 798.3 + 8 1 15 6 20 21 0 0 69.0 63.245 -138.738 634.1 821.2 + 9 1 15 6 20 21 0 0 69.0 63.350 -140.890 582.2 831.1 + 1 1 15 6 20 22 0 0 70.0 61.661 -138.043 983.8 786.7 + 2 1 15 6 20 22 0 0 70.0 65.116 -145.580 161.2 917.6 + 3 1 15 6 20 22 0 0 70.0 65.189 -144.909 223.4 908.6 + 4 1 15 6 20 22 0 0 70.0 64.056 -139.569 901.3 811.5 + 5 1 15 6 20 22 0 0 70.0 63.394 -136.785 1056.2 780.6 + 6 1 15 6 20 22 0 0 70.0 62.862 -135.632 1007.3 773.7 + 7 1 15 6 20 22 0 0 70.0 62.882 -136.328 810.5 794.0 + 8 1 15 6 20 22 0 0 70.0 63.175 -138.524 657.3 817.5 + 9 1 15 6 20 22 0 0 70.0 63.290 -140.693 602.4 827.6 + 1 1 15 6 20 23 0 0 71.0 61.621 -137.816 1014.0 784.4 + 2 1 15 6 20 23 0 0 71.0 65.108 -145.389 172.1 915.6 + 3 1 15 6 20 23 0 0 71.0 65.168 -144.722 234.8 906.9 + 4 1 15 6 20 23 0 0 71.0 63.963 -139.367 926.9 807.2 + 5 1 15 6 20 23 0 0 71.0 63.296 -136.538 1090.2 775.3 + 6 1 15 6 20 23 0 0 71.0 62.771 -135.356 1043.0 768.5 + 7 1 15 6 20 23 0 0 71.0 62.797 -136.071 842.4 789.1 + 8 1 15 6 20 23 0 0 71.0 63.100 -138.310 684.1 813.3 + 9 1 15 6 20 23 0 0 71.0 63.227 -140.504 624.3 824.0 + 1 1 15 6 21 0 0 0 72.0 61.579 -137.578 1050.2 781.5 + 2 1 15 6 21 0 0 0 72.0 65.093 -145.211 184.3 913.4 + 3 1 15 6 21 0 0 0 72.0 65.142 -144.546 247.1 905.0 + 4 1 15 6 21 0 0 0 72.0 63.864 -139.163 954.4 802.5 + 5 1 15 6 21 0 0 0 72.0 63.192 -136.273 1129.8 769.3 + 6 1 15 6 21 0 0 0 72.0 62.676 -135.058 1086.5 762.5 + 7 1 15 6 21 0 0 0 72.0 62.707 -135.799 881.0 783.4 + 8 1 15 6 21 0 0 0 72.0 63.019 -138.092 715.4 808.6 + 9 1 15 6 21 0 0 0 72.0 63.160 -140.323 648.5 820.2 + 2 1 15 6 21 1 0 0 73.0 65.079 -145.033 196.0 911.5 + 3 1 15 6 21 1 0 0 73.0 65.115 -144.370 259.0 903.4 + 4 1 15 6 21 1 0 0 73.0 63.762 -138.955 981.7 797.6 + 5 1 15 6 21 1 0 0 73.0 63.084 -136.003 1169.6 763.0 + 6 1 15 6 21 1 0 0 73.0 62.576 -134.754 1129.9 755.5 + 7 1 15 6 21 1 0 0 73.0 62.611 -135.521 920.0 777.2 + 8 1 15 6 21 1 0 0 73.0 62.933 -137.870 747.3 803.5 + 9 1 15 6 21 1 0 0 73.0 63.089 -140.139 672.6 816.0 + 10 1 15 6 21 1 0 0 73.0 63.532 -141.881 516.4 842.7 + 2 1 15 6 21 2 0 0 74.0 65.071 -144.842 205.4 910.0 + 3 1 15 6 21 2 0 0 74.0 65.094 -144.180 268.7 901.9 + 4 1 15 6 21 2 0 0 74.0 63.657 -138.747 1005.6 793.0 + 5 1 15 6 21 2 0 0 74.0 62.972 -135.743 1203.6 757.1 + 6 1 15 6 21 2 0 0 74.0 62.472 -134.464 1166.7 750.0 + 7 1 15 6 21 2 0 0 74.0 62.509 -135.249 953.1 771.5 + 8 1 15 6 21 2 0 0 74.0 62.842 -137.644 774.6 798.8 + 9 1 15 6 21 2 0 0 74.0 63.012 -139.948 693.5 812.2 + 10 1 15 6 21 2 0 0 74.0 63.470 -141.708 530.6 839.8 + 2 1 15 6 21 3 0 0 75.0 65.069 -144.637 212.6 908.8 + 3 1 15 6 21 3 0 0 75.0 65.078 -143.976 276.3 900.6 + 4 1 15 6 21 3 0 0 75.0 63.550 -138.541 1025.5 788.7 + 5 1 15 6 21 3 0 0 75.0 62.857 -135.498 1230.8 751.8 + 6 1 15 6 21 3 0 0 75.0 62.363 -134.192 1196.0 747.5 + 7 1 15 6 21 3 0 0 75.0 62.403 -134.988 980.1 769.4 + 8 1 15 6 21 3 0 0 75.0 62.745 -137.420 796.6 794.5 + 9 1 15 6 21 3 0 0 75.0 62.929 -139.751 710.7 808.6 + 10 1 15 6 21 3 0 0 75.0 63.405 -141.521 542.6 837.0 + 2 1 15 6 21 4 0 0 76.0 65.072 -144.418 217.5 907.7 + 3 1 15 6 21 4 0 0 76.0 65.067 -143.759 281.8 899.5 + 4 1 15 6 21 4 0 0 76.0 63.441 -138.341 1040.8 784.9 + 5 1 15 6 21 4 0 0 76.0 62.738 -135.273 1250.1 747.3 + 6 1 15 6 21 4 0 0 76.0 62.247 -133.944 1216.1 746.0 + 7 1 15 6 21 4 0 0 76.0 62.290 -134.743 998.8 768.1 + 8 1 15 6 21 4 0 0 76.0 62.642 -137.198 812.4 790.5 + 9 1 15 6 21 4 0 0 76.0 62.839 -139.551 723.7 805.3 + 10 1 15 6 21 4 0 0 76.0 63.336 -141.323 552.0 834.4 + 2 1 15 6 21 5 0 0 77.0 65.080 -144.187 220.3 906.9 + 3 1 15 6 21 5 0 0 77.0 65.061 -143.529 285.1 898.6 + 4 1 15 6 21 5 0 0 77.0 63.327 -138.148 1050.6 781.5 + 5 1 15 6 21 5 0 0 77.0 62.613 -135.068 1260.7 743.4 + 6 1 15 6 21 5 0 0 77.0 62.125 -133.719 1227.2 745.3 + 7 1 15 6 21 5 0 0 77.0 62.171 -134.515 1009.1 767.7 + 8 1 15 6 21 5 0 0 77.0 62.533 -136.982 821.3 787.0 + 9 1 15 6 21 5 0 0 77.0 62.742 -139.350 731.9 802.3 + 10 1 15 6 21 5 0 0 77.0 63.261 -141.114 558.5 831.9 + 2 1 15 6 21 6 0 0 78.0 65.094 -143.943 220.9 906.3 + 3 1 15 6 21 6 0 0 78.0 65.061 -143.286 286.3 897.9 + 4 1 15 6 21 6 0 0 78.0 63.210 -137.965 1054.3 778.7 + 5 1 15 6 21 6 0 0 78.0 62.484 -134.888 1262.1 740.7 + 6 1 15 6 21 6 0 0 78.0 61.995 -133.518 1229.7 745.7 + 7 1 15 6 21 6 0 0 78.0 62.045 -134.305 1011.0 768.2 + 8 1 15 6 21 6 0 0 78.0 62.416 -136.775 823.8 786.8 + 9 1 15 6 21 6 0 0 78.0 62.638 -139.149 734.6 799.7 + 10 1 15 6 21 6 0 0 78.0 63.180 -140.896 561.8 829.6 + 2 1 15 6 21 7 0 0 79.0 65.109 -143.686 222.2 905.8 + 3 1 15 6 21 7 0 0 79.0 65.060 -143.032 288.5 897.2 + 4 1 15 6 21 7 0 0 79.0 63.089 -137.792 1057.2 776.2 + 5 1 15 6 21 7 0 0 79.0 62.352 -134.724 1263.0 742.1 + 6 1 15 6 21 7 0 0 79.0 61.863 -133.335 1229.4 746.6 + 7 1 15 6 21 7 0 0 79.0 61.916 -134.112 1010.8 769.3 + 8 1 15 6 21 7 0 0 79.0 62.297 -136.581 825.1 788.3 + 9 1 15 6 21 7 0 0 79.0 62.529 -138.959 737.1 797.1 + 10 1 15 6 21 7 0 0 79.0 63.093 -140.681 565.8 827.1 + 2 1 15 6 21 8 0 0 80.0 65.118 -143.414 227.4 904.8 + 3 1 15 6 21 8 0 0 80.0 65.055 -142.765 294.7 896.1 + 4 1 15 6 21 8 0 0 80.0 62.967 -137.630 1064.7 773.2 + 5 1 15 6 21 8 0 0 80.0 62.219 -134.571 1267.7 743.1 + 6 1 15 6 21 8 0 0 80.0 61.732 -133.168 1232.0 747.3 + 7 1 15 6 21 8 0 0 80.0 61.789 -133.938 1013.5 770.1 + 8 1 15 6 21 8 0 0 80.0 62.178 -136.410 830.5 789.3 + 9 1 15 6 21 8 0 0 80.0 62.418 -138.790 745.7 797.0 + 10 1 15 6 21 8 0 0 80.0 63.002 -140.486 575.2 824.0 + 3 1 15 6 21 9 0 0 81.0 65.045 -142.487 305.1 894.5 + 4 1 15 6 21 9 0 0 81.0 62.842 -137.482 1077.0 769.7 + 5 1 15 6 21 9 0 0 81.0 62.088 -134.433 1276.1 743.7 + 6 1 15 6 21 9 0 0 81.0 61.605 -133.016 1237.3 747.6 + 7 1 15 6 21 9 0 0 81.0 61.665 -133.783 1019.1 770.5 + 8 1 15 6 21 9 0 0 81.0 62.060 -136.260 839.7 789.9 + 9 1 15 6 21 9 0 0 81.0 62.306 -138.643 759.5 797.4 + 10 1 15 6 21 9 0 0 81.0 62.906 -140.311 589.9 820.2 + 11 1 15 6 21 9 0 0 81.0 63.518 -141.831 515.0 842.5 + 3 1 15 6 21 10 0 0 82.0 65.028 -142.199 319.3 892.8 + 4 1 15 6 21 10 0 0 82.0 62.715 -137.350 1094.2 765.6 + 5 1 15 6 21 10 0 0 82.0 61.959 -134.308 1288.0 743.9 + 6 1 15 6 21 10 0 0 82.0 61.483 -132.882 1245.0 747.6 + 7 1 15 6 21 10 0 0 82.0 61.546 -133.647 1027.2 770.7 + 8 1 15 6 21 10 0 0 82.0 61.944 -136.133 852.6 790.2 + 9 1 15 6 21 10 0 0 82.0 62.196 -138.519 777.8 797.4 + 10 1 15 6 21 10 0 0 82.0 62.805 -140.159 610.2 815.7 + 11 1 15 6 21 10 0 0 82.0 63.439 -141.637 535.1 838.6 + 3 1 15 6 21 11 0 0 83.0 65.004 -141.904 336.8 890.8 + 4 1 15 6 21 11 0 0 83.0 62.586 -137.236 1116.7 761.0 + 5 1 15 6 21 11 0 0 83.0 61.832 -134.200 1303.2 743.8 + 6 1 15 6 21 11 0 0 83.0 61.365 -132.765 1254.9 747.4 + 7 1 15 6 21 11 0 0 83.0 61.432 -133.533 1037.7 770.5 + 8 1 15 6 21 11 0 0 83.0 61.831 -136.030 869.1 790.1 + 9 1 15 6 21 11 0 0 83.0 62.086 -138.419 800.7 796.9 + 10 1 15 6 21 11 0 0 83.0 62.700 -140.032 636.4 810.6 + 11 1 15 6 21 11 0 0 83.0 63.353 -141.460 560.6 834.1 + 3 1 15 6 21 12 0 0 84.0 64.969 -141.604 357.5 887.8 + 4 1 15 6 21 12 0 0 84.0 62.455 -137.141 1145.2 757.4 + 5 1 15 6 21 12 0 0 84.0 61.709 -134.110 1321.4 743.4 + 6 1 15 6 21 12 0 0 84.0 61.255 -132.669 1267.0 746.9 + 7 1 15 6 21 12 0 0 84.0 61.323 -133.439 1050.3 770.2 + 8 1 15 6 21 12 0 0 84.0 61.720 -135.950 889.0 789.6 + 9 1 15 6 21 12 0 0 84.0 61.977 -138.341 827.9 795.9 + 10 1 15 6 21 12 0 0 84.0 62.592 -139.930 668.6 804.9 + 11 1 15 6 21 12 0 0 84.0 63.261 -141.303 591.7 828.8 + 3 1 15 6 21 13 0 0 85.0 64.925 -141.311 378.3 884.6 + 4 1 15 6 21 13 0 0 85.0 62.324 -137.059 1174.1 756.6 + 5 1 15 6 21 13 0 0 85.0 61.586 -134.030 1338.7 743.1 + 6 1 15 6 21 13 0 0 85.0 61.146 -132.583 1278.8 746.6 + 7 1 15 6 21 13 0 0 85.0 61.216 -133.358 1062.2 769.9 + 8 1 15 6 21 13 0 0 85.0 61.612 -135.884 907.5 789.4 + 9 1 15 6 21 13 0 0 85.0 61.870 -138.281 853.7 795.1 + 10 1 15 6 21 13 0 0 85.0 62.484 -139.849 700.8 800.3 + 11 1 15 6 21 13 0 0 85.0 63.167 -141.166 623.3 823.6 + 3 1 15 6 21 14 0 0 86.0 64.873 -141.037 396.7 881.5 + 4 1 15 6 21 14 0 0 86.0 62.196 -136.988 1195.2 756.4 + 5 1 15 6 21 14 0 0 86.0 61.462 -133.957 1350.6 743.2 + 6 1 15 6 21 14 0 0 86.0 61.034 -132.502 1286.9 746.7 + 7 1 15 6 21 14 0 0 86.0 61.108 -133.282 1070.0 770.1 + 8 1 15 6 21 14 0 0 86.0 61.504 -135.825 919.6 789.7 + 9 1 15 6 21 14 0 0 86.0 61.767 -138.231 871.6 795.1 + 10 1 15 6 21 14 0 0 86.0 62.380 -139.781 726.7 799.7 + 11 1 15 6 21 14 0 0 86.0 63.074 -141.046 649.6 819.0 + 3 1 15 6 21 15 0 0 87.0 64.813 -140.781 412.9 878.4 + 4 1 15 6 21 15 0 0 87.0 62.071 -136.928 1208.4 756.9 + 5 1 15 6 21 15 0 0 87.0 61.337 -133.890 1357.1 743.9 + 6 1 15 6 21 15 0 0 87.0 60.918 -132.425 1291.7 747.3 + 7 1 15 6 21 15 0 0 87.0 60.998 -133.211 1073.7 770.7 + 8 1 15 6 21 15 0 0 87.0 61.398 -135.774 925.2 790.6 + 9 1 15 6 21 15 0 0 87.0 61.669 -138.195 881.8 795.8 + 10 1 15 6 21 15 0 0 87.0 62.282 -139.725 744.8 799.8 + 11 1 15 6 21 15 0 0 87.0 62.984 -140.943 670.3 815.1 + 3 1 15 6 21 16 0 0 88.0 64.747 -140.540 427.0 875.5 + 4 1 15 6 21 16 0 0 88.0 61.948 -136.880 1213.7 758.2 + 5 1 15 6 21 16 0 0 88.0 61.210 -133.829 1358.2 745.0 + 6 1 15 6 21 16 0 0 88.0 60.801 -132.352 1293.2 748.1 + 7 1 15 6 21 16 0 0 88.0 60.886 -133.146 1073.3 771.7 + 8 1 15 6 21 16 0 0 88.0 61.292 -135.731 924.2 792.2 + 9 1 15 6 21 16 0 0 88.0 61.573 -138.171 884.0 797.2 + 10 1 15 6 21 16 0 0 88.0 62.190 -139.682 755.1 800.5 + 11 1 15 6 21 16 0 0 88.0 62.896 -140.858 684.9 811.8 + 4 1 15 6 21 17 0 0 89.0 61.828 -136.844 1210.8 760.3 + 5 1 15 6 21 17 0 0 89.0 61.082 -133.777 1353.7 746.7 + 6 1 15 6 21 17 0 0 89.0 60.680 -132.285 1291.5 749.3 + 7 1 15 6 21 17 0 0 89.0 60.773 -133.089 1068.8 773.2 + 8 1 15 6 21 17 0 0 89.0 61.188 -135.698 916.7 794.3 + 9 1 15 6 21 17 0 0 89.0 61.482 -138.162 878.3 799.4 + 10 1 15 6 21 17 0 0 89.0 62.103 -139.652 757.6 801.9 + 11 1 15 6 21 17 0 0 89.0 62.813 -140.789 693.2 809.3 + 12 1 15 6 21 17 0 0 89.0 63.522 -141.916 511.7 843.8 + 4 1 15 6 21 18 0 0 90.0 61.711 -136.820 1199.7 763.1 + 5 1 15 6 21 18 0 0 90.0 60.953 -133.732 1343.6 748.9 + 6 1 15 6 21 18 0 0 90.0 60.557 -132.223 1286.5 750.7 + 7 1 15 6 21 18 0 0 90.0 60.658 -133.039 1060.2 775.0 + 8 1 15 6 21 18 0 0 90.0 61.086 -135.674 902.5 797.1 + 9 1 15 6 21 18 0 0 90.0 61.395 -138.166 864.7 802.3 + 10 1 15 6 21 18 0 0 90.0 62.021 -139.637 752.4 803.9 + 11 1 15 6 21 18 0 0 90.0 62.735 -140.737 694.9 807.6 + 12 1 15 6 21 18 0 0 90.0 63.456 -141.810 518.3 841.8 + 4 1 15 6 21 19 0 0 91.0 61.600 -136.797 1188.1 765.8 + 5 1 15 6 21 19 0 0 91.0 60.828 -133.689 1334.1 751.1 + 6 1 15 6 21 19 0 0 91.0 60.436 -132.162 1282.9 751.9 + 7 1 15 6 21 19 0 0 91.0 60.546 -132.991 1052.8 776.7 + 8 1 15 6 21 19 0 0 91.0 60.987 -135.652 888.9 799.9 + 9 1 15 6 21 19 0 0 91.0 61.314 -138.172 851.2 805.0 + 10 1 15 6 21 19 0 0 91.0 61.945 -139.620 747.3 806.0 + 11 1 15 6 21 19 0 0 91.0 62.661 -140.685 696.7 806.0 + 12 1 15 6 21 19 0 0 91.0 63.392 -141.704 524.8 839.8 + 4 1 15 6 21 20 0 0 92.0 61.498 -136.762 1184.2 767.6 + 5 1 15 6 21 20 0 0 92.0 60.709 -133.640 1332.1 752.5 + 6 1 15 6 21 20 0 0 92.0 60.321 -132.099 1286.7 752.3 + 7 1 15 6 21 20 0 0 92.0 60.439 -132.940 1052.6 777.6 + 8 1 15 6 21 20 0 0 92.0 60.893 -135.622 883.2 801.8 + 9 1 15 6 21 20 0 0 92.0 61.239 -138.165 845.9 806.8 + 10 1 15 6 21 20 0 0 92.0 61.877 -139.589 749.2 807.2 + 11 1 15 6 21 20 0 0 92.0 62.594 -140.620 705.1 803.9 + 12 1 15 6 21 20 0 0 92.0 63.331 -141.586 536.2 837.3 + 4 1 15 6 21 21 0 0 93.0 61.403 -136.714 1188.2 768.5 + 5 1 15 6 21 21 0 0 93.0 60.597 -133.587 1338.2 753.0 + 6 1 15 6 21 21 0 0 93.0 60.211 -132.034 1298.0 751.9 + 7 1 15 6 21 21 0 0 93.0 60.336 -132.887 1060.0 777.7 + 8 1 15 6 21 21 0 0 93.0 60.803 -135.586 885.8 802.8 + 9 1 15 6 21 21 0 0 93.0 61.170 -138.148 848.8 807.6 + 10 1 15 6 21 21 0 0 93.0 61.814 -139.544 758.5 807.5 + 11 1 15 6 21 21 0 0 93.0 62.533 -140.539 720.4 801.3 + 12 1 15 6 21 21 0 0 93.0 63.272 -141.452 552.8 834.3 + 4 1 15 6 21 22 0 0 94.0 61.316 -136.656 1200.5 768.5 + 5 1 15 6 21 22 0 0 94.0 60.491 -133.531 1352.8 752.5 + 6 1 15 6 21 22 0 0 94.0 60.105 -131.969 1317.3 750.7 + 7 1 15 6 21 22 0 0 94.0 60.237 -132.833 1075.3 777.0 + 8 1 15 6 21 22 0 0 94.0 60.717 -135.544 896.9 802.8 + 9 1 15 6 21 22 0 0 94.0 61.107 -138.121 860.2 807.5 + 10 1 15 6 21 22 0 0 94.0 61.758 -139.485 775.3 806.9 + 11 1 15 6 21 22 0 0 94.0 62.479 -140.442 743.3 798.8 + 12 1 15 6 21 22 0 0 94.0 63.216 -141.304 574.8 830.8 + 4 1 15 6 21 23 0 0 95.0 61.235 -136.588 1221.5 767.6 + 5 1 15 6 21 23 0 0 95.0 60.390 -133.474 1376.4 751.2 + 6 1 15 6 21 23 0 0 95.0 60.004 -131.907 1344.9 748.6 + 7 1 15 6 21 23 0 0 95.0 60.142 -132.780 1098.9 775.4 + 8 1 15 6 21 23 0 0 95.0 60.635 -135.497 916.9 801.9 + 9 1 15 6 21 23 0 0 95.0 61.049 -138.083 880.3 806.4 + 10 1 15 6 21 23 0 0 95.0 61.708 -139.412 799.8 805.4 + 11 1 15 6 21 23 0 0 95.0 62.430 -140.328 773.7 796.8 + 12 1 15 6 21 23 0 0 95.0 63.162 -141.140 602.7 826.8 + 4 1 15 6 22 0 0 0 96.0 61.161 -136.511 1251.5 765.7 + 5 1 15 6 22 0 0 0 96.0 60.293 -133.417 1409.7 748.9 + 6 1 15 6 22 0 0 0 96.0 59.906 -131.843 1381.1 746.3 + 7 1 15 6 22 0 0 0 96.0 60.050 -132.728 1131.3 772.8 + 8 1 15 6 22 0 0 0 96.0 60.557 -135.447 946.2 800.1 + 9 1 15 6 22 0 0 0 96.0 60.997 -138.037 909.2 804.3 + 10 1 15 6 22 0 0 0 96.0 61.664 -139.326 832.1 803.0 + 11 1 15 6 22 0 0 0 96.0 62.388 -140.197 811.3 793.9 + 12 1 15 6 22 0 0 0 96.0 63.111 -140.960 636.5 822.3 + 5 1 15 6 22 1 0 0 97.0 60.193 -133.367 1445.4 746.2 + 6 1 15 6 22 1 0 0 97.0 59.805 -131.781 1418.0 743.7 + 7 1 15 6 22 1 0 0 97.0 59.956 -132.681 1165.7 770.3 + 8 1 15 6 22 1 0 0 97.0 60.477 -135.399 977.1 797.8 + 9 1 15 6 22 1 0 0 97.0 60.944 -137.987 939.4 801.9 + 10 1 15 6 22 1 0 0 97.0 61.618 -139.236 865.0 800.0 + 11 1 15 6 22 1 0 0 97.0 62.346 -140.060 849.0 790.2 + 12 1 15 6 22 1 0 0 97.0 63.058 -140.780 670.8 817.1 + 13 1 15 6 22 1 0 0 97.0 63.543 -141.837 531.3 842.4 + 5 1 15 6 22 2 0 0 98.0 60.081 -133.332 1475.2 744.2 + 6 1 15 6 22 2 0 0 98.0 59.692 -131.726 1447.5 741.9 + 7 1 15 6 22 2 0 0 98.0 59.852 -132.639 1193.4 769.0 + 8 1 15 6 22 2 0 0 98.0 60.389 -135.358 1002.0 796.3 + 9 1 15 6 22 2 0 0 98.0 60.881 -137.942 962.8 800.4 + 10 1 15 6 22 2 0 0 98.0 61.563 -139.154 891.7 797.9 + 11 1 15 6 22 2 0 0 98.0 62.294 -139.934 880.8 787.3 + 12 1 15 6 22 2 0 0 98.0 62.998 -140.617 700.5 812.3 + 13 1 15 6 22 2 0 0 98.0 63.488 -141.656 558.3 837.9 + 5 1 15 6 22 3 0 0 99.0 59.957 -133.308 1498.7 743.3 + 6 1 15 6 22 3 0 0 99.0 59.569 -131.677 1469.4 740.9 + 7 1 15 6 22 3 0 0 99.0 59.739 -132.601 1214.2 768.4 + 8 1 15 6 22 3 0 0 99.0 60.292 -135.324 1020.4 795.5 + 9 1 15 6 22 3 0 0 99.0 60.809 -137.901 979.1 799.7 + 10 1 15 6 22 3 0 0 99.0 61.499 -139.078 911.7 796.6 + 11 1 15 6 22 3 0 0 99.0 62.233 -139.818 906.4 785.4 + 12 1 15 6 22 3 0 0 99.0 62.931 -140.470 725.5 807.9 + 13 1 15 6 22 3 0 0 99.0 63.424 -141.496 581.2 833.7 + 5 1 15 6 22 4 0 0 100.0 59.822 -133.291 1515.6 744.0 + 6 1 15 6 22 4 0 0 100.0 59.435 -131.634 1483.6 740.7 + 7 1 15 6 22 4 0 0 100.0 59.617 -132.565 1227.9 768.6 + 8 1 15 6 22 4 0 0 100.0 60.187 -135.294 1031.9 795.5 + 9 1 15 6 22 4 0 0 100.0 60.727 -137.862 988.4 799.8 + 10 1 15 6 22 4 0 0 100.0 61.425 -139.008 924.9 796.2 + 11 1 15 6 22 4 0 0 100.0 62.162 -139.712 925.6 784.3 + 12 1 15 6 22 4 0 0 100.0 62.857 -140.338 745.4 803.7 + 13 1 15 6 22 4 0 0 100.0 63.354 -141.356 599.8 829.8 + 5 1 15 6 22 5 0 0 101.0 59.677 -133.278 1524.9 745.5 + 6 1 15 6 22 5 0 0 101.0 59.293 -131.597 1489.9 741.4 + 7 1 15 6 22 5 0 0 101.0 59.487 -132.533 1234.4 769.7 + 8 1 15 6 22 5 0 0 101.0 60.073 -135.266 1036.3 796.3 + 9 1 15 6 22 5 0 0 101.0 60.635 -137.825 990.1 800.8 + 10 1 15 6 22 5 0 0 101.0 61.342 -138.943 931.2 796.6 + 11 1 15 6 22 5 0 0 101.0 62.082 -139.616 938.3 784.0 + 12 1 15 6 22 5 0 0 101.0 62.776 -140.222 760.3 800.0 + 13 1 15 6 22 5 0 0 101.0 63.276 -141.236 614.0 826.2 + 5 1 15 6 22 6 0 0 102.0 59.523 -133.267 1526.6 747.8 + 6 1 15 6 22 6 0 0 102.0 59.142 -131.562 1488.2 742.8 + 7 1 15 6 22 6 0 0 102.0 59.350 -132.501 1233.6 771.5 + 8 1 15 6 22 6 0 0 102.0 59.949 -135.238 1033.2 798.6 + 9 1 15 6 22 6 0 0 102.0 60.534 -137.788 984.0 802.7 + 10 1 15 6 22 6 0 0 102.0 61.248 -138.883 930.3 797.9 + 11 1 15 6 22 6 0 0 102.0 61.992 -139.530 944.5 784.5 + 12 1 15 6 22 6 0 0 102.0 62.687 -140.117 769.8 796.5 + 13 1 15 6 22 6 0 0 102.0 63.192 -141.135 623.5 823.1 + 5 1 15 6 22 7 0 0 103.0 59.376 -133.254 1524.8 750.6 + 6 1 15 6 22 7 0 0 103.0 58.999 -131.527 1482.9 744.7 + 7 1 15 6 22 7 0 0 103.0 59.218 -132.468 1229.8 773.7 + 8 1 15 6 22 7 0 0 103.0 59.830 -135.207 1027.6 802.0 + 9 1 15 6 22 7 0 0 103.0 60.433 -137.750 973.8 804.8 + 10 1 15 6 22 7 0 0 103.0 61.156 -138.824 925.0 799.6 + 11 1 15 6 22 7 0 0 103.0 61.904 -139.448 946.1 785.7 + 12 1 15 6 22 7 0 0 103.0 62.600 -140.017 775.4 794.1 + 13 1 15 6 22 7 0 0 103.0 63.112 -141.038 629.1 820.7 + 5 1 15 6 22 8 0 0 104.0 59.248 -133.237 1523.3 752.8 + 6 1 15 6 22 8 0 0 104.0 58.876 -131.488 1478.3 746.2 + 7 1 15 6 22 8 0 0 104.0 59.105 -132.431 1227.1 775.5 + 8 1 15 6 22 8 0 0 104.0 59.724 -135.172 1023.8 804.9 + 9 1 15 6 22 8 0 0 104.0 60.344 -137.710 965.2 806.7 + 10 1 15 6 22 8 0 0 104.0 61.075 -138.762 919.5 801.2 + 11 1 15 6 22 8 0 0 104.0 61.828 -139.364 945.6 787.0 + 12 1 15 6 22 8 0 0 104.0 62.527 -139.912 778.5 792.3 + 13 1 15 6 22 8 0 0 104.0 63.045 -140.935 631.8 818.8 + 6 1 15 6 22 9 0 0 105.0 58.773 -131.446 1474.8 747.2 + 7 1 15 6 22 9 0 0 105.0 59.008 -132.390 1226.0 776.7 + 8 1 15 6 22 9 0 0 105.0 59.631 -135.133 1022.2 807.2 + 9 1 15 6 22 9 0 0 105.0 60.267 -137.669 958.2 808.2 + 10 1 15 6 22 9 0 0 105.0 61.007 -138.698 914.1 802.6 + 11 1 15 6 22 9 0 0 105.0 61.764 -139.278 943.6 788.1 + 12 1 15 6 22 9 0 0 105.0 62.466 -139.804 779.6 792.3 + 13 1 15 6 22 9 0 0 105.0 62.992 -140.826 631.7 817.5 + 14 1 15 6 22 9 0 0 105.0 63.548 -141.925 499.5 843.7 + 6 1 15 6 22 10 0 0 106.0 58.688 -131.403 1472.9 747.9 + 7 1 15 6 22 10 0 0 106.0 58.926 -132.346 1226.6 777.5 + 8 1 15 6 22 10 0 0 106.0 59.552 -135.090 1023.1 808.9 + 9 1 15 6 22 10 0 0 106.0 60.201 -137.627 953.4 809.2 + 10 1 15 6 22 10 0 0 106.0 60.950 -138.632 909.1 803.7 + 11 1 15 6 22 10 0 0 106.0 61.711 -139.189 940.3 789.1 + 12 1 15 6 22 10 0 0 106.0 62.417 -139.694 778.5 793.2 + 13 1 15 6 22 10 0 0 106.0 62.952 -140.711 628.9 816.8 + 14 1 15 6 22 10 0 0 106.0 63.519 -141.803 496.0 843.3 + 6 1 15 6 22 11 0 0 107.0 58.619 -131.359 1472.7 748.2 + 7 1 15 6 22 11 0 0 107.0 58.858 -132.299 1229.4 777.8 + 8 1 15 6 22 11 0 0 107.0 59.484 -135.044 1026.6 810.0 + 9 1 15 6 22 11 0 0 107.0 60.146 -137.584 951.1 809.9 + 10 1 15 6 22 11 0 0 107.0 60.904 -138.563 904.9 804.5 + 11 1 15 6 22 11 0 0 107.0 61.671 -139.096 936.2 790.0 + 12 1 15 6 22 11 0 0 107.0 62.381 -139.580 775.1 794.2 + 13 1 15 6 22 11 0 0 107.0 62.926 -140.590 623.3 816.6 + 14 1 15 6 22 11 0 0 107.0 63.505 -141.672 489.5 843.4 + 6 1 15 6 22 12 0 0 108.0 58.567 -131.314 1474.6 748.1 + 7 1 15 6 22 12 0 0 108.0 58.804 -132.250 1234.4 777.6 + 8 1 15 6 22 12 0 0 108.0 59.428 -134.995 1032.8 810.5 + 9 1 15 6 22 12 0 0 108.0 60.102 -137.539 951.7 810.1 + 10 1 15 6 22 12 0 0 108.0 60.870 -138.490 901.8 805.1 + 11 1 15 6 22 12 0 0 108.0 61.642 -139.000 931.5 790.8 + 12 1 15 6 22 12 0 0 108.0 62.356 -139.462 769.4 795.1 + 13 1 15 6 22 12 0 0 108.0 62.912 -140.463 615.0 816.9 + 14 1 15 6 22 12 0 0 108.0 63.504 -141.533 480.1 844.1 + 6 1 15 6 22 13 0 0 109.0 58.528 -131.269 1475.5 748.1 + 7 1 15 6 22 13 0 0 109.0 58.762 -132.201 1238.9 777.6 + 8 1 15 6 22 13 0 0 109.0 59.378 -134.949 1038.7 810.9 + 9 1 15 6 22 13 0 0 109.0 60.061 -137.500 953.1 810.6 + 10 1 15 6 22 13 0 0 109.0 60.836 -138.421 899.7 805.8 + 11 1 15 6 22 13 0 0 109.0 61.612 -138.904 927.9 791.5 + 12 1 15 6 22 13 0 0 109.0 62.331 -139.344 765.1 796.0 + 13 1 15 6 22 13 0 0 109.0 62.898 -140.333 608.3 817.2 + 14 1 15 6 22 13 0 0 109.0 63.503 -141.387 472.4 844.8 + 6 1 15 6 22 14 0 0 110.0 58.500 -131.223 1472.4 748.4 + 7 1 15 6 22 14 0 0 110.0 58.729 -132.156 1239.1 777.8 + 8 1 15 6 22 14 0 0 110.0 59.331 -134.913 1040.8 811.8 + 9 1 15 6 22 14 0 0 110.0 60.012 -137.473 952.8 811.4 + 10 1 15 6 22 14 0 0 110.0 60.792 -138.362 898.5 806.6 + 11 1 15 6 22 14 0 0 110.0 61.570 -138.817 927.3 792.2 + 12 1 15 6 22 14 0 0 110.0 62.292 -139.230 765.4 796.6 + 13 1 15 6 22 14 0 0 110.0 62.870 -140.204 607.1 816.6 + 14 1 15 6 22 14 0 0 110.0 63.489 -141.237 470.7 844.5 + 6 1 15 6 22 15 0 0 111.0 58.482 -131.175 1465.4 748.8 + 7 1 15 6 22 15 0 0 111.0 58.706 -132.113 1235.3 778.3 + 8 1 15 6 22 15 0 0 111.0 59.286 -134.886 1039.3 813.0 + 9 1 15 6 22 15 0 0 111.0 59.958 -137.457 950.7 813.2 + 10 1 15 6 22 15 0 0 111.0 60.738 -138.314 897.8 807.5 + 11 1 15 6 22 15 0 0 111.0 61.517 -138.738 929.4 792.8 + 12 1 15 6 22 15 0 0 111.0 62.240 -139.123 770.1 797.0 + 13 1 15 6 22 15 0 0 111.0 62.827 -140.078 611.4 815.3 + 14 1 15 6 22 15 0 0 111.0 63.461 -141.085 474.8 843.4 + 6 1 15 6 22 16 0 0 112.0 58.475 -131.125 1454.6 749.5 + 7 1 15 6 22 16 0 0 112.0 58.692 -132.072 1227.6 779.0 + 8 1 15 6 22 16 0 0 112.0 59.244 -134.870 1034.0 814.5 + 9 1 15 6 22 16 0 0 112.0 59.897 -137.451 946.4 815.6 + 10 1 15 6 22 16 0 0 112.0 60.676 -138.277 897.3 808.5 + 11 1 15 6 22 16 0 0 112.0 61.452 -138.669 933.7 793.4 + 12 1 15 6 22 16 0 0 112.0 62.176 -139.022 778.6 797.2 + 13 1 15 6 22 16 0 0 112.0 62.770 -139.956 620.9 813.1 + 14 1 15 6 22 16 0 0 112.0 63.419 -140.933 484.6 841.4 + 7 1 15 6 22 17 0 0 113.0 58.688 -132.034 1216.2 780.0 + 8 1 15 6 22 17 0 0 113.0 59.204 -134.864 1024.9 816.5 + 9 1 15 6 22 17 0 0 113.0 59.831 -137.456 939.8 818.4 + 10 1 15 6 22 17 0 0 113.0 60.605 -138.253 896.5 809.8 + 11 1 15 6 22 17 0 0 113.0 61.377 -138.611 939.7 794.0 + 12 1 15 6 22 17 0 0 113.0 62.099 -138.931 790.6 797.2 + 13 1 15 6 22 17 0 0 113.0 62.700 -139.839 635.6 810.3 + 14 1 15 6 22 17 0 0 113.0 63.362 -140.782 500.0 838.5 + 15 1 15 6 22 17 0 0 113.0 63.543 -141.879 517.4 842.0 + 7 1 15 6 22 18 0 0 114.0 58.693 -131.997 1200.9 781.2 + 8 1 15 6 22 18 0 0 114.0 59.167 -134.868 1011.9 818.9 + 9 1 15 6 22 18 0 0 114.0 59.758 -137.472 930.7 821.7 + 10 1 15 6 22 18 0 0 114.0 60.526 -138.241 894.9 811.3 + 11 1 15 6 22 18 0 0 114.0 61.291 -138.564 947.0 794.7 + 12 1 15 6 22 18 0 0 114.0 62.011 -138.848 805.5 797.1 + 13 1 15 6 22 18 0 0 114.0 62.616 -139.729 655.3 806.7 + 14 1 15 6 22 18 0 0 114.0 63.291 -140.634 520.9 834.8 + 15 1 15 6 22 18 0 0 114.0 63.481 -141.718 540.9 838.3 + 7 1 15 6 22 19 0 0 115.0 58.705 -131.950 1186.5 781.9 + 8 1 15 6 22 19 0 0 115.0 59.138 -134.868 1000.1 821.0 + 9 1 15 6 22 19 0 0 115.0 59.693 -137.487 923.1 824.7 + 10 1 15 6 22 19 0 0 115.0 60.452 -138.231 894.8 812.7 + 11 1 15 6 22 19 0 0 115.0 61.209 -138.519 955.9 795.3 + 12 1 15 6 22 19 0 0 115.0 61.925 -138.767 822.0 797.0 + 13 1 15 6 22 19 0 0 115.0 62.532 -139.620 677.1 802.8 + 14 1 15 6 22 19 0 0 115.0 63.217 -140.488 544.2 830.7 + 15 1 15 6 22 19 0 0 115.0 63.417 -141.559 566.6 834.1 + 7 1 15 6 22 20 0 0 116.0 58.722 -131.880 1177.7 781.7 + 8 1 15 6 22 20 0 0 116.0 59.122 -134.850 993.6 821.9 + 9 1 15 6 22 20 0 0 116.0 59.647 -137.488 920.0 826.6 + 10 1 15 6 22 20 0 0 116.0 60.398 -138.210 897.4 813.5 + 11 1 15 6 22 20 0 0 116.0 61.142 -138.463 965.7 795.5 + 12 1 15 6 22 20 0 0 116.0 61.853 -138.675 838.3 796.6 + 13 1 15 6 22 20 0 0 116.0 62.461 -139.502 698.9 800.7 + 14 1 15 6 22 20 0 0 116.0 63.155 -140.340 566.6 827.0 + 15 1 15 6 22 20 0 0 116.0 63.363 -141.399 590.7 830.4 + 7 1 15 6 22 21 0 0 117.0 58.744 -131.788 1174.5 780.7 + 8 1 15 6 22 21 0 0 117.0 59.118 -134.812 993.0 821.9 + 9 1 15 6 22 21 0 0 117.0 59.620 -137.477 922.1 827.4 + 10 1 15 6 22 21 0 0 117.0 60.361 -138.178 903.5 813.7 + 11 1 15 6 22 21 0 0 117.0 61.092 -138.394 977.2 795.3 + 12 1 15 6 22 21 0 0 117.0 61.796 -138.572 855.1 796.0 + 13 1 15 6 22 21 0 0 117.0 62.404 -139.375 720.3 799.5 + 14 1 15 6 22 21 0 0 117.0 63.105 -140.188 588.4 823.4 + 15 1 15 6 22 21 0 0 117.0 63.320 -141.238 613.3 827.0 + 7 1 15 6 22 22 0 0 118.0 58.769 -131.671 1176.7 778.8 + 8 1 15 6 22 22 0 0 118.0 59.126 -134.754 998.1 820.7 + 9 1 15 6 22 22 0 0 118.0 59.611 -137.452 929.5 827.0 + 10 1 15 6 22 22 0 0 118.0 60.344 -138.134 913.5 813.1 + 11 1 15 6 22 22 0 0 118.0 61.058 -138.313 990.9 794.6 + 12 1 15 6 22 22 0 0 118.0 61.753 -138.456 873.0 795.0 + 13 1 15 6 22 22 0 0 118.0 62.360 -139.237 741.4 798.2 + 14 1 15 6 22 22 0 0 118.0 63.066 -140.030 609.7 820.2 + 15 1 15 6 22 22 0 0 118.0 63.288 -141.074 634.7 824.0 + 7 1 15 6 22 23 0 0 119.0 58.798 -131.529 1184.3 776.1 + 8 1 15 6 22 23 0 0 119.0 59.145 -134.675 1009.1 818.5 + 9 1 15 6 22 23 0 0 119.0 59.621 -137.413 942.1 825.5 + 10 1 15 6 22 23 0 0 119.0 60.343 -138.075 927.6 811.9 + 11 1 15 6 22 23 0 0 119.0 61.039 -138.215 1007.1 793.4 + 12 1 15 6 22 23 0 0 119.0 61.723 -138.324 892.1 793.6 + 13 1 15 6 22 23 0 0 119.0 62.328 -139.085 762.3 796.7 + 14 1 15 6 22 23 0 0 119.0 63.039 -139.864 630.6 817.5 + 15 1 15 6 22 23 0 0 119.0 63.267 -140.904 655.0 821.3 + 7 1 15 6 23 0 0 0 120.0 58.829 -131.361 1197.5 772.7 + 8 1 15 6 23 0 0 0 120.0 59.175 -134.573 1025.8 815.3 + 9 1 15 6 23 0 0 0 120.0 59.649 -137.358 960.1 822.9 + 10 1 15 6 23 0 0 0 120.0 60.360 -138.001 945.7 810.0 + 11 1 15 6 23 0 0 0 120.0 61.035 -138.101 1025.8 791.8 + 12 1 15 6 23 0 0 0 120.0 61.706 -138.175 912.7 792.0 + 13 1 15 6 23 0 0 0 120.0 62.309 -138.919 783.4 795.0 + 14 1 15 6 23 0 0 0 120.0 63.024 -139.687 651.2 815.1 + 15 1 15 6 23 0 0 0 120.0 63.257 -140.726 674.4 818.9 + 8 1 15 6 23 1 0 0 121.0 59.206 -134.447 1044.4 811.5 + 9 1 15 6 23 1 0 0 121.0 59.680 -137.282 980.0 819.7 + 10 1 15 6 23 1 0 0 121.0 60.380 -137.907 965.5 807.5 + 11 1 15 6 23 1 0 0 121.0 61.032 -137.972 1045.8 789.6 + 12 1 15 6 23 1 0 0 121.0 61.690 -138.015 934.0 790.0 + 13 1 15 6 23 1 0 0 121.0 62.289 -138.743 805.0 793.1 + 14 1 15 6 23 1 0 0 121.0 63.008 -139.502 672.0 812.6 + 15 1 15 6 23 1 0 0 121.0 63.246 -140.543 694.2 816.4 + 16 1 15 6 23 1 0 0 121.0 63.590 -141.850 516.7 842.9 + 8 1 15 6 23 2 0 0 122.0 59.227 -134.296 1061.6 807.8 + 9 1 15 6 23 2 0 0 122.0 59.703 -137.181 998.4 816.8 + 10 1 15 6 23 2 0 0 122.0 60.389 -137.794 984.4 805.2 + 11 1 15 6 23 2 0 0 122.0 61.019 -137.836 1065.5 787.6 + 12 1 15 6 23 2 0 0 122.0 61.663 -137.851 955.4 788.1 + 13 1 15 6 23 2 0 0 122.0 62.257 -138.567 827.0 791.3 + 14 1 15 6 23 2 0 0 122.0 62.979 -139.313 693.4 809.8 + 15 1 15 6 23 2 0 0 122.0 63.221 -140.355 714.9 813.5 + 16 1 15 6 23 2 0 0 122.0 63.577 -141.655 534.4 840.5 + 8 1 15 6 23 3 0 0 123.0 59.239 -134.123 1077.0 804.4 + 9 1 15 6 23 3 0 0 123.0 59.717 -137.057 1015.5 814.1 + 10 1 15 6 23 3 0 0 123.0 60.388 -137.664 1002.4 803.2 + 11 1 15 6 23 3 0 0 123.0 60.996 -137.694 1085.1 785.8 + 12 1 15 6 23 3 0 0 123.0 61.626 -137.686 976.8 786.3 + 13 1 15 6 23 3 0 0 123.0 62.214 -138.393 849.3 789.6 + 14 1 15 6 23 3 0 0 123.0 62.937 -139.123 715.3 806.7 + 15 1 15 6 23 3 0 0 123.0 63.183 -140.166 736.8 810.3 + 16 1 15 6 23 3 0 0 123.0 63.550 -141.456 553.4 837.7 + 8 1 15 6 23 4 0 0 124.0 59.242 -133.928 1090.6 801.2 + 9 1 15 6 23 4 0 0 124.0 59.722 -136.912 1031.3 811.8 + 10 1 15 6 23 4 0 0 124.0 60.378 -137.518 1019.8 801.3 + 11 1 15 6 23 4 0 0 124.0 60.964 -137.547 1104.4 784.1 + 12 1 15 6 23 4 0 0 124.0 61.579 -137.520 998.0 784.7 + 13 1 15 6 23 4 0 0 124.0 62.160 -138.222 871.8 788.1 + 14 1 15 6 23 4 0 0 124.0 62.882 -138.934 737.8 803.3 + 15 1 15 6 23 4 0 0 124.0 63.132 -139.976 759.8 806.8 + 16 1 15 6 23 4 0 0 124.0 63.509 -141.253 573.6 834.5 + 8 1 15 6 23 5 0 0 125.0 59.236 -133.713 1102.2 798.3 + 9 1 15 6 23 5 0 0 125.0 59.718 -136.745 1045.8 809.7 + 10 1 15 6 23 5 0 0 125.0 60.359 -137.356 1036.3 799.4 + 11 1 15 6 23 5 0 0 125.0 60.922 -137.395 1123.3 782.4 + 12 1 15 6 23 5 0 0 125.0 61.523 -137.355 1018.7 783.0 + 13 1 15 6 23 5 0 0 125.0 62.096 -138.053 894.3 786.6 + 14 1 15 6 23 5 0 0 125.0 62.817 -138.748 760.7 799.5 + 15 1 15 6 23 5 0 0 125.0 63.069 -139.789 783.7 803.1 + 16 1 15 6 23 5 0 0 125.0 63.456 -141.048 595.0 830.9 + 8 1 15 6 23 6 0 0 126.0 59.220 -133.479 1111.7 795.7 + 9 1 15 6 23 6 0 0 126.0 59.705 -136.559 1059.0 807.9 + 10 1 15 6 23 6 0 0 126.0 60.331 -137.180 1051.7 797.6 + 11 1 15 6 23 6 0 0 126.0 60.872 -137.241 1141.5 780.9 + 12 1 15 6 23 6 0 0 126.0 61.458 -137.192 1038.7 781.6 + 13 1 15 6 23 6 0 0 126.0 62.024 -137.888 916.6 785.4 + 14 1 15 6 23 6 0 0 126.0 62.739 -138.569 784.0 795.5 + 15 1 15 6 23 6 0 0 126.0 62.994 -139.607 808.3 799.0 + 16 1 15 6 23 6 0 0 126.0 63.389 -140.841 617.8 827.0 + 8 1 15 6 23 7 0 0 127.0 59.202 -133.240 1119.8 793.3 + 9 1 15 6 23 7 0 0 127.0 59.691 -136.371 1071.8 806.3 + 10 1 15 6 23 7 0 0 127.0 60.301 -137.003 1066.7 796.1 + 11 1 15 6 23 7 0 0 127.0 60.821 -137.088 1159.5 779.6 + 12 1 15 6 23 7 0 0 127.0 61.393 -137.030 1058.7 780.5 + 13 1 15 6 23 7 0 0 127.0 61.950 -137.726 939.6 784.5 + 14 1 15 6 23 7 0 0 127.0 62.659 -138.394 808.4 791.7 + 15 1 15 6 23 7 0 0 127.0 62.914 -139.430 833.4 794.9 + 16 1 15 6 23 7 0 0 127.0 63.318 -140.636 641.4 823.0 + 8 1 15 6 23 8 0 0 128.0 59.184 -133.013 1127.1 790.9 + 9 1 15 6 23 8 0 0 128.0 59.681 -136.200 1084.2 804.8 + 10 1 15 6 23 8 0 0 128.0 60.277 -136.840 1081.6 794.6 + 11 1 15 6 23 8 0 0 128.0 60.777 -136.943 1177.3 778.2 + 12 1 15 6 23 8 0 0 128.0 61.335 -136.872 1078.6 779.2 + 13 1 15 6 23 8 0 0 128.0 61.884 -137.563 962.9 783.4 + 14 1 15 6 23 8 0 0 128.0 62.583 -138.220 833.6 787.9 + 15 1 15 6 23 8 0 0 128.0 62.841 -139.256 859.1 791.0 + 16 1 15 6 23 8 0 0 128.0 63.250 -140.436 665.7 819.0 + 9 1 15 6 23 9 0 0 129.0 59.676 -136.046 1096.6 803.2 + 10 1 15 6 23 9 0 0 129.0 60.257 -136.689 1096.8 793.0 + 11 1 15 6 23 9 0 0 129.0 60.740 -136.805 1195.1 776.8 + 12 1 15 6 23 9 0 0 129.0 61.284 -136.716 1099.0 777.8 + 13 1 15 6 23 9 0 0 129.0 61.826 -137.402 986.7 782.0 + 14 1 15 6 23 9 0 0 129.0 62.514 -138.047 860.2 784.3 + 15 1 15 6 23 9 0 0 129.0 62.773 -139.084 885.2 787.2 + 16 1 15 6 23 9 0 0 129.0 63.186 -140.241 690.6 815.1 + 17 1 15 6 23 9 0 0 129.0 63.530 -141.829 520.1 840.9 + 9 1 15 6 23 10 0 0 130.0 59.675 -135.907 1108.9 801.6 + 10 1 15 6 23 10 0 0 130.0 60.243 -136.549 1112.2 791.4 + 11 1 15 6 23 10 0 0 130.0 60.709 -136.674 1213.1 775.2 + 12 1 15 6 23 10 0 0 130.0 61.240 -136.563 1119.7 776.3 + 13 1 15 6 23 10 0 0 130.0 61.775 -137.242 1011.1 780.3 + 14 1 15 6 23 10 0 0 130.0 62.451 -137.873 888.5 782.2 + 15 1 15 6 23 10 0 0 130.0 62.711 -138.913 912.1 783.5 + 16 1 15 6 23 10 0 0 130.0 63.127 -140.048 716.4 811.2 + 17 1 15 6 23 10 0 0 130.0 63.472 -141.624 540.5 837.4 + 9 1 15 6 23 11 0 0 131.0 59.678 -135.782 1121.3 800.0 + 10 1 15 6 23 11 0 0 131.0 60.234 -136.421 1127.9 789.7 + 11 1 15 6 23 11 0 0 131.0 60.685 -136.549 1231.4 773.6 + 12 1 15 6 23 11 0 0 131.0 61.201 -136.412 1141.0 774.6 + 13 1 15 6 23 11 0 0 131.0 61.731 -137.082 1035.9 778.5 + 14 1 15 6 23 11 0 0 131.0 62.396 -137.695 918.1 780.6 + 15 1 15 6 23 11 0 0 131.0 62.657 -138.740 939.7 780.0 + 16 1 15 6 23 11 0 0 131.0 63.074 -139.858 742.9 807.4 + 17 1 15 6 23 11 0 0 131.0 63.416 -141.424 561.5 834.0 + 9 1 15 6 23 12 0 0 132.0 59.685 -135.671 1133.7 798.4 + 10 1 15 6 23 12 0 0 132.0 60.229 -136.303 1144.0 788.0 + 11 1 15 6 23 12 0 0 132.0 60.666 -136.429 1249.9 771.9 + 12 1 15 6 23 12 0 0 132.0 61.169 -136.263 1162.8 772.7 + 13 1 15 6 23 12 0 0 132.0 61.693 -136.922 1061.3 776.5 + 14 1 15 6 23 12 0 0 132.0 62.349 -137.513 948.8 778.7 + 15 1 15 6 23 12 0 0 132.0 62.609 -138.564 968.1 776.7 + 16 1 15 6 23 12 0 0 132.0 63.026 -139.669 770.2 803.8 + 17 1 15 6 23 12 0 0 132.0 63.364 -141.229 583.4 830.5 + 9 1 15 6 23 13 0 0 133.0 59.693 -135.566 1144.8 796.7 + 10 1 15 6 23 13 0 0 133.0 60.227 -136.190 1158.5 786.2 + 11 1 15 6 23 13 0 0 133.0 60.650 -136.313 1266.8 770.2 + 12 1 15 6 23 13 0 0 133.0 61.140 -136.116 1183.4 770.7 + 13 1 15 6 23 13 0 0 133.0 61.658 -136.762 1085.5 774.2 + 14 1 15 6 23 13 0 0 133.0 62.306 -137.330 978.5 776.1 + 15 1 15 6 23 13 0 0 133.0 62.566 -138.388 996.2 773.1 + 16 1 15 6 23 13 0 0 133.0 62.984 -139.480 797.8 800.1 + 17 1 15 6 23 13 0 0 133.0 63.317 -141.036 606.3 826.9 + 9 1 15 6 23 14 0 0 134.0 59.700 -135.462 1153.9 795.2 + 10 1 15 6 23 14 0 0 134.0 60.223 -136.079 1170.8 784.7 + 11 1 15 6 23 14 0 0 134.0 60.634 -136.202 1281.4 768.7 + 12 1 15 6 23 14 0 0 134.0 61.111 -135.972 1201.7 768.9 + 13 1 15 6 23 14 0 0 134.0 61.625 -136.606 1107.7 772.1 + 14 1 15 6 23 14 0 0 134.0 62.264 -137.150 1006.1 773.6 + 15 1 15 6 23 14 0 0 134.0 62.526 -138.214 1023.1 769.8 + 16 1 15 6 23 14 0 0 134.0 62.946 -139.289 825.2 796.5 + 17 1 15 6 23 14 0 0 134.0 63.277 -140.841 630.5 823.4 + 9 1 15 6 23 15 0 0 135.0 59.706 -135.358 1160.5 794.0 + 10 1 15 6 23 15 0 0 135.0 60.218 -135.970 1180.1 783.5 + 11 1 15 6 23 15 0 0 135.0 60.618 -136.096 1293.2 767.5 + 12 1 15 6 23 15 0 0 135.0 61.082 -135.834 1217.4 767.4 + 13 1 15 6 23 15 0 0 135.0 61.592 -136.454 1127.4 770.3 + 14 1 15 6 23 15 0 0 135.0 62.225 -136.974 1031.3 771.4 + 15 1 15 6 23 15 0 0 135.0 62.488 -138.044 1048.7 767.0 + 16 1 15 6 23 15 0 0 135.0 62.912 -139.099 852.2 793.0 + 17 1 15 6 23 15 0 0 135.0 63.245 -140.644 655.7 819.9 + 9 1 15 6 23 16 0 0 136.0 59.710 -135.256 1164.5 793.2 + 10 1 15 6 23 16 0 0 136.0 60.213 -135.864 1186.6 782.6 + 11 1 15 6 23 16 0 0 136.0 60.601 -135.995 1302.1 766.6 + 12 1 15 6 23 16 0 0 136.0 61.055 -135.701 1230.4 766.2 + 13 1 15 6 23 16 0 0 136.0 61.560 -136.306 1144.7 768.6 + 14 1 15 6 23 16 0 0 136.0 62.186 -136.803 1054.2 769.3 + 15 1 15 6 23 16 0 0 136.0 62.453 -137.877 1073.2 765.2 + 16 1 15 6 23 16 0 0 136.0 62.882 -138.909 878.6 789.7 + 17 1 15 6 23 16 0 0 136.0 63.219 -140.445 681.6 816.5 + 10 1 15 6 23 17 0 0 137.0 60.207 -135.760 1190.0 782.0 + 11 1 15 6 23 17 0 0 137.0 60.585 -135.899 1308.0 765.9 + 12 1 15 6 23 17 0 0 137.0 61.027 -135.574 1240.6 765.2 + 13 1 15 6 23 17 0 0 137.0 61.530 -136.163 1159.6 767.3 + 14 1 15 6 23 17 0 0 137.0 62.150 -136.636 1074.7 767.5 + 15 1 15 6 23 17 0 0 137.0 62.420 -137.715 1096.0 763.4 + 16 1 15 6 23 17 0 0 137.0 62.855 -138.720 904.2 786.6 + 17 1 15 6 23 17 0 0 137.0 63.199 -140.245 708.1 813.1 + 18 1 15 6 23 17 0 0 137.0 63.575 -141.829 523.9 840.9 + 10 1 15 6 23 18 0 0 138.0 60.201 -135.659 1190.4 781.7 + 11 1 15 6 23 18 0 0 138.0 60.569 -135.809 1310.9 765.6 + 12 1 15 6 23 18 0 0 138.0 61.001 -135.453 1247.9 764.5 + 13 1 15 6 23 18 0 0 138.0 61.500 -136.027 1171.9 766.1 + 14 1 15 6 23 18 0 0 138.0 62.114 -136.475 1093.0 765.8 + 15 1 15 6 23 18 0 0 138.0 62.389 -137.557 1117.2 761.8 + 16 1 15 6 23 18 0 0 138.0 62.830 -138.533 928.8 783.7 + 17 1 15 6 23 18 0 0 138.0 63.184 -140.044 735.1 809.8 + 18 1 15 6 23 18 0 0 138.0 63.566 -141.617 549.7 837.7 + 10 1 15 6 23 19 0 0 139.0 60.194 -135.562 1189.7 781.8 + 11 1 15 6 23 19 0 0 139.0 60.553 -135.723 1313.1 765.6 + 12 1 15 6 23 19 0 0 139.0 60.974 -135.337 1254.9 764.1 + 13 1 15 6 23 19 0 0 139.0 61.470 -135.894 1184.5 765.2 + 14 1 15 6 23 19 0 0 139.0 62.079 -136.319 1112.0 764.4 + 15 1 15 6 23 19 0 0 139.0 62.358 -137.403 1139.4 760.1 + 16 1 15 6 23 19 0 0 139.0 62.806 -138.347 954.4 781.0 + 17 1 15 6 23 19 0 0 139.0 63.171 -139.841 763.1 806.8 + 18 1 15 6 23 19 0 0 139.0 63.559 -141.401 576.9 834.7 + 10 1 15 6 23 20 0 0 140.0 60.185 -135.469 1188.5 782.0 + 11 1 15 6 23 20 0 0 140.0 60.536 -135.638 1315.7 765.6 + 12 1 15 6 23 20 0 0 140.0 60.946 -135.222 1263.6 763.7 + 13 1 15 6 23 20 0 0 140.0 61.438 -135.764 1199.5 764.1 + 14 1 15 6 23 20 0 0 140.0 62.040 -136.164 1134.5 762.6 + 15 1 15 6 23 20 0 0 140.0 62.325 -137.249 1165.4 758.0 + 16 1 15 6 23 20 0 0 140.0 62.779 -138.162 983.1 778.0 + 17 1 15 6 23 20 0 0 140.0 63.155 -139.635 792.5 803.8 + 18 1 15 6 23 20 0 0 140.0 63.548 -141.181 604.8 831.6 + 10 1 15 6 23 21 0 0 141.0 60.175 -135.380 1187.3 782.2 + 11 1 15 6 23 21 0 0 141.0 60.517 -135.556 1319.1 765.5 + 12 1 15 6 23 21 0 0 141.0 60.915 -135.109 1273.9 763.0 + 13 1 15 6 23 21 0 0 141.0 61.403 -135.637 1217.1 762.8 + 14 1 15 6 23 21 0 0 141.0 61.998 -136.012 1160.7 760.6 + 15 1 15 6 23 21 0 0 141.0 62.290 -137.096 1195.4 755.6 + 16 1 15 6 23 21 0 0 141.0 62.750 -137.977 1015.1 774.6 + 17 1 15 6 23 21 0 0 141.0 63.137 -139.428 823.6 800.4 + 18 1 15 6 23 21 0 0 141.0 63.535 -140.956 633.4 828.5 + 10 1 15 6 23 22 0 0 142.0 60.164 -135.296 1186.0 782.4 + 11 1 15 6 23 22 0 0 142.0 60.498 -135.475 1323.2 765.4 + 12 1 15 6 23 22 0 0 142.0 60.883 -134.998 1286.0 762.3 + 13 1 15 6 23 22 0 0 142.0 61.366 -135.512 1237.2 761.3 + 14 1 15 6 23 22 0 0 142.0 61.954 -135.863 1190.6 758.3 + 15 1 15 6 23 22 0 0 142.0 62.252 -136.944 1229.5 752.8 + 16 1 15 6 23 22 0 0 142.0 62.719 -137.792 1051.2 770.8 + 17 1 15 6 23 22 0 0 142.0 63.116 -139.219 857.0 796.9 + 18 1 15 6 23 22 0 0 142.0 63.520 -140.726 662.7 825.2 + 10 1 15 6 23 23 0 0 143.0 60.152 -135.216 1184.8 782.7 + 11 1 15 6 23 23 0 0 143.0 60.477 -135.396 1328.1 765.2 + 12 1 15 6 23 23 0 0 143.0 60.848 -134.889 1299.5 761.1 + 13 1 15 6 23 23 0 0 143.0 61.326 -135.390 1259.9 759.7 + 14 1 15 6 23 23 0 0 143.0 61.906 -135.716 1224.4 755.6 + 15 1 15 6 23 23 0 0 143.0 62.211 -136.793 1267.8 749.7 + 16 1 15 6 23 23 0 0 143.0 62.685 -137.609 1091.7 766.6 + 17 1 15 6 23 23 0 0 143.0 63.093 -139.009 893.1 793.0 + 18 1 15 6 23 23 0 0 143.0 63.503 -140.493 693.1 821.7 + 10 1 15 6 24 0 0 0 144.0 60.138 -135.141 1183.4 783.1 + 11 1 15 6 24 0 0 0 144.0 60.456 -135.319 1333.6 765.0 + 12 1 15 6 24 0 0 0 144.0 60.812 -134.781 1314.4 759.8 + 13 1 15 6 24 0 0 0 144.0 61.284 -135.270 1285.2 757.9 + 14 1 15 6 24 0 0 0 144.0 61.855 -135.571 1261.9 752.8 + 15 1 15 6 24 0 0 0 144.0 62.168 -136.643 1310.7 746.4 + 16 1 15 6 24 0 0 0 144.0 62.647 -137.427 1137.2 761.7 + 17 1 15 6 24 0 0 0 144.0 63.067 -138.799 932.3 788.9 + 18 1 15 6 24 0 0 0 144.0 63.484 -140.256 725.1 818.1 + 11 1 15 6 24 1 0 0 145.0 60.428 -135.250 1337.0 764.6 + 12 1 15 6 24 1 0 0 145.0 60.770 -134.681 1326.7 758.5 + 13 1 15 6 24 1 0 0 145.0 61.235 -135.159 1308.0 756.1 + 14 1 15 6 24 1 0 0 145.0 61.796 -135.435 1297.1 750.0 + 15 1 15 6 24 1 0 0 145.0 62.117 -136.504 1351.2 743.0 + 16 1 15 6 24 1 0 0 145.0 62.602 -137.256 1180.9 756.2 + 17 1 15 6 24 1 0 0 145.0 63.034 -138.600 970.8 784.4 + 18 1 15 6 24 1 0 0 145.0 63.461 -140.029 757.3 814.0 + 19 1 15 6 24 1 0 0 145.0 63.572 -141.803 521.1 841.9 + 11 1 15 6 24 2 0 0 146.0 60.389 -135.197 1335.9 764.8 + 12 1 15 6 24 2 0 0 146.0 60.717 -134.597 1332.9 758.0 + 13 1 15 6 24 2 0 0 146.0 61.175 -135.065 1323.2 755.2 + 14 1 15 6 24 2 0 0 146.0 61.725 -135.319 1323.0 748.3 + 15 1 15 6 24 2 0 0 146.0 62.053 -136.388 1382.4 740.6 + 16 1 15 6 24 2 0 0 146.0 62.543 -137.107 1216.8 751.3 + 17 1 15 6 24 2 0 0 146.0 62.991 -138.423 1004.7 780.1 + 18 1 15 6 24 2 0 0 146.0 63.431 -139.826 788.0 810.1 + 19 1 15 6 24 2 0 0 146.0 63.550 -141.591 542.6 838.9 + 11 1 15 6 24 3 0 0 147.0 60.341 -135.162 1330.3 765.7 + 12 1 15 6 24 3 0 0 147.0 60.653 -134.529 1332.7 758.2 + 13 1 15 6 24 3 0 0 147.0 61.104 -134.988 1330.6 755.1 + 14 1 15 6 24 3 0 0 147.0 61.643 -135.222 1339.4 747.6 + 15 1 15 6 24 3 0 0 147.0 61.979 -136.297 1403.9 739.4 + 16 1 15 6 24 3 0 0 147.0 62.471 -136.980 1244.0 748.0 + 17 1 15 6 24 3 0 0 147.0 62.936 -138.270 1032.7 776.2 + 18 1 15 6 24 3 0 0 147.0 63.392 -139.647 816.0 806.3 + 19 1 15 6 24 3 0 0 147.0 63.523 -141.405 564.1 835.8 + 11 1 15 6 24 4 0 0 148.0 60.282 -135.143 1320.1 767.1 + 12 1 15 6 24 4 0 0 148.0 60.580 -134.477 1326.5 759.2 + 13 1 15 6 24 4 0 0 148.0 61.023 -134.930 1330.4 755.7 + 14 1 15 6 24 4 0 0 148.0 61.551 -135.145 1346.3 748.0 + 15 1 15 6 24 4 0 0 148.0 61.894 -136.230 1415.3 739.2 + 16 1 15 6 24 4 0 0 148.0 62.387 -136.878 1262.1 747.3 + 17 1 15 6 24 4 0 0 148.0 62.871 -138.140 1054.1 772.7 + 18 1 15 6 24 4 0 0 148.0 63.345 -139.492 840.7 802.7 + 19 1 15 6 24 4 0 0 148.0 63.491 -141.243 585.2 832.6 + 11 1 15 6 24 5 0 0 149.0 60.214 -135.141 1305.7 769.1 + 12 1 15 6 24 5 0 0 149.0 60.497 -134.441 1314.5 760.8 + 13 1 15 6 24 5 0 0 149.0 60.933 -134.890 1323.0 757.2 + 14 1 15 6 24 5 0 0 149.0 61.450 -135.088 1344.2 749.3 + 15 1 15 6 24 5 0 0 149.0 61.800 -136.189 1417.0 740.1 + 16 1 15 6 24 5 0 0 149.0 62.292 -136.801 1270.0 747.6 + 17 1 15 6 24 5 0 0 149.0 62.794 -138.032 1067.8 769.8 + 18 1 15 6 24 5 0 0 149.0 63.289 -139.360 861.2 799.3 + 19 1 15 6 24 5 0 0 149.0 63.454 -141.104 605.4 829.5 + 11 1 15 6 24 6 0 0 150.0 60.137 -135.157 1287.4 771.6 + 12 1 15 6 24 6 0 0 150.0 60.404 -134.421 1297.3 763.2 + 13 1 15 6 24 6 0 0 150.0 60.834 -134.867 1308.9 759.4 + 14 1 15 6 24 6 0 0 150.0 61.340 -135.050 1333.5 751.4 + 15 1 15 6 24 6 0 0 150.0 61.697 -136.172 1409.6 742.0 + 16 1 15 6 24 6 0 0 150.0 62.187 -136.748 1268.1 748.9 + 17 1 15 6 24 6 0 0 150.0 62.705 -137.947 1073.3 767.3 + 18 1 15 6 24 6 0 0 150.0 63.224 -139.252 876.8 796.2 + 19 1 15 6 24 6 0 0 150.0 63.410 -140.989 623.9 826.5 + 11 1 15 6 24 7 0 0 151.0 60.066 -135.200 1269.6 773.9 + 12 1 15 6 24 7 0 0 151.0 60.317 -134.424 1279.9 765.5 + 13 1 15 6 24 7 0 0 151.0 60.741 -134.867 1293.4 761.6 + 14 1 15 6 24 7 0 0 151.0 61.235 -135.033 1320.0 753.6 + 15 1 15 6 24 7 0 0 151.0 61.599 -136.179 1398.7 743.9 + 16 1 15 6 24 7 0 0 151.0 62.085 -136.717 1261.7 750.5 + 17 1 15 6 24 7 0 0 151.0 62.614 -137.877 1073.8 765.3 + 18 1 15 6 24 7 0 0 151.0 63.155 -139.157 888.5 793.5 + 19 1 15 6 24 7 0 0 151.0 63.363 -140.886 639.9 823.7 + 11 1 15 6 24 8 0 0 152.0 60.018 -135.286 1258.0 775.5 + 12 1 15 6 24 8 0 0 152.0 60.252 -134.463 1268.4 767.4 + 13 1 15 6 24 8 0 0 152.0 60.669 -134.899 1283.4 763.3 + 14 1 15 6 24 8 0 0 152.0 61.150 -135.042 1311.3 755.2 + 15 1 15 6 24 8 0 0 152.0 61.518 -136.209 1392.1 745.3 + 16 1 15 6 24 8 0 0 152.0 61.996 -136.704 1258.4 751.6 + 17 1 15 6 24 8 0 0 152.0 62.530 -137.819 1074.8 763.3 + 18 1 15 6 24 8 0 0 152.0 63.089 -139.067 898.3 791.1 + 19 1 15 6 24 8 0 0 152.0 63.316 -140.783 653.1 821.3 + 12 1 15 6 24 9 0 0 153.0 60.209 -134.539 1262.6 768.6 + 13 1 15 6 24 9 0 0 153.0 60.617 -134.966 1278.5 764.5 + 14 1 15 6 24 9 0 0 153.0 61.085 -135.079 1306.9 756.2 + 15 1 15 6 24 9 0 0 153.0 61.454 -136.264 1389.2 746.2 + 16 1 15 6 24 9 0 0 153.0 61.923 -136.712 1257.7 752.4 + 17 1 15 6 24 9 0 0 153.0 62.455 -137.776 1077.4 762.9 + 18 1 15 6 24 9 0 0 153.0 63.026 -138.982 906.5 788.9 + 19 1 15 6 24 9 0 0 153.0 63.270 -140.680 663.6 819.1 + 20 1 15 6 24 9 0 0 153.0 63.555 -141.916 511.2 841.9 + 12 1 15 6 24 10 0 0 154.0 60.188 -134.656 1262.6 769.3 + 13 1 15 6 24 10 0 0 154.0 60.587 -135.069 1278.7 764.9 + 14 1 15 6 24 10 0 0 154.0 61.039 -135.145 1307.1 756.6 + 15 1 15 6 24 10 0 0 154.0 61.407 -136.347 1390.3 746.6 + 16 1 15 6 24 10 0 0 154.0 61.863 -136.742 1259.7 752.8 + 17 1 15 6 24 10 0 0 154.0 62.389 -137.750 1081.6 763.2 + 18 1 15 6 24 10 0 0 154.0 62.967 -138.906 913.5 786.9 + 19 1 15 6 24 10 0 0 154.0 63.225 -140.581 671.7 817.2 + 20 1 15 6 24 10 0 0 154.0 63.519 -141.786 519.4 840.1 + 12 1 15 6 24 11 0 0 155.0 60.189 -134.817 1268.7 769.5 + 13 1 15 6 24 11 0 0 155.0 60.577 -135.211 1284.1 764.6 + 14 1 15 6 24 11 0 0 155.0 61.012 -135.243 1311.8 756.4 + 15 1 15 6 24 11 0 0 155.0 61.377 -136.457 1395.3 746.4 + 16 1 15 6 24 11 0 0 155.0 61.819 -136.797 1264.7 752.7 + 17 1 15 6 24 11 0 0 155.0 62.335 -137.744 1087.3 763.1 + 18 1 15 6 24 11 0 0 155.0 62.914 -138.838 919.8 785.1 + 19 1 15 6 24 11 0 0 155.0 63.181 -140.486 677.6 815.5 + 20 1 15 6 24 11 0 0 155.0 63.482 -141.652 524.9 838.6 + 12 1 15 6 24 12 0 0 156.0 60.212 -135.024 1280.7 768.9 + 13 1 15 6 24 12 0 0 156.0 60.586 -135.393 1294.7 763.6 + 14 1 15 6 24 12 0 0 156.0 61.004 -135.374 1321.2 755.6 + 15 1 15 6 24 12 0 0 156.0 61.363 -136.597 1404.5 745.7 + 16 1 15 6 24 12 0 0 156.0 61.789 -136.876 1272.9 752.2 + 17 1 15 6 24 12 0 0 156.0 62.292 -137.757 1094.7 762.8 + 18 1 15 6 24 12 0 0 156.0 62.866 -138.780 925.6 783.4 + 19 1 15 6 24 12 0 0 156.0 63.139 -140.397 681.6 814.1 + 20 1 15 6 24 12 0 0 156.0 63.445 -141.517 527.9 837.3 + 12 1 15 6 24 13 0 0 157.0 60.251 -135.266 1294.8 767.9 + 13 1 15 6 24 13 0 0 157.0 60.611 -135.605 1307.4 762.8 + 14 1 15 6 24 13 0 0 157.0 61.011 -135.531 1332.1 755.0 + 15 1 15 6 24 13 0 0 157.0 61.365 -136.763 1415.3 745.2 + 16 1 15 6 24 13 0 0 157.0 61.774 -136.978 1281.9 752.0 + 17 1 15 6 24 13 0 0 157.0 62.263 -137.791 1101.9 762.7 + 18 1 15 6 24 13 0 0 157.0 62.829 -138.737 930.2 782.1 + 19 1 15 6 24 13 0 0 157.0 63.106 -140.321 683.8 812.9 + 20 1 15 6 24 13 0 0 157.0 63.416 -141.394 529.0 836.2 + 12 1 15 6 24 14 0 0 158.0 60.301 -135.531 1305.9 767.0 + 13 1 15 6 24 14 0 0 158.0 60.647 -135.840 1316.9 762.1 + 14 1 15 6 24 14 0 0 158.0 61.032 -135.709 1339.5 754.6 + 15 1 15 6 24 14 0 0 158.0 61.381 -136.949 1422.6 744.8 + 16 1 15 6 24 14 0 0 158.0 61.775 -137.099 1287.3 751.8 + 17 1 15 6 24 14 0 0 158.0 62.251 -137.843 1105.4 762.6 + 18 1 15 6 24 14 0 0 158.0 62.809 -138.711 932.1 781.5 + 19 1 15 6 24 14 0 0 158.0 63.091 -140.263 684.3 812.3 + 20 1 15 6 24 14 0 0 158.0 63.405 -141.291 529.0 835.5 + 12 1 15 6 24 15 0 0 159.0 60.362 -135.818 1314.8 766.2 + 13 1 15 6 24 15 0 0 159.0 60.696 -136.095 1324.0 761.5 + 14 1 15 6 24 15 0 0 159.0 61.066 -135.908 1344.2 754.2 + 15 1 15 6 24 15 0 0 159.0 61.411 -137.154 1427.5 744.4 + 16 1 15 6 24 15 0 0 159.0 61.791 -137.239 1289.8 751.7 + 17 1 15 6 24 15 0 0 159.0 62.254 -137.912 1105.7 762.6 + 18 1 15 6 24 15 0 0 159.0 62.805 -138.699 931.2 781.4 + 19 1 15 6 24 15 0 0 159.0 63.094 -140.220 683.0 812.2 + 20 1 15 6 24 15 0 0 159.0 63.412 -141.206 527.7 835.4 + 12 1 15 6 24 16 0 0 160.0 60.433 -136.125 1321.6 765.5 + 13 1 15 6 24 16 0 0 160.0 60.757 -136.370 1329.0 761.0 + 14 1 15 6 24 16 0 0 160.0 61.112 -136.124 1346.1 754.0 + 15 1 15 6 24 16 0 0 160.0 61.455 -137.375 1429.9 744.1 + 16 1 15 6 24 16 0 0 160.0 61.822 -137.394 1289.4 751.6 + 17 1 15 6 24 16 0 0 160.0 62.273 -137.994 1102.8 762.7 + 18 1 15 6 24 16 0 0 160.0 62.818 -138.699 927.7 781.9 + 19 1 15 6 24 16 0 0 160.0 63.114 -140.190 680.0 812.6 + 20 1 15 6 24 16 0 0 160.0 63.435 -141.136 525.0 835.8 + 13 1 15 6 24 17 0 0 161.0 60.829 -136.663 1331.8 760.5 + 14 1 15 6 24 17 0 0 161.0 61.170 -136.357 1345.4 753.8 + 15 1 15 6 24 17 0 0 161.0 61.513 -137.610 1429.8 743.6 + 16 1 15 6 24 17 0 0 161.0 61.868 -137.561 1286.1 751.5 + 17 1 15 6 24 17 0 0 161.0 62.308 -138.087 1096.8 762.8 + 18 1 15 6 24 17 0 0 161.0 62.847 -138.710 921.5 783.0 + 19 1 15 6 24 17 0 0 161.0 63.151 -140.170 675.0 813.6 + 20 1 15 6 24 17 0 0 161.0 63.476 -141.080 520.9 836.7 + 21 1 15 6 24 17 0 0 161.0 63.633 -141.971 497.1 843.4 + 13 1 15 6 24 18 0 0 162.0 60.914 -136.971 1332.5 760.0 + 14 1 15 6 24 18 0 0 162.0 61.242 -136.605 1342.1 753.7 + 15 1 15 6 24 18 0 0 162.0 61.582 -137.854 1427.2 743.1 + 16 1 15 6 24 18 0 0 162.0 61.927 -137.737 1279.9 751.4 + 17 1 15 6 24 18 0 0 162.0 62.358 -138.188 1087.5 762.9 + 18 1 15 6 24 18 0 0 162.0 62.893 -138.728 912.6 784.7 + 19 1 15 6 24 18 0 0 162.0 63.206 -140.158 668.2 815.2 + 20 1 15 6 24 18 0 0 162.0 63.534 -141.034 515.4 838.1 + 21 1 15 6 24 18 0 0 162.0 63.693 -141.915 493.1 844.6 + 13 1 15 6 24 19 0 0 163.0 61.012 -137.281 1334.9 758.9 + 14 1 15 6 24 19 0 0 163.0 61.328 -136.854 1340.0 753.1 + 15 1 15 6 24 19 0 0 163.0 61.664 -138.097 1426.5 741.9 + 16 1 15 6 24 19 0 0 163.0 62.000 -137.912 1275.1 750.6 + 17 1 15 6 24 19 0 0 163.0 62.420 -138.289 1079.6 762.6 + 18 1 15 6 24 19 0 0 163.0 62.951 -138.746 905.4 786.3 + 19 1 15 6 24 19 0 0 163.0 63.271 -140.144 663.3 816.8 + 20 1 15 6 24 19 0 0 163.0 63.600 -140.987 511.7 839.7 + 21 1 15 6 24 19 0 0 163.0 63.760 -141.858 490.8 846.0 + 13 1 15 6 24 20 0 0 164.0 61.125 -137.581 1343.6 756.9 + 14 1 15 6 24 20 0 0 164.0 61.428 -137.093 1344.3 751.6 + 15 1 15 6 24 20 0 0 164.0 61.759 -138.329 1432.7 740.0 + 16 1 15 6 24 20 0 0 164.0 62.084 -138.077 1277.0 749.1 + 17 1 15 6 24 20 0 0 164.0 62.494 -138.381 1078.4 761.4 + 18 1 15 6 24 20 0 0 164.0 63.016 -138.758 904.3 787.5 + 19 1 15 6 24 20 0 0 164.0 63.338 -140.121 664.0 818.0 + 20 1 15 6 24 20 0 0 164.0 63.664 -140.927 512.7 840.7 + 21 1 15 6 24 20 0 0 164.0 63.822 -141.785 492.9 846.9 + 13 1 15 6 24 21 0 0 165.0 61.249 -137.866 1358.1 753.8 + 14 1 15 6 24 21 0 0 165.0 61.544 -137.320 1354.8 749.3 + 15 1 15 6 24 21 0 0 165.0 61.865 -138.550 1445.5 737.3 + 16 1 15 6 24 21 0 0 165.0 62.181 -138.231 1285.5 746.8 + 17 1 15 6 24 21 0 0 165.0 62.578 -138.466 1085.1 762.0 + 18 1 15 6 24 21 0 0 165.0 63.090 -138.763 909.0 788.4 + 19 1 15 6 24 21 0 0 165.0 63.407 -140.088 670.0 818.6 + 20 1 15 6 24 21 0 0 165.0 63.726 -140.856 518.1 841.3 + 21 1 15 6 24 21 0 0 165.0 63.880 -141.698 499.1 847.3 + 13 1 15 6 24 22 0 0 166.0 61.383 -138.137 1378.8 750.1 + 14 1 15 6 24 22 0 0 166.0 61.672 -137.533 1371.6 746.1 + 15 1 15 6 24 22 0 0 166.0 61.982 -138.762 1465.0 733.7 + 16 1 15 6 24 22 0 0 166.0 62.289 -138.376 1300.6 743.8 + 17 1 15 6 24 22 0 0 166.0 62.672 -138.543 1098.6 762.4 + 18 1 15 6 24 22 0 0 166.0 63.169 -138.761 919.2 788.8 + 19 1 15 6 24 22 0 0 166.0 63.477 -140.047 681.0 818.8 + 20 1 15 6 24 22 0 0 166.0 63.786 -140.774 527.7 841.4 + 21 1 15 6 24 22 0 0 166.0 63.934 -141.598 509.1 847.2 + 13 1 15 6 24 23 0 0 167.0 61.527 -138.393 1405.8 745.6 + 14 1 15 6 24 23 0 0 167.0 61.813 -137.733 1394.8 742.0 + 15 1 15 6 24 23 0 0 167.0 62.109 -138.964 1491.3 729.4 + 16 1 15 6 24 23 0 0 167.0 62.407 -138.510 1322.4 739.9 + 17 1 15 6 24 23 0 0 167.0 62.776 -138.613 1118.7 762.3 + 18 1 15 6 24 23 0 0 167.0 63.255 -138.753 934.5 788.9 + 19 1 15 6 24 23 0 0 167.0 63.550 -139.998 696.9 818.6 + 20 1 15 6 24 23 0 0 167.0 63.845 -140.681 541.3 841.0 + 21 1 15 6 24 23 0 0 167.0 63.984 -141.487 522.8 846.6 + 13 1 15 6 25 0 0 0 168.0 61.679 -138.637 1439.2 740.4 + 14 1 15 6 25 0 0 0 168.0 61.964 -137.918 1424.5 737.1 + 15 1 15 6 25 0 0 0 168.0 62.247 -139.160 1524.8 724.3 + 16 1 15 6 25 0 0 0 168.0 62.537 -138.637 1352.0 736.4 + 17 1 15 6 25 0 0 0 168.0 62.887 -138.675 1144.9 761.9 + 18 1 15 6 25 0 0 0 168.0 63.347 -138.738 954.8 788.6 + 19 1 15 6 25 0 0 0 168.0 63.623 -139.941 717.2 818.0 + 20 1 15 6 25 0 0 0 168.0 63.902 -140.579 558.7 840.3 + 21 1 15 6 25 0 0 0 168.0 64.032 -141.364 540.1 845.7 + 14 1 15 6 25 1 0 0 169.0 62.113 -138.081 1458.9 731.9 + 15 1 15 6 25 1 0 0 169.0 62.382 -139.341 1564.0 718.7 + 16 1 15 6 25 1 0 0 169.0 62.663 -138.746 1388.5 735.5 + 17 1 15 6 25 1 0 0 169.0 62.997 -138.722 1175.4 761.0 + 18 1 15 6 25 1 0 0 169.0 63.438 -138.709 978.7 787.9 + 19 1 15 6 25 1 0 0 169.0 63.696 -139.874 741.1 816.8 + 20 1 15 6 25 1 0 0 169.0 63.957 -140.468 579.5 838.8 + 21 1 15 6 25 1 0 0 169.0 64.077 -141.236 560.7 844.0 + 22 1 15 6 25 1 0 0 169.0 63.637 -141.965 526.6 839.4 + 14 1 15 6 25 2 0 0 170.0 62.245 -138.218 1494.3 726.7 + 15 1 15 6 25 2 0 0 170.0 62.499 -139.502 1605.3 713.2 + 16 1 15 6 25 2 0 0 170.0 62.774 -138.834 1426.1 734.1 + 17 1 15 6 25 2 0 0 170.0 63.096 -138.747 1207.7 759.6 + 18 1 15 6 25 2 0 0 170.0 63.522 -138.663 1004.9 786.8 + 19 1 15 6 25 2 0 0 170.0 63.764 -139.796 768.1 815.1 + 20 1 15 6 25 2 0 0 170.0 64.012 -140.351 604.0 836.9 + 21 1 15 6 25 2 0 0 170.0 64.120 -141.105 585.1 841.9 + 22 1 15 6 25 2 0 0 170.0 63.682 -141.887 556.5 836.9 + 14 1 15 6 25 3 0 0 171.0 62.361 -138.332 1531.8 721.6 + 15 1 15 6 25 3 0 0 171.0 62.598 -139.646 1651.9 710.7 + 16 1 15 6 25 3 0 0 171.0 62.870 -138.903 1465.5 732.1 + 17 1 15 6 25 3 0 0 171.0 63.184 -138.755 1242.1 757.8 + 18 1 15 6 25 3 0 0 171.0 63.599 -138.602 1033.6 785.2 + 19 1 15 6 25 3 0 0 171.0 63.828 -139.707 798.3 813.0 + 20 1 15 6 25 3 0 0 171.0 64.064 -140.228 632.1 834.6 + 21 1 15 6 25 3 0 0 171.0 64.162 -140.973 613.2 839.4 + 22 1 15 6 25 3 0 0 171.0 63.724 -141.806 590.3 834.0 + 14 1 15 6 25 4 0 0 172.0 62.458 -138.427 1571.6 716.6 + 15 1 15 6 25 4 0 0 172.0 62.678 -139.773 1700.9 707.8 + 16 1 15 6 25 4 0 0 172.0 62.951 -138.956 1507.1 729.7 + 17 1 15 6 25 4 0 0 172.0 63.261 -138.747 1278.9 755.7 + 18 1 15 6 25 4 0 0 172.0 63.670 -138.527 1064.9 783.3 + 19 1 15 6 25 4 0 0 172.0 63.888 -139.610 831.6 810.4 + 20 1 15 6 25 4 0 0 172.0 64.115 -140.102 663.8 831.9 + 21 1 15 6 25 4 0 0 172.0 64.202 -140.840 645.3 836.4 + 22 1 15 6 25 4 0 0 172.0 63.763 -141.724 628.0 830.7 + 14 1 15 6 25 5 0 0 173.0 62.537 -138.508 1614.6 712.7 + 15 1 15 6 25 5 0 0 173.0 62.741 -139.885 1752.5 704.3 + 16 1 15 6 25 5 0 0 173.0 63.017 -138.997 1550.8 726.8 + 17 1 15 6 25 5 0 0 173.0 63.328 -138.727 1318.1 753.2 + 18 1 15 6 25 5 0 0 173.0 63.735 -138.442 1098.6 780.9 + 19 1 15 6 25 5 0 0 173.0 63.944 -139.506 868.1 807.4 + 20 1 15 6 25 5 0 0 173.0 64.164 -139.973 699.3 828.7 + 21 1 15 6 25 5 0 0 173.0 64.240 -140.709 681.3 833.0 + 22 1 15 6 25 5 0 0 173.0 63.799 -141.641 669.8 826.8 + 14 1 15 6 25 6 0 0 174.0 62.597 -138.577 1660.4 709.6 + 15 1 15 6 25 6 0 0 174.0 62.787 -139.986 1807.4 700.2 + 16 1 15 6 25 6 0 0 174.0 63.068 -139.029 1596.9 723.3 + 17 1 15 6 25 6 0 0 174.0 63.384 -138.697 1359.6 750.2 + 18 1 15 6 25 6 0 0 174.0 63.793 -138.348 1134.9 778.2 + 19 1 15 6 25 6 0 0 174.0 63.995 -139.397 907.8 804.0 + 20 1 15 6 25 6 0 0 174.0 64.209 -139.844 738.3 825.2 + 21 1 15 6 25 6 0 0 174.0 64.275 -140.581 721.3 829.1 + 22 1 15 6 25 6 0 0 174.0 63.830 -141.560 715.5 822.5 + 14 1 15 6 25 7 0 0 175.0 62.658 -138.633 1707.6 706.5 + 15 1 15 6 25 7 0 0 175.0 62.833 -140.074 1863.3 696.1 + 16 1 15 6 25 7 0 0 175.0 63.119 -139.047 1644.1 719.9 + 17 1 15 6 25 7 0 0 175.0 63.441 -138.652 1402.5 747.3 + 18 1 15 6 25 7 0 0 175.0 63.854 -138.236 1172.6 775.7 + 19 1 15 6 25 7 0 0 175.0 64.049 -139.268 948.6 801.0 + 20 1 15 6 25 7 0 0 175.0 64.259 -139.692 778.5 822.0 + 21 1 15 6 25 7 0 0 175.0 64.314 -140.432 762.7 825.4 + 22 1 15 6 25 7 0 0 175.0 63.865 -141.460 761.8 818.3 + 14 1 15 6 25 8 0 0 176.0 62.736 -138.671 1755.8 703.6 + 15 1 15 6 25 8 0 0 176.0 62.895 -140.143 1917.8 692.5 + 16 1 15 6 25 8 0 0 176.0 63.187 -139.046 1691.6 716.9 + 17 1 15 6 25 8 0 0 176.0 63.514 -138.581 1445.5 744.6 + 18 1 15 6 25 8 0 0 176.0 63.930 -138.095 1210.5 773.3 + 19 1 15 6 25 8 0 0 176.0 64.116 -139.102 988.4 798.4 + 20 1 15 6 25 8 0 0 176.0 64.321 -139.499 817.4 819.1 + 21 1 15 6 25 8 0 0 176.0 64.366 -140.241 803.0 822.0 + 22 1 15 6 25 8 0 0 176.0 63.911 -141.319 805.7 814.4 + 15 1 15 6 25 9 0 0 177.0 62.973 -140.190 1970.3 689.3 + 16 1 15 6 25 9 0 0 177.0 63.272 -139.020 1739.2 714.2 + 17 1 15 6 25 9 0 0 177.0 63.602 -138.485 1488.9 742.2 + 18 1 15 6 25 9 0 0 177.0 64.020 -137.923 1249.3 771.1 + 19 1 15 6 25 9 0 0 177.0 64.197 -138.900 1027.6 796.0 + 20 1 15 6 25 9 0 0 177.0 64.396 -139.263 855.5 816.6 + 21 1 15 6 25 9 0 0 177.0 64.432 -140.005 842.3 819.0 + 22 1 15 6 25 9 0 0 177.0 63.968 -141.138 847.1 811.0 + 23 1 15 6 25 9 0 0 177.0 63.647 -141.871 538.9 836.6 + 15 1 15 6 25 10 0 0 178.0 63.067 -140.211 2020.6 686.5 + 16 1 15 6 25 10 0 0 178.0 63.375 -138.966 1787.0 711.8 + 17 1 15 6 25 10 0 0 178.0 63.708 -138.359 1533.2 739.9 + 18 1 15 6 25 10 0 0 178.0 64.127 -137.717 1289.4 769.2 + 19 1 15 6 25 10 0 0 178.0 64.292 -138.659 1066.7 793.8 + 20 1 15 6 25 10 0 0 178.0 64.484 -138.984 893.2 814.3 + 21 1 15 6 25 10 0 0 178.0 64.511 -139.723 881.1 816.4 + 22 1 15 6 25 10 0 0 178.0 64.039 -140.914 886.4 808.1 + 23 1 15 6 25 10 0 0 178.0 63.714 -141.658 575.3 833.8 + 15 1 15 6 25 11 0 0 179.0 63.179 -140.204 2068.7 684.1 + 16 1 15 6 25 11 0 0 179.0 63.497 -138.881 1835.2 709.6 + 17 1 15 6 25 11 0 0 179.0 63.831 -138.201 1579.0 737.8 + 18 1 15 6 25 11 0 0 179.0 64.251 -137.478 1331.7 767.4 + 19 1 15 6 25 11 0 0 179.0 64.402 -138.379 1106.5 791.8 + 20 1 15 6 25 11 0 0 179.0 64.588 -138.662 931.2 812.3 + 21 1 15 6 25 11 0 0 179.0 64.606 -139.395 919.5 814.2 + 22 1 15 6 25 11 0 0 179.0 64.124 -140.645 924.2 805.6 + 23 1 15 6 25 11 0 0 179.0 63.793 -141.397 609.7 831.3 + 15 1 15 6 25 12 0 0 180.0 63.308 -140.164 2114.7 682.2 + 16 1 15 6 25 12 0 0 180.0 63.638 -138.761 1884.2 707.7 + 17 1 15 6 25 12 0 0 180.0 63.975 -138.008 1627.0 735.8 + 18 1 15 6 25 12 0 0 180.0 64.393 -137.203 1376.4 765.0 + 19 1 15 6 25 12 0 0 180.0 64.531 -138.060 1148.0 789.9 + 20 1 15 6 25 12 0 0 180.0 64.708 -138.299 970.5 810.4 + 21 1 15 6 25 12 0 0 180.0 64.717 -139.023 958.3 812.2 + 22 1 15 6 25 12 0 0 180.0 64.225 -140.331 961.2 803.5 + 23 1 15 6 25 12 0 0 180.0 63.884 -141.088 642.4 829.4 + 15 1 15 6 25 13 0 0 181.0 63.444 -140.092 2155.9 681.1 + 16 1 15 6 25 13 0 0 181.0 63.787 -138.609 1929.7 706.2 + 17 1 15 6 25 13 0 0 181.0 64.126 -137.785 1672.4 734.2 + 18 1 15 6 25 13 0 0 181.0 64.540 -136.901 1418.5 762.8 + 19 1 15 6 25 13 0 0 181.0 64.664 -137.715 1187.2 788.2 + 20 1 15 6 25 13 0 0 181.0 64.833 -137.912 1007.7 808.8 + 21 1 15 6 25 13 0 0 181.0 64.833 -138.626 994.8 810.6 + 22 1 15 6 25 13 0 0 181.0 64.330 -139.990 996.2 802.0 + 23 1 15 6 25 13 0 0 181.0 63.978 -140.754 672.9 828.0 + 15 1 15 6 25 14 0 0 182.0 63.576 -139.992 2186.9 680.7 + 16 1 15 6 25 14 0 0 182.0 63.932 -138.430 1965.4 705.4 + 17 1 15 6 25 14 0 0 182.0 64.272 -137.539 1708.9 733.2 + 18 1 15 6 25 14 0 0 182.0 64.681 -136.581 1452.4 761.2 + 19 1 15 6 25 14 0 0 182.0 64.791 -137.359 1219.3 786.6 + 20 1 15 6 25 14 0 0 182.0 64.951 -137.520 1038.3 807.4 + 21 1 15 6 25 14 0 0 182.0 64.941 -138.227 1024.8 809.2 + 22 1 15 6 25 14 0 0 182.0 64.429 -139.645 1025.3 800.9 + 23 1 15 6 25 14 0 0 182.0 64.064 -140.418 699.3 826.8 + 15 1 15 6 25 15 0 0 183.0 63.703 -139.861 2208.6 681.1 + 16 1 15 6 25 15 0 0 183.0 64.073 -138.224 1991.7 705.3 + 17 1 15 6 25 15 0 0 183.0 64.413 -137.270 1736.3 732.4 + 18 1 15 6 25 15 0 0 183.0 64.815 -136.246 1478.3 760.2 + 19 1 15 6 25 15 0 0 183.0 64.910 -136.992 1243.9 785.3 + 20 1 15 6 25 15 0 0 183.0 65.061 -137.124 1061.8 805.7 + 21 1 15 6 25 15 0 0 183.0 65.043 -137.825 1048.2 808.0 + 22 1 15 6 25 15 0 0 183.0 64.519 -139.294 1048.1 800.2 + 23 1 15 6 25 15 0 0 183.0 64.141 -140.080 721.1 826.0 + 15 1 15 6 25 16 0 0 184.0 63.826 -139.701 2221.2 682.0 + 16 1 15 6 25 16 0 0 184.0 64.211 -137.992 2008.8 705.9 + 17 1 15 6 25 16 0 0 184.0 64.549 -136.979 1754.6 732.3 + 18 1 15 6 25 16 0 0 184.0 64.946 -135.897 1496.3 759.8 + 19 1 15 6 25 16 0 0 184.0 65.024 -136.617 1260.8 784.5 + 20 1 15 6 25 16 0 0 184.0 65.165 -136.731 1078.3 804.7 + 21 1 15 6 25 16 0 0 184.0 65.139 -137.425 1064.8 807.0 + 22 1 15 6 25 16 0 0 184.0 64.602 -138.939 1064.2 799.9 + 23 1 15 6 25 16 0 0 184.0 64.209 -139.741 737.6 825.5 + 16 1 15 6 25 17 0 0 185.0 64.347 -137.735 2016.4 707.1 + 17 1 15 6 25 17 0 0 185.0 64.682 -136.668 1764.1 732.9 + 18 1 15 6 25 17 0 0 185.0 65.074 -135.537 1506.8 760.2 + 19 1 15 6 25 17 0 0 185.0 65.133 -136.237 1270.5 784.5 + 20 1 15 6 25 17 0 0 185.0 65.265 -136.340 1088.1 804.5 + 21 1 15 6 25 17 0 0 185.0 65.229 -137.029 1074.6 806.4 + 22 1 15 6 25 17 0 0 185.0 64.678 -138.577 1073.6 799.9 + 23 1 15 6 25 17 0 0 185.0 64.267 -139.400 748.3 825.3 + 24 1 15 6 25 17 0 0 185.0 63.636 -141.769 514.1 839.2 + 16 1 15 6 25 18 0 0 186.0 64.480 -137.452 2014.6 709.0 + 17 1 15 6 25 18 0 0 186.0 64.812 -136.339 1765.1 734.1 + 18 1 15 6 25 18 0 0 186.0 65.201 -135.171 1510.6 761.5 + 19 1 15 6 25 18 0 0 186.0 65.240 -135.857 1273.7 785.2 + 20 1 15 6 25 18 0 0 186.0 65.362 -135.953 1091.8 805.1 + 21 1 15 6 25 18 0 0 186.0 65.315 -136.637 1078.0 806.6 + 22 1 15 6 25 18 0 0 186.0 64.746 -138.210 1075.8 800.5 + 23 1 15 6 25 18 0 0 186.0 64.315 -139.058 752.8 825.5 + 24 1 15 6 25 18 0 0 186.0 63.673 -141.498 524.5 838.7 + 16 1 15 6 25 19 0 0 187.0 64.601 -137.154 2010.2 710.9 + 17 1 15 6 25 19 0 0 187.0 64.930 -135.999 1763.4 735.8 + 18 1 15 6 25 19 0 0 187.0 65.320 -134.806 1512.3 763.2 + 19 1 15 6 25 19 0 0 187.0 65.339 -135.482 1274.6 786.6 + 20 1 15 6 25 19 0 0 187.0 65.451 -135.572 1093.1 806.3 + 21 1 15 6 25 19 0 0 187.0 65.393 -136.252 1078.7 807.5 + 22 1 15 6 25 19 0 0 187.0 64.805 -137.845 1074.9 801.3 + 23 1 15 6 25 19 0 0 187.0 64.354 -138.723 754.3 825.8 + 24 1 15 6 25 19 0 0 187.0 63.700 -141.234 533.0 838.1 + 16 1 15 6 25 20 0 0 188.0 64.698 -136.851 2008.6 712.3 + 17 1 15 6 25 20 0 0 188.0 65.027 -135.658 1762.0 737.0 + 18 1 15 6 25 20 0 0 188.0 65.423 -134.442 1513.6 764.8 + 19 1 15 6 25 20 0 0 188.0 65.424 -135.113 1275.0 787.9 + 20 1 15 6 25 20 0 0 188.0 65.529 -135.200 1093.7 807.5 + 21 1 15 6 25 20 0 0 188.0 65.459 -135.878 1079.0 808.4 + 22 1 15 6 25 20 0 0 188.0 64.849 -137.492 1074.2 801.9 + 23 1 15 6 25 20 0 0 188.0 64.382 -138.402 756.5 825.8 + 24 1 15 6 25 20 0 0 188.0 63.718 -140.983 541.6 837.2 + 16 1 15 6 25 21 0 0 189.0 64.773 -136.544 2009.1 713.0 + 17 1 15 6 25 21 0 0 189.0 65.106 -135.316 1760.8 738.0 + 18 1 15 6 25 21 0 0 189.0 65.511 -134.077 1514.6 766.2 + 19 1 15 6 25 21 0 0 189.0 65.496 -134.748 1275.1 789.0 + 20 1 15 6 25 21 0 0 189.0 65.595 -134.834 1093.9 808.7 + 21 1 15 6 25 21 0 0 189.0 65.515 -135.513 1079.0 809.2 + 22 1 15 6 25 21 0 0 189.0 64.879 -137.153 1073.4 802.0 + 23 1 15 6 25 21 0 0 189.0 64.399 -138.099 758.9 825.6 + 24 1 15 6 25 21 0 0 189.0 63.726 -140.746 550.4 836.2 + 16 1 15 6 25 22 0 0 190.0 64.826 -136.236 2010.8 713.4 + 17 1 15 6 25 22 0 0 190.0 65.166 -134.974 1759.7 738.8 + 18 1 15 6 25 22 0 0 190.0 65.586 -133.709 1515.0 767.5 + 19 1 15 6 25 22 0 0 190.0 65.556 -134.385 1274.6 790.1 + 20 1 15 6 25 22 0 0 190.0 65.651 -134.472 1093.4 809.7 + 21 1 15 6 25 22 0 0 190.0 65.558 -135.154 1078.3 810.0 + 22 1 15 6 25 22 0 0 190.0 64.897 -136.827 1072.4 802.0 + 23 1 15 6 25 22 0 0 190.0 64.406 -137.813 761.5 825.3 + 24 1 15 6 25 22 0 0 190.0 63.723 -140.527 559.8 834.9 + 16 1 15 6 25 23 0 0 191.0 64.856 -135.926 2013.0 713.3 + 17 1 15 6 25 23 0 0 191.0 65.209 -134.630 1758.0 739.4 + 18 1 15 6 25 23 0 0 191.0 65.650 -133.335 1514.3 768.9 + 19 1 15 6 25 23 0 0 191.0 65.605 -134.022 1273.1 791.1 + 20 1 15 6 25 23 0 0 191.0 65.697 -134.111 1092.0 810.7 + 21 1 15 6 25 23 0 0 191.0 65.591 -134.799 1076.6 810.7 + 22 1 15 6 25 23 0 0 191.0 64.901 -136.516 1071.0 801.7 + 23 1 15 6 25 23 0 0 191.0 64.400 -137.548 764.2 824.8 + 24 1 15 6 25 23 0 0 191.0 63.709 -140.326 569.7 833.3 + 16 1 15 6 26 0 0 0 192.0 64.866 -135.616 2015.5 712.9 + 17 1 15 6 26 0 0 0 192.0 65.238 -134.284 1755.5 739.8 + 18 1 15 6 26 0 0 0 192.0 65.705 -132.955 1512.0 770.2 + 19 1 15 6 26 0 0 0 192.0 65.645 -133.657 1270.5 792.1 + 20 1 15 6 26 0 0 0 192.0 65.734 -133.751 1089.5 811.7 + 21 1 15 6 26 0 0 0 192.0 65.613 -134.448 1073.9 811.3 + 22 1 15 6 26 0 0 0 192.0 64.892 -136.220 1069.1 801.3 + 23 1 15 6 26 0 0 0 192.0 64.384 -137.302 767.2 823.9 + 24 1 15 6 26 0 0 0 192.0 63.684 -140.147 580.4 831.4 + 17 1 15 6 26 1 0 0 193.0 65.261 -133.951 1751.0 739.5 + 18 1 15 6 26 1 0 0 193.0 65.757 -132.583 1508.3 770.9 + 19 1 15 6 26 1 0 0 193.0 65.680 -133.301 1266.5 792.3 + 20 1 15 6 26 1 0 0 193.0 65.768 -133.399 1085.6 812.0 + 21 1 15 6 26 1 0 0 193.0 65.631 -134.105 1069.7 811.1 + 22 1 15 6 26 1 0 0 193.0 64.878 -135.935 1066.2 800.2 + 23 1 15 6 26 1 0 0 193.0 64.362 -137.064 770.0 822.4 + 24 1 15 6 26 1 0 0 193.0 63.653 -139.973 591.4 829.2 + 17 1 15 6 26 2 0 0 194.0 65.287 -133.645 1747.9 739.2 + 18 1 15 6 26 2 0 0 194.0 65.810 -132.235 1506.6 772.0 + 19 1 15 6 26 2 0 0 194.0 65.716 -132.963 1263.4 792.7 + 20 1 15 6 26 2 0 0 194.0 65.802 -133.061 1082.6 812.4 + 21 1 15 6 26 2 0 0 194.0 65.650 -133.776 1066.0 811.1 + 22 1 15 6 26 2 0 0 194.0 64.865 -135.657 1063.1 799.1 + 23 1 15 6 26 2 0 0 194.0 64.343 -136.820 772.3 820.9 + 24 1 15 6 26 2 0 0 194.0 63.625 -139.788 602.2 827.2 + 17 1 15 6 26 3 0 0 195.0 65.313 -133.368 1745.2 739.0 + 18 1 15 6 26 3 0 0 195.0 65.862 -131.910 1506.2 773.1 + 19 1 15 6 26 3 0 0 195.0 65.752 -132.643 1260.7 793.0 + 20 1 15 6 26 3 0 0 195.0 65.835 -132.739 1079.8 812.7 + 21 1 15 6 26 3 0 0 195.0 65.669 -133.462 1062.4 811.0 + 22 1 15 6 26 3 0 0 195.0 64.851 -135.386 1059.7 798.0 + 23 1 15 6 26 3 0 0 195.0 64.324 -136.569 774.4 819.4 + 24 1 15 6 26 3 0 0 195.0 63.601 -139.590 612.8 825.2 + 17 1 15 6 26 4 0 0 196.0 65.339 -133.119 1743.0 738.9 + 18 1 15 6 26 4 0 0 196.0 65.913 -131.611 1507.1 774.2 + 19 1 15 6 26 4 0 0 196.0 65.787 -132.343 1258.9 793.6 + 20 1 15 6 26 4 0 0 196.0 65.867 -132.433 1077.6 813.2 + 21 1 15 6 26 4 0 0 196.0 65.687 -133.162 1058.9 811.0 + 22 1 15 6 26 4 0 0 196.0 64.838 -135.123 1056.1 796.9 + 23 1 15 6 26 4 0 0 196.0 64.306 -136.310 776.2 817.9 + 24 1 15 6 26 4 0 0 196.0 63.579 -139.380 623.2 823.3 + 17 1 15 6 26 5 0 0 197.0 65.363 -132.898 1741.4 738.7 + 18 1 15 6 26 5 0 0 197.0 65.962 -131.338 1509.6 775.1 + 19 1 15 6 26 5 0 0 197.0 65.820 -132.062 1258.2 794.3 + 20 1 15 6 26 5 0 0 197.0 65.897 -132.144 1076.4 813.9 + 21 1 15 6 26 5 0 0 197.0 65.704 -132.878 1056.0 810.9 + 22 1 15 6 26 5 0 0 197.0 64.825 -134.866 1052.5 795.8 + 23 1 15 6 26 5 0 0 197.0 64.290 -136.045 777.8 816.3 + 24 1 15 6 26 5 0 0 197.0 63.560 -139.156 633.5 821.5 + 17 1 15 6 26 6 0 0 198.0 65.385 -132.707 1740.6 738.4 + 18 1 15 6 26 6 0 0 198.0 66.010 -131.093 1513.8 775.9 + 19 1 15 6 26 6 0 0 198.0 65.851 -131.802 1258.6 794.9 + 20 1 15 6 26 6 0 0 198.0 65.926 -131.872 1076.2 814.6 + 21 1 15 6 26 6 0 0 198.0 65.718 -132.608 1053.5 810.8 + 22 1 15 6 26 6 0 0 198.0 64.811 -134.616 1049.3 794.7 + 23 1 15 6 26 6 0 0 198.0 64.273 -135.773 779.6 814.7 + 24 1 15 6 26 6 0 0 198.0 63.544 -138.920 643.7 819.7 + 17 1 15 6 26 7 0 0 199.0 65.406 -132.527 1738.5 738.9 + 18 1 15 6 26 7 0 0 199.0 66.056 -130.866 1516.1 777.2 + 19 1 15 6 26 7 0 0 199.0 65.882 -131.559 1257.4 796.2 + 20 1 15 6 26 7 0 0 199.0 65.954 -131.618 1074.5 815.9 + 21 1 15 6 26 7 0 0 199.0 65.733 -132.355 1049.9 811.7 + 22 1 15 6 26 7 0 0 199.0 64.801 -134.373 1045.7 794.4 + 23 1 15 6 26 7 0 0 199.0 64.260 -135.501 781.5 813.7 + 24 1 15 6 26 7 0 0 199.0 63.531 -138.679 654.8 818.4 + 17 1 15 6 26 8 0 0 200.0 65.428 -132.339 1732.7 740.2 + 18 1 15 6 26 8 0 0 200.0 66.104 -130.643 1512.8 779.0 + 19 1 15 6 26 8 0 0 200.0 65.915 -131.329 1251.8 798.0 + 20 1 15 6 26 8 0 0 200.0 65.985 -131.382 1068.4 817.7 + 21 1 15 6 26 8 0 0 200.0 65.752 -132.119 1042.6 813.3 + 22 1 15 6 26 8 0 0 200.0 64.796 -134.139 1040.8 794.4 + 23 1 15 6 26 8 0 0 200.0 64.252 -135.241 783.2 812.9 + 24 1 15 6 26 8 0 0 200.0 63.523 -138.442 667.4 817.0 + 18 1 15 6 26 9 0 0 201.0 66.150 -130.427 1503.3 781.5 + 19 1 15 6 26 9 0 0 201.0 65.949 -131.112 1241.0 800.3 + 20 1 15 6 26 9 0 0 201.0 66.017 -131.165 1057.3 820.0 + 21 1 15 6 26 9 0 0 201.0 65.773 -131.900 1031.2 815.3 + 22 1 15 6 26 9 0 0 201.0 64.796 -133.915 1034.1 794.6 + 23 1 15 6 26 9 0 0 201.0 64.250 -134.990 784.5 812.2 + 24 1 15 6 26 9 0 0 201.0 63.520 -138.210 681.4 815.6 + 18 1 15 6 26 10 0 0 202.0 66.196 -130.219 1487.1 784.5 + 19 1 15 6 26 10 0 0 202.0 65.983 -130.909 1224.8 803.1 + 20 1 15 6 26 10 0 0 202.0 66.049 -130.968 1040.9 822.8 + 21 1 15 6 26 10 0 0 202.0 65.795 -131.699 1015.3 817.7 + 22 1 15 6 26 10 0 0 202.0 64.799 -133.699 1025.3 795.1 + 23 1 15 6 26 10 0 0 202.0 64.252 -134.751 785.0 811.7 + 24 1 15 6 26 10 0 0 202.0 63.522 -137.982 696.8 814.2 + 18 1 15 6 26 11 0 0 203.0 66.239 -130.021 1463.6 788.1 + 19 1 15 6 26 11 0 0 203.0 66.017 -130.723 1202.6 806.4 + 20 1 15 6 26 11 0 0 203.0 66.080 -130.792 1018.7 826.0 + 21 1 15 6 26 11 0 0 203.0 65.818 -131.519 994.6 820.6 + 22 1 15 6 26 11 0 0 203.0 64.805 -133.494 1014.0 795.9 + 23 1 15 6 26 11 0 0 203.0 64.259 -134.521 784.3 811.5 + 24 1 15 6 26 11 0 0 203.0 63.529 -137.758 713.4 812.7 + 18 1 15 6 26 12 0 0 204.0 66.280 -129.835 1433.0 792.7 + 19 1 15 6 26 12 0 0 204.0 66.048 -130.556 1174.3 810.2 + 20 1 15 6 26 12 0 0 204.0 66.110 -130.641 990.6 829.7 + 21 1 15 6 26 12 0 0 204.0 65.841 -131.360 968.7 823.9 + 22 1 15 6 26 12 0 0 204.0 64.814 -133.300 999.8 797.1 + 23 1 15 6 26 12 0 0 204.0 64.270 -134.302 782.1 811.5 + 24 1 15 6 26 12 0 0 204.0 63.539 -137.538 731.2 811.2 + 18 1 15 6 26 13 0 0 205.0 66.320 -129.650 1402.1 797.4 + 19 1 15 6 26 13 0 0 205.0 66.081 -130.388 1145.4 814.2 + 20 1 15 6 26 13 0 0 205.0 66.140 -130.490 961.9 833.6 + 21 1 15 6 26 13 0 0 205.0 65.865 -131.199 942.4 827.4 + 22 1 15 6 26 13 0 0 205.0 64.827 -133.096 985.5 798.3 + 23 1 15 6 26 13 0 0 205.0 64.287 -134.068 779.2 811.6 + 24 1 15 6 26 13 0 0 205.0 63.561 -137.301 749.2 809.5 + 18 1 15 6 26 14 0 0 206.0 66.361 -129.451 1378.0 801.5 + 19 1 15 6 26 14 0 0 206.0 66.116 -130.199 1122.0 817.7 + 20 1 15 6 26 14 0 0 206.0 66.175 -130.314 938.1 837.2 + 21 1 15 6 26 14 0 0 206.0 65.896 -131.011 920.7 830.7 + 22 1 15 6 26 14 0 0 206.0 64.849 -132.858 973.8 799.4 + 23 1 15 6 26 14 0 0 206.0 64.316 -133.796 776.8 811.8 + 24 1 15 6 26 14 0 0 206.0 63.599 -137.027 767.2 807.9 + 18 1 15 6 26 15 0 0 207.0 66.402 -129.235 1360.4 805.1 + 19 1 15 6 26 15 0 0 207.0 66.155 -129.987 1104.0 820.9 + 20 1 15 6 26 15 0 0 207.0 66.215 -130.114 919.1 840.5 + 21 1 15 6 26 15 0 0 207.0 65.932 -130.796 903.3 833.7 + 22 1 15 6 26 15 0 0 207.0 64.878 -132.587 964.7 800.2 + 23 1 15 6 26 15 0 0 207.0 64.353 -133.484 774.8 812.0 + 24 1 15 6 26 15 0 0 207.0 63.652 -136.715 784.5 806.6 + 18 1 15 6 26 16 0 0 208.0 66.445 -129.001 1349.4 808.2 + 19 1 15 6 26 16 0 0 208.0 66.197 -129.754 1091.6 824.2 + 20 1 15 6 26 16 0 0 208.0 66.259 -129.890 905.0 843.8 + 21 1 15 6 26 16 0 0 208.0 65.974 -130.554 890.5 836.5 + 22 1 15 6 26 16 0 0 208.0 64.914 -132.285 958.7 801.4 + 23 1 15 6 26 16 0 0 208.0 64.399 -133.136 773.3 812.3 + 24 1 15 6 26 16 0 0 208.0 63.716 -136.365 800.9 805.4 + 19 1 15 6 26 17 0 0 209.0 66.242 -129.497 1084.9 827.2 + 20 1 15 6 26 17 0 0 209.0 66.307 -129.642 896.0 847.1 + 21 1 15 6 26 17 0 0 209.0 66.021 -130.285 882.1 839.0 + 22 1 15 6 26 17 0 0 209.0 64.957 -131.951 956.3 802.7 + 23 1 15 6 26 17 0 0 209.0 64.453 -132.750 772.5 812.5 + 24 1 15 6 26 17 0 0 209.0 63.792 -135.978 816.2 804.5 + 19 1 15 6 26 18 0 0 210.0 66.290 -129.219 1083.9 829.7 + 20 1 15 6 26 18 0 0 210.0 66.359 -129.371 892.0 850.1 + 21 1 15 6 26 18 0 0 210.0 66.072 -129.992 878.4 841.2 + 22 1 15 6 26 18 0 0 210.0 65.005 -131.587 957.8 803.7 + 23 1 15 6 26 18 0 0 210.0 64.512 -132.328 773.0 813.1 + 24 1 15 6 26 18 0 0 210.0 63.875 -135.553 830.4 803.6 + 19 1 15 6 26 19 0 0 211.0 66.341 -128.944 1087.3 831.9 + 20 1 15 6 26 19 0 0 211.0 66.415 -129.105 892.1 852.7 + 21 1 15 6 26 19 0 0 211.0 66.127 -129.699 879.0 844.1 + 22 1 15 6 26 19 0 0 211.0 65.055 -131.213 963.1 805.0 + 23 1 15 6 26 19 0 0 211.0 64.572 -131.893 775.8 814.3 + 24 1 15 6 26 19 0 0 211.0 63.955 -135.103 843.8 802.7 + 19 1 15 6 26 20 0 0 212.0 66.398 -128.702 1093.5 833.8 + 20 1 15 6 26 20 0 0 212.0 66.477 -128.873 894.6 855.1 + 21 1 15 6 26 20 0 0 212.0 66.186 -129.436 882.0 846.6 + 22 1 15 6 26 20 0 0 212.0 65.104 -130.851 971.2 805.9 + 23 1 15 6 26 20 0 0 212.0 64.627 -131.470 781.3 815.1 + 24 1 15 6 26 20 0 0 212.0 64.024 -134.646 857.1 801.6 + 19 1 15 6 26 21 0 0 213.0 66.462 -128.494 1102.7 835.4 + 20 1 15 6 26 21 0 0 213.0 66.544 -128.679 899.9 857.1 + 21 1 15 6 26 21 0 0 213.0 66.250 -129.206 887.8 848.7 + 22 1 15 6 26 21 0 0 213.0 65.153 -130.504 982.7 806.5 + 23 1 15 6 26 21 0 0 213.0 64.680 -131.062 790.0 815.6 + 24 1 15 6 26 21 0 0 213.0 64.083 -134.185 871.4 800.2 + 19 1 15 6 26 22 0 0 214.0 66.532 -128.323 1115.0 836.6 + 20 1 15 6 26 22 0 0 214.0 66.618 -128.524 908.0 858.7 + 21 1 15 6 26 22 0 0 214.0 66.318 -129.011 896.5 850.5 + 22 1 15 6 26 22 0 0 214.0 65.203 -130.178 997.8 806.8 + 23 1 15 6 26 22 0 0 214.0 64.732 -130.674 802.2 815.7 + 24 1 15 6 26 22 0 0 214.0 64.133 -133.723 887.7 798.4 + 19 1 15 6 26 23 0 0 215.0 66.611 -128.192 1130.4 837.5 + 20 1 15 6 26 23 0 0 215.0 66.698 -128.411 918.9 860.1 + 21 1 15 6 26 23 0 0 215.0 66.393 -128.854 908.0 851.9 + 22 1 15 6 26 23 0 0 215.0 65.255 -129.876 1017.2 807.3 + 23 1 15 6 26 23 0 0 215.0 64.782 -130.309 818.5 815.4 + 24 1 15 6 26 23 0 0 215.0 64.176 -133.265 907.1 796.3 + 19 1 15 6 27 0 0 0 216.0 66.698 -128.102 1148.8 838.1 + 20 1 15 6 27 0 0 0 216.0 66.786 -128.340 932.6 861.1 + 21 1 15 6 27 0 0 0 216.0 66.473 -128.738 922.4 853.0 + 22 1 15 6 27 0 0 0 216.0 65.310 -129.601 1040.9 808.0 + 23 1 15 6 27 0 0 0 216.0 64.834 -129.971 839.1 814.8 + 24 1 15 6 27 0 0 0 216.0 64.211 -132.814 930.6 793.6 + 20 1 15 6 27 1 0 0 217.0 66.881 -128.284 946.5 862.2 + 21 1 15 6 27 1 0 0 217.0 66.560 -128.630 937.0 854.0 + 22 1 15 6 27 1 0 0 217.0 65.367 -129.325 1063.8 808.3 + 23 1 15 6 27 1 0 0 217.0 64.886 -129.628 859.6 815.2 + 24 1 15 6 27 1 0 0 217.0 64.239 -132.349 954.4 791.2 + 20 1 15 6 27 2 0 0 218.0 66.983 -128.213 958.4 863.7 + 21 1 15 6 27 2 0 0 218.0 66.652 -128.505 949.2 855.5 + 22 1 15 6 27 2 0 0 218.0 65.427 -129.024 1083.0 809.1 + 23 1 15 6 27 2 0 0 218.0 64.939 -129.251 875.8 816.2 + 24 1 15 6 27 2 0 0 218.0 64.264 -131.853 973.2 790.1 + 20 1 15 6 27 3 0 0 219.0 67.093 -128.133 968.4 865.6 + 21 1 15 6 27 3 0 0 219.0 66.751 -128.366 959.2 857.3 + 22 1 15 6 27 3 0 0 219.0 65.490 -128.698 1097.8 810.6 + 23 1 15 6 27 3 0 0 219.0 64.995 -128.841 887.5 817.9 + 24 1 15 6 27 3 0 0 219.0 64.287 -131.325 985.8 789.4 + 20 1 15 6 27 4 0 0 220.0 67.211 -128.048 976.8 867.9 + 21 1 15 6 27 4 0 0 220.0 66.859 -128.217 967.3 859.6 + 22 1 15 6 27 4 0 0 220.0 65.558 -128.350 1108.5 812.6 + 23 1 15 6 27 4 0 0 220.0 65.056 -128.401 895.0 820.7 + 24 1 15 6 27 4 0 0 220.0 64.307 -130.765 991.3 789.2 + 20 1 15 6 27 5 0 0 221.0 67.339 -127.965 984.0 870.6 + 21 1 15 6 27 5 0 0 221.0 66.975 -128.065 973.6 862.3 + 22 1 15 6 27 5 0 0 221.0 65.633 -127.983 1115.1 815.2 + 23 1 15 6 27 5 0 0 221.0 65.123 -127.934 898.1 824.3 + 24 1 15 6 27 5 0 0 221.0 64.326 -130.171 989.0 789.7 + 20 1 15 6 27 6 0 0 222.0 67.477 -127.890 990.4 873.6 + 21 1 15 6 27 6 0 0 222.0 67.102 -127.914 978.5 865.4 + 22 1 15 6 27 6 0 0 222.0 65.717 -127.600 1118.0 818.5 + 23 1 15 6 27 6 0 0 222.0 65.197 -127.444 897.2 828.7 + 24 1 15 6 27 6 0 0 222.0 64.345 -129.542 979.9 793.3 + 20 1 15 6 27 7 0 0 223.0 67.618 -127.847 996.1 874.0 + 21 1 15 6 27 7 0 0 223.0 67.233 -127.801 983.7 868.4 + 22 1 15 6 27 7 0 0 223.0 65.805 -127.240 1119.5 822.6 + 23 1 15 6 27 7 0 0 223.0 65.277 -126.976 894.6 834.6 + 24 1 15 6 27 7 0 0 223.0 64.367 -128.918 967.7 798.6 + 20 1 15 6 27 8 0 0 224.0 67.748 -127.852 1003.7 873.6 + 21 1 15 6 27 8 0 0 224.0 67.359 -127.752 991.2 870.8 + 22 1 15 6 27 8 0 0 224.0 65.893 -126.940 1122.0 826.3 + 23 1 15 6 27 8 0 0 224.0 65.357 -126.573 891.9 839.9 + 24 1 15 6 27 8 0 0 224.0 64.391 -128.337 955.6 803.5 + 21 1 15 6 27 9 0 0 225.0 67.481 -127.765 1001.2 872.7 + 22 1 15 6 27 9 0 0 225.0 65.979 -126.698 1124.9 829.4 + 23 1 15 6 27 9 0 0 225.0 65.436 -126.229 888.4 844.6 + 24 1 15 6 27 9 0 0 225.0 64.416 -127.801 943.1 808.0 + 21 1 15 6 27 10 0 0 226.0 67.594 -127.830 1012.9 872.1 + 22 1 15 6 27 10 0 0 226.0 66.064 -126.511 1127.8 832.0 + 23 1 15 6 27 10 0 0 226.0 65.516 -125.942 883.7 848.9 + 24 1 15 6 27 10 0 0 226.0 64.442 -127.308 930.1 813.1 + 21 1 15 6 27 11 0 0 227.0 67.696 -127.935 1027.0 870.8 + 22 1 15 6 27 11 0 0 227.0 66.147 -126.378 1130.8 834.2 + 23 1 15 6 27 11 0 0 227.0 65.595 -125.711 877.7 852.8 + 24 1 15 6 27 11 0 0 227.0 64.468 -126.859 916.5 819.2 + 21 1 15 6 27 12 0 0 228.0 67.787 -128.074 1044.3 869.0 + 22 1 15 6 27 12 0 0 228.0 66.225 -126.297 1133.7 836.0 + 23 1 15 6 27 12 0 0 228.0 65.673 -125.531 870.0 856.3 + 24 1 15 6 27 12 0 0 228.0 64.494 -126.453 901.4 825.0 + 21 1 15 6 27 13 0 0 229.0 67.867 -128.207 1067.1 866.8 + 22 1 15 6 27 13 0 0 229.0 66.300 -126.240 1140.7 837.3 + 23 1 15 6 27 13 0 0 229.0 65.749 -125.380 864.8 859.5 + 24 1 15 6 27 13 0 0 229.0 64.521 -126.072 888.0 830.7 + 21 1 15 6 27 14 0 0 230.0 67.937 -128.295 1097.5 863.9 + 22 1 15 6 27 14 0 0 230.0 66.370 -126.180 1155.1 837.8 + 23 1 15 6 27 14 0 0 230.0 65.824 -125.238 865.9 861.9 + 24 1 15 6 27 14 0 0 230.0 64.552 -125.705 879.1 835.7 + 21 1 15 6 27 15 0 0 231.0 67.997 -128.339 1135.3 860.3 + 22 1 15 6 27 15 0 0 231.0 66.437 -126.114 1177.4 837.4 + 23 1 15 6 27 15 0 0 231.0 65.898 -125.100 873.3 863.4 + 24 1 15 6 27 15 0 0 231.0 64.585 -125.350 875.0 840.0 + 21 1 15 6 27 16 0 0 232.0 68.048 -128.338 1180.3 855.9 + 22 1 15 6 27 16 0 0 232.0 66.499 -126.040 1207.8 836.0 + 23 1 15 6 27 16 0 0 232.0 65.969 -124.966 887.5 864.1 + 24 1 15 6 27 16 0 0 232.0 64.620 -125.008 876.0 843.6 + 22 1 15 6 27 17 0 0 233.0 66.557 -125.955 1246.5 833.7 + 23 1 15 6 27 17 0 0 233.0 66.037 -124.834 908.5 863.9 + 24 1 15 6 27 17 0 0 233.0 64.657 -124.681 882.3 846.3 + 22 1 15 6 27 18 0 0 234.0 66.610 -125.859 1293.9 830.5 + 23 1 15 6 27 18 0 0 234.0 66.103 -124.701 936.6 862.8 + 24 1 15 6 27 18 0 0 234.0 64.695 -124.370 894.0 848.3 + 22 1 15 6 27 19 0 0 235.0 66.661 -125.775 1344.4 826.9 + 23 1 15 6 27 19 0 0 235.0 66.165 -124.582 966.9 861.5 + 24 1 15 6 27 19 0 0 235.0 64.734 -124.081 906.7 850.2 + 22 1 15 6 27 20 0 0 236.0 66.713 -125.727 1393.1 823.3 + 23 1 15 6 27 20 0 0 236.0 66.225 -124.492 994.6 860.1 + 24 1 15 6 27 20 0 0 236.0 64.771 -123.816 914.8 852.2 + 22 1 15 6 27 21 0 0 237.0 66.764 -125.713 1439.7 819.8 + 23 1 15 6 27 21 0 0 237.0 66.281 -124.429 1019.8 858.8 + 24 1 15 6 27 21 0 0 237.0 64.807 -123.574 918.4 854.4 + 22 1 15 6 27 22 0 0 238.0 66.816 -125.732 1484.2 816.3 + 23 1 15 6 27 22 0 0 238.0 66.333 -124.393 1042.3 857.5 + 24 1 15 6 27 22 0 0 238.0 64.840 -123.354 917.0 856.8 + 22 1 15 6 27 23 0 0 239.0 66.869 -125.782 1526.5 813.0 + 23 1 15 6 27 23 0 0 239.0 66.383 -124.382 1062.3 856.4 + 24 1 15 6 27 23 0 0 239.0 64.870 -123.155 910.5 859.6 + 22 1 15 6 28 0 0 0 240.0 66.922 -125.861 1566.7 809.7 + 23 1 15 6 28 0 0 0 240.0 66.428 -124.397 1079.7 855.3 + 24 1 15 6 28 0 0 0 240.0 64.897 -122.974 898.6 862.8 + 23 1 15 6 28 1 0 0 241.0 66.467 -124.436 1097.5 853.9 + 24 1 15 6 28 1 0 0 241.0 64.918 -122.812 884.1 865.6 + 23 1 15 6 28 2 0 0 242.0 66.496 -124.500 1118.6 851.9 + 24 1 15 6 28 2 0 0 242.0 64.935 -122.668 870.8 868.1 + 23 1 15 6 28 3 0 0 243.0 66.514 -124.586 1143.1 849.4 + 24 1 15 6 28 3 0 0 243.0 64.947 -122.540 858.9 870.3 + 23 1 15 6 28 4 0 0 244.0 66.521 -124.692 1170.9 846.3 + 24 1 15 6 28 4 0 0 244.0 64.954 -122.427 848.6 871.8 + 23 1 15 6 28 5 0 0 245.0 66.516 -124.814 1201.7 842.6 + 24 1 15 6 28 5 0 0 245.0 64.958 -122.328 840.3 873.0 + 23 1 15 6 28 6 0 0 246.0 66.498 -124.949 1235.2 838.4 + 24 1 15 6 28 6 0 0 246.0 64.959 -122.242 834.2 873.9 + 23 1 15 6 28 7 0 0 247.0 66.467 -125.068 1266.8 833.8 + 24 1 15 6 28 7 0 0 247.0 64.953 -122.133 828.1 874.8 + 23 1 15 6 28 8 0 0 248.0 66.425 -125.144 1293.2 829.7 + 24 1 15 6 28 8 0 0 248.0 64.942 -121.971 820.3 876.1 + 24 1 15 6 28 9 0 0 249.0 64.927 -121.757 810.2 877.9 + 24 1 15 6 28 10 0 0 250.0 64.910 -121.495 797.6 880.2 + 24 1 15 6 28 11 0 0 251.0 64.894 -121.189 781.9 883.1 + 24 1 15 6 28 12 0 0 252.0 64.881 -120.845 762.8 886.6 + 24 1 15 6 28 13 0 0 253.0 64.883 -120.491 743.7 890.9 + 24 1 15 6 28 14 0 0 254.0 64.909 -120.158 728.4 894.8 + 24 1 15 6 28 15 0 0 255.0 64.957 -119.845 717.6 897.3 + 24 1 15 6 28 16 0 0 256.0 65.023 -119.555 711.6 898.4 diff --git a/fireInIce/2_visualize/in/tdump.160303.txt b/fireInIce/2_visualize/in/tdump.160303.txt new file mode 100644 index 0000000000000000000000000000000000000000..775820d2c8989ba4410bb886994e387c0836ddd7 --- /dev/null +++ b/fireInIce/2_visualize/in/tdump.160303.txt @@ -0,0 +1,1782 @@ + 3 1 + CDC1 16 6 1 0 0 + CDC1 16 7 1 0 0 + CDC1 16 8 1 0 0 + 24 FORWARD OMEGA + 16 7 11 0 61.290 -143.250 500.0 + 16 7 11 8 61.290 -143.250 500.0 + 16 7 11 16 61.290 -143.250 500.0 + 16 7 12 0 61.290 -143.250 500.0 + 16 7 12 8 61.290 -143.250 500.0 + 16 7 12 16 61.290 -143.250 500.0 + 16 7 13 0 61.290 -143.250 500.0 + 16 7 13 8 61.290 -143.250 500.0 + 16 7 13 16 61.290 -143.250 500.0 + 16 7 14 0 61.290 -143.250 500.0 + 16 7 14 8 61.290 -143.250 500.0 + 16 7 14 16 61.290 -143.250 500.0 + 16 7 15 0 61.290 -143.250 500.0 + 16 7 15 8 61.290 -143.250 500.0 + 16 7 15 16 61.290 -143.250 500.0 + 16 7 16 0 61.290 -143.250 500.0 + 16 7 16 8 61.290 -143.250 500.0 + 16 7 16 16 61.290 -143.250 500.0 + 16 7 17 0 61.290 -143.250 500.0 + 16 7 17 8 61.290 -143.250 500.0 + 16 7 17 16 61.290 -143.250 500.0 + 16 7 18 0 61.290 -143.250 500.0 + 16 7 18 8 61.290 -143.250 500.0 + 16 7 18 16 61.290 -143.250 500.0 + 1 PRESSURE + 1 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 2 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 3 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 4 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 5 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 6 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 7 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 8 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 9 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 10 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 11 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 12 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 13 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 14 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 15 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 16 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 17 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 18 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 19 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 20 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 21 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 22 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 23 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 24 1 16 7 11 0 0 0 0.0 61.290 -143.250 500.0 851.4 + 1 1 16 7 11 1 0 0 1.0 61.289 -143.205 523.8 848.8 + 1 1 16 7 11 2 0 0 2.0 61.276 -143.162 542.2 847.0 + 1 1 16 7 11 3 0 0 3.0 61.252 -143.123 555.2 846.2 + 1 1 16 7 11 4 0 0 4.0 61.216 -143.088 562.6 846.1 + 1 1 16 7 11 5 0 0 5.0 61.169 -143.057 564.3 846.9 + 1 1 16 7 11 6 0 0 6.0 61.111 -143.029 560.4 848.6 + 1 1 16 7 11 7 0 0 7.0 61.048 -143.004 553.7 850.4 + 1 1 16 7 11 8 0 0 8.0 60.984 -142.979 547.9 852.1 + 1 1 16 7 11 9 0 0 9.0 60.921 -142.955 542.9 853.7 + 2 1 16 7 11 9 0 0 9.0 61.222 -143.198 495.0 853.7 + 1 1 16 7 11 10 0 0 10.0 60.858 -142.930 539.0 855.1 + 2 1 16 7 11 10 0 0 10.0 61.155 -143.146 490.6 855.2 + 1 1 16 7 11 11 0 0 11.0 60.795 -142.905 536.4 856.4 + 2 1 16 7 11 11 0 0 11.0 61.087 -143.094 486.8 856.6 + 1 1 16 7 11 12 0 0 12.0 60.732 -142.879 535.1 857.5 + 2 1 16 7 11 12 0 0 12.0 61.019 -143.042 483.9 857.9 + 1 1 16 7 11 13 0 0 13.0 60.673 -142.868 534.2 859.0 + 2 1 16 7 11 13 0 0 13.0 60.955 -143.007 481.1 859.5 + 1 1 16 7 11 14 0 0 14.0 60.620 -142.887 531.7 860.7 + 2 1 16 7 11 14 0 0 14.0 60.897 -143.005 477.1 861.3 + 1 1 16 7 11 15 0 0 15.0 60.574 -142.934 527.7 862.6 + 2 1 16 7 11 15 0 0 15.0 60.846 -143.034 471.8 863.4 + 1 1 16 7 11 16 0 0 16.0 60.534 -143.008 522.2 864.8 + 2 1 16 7 11 16 0 0 16.0 60.802 -143.092 465.3 865.6 + 1 1 16 7 11 17 0 0 17.0 60.499 -143.109 515.2 867.3 + 2 1 16 7 11 17 0 0 17.0 60.764 -143.180 457.6 868.1 + 3 1 16 7 11 17 0 0 17.0 61.244 -143.333 490.5 855.1 + 1 1 16 7 11 18 0 0 18.0 60.472 -143.235 507.0 869.9 + 2 1 16 7 11 18 0 0 18.0 60.733 -143.297 448.7 870.8 + 3 1 16 7 11 18 0 0 18.0 61.203 -143.449 479.9 858.1 + 1 1 16 7 11 19 0 0 19.0 60.452 -143.362 499.6 872.3 + 2 1 16 7 11 19 0 0 19.0 60.710 -143.416 440.9 873.1 + 3 1 16 7 11 19 0 0 19.0 61.170 -143.571 470.7 860.7 + 1 1 16 7 11 20 0 0 20.0 60.444 -143.466 495.0 873.9 + 2 1 16 7 11 20 0 0 20.0 60.697 -143.513 436.1 874.7 + 3 1 16 7 11 20 0 0 20.0 61.147 -143.671 465.4 862.6 + 1 1 16 7 11 21 0 0 21.0 60.446 -143.548 492.9 874.7 + 2 1 16 7 11 21 0 0 21.0 60.693 -143.587 434.1 875.6 + 3 1 16 7 11 21 0 0 21.0 61.132 -143.750 463.7 863.7 + 1 1 16 7 11 22 0 0 22.0 60.458 -143.608 493.4 875.0 + 2 1 16 7 11 22 0 0 22.0 60.699 -143.638 434.9 875.9 + 3 1 16 7 11 22 0 0 22.0 61.127 -143.807 465.5 864.2 + 1 1 16 7 11 23 0 0 23.0 60.480 -143.647 496.4 874.5 + 2 1 16 7 11 23 0 0 23.0 60.715 -143.669 438.6 875.5 + 3 1 16 7 11 23 0 0 23.0 61.132 -143.844 470.8 863.8 + 1 1 16 7 12 0 0 0 24.0 60.512 -143.664 502.3 873.4 + 2 1 16 7 12 0 0 0 24.0 60.739 -143.678 445.2 874.3 + 3 1 16 7 12 0 0 0 24.0 61.145 -143.861 479.9 862.8 + 1 1 16 7 12 1 0 0 25.0 60.546 -143.689 508.9 872.2 + 2 1 16 7 12 1 0 0 25.0 60.767 -143.696 452.8 873.2 + 3 1 16 7 12 1 0 0 25.0 61.162 -143.889 489.8 861.6 + 4 1 16 7 12 1 0 0 25.0 61.310 -143.284 514.6 851.8 + 1 1 16 7 12 2 0 0 26.0 60.575 -143.749 513.6 871.6 + 2 1 16 7 12 2 0 0 26.0 60.790 -143.751 458.4 872.6 + 3 1 16 7 12 2 0 0 26.0 61.176 -143.960 497.3 861.1 + 4 1 16 7 12 2 0 0 26.0 61.326 -143.362 526.0 850.9 + 1 1 16 7 12 3 0 0 27.0 60.599 -143.842 516.3 871.6 + 2 1 16 7 12 3 0 0 27.0 60.808 -143.842 461.9 872.6 + 3 1 16 7 12 3 0 0 27.0 61.185 -144.073 502.1 861.3 + 4 1 16 7 12 3 0 0 27.0 61.337 -143.482 533.8 850.6 + 1 1 16 7 12 4 0 0 28.0 60.618 -143.971 516.8 872.3 + 2 1 16 7 12 4 0 0 28.0 60.822 -143.971 463.3 873.2 + 3 1 16 7 12 4 0 0 28.0 61.192 -144.229 504.2 862.1 + 4 1 16 7 12 4 0 0 28.0 61.344 -143.646 538.0 851.2 + 1 1 16 7 12 5 0 0 29.0 60.632 -144.134 515.5 873.5 + 2 1 16 7 12 5 0 0 29.0 60.832 -144.137 462.6 874.4 + 3 1 16 7 12 5 0 0 29.0 61.195 -144.428 503.9 863.5 + 4 1 16 7 12 5 0 0 29.0 61.348 -143.854 538.7 852.5 + 1 1 16 7 12 6 0 0 30.0 60.642 -144.333 512.5 875.3 + 2 1 16 7 12 6 0 0 30.0 60.838 -144.342 460.2 876.2 + 3 1 16 7 12 6 0 0 30.0 61.195 -144.671 501.5 865.5 + 4 1 16 7 12 6 0 0 30.0 61.347 -144.108 536.4 854.5 + 1 1 16 7 12 7 0 0 31.0 60.647 -144.549 508.6 877.3 + 2 1 16 7 12 7 0 0 31.0 60.839 -144.564 456.7 878.2 + 3 1 16 7 12 7 0 0 31.0 61.192 -144.935 497.4 867.9 + 4 1 16 7 12 7 0 0 31.0 61.343 -144.383 532.1 856.9 + 1 1 16 7 12 8 0 0 32.0 60.647 -144.761 504.8 879.3 + 2 1 16 7 12 8 0 0 32.0 60.836 -144.781 452.8 880.4 + 3 1 16 7 12 8 0 0 32.0 61.184 -145.193 492.3 870.5 + 4 1 16 7 12 8 0 0 32.0 61.335 -144.654 527.2 859.5 + 1 1 16 7 12 9 0 0 33.0 60.642 -144.970 500.5 881.5 + 2 1 16 7 12 9 0 0 33.0 60.828 -144.993 448.0 882.7 + 3 1 16 7 12 9 0 0 33.0 61.171 -145.440 485.8 873.3 + 4 1 16 7 12 9 0 0 33.0 61.324 -144.920 521.0 862.3 + 5 1 16 7 12 9 0 0 33.0 61.278 -143.495 497.0 856.6 + 1 1 16 7 12 10 0 0 34.0 60.632 -145.173 495.2 883.8 + 2 1 16 7 12 10 0 0 34.0 60.814 -145.197 441.9 885.1 + 3 1 16 7 12 10 0 0 34.0 61.153 -145.677 477.5 876.4 + 4 1 16 7 12 10 0 0 34.0 61.309 -145.177 513.1 865.3 + 5 1 16 7 12 10 0 0 34.0 61.262 -143.736 493.7 859.1 + 1 1 16 7 12 11 0 0 35.0 60.616 -145.368 488.9 886.2 + 2 1 16 7 12 11 0 0 35.0 60.795 -145.391 434.5 887.8 + 3 1 16 7 12 11 0 0 35.0 61.130 -145.902 467.4 879.6 + 4 1 16 7 12 11 0 0 35.0 61.289 -145.423 503.3 868.6 + 5 1 16 7 12 11 0 0 35.0 61.242 -143.972 489.7 861.6 + 1 1 16 7 12 12 0 0 36.0 60.594 -145.554 481.5 888.8 + 2 1 16 7 12 12 0 0 36.0 60.770 -145.575 425.8 890.6 + 3 1 16 7 12 12 0 0 36.0 61.102 -146.114 455.4 883.1 + 4 1 16 7 12 12 0 0 36.0 61.264 -145.658 491.5 872.2 + 5 1 16 7 12 12 0 0 36.0 61.218 -144.202 484.4 864.4 + 1 1 16 7 12 13 0 0 37.0 60.572 -145.732 472.7 891.8 + 2 1 16 7 12 13 0 0 37.0 60.745 -145.749 415.7 893.7 + 3 1 16 7 12 13 0 0 37.0 61.076 -146.314 442.1 886.8 + 4 1 16 7 12 13 0 0 37.0 61.240 -145.881 478.3 875.9 + 5 1 16 7 12 13 0 0 37.0 61.194 -144.425 477.3 867.3 + 1 1 16 7 12 14 0 0 38.0 60.554 -145.902 462.2 894.7 + 2 1 16 7 12 14 0 0 38.0 60.725 -145.915 404.5 896.8 + 3 1 16 7 12 14 0 0 38.0 61.055 -146.505 428.3 890.2 + 4 1 16 7 12 14 0 0 38.0 61.221 -146.095 464.3 879.5 + 5 1 16 7 12 14 0 0 38.0 61.173 -144.643 467.9 870.3 + 1 1 16 7 12 15 0 0 39.0 60.543 -146.066 450.5 897.6 + 2 1 16 7 12 15 0 0 39.0 60.710 -146.074 392.4 899.8 + 3 1 16 7 12 15 0 0 39.0 61.042 -146.688 414.2 893.5 + 4 1 16 7 12 15 0 0 39.0 61.209 -146.300 449.9 882.9 + 5 1 16 7 12 15 0 0 39.0 61.157 -144.855 456.5 873.5 + 1 1 16 7 12 16 0 0 40.0 60.537 -146.223 437.7 900.4 + 2 1 16 7 12 16 0 0 40.0 60.702 -146.227 379.6 902.6 + 3 1 16 7 12 16 0 0 40.0 61.036 -146.862 400.2 896.5 + 4 1 16 7 12 16 0 0 40.0 61.203 -146.497 435.2 886.1 + 5 1 16 7 12 16 0 0 40.0 61.145 -145.060 443.4 876.7 + 1 1 16 7 12 17 0 0 41.0 60.540 -146.374 424.2 903.1 + 2 1 16 7 12 17 0 0 41.0 60.701 -146.373 366.5 905.3 + 3 1 16 7 12 17 0 0 41.0 61.040 -147.029 386.4 899.2 + 4 1 16 7 12 17 0 0 41.0 61.206 -146.685 420.6 889.0 + 5 1 16 7 12 17 0 0 41.0 61.138 -145.258 429.1 879.9 + 6 1 16 7 12 17 0 0 41.0 61.267 -143.478 490.9 858.7 + 1 1 16 7 12 18 0 0 42.0 60.551 -146.520 410.2 905.6 + 2 1 16 7 12 18 0 0 42.0 60.708 -146.513 353.4 907.7 + 3 1 16 7 12 18 0 0 42.0 61.054 -147.189 373.1 901.5 + 4 1 16 7 12 18 0 0 42.0 61.218 -146.866 406.4 891.6 + 5 1 16 7 12 18 0 0 42.0 61.137 -145.449 414.2 883.0 + 6 1 16 7 12 18 0 0 42.0 61.247 -143.701 479.8 861.9 + 1 1 16 7 12 19 0 0 43.0 60.566 -146.653 397.5 907.9 + 2 1 16 7 12 19 0 0 43.0 60.718 -146.638 341.8 910.0 + 3 1 16 7 12 19 0 0 43.0 61.070 -147.334 361.5 903.8 + 4 1 16 7 12 19 0 0 43.0 61.232 -147.032 393.7 894.1 + 5 1 16 7 12 19 0 0 43.0 61.138 -145.624 400.4 886.0 + 6 1 16 7 12 19 0 0 43.0 61.228 -143.907 468.3 865.1 + 1 1 16 7 12 20 0 0 44.0 60.579 -146.766 387.3 909.8 + 2 1 16 7 12 20 0 0 44.0 60.726 -146.742 332.5 911.9 + 3 1 16 7 12 20 0 0 44.0 61.084 -147.457 352.1 905.7 + 4 1 16 7 12 20 0 0 44.0 61.244 -147.176 383.2 896.4 + 5 1 16 7 12 20 0 0 44.0 61.137 -145.775 389.1 888.7 + 6 1 16 7 12 20 0 0 44.0 61.208 -144.088 458.5 868.1 + 1 1 16 7 12 21 0 0 45.0 60.590 -146.860 379.4 911.4 + 2 1 16 7 12 21 0 0 45.0 60.734 -146.825 325.5 913.5 + 3 1 16 7 12 21 0 0 45.0 61.096 -147.560 344.7 907.2 + 4 1 16 7 12 21 0 0 45.0 61.254 -147.298 375.0 898.2 + 5 1 16 7 12 21 0 0 45.0 61.134 -145.904 380.3 890.9 + 6 1 16 7 12 21 0 0 45.0 61.187 -144.244 450.6 870.8 + 1 1 16 7 12 22 0 0 46.0 60.600 -146.935 373.8 912.7 + 2 1 16 7 12 22 0 0 46.0 60.741 -146.888 320.5 914.7 + 3 1 16 7 12 22 0 0 46.0 61.105 -147.643 339.2 908.3 + 4 1 16 7 12 22 0 0 46.0 61.260 -147.400 368.9 899.8 + 5 1 16 7 12 22 0 0 46.0 61.128 -146.011 374.0 892.9 + 6 1 16 7 12 22 0 0 46.0 61.164 -144.375 444.9 873.2 + 1 1 16 7 12 23 0 0 47.0 60.609 -146.992 370.4 913.7 + 2 1 16 7 12 23 0 0 47.0 60.749 -146.932 317.4 915.5 + 3 1 16 7 12 23 0 0 47.0 61.112 -147.708 335.5 909.2 + 4 1 16 7 12 23 0 0 47.0 61.265 -147.482 364.8 901.2 + 5 1 16 7 12 23 0 0 47.0 61.120 -146.096 370.1 894.5 + 6 1 16 7 12 23 0 0 47.0 61.138 -144.483 441.3 875.3 + 1 1 16 7 13 0 0 0 48.0 60.616 -147.030 369.0 914.3 + 2 1 16 7 13 0 0 0 48.0 60.756 -146.957 316.1 916.0 + 3 1 16 7 13 0 0 0 48.0 61.116 -147.754 333.5 909.8 + 4 1 16 7 13 0 0 0 48.0 61.266 -147.544 362.6 902.1 + 5 1 16 7 13 0 0 0 48.0 61.110 -146.161 368.4 895.8 + 6 1 16 7 13 0 0 0 48.0 61.111 -144.569 440.2 877.0 + 1 1 16 7 13 1 0 0 49.0 60.622 -147.064 367.4 914.5 + 2 1 16 7 13 1 0 0 49.0 60.764 -146.977 314.6 916.1 + 3 1 16 7 13 1 0 0 49.0 61.120 -147.794 331.5 910.1 + 4 1 16 7 13 1 0 0 49.0 61.266 -147.600 360.4 902.5 + 5 1 16 7 13 1 0 0 49.0 61.100 -146.218 366.7 896.6 + 6 1 16 7 13 1 0 0 49.0 61.084 -144.648 439.0 878.3 + 7 1 16 7 13 1 0 0 49.0 61.247 -143.344 498.8 859.3 + 1 1 16 7 13 2 0 0 50.0 60.631 -147.103 363.5 915.0 + 2 1 16 7 13 2 0 0 50.0 60.773 -147.003 311.3 916.4 + 3 1 16 7 13 2 0 0 50.0 61.124 -147.840 328.1 910.5 + 4 1 16 7 13 2 0 0 50.0 61.266 -147.661 356.9 903.1 + 5 1 16 7 13 2 0 0 50.0 61.093 -146.282 362.9 897.6 + 6 1 16 7 13 2 0 0 50.0 61.060 -144.733 435.2 879.9 + 7 1 16 7 13 2 0 0 50.0 61.208 -143.449 495.6 861.3 + 1 1 16 7 13 3 0 0 51.0 60.641 -147.147 357.3 915.7 + 2 1 16 7 13 3 0 0 51.0 60.782 -147.035 306.1 916.9 + 3 1 16 7 13 3 0 0 51.0 61.128 -147.890 323.4 911.1 + 4 1 16 7 13 3 0 0 51.0 61.267 -147.728 352.1 903.9 + 5 1 16 7 13 3 0 0 51.0 61.087 -146.350 357.1 898.8 + 6 1 16 7 13 3 0 0 51.0 61.040 -144.825 428.8 881.7 + 7 1 16 7 13 3 0 0 51.0 61.173 -143.562 490.1 863.5 + 1 1 16 7 13 4 0 0 52.0 60.654 -147.195 349.0 916.6 + 2 1 16 7 13 4 0 0 52.0 60.792 -147.072 299.2 917.7 + 3 1 16 7 13 4 0 0 52.0 61.133 -147.945 317.5 911.9 + 4 1 16 7 13 4 0 0 52.0 61.269 -147.799 345.9 904.8 + 5 1 16 7 13 4 0 0 52.0 61.084 -146.423 349.4 900.2 + 6 1 16 7 13 4 0 0 52.0 61.023 -144.922 419.5 883.7 + 7 1 16 7 13 4 0 0 52.0 61.142 -143.682 482.0 865.9 + 1 1 16 7 13 5 0 0 53.0 60.668 -147.247 338.9 917.7 + 2 1 16 7 13 5 0 0 53.0 60.803 -147.112 290.7 918.6 + 3 1 16 7 13 5 0 0 53.0 61.138 -148.005 310.3 912.7 + 4 1 16 7 13 5 0 0 53.0 61.271 -147.873 338.5 905.9 + 5 1 16 7 13 5 0 0 53.0 61.083 -146.500 340.0 901.8 + 6 1 16 7 13 5 0 0 53.0 61.011 -145.023 407.5 886.0 + 7 1 16 7 13 5 0 0 53.0 61.114 -143.809 471.4 868.5 + 1 1 16 7 13 6 0 0 54.0 60.683 -147.301 327.2 919.0 + 2 1 16 7 13 6 0 0 54.0 60.815 -147.157 280.9 919.7 + 3 1 16 7 13 6 0 0 54.0 61.144 -148.067 302.1 913.7 + 4 1 16 7 13 6 0 0 54.0 61.273 -147.951 330.1 907.1 + 5 1 16 7 13 6 0 0 54.0 61.083 -146.580 328.9 903.5 + 6 1 16 7 13 6 0 0 54.0 61.001 -145.128 392.7 888.5 + 7 1 16 7 13 6 0 0 54.0 61.090 -143.941 458.0 871.4 + 1 1 16 7 13 7 0 0 55.0 60.697 -147.359 314.7 920.5 + 2 1 16 7 13 7 0 0 55.0 60.825 -147.206 270.4 921.0 + 3 1 16 7 13 7 0 0 55.0 61.151 -148.134 293.2 915.0 + 4 1 16 7 13 7 0 0 55.0 61.277 -148.033 320.8 908.5 + 5 1 16 7 13 7 0 0 55.0 61.084 -146.663 316.7 905.5 + 6 1 16 7 13 7 0 0 55.0 60.994 -145.233 375.3 891.4 + 7 1 16 7 13 7 0 0 55.0 61.069 -144.072 441.3 874.7 + 1 1 16 7 13 8 0 0 56.0 60.711 -147.423 302.5 922.1 + 2 1 16 7 13 8 0 0 56.0 60.834 -147.262 259.9 922.5 + 3 1 16 7 13 8 0 0 56.0 61.157 -148.209 284.0 916.3 + 4 1 16 7 13 8 0 0 56.0 61.281 -148.122 311.2 910.0 + 5 1 16 7 13 8 0 0 56.0 61.085 -146.749 304.0 907.6 + 6 1 16 7 13 8 0 0 56.0 60.986 -145.335 356.2 894.5 + 7 1 16 7 13 8 0 0 56.0 61.049 -144.194 421.1 878.3 + 1 1 16 7 13 9 0 0 57.0 60.723 -147.492 290.6 923.7 + 2 1 16 7 13 9 0 0 57.0 60.842 -147.325 249.4 924.0 + 3 1 16 7 13 9 0 0 57.0 61.164 -148.290 274.7 917.7 + 4 1 16 7 13 9 0 0 57.0 61.286 -148.217 301.3 911.5 + 5 1 16 7 13 9 0 0 57.0 61.086 -146.840 290.9 909.8 + 6 1 16 7 13 9 0 0 57.0 60.977 -145.436 336.0 897.7 + 7 1 16 7 13 9 0 0 57.0 61.029 -144.308 397.6 882.1 + 8 1 16 7 13 9 0 0 57.0 61.258 -143.380 475.7 862.7 + 1 1 16 7 13 10 0 0 58.0 60.733 -147.568 279.0 925.1 + 2 1 16 7 13 10 0 0 58.0 60.847 -147.396 239.1 925.6 + 3 1 16 7 13 10 0 0 58.0 61.172 -148.378 265.2 919.1 + 4 1 16 7 13 10 0 0 58.0 61.293 -148.319 291.1 913.2 + 5 1 16 7 13 10 0 0 58.0 61.086 -146.936 277.6 912.0 + 6 1 16 7 13 10 0 0 58.0 60.967 -145.538 315.1 901.1 + 7 1 16 7 13 10 0 0 58.0 61.010 -144.416 371.2 886.2 + 8 1 16 7 13 10 0 0 58.0 61.227 -143.499 447.6 867.2 + 1 1 16 7 13 11 0 0 59.0 60.741 -147.650 267.6 926.6 + 2 1 16 7 13 11 0 0 59.0 60.850 -147.475 229.2 927.3 + 3 1 16 7 13 11 0 0 59.0 61.179 -148.473 255.6 920.6 + 4 1 16 7 13 11 0 0 59.0 61.300 -148.428 280.7 914.8 + 5 1 16 7 13 11 0 0 59.0 61.086 -147.039 264.4 914.3 + 6 1 16 7 13 11 0 0 59.0 60.956 -145.641 293.9 904.5 + 7 1 16 7 13 11 0 0 59.0 60.989 -144.520 342.8 890.6 + 8 1 16 7 13 11 0 0 59.0 61.197 -143.607 415.7 872.1 + 1 1 16 7 13 12 0 0 60.0 60.746 -147.739 256.5 928.2 + 2 1 16 7 13 12 0 0 60.0 60.851 -147.562 219.4 928.9 + 3 1 16 7 13 12 0 0 60.0 61.187 -148.574 245.9 922.1 + 4 1 16 7 13 12 0 0 60.0 61.308 -148.544 270.1 916.5 + 5 1 16 7 13 12 0 0 60.0 61.085 -147.149 251.4 916.7 + 6 1 16 7 13 12 0 0 60.0 60.942 -145.749 272.8 908.0 + 7 1 16 7 13 12 0 0 60.0 60.966 -144.626 313.7 895.2 + 8 1 16 7 13 12 0 0 60.0 61.165 -143.705 380.4 877.3 + 1 1 16 7 13 13 0 0 61.0 60.755 -147.818 245.7 929.9 + 2 1 16 7 13 13 0 0 61.0 60.855 -147.640 210.1 930.6 + 3 1 16 7 13 13 0 0 61.0 61.199 -148.665 236.0 923.7 + 4 1 16 7 13 13 0 0 61.0 61.321 -148.647 259.4 918.2 + 5 1 16 7 13 13 0 0 61.0 61.088 -147.249 239.3 919.1 + 6 1 16 7 13 13 0 0 61.0 60.933 -145.846 253.2 911.6 + 7 1 16 7 13 13 0 0 61.0 60.948 -144.721 286.5 899.7 + 8 1 16 7 13 13 0 0 61.0 61.139 -143.792 345.8 882.5 + 1 1 16 7 13 14 0 0 62.0 60.771 -147.872 235.2 931.2 + 2 1 16 7 13 14 0 0 62.0 60.865 -147.694 201.0 932.0 + 3 1 16 7 13 14 0 0 62.0 61.219 -148.726 225.8 925.0 + 4 1 16 7 13 14 0 0 62.0 61.343 -148.719 248.3 919.6 + 5 1 16 7 13 14 0 0 62.0 61.099 -147.322 228.0 921.0 + 6 1 16 7 13 14 0 0 62.0 60.932 -145.920 235.5 914.5 + 7 1 16 7 13 14 0 0 62.0 60.939 -144.796 262.3 903.5 + 8 1 16 7 13 14 0 0 62.0 61.125 -143.861 315.2 887.0 + 1 1 16 7 13 15 0 0 63.0 60.794 -147.903 224.9 932.3 + 2 1 16 7 13 15 0 0 63.0 60.883 -147.725 192.1 933.1 + 3 1 16 7 13 15 0 0 63.0 61.248 -148.760 215.1 926.0 + 4 1 16 7 13 15 0 0 63.0 61.374 -148.762 236.7 920.7 + 5 1 16 7 13 15 0 0 63.0 61.119 -147.371 217.6 922.4 + 6 1 16 7 13 15 0 0 63.0 60.939 -145.970 219.6 916.8 + 7 1 16 7 13 15 0 0 63.0 60.940 -144.850 240.9 906.6 + 8 1 16 7 13 15 0 0 63.0 61.121 -143.913 288.4 890.7 + 1 1 16 7 13 16 0 0 64.0 60.823 -147.910 214.8 933.1 + 2 1 16 7 13 16 0 0 64.0 60.907 -147.734 183.4 933.9 + 3 1 16 7 13 16 0 0 64.0 61.285 -148.766 203.9 926.7 + 4 1 16 7 13 16 0 0 64.0 61.414 -148.775 224.6 921.6 + 5 1 16 7 13 16 0 0 64.0 61.145 -147.395 207.7 923.4 + 6 1 16 7 13 16 0 0 64.0 60.954 -145.998 205.3 918.7 + 7 1 16 7 13 16 0 0 64.0 60.948 -144.884 221.9 909.1 + 8 1 16 7 13 16 0 0 64.0 61.126 -143.948 264.8 893.7 + 1 1 16 7 13 17 0 0 65.0 60.859 -147.896 204.8 933.7 + 2 1 16 7 13 17 0 0 65.0 60.937 -147.721 175.0 934.4 + 3 1 16 7 13 17 0 0 65.0 61.329 -148.745 192.3 927.3 + 4 1 16 7 13 17 0 0 65.0 61.461 -148.759 212.0 922.1 + 5 1 16 7 13 17 0 0 65.0 61.180 -147.395 198.4 924.0 + 6 1 16 7 13 17 0 0 65.0 60.976 -146.005 192.2 920.0 + 7 1 16 7 13 17 0 0 65.0 60.965 -144.898 204.9 911.1 + 8 1 16 7 13 17 0 0 65.0 61.140 -143.965 244.1 896.1 + 9 1 16 7 13 17 0 0 65.0 61.311 -143.273 474.5 863.3 + 1 1 16 7 13 18 0 0 66.0 60.901 -147.860 195.0 934.0 + 2 1 16 7 13 18 0 0 66.0 60.973 -147.688 166.8 934.7 + 3 1 16 7 13 18 0 0 66.0 61.381 -148.697 180.2 927.6 + 4 1 16 7 13 18 0 0 66.0 61.516 -148.715 198.9 922.4 + 5 1 16 7 13 18 0 0 66.0 61.221 -147.371 189.5 924.2 + 6 1 16 7 13 18 0 0 66.0 61.004 -145.992 180.4 921.0 + 7 1 16 7 13 18 0 0 66.0 60.988 -144.893 189.8 912.5 + 8 1 16 7 13 18 0 0 66.0 61.163 -143.965 225.9 897.9 + 9 1 16 7 13 18 0 0 66.0 61.344 -143.277 452.3 865.2 + 1 1 16 7 13 19 0 0 67.0 60.947 -147.810 185.8 934.0 + 2 1 16 7 13 19 0 0 67.0 61.014 -147.639 159.0 934.7 + 3 1 16 7 13 19 0 0 67.0 61.434 -148.634 168.4 927.5 + 4 1 16 7 13 19 0 0 67.0 61.573 -148.654 186.2 922.4 + 5 1 16 7 13 19 0 0 67.0 61.267 -147.329 181.0 923.9 + 6 1 16 7 13 19 0 0 67.0 61.037 -145.960 169.7 921.4 + 7 1 16 7 13 19 0 0 67.0 61.016 -144.869 176.5 913.4 + 8 1 16 7 13 19 0 0 67.0 61.192 -143.944 209.6 899.0 + 9 1 16 7 13 19 0 0 67.0 61.383 -143.258 431.7 866.5 + 1 1 16 7 13 20 0 0 68.0 60.995 -147.749 176.9 933.8 + 2 1 16 7 13 20 0 0 68.0 61.058 -147.578 151.7 934.4 + 3 1 16 7 13 20 0 0 68.0 61.486 -148.565 157.6 927.4 + 4 1 16 7 13 20 0 0 68.0 61.627 -148.587 174.4 922.3 + 5 1 16 7 13 20 0 0 68.0 61.314 -147.273 172.9 923.4 + 6 1 16 7 13 20 0 0 68.0 61.073 -145.909 159.8 921.4 + 7 1 16 7 13 20 0 0 68.0 61.046 -144.822 164.5 913.8 + 8 1 16 7 13 20 0 0 68.0 61.222 -143.899 194.8 899.7 + 9 1 16 7 13 20 0 0 68.0 61.420 -143.215 411.8 867.6 + 1 1 16 7 13 21 0 0 69.0 61.046 -147.678 168.7 933.5 + 2 1 16 7 13 21 0 0 69.0 61.106 -147.505 145.0 933.9 + 3 1 16 7 13 21 0 0 69.0 61.535 -148.489 147.8 927.1 + 4 1 16 7 13 21 0 0 69.0 61.677 -148.512 163.8 922.1 + 5 1 16 7 13 21 0 0 69.0 61.362 -147.203 165.1 922.8 + 6 1 16 7 13 21 0 0 69.0 61.112 -145.838 150.8 921.2 + 7 1 16 7 13 21 0 0 69.0 61.080 -144.751 153.8 913.9 + 8 1 16 7 13 21 0 0 69.0 61.253 -143.830 181.5 900.0 + 9 1 16 7 13 21 0 0 69.0 61.455 -143.145 392.7 868.4 + 1 1 16 7 13 22 0 0 70.0 61.099 -147.595 161.0 932.9 + 2 1 16 7 13 22 0 0 70.0 61.156 -147.417 138.6 932.9 + 3 1 16 7 13 22 0 0 70.0 61.583 -148.403 138.9 926.7 + 4 1 16 7 13 22 0 0 70.0 61.724 -148.429 154.2 921.8 + 5 1 16 7 13 22 0 0 70.0 61.412 -147.116 157.7 921.9 + 6 1 16 7 13 22 0 0 70.0 61.155 -145.744 142.5 920.5 + 7 1 16 7 13 22 0 0 70.0 61.117 -144.654 144.2 913.5 + 8 1 16 7 13 22 0 0 70.0 61.287 -143.734 169.7 900.0 + 9 1 16 7 13 22 0 0 70.0 61.488 -143.049 374.7 869.0 + 1 1 16 7 13 23 0 0 71.0 61.155 -147.496 153.9 932.1 + 2 1 16 7 13 23 0 0 71.0 61.210 -147.313 132.4 931.7 + 3 1 16 7 13 23 0 0 71.0 61.629 -148.305 131.1 926.2 + 4 1 16 7 13 23 0 0 71.0 61.769 -148.334 145.7 921.3 + 5 1 16 7 13 23 0 0 71.0 61.463 -147.011 150.8 920.8 + 6 1 16 7 13 23 0 0 71.0 61.201 -145.625 134.8 919.6 + 7 1 16 7 13 23 0 0 71.0 61.159 -144.529 135.5 912.7 + 8 1 16 7 13 23 0 0 71.0 61.324 -143.610 159.4 899.6 + 9 1 16 7 13 23 0 0 71.0 61.520 -142.924 358.0 869.4 + 1 1 16 7 14 0 0 0 72.0 61.213 -147.381 147.1 930.7 + 2 1 16 7 14 0 0 0 72.0 61.266 -147.190 126.6 930.2 + 3 1 16 7 14 0 0 0 72.0 61.674 -148.195 124.2 925.4 + 4 1 16 7 14 0 0 0 72.0 61.811 -148.226 138.2 920.6 + 5 1 16 7 14 0 0 0 72.0 61.514 -146.886 144.1 919.5 + 6 1 16 7 14 0 0 0 72.0 61.251 -145.478 127.8 918.2 + 7 1 16 7 14 0 0 0 72.0 61.204 -144.375 127.9 911.5 + 8 1 16 7 14 0 0 0 72.0 61.363 -143.456 150.3 898.7 + 9 1 16 7 14 0 0 0 72.0 61.549 -142.771 342.9 869.4 + 2 1 16 7 14 1 0 0 73.0 61.323 -147.058 122.1 928.4 + 3 1 16 7 14 1 0 0 73.0 61.719 -148.076 119.6 924.3 + 4 1 16 7 14 1 0 0 73.0 61.852 -148.109 133.3 919.6 + 5 1 16 7 14 1 0 0 73.0 61.564 -146.749 139.2 917.8 + 6 1 16 7 14 1 0 0 73.0 61.300 -145.316 122.5 916.5 + 7 1 16 7 14 1 0 0 73.0 61.249 -144.204 122.2 909.9 + 8 1 16 7 14 1 0 0 73.0 61.402 -143.285 143.8 897.4 + 9 1 16 7 14 1 0 0 73.0 61.578 -142.598 332.1 869.0 + 10 1 16 7 14 1 0 0 73.0 61.327 -143.110 485.9 861.9 + 2 1 16 7 14 2 0 0 74.0 61.376 -146.928 120.0 926.4 + 3 1 16 7 14 2 0 0 74.0 61.763 -147.955 118.3 922.8 + 4 1 16 7 14 2 0 0 74.0 61.893 -147.989 132.0 918.2 + 5 1 16 7 14 2 0 0 74.0 61.612 -146.612 137.0 916.0 + 6 1 16 7 14 2 0 0 74.0 61.344 -145.150 119.9 914.5 + 7 1 16 7 14 2 0 0 74.0 61.290 -144.031 119.5 908.1 + 8 1 16 7 14 2 0 0 74.0 61.436 -143.110 141.0 895.9 + 9 1 16 7 14 2 0 0 74.0 61.606 -142.417 327.7 868.1 + 10 1 16 7 14 2 0 0 74.0 61.364 -142.960 479.3 860.9 + 2 1 16 7 14 3 0 0 75.0 61.426 -146.799 120.2 924.3 + 3 1 16 7 14 3 0 0 75.0 61.807 -147.834 119.9 921.0 + 4 1 16 7 14 3 0 0 75.0 61.934 -147.868 133.9 916.4 + 5 1 16 7 14 3 0 0 75.0 61.655 -146.475 137.5 913.9 + 6 1 16 7 14 3 0 0 75.0 61.383 -144.982 119.9 912.5 + 7 1 16 7 14 3 0 0 75.0 61.325 -143.856 119.7 906.1 + 8 1 16 7 14 3 0 0 75.0 61.467 -142.930 141.7 894.1 + 9 1 16 7 14 3 0 0 75.0 61.632 -142.228 329.6 867.0 + 10 1 16 7 14 3 0 0 75.0 61.401 -142.801 479.7 859.1 + 2 1 16 7 14 4 0 0 76.0 61.473 -146.670 122.8 922.0 + 3 1 16 7 14 4 0 0 76.0 61.850 -147.715 123.9 918.9 + 4 1 16 7 14 4 0 0 76.0 61.974 -147.748 138.7 914.3 + 5 1 16 7 14 4 0 0 76.0 61.695 -146.337 140.8 911.7 + 6 1 16 7 14 4 0 0 76.0 61.416 -144.811 122.5 910.3 + 7 1 16 7 14 4 0 0 76.0 61.357 -143.677 122.8 904.0 + 8 1 16 7 14 4 0 0 76.0 61.495 -142.744 146.0 891.9 + 9 1 16 7 14 4 0 0 76.0 61.656 -142.031 337.3 865.2 + 10 1 16 7 14 4 0 0 76.0 61.437 -142.634 487.0 856.6 + 2 1 16 7 14 5 0 0 77.0 61.516 -146.543 128.0 919.5 + 3 1 16 7 14 5 0 0 77.0 61.892 -147.600 130.4 916.6 + 4 1 16 7 14 5 0 0 77.0 62.012 -147.631 146.2 911.9 + 5 1 16 7 14 5 0 0 77.0 61.731 -146.199 147.1 909.2 + 6 1 16 7 14 5 0 0 77.0 61.446 -144.639 128.1 907.9 + 7 1 16 7 14 5 0 0 77.0 61.384 -143.494 129.2 901.5 + 8 1 16 7 14 5 0 0 77.0 61.520 -142.552 154.2 889.3 + 9 1 16 7 14 5 0 0 77.0 61.678 -141.824 350.6 862.9 + 10 1 16 7 14 5 0 0 77.0 61.472 -142.458 500.8 853.6 + 2 1 16 7 14 6 0 0 78.0 61.556 -146.415 136.1 916.8 + 3 1 16 7 14 6 0 0 78.0 61.931 -147.489 139.2 914.1 + 4 1 16 7 14 6 0 0 78.0 62.049 -147.517 156.5 909.3 + 5 1 16 7 14 6 0 0 78.0 61.763 -146.058 156.9 906.4 + 6 1 16 7 14 6 0 0 78.0 61.472 -144.466 137.0 905.2 + 7 1 16 7 14 6 0 0 78.0 61.410 -143.307 139.4 898.7 + 8 1 16 7 14 6 0 0 78.0 61.543 -142.353 166.8 886.8 + 9 1 16 7 14 6 0 0 78.0 61.696 -141.607 369.4 860.1 + 10 1 16 7 14 6 0 0 78.0 61.504 -142.275 520.8 850.4 + 2 1 16 7 14 7 0 0 79.0 61.590 -146.296 145.5 914.4 + 3 1 16 7 14 7 0 0 79.0 61.967 -147.392 149.0 911.9 + 4 1 16 7 14 7 0 0 79.0 62.082 -147.418 167.8 907.0 + 5 1 16 7 14 7 0 0 79.0 61.790 -145.926 168.4 904.0 + 6 1 16 7 14 7 0 0 79.0 61.492 -144.299 147.6 902.8 + 7 1 16 7 14 7 0 0 79.0 61.430 -143.123 151.3 896.0 + 8 1 16 7 14 7 0 0 79.0 61.560 -142.157 180.8 884.6 + 9 1 16 7 14 7 0 0 79.0 61.707 -141.388 388.6 857.6 + 10 1 16 7 14 7 0 0 79.0 61.529 -142.091 541.7 847.5 + 2 1 16 7 14 8 0 0 80.0 61.616 -146.195 154.1 912.5 + 3 1 16 7 14 8 0 0 80.0 61.998 -147.320 157.9 910.1 + 4 1 16 7 14 8 0 0 80.0 62.110 -147.344 178.0 905.1 + 5 1 16 7 14 8 0 0 80.0 61.809 -145.812 178.8 902.0 + 6 1 16 7 14 8 0 0 80.0 61.504 -144.147 157.3 900.8 + 7 1 16 7 14 8 0 0 80.0 61.442 -142.952 162.2 893.7 + 8 1 16 7 14 8 0 0 80.0 61.569 -141.972 192.8 882.9 + 9 1 16 7 14 8 0 0 80.0 61.708 -141.174 403.6 855.7 + 10 1 16 7 14 8 0 0 80.0 61.543 -141.910 558.2 845.3 + 3 1 16 7 14 9 0 0 81.0 62.024 -147.271 165.6 908.7 + 4 1 16 7 14 9 0 0 81.0 62.134 -147.295 186.9 903.7 + 5 1 16 7 14 9 0 0 81.0 61.819 -145.716 188.0 900.5 + 6 1 16 7 14 9 0 0 81.0 61.507 -144.010 165.9 899.2 + 7 1 16 7 14 9 0 0 81.0 61.446 -142.792 171.8 891.8 + 8 1 16 7 14 9 0 0 81.0 61.567 -141.795 202.4 881.7 + 9 1 16 7 14 9 0 0 81.0 61.697 -140.964 414.2 854.5 + 10 1 16 7 14 9 0 0 81.0 61.546 -141.731 570.3 843.7 + 11 1 16 7 14 9 0 0 81.0 61.319 -143.107 515.1 860.6 + 3 1 16 7 14 10 0 0 82.0 62.046 -147.248 172.0 907.8 + 4 1 16 7 14 10 0 0 82.0 62.153 -147.271 194.3 902.7 + 5 1 16 7 14 10 0 0 82.0 61.822 -145.638 195.6 899.4 + 6 1 16 7 14 10 0 0 82.0 61.503 -143.886 172.9 898.0 + 7 1 16 7 14 10 0 0 82.0 61.442 -142.642 179.6 890.3 + 8 1 16 7 14 10 0 0 82.0 61.556 -141.628 209.4 881.0 + 9 1 16 7 14 10 0 0 82.0 61.676 -140.757 420.7 854.0 + 10 1 16 7 14 10 0 0 82.0 61.537 -141.554 578.1 842.8 + 11 1 16 7 14 10 0 0 82.0 61.337 -142.967 526.5 858.4 + 3 1 16 7 14 11 0 0 83.0 62.063 -147.251 176.7 907.3 + 4 1 16 7 14 11 0 0 83.0 62.168 -147.273 199.8 902.2 + 5 1 16 7 14 11 0 0 83.0 61.817 -145.577 201.4 898.9 + 6 1 16 7 14 11 0 0 83.0 61.490 -143.776 178.2 897.4 + 7 1 16 7 14 11 0 0 83.0 61.431 -142.502 185.3 889.3 + 8 1 16 7 14 11 0 0 83.0 61.535 -141.470 213.7 880.8 + 9 1 16 7 14 11 0 0 83.0 61.645 -140.553 423.1 854.0 + 10 1 16 7 14 11 0 0 83.0 61.519 -141.378 581.7 842.6 + 11 1 16 7 14 11 0 0 83.0 61.345 -142.830 533.8 856.8 + 3 1 16 7 14 12 0 0 84.0 62.076 -147.281 179.7 907.4 + 4 1 16 7 14 12 0 0 84.0 62.180 -147.302 203.3 902.3 + 5 1 16 7 14 12 0 0 84.0 61.804 -145.535 205.2 899.0 + 6 1 16 7 14 12 0 0 84.0 61.469 -143.678 181.4 897.2 + 7 1 16 7 14 12 0 0 84.0 61.412 -142.371 188.7 889.2 + 8 1 16 7 14 12 0 0 84.0 61.505 -141.320 215.3 881.0 + 9 1 16 7 14 12 0 0 84.0 61.604 -140.352 421.7 854.6 + 10 1 16 7 14 12 0 0 84.0 61.490 -141.202 581.2 842.9 + 11 1 16 7 14 12 0 0 84.0 61.342 -142.696 537.3 855.9 + 3 1 16 7 14 13 0 0 85.0 62.092 -147.317 182.1 907.0 + 4 1 16 7 14 13 0 0 85.0 62.193 -147.337 206.2 901.9 + 5 1 16 7 14 13 0 0 85.0 61.791 -145.493 208.7 898.8 + 6 1 16 7 14 13 0 0 85.0 61.449 -143.577 184.7 896.7 + 7 1 16 7 14 13 0 0 85.0 61.391 -142.236 192.1 888.9 + 8 1 16 7 14 13 0 0 85.0 61.473 -141.168 217.2 881.1 + 9 1 16 7 14 13 0 0 85.0 61.558 -140.147 420.8 855.0 + 10 1 16 7 14 13 0 0 85.0 61.455 -141.021 581.2 843.2 + 11 1 16 7 14 13 0 0 85.0 61.335 -142.555 540.9 854.8 + 3 1 16 7 14 14 0 0 86.0 62.112 -147.335 185.7 906.3 + 4 1 16 7 14 14 0 0 86.0 62.211 -147.353 210.3 901.2 + 5 1 16 7 14 14 0 0 86.0 61.785 -145.433 214.0 898.1 + 6 1 16 7 14 14 0 0 86.0 61.438 -143.456 190.3 895.7 + 7 1 16 7 14 14 0 0 86.0 61.377 -142.082 198.3 888.1 + 8 1 16 7 14 14 0 0 86.0 61.445 -140.997 222.1 880.7 + 9 1 16 7 14 14 0 0 86.0 61.511 -139.933 424.4 855.1 + 10 1 16 7 14 14 0 0 86.0 61.420 -140.831 585.7 842.9 + 11 1 16 7 14 14 0 0 86.0 61.328 -142.399 548.6 853.5 + 3 1 16 7 14 15 0 0 87.0 62.137 -147.334 190.3 905.2 + 4 1 16 7 14 15 0 0 87.0 62.234 -147.351 215.6 900.1 + 5 1 16 7 14 15 0 0 87.0 61.787 -145.353 221.1 896.8 + 6 1 16 7 14 15 0 0 87.0 61.435 -143.314 198.6 894.0 + 7 1 16 7 14 15 0 0 87.0 61.368 -141.909 207.3 886.9 + 8 1 16 7 14 15 0 0 87.0 61.420 -140.809 230.4 879.8 + 9 1 16 7 14 15 0 0 87.0 61.465 -139.712 432.4 854.9 + 10 1 16 7 14 15 0 0 87.0 61.383 -140.630 594.8 842.1 + 11 1 16 7 14 15 0 0 87.0 61.320 -142.229 560.5 852.0 + 3 1 16 7 14 16 0 0 88.0 62.166 -147.314 196.0 903.7 + 4 1 16 7 14 16 0 0 88.0 62.261 -147.330 222.3 898.6 + 5 1 16 7 14 16 0 0 88.0 61.797 -145.252 230.3 895.0 + 6 1 16 7 14 16 0 0 88.0 61.440 -143.151 209.7 891.6 + 7 1 16 7 14 16 0 0 88.0 61.362 -141.717 219.4 885.2 + 8 1 16 7 14 16 0 0 88.0 61.397 -140.603 242.1 878.4 + 9 1 16 7 14 16 0 0 88.0 61.419 -139.485 444.7 854.2 + 10 1 16 7 14 16 0 0 88.0 61.345 -140.421 608.6 840.8 + 11 1 16 7 14 16 0 0 88.0 61.311 -142.047 576.5 850.0 + 4 1 16 7 14 17 0 0 89.0 62.292 -147.288 230.5 896.7 + 5 1 16 7 14 17 0 0 89.0 61.812 -145.131 242.1 892.6 + 6 1 16 7 14 17 0 0 89.0 61.450 -142.966 224.4 888.6 + 7 1 16 7 14 17 0 0 89.0 61.358 -141.505 235.0 883.0 + 8 1 16 7 14 17 0 0 89.0 61.376 -140.378 257.6 876.5 + 9 1 16 7 14 17 0 0 89.0 61.372 -139.254 461.4 853.1 + 10 1 16 7 14 17 0 0 89.0 61.306 -140.205 627.2 839.1 + 11 1 16 7 14 17 0 0 89.0 61.301 -141.854 596.8 847.5 + 12 1 16 7 14 17 0 0 89.0 61.304 -143.074 520.2 861.6 + 4 1 16 7 14 18 0 0 90.0 62.326 -147.225 240.4 894.3 + 5 1 16 7 14 18 0 0 90.0 61.835 -144.988 256.8 889.6 + 6 1 16 7 14 18 0 0 90.0 61.464 -142.758 243.0 884.9 + 7 1 16 7 14 18 0 0 90.0 61.356 -141.276 254.4 880.3 + 8 1 16 7 14 18 0 0 90.0 61.354 -140.137 277.3 874.2 + 9 1 16 7 14 18 0 0 90.0 61.326 -139.018 482.6 851.5 + 10 1 16 7 14 18 0 0 90.0 61.264 -139.983 650.8 836.8 + 11 1 16 7 14 18 0 0 90.0 61.289 -141.652 621.5 844.7 + 12 1 16 7 14 18 0 0 90.0 61.316 -142.883 544.9 857.4 + 4 1 16 7 14 19 0 0 91.0 62.360 -147.140 251.0 891.6 + 5 1 16 7 14 19 0 0 91.0 61.857 -144.821 273.3 886.1 + 6 1 16 7 14 19 0 0 91.0 61.474 -142.526 264.0 880.9 + 7 1 16 7 14 19 0 0 91.0 61.348 -141.026 275.9 877.4 + 8 1 16 7 14 19 0 0 91.0 61.328 -139.876 299.1 871.7 + 9 1 16 7 14 19 0 0 91.0 61.276 -138.771 505.5 849.7 + 10 1 16 7 14 19 0 0 91.0 61.219 -139.749 676.0 834.8 + 11 1 16 7 14 19 0 0 91.0 61.272 -141.436 647.5 841.8 + 12 1 16 7 14 19 0 0 91.0 61.321 -142.675 571.0 853.3 + 4 1 16 7 14 20 0 0 92.0 62.391 -147.029 261.3 888.9 + 5 1 16 7 14 20 0 0 92.0 61.873 -144.629 289.9 882.7 + 6 1 16 7 14 20 0 0 92.0 61.474 -142.269 285.1 877.8 + 7 1 16 7 14 20 0 0 92.0 61.330 -140.753 297.1 874.6 + 8 1 16 7 14 20 0 0 92.0 61.294 -139.597 320.4 869.6 + 9 1 16 7 14 20 0 0 92.0 61.223 -138.505 527.3 848.1 + 10 1 16 7 14 20 0 0 92.0 61.170 -139.495 699.8 832.9 + 11 1 16 7 14 20 0 0 92.0 61.247 -141.199 671.4 839.1 + 12 1 16 7 14 20 0 0 92.0 61.316 -142.447 595.0 849.6 + 4 1 16 7 14 21 0 0 93.0 62.417 -146.893 271.2 886.2 + 5 1 16 7 14 21 0 0 93.0 61.882 -144.411 306.4 879.3 + 6 1 16 7 14 21 0 0 93.0 61.463 -141.990 305.7 875.0 + 7 1 16 7 14 21 0 0 93.0 61.302 -140.458 318.0 871.8 + 8 1 16 7 14 21 0 0 93.0 61.255 -139.299 340.9 867.8 + 9 1 16 7 14 21 0 0 93.0 61.167 -138.219 548.2 846.6 + 10 1 16 7 14 21 0 0 93.0 61.117 -139.221 722.2 831.2 + 11 1 16 7 14 21 0 0 93.0 61.215 -140.939 693.5 836.7 + 12 1 16 7 14 21 0 0 93.0 61.302 -142.197 617.0 846.9 + 4 1 16 7 14 22 0 0 94.0 62.439 -146.732 280.6 883.5 + 5 1 16 7 14 22 0 0 94.0 61.882 -144.168 322.9 876.0 + 6 1 16 7 14 22 0 0 94.0 61.442 -141.689 325.9 872.4 + 7 1 16 7 14 22 0 0 94.0 61.266 -140.140 338.7 869.2 + 8 1 16 7 14 22 0 0 94.0 61.211 -138.982 360.7 866.1 + 9 1 16 7 14 22 0 0 94.0 61.109 -137.912 568.4 845.1 + 10 1 16 7 14 22 0 0 94.0 61.062 -138.925 743.4 829.7 + 11 1 16 7 14 22 0 0 94.0 61.176 -140.656 713.9 834.4 + 12 1 16 7 14 22 0 0 94.0 61.279 -141.926 636.9 844.6 + 4 1 16 7 14 23 0 0 95.0 62.454 -146.545 289.5 880.8 + 5 1 16 7 14 23 0 0 95.0 61.872 -143.900 339.2 872.8 + 6 1 16 7 14 23 0 0 95.0 61.412 -141.365 345.7 869.9 + 7 1 16 7 14 23 0 0 95.0 61.223 -139.800 359.1 867.1 + 8 1 16 7 14 23 0 0 95.0 61.165 -138.646 379.6 864.6 + 9 1 16 7 14 23 0 0 95.0 61.049 -137.582 588.2 843.8 + 10 1 16 7 14 23 0 0 95.0 61.004 -138.605 763.6 828.2 + 11 1 16 7 14 23 0 0 95.0 61.131 -140.347 732.7 832.2 + 12 1 16 7 14 23 0 0 95.0 61.249 -141.632 654.7 842.5 + 4 1 16 7 15 0 0 0 96.0 62.464 -146.333 297.9 878.1 + 5 1 16 7 15 0 0 0 96.0 61.852 -143.606 355.4 869.7 + 6 1 16 7 15 0 0 0 96.0 61.373 -141.019 364.9 867.5 + 7 1 16 7 15 0 0 0 96.0 61.175 -139.440 378.6 865.4 + 8 1 16 7 15 0 0 0 96.0 61.116 -138.292 397.5 863.1 + 9 1 16 7 15 0 0 0 96.0 60.988 -137.229 607.6 842.0 + 10 1 16 7 15 0 0 0 96.0 60.944 -138.261 783.2 826.8 + 11 1 16 7 15 0 0 0 96.0 61.080 -140.011 750.1 830.1 + 12 1 16 7 15 0 0 0 96.0 61.211 -141.314 670.7 840.5 + 5 1 16 7 15 1 0 0 97.0 61.820 -143.302 373.9 866.5 + 6 1 16 7 15 1 0 0 97.0 61.323 -140.669 385.2 865.1 + 7 1 16 7 15 1 0 0 97.0 61.120 -139.085 397.7 863.9 + 8 1 16 7 15 1 0 0 97.0 61.061 -137.944 414.8 861.6 + 9 1 16 7 15 1 0 0 97.0 60.920 -136.886 626.7 839.9 + 10 1 16 7 15 1 0 0 97.0 60.876 -137.920 803.0 825.2 + 11 1 16 7 15 1 0 0 97.0 61.020 -139.676 768.7 828.8 + 12 1 16 7 15 1 0 0 97.0 61.164 -140.992 687.8 838.5 + 13 1 16 7 15 1 0 0 97.0 61.267 -142.945 514.8 862.5 + 5 1 16 7 15 2 0 0 98.0 61.776 -143.007 396.3 863.3 + 6 1 16 7 15 2 0 0 98.0 61.261 -140.339 407.3 862.9 + 7 1 16 7 15 2 0 0 98.0 61.054 -138.758 417.1 862.5 + 8 1 16 7 15 2 0 0 98.0 60.992 -137.626 432.1 860.2 + 9 1 16 7 15 2 0 0 98.0 60.838 -136.578 645.8 838.2 + 10 1 16 7 15 2 0 0 98.0 60.794 -137.611 823.6 823.6 + 11 1 16 7 15 2 0 0 98.0 60.948 -139.371 788.8 827.6 + 12 1 16 7 15 2 0 0 98.0 61.102 -140.691 707.5 836.6 + 13 1 16 7 15 2 0 0 98.0 61.232 -142.649 533.5 859.3 + 5 1 16 7 15 3 0 0 99.0 61.720 -142.723 422.3 860.1 + 6 1 16 7 15 3 0 0 99.0 61.185 -140.032 431.1 860.7 + 7 1 16 7 15 3 0 0 99.0 60.975 -138.460 436.6 861.2 + 8 1 16 7 15 3 0 0 99.0 60.910 -137.339 448.9 858.9 + 9 1 16 7 15 3 0 0 99.0 60.743 -136.305 664.2 836.8 + 10 1 16 7 15 3 0 0 99.0 60.698 -137.337 844.5 822.1 + 11 1 16 7 15 3 0 0 99.0 60.862 -139.096 810.4 826.3 + 12 1 16 7 15 3 0 0 99.0 61.027 -140.414 729.9 834.7 + 13 1 16 7 15 3 0 0 99.0 61.182 -142.365 555.8 856.4 + 5 1 16 7 15 4 0 0 100.0 61.652 -142.454 451.4 857.0 + 6 1 16 7 15 4 0 0 100.0 61.096 -139.751 456.0 859.3 + 7 1 16 7 15 4 0 0 100.0 60.883 -138.190 456.1 860.1 + 8 1 16 7 15 4 0 0 100.0 60.815 -137.084 465.4 857.7 + 9 1 16 7 15 4 0 0 100.0 60.634 -136.065 681.9 835.8 + 10 1 16 7 15 4 0 0 100.0 60.590 -137.098 865.2 820.7 + 11 1 16 7 15 4 0 0 100.0 60.763 -138.851 833.4 825.1 + 12 1 16 7 15 4 0 0 100.0 60.938 -140.164 754.5 832.9 + 13 1 16 7 15 4 0 0 100.0 61.120 -142.099 581.2 854.0 + 5 1 16 7 15 5 0 0 101.0 61.574 -142.205 483.4 854.6 + 6 1 16 7 15 5 0 0 101.0 60.995 -139.498 481.5 858.0 + 7 1 16 7 15 5 0 0 101.0 60.776 -137.950 475.4 859.1 + 8 1 16 7 15 5 0 0 101.0 60.706 -136.860 481.6 856.9 + 9 1 16 7 15 5 0 0 101.0 60.510 -135.856 698.6 835.1 + 10 1 16 7 15 5 0 0 101.0 60.469 -136.892 885.5 819.7 + 11 1 16 7 15 5 0 0 101.0 60.650 -138.638 857.4 823.9 + 12 1 16 7 15 5 0 0 101.0 60.834 -139.940 781.2 831.3 + 13 1 16 7 15 5 0 0 101.0 61.045 -141.852 609.6 851.6 + 5 1 16 7 15 6 0 0 102.0 61.484 -141.979 517.6 852.3 + 6 1 16 7 15 6 0 0 102.0 60.880 -139.273 507.5 856.8 + 7 1 16 7 15 6 0 0 102.0 60.654 -137.739 494.6 858.4 + 8 1 16 7 15 6 0 0 102.0 60.583 -136.665 497.5 856.4 + 9 1 16 7 15 6 0 0 102.0 60.373 -135.676 714.2 834.8 + 10 1 16 7 15 6 0 0 102.0 60.335 -136.717 905.3 818.9 + 11 1 16 7 15 6 0 0 102.0 60.522 -138.455 882.4 822.8 + 12 1 16 7 15 6 0 0 102.0 60.715 -139.746 809.8 830.0 + 13 1 16 7 15 6 0 0 102.0 60.956 -141.628 640.6 849.4 + 5 1 16 7 15 7 0 0 103.0 61.388 -141.766 550.6 850.2 + 6 1 16 7 15 7 0 0 103.0 60.758 -139.063 532.1 855.8 + 7 1 16 7 15 7 0 0 103.0 60.524 -137.542 513.2 858.2 + 8 1 16 7 15 7 0 0 103.0 60.454 -136.484 512.9 856.3 + 9 1 16 7 15 7 0 0 103.0 60.231 -135.508 729.1 834.6 + 10 1 16 7 15 7 0 0 103.0 60.197 -136.556 924.3 818.6 + 11 1 16 7 15 7 0 0 103.0 60.389 -138.286 907.0 822.1 + 12 1 16 7 15 7 0 0 103.0 60.590 -139.565 837.2 828.8 + 13 1 16 7 15 7 0 0 103.0 60.858 -141.415 670.7 847.4 + 5 1 16 7 15 8 0 0 104.0 61.288 -141.558 578.9 848.6 + 6 1 16 7 15 8 0 0 104.0 60.635 -138.853 554.0 855.1 + 7 1 16 7 15 8 0 0 104.0 60.397 -137.344 530.3 857.9 + 8 1 16 7 15 8 0 0 104.0 60.327 -136.302 528.0 856.0 + 9 1 16 7 15 8 0 0 104.0 60.094 -135.338 744.4 834.3 + 10 1 16 7 15 8 0 0 104.0 60.065 -136.391 942.4 818.2 + 11 1 16 7 15 8 0 0 104.0 60.259 -138.114 929.4 821.5 + 12 1 16 7 15 8 0 0 104.0 60.466 -139.382 861.7 827.9 + 13 1 16 7 15 8 0 0 104.0 60.756 -141.205 696.5 845.9 + 6 1 16 7 15 9 0 0 105.0 60.512 -138.645 573.4 854.7 + 7 1 16 7 15 9 0 0 105.0 60.272 -137.146 546.5 857.6 + 8 1 16 7 15 9 0 0 105.0 60.203 -136.119 542.9 855.7 + 9 1 16 7 15 9 0 0 105.0 59.963 -135.166 760.2 834.2 + 10 1 16 7 15 9 0 0 105.0 59.938 -136.224 960.2 818.5 + 11 1 16 7 15 9 0 0 105.0 60.132 -137.939 949.9 821.1 + 12 1 16 7 15 9 0 0 105.0 60.344 -139.197 883.2 827.2 + 13 1 16 7 15 9 0 0 105.0 60.650 -140.994 718.1 844.8 + 14 1 16 7 15 9 0 0 105.0 61.211 -143.020 522.9 862.9 + 6 1 16 7 15 10 0 0 106.0 60.391 -138.436 590.8 854.4 + 7 1 16 7 15 10 0 0 106.0 60.150 -136.948 562.2 857.3 + 8 1 16 7 15 10 0 0 106.0 60.083 -135.934 558.1 855.2 + 9 1 16 7 15 10 0 0 106.0 59.839 -134.996 776.7 834.9 + 10 1 16 7 15 10 0 0 106.0 59.817 -136.058 977.4 819.4 + 11 1 16 7 15 10 0 0 106.0 60.010 -137.762 968.9 820.7 + 12 1 16 7 15 10 0 0 106.0 60.224 -139.010 901.9 826.8 + 13 1 16 7 15 10 0 0 106.0 60.541 -140.782 735.8 844.0 + 14 1 16 7 15 10 0 0 106.0 61.123 -142.791 541.0 861.5 + 6 1 16 7 15 11 0 0 107.0 60.271 -138.227 606.5 854.3 + 7 1 16 7 15 11 0 0 107.0 60.032 -136.748 577.6 856.8 + 8 1 16 7 15 11 0 0 107.0 59.966 -135.748 574.0 854.9 + 9 1 16 7 15 11 0 0 107.0 59.723 -134.827 793.1 834.8 + 10 1 16 7 15 11 0 0 107.0 59.702 -135.891 994.1 820.2 + 11 1 16 7 15 11 0 0 107.0 59.891 -137.584 986.9 822.0 + 12 1 16 7 15 11 0 0 107.0 60.106 -138.822 918.3 826.6 + 13 1 16 7 15 11 0 0 107.0 60.431 -140.568 749.9 843.4 + 14 1 16 7 15 11 0 0 107.0 61.029 -142.561 554.3 860.7 + 6 1 16 7 15 12 0 0 108.0 60.154 -138.017 620.9 854.3 + 7 1 16 7 15 12 0 0 108.0 59.918 -136.549 593.3 857.2 + 8 1 16 7 15 12 0 0 108.0 59.853 -135.561 590.7 855.4 + 9 1 16 7 15 12 0 0 108.0 59.613 -134.658 809.7 834.3 + 10 1 16 7 15 12 0 0 108.0 59.591 -135.724 1010.4 820.7 + 11 1 16 7 15 12 0 0 108.0 59.777 -137.404 1003.3 823.3 + 12 1 16 7 15 12 0 0 108.0 59.992 -138.632 932.6 826.6 + 13 1 16 7 15 12 0 0 108.0 60.319 -140.352 760.7 843.1 + 14 1 16 7 15 12 0 0 108.0 60.927 -142.329 562.9 860.9 + 6 1 16 7 15 13 0 0 109.0 60.042 -137.818 634.1 854.5 + 7 1 16 7 15 13 0 0 109.0 59.808 -136.358 608.2 858.3 + 8 1 16 7 15 13 0 0 109.0 59.745 -135.382 606.8 856.0 + 9 1 16 7 15 13 0 0 109.0 59.510 -134.499 824.8 834.1 + 10 1 16 7 15 13 0 0 109.0 59.485 -135.567 1025.7 821.4 + 11 1 16 7 15 13 0 0 109.0 59.665 -137.232 1018.3 824.4 + 12 1 16 7 15 13 0 0 109.0 59.881 -138.450 946.0 828.5 + 13 1 16 7 15 13 0 0 109.0 60.208 -140.144 770.0 843.1 + 14 1 16 7 15 13 0 0 109.0 60.824 -142.104 568.8 861.3 + 6 1 16 7 15 14 0 0 110.0 59.933 -137.639 645.4 855.8 + 7 1 16 7 15 14 0 0 110.0 59.701 -136.187 620.3 859.5 + 8 1 16 7 15 14 0 0 110.0 59.641 -135.223 619.7 856.9 + 9 1 16 7 15 14 0 0 110.0 59.412 -134.362 836.4 834.1 + 10 1 16 7 15 14 0 0 110.0 59.382 -135.430 1038.4 822.3 + 11 1 16 7 15 14 0 0 110.0 59.557 -137.079 1030.9 825.8 + 12 1 16 7 15 14 0 0 110.0 59.771 -138.285 957.5 830.4 + 13 1 16 7 15 14 0 0 110.0 60.098 -139.956 778.2 843.5 + 14 1 16 7 15 14 0 0 110.0 60.723 -141.894 574.0 861.9 + 6 1 16 7 15 15 0 0 111.0 59.828 -137.479 654.7 857.7 + 7 1 16 7 15 15 0 0 111.0 59.598 -136.036 629.8 860.8 + 8 1 16 7 15 15 0 0 111.0 59.541 -135.085 629.6 858.0 + 9 1 16 7 15 15 0 0 111.0 59.318 -134.246 844.6 834.5 + 10 1 16 7 15 15 0 0 111.0 59.283 -135.314 1048.6 823.3 + 11 1 16 7 15 15 0 0 111.0 59.450 -136.945 1041.7 827.2 + 12 1 16 7 15 15 0 0 111.0 59.663 -138.138 967.5 832.5 + 13 1 16 7 15 15 0 0 111.0 59.991 -139.787 785.3 844.5 + 14 1 16 7 15 15 0 0 111.0 60.624 -141.701 578.6 862.5 + 6 1 16 7 15 16 0 0 112.0 59.726 -137.338 661.9 859.6 + 7 1 16 7 15 16 0 0 112.0 59.500 -135.906 636.6 862.3 + 8 1 16 7 15 16 0 0 112.0 59.446 -134.968 636.3 859.2 + 9 1 16 7 15 16 0 0 112.0 59.230 -134.150 849.6 835.1 + 10 1 16 7 15 16 0 0 112.0 59.186 -135.218 1056.5 824.5 + 11 1 16 7 15 16 0 0 112.0 59.346 -136.828 1050.5 828.7 + 12 1 16 7 15 16 0 0 112.0 59.557 -138.008 975.9 834.5 + 13 1 16 7 15 16 0 0 112.0 59.886 -139.637 791.4 847.1 + 14 1 16 7 15 16 0 0 112.0 60.527 -141.527 582.3 863.1 + 7 1 16 7 15 17 0 0 113.0 59.406 -135.796 640.7 864.0 + 8 1 16 7 15 17 0 0 113.0 59.356 -134.870 639.8 860.3 + 9 1 16 7 15 17 0 0 113.0 59.146 -134.074 851.1 836.2 + 10 1 16 7 15 17 0 0 113.0 59.093 -135.141 1062.0 826.0 + 11 1 16 7 15 17 0 0 113.0 59.245 -136.729 1057.4 830.4 + 12 1 16 7 15 17 0 0 113.0 59.453 -137.895 982.9 836.7 + 13 1 16 7 15 17 0 0 113.0 59.784 -139.505 796.0 849.7 + 14 1 16 7 15 17 0 0 113.0 60.433 -141.373 585.0 864.0 + 15 1 16 7 15 17 0 0 113.0 61.203 -143.085 503.7 865.4 + 7 1 16 7 15 18 0 0 114.0 59.316 -135.705 642.2 865.9 + 8 1 16 7 15 18 0 0 114.0 59.271 -134.792 640.1 861.8 + 9 1 16 7 15 18 0 0 114.0 59.066 -134.017 849.5 837.6 + 10 1 16 7 15 18 0 0 114.0 59.002 -135.081 1064.9 827.6 + 11 1 16 7 15 18 0 0 114.0 59.146 -136.647 1062.3 832.3 + 12 1 16 7 15 18 0 0 114.0 59.350 -137.798 988.3 839.0 + 13 1 16 7 15 18 0 0 114.0 59.685 -139.390 799.1 852.4 + 14 1 16 7 15 18 0 0 114.0 60.342 -141.239 586.7 864.9 + 15 1 16 7 15 18 0 0 114.0 61.118 -142.933 506.5 865.8 + 7 1 16 7 15 19 0 0 115.0 59.226 -135.606 642.7 867.6 + 8 1 16 7 15 19 0 0 115.0 59.185 -134.705 639.4 863.0 + 9 1 16 7 15 19 0 0 115.0 58.985 -133.953 846.8 838.8 + 10 1 16 7 15 19 0 0 115.0 58.910 -135.014 1066.8 829.2 + 11 1 16 7 15 19 0 0 115.0 59.046 -136.557 1065.9 834.1 + 12 1 16 7 15 19 0 0 115.0 59.248 -137.692 992.1 841.2 + 13 1 16 7 15 19 0 0 115.0 59.586 -139.266 799.9 854.9 + 14 1 16 7 15 19 0 0 115.0 60.253 -141.098 585.6 866.0 + 15 1 16 7 15 19 0 0 115.0 61.034 -142.772 506.6 866.5 + 7 1 16 7 15 20 0 0 116.0 59.130 -135.470 644.1 869.1 + 8 1 16 7 15 20 0 0 116.0 59.094 -134.584 639.9 863.8 + 9 1 16 7 15 20 0 0 116.0 58.898 -133.857 845.8 839.6 + 10 1 16 7 15 20 0 0 116.0 58.813 -134.915 1069.1 830.2 + 11 1 16 7 15 20 0 0 116.0 58.944 -136.433 1068.5 835.9 + 12 1 16 7 15 20 0 0 116.0 59.143 -137.550 994.4 843.6 + 13 1 16 7 15 20 0 0 116.0 59.487 -139.103 797.9 857.7 + 14 1 16 7 15 20 0 0 116.0 60.166 -140.924 579.9 867.4 + 15 1 16 7 15 20 0 0 116.0 60.952 -142.578 501.9 867.3 + 7 1 16 7 15 21 0 0 117.0 59.029 -135.299 646.5 870.4 + 8 1 16 7 15 21 0 0 117.0 58.997 -134.429 641.6 864.1 + 9 1 16 7 15 21 0 0 117.0 58.805 -133.732 846.3 840.1 + 10 1 16 7 15 21 0 0 117.0 58.711 -134.787 1071.9 830.9 + 11 1 16 7 15 21 0 0 117.0 58.838 -136.278 1070.4 837.6 + 12 1 16 7 15 21 0 0 117.0 59.035 -137.373 995.2 845.7 + 13 1 16 7 15 21 0 0 117.0 59.386 -138.904 793.5 860.6 + 14 1 16 7 15 21 0 0 117.0 60.078 -140.716 570.1 868.9 + 15 1 16 7 15 21 0 0 117.0 60.872 -142.350 492.7 868.8 + 7 1 16 7 15 22 0 0 118.0 58.923 -135.095 650.2 871.4 + 8 1 16 7 15 22 0 0 118.0 58.894 -134.243 644.8 864.1 + 9 1 16 7 15 22 0 0 118.0 58.705 -133.578 848.5 840.1 + 10 1 16 7 15 22 0 0 118.0 58.604 -134.631 1075.4 831.2 + 11 1 16 7 15 22 0 0 118.0 58.729 -136.092 1072.1 839.1 + 12 1 16 7 15 22 0 0 118.0 58.926 -137.162 994.9 847.7 + 13 1 16 7 15 22 0 0 118.0 59.284 -138.666 787.3 863.7 + 14 1 16 7 15 22 0 0 118.0 59.992 -140.474 556.6 870.6 + 15 1 16 7 15 22 0 0 118.0 60.793 -142.090 479.3 870.7 + 7 1 16 7 15 23 0 0 119.0 58.811 -134.858 655.4 871.4 + 8 1 16 7 15 23 0 0 119.0 58.786 -134.027 649.6 863.5 + 9 1 16 7 15 23 0 0 119.0 58.599 -133.399 852.9 839.6 + 10 1 16 7 15 23 0 0 119.0 58.493 -134.448 1079.8 831.1 + 11 1 16 7 15 23 0 0 119.0 58.617 -135.877 1074.0 840.5 + 12 1 16 7 15 23 0 0 119.0 58.815 -136.918 993.8 849.5 + 13 1 16 7 15 23 0 0 119.0 59.180 -138.391 780.1 866.8 + 14 1 16 7 15 23 0 0 119.0 59.904 -140.196 540.6 873.5 + 15 1 16 7 15 23 0 0 119.0 60.715 -141.795 462.2 872.7 + 7 1 16 7 16 0 0 0 120.0 58.695 -134.593 661.9 870.5 + 8 1 16 7 16 0 0 0 120.0 58.673 -133.786 656.4 862.4 + 9 1 16 7 16 0 0 0 120.0 58.486 -133.196 859.7 838.6 + 10 1 16 7 16 0 0 0 120.0 58.376 -134.240 1085.5 830.5 + 11 1 16 7 16 0 0 0 120.0 58.499 -135.635 1076.6 841.6 + 12 1 16 7 16 0 0 0 120.0 58.700 -136.644 992.7 851.2 + 13 1 16 7 16 0 0 0 120.0 59.073 -138.077 772.6 869.8 + 14 1 16 7 16 0 0 0 120.0 59.816 -139.878 523.0 876.8 + 15 1 16 7 16 0 0 0 120.0 60.638 -141.467 442.1 874.7 + 8 1 16 7 16 1 0 0 121.0 58.549 -133.548 661.9 861.5 + 9 1 16 7 16 1 0 0 121.0 58.362 -132.997 865.3 837.7 + 10 1 16 7 16 1 0 0 121.0 58.249 -134.035 1089.7 830.2 + 11 1 16 7 16 1 0 0 121.0 58.372 -135.395 1078.2 843.0 + 12 1 16 7 16 1 0 0 121.0 58.575 -136.370 990.3 852.9 + 13 1 16 7 16 1 0 0 121.0 58.955 -137.757 764.8 873.1 + 14 1 16 7 16 1 0 0 121.0 59.720 -139.552 506.0 880.8 + 15 1 16 7 16 1 0 0 121.0 60.555 -141.133 421.5 876.6 + 16 1 16 7 16 1 0 0 121.0 61.216 -142.911 476.3 866.0 + 8 1 16 7 16 2 0 0 122.0 58.412 -133.340 662.5 861.4 + 9 1 16 7 16 2 0 0 122.0 58.225 -132.825 865.9 837.6 + 10 1 16 7 16 2 0 0 122.0 58.108 -133.853 1089.1 830.7 + 11 1 16 7 16 2 0 0 122.0 58.227 -135.180 1076.1 845.2 + 12 1 16 7 16 2 0 0 122.0 58.434 -136.123 985.1 855.5 + 13 1 16 7 16 2 0 0 122.0 58.820 -137.462 756.0 876.8 + 14 1 16 7 16 2 0 0 122.0 59.610 -139.245 490.5 885.2 + 15 1 16 7 16 2 0 0 122.0 60.459 -140.820 402.8 878.7 + 16 1 16 7 16 2 0 0 122.0 61.130 -142.595 454.2 867.8 + 8 1 16 7 16 3 0 0 123.0 58.262 -133.159 658.0 862.2 + 9 1 16 7 16 3 0 0 123.0 58.075 -132.677 861.0 838.5 + 10 1 16 7 16 3 0 0 123.0 57.954 -133.692 1083.5 832.1 + 11 1 16 7 16 3 0 0 123.0 58.067 -134.988 1069.6 848.3 + 12 1 16 7 16 3 0 0 123.0 58.277 -135.901 976.6 858.9 + 13 1 16 7 16 3 0 0 123.0 58.668 -137.191 744.9 880.6 + 14 1 16 7 16 3 0 0 123.0 59.487 -138.957 475.7 889.9 + 15 1 16 7 16 3 0 0 123.0 60.352 -140.527 385.6 880.9 + 16 1 16 7 16 3 0 0 123.0 61.032 -142.304 433.5 870.3 + 8 1 16 7 16 4 0 0 124.0 58.100 -133.002 648.2 863.9 + 9 1 16 7 16 4 0 0 124.0 57.912 -132.550 850.2 840.2 + 10 1 16 7 16 4 0 0 124.0 57.787 -133.549 1072.5 834.3 + 11 1 16 7 16 4 0 0 124.0 57.892 -134.815 1057.8 851.3 + 12 1 16 7 16 4 0 0 124.0 58.104 -135.700 964.1 863.1 + 13 1 16 7 16 4 0 0 124.0 58.499 -136.944 731.2 885.2 + 14 1 16 7 16 4 0 0 124.0 59.350 -138.685 461.1 895.0 + 15 1 16 7 16 4 0 0 124.0 60.233 -140.250 369.7 883.3 + 16 1 16 7 16 4 0 0 124.0 60.923 -142.037 414.0 873.3 + 8 1 16 7 16 5 0 0 125.0 57.926 -132.866 632.7 866.4 + 9 1 16 7 16 5 0 0 125.0 57.737 -132.439 832.9 842.8 + 10 1 16 7 16 5 0 0 125.0 57.608 -133.421 1055.4 837.3 + 11 1 16 7 16 5 0 0 125.0 57.702 -134.658 1040.4 855.2 + 12 1 16 7 16 5 0 0 125.0 57.915 -135.519 947.4 868.3 + 13 1 16 7 16 5 0 0 125.0 58.316 -136.718 714.7 890.5 + 14 1 16 7 16 5 0 0 125.0 59.198 -138.428 446.3 900.5 + 15 1 16 7 16 5 0 0 125.0 60.103 -139.987 355.2 885.8 + 16 1 16 7 16 5 0 0 125.0 60.803 -141.791 395.6 876.4 + 8 1 16 7 16 6 0 0 126.0 57.740 -132.748 611.1 869.8 + 9 1 16 7 16 6 0 0 126.0 57.551 -132.343 808.8 846.2 + 10 1 16 7 16 6 0 0 126.0 57.414 -133.305 1032.2 841.4 + 11 1 16 7 16 6 0 0 126.0 57.499 -134.516 1017.3 860.0 + 12 1 16 7 16 6 0 0 126.0 57.711 -135.354 925.9 874.4 + 13 1 16 7 16 6 0 0 126.0 58.117 -136.510 695.2 896.5 + 14 1 16 7 16 6 0 0 126.0 59.032 -138.184 430.9 906.4 + 15 1 16 7 16 6 0 0 126.0 59.963 -139.734 341.9 889.7 + 16 1 16 7 16 6 0 0 126.0 60.672 -141.562 378.1 879.6 + 8 1 16 7 16 7 0 0 127.0 57.555 -132.634 588.3 873.7 + 9 1 16 7 16 7 0 0 127.0 57.364 -132.247 784.5 851.0 + 10 1 16 7 16 7 0 0 127.0 57.216 -133.191 1009.0 846.1 + 11 1 16 7 16 7 0 0 127.0 57.292 -134.373 993.1 863.8 + 12 1 16 7 16 7 0 0 127.0 57.503 -135.189 903.5 880.6 + 13 1 16 7 16 7 0 0 127.0 57.914 -136.303 675.5 902.8 + 14 1 16 7 16 7 0 0 127.0 58.861 -137.939 416.1 912.5 + 15 1 16 7 16 7 0 0 127.0 59.821 -139.484 329.5 895.1 + 16 1 16 7 16 7 0 0 127.0 60.542 -141.335 361.5 883.0 + 8 1 16 7 16 8 0 0 128.0 57.379 -132.513 569.4 877.6 + 9 1 16 7 16 8 0 0 128.0 57.186 -132.142 765.3 855.2 + 10 1 16 7 16 8 0 0 128.0 57.024 -133.070 990.5 850.1 + 11 1 16 7 16 8 0 0 128.0 57.089 -134.221 974.0 867.1 + 12 1 16 7 16 8 0 0 128.0 57.300 -135.013 884.5 884.4 + 13 1 16 7 16 8 0 0 128.0 57.719 -136.082 658.8 908.3 + 14 1 16 7 16 8 0 0 128.0 58.693 -137.681 403.0 918.3 + 15 1 16 7 16 8 0 0 128.0 59.686 -139.228 318.0 900.0 + 16 1 16 7 16 8 0 0 128.0 60.420 -141.096 345.8 885.9 + 9 1 16 7 16 9 0 0 129.0 57.014 -132.032 751.4 858.6 + 10 1 16 7 16 9 0 0 129.0 56.838 -132.944 977.0 853.6 + 11 1 16 7 16 9 0 0 129.0 56.890 -134.061 959.9 869.8 + 12 1 16 7 16 9 0 0 129.0 57.099 -134.827 869.8 886.5 + 13 1 16 7 16 9 0 0 129.0 57.528 -135.848 645.4 913.0 + 14 1 16 7 16 9 0 0 129.0 58.528 -137.413 391.7 923.5 + 15 1 16 7 16 9 0 0 129.0 59.555 -138.965 307.4 904.7 + 16 1 16 7 16 9 0 0 129.0 60.306 -140.847 331.2 888.4 + 17 1 16 7 16 9 0 0 129.0 61.183 -143.035 485.7 865.3 + 9 1 16 7 16 10 0 0 130.0 56.850 -131.918 742.5 861.1 + 10 1 16 7 16 10 0 0 130.0 56.658 -132.814 968.6 856.4 + 11 1 16 7 16 10 0 0 130.0 56.696 -133.895 950.7 872.0 + 12 1 16 7 16 10 0 0 130.0 56.901 -134.633 859.7 888.1 + 13 1 16 7 16 10 0 0 130.0 57.340 -135.606 635.1 915.1 + 14 1 16 7 16 10 0 0 130.0 58.364 -137.137 382.1 927.7 + 15 1 16 7 16 10 0 0 130.0 59.428 -138.696 297.7 909.1 + 16 1 16 7 16 10 0 0 130.0 60.200 -140.589 317.9 890.4 + 17 1 16 7 16 10 0 0 130.0 61.084 -142.812 471.5 867.4 + 9 1 16 7 16 11 0 0 131.0 56.692 -131.801 738.5 862.9 + 10 1 16 7 16 11 0 0 131.0 56.486 -132.683 965.2 858.7 + 11 1 16 7 16 11 0 0 131.0 56.507 -133.725 946.3 873.7 + 12 1 16 7 16 11 0 0 131.0 56.707 -134.433 854.1 889.2 + 13 1 16 7 16 11 0 0 131.0 57.151 -135.359 628.6 916.6 + 14 1 16 7 16 11 0 0 131.0 58.203 -136.854 374.4 931.4 + 15 1 16 7 16 11 0 0 131.0 59.302 -138.422 289.2 913.2 + 16 1 16 7 16 11 0 0 131.0 60.099 -140.324 306.0 892.0 + 17 1 16 7 16 11 0 0 131.0 60.992 -142.580 457.3 869.2 + 9 1 16 7 16 12 0 0 132.0 56.542 -131.685 739.1 863.9 + 10 1 16 7 16 12 0 0 132.0 56.322 -132.552 966.5 860.3 + 11 1 16 7 16 12 0 0 132.0 56.324 -133.553 946.8 874.9 + 12 1 16 7 16 12 0 0 132.0 56.516 -134.230 853.0 890.0 + 13 1 16 7 16 12 0 0 132.0 56.962 -135.107 625.7 918.0 + 14 1 16 7 16 12 0 0 132.0 58.043 -136.568 368.7 934.7 + 15 1 16 7 16 12 0 0 132.0 59.177 -138.142 281.7 917.2 + 16 1 16 7 16 12 0 0 132.0 60.004 -140.057 295.6 893.1 + 17 1 16 7 16 12 0 0 132.0 60.907 -142.340 443.4 871.3 + 9 1 16 7 16 13 0 0 133.0 56.399 -131.578 739.3 865.2 + 10 1 16 7 16 13 0 0 133.0 56.162 -132.432 967.0 861.9 + 11 1 16 7 16 13 0 0 133.0 56.143 -133.391 946.9 876.5 + 12 1 16 7 16 13 0 0 133.0 56.326 -134.035 851.8 891.1 + 13 1 16 7 16 13 0 0 133.0 56.769 -134.865 623.1 919.0 + 14 1 16 7 16 13 0 0 133.0 57.883 -136.285 363.7 937.7 + 15 1 16 7 16 13 0 0 133.0 59.051 -137.860 275.1 921.2 + 16 1 16 7 16 13 0 0 133.0 59.912 -139.789 287.0 896.3 + 17 1 16 7 16 13 0 0 133.0 60.826 -142.101 430.5 873.3 + 9 1 16 7 16 14 0 0 134.0 56.260 -131.490 733.9 867.3 + 10 1 16 7 16 14 0 0 134.0 56.004 -132.330 961.2 864.2 + 11 1 16 7 16 14 0 0 134.0 55.960 -133.249 941.5 879.0 + 12 1 16 7 16 14 0 0 134.0 56.131 -133.862 846.1 893.3 + 13 1 16 7 16 14 0 0 134.0 56.570 -134.642 617.4 920.0 + 14 1 16 7 16 14 0 0 134.0 57.721 -136.015 358.1 940.7 + 15 1 16 7 16 14 0 0 134.0 58.922 -137.582 269.2 925.1 + 16 1 16 7 16 14 0 0 134.0 59.820 -139.521 279.6 899.6 + 17 1 16 7 16 14 0 0 134.0 60.745 -141.871 419.2 875.1 + 9 1 16 7 16 15 0 0 135.0 56.124 -131.419 722.9 870.2 + 10 1 16 7 16 15 0 0 135.0 55.846 -132.245 949.0 867.4 + 11 1 16 7 16 15 0 0 135.0 55.772 -133.125 930.4 882.6 + 12 1 16 7 16 15 0 0 135.0 55.931 -133.706 835.6 896.4 + 13 1 16 7 16 15 0 0 135.0 56.366 -134.437 608.4 922.0 + 14 1 16 7 16 15 0 0 135.0 57.557 -135.757 351.3 943.8 + 15 1 16 7 16 15 0 0 135.0 58.793 -137.308 263.5 928.5 + 16 1 16 7 16 15 0 0 135.0 59.730 -139.254 273.2 902.7 + 17 1 16 7 16 15 0 0 135.0 60.665 -141.650 409.6 876.7 + 9 1 16 7 16 16 0 0 136.0 55.991 -131.363 706.2 873.9 + 10 1 16 7 16 16 0 0 136.0 55.686 -132.175 930.5 871.5 + 11 1 16 7 16 16 0 0 136.0 55.579 -133.018 913.4 887.2 + 12 1 16 7 16 16 0 0 136.0 55.724 -133.568 820.1 900.5 + 13 1 16 7 16 16 0 0 136.0 56.156 -134.247 595.9 924.8 + 14 1 16 7 16 16 0 0 136.0 57.389 -135.512 342.9 945.8 + 15 1 16 7 16 16 0 0 136.0 58.664 -137.041 257.9 931.4 + 16 1 16 7 16 16 0 0 136.0 59.640 -138.988 267.5 905.7 + 17 1 16 7 16 16 0 0 136.0 60.585 -141.437 401.8 878.1 + 10 1 16 7 16 17 0 0 137.0 55.523 -132.119 905.7 876.7 + 11 1 16 7 16 17 0 0 137.0 55.379 -132.925 890.5 892.8 + 12 1 16 7 16 17 0 0 137.0 55.508 -133.443 799.6 905.7 + 13 1 16 7 16 17 0 0 137.0 55.939 -134.071 579.9 928.5 + 14 1 16 7 16 17 0 0 137.0 57.217 -135.279 332.7 947.7 + 15 1 16 7 16 17 0 0 137.0 58.537 -136.784 251.9 934.3 + 16 1 16 7 16 17 0 0 137.0 59.551 -138.725 262.4 908.6 + 17 1 16 7 16 17 0 0 137.0 60.507 -141.230 395.7 879.3 + 18 1 16 7 16 17 0 0 137.0 61.208 -143.076 494.9 863.7 + 10 1 16 7 16 18 0 0 138.0 55.355 -132.073 874.8 882.8 + 11 1 16 7 16 18 0 0 138.0 55.168 -132.842 862.1 899.5 + 12 1 16 7 16 18 0 0 138.0 55.282 -133.331 774.3 911.8 + 13 1 16 7 16 18 0 0 138.0 55.714 -133.906 560.5 933.1 + 14 1 16 7 16 18 0 0 138.0 57.039 -135.055 320.9 950.3 + 15 1 16 7 16 18 0 0 138.0 58.410 -136.534 245.4 937.2 + 16 1 16 7 16 18 0 0 138.0 59.463 -138.464 257.7 911.3 + 17 1 16 7 16 18 0 0 138.0 60.431 -141.030 391.1 880.2 + 18 1 16 7 16 18 0 0 138.0 61.127 -142.911 491.1 864.8 + 10 1 16 7 16 19 0 0 139.0 55.180 -132.030 842.1 889.4 + 11 1 16 7 16 19 0 0 139.0 54.947 -132.759 831.5 906.0 + 12 1 16 7 16 19 0 0 139.0 55.044 -133.218 746.9 918.4 + 13 1 16 7 16 19 0 0 139.0 55.482 -133.737 539.2 938.0 + 14 1 16 7 16 19 0 0 139.0 56.858 -134.831 307.4 952.1 + 15 1 16 7 16 19 0 0 139.0 58.284 -136.286 238.2 939.9 + 16 1 16 7 16 19 0 0 139.0 59.372 -138.199 253.3 914.2 + 17 1 16 7 16 19 0 0 139.0 60.356 -140.822 387.6 881.1 + 18 1 16 7 16 19 0 0 139.0 61.046 -142.742 488.7 865.7 + 10 1 16 7 16 20 0 0 140.0 54.997 -131.982 810.9 895.8 + 11 1 16 7 16 20 0 0 140.0 54.717 -132.665 800.9 910.4 + 12 1 16 7 16 20 0 0 140.0 54.796 -133.091 718.6 922.6 + 13 1 16 7 16 20 0 0 140.0 55.245 -133.554 517.1 943.1 + 14 1 16 7 16 20 0 0 140.0 56.675 -134.600 292.3 953.7 + 15 1 16 7 16 20 0 0 140.0 58.157 -136.033 230.1 942.6 + 16 1 16 7 16 20 0 0 140.0 59.275 -137.922 248.4 917.2 + 17 1 16 7 16 20 0 0 140.0 60.284 -140.597 384.2 881.8 + 18 1 16 7 16 20 0 0 140.0 60.969 -142.556 487.4 866.3 + 10 1 16 7 16 21 0 0 141.0 54.806 -131.926 780.6 900.1 + 11 1 16 7 16 21 0 0 141.0 54.476 -132.557 771.3 914.8 + 12 1 16 7 16 21 0 0 141.0 54.538 -132.949 690.0 926.3 + 13 1 16 7 16 21 0 0 141.0 55.001 -133.355 494.4 948.5 + 14 1 16 7 16 21 0 0 141.0 56.493 -134.363 275.8 955.5 + 15 1 16 7 16 21 0 0 141.0 58.030 -135.777 221.1 945.1 + 16 1 16 7 16 21 0 0 141.0 59.170 -137.636 243.1 920.4 + 17 1 16 7 16 21 0 0 141.0 60.212 -140.355 380.8 882.4 + 18 1 16 7 16 21 0 0 141.0 60.894 -142.353 486.9 867.0 + 10 1 16 7 16 22 0 0 142.0 54.607 -131.860 751.7 904.3 + 11 1 16 7 16 22 0 0 142.0 54.227 -132.432 742.3 918.7 + 12 1 16 7 16 22 0 0 142.0 54.271 -132.791 661.6 930.3 + 13 1 16 7 16 22 0 0 142.0 54.752 -133.141 470.6 950.8 + 14 1 16 7 16 22 0 0 142.0 56.309 -134.122 258.0 957.7 + 15 1 16 7 16 22 0 0 142.0 57.904 -135.518 211.3 947.5 + 16 1 16 7 16 22 0 0 142.0 59.059 -137.342 237.3 923.4 + 17 1 16 7 16 22 0 0 142.0 60.142 -140.096 377.2 882.9 + 18 1 16 7 16 22 0 0 142.0 60.822 -142.134 486.9 867.7 + 10 1 16 7 16 23 0 0 143.0 54.400 -131.780 724.2 908.3 + 11 1 16 7 16 23 0 0 143.0 53.971 -132.289 714.1 922.0 + 12 1 16 7 16 23 0 0 143.0 53.995 -132.613 633.1 934.5 + 13 1 16 7 16 23 0 0 143.0 54.501 -132.913 446.8 953.3 + 14 1 16 7 16 23 0 0 143.0 56.125 -133.876 239.2 960.1 + 15 1 16 7 16 23 0 0 143.0 57.779 -135.259 200.9 949.8 + 16 1 16 7 16 23 0 0 143.0 58.946 -137.044 230.7 926.0 + 17 1 16 7 16 23 0 0 143.0 60.073 -139.822 373.4 883.9 + 18 1 16 7 16 23 0 0 143.0 60.753 -141.899 487.2 868.1 + 10 1 16 7 17 0 0 0 144.0 54.187 -131.685 697.7 912.0 + 11 1 16 7 17 0 0 0 144.0 53.710 -132.125 687.0 925.1 + 12 1 16 7 17 0 0 0 144.0 53.714 -132.412 604.9 938.2 + 13 1 16 7 17 0 0 0 144.0 54.246 -132.669 423.2 956.1 + 14 1 16 7 17 0 0 0 144.0 55.939 -133.624 219.9 962.8 + 15 1 16 7 17 0 0 0 144.0 57.657 -135.001 190.2 951.9 + 16 1 16 7 17 0 0 0 144.0 58.832 -136.745 223.5 928.4 + 17 1 16 7 17 0 0 0 144.0 60.003 -139.538 369.5 885.2 + 18 1 16 7 17 0 0 0 144.0 60.687 -141.651 487.8 868.4 + 11 1 16 7 17 1 0 0 145.0 53.446 -131.954 663.2 928.1 + 12 1 16 7 17 1 0 0 145.0 53.433 -132.202 580.1 940.8 + 13 1 16 7 17 1 0 0 145.0 53.991 -132.421 402.0 958.2 + 14 1 16 7 17 1 0 0 145.0 55.751 -133.371 202.7 965.3 + 15 1 16 7 17 1 0 0 145.0 57.538 -134.756 179.6 952.1 + 16 1 16 7 17 1 0 0 145.0 58.718 -136.454 216.3 930.4 + 17 1 16 7 17 1 0 0 145.0 59.926 -139.260 365.4 887.1 + 18 1 16 7 17 1 0 0 145.0 60.614 -141.402 487.7 868.6 + 19 1 16 7 17 1 0 0 145.0 61.218 -143.013 504.1 862.3 + 11 1 16 7 17 2 0 0 146.0 53.180 -131.791 644.7 931.1 + 12 1 16 7 17 2 0 0 146.0 53.155 -131.997 561.4 943.2 + 13 1 16 7 17 2 0 0 146.0 53.737 -132.183 385.2 959.1 + 14 1 16 7 17 2 0 0 146.0 55.562 -133.120 190.2 967.7 + 15 1 16 7 17 2 0 0 146.0 57.421 -134.529 170.3 951.7 + 16 1 16 7 17 2 0 0 146.0 58.606 -136.181 210.2 932.2 + 17 1 16 7 17 2 0 0 146.0 59.835 -138.998 361.3 889.6 + 18 1 16 7 17 2 0 0 146.0 60.525 -141.167 486.5 869.3 + 19 1 16 7 17 2 0 0 146.0 61.129 -142.782 506.4 862.2 + 11 1 16 7 17 3 0 0 147.0 52.910 -131.636 630.4 934.0 + 12 1 16 7 17 3 0 0 147.0 52.877 -131.802 547.2 945.7 + 13 1 16 7 17 3 0 0 147.0 53.484 -131.957 372.5 960.1 + 14 1 16 7 17 3 0 0 147.0 55.370 -132.869 181.8 969.9 + 15 1 16 7 17 3 0 0 147.0 57.304 -134.317 162.9 951.2 + 16 1 16 7 17 3 0 0 147.0 58.496 -135.924 205.2 933.9 + 17 1 16 7 17 3 0 0 147.0 59.732 -138.750 357.3 892.4 + 18 1 16 7 17 3 0 0 147.0 60.421 -140.946 484.0 870.4 + 19 1 16 7 17 3 0 0 147.0 61.023 -142.561 506.9 862.7 + 11 1 16 7 17 4 0 0 148.0 52.636 -131.490 619.6 937.1 + 12 1 16 7 17 4 0 0 148.0 52.598 -131.617 536.7 948.3 + 13 1 16 7 17 4 0 0 148.0 53.233 -131.744 363.2 961.3 + 14 1 16 7 17 4 0 0 148.0 55.173 -132.616 176.7 971.9 + 15 1 16 7 17 4 0 0 148.0 57.185 -134.117 157.9 950.7 + 16 1 16 7 17 4 0 0 148.0 58.388 -135.680 201.6 935.3 + 17 1 16 7 17 4 0 0 148.0 59.617 -138.515 353.4 895.5 + 18 1 16 7 17 4 0 0 148.0 60.301 -140.741 480.2 871.9 + 19 1 16 7 17 4 0 0 148.0 60.900 -142.350 505.9 864.2 + 11 1 16 7 17 5 0 0 149.0 52.357 -131.355 611.1 939.2 + 12 1 16 7 17 5 0 0 149.0 52.319 -131.446 528.7 949.5 + 13 1 16 7 17 5 0 0 149.0 52.983 -131.545 356.8 962.8 + 14 1 16 7 17 5 0 0 149.0 54.971 -132.367 173.7 972.6 + 15 1 16 7 17 5 0 0 149.0 57.064 -133.925 155.6 950.3 + 16 1 16 7 17 5 0 0 149.0 58.283 -135.449 199.5 936.5 + 17 1 16 7 17 5 0 0 149.0 59.492 -138.289 350.0 898.8 + 18 1 16 7 17 5 0 0 149.0 60.165 -140.551 475.3 873.8 + 19 1 16 7 17 5 0 0 149.0 60.761 -142.151 503.4 866.3 + 11 1 16 7 17 6 0 0 150.0 52.075 -131.234 604.4 940.2 + 12 1 16 7 17 6 0 0 150.0 52.038 -131.289 522.6 950.0 + 13 1 16 7 17 6 0 0 150.0 52.733 -131.360 352.9 964.6 + 14 1 16 7 17 6 0 0 150.0 54.766 -132.135 172.2 970.7 + 15 1 16 7 17 6 0 0 150.0 56.940 -133.743 156.5 949.8 + 16 1 16 7 17 6 0 0 150.0 58.182 -135.230 199.1 937.5 + 17 1 16 7 17 6 0 0 150.0 59.359 -138.071 347.1 902.4 + 18 1 16 7 17 6 0 0 150.0 60.016 -140.378 469.4 876.1 + 19 1 16 7 17 6 0 0 150.0 60.607 -141.968 499.7 868.9 + 11 1 16 7 17 7 0 0 151.0 51.791 -131.118 598.5 941.1 + 12 1 16 7 17 7 0 0 151.0 51.757 -131.142 517.4 950.6 + 13 1 16 7 17 7 0 0 151.0 52.484 -131.185 349.7 966.3 + 14 1 16 7 17 7 0 0 151.0 54.564 -131.931 171.6 969.3 + 15 1 16 7 17 7 0 0 151.0 56.812 -133.570 159.3 949.4 + 16 1 16 7 17 7 0 0 151.0 58.082 -135.026 200.0 938.3 + 17 1 16 7 17 7 0 0 151.0 59.223 -137.860 345.2 906.3 + 18 1 16 7 17 7 0 0 151.0 59.864 -140.214 463.7 880.6 + 19 1 16 7 17 7 0 0 151.0 60.453 -141.800 494.8 871.7 + 11 1 16 7 17 8 0 0 152.0 51.507 -131.004 592.4 942.3 + 12 1 16 7 17 8 0 0 152.0 51.477 -130.999 512.2 951.5 + 13 1 16 7 17 8 0 0 152.0 52.237 -131.019 346.0 966.3 + 14 1 16 7 17 8 0 0 152.0 54.368 -131.752 170.7 968.6 + 15 1 16 7 17 8 0 0 152.0 56.680 -133.409 162.8 949.3 + 16 1 16 7 17 8 0 0 152.0 57.982 -134.841 201.9 938.1 + 17 1 16 7 17 8 0 0 152.0 59.090 -137.654 344.1 910.0 + 18 1 16 7 17 8 0 0 152.0 59.719 -140.051 459.3 885.0 + 19 1 16 7 17 8 0 0 152.0 60.312 -141.647 489.2 874.3 + 12 1 16 7 17 9 0 0 153.0 51.198 -130.859 507.0 952.7 + 13 1 16 7 17 9 0 0 153.0 51.992 -130.862 342.1 966.7 + 14 1 16 7 17 9 0 0 153.0 54.178 -131.593 169.6 968.4 + 15 1 16 7 17 9 0 0 153.0 56.546 -133.258 167.0 949.4 + 16 1 16 7 17 9 0 0 153.0 57.882 -134.674 204.9 937.8 + 17 1 16 7 17 9 0 0 153.0 58.960 -137.455 344.1 913.4 + 18 1 16 7 17 9 0 0 153.0 59.582 -139.889 456.4 889.3 + 19 1 16 7 17 9 0 0 153.0 60.183 -141.512 483.5 876.7 + 20 1 16 7 17 9 0 0 153.0 61.169 -143.064 492.3 863.7 + 12 1 16 7 17 10 0 0 154.0 50.917 -130.723 502.1 954.2 + 13 1 16 7 17 10 0 0 154.0 51.748 -130.712 338.0 967.4 + 14 1 16 7 17 10 0 0 154.0 53.992 -131.450 168.0 968.7 + 15 1 16 7 17 10 0 0 154.0 56.411 -133.115 171.6 949.7 + 16 1 16 7 17 10 0 0 154.0 57.780 -134.525 209.0 937.4 + 17 1 16 7 17 10 0 0 154.0 58.834 -137.263 345.2 916.1 + 18 1 16 7 17 10 0 0 154.0 59.452 -139.733 455.2 893.2 + 19 1 16 7 17 10 0 0 154.0 60.067 -141.398 478.0 878.9 + 20 1 16 7 17 10 0 0 154.0 61.062 -142.888 483.5 865.6 + 12 1 16 7 17 11 0 0 155.0 50.636 -130.590 497.6 955.9 + 13 1 16 7 17 11 0 0 155.0 51.505 -130.570 333.9 968.4 + 14 1 16 7 17 11 0 0 155.0 53.809 -131.320 166.1 969.3 + 15 1 16 7 17 11 0 0 155.0 56.275 -132.980 176.6 950.1 + 16 1 16 7 17 11 0 0 155.0 57.678 -134.392 214.4 937.1 + 17 1 16 7 17 11 0 0 155.0 58.711 -137.081 347.7 918.4 + 18 1 16 7 17 11 0 0 155.0 59.328 -139.583 455.8 896.7 + 19 1 16 7 17 11 0 0 155.0 59.961 -141.301 473.3 881.5 + 20 1 16 7 17 11 0 0 155.0 60.968 -142.722 473.4 867.3 + 12 1 16 7 17 12 0 0 156.0 50.353 -130.461 493.5 957.9 + 13 1 16 7 17 12 0 0 156.0 51.261 -130.435 329.5 969.8 + 14 1 16 7 17 12 0 0 156.0 53.629 -131.200 163.7 970.3 + 15 1 16 7 17 12 0 0 156.0 56.141 -132.853 181.6 950.7 + 16 1 16 7 17 12 0 0 156.0 57.577 -134.274 221.2 936.8 + 17 1 16 7 17 12 0 0 156.0 58.592 -136.908 351.8 920.4 + 18 1 16 7 17 12 0 0 156.0 59.210 -139.441 458.4 899.9 + 19 1 16 7 17 12 0 0 156.0 59.865 -141.217 469.8 884.5 + 20 1 16 7 17 12 0 0 156.0 60.887 -142.569 462.4 868.9 + 12 1 16 7 17 13 0 0 157.0 50.068 -130.331 488.8 960.3 + 13 1 16 7 17 13 0 0 157.0 51.017 -130.302 324.3 971.6 + 14 1 16 7 17 13 0 0 157.0 53.451 -131.082 160.9 971.8 + 15 1 16 7 17 13 0 0 157.0 56.007 -132.731 186.0 951.7 + 16 1 16 7 17 13 0 0 157.0 57.477 -134.170 228.4 936.6 + 17 1 16 7 17 13 0 0 157.0 58.475 -136.749 356.3 922.2 + 18 1 16 7 17 13 0 0 157.0 59.097 -139.307 461.2 902.8 + 19 1 16 7 17 13 0 0 157.0 59.775 -141.137 466.3 887.4 + 20 1 16 7 17 13 0 0 157.0 60.812 -142.426 450.6 870.8 + 12 1 16 7 17 14 0 0 158.0 49.784 -130.200 481.8 961.6 + 13 1 16 7 17 14 0 0 158.0 50.771 -130.166 317.5 973.9 + 14 1 16 7 17 14 0 0 158.0 53.273 -130.960 157.4 973.4 + 15 1 16 7 17 14 0 0 158.0 55.875 -132.612 189.3 952.8 + 16 1 16 7 17 14 0 0 158.0 57.377 -134.079 235.2 936.3 + 17 1 16 7 17 14 0 0 158.0 58.361 -136.606 360.0 923.9 + 18 1 16 7 17 14 0 0 158.0 58.987 -139.181 462.6 905.7 + 19 1 16 7 17 14 0 0 158.0 59.688 -141.058 461.3 890.5 + 20 1 16 7 17 14 0 0 158.0 60.739 -142.291 437.5 873.1 + 12 1 16 7 17 15 0 0 159.0 49.501 -130.070 473.0 962.6 + 13 1 16 7 17 15 0 0 159.0 50.524 -130.028 309.0 976.6 + 14 1 16 7 17 15 0 0 159.0 53.097 -130.833 153.4 975.1 + 15 1 16 7 17 15 0 0 159.0 55.744 -132.494 191.1 954.1 + 16 1 16 7 17 15 0 0 159.0 57.277 -133.997 241.3 936.3 + 17 1 16 7 17 15 0 0 159.0 58.250 -136.479 362.8 925.8 + 18 1 16 7 17 15 0 0 159.0 58.882 -139.064 462.6 908.6 + 19 1 16 7 17 15 0 0 159.0 59.603 -140.983 455.0 893.5 + 20 1 16 7 17 15 0 0 159.0 60.669 -142.167 423.1 875.4 + 12 1 16 7 17 16 0 0 160.0 49.221 -129.941 462.8 963.3 + 13 1 16 7 17 16 0 0 160.0 50.275 -129.888 298.6 978.4 + 14 1 16 7 17 16 0 0 160.0 52.921 -130.703 148.9 977.0 + 15 1 16 7 17 16 0 0 160.0 55.615 -132.378 191.7 954.9 + 16 1 16 7 17 16 0 0 160.0 57.178 -133.924 246.7 936.5 + 17 1 16 7 17 16 0 0 160.0 58.143 -136.367 364.8 927.7 + 18 1 16 7 17 16 0 0 160.0 58.780 -138.958 461.2 911.5 + 19 1 16 7 17 16 0 0 160.0 59.521 -140.911 447.4 896.6 + 20 1 16 7 17 16 0 0 160.0 60.603 -142.055 407.4 877.9 + 13 1 16 7 17 17 0 0 161.0 50.027 -129.748 286.6 980.3 + 14 1 16 7 17 17 0 0 161.0 52.747 -130.567 143.9 979.0 + 15 1 16 7 17 17 0 0 161.0 55.490 -132.265 191.0 955.7 + 16 1 16 7 17 17 0 0 161.0 57.078 -133.860 251.4 937.0 + 17 1 16 7 17 17 0 0 161.0 58.038 -136.271 366.1 929.7 + 18 1 16 7 17 17 0 0 161.0 58.683 -138.862 458.4 914.5 + 19 1 16 7 17 17 0 0 161.0 59.444 -140.845 438.5 899.7 + 20 1 16 7 17 17 0 0 161.0 60.541 -141.957 390.4 880.5 + 21 1 16 7 17 17 0 0 161.0 61.235 -143.048 479.4 862.1 + 13 1 16 7 17 18 0 0 162.0 49.781 -129.609 273.5 980.8 + 14 1 16 7 17 18 0 0 162.0 52.574 -130.426 138.5 981.1 + 15 1 16 7 17 18 0 0 162.0 55.369 -132.156 189.2 956.7 + 16 1 16 7 17 18 0 0 162.0 56.978 -133.802 255.3 937.7 + 17 1 16 7 17 18 0 0 162.0 57.935 -136.190 366.5 931.8 + 18 1 16 7 17 18 0 0 162.0 58.590 -138.777 454.2 917.4 + 19 1 16 7 17 18 0 0 162.0 59.371 -140.786 428.3 902.9 + 20 1 16 7 17 18 0 0 162.0 60.484 -141.874 372.1 883.2 + 21 1 16 7 17 18 0 0 162.0 61.181 -142.853 457.3 864.0 + 13 1 16 7 17 19 0 0 163.0 49.540 -129.465 261.6 980.8 + 14 1 16 7 17 19 0 0 163.0 52.401 -130.274 133.5 981.8 + 15 1 16 7 17 19 0 0 163.0 55.250 -132.043 186.9 957.3 + 16 1 16 7 17 19 0 0 163.0 56.879 -133.743 258.5 938.4 + 17 1 16 7 17 19 0 0 163.0 57.836 -136.113 366.6 934.0 + 18 1 16 7 17 19 0 0 163.0 58.503 -138.695 449.5 920.2 + 19 1 16 7 17 19 0 0 163.0 59.307 -140.726 417.8 905.5 + 20 1 16 7 17 19 0 0 163.0 60.438 -141.798 354.1 885.5 + 21 1 16 7 17 19 0 0 163.0 61.137 -142.662 435.7 865.9 + 13 1 16 7 17 20 0 0 164.0 49.309 -129.309 252.7 980.7 + 14 1 16 7 17 20 0 0 164.0 52.229 -130.106 129.3 981.7 + 15 1 16 7 17 20 0 0 164.0 55.133 -131.923 185.0 957.7 + 16 1 16 7 17 20 0 0 164.0 56.778 -133.672 261.1 939.0 + 17 1 16 7 17 20 0 0 164.0 57.741 -136.033 366.4 936.1 + 18 1 16 7 17 20 0 0 164.0 58.422 -138.607 445.1 922.8 + 19 1 16 7 17 20 0 0 164.0 59.253 -140.658 408.5 907.7 + 20 1 16 7 17 20 0 0 164.0 60.407 -141.720 338.1 887.3 + 21 1 16 7 17 20 0 0 164.0 61.107 -142.468 416.5 867.3 + 13 1 16 7 17 21 0 0 165.0 49.088 -129.142 246.4 980.6 + 14 1 16 7 17 21 0 0 165.0 52.059 -129.925 125.8 980.9 + 15 1 16 7 17 21 0 0 165.0 55.018 -131.797 183.9 957.7 + 16 1 16 7 17 21 0 0 165.0 56.677 -133.592 263.1 939.6 + 17 1 16 7 17 21 0 0 165.0 57.650 -135.949 366.1 937.9 + 18 1 16 7 17 21 0 0 165.0 58.348 -138.513 441.0 925.1 + 19 1 16 7 17 21 0 0 165.0 59.209 -140.582 400.1 909.4 + 20 1 16 7 17 21 0 0 165.0 60.391 -141.636 323.7 888.6 + 21 1 16 7 17 21 0 0 165.0 61.093 -142.267 399.5 868.6 + 13 1 16 7 17 22 0 0 166.0 48.876 -128.967 242.1 980.5 + 14 1 16 7 17 22 0 0 166.0 51.892 -129.736 122.9 979.1 + 15 1 16 7 17 22 0 0 166.0 54.903 -131.666 183.9 956.6 + 16 1 16 7 17 22 0 0 166.0 56.576 -133.501 264.7 940.0 + 17 1 16 7 17 22 0 0 166.0 57.563 -135.862 365.7 939.6 + 18 1 16 7 17 22 0 0 166.0 58.278 -138.414 437.0 927.2 + 19 1 16 7 17 22 0 0 166.0 59.174 -140.499 392.4 910.7 + 20 1 16 7 17 22 0 0 166.0 60.388 -141.541 310.8 889.3 + 21 1 16 7 17 22 0 0 166.0 61.092 -142.056 384.8 869.3 + 13 1 16 7 17 23 0 0 167.0 48.674 -128.783 239.7 980.4 + 14 1 16 7 17 23 0 0 167.0 51.729 -129.539 120.9 977.2 + 15 1 16 7 17 23 0 0 167.0 54.787 -131.531 185.5 955.1 + 16 1 16 7 17 23 0 0 167.0 56.474 -133.399 265.9 940.4 + 17 1 16 7 17 23 0 0 167.0 57.481 -135.773 365.3 940.9 + 18 1 16 7 17 23 0 0 167.0 58.215 -138.311 433.2 929.2 + 19 1 16 7 17 23 0 0 167.0 59.147 -140.410 385.4 911.6 + 20 1 16 7 17 23 0 0 167.0 60.397 -141.434 299.1 889.7 + 21 1 16 7 17 23 0 0 167.0 61.104 -141.830 371.9 869.5 + 13 1 16 7 18 0 0 0 168.0 48.482 -128.592 238.8 980.5 + 14 1 16 7 18 0 0 0 168.0 51.571 -129.334 119.8 975.2 + 15 1 16 7 18 0 0 0 168.0 54.670 -131.390 188.9 953.4 + 16 1 16 7 18 0 0 0 168.0 56.372 -133.286 266.9 940.7 + 17 1 16 7 18 0 0 0 168.0 57.401 -135.680 364.9 941.3 + 18 1 16 7 18 0 0 0 168.0 58.156 -138.203 429.3 930.9 + 19 1 16 7 18 0 0 0 168.0 59.127 -140.314 378.9 912.2 + 20 1 16 7 18 0 0 0 168.0 60.417 -141.311 288.6 889.6 + 21 1 16 7 18 0 0 0 168.0 61.127 -141.585 360.6 869.3 + 14 1 16 7 18 1 0 0 169.0 51.422 -129.135 119.0 973.3 + 15 1 16 7 18 1 0 0 169.0 54.551 -131.252 193.0 951.9 + 16 1 16 7 18 1 0 0 169.0 56.265 -133.168 267.5 941.0 + 17 1 16 7 18 1 0 0 169.0 57.316 -135.587 364.6 941.5 + 18 1 16 7 18 1 0 0 169.0 58.092 -138.094 425.4 932.7 + 19 1 16 7 18 1 0 0 169.0 59.102 -140.213 372.9 913.1 + 20 1 16 7 18 1 0 0 169.0 60.432 -141.171 279.4 889.6 + 21 1 16 7 18 1 0 0 169.0 61.145 -141.322 351.2 868.9 + 22 1 16 7 18 1 0 0 169.0 61.329 -142.962 494.9 857.4 + 14 1 16 7 18 2 0 0 170.0 51.288 -128.957 117.7 971.7 + 15 1 16 7 18 2 0 0 170.0 54.428 -131.125 196.8 950.8 + 16 1 16 7 18 2 0 0 170.0 56.148 -133.053 267.6 941.5 + 17 1 16 7 18 2 0 0 170.0 57.217 -135.499 364.7 942.0 + 18 1 16 7 18 2 0 0 170.0 58.013 -137.983 421.7 934.8 + 19 1 16 7 18 2 0 0 170.0 59.057 -140.104 367.3 914.7 + 20 1 16 7 18 2 0 0 170.0 60.430 -141.018 271.4 889.7 + 21 1 16 7 18 2 0 0 170.0 61.147 -141.047 343.8 868.5 + 22 1 16 7 18 2 0 0 170.0 61.351 -142.655 490.8 855.1 + 14 1 16 7 18 3 0 0 171.0 51.168 -128.799 116.0 970.4 + 15 1 16 7 18 3 0 0 171.0 54.303 -131.007 200.0 950.0 + 16 1 16 7 18 3 0 0 171.0 56.023 -132.938 267.4 942.4 + 17 1 16 7 18 3 0 0 171.0 57.104 -135.415 365.1 942.7 + 18 1 16 7 18 3 0 0 171.0 57.918 -137.871 418.1 937.4 + 19 1 16 7 18 3 0 0 171.0 58.991 -139.990 362.2 916.9 + 20 1 16 7 18 3 0 0 171.0 60.408 -140.855 264.6 890.0 + 21 1 16 7 18 3 0 0 171.0 61.131 -140.762 338.6 868.1 + 22 1 16 7 18 3 0 0 171.0 61.357 -142.334 488.2 853.6 + 14 1 16 7 18 4 0 0 172.0 51.063 -128.660 113.9 969.4 + 15 1 16 7 18 4 0 0 172.0 54.177 -130.897 202.6 949.5 + 16 1 16 7 18 4 0 0 172.0 55.889 -132.824 266.9 943.6 + 17 1 16 7 18 4 0 0 172.0 56.977 -135.334 365.6 943.7 + 18 1 16 7 18 4 0 0 172.0 57.808 -137.758 414.6 940.4 + 19 1 16 7 18 4 0 0 172.0 58.905 -139.869 357.7 919.9 + 20 1 16 7 18 4 0 0 172.0 60.368 -140.685 258.9 890.5 + 21 1 16 7 18 4 0 0 172.0 61.099 -140.472 335.7 867.8 + 22 1 16 7 18 4 0 0 172.0 61.345 -142.001 487.4 852.6 + 14 1 16 7 18 5 0 0 173.0 50.973 -128.538 111.4 968.6 + 15 1 16 7 18 5 0 0 173.0 54.051 -130.792 204.4 949.4 + 16 1 16 7 18 5 0 0 173.0 55.747 -132.709 266.0 945.1 + 17 1 16 7 18 5 0 0 173.0 56.837 -135.255 366.3 945.0 + 18 1 16 7 18 5 0 0 173.0 57.683 -137.644 411.1 943.8 + 19 1 16 7 18 5 0 0 173.0 58.800 -139.743 353.7 923.4 + 20 1 16 7 18 5 0 0 173.0 60.307 -140.508 254.1 891.2 + 21 1 16 7 18 5 0 0 173.0 61.051 -140.179 335.1 867.5 + 22 1 16 7 18 5 0 0 173.0 61.316 -141.663 488.6 851.8 + 14 1 16 7 18 6 0 0 174.0 50.897 -128.433 108.6 967.9 + 15 1 16 7 18 6 0 0 174.0 53.927 -130.694 205.5 949.4 + 16 1 16 7 18 6 0 0 174.0 55.598 -132.593 264.9 946.8 + 17 1 16 7 18 6 0 0 174.0 56.684 -135.178 366.9 946.6 + 18 1 16 7 18 6 0 0 174.0 57.544 -137.531 407.3 947.6 + 19 1 16 7 18 6 0 0 174.0 58.674 -139.614 350.1 927.4 + 20 1 16 7 18 6 0 0 174.0 60.226 -140.328 249.9 892.3 + 21 1 16 7 18 6 0 0 174.0 60.986 -139.887 336.8 867.5 + 22 1 16 7 18 6 0 0 174.0 61.270 -141.323 492.1 851.1 + 14 1 16 7 18 7 0 0 175.0 50.833 -128.342 106.1 967.6 + 15 1 16 7 18 7 0 0 175.0 53.804 -130.602 206.1 949.8 + 16 1 16 7 18 7 0 0 175.0 55.448 -132.477 263.2 948.7 + 17 1 16 7 18 7 0 0 175.0 56.524 -135.098 366.4 948.6 + 18 1 16 7 18 7 0 0 175.0 57.398 -137.416 402.0 949.4 + 19 1 16 7 18 7 0 0 175.0 58.540 -139.485 345.2 931.5 + 20 1 16 7 18 7 0 0 175.0 60.133 -140.158 244.7 893.2 + 21 1 16 7 18 7 0 0 175.0 60.911 -139.608 338.5 867.8 + 22 1 16 7 18 7 0 0 175.0 61.212 -140.991 495.2 850.4 + 14 1 16 7 18 8 0 0 176.0 50.778 -128.263 104.5 967.3 + 15 1 16 7 18 8 0 0 176.0 53.684 -130.517 206.4 950.4 + 16 1 16 7 18 8 0 0 176.0 55.301 -132.366 261.1 950.0 + 17 1 16 7 18 8 0 0 176.0 56.366 -135.014 363.8 950.8 + 18 1 16 7 18 8 0 0 176.0 57.256 -137.297 394.7 950.4 + 19 1 16 7 18 8 0 0 176.0 58.408 -139.359 337.6 935.8 + 20 1 16 7 18 8 0 0 176.0 60.039 -140.014 238.2 894.4 + 21 1 16 7 18 8 0 0 176.0 60.834 -139.354 338.3 868.5 + 22 1 16 7 18 8 0 0 176.0 61.148 -140.675 495.8 850.2 + 15 1 16 7 18 9 0 0 177.0 53.566 -130.439 206.4 951.2 + 16 1 16 7 18 9 0 0 177.0 55.158 -132.262 258.8 951.3 + 17 1 16 7 18 9 0 0 177.0 56.210 -134.924 359.1 952.7 + 18 1 16 7 18 9 0 0 177.0 57.117 -137.173 385.4 951.6 + 19 1 16 7 18 9 0 0 177.0 58.278 -139.234 327.1 940.4 + 20 1 16 7 18 9 0 0 177.0 59.947 -139.893 230.8 896.9 + 21 1 16 7 18 9 0 0 177.0 60.755 -139.126 336.1 869.4 + 22 1 16 7 18 9 0 0 177.0 61.079 -140.378 494.0 850.2 + 23 1 16 7 18 9 0 0 177.0 61.229 -142.913 498.3 857.1 + 15 1 16 7 18 10 0 0 178.0 53.452 -130.368 206.4 952.0 + 16 1 16 7 18 10 0 0 178.0 55.020 -132.166 256.6 952.7 + 17 1 16 7 18 10 0 0 178.0 56.057 -134.827 352.5 954.6 + 18 1 16 7 18 10 0 0 178.0 56.981 -137.045 374.2 953.2 + 19 1 16 7 18 10 0 0 178.0 58.152 -139.107 313.6 945.1 + 20 1 16 7 18 10 0 0 178.0 59.859 -139.791 222.7 900.0 + 21 1 16 7 18 10 0 0 178.0 60.676 -138.923 332.0 870.5 + 22 1 16 7 18 10 0 0 178.0 61.006 -140.100 489.9 850.6 + 23 1 16 7 18 10 0 0 178.0 61.164 -142.593 493.5 856.5 + 15 1 16 7 18 11 0 0 179.0 53.340 -130.303 206.5 953.0 + 16 1 16 7 18 11 0 0 179.0 54.884 -132.079 254.2 953.0 + 17 1 16 7 18 11 0 0 179.0 55.906 -134.724 344.0 956.7 + 18 1 16 7 18 11 0 0 179.0 56.849 -136.911 361.1 954.9 + 19 1 16 7 18 11 0 0 179.0 58.031 -138.977 297.2 950.1 + 20 1 16 7 18 11 0 0 179.0 59.775 -139.702 213.8 903.2 + 21 1 16 7 18 11 0 0 179.0 60.596 -138.746 326.1 872.0 + 22 1 16 7 18 11 0 0 179.0 60.931 -139.844 483.7 851.6 + 23 1 16 7 18 11 0 0 179.0 61.093 -142.294 485.5 857.1 + 15 1 16 7 18 12 0 0 180.0 53.231 -130.244 206.9 954.0 + 16 1 16 7 18 12 0 0 180.0 54.750 -132.001 251.6 953.2 + 17 1 16 7 18 12 0 0 180.0 55.759 -134.615 333.9 958.8 + 18 1 16 7 18 12 0 0 180.0 56.722 -136.773 346.2 956.9 + 19 1 16 7 18 12 0 0 180.0 57.915 -138.841 278.0 955.1 + 20 1 16 7 18 12 0 0 180.0 59.695 -139.626 203.9 906.4 + 21 1 16 7 18 12 0 0 180.0 60.517 -138.596 318.6 873.6 + 22 1 16 7 18 12 0 0 180.0 60.853 -139.611 475.3 853.1 + 23 1 16 7 18 12 0 0 180.0 61.016 -142.014 474.7 858.4 + 15 1 16 7 18 13 0 0 181.0 53.132 -130.190 207.7 955.0 + 16 1 16 7 18 13 0 0 181.0 54.620 -131.929 249.7 953.8 + 17 1 16 7 18 13 0 0 181.0 55.614 -134.505 325.3 961.0 + 18 1 16 7 18 13 0 0 181.0 56.595 -136.636 332.4 958.9 + 19 1 16 7 18 13 0 0 181.0 57.803 -138.701 259.2 960.1 + 20 1 16 7 18 13 0 0 181.0 59.619 -139.560 193.5 909.9 + 21 1 16 7 18 13 0 0 181.0 60.444 -138.467 309.5 875.5 + 22 1 16 7 18 13 0 0 181.0 60.779 -139.393 464.4 855.1 + 23 1 16 7 18 13 0 0 181.0 60.940 -141.750 460.7 860.4 + 15 1 16 7 18 14 0 0 182.0 53.049 -130.138 208.7 955.9 + 16 1 16 7 18 14 0 0 182.0 54.499 -131.863 249.5 954.2 + 17 1 16 7 18 14 0 0 182.0 55.468 -134.400 321.2 962.9 + 18 1 16 7 18 14 0 0 182.0 56.464 -136.507 323.0 960.7 + 19 1 16 7 18 14 0 0 182.0 57.693 -138.563 244.0 964.6 + 20 1 16 7 18 14 0 0 182.0 59.545 -139.504 183.4 913.3 + 21 1 16 7 18 14 0 0 182.0 60.380 -138.353 298.9 877.3 + 22 1 16 7 18 14 0 0 182.0 60.714 -139.184 450.6 857.3 + 23 1 16 7 18 14 0 0 182.0 60.871 -141.494 443.3 862.4 + 15 1 16 7 18 15 0 0 183.0 52.982 -130.089 209.9 956.4 + 16 1 16 7 18 15 0 0 183.0 54.386 -131.802 250.8 954.5 + 17 1 16 7 18 15 0 0 183.0 55.324 -134.301 321.0 964.4 + 18 1 16 7 18 15 0 0 183.0 56.330 -136.386 317.6 962.2 + 19 1 16 7 18 15 0 0 183.0 57.583 -138.428 232.1 968.6 + 20 1 16 7 18 15 0 0 183.0 59.473 -139.456 173.7 916.6 + 21 1 16 7 18 15 0 0 183.0 60.326 -138.254 287.3 879.2 + 22 1 16 7 18 15 0 0 183.0 60.656 -138.984 434.8 859.5 + 23 1 16 7 18 15 0 0 183.0 60.810 -141.248 423.4 864.7 + 15 1 16 7 18 16 0 0 184.0 52.931 -130.044 210.9 956.8 + 16 1 16 7 18 16 0 0 184.0 54.282 -131.746 253.5 954.6 + 17 1 16 7 18 16 0 0 184.0 55.181 -134.208 324.6 965.6 + 18 1 16 7 18 16 0 0 184.0 56.191 -136.275 316.3 963.4 + 19 1 16 7 18 16 0 0 184.0 57.474 -138.297 223.5 971.6 + 20 1 16 7 18 16 0 0 184.0 59.404 -139.419 164.6 919.8 + 21 1 16 7 18 16 0 0 184.0 60.281 -138.170 275.1 880.9 + 22 1 16 7 18 16 0 0 184.0 60.608 -138.793 417.3 861.7 + 23 1 16 7 18 16 0 0 184.0 60.756 -141.014 401.5 866.9 + 16 1 16 7 18 17 0 0 185.0 54.188 -131.695 257.3 954.6 + 17 1 16 7 18 17 0 0 185.0 55.041 -134.123 331.6 966.6 + 18 1 16 7 18 17 0 0 185.0 56.048 -136.172 319.1 964.4 + 19 1 16 7 18 17 0 0 185.0 57.365 -138.173 218.0 972.2 + 20 1 16 7 18 17 0 0 185.0 59.336 -139.391 156.2 922.8 + 21 1 16 7 18 17 0 0 185.0 60.247 -138.099 262.4 882.5 + 22 1 16 7 18 17 0 0 185.0 60.569 -138.612 398.6 863.9 + 23 1 16 7 18 17 0 0 185.0 60.711 -140.792 378.3 869.2 + 24 1 16 7 18 17 0 0 185.0 61.238 -142.882 471.4 858.0 + 16 1 16 7 18 18 0 0 186.0 54.102 -131.650 262.3 954.5 + 17 1 16 7 18 18 0 0 186.0 54.903 -134.046 341.3 965.9 + 18 1 16 7 18 18 0 0 186.0 55.901 -136.079 326.2 965.1 + 19 1 16 7 18 18 0 0 186.0 57.255 -138.055 215.8 972.6 + 20 1 16 7 18 18 0 0 186.0 59.270 -139.373 148.8 925.7 + 21 1 16 7 18 18 0 0 186.0 60.223 -138.042 249.7 883.9 + 22 1 16 7 18 18 0 0 186.0 60.541 -138.439 379.1 865.9 + 23 1 16 7 18 18 0 0 186.0 60.673 -140.585 354.4 871.5 + 24 1 16 7 18 18 0 0 186.0 61.194 -142.519 439.0 859.8 + 16 1 16 7 18 19 0 0 187.0 54.025 -131.600 267.4 954.1 + 17 1 16 7 18 19 0 0 187.0 54.769 -133.969 351.5 964.4 + 18 1 16 7 18 19 0 0 187.0 55.753 -135.985 335.5 965.6 + 19 1 16 7 18 19 0 0 187.0 57.148 -137.934 215.7 972.9 + 20 1 16 7 18 19 0 0 187.0 59.210 -139.353 142.6 928.2 + 21 1 16 7 18 19 0 0 187.0 60.206 -137.991 238.3 885.2 + 22 1 16 7 18 19 0 0 187.0 60.521 -138.272 361.9 867.7 + 23 1 16 7 18 19 0 0 187.0 60.646 -140.392 334.0 873.3 + 24 1 16 7 18 19 0 0 187.0 61.163 -142.163 409.8 862.2 + 16 1 16 7 18 20 0 0 188.0 53.952 -131.533 271.9 953.5 + 17 1 16 7 18 20 0 0 188.0 54.640 -133.880 360.2 963.1 + 18 1 16 7 18 20 0 0 188.0 55.609 -135.881 344.8 966.2 + 19 1 16 7 18 20 0 0 188.0 57.050 -137.798 216.8 973.0 + 20 1 16 7 18 20 0 0 188.0 59.161 -139.320 138.0 930.1 + 21 1 16 7 18 20 0 0 188.0 60.191 -137.939 229.7 886.1 + 22 1 16 7 18 20 0 0 188.0 60.505 -138.103 349.8 868.8 + 23 1 16 7 18 20 0 0 188.0 60.631 -140.203 320.3 874.2 + 24 1 16 7 18 20 0 0 188.0 61.146 -141.814 390.1 863.4 + 16 1 16 7 18 21 0 0 189.0 53.886 -131.451 275.9 952.7 + 17 1 16 7 18 21 0 0 189.0 54.516 -133.780 367.4 961.8 + 18 1 16 7 18 21 0 0 189.0 55.469 -135.769 354.0 966.7 + 19 1 16 7 18 21 0 0 189.0 56.961 -137.649 218.7 972.9 + 20 1 16 7 18 21 0 0 189.0 59.125 -139.274 135.0 931.4 + 21 1 16 7 18 21 0 0 189.0 60.180 -137.885 223.4 886.8 + 22 1 16 7 18 21 0 0 189.0 60.491 -137.932 342.1 869.5 + 23 1 16 7 18 21 0 0 189.0 60.627 -140.015 312.6 874.2 + 24 1 16 7 18 21 0 0 189.0 61.141 -141.464 379.6 863.3 + 16 1 16 7 18 22 0 0 190.0 53.828 -131.354 279.4 951.7 + 17 1 16 7 18 22 0 0 190.0 54.398 -133.666 373.0 960.8 + 18 1 16 7 18 22 0 0 190.0 55.333 -135.648 362.9 967.3 + 19 1 16 7 18 22 0 0 190.0 56.879 -137.487 221.1 972.6 + 20 1 16 7 18 22 0 0 190.0 59.101 -139.217 133.4 932.1 + 21 1 16 7 18 22 0 0 190.0 60.170 -137.828 219.3 887.2 + 22 1 16 7 18 22 0 0 190.0 60.478 -137.756 338.5 869.6 + 23 1 16 7 18 22 0 0 190.0 60.634 -139.819 310.3 873.9 + 24 1 16 7 18 22 0 0 190.0 61.145 -141.110 377.9 862.2 + 16 1 16 7 18 23 0 0 191.0 53.777 -131.242 282.5 950.5 + 17 1 16 7 18 23 0 0 191.0 54.287 -133.539 377.2 959.8 + 18 1 16 7 18 23 0 0 191.0 55.202 -135.520 371.4 968.0 + 19 1 16 7 18 23 0 0 191.0 56.802 -137.316 223.9 971.7 + 20 1 16 7 18 23 0 0 191.0 59.088 -139.150 133.2 932.2 + 21 1 16 7 18 23 0 0 191.0 60.161 -137.768 217.1 887.3 + 22 1 16 7 18 23 0 0 191.0 60.464 -137.574 338.8 869.4 + 23 1 16 7 18 23 0 0 191.0 60.647 -139.611 312.8 873.0 + 24 1 16 7 18 23 0 0 191.0 61.158 -140.747 384.8 860.0 + 16 1 16 7 19 0 0 0 192.0 53.734 -131.115 285.3 949.0 + 17 1 16 7 19 0 0 0 192.0 54.182 -133.399 380.0 959.0 + 18 1 16 7 19 0 0 0 192.0 55.075 -135.385 379.5 968.7 + 19 1 16 7 19 0 0 0 192.0 56.729 -137.137 226.9 970.9 + 20 1 16 7 19 0 0 0 192.0 59.087 -139.072 134.2 931.8 + 21 1 16 7 19 0 0 0 192.0 60.153 -137.704 216.8 887.2 + 22 1 16 7 19 0 0 0 192.0 60.447 -137.384 342.5 868.7 + 23 1 16 7 19 0 0 0 192.0 60.665 -139.386 320.3 871.5 + 24 1 16 7 19 0 0 0 192.0 61.175 -140.370 400.2 856.8 + 17 1 16 7 19 1 0 0 193.0 54.086 -133.255 383.4 958.3 + 18 1 16 7 19 1 0 0 193.0 54.954 -135.248 388.0 968.9 + 19 1 16 7 19 1 0 0 193.0 56.659 -136.959 230.1 969.9 + 20 1 16 7 19 1 0 0 193.0 59.087 -138.988 135.2 931.1 + 21 1 16 7 19 1 0 0 193.0 60.143 -137.637 216.6 886.9 + 22 1 16 7 19 1 0 0 193.0 60.424 -137.189 345.8 867.7 + 23 1 16 7 19 1 0 0 193.0 60.676 -139.155 328.3 869.5 + 24 1 16 7 19 1 0 0 193.0 61.184 -139.998 417.1 853.1 + 17 1 16 7 19 2 0 0 194.0 53.999 -133.120 389.5 957.4 + 18 1 16 7 19 2 0 0 194.0 54.843 -135.113 397.8 967.8 + 19 1 16 7 19 2 0 0 194.0 56.589 -136.788 233.8 969.0 + 20 1 16 7 19 2 0 0 194.0 59.078 -138.901 134.9 930.8 + 21 1 16 7 19 2 0 0 194.0 60.127 -137.572 214.4 886.8 + 22 1 16 7 19 2 0 0 194.0 60.394 -137.001 345.3 867.2 + 23 1 16 7 19 2 0 0 194.0 60.671 -138.937 332.0 868.4 + 24 1 16 7 19 2 0 0 194.0 61.176 -139.654 427.8 851.1 + 17 1 16 7 19 3 0 0 195.0 53.922 -132.996 398.7 956.3 + 18 1 16 7 19 3 0 0 195.0 54.742 -134.982 409.1 966.3 + 19 1 16 7 19 3 0 0 195.0 56.521 -136.624 238.1 968.1 + 20 1 16 7 19 3 0 0 195.0 59.059 -138.812 133.6 930.9 + 21 1 16 7 19 3 0 0 195.0 60.107 -137.507 210.6 887.0 + 22 1 16 7 19 3 0 0 195.0 60.358 -136.820 341.2 867.3 + 23 1 16 7 19 3 0 0 195.0 60.652 -138.735 331.1 867.9 + 24 1 16 7 19 3 0 0 195.0 61.151 -139.341 431.6 850.1 + 17 1 16 7 19 4 0 0 196.0 53.853 -132.883 411.1 954.8 + 18 1 16 7 19 4 0 0 196.0 54.651 -134.855 421.9 963.8 + 19 1 16 7 19 4 0 0 196.0 56.457 -136.466 243.1 967.3 + 20 1 16 7 19 4 0 0 196.0 59.033 -138.718 131.2 931.3 + 21 1 16 7 19 4 0 0 196.0 60.084 -137.444 205.3 887.3 + 22 1 16 7 19 4 0 0 196.0 60.316 -136.647 334.0 867.8 + 23 1 16 7 19 4 0 0 196.0 60.623 -138.551 325.9 868.2 + 24 1 16 7 19 4 0 0 196.0 61.111 -139.060 428.5 850.1 + 17 1 16 7 19 5 0 0 197.0 53.792 -132.784 426.9 953.1 + 18 1 16 7 19 5 0 0 197.0 54.571 -134.733 436.5 961.2 + 19 1 16 7 19 5 0 0 197.0 56.398 -136.316 249.1 966.4 + 20 1 16 7 19 5 0 0 197.0 58.999 -138.621 128.0 932.1 + 21 1 16 7 19 5 0 0 197.0 60.059 -137.379 198.8 887.9 + 22 1 16 7 19 5 0 0 197.0 60.271 -136.482 324.4 868.6 + 23 1 16 7 19 5 0 0 197.0 60.584 -138.385 316.5 869.0 + 24 1 16 7 19 5 0 0 197.0 61.060 -138.811 419.0 851.1 + 17 1 16 7 19 6 0 0 198.0 53.737 -132.697 446.6 950.9 + 18 1 16 7 19 6 0 0 198.0 54.500 -134.619 453.4 958.5 + 19 1 16 7 19 6 0 0 198.0 56.346 -136.171 256.2 965.4 + 20 1 16 7 19 6 0 0 198.0 58.960 -138.519 123.9 933.1 + 21 1 16 7 19 6 0 0 198.0 60.031 -137.314 191.3 888.5 + 22 1 16 7 19 6 0 0 198.0 60.224 -136.324 312.9 869.7 + 23 1 16 7 19 6 0 0 198.0 60.537 -138.238 303.6 870.4 + 24 1 16 7 19 6 0 0 198.0 60.999 -138.595 403.5 852.8 + 17 1 16 7 19 7 0 0 199.0 53.693 -132.617 467.8 948.7 + 18 1 16 7 19 7 0 0 199.0 54.441 -134.507 471.5 955.7 + 19 1 16 7 19 7 0 0 199.0 56.304 -136.029 264.9 964.4 + 20 1 16 7 19 7 0 0 199.0 58.920 -138.422 120.4 934.5 + 21 1 16 7 19 7 0 0 199.0 60.003 -137.260 184.8 889.6 + 22 1 16 7 19 7 0 0 199.0 60.175 -136.180 302.4 871.0 + 23 1 16 7 19 7 0 0 199.0 60.487 -138.114 291.3 872.4 + 24 1 16 7 19 7 0 0 199.0 60.933 -138.410 387.8 855.3 + 17 1 16 7 19 8 0 0 200.0 53.665 -132.540 488.2 946.4 + 18 1 16 7 19 8 0 0 200.0 54.399 -134.394 490.0 952.9 + 19 1 16 7 19 8 0 0 200.0 56.276 -135.886 275.6 963.0 + 20 1 16 7 19 8 0 0 200.0 58.887 -138.334 118.2 935.5 + 21 1 16 7 19 8 0 0 200.0 59.973 -137.225 180.5 890.9 + 22 1 16 7 19 8 0 0 200.0 60.125 -136.056 295.4 872.1 + 23 1 16 7 19 8 0 0 200.0 60.437 -138.019 282.9 874.0 + 24 1 16 7 19 8 0 0 200.0 60.866 -138.253 376.9 857.4 + 18 1 16 7 19 9 0 0 201.0 54.375 -134.278 508.7 950.0 + 19 1 16 7 19 9 0 0 201.0 56.262 -135.742 288.2 961.1 + 20 1 16 7 19 9 0 0 201.0 58.861 -138.255 117.3 936.2 + 21 1 16 7 19 9 0 0 201.0 59.941 -137.208 178.2 892.1 + 22 1 16 7 19 9 0 0 201.0 60.072 -135.951 291.4 872.8 + 23 1 16 7 19 9 0 0 201.0 60.386 -137.952 278.1 875.3 + 24 1 16 7 19 9 0 0 201.0 60.798 -138.125 370.5 859.1 + 18 1 16 7 19 10 0 0 202.0 54.368 -134.160 527.7 947.1 + 19 1 16 7 19 10 0 0 202.0 56.262 -135.597 302.9 958.9 + 20 1 16 7 19 10 0 0 202.0 58.842 -138.187 117.7 936.6 + 21 1 16 7 19 10 0 0 202.0 59.908 -137.206 177.8 893.3 + 22 1 16 7 19 10 0 0 202.0 60.016 -135.862 290.4 873.3 + 23 1 16 7 19 10 0 0 202.0 60.335 -137.911 276.7 876.3 + 24 1 16 7 19 10 0 0 202.0 60.730 -138.025 368.4 860.4 + 18 1 16 7 19 11 0 0 203.0 54.381 -134.039 547.0 944.0 + 19 1 16 7 19 11 0 0 203.0 56.276 -135.451 319.6 956.2 + 20 1 16 7 19 11 0 0 203.0 58.829 -138.128 119.4 936.7 + 21 1 16 7 19 11 0 0 203.0 59.873 -137.220 179.3 894.3 + 22 1 16 7 19 11 0 0 203.0 59.958 -135.787 292.3 874.1 + 23 1 16 7 19 11 0 0 203.0 60.284 -137.897 278.6 877.0 + 24 1 16 7 19 11 0 0 203.0 60.661 -137.952 370.7 861.3 + 18 1 16 7 19 12 0 0 204.0 54.413 -133.913 566.8 940.7 + 19 1 16 7 19 12 0 0 204.0 56.305 -135.303 338.7 952.9 + 20 1 16 7 19 12 0 0 204.0 58.822 -138.078 122.3 936.5 + 21 1 16 7 19 12 0 0 204.0 59.838 -137.248 182.8 895.2 + 22 1 16 7 19 12 0 0 204.0 59.898 -135.720 297.2 874.8 + 23 1 16 7 19 12 0 0 204.0 60.232 -137.907 283.7 877.4 + 24 1 16 7 19 12 0 0 204.0 60.590 -137.905 377.2 861.8 + 18 1 16 7 19 13 0 0 205.0 54.456 -133.787 587.9 937.4 + 19 1 16 7 19 13 0 0 205.0 56.341 -135.159 360.4 949.3 + 20 1 16 7 19 13 0 0 205.0 58.822 -138.044 126.1 936.0 + 21 1 16 7 19 13 0 0 205.0 59.808 -137.292 187.3 895.8 + 22 1 16 7 19 13 0 0 205.0 59.843 -135.666 304.1 875.6 + 23 1 16 7 19 13 0 0 205.0 60.185 -137.942 290.4 877.5 + 24 1 16 7 19 13 0 0 205.0 60.526 -137.883 385.7 861.9 + 18 1 16 7 19 14 0 0 206.0 54.501 -133.666 611.2 933.7 + 19 1 16 7 19 14 0 0 206.0 56.379 -135.023 385.0 945.4 + 20 1 16 7 19 14 0 0 206.0 58.828 -138.029 130.3 935.2 + 21 1 16 7 19 14 0 0 206.0 59.787 -137.356 191.9 896.1 + 22 1 16 7 19 14 0 0 206.0 59.801 -135.631 311.9 875.9 + 23 1 16 7 19 14 0 0 206.0 60.149 -137.999 297.0 877.5 + 24 1 16 7 19 14 0 0 206.0 60.477 -137.884 394.1 861.9 + 18 1 16 7 19 15 0 0 207.0 54.547 -133.547 636.9 929.9 + 19 1 16 7 19 15 0 0 207.0 56.416 -134.893 412.1 940.5 + 20 1 16 7 19 15 0 0 207.0 58.841 -138.034 135.0 934.3 + 21 1 16 7 19 15 0 0 207.0 59.775 -137.440 196.7 896.3 + 22 1 16 7 19 15 0 0 207.0 59.771 -135.616 320.7 875.9 + 23 1 16 7 19 15 0 0 207.0 60.124 -138.079 303.4 877.3 + 24 1 16 7 19 15 0 0 207.0 60.442 -137.907 402.2 861.6 + 18 1 16 7 19 16 0 0 208.0 54.591 -133.428 664.8 925.8 + 19 1 16 7 19 16 0 0 208.0 56.452 -134.768 441.1 935.2 + 20 1 16 7 19 16 0 0 208.0 58.861 -138.061 140.1 933.2 + 21 1 16 7 19 16 0 0 208.0 59.773 -137.546 201.6 896.1 + 22 1 16 7 19 16 0 0 208.0 59.753 -135.621 330.5 875.6 + 23 1 16 7 19 16 0 0 208.0 60.110 -138.180 309.7 877.1 + 24 1 16 7 19 16 0 0 208.0 60.420 -137.952 410.0 861.2 + 19 1 16 7 19 17 0 0 209.0 56.486 -134.649 472.2 929.8 + 20 1 16 7 19 17 0 0 209.0 58.886 -138.108 145.8 931.9 + 21 1 16 7 19 17 0 0 209.0 59.778 -137.674 206.4 895.6 + 22 1 16 7 19 17 0 0 209.0 59.748 -135.647 341.4 874.9 + 23 1 16 7 19 17 0 0 209.0 60.106 -138.302 315.7 876.8 + 24 1 16 7 19 17 0 0 209.0 60.413 -138.018 417.5 860.7 + 19 1 16 7 19 18 0 0 210.0 56.517 -134.534 505.5 924.3 + 20 1 16 7 19 18 0 0 210.0 58.916 -138.176 151.9 930.4 + 21 1 16 7 19 18 0 0 210.0 59.790 -137.821 211.3 895.1 + 22 1 16 7 19 18 0 0 210.0 59.754 -135.697 353.3 873.8 + 23 1 16 7 19 18 0 0 210.0 60.111 -138.444 321.4 876.5 + 24 1 16 7 19 18 0 0 210.0 60.419 -138.105 424.7 860.0 + 19 1 16 7 19 19 0 0 211.0 56.552 -134.417 539.8 918.6 + 20 1 16 7 19 19 0 0 211.0 58.951 -138.256 158.9 929.0 + 21 1 16 7 19 19 0 0 211.0 59.809 -137.975 216.9 894.4 + 22 1 16 7 19 19 0 0 211.0 59.769 -135.744 366.7 872.3 + 23 1 16 7 19 19 0 0 211.0 60.125 -138.586 328.1 876.0 + 24 1 16 7 19 19 0 0 211.0 60.434 -138.187 433.3 859.2 + 19 1 16 7 19 20 0 0 212.0 56.598 -134.293 574.3 912.6 + 20 1 16 7 19 20 0 0 212.0 58.992 -138.339 167.0 927.2 + 21 1 16 7 19 20 0 0 212.0 59.834 -138.118 223.8 893.5 + 22 1 16 7 19 20 0 0 212.0 59.790 -135.761 382.0 870.4 + 23 1 16 7 19 20 0 0 212.0 60.146 -138.709 337.1 875.2 + 24 1 16 7 19 20 0 0 212.0 60.454 -138.239 445.1 857.9 + 19 1 16 7 19 21 0 0 213.0 56.655 -134.158 609.0 906.2 + 20 1 16 7 19 21 0 0 213.0 59.040 -138.424 176.3 925.0 + 21 1 16 7 19 21 0 0 213.0 59.865 -138.250 232.2 892.1 + 22 1 16 7 19 21 0 0 213.0 59.818 -135.746 399.5 867.9 + 23 1 16 7 19 21 0 0 213.0 60.173 -138.809 348.6 873.9 + 24 1 16 7 19 21 0 0 213.0 60.478 -138.258 460.5 856.0 + 19 1 16 7 19 22 0 0 214.0 56.723 -134.010 644.0 899.4 + 20 1 16 7 19 22 0 0 214.0 59.093 -138.510 186.9 922.6 + 21 1 16 7 19 22 0 0 214.0 59.904 -138.372 242.3 890.3 + 22 1 16 7 19 22 0 0 214.0 59.850 -135.695 419.1 865.0 + 23 1 16 7 19 22 0 0 214.0 60.207 -138.885 363.0 872.2 + 24 1 16 7 19 22 0 0 214.0 60.507 -138.240 479.8 853.7 + 19 1 16 7 19 23 0 0 215.0 56.800 -133.849 679.0 892.3 + 20 1 16 7 19 23 0 0 215.0 59.153 -138.595 198.9 919.7 + 21 1 16 7 19 23 0 0 215.0 59.950 -138.482 254.1 888.0 + 22 1 16 7 19 23 0 0 215.0 59.888 -135.603 441.2 861.5 + 23 1 16 7 19 23 0 0 215.0 60.247 -138.932 380.7 869.9 + 24 1 16 7 19 23 0 0 215.0 60.540 -138.182 503.5 850.7 + 19 1 16 7 20 0 0 0 216.0 56.885 -133.670 714.1 884.7 + 20 1 16 7 20 0 0 0 216.0 59.221 -138.677 212.6 916.4 + 21 1 16 7 20 0 0 0 216.0 60.003 -138.577 268.1 885.3 + 22 1 16 7 20 0 0 0 216.0 59.931 -135.465 465.8 857.5 + 23 1 16 7 20 0 0 0 216.0 60.292 -138.947 402.2 867.1 + 24 1 16 7 20 0 0 0 216.0 60.577 -138.077 531.8 847.0 + 20 1 16 7 20 1 0 0 217.0 59.294 -138.756 226.8 912.6 + 21 1 16 7 20 1 0 0 217.0 60.063 -138.655 283.1 882.6 + 22 1 16 7 20 1 0 0 217.0 59.977 -135.295 490.9 853.0 + 23 1 16 7 20 1 0 0 217.0 60.344 -138.931 425.5 863.4 + 24 1 16 7 20 1 0 0 217.0 60.619 -137.935 562.6 842.7 + 20 1 16 7 20 2 0 0 218.0 59.372 -138.830 240.4 908.6 + 21 1 16 7 20 2 0 0 218.0 60.130 -138.710 298.2 879.8 + 22 1 16 7 20 2 0 0 218.0 60.027 -135.112 514.8 848.8 + 23 1 16 7 20 2 0 0 218.0 60.402 -138.891 448.8 859.7 + 24 1 16 7 20 2 0 0 218.0 60.668 -137.769 593.4 838.2 + 20 1 16 7 20 3 0 0 219.0 59.456 -138.900 253.1 904.5 + 21 1 16 7 20 3 0 0 219.0 60.203 -138.742 313.4 876.7 + 22 1 16 7 20 3 0 0 219.0 60.078 -134.913 537.2 844.6 + 23 1 16 7 20 3 0 0 219.0 60.466 -138.827 471.9 855.8 + 24 1 16 7 20 3 0 0 219.0 60.723 -137.581 623.8 833.8 + 20 1 16 7 20 4 0 0 220.0 59.545 -138.964 264.8 900.3 + 21 1 16 7 20 4 0 0 220.0 60.283 -138.750 328.5 873.5 + 22 1 16 7 20 4 0 0 220.0 60.126 -134.697 557.5 840.1 + 23 1 16 7 20 4 0 0 220.0 60.537 -138.738 494.8 851.8 + 24 1 16 7 20 4 0 0 220.0 60.781 -137.374 653.2 829.3 + 20 1 16 7 20 5 0 0 221.0 59.640 -139.021 275.3 896.0 + 21 1 16 7 20 5 0 0 221.0 60.368 -138.733 343.7 870.2 + 22 1 16 7 20 5 0 0 221.0 60.168 -134.466 575.5 835.8 + 23 1 16 7 20 5 0 0 221.0 60.615 -138.625 517.5 847.7 + 24 1 16 7 20 5 0 0 221.0 60.838 -137.149 681.6 824.7 + 20 1 16 7 20 6 0 0 222.0 59.741 -139.071 284.7 891.6 + 21 1 16 7 20 6 0 0 222.0 60.460 -138.690 358.9 866.7 + 22 1 16 7 20 6 0 0 222.0 60.202 -134.220 591.1 831.7 + 23 1 16 7 20 6 0 0 222.0 60.698 -138.488 540.3 843.5 + 24 1 16 7 20 6 0 0 222.0 60.893 -136.905 709.0 820.2 + 20 1 16 7 20 7 0 0 223.0 59.844 -139.130 294.5 887.4 + 21 1 16 7 20 7 0 0 223.0 60.552 -138.634 376.0 863.3 + 22 1 16 7 20 7 0 0 223.0 60.223 -133.965 605.0 828.1 + 23 1 16 7 20 7 0 0 223.0 60.779 -138.337 565.1 839.4 + 24 1 16 7 20 7 0 0 223.0 60.938 -136.649 736.7 815.9 + 20 1 16 7 20 8 0 0 224.0 59.946 -139.216 306.2 883.2 + 21 1 16 7 20 8 0 0 224.0 60.636 -138.582 396.5 859.7 + 22 1 16 7 20 8 0 0 224.0 60.228 -133.709 617.7 824.8 + 23 1 16 7 20 8 0 0 224.0 60.850 -138.186 593.8 835.1 + 24 1 16 7 20 8 0 0 224.0 60.967 -136.391 765.5 811.8 + 21 1 16 7 20 9 0 0 225.0 60.711 -138.532 420.5 856.0 + 22 1 16 7 20 9 0 0 225.0 60.219 -133.452 628.8 821.8 + 23 1 16 7 20 9 0 0 225.0 60.910 -138.034 626.1 830.6 + 24 1 16 7 20 9 0 0 225.0 60.981 -136.130 795.0 807.8 + 21 1 16 7 20 10 0 0 226.0 60.778 -138.484 448.3 851.9 + 22 1 16 7 20 10 0 0 226.0 60.195 -133.193 637.9 819.3 + 23 1 16 7 20 10 0 0 226.0 60.958 -137.881 661.5 826.0 + 24 1 16 7 20 10 0 0 226.0 60.981 -135.864 824.6 804.1 + 21 1 16 7 20 11 0 0 227.0 60.834 -138.436 479.7 847.7 + 22 1 16 7 20 11 0 0 227.0 60.160 -132.934 644.5 817.1 + 23 1 16 7 20 11 0 0 227.0 60.994 -137.729 699.4 821.4 + 24 1 16 7 20 11 0 0 227.0 60.969 -135.595 853.8 800.5 + 21 1 16 7 20 12 0 0 228.0 60.881 -138.390 515.1 843.2 + 22 1 16 7 20 12 0 0 228.0 60.112 -132.673 648.4 815.2 + 23 1 16 7 20 12 0 0 228.0 61.018 -137.576 739.4 816.6 + 24 1 16 7 20 12 0 0 228.0 60.945 -135.323 882.3 797.2 + 21 1 16 7 20 13 0 0 229.0 60.919 -138.324 550.3 838.8 + 22 1 16 7 20 13 0 0 229.0 60.059 -132.398 649.2 814.0 + 23 1 16 7 20 13 0 0 229.0 61.032 -137.404 777.1 812.2 + 24 1 16 7 20 13 0 0 229.0 60.915 -135.032 906.8 794.3 + 21 1 16 7 20 14 0 0 230.0 60.950 -138.220 580.5 835.0 + 22 1 16 7 20 14 0 0 230.0 60.004 -132.094 646.5 813.0 + 23 1 16 7 20 14 0 0 230.0 61.040 -137.195 807.2 808.5 + 24 1 16 7 20 14 0 0 230.0 60.882 -134.707 924.9 791.2 + 21 1 16 7 20 15 0 0 231.0 60.973 -138.081 604.9 831.8 + 22 1 16 7 20 15 0 0 231.0 59.949 -131.760 641.3 812.5 + 23 1 16 7 20 15 0 0 231.0 61.041 -136.950 829.9 805.5 + 24 1 16 7 20 15 0 0 231.0 60.844 -134.346 936.6 788.4 + 21 1 16 7 20 16 0 0 232.0 60.992 -137.910 623.0 829.5 + 22 1 16 7 20 16 0 0 232.0 59.891 -131.394 634.2 811.9 + 23 1 16 7 20 16 0 0 232.0 61.036 -136.669 845.6 803.1 + 24 1 16 7 20 16 0 0 232.0 60.803 -133.949 942.4 786.2 + 22 1 16 7 20 17 0 0 233.0 59.830 -130.997 625.9 811.0 + 23 1 16 7 20 17 0 0 233.0 61.028 -136.354 854.5 801.3 + 24 1 16 7 20 17 0 0 233.0 60.759 -133.514 943.1 784.2 + 22 1 16 7 20 18 0 0 234.0 59.766 -130.567 617.3 809.9 + 23 1 16 7 20 18 0 0 234.0 61.017 -136.004 857.2 800.1 + 24 1 16 7 20 18 0 0 234.0 60.713 -133.041 939.6 782.5 + 22 1 16 7 20 19 0 0 235.0 59.696 -130.123 609.0 807.9 + 23 1 16 7 20 19 0 0 235.0 61.002 -135.640 860.0 799.2 + 24 1 16 7 20 19 0 0 235.0 60.661 -132.550 936.5 780.8 + 22 1 16 7 20 20 0 0 236.0 59.623 -129.680 602.5 807.9 + 23 1 16 7 20 20 0 0 236.0 60.981 -135.281 868.7 797.9 + 24 1 16 7 20 20 0 0 236.0 60.598 -132.061 937.0 779.5 + 22 1 16 7 20 21 0 0 237.0 59.549 -129.240 596.3 808.4 + 23 1 16 7 20 21 0 0 237.0 60.953 -134.926 883.0 795.9 + 24 1 16 7 20 21 0 0 237.0 60.525 -131.577 940.2 777.7 + 22 1 16 7 20 22 0 0 238.0 59.476 -128.800 589.1 808.9 + 23 1 16 7 20 22 0 0 238.0 60.916 -134.575 902.5 792.9 + 24 1 16 7 20 22 0 0 238.0 60.445 -131.096 945.1 775.7 + 22 1 16 7 20 23 0 0 239.0 59.404 -128.357 579.7 809.3 + 23 1 16 7 20 23 0 0 239.0 60.870 -134.227 926.9 789.6 + 24 1 16 7 20 23 0 0 239.0 60.359 -130.614 950.9 773.3 + 22 1 16 7 21 0 0 0 240.0 59.336 -127.907 567.1 809.8 + 23 1 16 7 21 0 0 0 240.0 60.815 -133.882 956.1 785.9 + 24 1 16 7 21 0 0 0 240.0 60.269 -130.128 956.5 770.6 + 23 1 16 7 21 1 0 0 241.0 60.749 -133.529 986.1 781.7 + 24 1 16 7 21 1 0 0 241.0 60.172 -129.633 961.7 770.3 + 23 1 16 7 21 2 0 0 242.0 60.667 -133.158 1013.4 777.9 + 24 1 16 7 21 2 0 0 242.0 60.060 -129.127 965.0 770.9 + 23 1 16 7 21 3 0 0 243.0 60.570 -132.773 1037.8 774.2 + 24 1 16 7 21 3 0 0 243.0 59.938 -128.610 967.5 771.3 + 23 1 16 7 21 4 0 0 244.0 60.457 -132.375 1059.7 770.9 + 24 1 16 7 21 4 0 0 244.0 59.805 -128.079 970.4 771.2 + 23 1 16 7 21 5 0 0 245.0 60.329 -131.964 1079.6 768.0 + 24 1 16 7 21 5 0 0 245.0 59.665 -127.534 975.0 770.3 + 23 1 16 7 21 6 0 0 246.0 60.187 -131.540 1097.7 765.2 + 24 1 16 7 21 6 0 0 246.0 59.519 -126.983 984.7 773.5 + 23 1 16 7 21 7 0 0 247.0 60.037 -131.098 1110.5 762.7 + 24 1 16 7 21 7 0 0 247.0 59.366 -126.423 993.9 776.8 + 23 1 16 7 21 8 0 0 248.0 59.885 -130.628 1113.8 760.8 + 24 1 16 7 21 8 0 0 248.0 59.205 -125.839 998.5 780.2 + 24 1 16 7 21 9 0 0 249.0 59.032 -125.226 1000.0 783.5 + 24 1 16 7 21 10 0 0 250.0 58.848 -124.584 1000.4 788.9 + 24 1 16 7 21 11 0 0 251.0 58.649 -123.918 999.9 795.7 + 24 1 16 7 21 12 0 0 252.0 58.435 -123.224 998.0 802.6 + 24 1 16 7 21 13 0 0 253.0 58.210 -122.543 994.7 809.5 + 24 1 16 7 21 14 0 0 254.0 57.981 -121.923 987.8 814.0 + 24 1 16 7 21 15 0 0 255.0 57.747 -121.375 978.8 818.0 + 24 1 16 7 21 16 0 0 256.0 57.504 -120.899 968.9 821.4 diff --git a/fireInIce/2_visualize/src/regional_fires_map.py b/fireInIce/2_visualize/src/regional_fires_map.py new file mode 100644 index 0000000000000000000000000000000000000000..a395042bea966b8c2fc05597d4b7403f15401837 --- /dev/null +++ b/fireInIce/2_visualize/src/regional_fires_map.py @@ -0,0 +1,208 @@ +import matplotlib.pyplot as plt +from matplotlib.collections import LineCollection +import geopandas as gpd +import pandas as pd +from mpl_toolkits.basemap import Basemap +import matplotlib.patheffects as path_effects +import numpy as np +import os +from svgpath2mpl import parse_path +from shapely.geometry import Point +import matplotlib as mpl + +parent = os.getcwd() + +# add the condensed universe font +mpl.font_manager.fontManager.addfont(parent + '/font/Univers-Condensed.otf') +prop = mpl.font_manager.FontProperties(fname= parent + '/font/Univers-Condensed.otf') +mpl.rcParams["font.family"] = "sans-serif" +mpl.rcParams["font.sans-serif"] = [prop.get_name()] +mpl.rcParams['svg.fonttype'] = 'none' +mpl.rcParams["font.size"] = 18 + +smoke_label_fontsize = 18 +label_fontsize = 18 +big_label_fontsize = 24 + +# figure dimensions +fig_width = 8.0 +fig_height = 7.0 + +# map CRS +map_crs = 'EPSG:3857' + +# axis dimensions +ax_height = 0.9 + +def get_shapefile_extent(shapefile): + west, south, east, north = shapefile.geometry.total_bounds + length = east - west + height = north - south + return west, east, length, south, north, height + +# Function to create a SVG marker +def load_svg_marker(svg_file): + # Read the SVG file and create an OffsetImage + return OffsetImage(plt.imread(svg_file), zoom=0.1) # Adjust zoom as necessary + +def draw_line(p1,p2): + points = 100 + return np.linspace(p1[0],p2[0],points), np.linspace(p1[1],p2[1],points) + +def draw_box(west,east,south,north): + x1,y1 = draw_line([west,south],[east,south]) + x2,y2 = draw_line([east,south],[east,north]) + x3,y3 = draw_line([east,north],[west,north]) + x4,y4 = draw_line([west,north],[west,south]) + return np.concatenate((x1,x2,x3,x4)),np.concatenate((y1,y2,y3,y4)) + +def load_trajectory(traj_file, map_crs): + df_traj = pd.read_csv(traj_file, sep="\s+", header=None, skiprows=30) + df_traj.columns = ['trajectory_num','grid_num','year','month','day','hour','minute','forecast_hour','trajectory_age','Latitude','Longitude','height','pressure'] + gdf_traj = gpd.GeoDataFrame(df_traj, geometry=gpd.points_from_xy(df_traj.Longitude, df_traj.Latitude), crs="EPSG:4326").to_crs(map_crs) + for trajectory_num in range(np.min(gdf_traj['trajectory_num']),np.max(gdf_traj['trajectory_num']+1)): + temp_age = gdf_traj[gdf_traj['trajectory_num']==trajectory_num]['trajectory_age'].copy() + temp_age[temp_age!=0] = temp_age[temp_age!=0] - np.min(temp_age[temp_age!=0]) + gdf_traj.loc[gdf_traj['trajectory_num']==trajectory_num,'trajectory_age'] = temp_age.values + return gdf_traj + +def main( + fires, + fire_labels, + renderfile, + extent_shpfile, + forward_trajectory_files, + regional_fires_mapfile, + regional_fires_svg_mapfile + ): + + # make figure + fig = plt.figure(1,figsize=(fig_width,fig_height)) + + #get the extent of the basemap in degrees + west_deg, east_deg, length_deg, south_deg, north_deg, height_deg = get_shapefile_extent(gpd.read_file(extent_shpfile)) + + #load the shpfile, project to the map crs and get the extent + extent_shp = gpd.read_file(extent_shpfile).to_crs(map_crs) + west, east, length, south, north, height = get_shapefile_extent(extent_shp) + + #load the render image + basemap = plt.imread(renderfile) + + #plot render + ax = fig.add_axes([0.05,0.05,.9,.9]) + ax.imshow(basemap,extent=[west,east,south,north],alpha=0.8) + + #set up axis + ax.set_xlim(west,east) + ax.set_ylim(south,north) + ytick_labels = np.array([57,59,61,63,65]) + xtick_labels = np.array([-145,-140,-135,-130]) + ytick_labels_str = [str(i) + r'$^{\circ}$N' for i in ytick_labels] + xtick_labels_str = [str(-i) + r'$^{\circ}$W' for i in xtick_labels] + lat_slope = (north-south)/(north_deg-south_deg) + long_slope = (east-west)/(east_deg-west_deg) + ax.set_xticks((xtick_labels - west_deg) * long_slope + west,xtick_labels_str) + ax.set_yticks((ytick_labels - south_deg) * lat_slope + south,ytick_labels_str, rotation='vertical',va='center') + + # set up basemap + # set up orthographic map projection with + # use low resolution coastlines. + ax2 = fig.add_axes([0.7,0.7,0.225,0.225]) + map = Basemap(projection='ortho',lat_0=0.5*(south_deg+north_deg),lon_0=0.5*(west_deg+east_deg),resolution='l') + # draw coastlines, country boundaries, fill continents. + map.drawcoastlines(linewidth=0.0) + map.drawcountries(linewidth=0.0) + map.fillcontinents(color=(0.75,0.75,0.75),lake_color='w',alpha=0.75) + # draw the edge of the map projection region (the projection limb) + # draw lat/lon grid lines every 30 degrees. + map.drawmeridians(np.arange(0,360,30),linewidth=0.15) + map.drawparallels(np.arange(-90,90,30),linewidth=0.15) + circle = map.drawmapboundary(fill_color='w')#[0.118,0.565,1.0,0.5]) + circle.set_clip_on(False) + x_box, y_box = draw_box(west_deg,east_deg,south_deg,north_deg) + x,y=map(x_box,y_box) + map.plot(x, y, color='k', linewidth=1.0) + + # draw flame icon svg + flameicon = parse_path("""M18.61,54.89C15.7,28.8,30.94,10.45,59.52,0C42.02,22.71,74.44,47.31,76.23,70.89 c4.19-7.15,6.57-16.69,7.04-29.45c21.43,33.62,3.66,88.57-43.5,80.67c-4.33-0.72-8.5-2.09-12.3-4.13C10.27,108.8,0,88.79,0,69.68 C0,57.5,5.21,46.63,11.95,37.99C12.85,46.45,14.77,52.76,18.61,54.89L18.61,54.89z""") + flameicon.vertices -= flameicon.vertices.mean(axis=0) + flameicon = flameicon.transformed(mpl.transforms.Affine2D().rotate_deg(180)) + flameicon = flameicon.transformed(mpl.transforms.Affine2D().scale(-1,1)) + + # set default fire and trajectory that show on website load + default_trajectory = 8 + default_fire = 1 + + for i in range(0,fires): + #load geo databases for the trajector data + gdf_for_traj = load_trajectory(forward_trajectory_files[i], map_crs) + + # draw smoke lines + for trajectory_num in range(np.min(gdf_for_traj['trajectory_num']),np.max(gdf_for_traj['trajectory_num']+1)): + traj_x = gdf_for_traj[gdf_for_traj['trajectory_num']==trajectory_num].geometry.x + traj_y = gdf_for_traj[gdf_for_traj['trajectory_num']==trajectory_num].geometry.y + ax.plot(traj_x,traj_y,\ + color=(0.375,0.375,0.375,),alpha=0.0,linewidth = 8.0,gid='trajectory-'+str(i)+'-'+str(trajectory_num)+'-0') + + # add label to default trajectory + if trajectory_num == default_trajectory and i == default_fire: + label_offset_y = 70000 + label_offset_x = 30000 + label_index = int(len(traj_x)*0.5) + ax.text(label_offset_x+traj_x[traj_x.index[label_index]],label_offset_y+traj_y[traj_x.index[label_index]],"Potential Smoke Path",color='w',fontsize=smoke_label_fontsize,va='bottom',ha='center',rotation=-15,rotation_mode='anchor',gid='single-path-label', + bbox=dict(facecolor=(0,0,0,0.75),boxstyle='round',edgecolor='none', pad=0.2,linewidth=0.0),alpha=1.0) + + #fire location + inner_flame_offset_y = -25000 + inner_flame_offset_x = 2000 + ax.scatter(gdf_for_traj.geometry.x[0],gdf_for_traj.geometry.y[0],s=1600,linewidth=0.0,marker=flameicon,facecolor='tab:red',edgecolor='k',zorder=3) + ax.scatter(gdf_for_traj.geometry.x[0]+inner_flame_offset_x,gdf_for_traj.geometry.y[0]+inner_flame_offset_y,s=400,linewidth=0.0,marker=flameicon,facecolor='tab:orange',edgecolor='k',zorder=3) + ax.scatter(gdf_for_traj.geometry.x[0],gdf_for_traj.geometry.y[0],s=1600,alpha=0.00001,marker=flameicon,facecolor='w',edgecolor='none',zorder=4,gid='source-'+str(i)) + + #label wild fire location + x_offset_label = -50000 + y_offset_label = -200000 + ax.text(gdf_for_traj.geometry.x[0]-x_offset_label,gdf_for_traj.geometry.y[0]+y_offset_label,fire_labels[i],color='w',fontsize=label_fontsize,va='center',ha='right',alpha=1.0,gid='wildfire-label-'+str(i), + bbox=dict(facecolor=(0,0,0,0.75),boxstyle='round', edgecolor='none', pad=0.2,linewidth=0.0)) + + # juneau icefield symbol and label + x_offset_ice_label = 120000 + y_offset_ice_label = 60000 + gdf_juneau_icefield = gpd.GeoDataFrame({'geometry': [Point(-134.188,58.842)], 'name': ['Sample Point']}, crs="EPSG:4326").to_crs(map_crs) + ax.scatter(gdf_juneau_icefield.geometry.x[0],gdf_juneau_icefield.geometry.y[0],s=400,linewidth=1.5,marker='v',facecolor='tab:blue',edgecolor='k',zorder=3,gid='sink-'+str(i)) + ax.text(gdf_juneau_icefield.geometry.x[0]+x_offset_ice_label,gdf_juneau_icefield.geometry.y[0]+y_offset_ice_label,"Juneau\nIcefield",color='w',fontsize=label_fontsize,va='center',ha='left',alpha=1.0,gid='JIF-label', + bbox=dict(facecolor=(0,0,0,0.75),boxstyle='round', edgecolor='none', pad=0.2,linewidth=0.0)) + + # desktop only annotations + ax.text((west+east)/2.0,south+0.1*(north-south),"Hover over fires to show all potential\nsmoke paths within a 10-day window",color='w',fontsize=big_label_fontsize,va='center',ha='center',alpha=1.0,gid='multi-path-label-dt', + bbox=dict(facecolor=(0,0,0,0.75),boxstyle='round', edgecolor='none', pad=0.2,linewidth=0.0)) + + # mobile only annotations + ax.text((west+east)/2.0,south+0.1*(north-south),"Click here to show the major regional\nwildfires that occurred from 2015-2016",color='w',fontsize=big_label_fontsize,va='center',ha='center',alpha=0.0,gid='multi-path-label-mb-1', + bbox=dict(facecolor=(0,0,0,0.0),boxstyle='round', edgecolor='none', pad=0.2,linewidth=0.0)) + + ax.text((west+east)/2.0,south+0.1*(north-south),"Click fires to show all potential smoke\npaths within a 10-day window",color='w',fontsize=big_label_fontsize,va='center',ha='center',alpha=0.0,gid='multi-path-label-mb-2', + bbox=dict(facecolor=(0,0,0,0.0),boxstyle='round', edgecolor='none', pad=0.2,linewidth=0.0)) + + # save file + fig.savefig(regional_fires_mapfile,dpi=240) + fig.savefig(regional_fires_svg_mapfile,dpi=240,transparent=True) + +if __name__ == "__main__": + fires = snakemake.params["fires"] + fire_labels = snakemake.params["fire_labels"] + renderfile = snakemake.input["renderfile"] + extent_shpfile = snakemake.input["extent_shpfile"] + forward_trajectory_files = snakemake.input["forward_trajectory_files"] + regional_fires_mapfile = snakemake.output["regional_fires_mapfile"] + regional_fires_svg_mapfile = snakemake.output["regional_fires_svg_mapfile"] + main( + fires, + fire_labels, + renderfile, + extent_shpfile, + forward_trajectory_files, + regional_fires_mapfile, + regional_fires_svg_mapfile + ) \ No newline at end of file diff --git a/fireInIce/2_visualize/src/remove_metadata.py b/fireInIce/2_visualize/src/remove_metadata.py new file mode 100644 index 0000000000000000000000000000000000000000..b10d702a479836aee48f95780bba65bf41b2cb3f --- /dev/null +++ b/fireInIce/2_visualize/src/remove_metadata.py @@ -0,0 +1,13 @@ +import re + +# remove annoying metadata that sets vue warnings off +def remove_metadata(infile, outfile): + output = open(outfile, "w") + input = open(infile).read() + output.write(re.sub("<metadata>.*?</metadata>\n", "", input, flags=re.DOTALL)) + output.close() + +if __name__ == "__main__": + infile = snakemake.input["infile"] + outfile = snakemake.output["outfile"] + remove_metadata(infile,outfile) \ No newline at end of file diff --git a/fireInIce/2_visualize/src/xs_functions.py b/fireInIce/2_visualize/src/xs_functions.py new file mode 100644 index 0000000000000000000000000000000000000000..c53e9d33c95c38d967baaa154682559d95a94b6a --- /dev/null +++ b/fireInIce/2_visualize/src/xs_functions.py @@ -0,0 +1,49 @@ +import matplotlib as mpl +import numpy as np + +def translatexy(x,y,x_o,y_o,angle): + x_trans = x - x_o + y_trans = y - y_o + x_rot_trans = x_trans * np.cos(angle) - y_trans * np.sin(angle) + y_rot_trans = x_trans * np.sin(angle) + y_trans * np.cos(angle) + x_rot = x_rot_trans + x_o + y_rot = y_rot_trans + y_o + return x_rot,y_rot + +def align_marker(marker, halign='center', valign='middle',): + if isinstance(halign, (str)): + halign = {'right': -1., + 'middle': 0., + 'center': 0., + 'left': 1., + }[halign] + + if isinstance(valign, (str)): + valign = {'top': -1., + 'middle': 0., + 'center': 0., + 'bottom': 1., + }[valign] + + # Define the base marker + bm = mpl.markers.MarkerStyle(marker) + + # Get the marker path and apply the marker transform to get the + # actual marker vertices (they should all be in a unit-square + # centered at (0, 0)) + m_arr = bm.get_path().transformed(bm.get_transform()).vertices + + # Shift the marker vertices for the specified alignment. + m_arr[:, 0] += halign / 2 + m_arr[:, 1] += valign / 2 + + return mpl.path.Path(m_arr, bm.get_path().codes) + +#scale bar arms +def scale_bar_arm(sclx,scly1,scly2,label,label_buffer,ax,scale_bar_line_width): + ax.plot([sclx,sclx],[scly1,scly2], + color = 'k',linewidth=scale_bar_line_width,clip_on=False,zorder=6) + if label.endswith('km'): + ax.text(sclx,scly2+label_buffer,label,va='bottom',ha='center',zorder=10) + else: + ax.text(sclx,scly2+label_buffer,label,va='bottom',ha='center',zorder=10) \ No newline at end of file diff --git a/fireInIce/2_visualize/src/xs_process.py b/fireInIce/2_visualize/src/xs_process.py new file mode 100644 index 0000000000000000000000000000000000000000..c9dcb8990d39fdf44f97bdbb4fd530ddebf2f838 --- /dev/null +++ b/fireInIce/2_visualize/src/xs_process.py @@ -0,0 +1,443 @@ +#import libraries +import os, sys, importlib +import geopandas as gpd +from osgeo import gdal, osr +import numpy as np +import matplotlib as mpl +import matplotlib.pyplot as plt +from pyproj import CRS +from pyproj.aoi import AreaOfInterest +from pyproj.database import query_utm_crs_info +from shapely.geometry import Polygon +from scipy.interpolate import RegularGridInterpolator +from scipy.stats import linregress +from scipy import ndimage +from svgpath2mpl import parse_path + +#get parent path +parent = os.getcwd() + +# get custom functions +sys.path.insert(1, "0_fetch/src") +from download_dem import get_shapefile_extent, buffer_shapefile, snakemake_type_exists +sys.path.insert(1, "2_visualize/src") +from xs_functions import translatexy, align_marker, scale_bar_arm + +#change the font to universe condensed +mpl.font_manager.fontManager.addfont(parent + '/font/Univers-Condensed.otf') +font_prop = mpl.font_manager.FontProperties(fname= parent + '/font/Univers-Condensed.otf') +mpl.rcParams["font.family"] = "sans-serif" +mpl.rcParams["font.sans-serif"] = [font_prop.get_name()] +mpl.rcParams['svg.fonttype'] = 'none' +mpl.rcParams["font.size"] = 18 +tutorial_fontsize = 28 +north_fontsize = 21 + +# number of cross sections +points = 201 + +# number of sampling points making up cross section +xs_points = 301 + +# starting location x space +x_start = 538000. + +# ending location x space +x_end = 550100. + +# width of cross section +width = 50000. + +# figure dimensions +fig_width = 8.0 +fig_height = 8.0 +fig_buffer_bottom = 0.66 +fig_buffer_left = 0.6 +fig_buffer_right = 0.15 +fig_buffer_between = 0.3 +render_height = 5. + +# map adjustment +map_offset_y = 0.0 +map_offset_x = 0.0 +map_width = 110000. + +#core marker and line colors +core_color = 'tab:blue' +core_line_color = 'tab:blue' + +#cross section map line thickness +ar_base = 2.0 + +# lower limit of the cross section plot +lower_limit = -500 + +#scale bar parameters +scale_bar_rel_x = 0.325 +scale_bar_rel_y = 0.3 +scale_bar_length = 16000 +scale_bar_height = 1000 +scale_bar_line_width = 1.0 + +#north arrow parameters +north_scale_x = -.35 +north_rel_y = scale_bar_rel_y + 0.0075 +N_loc = (0.85,-0.55) + +def get_raster_extent(dataset): + ulx, xres, xskew, uly, yskew, yres = dataset.GetGeoTransform() + lrx = ulx + (dataset.RasterXSize * xres) + lry = uly + (dataset.RasterYSize * yres) + return ulx, lrx, lry, uly + +def project(file, map_crs, tmp_dir, dummy): + + # read in the dem as a numpy array + ds = gdal.Open(file) + array = np.array(ds.GetRasterBand(1).ReadAsArray()) + + # reproject dem + if dummy == True: + prefix = "/dummy_proj" + else: + prefix = "/proj_" + proj_ds = gdal.Warp(tmp_dir + prefix + os.path.basename(file), ds, dstSRS=map_crs) + proj_array = np.array(proj_ds.GetRasterBand(1).ReadAsArray()) + + # get min and max of dem + NaN = proj_ds.GetRasterBand(1).GetNoDataValue() + if NaN != None: + if np.isnan(NaN): + min_array = np.nanmin(proj_array[~np.isnan(proj_array)]) + max_array = np.nanmax(proj_array[~np.isnan(proj_array)]) + else: + min_array = np.nanmin(proj_array[proj_array != NaN]) + max_array = np.nanmax(proj_array[proj_array != NaN]) + else: + min_array = np.nanmin(proj_array) + max_array = np.nanmax(proj_array) + + return proj_array, proj_ds, min_array, max_array + + +#main function to make the cross-section +def main( + photo_indices, + photo_locations, + default_plot, + extent_shpfile, + demfile, + layerfile, + renderfile, + core_shpfile, + xs_file, xs_svg_file +): + + # make out_dir if it doesn't exist + out_dir = os.path.dirname(xs_file) + if not os.path.exists(out_dir): + os.makedirs(out_dir) + + tmp_dir = out_dir.replace("out","tmp") + # make tmp_dir if it doesn't exist + if not os.path.exists(tmp_dir): + os.makedirs(tmp_dir) + + # get UTM zone for reprojection + utm_crs = gpd.read_file(extent_shpfile).estimate_utm_crs() + + # read in the dem and ice layer as a numpy array + proj_dem, proj_ds, min_dem, max_dem = project(demfile,utm_crs,tmp_dir,True) + proj_layer, proj_ds_layer, min_layer, max_layer = project(layerfile,utm_crs,tmp_dir,True) + + # load extent mask + extent_shp = gpd.read_file(extent_shpfile).to_crs(utm_crs) + west, east, length, south, north, height = get_shapefile_extent(extent_shp) + # make mask covering extent + buff_west, buff_east, buff_south, buff_north = buffer_shapefile( + west, east, length, south, north, height, 25.0 + ) + + # build interpolators to sampling data from dem and ice field + extent = list(get_raster_extent(proj_ds)) + x = np.linspace(extent[0],extent[1],proj_dem.shape[1]) + y = np.linspace(extent[3],extent[2],proj_dem.shape[0]) + interpol = RegularGridInterpolator((y,x),proj_dem,method="linear") + interpol_L = RegularGridInterpolator((y,x),proj_layer,method="linear") + xx = np.linspace(extent[0],extent[1],300) + yy = np.linspace(extent[3],extent[2],200)# + Y, X = np.meshgrid(yy, xx, indexing='ij') + + #get photo data + photo_shp = gpd.read_file(photo_locations).to_crs(utm_crs) + + #get the least squared residual line from the core locations + core_shp = gpd.read_file(core_shpfile).to_crs(utm_crs) + res = linregress(core_shp.geometry.x,core_shp.geometry.y) + y_start = x_start * res.slope + res.intercept + y_end = x_end * res.slope + res.intercept + x_track = np.linspace(x_start,x_end,points) + y_track = np.linspace(y_start,y_end,points) + slope = (y_end - y_start) / (x_end - x_start) + angle = np.arctan(np.abs(slope)) + + #get the dx and dy from the LSRL + y_decomp = np.cos(angle) * width / 2.0 + x_decomp = -np.sin(angle) * width / 2.0 + + # get aspect of the rendered image + render_aspect = render_height / (fig_width - fig_buffer_left - fig_buffer_right) + + # get height of map + map_height = map_width * render_aspect + + # get center of map + map_center_x = 0.5 * (buff_west + buff_east) + map_center_y = 0.5 * (buff_north + buff_south) + + # make figure and axis + fig_xs = plt.figure(1,figsize=(fig_width,fig_height),facecolor='w') + + # axis with map + ax_texturemap = fig_xs.add_axes([fig_buffer_left/fig_width, + (fig_height - render_height)/fig_height, + 1.0 - (fig_buffer_left+fig_buffer_right)/fig_width, + render_height/fig_height]) + # set map bounds + ax_texturemap.set_xlim(map_center_x - map_width * 0.5 + map_offset_x, map_center_x + map_width * 0.5 + map_offset_x) + ax_texturemap.set_ylim(map_center_y - map_height * 0.5 + map_offset_y, map_center_y + map_height * 0.5 + map_offset_y) + ax_texturemap.axis('off') + + # axis with cross-section + ax_xs = fig_xs.add_axes([fig_buffer_left/fig_width, + fig_buffer_bottom/fig_height, + 1.0 - (fig_buffer_left+fig_buffer_right)/fig_width, + (fig_height - render_height - fig_buffer_between - fig_buffer_bottom)/fig_height]) + + #read in render and rotate it so the LSRL is pointing northward + render = plt.imread(renderfile) + render = ndimage.rotate(render,90.-angle*180./np.pi,reshape=False) + ax_texturemap.imshow(render,zorder=1,extent=[buff_west,buff_east,buff_south,buff_north],alpha=1.0) + + #rotate the cores aroudn the raster center + core_shp_rot = core_shp.rotate(90.-angle*180./np.pi,(0.5*(buff_west+buff_east),0.5*(buff_south+buff_north))) + + #rotate photo cores around the raster center + photo_shp_rot = photo_shp.rotate(90.-angle*180./np.pi,(0.5*(buff_west+buff_east),0.5*(buff_south+buff_north))) + + #rotate LSRL (around raster center) + x_rot_track,y_rot_track = translatexy(x_track,y_track,\ + 0.5*(buff_east+buff_west),0.5*(buff_south+buff_north),\ + np.pi/2.0-angle) + + #LSRL "zone" + ax_texturemap.plot(x_rot_track - width/2.0,y_rot_track,color='k',zorder=2,linestyle='--',linewidth=1,alpha=1.0) + ax_texturemap.plot(x_rot_track + width/2.0,y_rot_track,color='k',zorder=2,linestyle='--',linewidth=1,alpha=1.0) + ax_texturemap.fill_between([x_rot_track[0] - width/2.0, x_rot_track[0] + width/2.0],[y_rot_track[0]-height,y_rot_track[0]-height],[y_rot_track[0],y_rot_track[0]],edgecolor=(0.0,0.0,0.0,0.0),facecolor=(1.0,1.0,1.0,0.25)) + ax_texturemap.fill_between([x_rot_track[0] - width/2.0, x_rot_track[0] + width/2.0],[y_rot_track[-1],y_rot_track[-1]],[y_rot_track[-1]+height,y_rot_track[-1]+height],edgecolor=(0.0,0.0,0.0,0.0),facecolor=(1.0,1.0,1.0,0.25)) + ax_texturemap.fill_between([x_rot_track[0] - length, x_rot_track[0] - width/2.0],[y_rot_track[0]-height,y_rot_track[0]-height],[y_rot_track[-1]+height,y_rot_track[-1]+height],edgecolor=(0.0,0.0,0.0,0.0),facecolor=(1.0,1.0,1.0,0.25)) + ax_texturemap.fill_between([x_rot_track[0] + width/2.0, x_rot_track[0] + length],[y_rot_track[0]-height,y_rot_track[0]-height],[y_rot_track[-1]+height,y_rot_track[-1]+height],edgecolor=(0.0,0.0,0.0,0.0),facecolor=(1.0,1.0,1.0,0.25)) + + # x coordinates for the cross section + x_xs=np.linspace(0,width,xs_points) + + #camera svg + camicon = parse_path("""M521.5,170.5v289H54.5V170.5h161v.5H55v288h466V171h-160.5v-.5h161ZM216,117h144v53.5h.5v-54h-145v54h.5v-53.5ZM360,171h.5v.5h160v287H55.5V171.5h160v-.5h.5v-.5h.5v-53h143v53h.5v.5Z""") + # Calculate the extent + min_x = camicon.vertices[:, 0].min() + max_x = camicon.vertices[:, 0].max() + min_y = camicon.vertices[:, 1].min() + max_y = camicon.vertices[:, 1].max() + + # Calculate the center of the extent + center_x = (min_x + max_x) / 2 + center_y = (min_y + max_y) / 2 + + # Center the icon using the extent + camicon.vertices -= np.array([center_x, center_y]) + camicon = camicon.transformed(mpl.transforms.Affine2D().rotate_deg(180)) + camicon = camicon.transformed(mpl.transforms.Affine2D().scale(-1,1)) + + # drill svg + drillicon = parse_path("""M.5,288.5V.5h72v288l-36,36.4L.5,288.9""") + # centered drill svg for legend + cent_drillicon = parse_path("""M.5,288.5V.5h72v288l-36,36.4L.5,288.9""") + + # Calculate the extent + min_x = drillicon.vertices[:, 0].min() + max_x = drillicon.vertices[:, 0].max() + min_y = drillicon.vertices[:, 1].min() + max_y = drillicon.vertices[:, 1].max() + + # Calculate the center of the extent + center_x = (min_x + max_x) / 2 + center_y = (min_y + max_y) / 2 + + # Center the icon using the extent + drillicon.vertices -= np.array([center_x, max_y]) + drillicon = drillicon.transformed(mpl.transforms.Affine2D().rotate_deg(180)) + drillicon = drillicon.transformed(mpl.transforms.Affine2D().scale(-1,1)) + + # Center the icon using the extent + cent_drillicon.vertices -= np.array([center_x, center_y]) + cent_drillicon = cent_drillicon.transformed(mpl.transforms.Affine2D().rotate_deg(180)) + cent_drillicon = cent_drillicon.transformed(mpl.transforms.Affine2D().scale(-1,1)) + + #find where the core is closest to the cross-section lines. + core_ids = [] + for i in range(len(core_shp_rot.geometry.y)): + core_ids += [np.argmin(np.abs(y_rot_track-core_shp_rot.geometry.y[i]))] + + photo_ids = [] + for i in photo_indices: + photo_ids += [np.argmin(np.abs(y_rot_track-photo_shp_rot.geometry.y[i]))] + + # plot the cross seciton lines + for i in range(0,points): + if i == default_plot: + alpha_plot = 0.8 + else: + alpha_plot = 0.0 + #get the cross section x and y locations + xs = np.linspace(x_track[i] - x_decomp, x_track[i] + x_decomp, xs_points) + ys = np.linspace(y_track[i] - y_decomp, y_track[i] + y_decomp, xs_points) + #get the cross section x and y locations in the rotated view + xs_rot = np.linspace(x_rot_track[i] - width/2.0, x_rot_track[i] + width/2.0, xs_points) + ys_rot = np.linspace(y_rot_track[i] , y_rot_track[i] , xs_points) + + #if the cross section is one that has a core in it, plot the line in a different color, otherwise black + for j, core_i in enumerate(core_ids): + if core_i == i: + ax_texturemap.plot(xs_rot,ys_rot,color=core_line_color,alpha=alpha_plot,gid='xs-main-'+str(i),zorder=3,linewidth=ar_base) + if (i in core_ids) == False: + ax_texturemap.plot(xs_rot,ys_rot,color='k',alpha=alpha_plot,gid='xs-main-'+str(i),zorder=3,linewidth=ar_base) + #find the bedrock elevation along the cross section + topo_layer = interpol((ys,xs)) + #plot the bedrock topography + ax_xs.fill_between(x_xs,lower_limit*np.ones_like(x_xs),topo_layer,alpha=alpha_plot,zorder=2,gid='xs-topo-'+str(i),edgecolor=(0.,0.,0.,0.2),facecolor="#c49051") + #find the ice elevation along the cross section + ice_layer = interpol_L((ys,xs)) + #if the ice topography is "below" the bedrock, just make it the same as the bedrock + ice_layer[ice_layer<topo_layer]=topo_layer[ice_layer<topo_layer] + #plot the ice topography + ax_xs.fill_between(x_xs,lower_limit*np.ones_like(x_xs),ice_layer,alpha=alpha_plot,zorder=1,gid='xs-ice-'+str(i),edgecolor=(0.,0.,0.,0.2),facecolor='#dddddd') + #if the cross section is one that has the core in it, find the elevation of the core location and plot the core on the cross-section plot + for j, core_i in enumerate(core_ids): + if core_i == i: + distance = ((core_shp.geometry.y[j]-ys[0])**2.0+(core_shp.geometry.x[j]-xs[0])**2.0) ** 0.5 + x_xs_i = np.argmin(abs(distance-x_xs)) + ax_texturemap.scatter(core_shp_rot.geometry.x[j],core_shp_rot.geometry.y[j],facecolor=core_color,edgecolor='k',linewidth=1.0,marker=drillicon,s=3201+i/1000,alpha=0.8,zorder=1001,gid='xs-c-lg-'+str(i)) + ax_xs.scatter(x_xs[x_xs_i],ice_layer[x_xs_i],facecolor=core_color,edgecolor='k',linewidth=1.0,marker=drillicon,s=3200+i/1000,zorder=1001,clip_on=False,gid='xs-c-sm-'+str(i),alpha=alpha_plot) + # draw camera locations + for j, core_i in enumerate(photo_ids): + if core_i == i: + photo_index = photo_indices[j] + distance = ((photo_shp.geometry.y[photo_index ]-ys[0])**2.0+(photo_shp.geometry.x[photo_index ]-xs[0])**2.0) ** 0.5 + x_xs_i = np.argmin(abs(distance-x_xs)) + ax_texturemap.scatter(photo_shp_rot.geometry.x[photo_index],photo_shp_rot.geometry.y[photo_index],facecolor="tab:red",edgecolor='k',linewidth=1.0,marker=camicon,s=400+i/1000,zorder=1000,alpha=0.8,gid='photo-lg-'+str(photo_index).zfill(3)+'-'+str(i)) + ax_xs.scatter(x_xs[x_xs_i],ice_layer[x_xs_i],facecolor="tab:red",edgecolor='k',linewidth=1.0,marker=camicon,s=401+i/1000,zorder=1000,alpha=alpha_plot,gid='photo-sm-'+str(photo_index).zfill(3)+'-'+str(i)) + + #legend + ax_texturemap.scatter(0,0,facecolor=core_color,edgecolor='k',linewidth=1.0,marker=cent_drillicon,s=802,label='Ice Core') + ax_texturemap.scatter(0,0,facecolor="tab:red",edgecolor='k',linewidth=1.0,marker=camicon,s=402,alpha=0.8,label='Photo') + ax_texturemap.legend(loc='right',bbox_to_anchor=(1.01, 0.5),facecolor='w',edgecolor='none',framealpha=0.75, fancybox=False,markerfirst=True) + + #make the scale bar + sclx1 = buff_west + (buff_east-buff_west) * scale_bar_rel_x + sclx2 = sclx1 + scale_bar_length + scly1 = buff_south + (buff_north-buff_south) * scale_bar_rel_y + scly2 = scly1 + scale_bar_height + ax_texturemap.plot([sclx1,sclx2],[scly1,scly1], + color = 'k',linewidth=scale_bar_line_width,clip_on=False,zorder=6) + + for prop in [0,1.0/2.0,1.0]: + if prop == 1: + label = str(round(prop*scale_bar_length/1000.)) + ' km' + else: + label = str(round(prop*scale_bar_length/1000.)) + scale_bar_arm((1.0-prop)*sclx1+prop*sclx2,scly1,scly2,label,100,ax_texturemap,scale_bar_line_width) + + #make north arrow + northx = (1.0-north_scale_x)*sclx1+north_scale_x*sclx2 + northy = buff_south + (buff_north-buff_south) * north_rel_y + north_arrow_length = 5500 + north_arrow = mpl.patches.FancyArrowPatch((northx, northy),(northx - np.sin(np.pi/2.0-angle) * north_arrow_length, northy + np.cos(np.pi/2.0-angle) * north_arrow_length) , + arrowstyle='simple,head_length=0.4,head_width=0.5,tail_width=0.2', mutation_scale=20,facecolor='k',edgecolor='k',zorder=6) + ax_texturemap.add_patch(north_arrow) + ax_texturemap.annotate('N',N_loc,xycoords=north_arrow,ha='center', va='center',fontweight='bold',fontsize=north_fontsize,zorder=6) + + #white box around scale bar to improve readibility + scale_box = mpl.patches.Rectangle((0.01,0.01),0.27,0.15,transform = ax_texturemap.transAxes,facecolor='w',edgecolor='none',alpha=0.75) + ax_texturemap.add_patch(scale_box) + + # tutorial + ax_texturemap.text(0.01,0.99,"Hover to MRI\nthe glacier!", + transform=ax_texturemap.transAxes,fontweight='bold',va='top',ha='left',fontsize=tutorial_fontsize,zorder=6, + bbox=dict(facecolor='w', alpha=0.7, edgecolor="none",pad=2.0),gid='tutorial-dt-1') + + ax_texturemap.text(0.99,0.625,"Hover over\npoints of\ninterest!", + transform=ax_texturemap.transAxes,fontweight='bold',va='bottom',ha='right',fontsize=tutorial_fontsize,zorder=6, + bbox=dict(facecolor='w', alpha=0.7, edgecolor="none",pad=2.0),gid='tutorial-dt-2') + + ax_texturemap.text(0.01,0.99,"Click to MRI\nthe glacier!", + transform=ax_texturemap.transAxes,fontweight='bold',va='top',ha='left',fontsize=tutorial_fontsize,zorder=6, + bbox=dict(facecolor='w', alpha=0.0, edgecolor="none",pad=2.0),gid='tutorial-mb-1',alpha=0.0) + + ax_texturemap.text(0.99,0.625,"Click on\npoints of\ninterest!", + transform=ax_texturemap.transAxes,fontweight='bold',va='bottom',ha='right',fontsize=tutorial_fontsize,zorder=6, + bbox=dict(facecolor='w', alpha=0.0, edgecolor="none",pad=2.0),gid='tutorial-mb-2',alpha=0.0) + + # tutorial arrow + tutorial_arrow = mpl.patches.FancyArrowPatch((0.32,0.95),(0.45,0.55) , transform = ax_texturemap.transAxes, gid = "tutorial_arrow", + arrowstyle='simple,head_length=0.8,head_width=0.8,tail_width=0.3', alpha = 0.75, mutation_scale=20,facecolor='k',edgecolor='none',connectionstyle='arc3,rad=-0.3',zorder=6) + ax_texturemap.add_patch(tutorial_arrow) + + #cross section axis properties + ax_xs.fill_between([-10,10],[0,0],[1,1],alpha=1.0,zorder=0,edgecolor='none',label='Ice',facecolor="#dddddd") + ax_xs.fill_between([-10,10],[0,0],[1,1],alpha=1.0,zorder=0,edgecolor='none',label='Rock',facecolor="#c49051") + ax_xs.set_xlim(x_xs[-1],x_xs[0]) + ax_xs.set_ylim(lower_limit,2500) + ax_xs.set_yticks([0,1000,2000,3000,4000],[0,1,2,3,4]) + leg = ax_xs.legend(loc='upper right',facecolor='none',edgecolor='none',markerfirst=True,ncol=1) + bb = leg.get_bbox_to_anchor().transformed(ax_xs.transAxes.inverted()) + + # Change to location of the legend. + bb.y1 += 0.2 + leg.set_bbox_to_anchor(bb, transform = ax_xs.transAxes) + ax_xs.spines["top"].set_visible(False) + ax_xs.spines["right"].set_visible(False) + ax_xs.set_ylabel('Elevation (km)') + ax_xs.set_xlabel('Cross-Sectional Distance (km)') + + #x ticks + x_ticks = 5 + x_tick_locs = [x_xs[-1]+float(i)/float(x_ticks)*(x_xs[0]-x_xs[-1]) for i in range(0,x_ticks+1)] + x_tick_labs = [int(width * float(i) / float(x_ticks) / 1000) for i in range(0,x_ticks+1)] + ax_xs.set_xticks(x_tick_locs,x_tick_labs) + + #save the figure + fig_xs.savefig(xs_svg_file, dpi=240, transparent=True) + fig_xs.savefig(xs_file, dpi=240) + +if __name__ == "__main__": + photo_indices = snakemake.params["photo_indices"] + default_plot = snakemake.params["default_plot"] + extent_shpfile = snakemake.input["extent_shpfile"] + demfile = snakemake.input["demfile"] + photo_locations = snakemake.input["photo_locations"] + core_shpfile = snakemake.input["core_shpfile"] + layerfile = snakemake_type_exists(snakemake.input,"layerfile","NULL") + renderfile = snakemake.input["renderfile"] + xs_file = snakemake.output["xs_file"] + xs_svg_file = snakemake.output["xs_svg_file"] + main( + photo_indices, + photo_locations, + default_plot, + extent_shpfile, + demfile, + layerfile, + renderfile, + core_shpfile, + xs_file, xs_svg_file + ) diff --git a/fireInIce/Snakefile_glacial_scan b/fireInIce/Snakefile_glacial_scan new file mode 100644 index 0000000000000000000000000000000000000000..099526520fef1518b86b1bd1b0b20cf24540f46c --- /dev/null +++ b/fireInIce/Snakefile_glacial_scan @@ -0,0 +1,134 @@ +sb_id = "5e472c3ee4b0ff554f6837bc" + +rule all: + input: + "2_visualize/out/xs_19010301and19010304.svg", + "data_out/glacial_mri.svg" + +# download sb item 5e472c3ee4b0ff554f6837bc +rule download_FI_DATA: + params: + sb_id = sb_id + output: + zipfile = "0_fetch/tmp/"+sb_id+".zip" + script: + "0_fetch/src/download_sb.py" + +# unzip the sb item 5e472c3ee4b0ff554f6837bc +rule unzip_FI_DATA: + input: + zipfile = "0_fetch/tmp/"+sb_id+".zip" + output: + "0_fetch/tmp/"+sb_id+"/Juneau Icefield Alaska Map.jpg", + "0_fetch/tmp/"+sb_id+"/Metadata Juneau Icefield.xml", + "0_fetch/tmp/"+sb_id+"/Table 1 Site Locations.xlsx", + "0_fetch/tmp/"+sb_id+"/Table 2 Constituents Analyzed.xlsx", + "0_fetch/tmp/"+sb_id+"/Table 3 Quality Assurance.xlsx", + "0_fetch/tmp/"+sb_id+"/Table 4 Constituent Data.xlsx" + script: + "0_fetch/src/unzip_file.py" + +# get the extent, a combo of HUC 19010301 and 19010304 +rule get_wbd: + params: + huc_list = lambda wildcards: f"{wildcards.huc_id}".split("and") + output: + extent_shpfile = "0_fetch/out/{huc_id}/extent.shp" + script: + "0_fetch/src/get_wbd.py" + +# download the dem over the extent +rule download_dem: + params: + data_product = '/API/globaldem', + dem_product = 'COP90', + buffer = 5.0, + download_mode = 'bmi' + input: + extent_shpfile = "0_fetch/out/{huc_id}/extent.shp" + output: + demfile = "0_fetch/out/{huc_id}/dem.tif" + script: + "0_fetch/src/download_dem.py" + +#"0_fetch/tmp/RGI-2.zip" was downloaded from here: https://doi.org/10.6096/1007 +#Western Canada and USA +rule unzip_ice_thickness: + input: + zipfile = "0_fetch/tmp/RGI-2.zip" + output: + "0_fetch/tmp/RGI-2/RGI-2/THICKNESS_RGI-2.1_2021July09.tif" + script: + "0_fetch/src/unzip_file.py" + +# regrid the ice thickness data to have the same grid as the dem +rule regrid_ice_thickness: + input: + src_file = "0_fetch/tmp/RGI-2/RGI-2/THICKNESS_RGI-2.1_2021July09.tif", + match_file = "0_fetch/out/{huc_id}/dem.tif" + output: + dst_file = "1_process/tmp/{huc_id}/unfilled_ice_thickness.tif" + script: + "1_process/src/regrid.py" + +# remove the NaNs and fill via interpolation +rule remove_nans: + params: + convolution_window = 4.0 + input: + ice_thickness_file = "1_process/tmp/{huc_id}/unfilled_ice_thickness.tif" + output: + ice_thickness_file = "1_process/tmp/{huc_id}/ice_thickness.tif" + script: + "1_process/src/remove_nans.py" + +# make a shapefile of the cores from the sb item 5e472c3ee4b0ff554f6837bc +rule make_core_shpfile: + input: + core_data = '0_fetch/tmp/5e472c3ee4b0ff554f6837bc/Table 1 Site Locations.xlsx' + output: + core_shpfile = "1_process/out/{huc_id}/core_locations.shp" + script: + "1_process/src/cores_to_shp.py" + +# Calculate bedrock by subtracting ice thickness from the surface elevation +rule calc_bedrock: + input: + dem_file = "0_fetch/out/{huc_id}/dem.tif", + ice_thickness_file = "1_process/tmp/{huc_id}/ice_thickness.tif" + output: + bedrock_file = "1_process/tmp/{huc_id}/bedrock.tif", + ice_height_file = "1_process/tmp/{huc_id}/ice_height.tif" + script: + "1_process/src/calc_bedrock.py" + +# create the map vs. cross section plot +# renderfile is a basemap generated in Blender using the following sources: +# DEM: https://portal.opentopography.org/raster?opentopoID=OTSDEM.032021.4326.1 +# Ice Thickness https://doi.org/10.6096/1007 +# NHD files were downloaded using PyNHD: https://doi.org/10.21105/joss.03175 +rule create_xs: + params: + default_plot = 113, + photo_indices = [10,18,21,51,85,138,140,156,203] + input: + extent_shpfile = "0_fetch/out/{huc_id}/extent.shp", + demfile = "1_process/tmp/{huc_id}/bedrock.tif", + layerfile = "1_process/tmp/{huc_id}/ice_height.tif", + renderfile = "2_visualize/in/render_{huc_id}.png", + photo_locations = '2_visualize/in/photo_locations.shp', + core_shpfile = "1_process/out/{huc_id}/core_locations.shp" + output: + xs_file = "2_visualize/out/xs_{huc_id}.png", + xs_svg_file = "2_visualize/out/xs_{huc_id}.svg" + script: + "2_visualize/src/xs_process.py" + +# remove the metadata from the svg and save into the data_out folder +rule remove_metadata: + input: + infile = "2_visualize/out/xs_19010301and19010304.svg" + output: + outfile = "data_out/glacial_mri.svg", + script: + "2_visualize/src/remove_metadata.py" \ No newline at end of file diff --git a/fireInIce/Snakefile_regional_fires b/fireInIce/Snakefile_regional_fires new file mode 100644 index 0000000000000000000000000000000000000000..f7f468bdc4d99ae9118b841f220c3127d2e6931f --- /dev/null +++ b/fireInIce/Snakefile_regional_fires @@ -0,0 +1,34 @@ +rule all: + input: + "data_out/regional_fires_map.svg" + +# tdump files were generated with NOAA's HYSPLIT model using archive trajectories: https://www.ready.noaa.gov/hypub-bin/trajtype.pl?runtype=archive +# forward trajectories from the two fires, dennison fork 2015 wildfire and the steamboat creek 2016 wildfire were generated +# HYSPLIT model's parameters were taken from https://iopscience.iop.org/article/10.1088/1748-9326/ab8fd2/pdf + +# This makes the svg map for the regional fires viz +# renderfile is a basemap generated in Blender using the following sources: +# DEM: https://portal.opentopography.org/raster?opentopoID=OTSRTM.122019.4326.1 +# Ice Thickness https://doi.org/10.6096/1007 +rule regional_fires_map: + params: + fires = 2, + fire_labels = ["Dennison Fork\n2015 Wildfire","Steamboat Creek\n2016 Wildfire"] + input: + renderfile = "2_visualize/in/render_{name}.png", + extent_shpfile = "2_visualize/in/extent_{name}.shp", + forward_trajectory_files = ["2_visualize/in/tdump.111986.txt","2_visualize/in/tdump.160303.txt"] + output: + regional_fires_mapfile = "2_visualize/out/{name}_map.png", + regional_fires_svg_mapfile = "2_visualize/out/{name}_map.svg" + script: + "2_visualize/src/regional_fires_map.py" + +# remove the metadata from the svg and save into the data_out folder +rule remove_metadata: + input: + infile = "2_visualize/out/{name}_map.svg" + output: + outfile = "data_out/{name}_map.svg" + script: + "2_visualize/src/remove_metadata.py" \ No newline at end of file diff --git a/fireInIce/environment.yaml b/fireInIce/environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5b173c7ea59c62c311ab03f408d7132d7cb95bbc --- /dev/null +++ b/fireInIce/environment.yaml @@ -0,0 +1,30 @@ +name: climate-chart +channels: + - conda-forge + - bioconda +dependencies: + - python + - pip + - mamba + - snakemake + - pandas + - numpy + - py7zr + - matplotlib + - gdal + - geopandas + - py3dep + - pynhd + - pygeohydro + - earthengine-api + - basemap + - rasterio + - astropy + - utm + - openpyxl + - opencv + - svgpath2mpl + - pip: + - sciencebasepy + - git+https://github.com/jeffskwang/bmi-topography-usgs.git + - exif \ No newline at end of file diff --git a/fireInIce/font/Univers-Condensed.otf b/fireInIce/font/Univers-Condensed.otf new file mode 100644 index 0000000000000000000000000000000000000000..dc811d4a0a57d279734a8ad4067039522dec9e7e Binary files /dev/null and b/fireInIce/font/Univers-Condensed.otf differ